From 739920c12e99ab08bceb49de3d926f03f2b1c294 Mon Sep 17 00:00:00 2001 From: Kevin Kauffman Date: Fri, 30 Jul 2021 14:03:19 -0400 Subject: [PATCH 001/259] [SMAGENT-3090] enable ubuntu kernel builds in probe builder, and add missing script (#1) * add probe directory index to repo * allow building of modern ubuntu kernels which require modified ubuntu dpkg * add infra for WSL and amazonlinux2 gcc10 --- Dockerfile.centos-gcc10.3 | 25 +++ build-probe-binaries | 8 +- install_wsl2_kernel_headers.bash | 295 +++++++++++++++++++++++++++++++ link-aws-gcc.sh | 6 + probe-directory-index | 53 ++++++ 5 files changed, 383 insertions(+), 4 deletions(-) create mode 100644 Dockerfile.centos-gcc10.3 create mode 100755 install_wsl2_kernel_headers.bash create mode 100755 link-aws-gcc.sh create mode 100755 probe-directory-index diff --git a/Dockerfile.centos-gcc10.3 b/Dockerfile.centos-gcc10.3 new file mode 100644 index 0000000..8c42e8a --- /dev/null +++ b/Dockerfile.centos-gcc10.3 @@ -0,0 +1,25 @@ +FROM fedora:32 + +RUN yum -y install \ + wget \ + git \ + gcc \ + gcc-c++ \ + autoconf \ + bison \ + flex \ + make \ + cmake \ + elfutils-devel \ + findutils \ + kmod \ + python-lxml && yum clean all + +# amazonlinux2 uses a wacky version of gcc which puts wrappers on stuff (probably from +# a "future" repo or something), so we just link it to the actual stuff instead +ADD link-aws-gcc.sh / +RUN /link-aws-gcc.sh + +ADD builder-entrypoint.sh / +WORKDIR /build/probe +ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/build-probe-binaries b/build-probe-binaries index a1083da..fc359a6 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -22,7 +22,7 @@ # The precompiled binary is then obtained at runtime by sysdig-probe-loader # Ideally, the community should expand this stuff with better support # -set -euo pipefail +set -xeuo pipefail ARTIFACTORY_SERVER= ARTIFACTORY_KEY= @@ -213,7 +213,7 @@ function checkout_sysdig { then rm -rf $SYSDIG_DIR mkdir -p $SYSDIG_DIR - git clone git@github.com:draios/agent-libs.git $SYSDIG_DIR + git clone git@github.com:draios/sysdig.git $SYSDIG_DIR (cd $SYSDIG_DIR && git checkout $SYSDIG_TAG) fi HAVE_SYSDIG_CHECKOUT=1 @@ -293,7 +293,7 @@ function build_probe_impl { # RHEL6 BUILDER_GCC_VERSION=$(grep -Po '(?<=^#define LINUX_COMPILER "gcc version )[0-9.]+' $KERNELDIR/include/linux/compile.h || true) else - # ancient Ubuntu gets and ancient compiler + # ancient Ubuntu gets an ancient compiler BUILDER_GCC_VERSION=4.8.0 fi fi @@ -501,7 +501,7 @@ function ubuntu_build { else echo "Unpacking $DEB to $TARGET" mkdir -p $TARGET - dpkg -x $DEB $TARGET + docker run -v $(pwd)/$DEB:/$DEB:ro -v $(pwd)/$TARGET:/output:rw ubuntu:latest dpkg -x /$DEB /output touch $MARKER fi done diff --git a/install_wsl2_kernel_headers.bash b/install_wsl2_kernel_headers.bash new file mode 100755 index 0000000..1cc58da --- /dev/null +++ b/install_wsl2_kernel_headers.bash @@ -0,0 +1,295 @@ +#!/bin/bash + +# install_wsl2_kernel_headers +# Install kernel headers for WSL2 kernel version. +# +# Usage: +# % sudo bash +# # install_wsl2_kernel_headers +# OR +# # KERNEL_BUILD_NUM_JOBS=8 install_wsl2_kernel_headers +# +# Steps: +# 1) Confirm caller is running as root, needed for permission to write to +# /usr/src and /lib/modules +# 2) Verify that kernel version is of the expected format, *-microsoft-standard-WSL2 +# 3) Form Linux kernel branch name +# 4) Check to see if /lib/modules/ directory already exists; +# if so, does nothing else +# 5) Remove any existing kernel source tree, /usr/src/linux-src-x.x.x-sysdig, since that +# tree is in an unknown state +# 6) Retrieve kernel source tree from github WSL2-Linux-Kernel, into +# /usr/src/linux-src-x.x.x-sysdig +# 7) Install Microsoft-provided config file. +# 8) Build kernel, honoring environment variable KERNEL_BUILD_NUM_JOBS if provided. +# 9) Install kernel headers into /lib/modules/ +# 10) Validate /lib/modules/ directory now present +# 11) Remove unneeded files from kernel source tree, to save space + + +#========================================================================================== +# 1) Confirm caller is running as root, needed for permission to write to +# /usr/src and /lib/modules +#========================================================================================== +if [ "${EUID}" != "0" ] +then + echo Error: Must execute as root, for access to /usr/src and /lib/modules + exit 1 +fi + + +#========================================================================================== +# 2) Verify that kernel version is of the expected format, *-microsoft-standard-WSL2 +#========================================================================================== +MICROSOFT_KERNEL_RELEASE_SUFFIX=-microsoft-standard-WSL2 +UNAME_KERNEL_RELEASE=`uname -r` + +if [[ ${UNAME_KERNEL_RELEASE} != *${MICROSOFT_KERNEL_RELEASE_SUFFIX} ]] +then + echo Error: Unsupported kernel version ${UNAME_KERNEL_RELEASE} + echo Only \*${MICROSOFT_KERNEL_RELEASE_SUFFIX} versions supported + exit 1 +fi + + +#========================================================================================== +# 3) Form Linux kernel branch name +#========================================================================================== +KERNEL_VERSION_NUMBER=`echo ${UNAME_KERNEL_RELEASE} | sed "s/${MICROSOFT_KERNEL_RELEASE_SUFFIX}$//"` + +if [[ ${KERNEL_VERSION_NUMBER} == *${UNAME_KERNEL_RELEASE} || ${KERNEL_VERSION_NUMBER} == "" ]] +then + echo Error: Parsing kernel version number from ${UNAME_KERNEL_RELEASE} failed + exit 1 +fi + +echo Supported kernel version ${UNAME_KERNEL_RELEASE} + +LINUX_BRANCH=linux-msft-${KERNEL_VERSION_NUMBER} +echo LINUX_BRANCH=${LINUX_BRANCH} +echo + + +#========================================================================================== +# 4) Check to see if /lib/modules/ directory already exists; +# if so, does nothing else +#========================================================================================== +LIB_MODULES_DIR=/lib/modules/${UNAME_KERNEL_RELEASE} +echo LIB_MODULES_DIR=${LIB_MODULES_DIR} + +if [ -d ${LIB_MODULES_DIR} ] +then + echo Kernel modules directory $LIB_MODULES_DIR already exists + echo Performing no work. + exit 0 +fi + + +#========================================================================================== +# 5) Remove any existing kernel source tree, /usr/src/linux-src-x.x.x-sysdig, since that +# tree is in an unknown state +#========================================================================================== +LINUX_SRC_DIR=/usr/src/${LINUX_BRANCH}-sysdig +if [ -d ${LINUX_SRC_DIR} ] +then + echo Removing existing directory ${LINUX_SRC_DIR} + CMD="rm -rf ${LINUX_SRC_DIR}" # NOTE: rm -rf is dangerous; ONLY remove explicitly named directory + echo ${CMD} + eval ${CMD} + + if [ "$?" != "0" ] + then + echo Error: rm failed + exit 1 + fi + + echo +fi + + +#========================================================================================== +# 6) Retrieve kernel source tree from github WSL2-Linux-Kernel, into +# /usr/src/linux-src-x.x.x-sysdig +#========================================================================================== +echo Retrieving kernel source from github WSL2-Linux-Kernel, tag ${LINUX_BRANCH}, into ${LINUX_SRC_DIR}/${LINUX_SRC_TARFILE} + +CMD="mkdir -p ${LINUX_SRC_DIR}" +echo ${CMD} +eval ${CMD} +if [ "$?" != "0" ] +then + echo Error: mkdir failed + exit 1 +fi + +LINUX_SRC_TARFILE=${LINUX_BRANCH}.tar.gz +CMD="curl -L https://github.com/microsoft/WSL2-Linux-Kernel/archive/refs/tags/${LINUX_BRANCH}.tar.gz --output ${LINUX_SRC_DIR}/${LINUX_SRC_TARFILE}" +echo ${CMD} +eval ${CMD} + +if [ "$?" != "0" ] +then + echo Error: curl failed + exit 1 +fi + +echo Extracting kernel source from ${LINUX_SRC_TARFILE} +cd ${LINUX_SRC_DIR} +CMD="tar xf ${LINUX_BRANCH}.tar.gz --strip-components 1" +echo ${CMD} +eval ${CMD} + +if [ "$?" != "0" ] +then + echo Error: tar xf failed + exit 1 +fi + +echo + + +#========================================================================================== +# 7) Install Microsoft-provided config file. +#========================================================================================== +echo +echo Installing Microsoft kernel config file +cd ${LINUX_SRC_DIR} +if [ ! -f Microsoft/config-wsl ] +then + echo Error: Microsoft/config-wsl file not found in ${LINUX_SRC_DIR} + exit 1 +fi +CMD="cp Microsoft/config-wsl ./.config" +echo ${CMD} +eval ${CMD} + +if [ "$?" != "0" ] +then + echo Error: cp failed + exit 1 +fi + +echo + + +#========================================================================================== +# 8) Build kernel, honoring environment variable KERNEL_BUILD_NUM_JOBS if provided. +#========================================================================================== +echo Building kernel + +cd ${LINUX_SRC_DIR} +if [ "${KERNEL_BUILD_NUM_JOBS}" == "" ] +then + CMD="make LOCALVERSION=" + echo ${CMD} + eval ${CMD} +else + echo Using environment variable KERNEL_BUILD_NUM_JOBS=${KERNEL_BUILD_NUM_JOBS} + CMD="make -j $KERNEL_BUILD_NUM_JOBS LOCALVERSION=" + echo ${CMD} + eval ${CMD} +fi + +if [ "$?" != "0" ] +then + echo Error: Kernel build failed + exit 1 +fi + +echo + + +#========================================================================================== +# 9) Install kernel headers into /lib/modules/ +#========================================================================================== +echo Installing kernel headers +cd ${LINUX_SRC_DIR} +CMD="make modules_install" +echo ${CMD} +eval ${CMD} +if [ "$?" != "0" ] +then + echo Error: make failed + exit 1 +fi + +echo + + +#========================================================================================== +# 10) Validate /lib/modules/ directory now present +#========================================================================================== +if [ ! -d ${LIB_MODULES_DIR} ] +then + echo Error: Kernel modules directory ${LIB_MODULES_DIR} still not present after modules_install + exit 1 +fi + + +#========================================================================================== +# 11) Remove unneeded files from kernel source tree, to save space +#========================================================================================== +echo Reclaiming space + +echo Removing ${LINUX_BRANCH}.tar.gz +cd ${LINUX_SRC_DIR} +CMD="rm -f ${LINUX_BRANCH}.tar.gz" +echo ${CMD} +eval ${CMD} + +if [ "$?" != "0" ] +then + echo Error: rm failed + exit 1 +fi + +CMD="make clean" +cd ${LINUX_SRC_DIR} +echo ${CMD} +eval ${CMD} +if [ "$?" != "0" ] +then + echo Error: make failed + exit 1 +fi + +echo Removing C files +CMD="find ${LINUX_SRC_DIR} -name '*.c' -print | xargs rm" +echo ${CMD} +eval ${CMD} + +cd ${LINUX_SRC_DIR} +SUBDIRS="`echo [a-z]* | sed 's/arch//' | sed 's/include//'`" +if [ "$SUBDIRS" != "" ] +then + echo Removing unneeded H files + CMD="find $SUBDIRS -name '*.h' -print | xargs rm" + echo ${CMD} + eval ${CMD} +fi + +echo Removing ASM files +CMD="find ${LINUX_SRC_DIR} -name '*.S' -print -o -name '*.asm' -print | xargs rm" +echo ${CMD} +eval ${CMD} + +echo Removing PY files +CMD="find ${LINUX_SRC_DIR} -name '*.py' -print | xargs rm" +echo ${CMD} +eval ${CMD} + +echo Removing JSON files +CMD="find ${LINUX_SRC_DIR} -name '*.json' -print | xargs rm" +echo ${CMD} +eval ${CMD} + +echo Removing Documentation +CMD="find ${LINUX_SRC_DIR} -name 'Documentation' -print | xargs rm -r" +echo ${CMD} +eval ${CMD} + +echo + + +echo Kernel modules installed into $LIB_MODULES_DIR +exit 0 diff --git a/link-aws-gcc.sh b/link-aws-gcc.sh new file mode 100755 index 0000000..3775965 --- /dev/null +++ b/link-aws-gcc.sh @@ -0,0 +1,6 @@ +executables=(addr2line ar as c++filt c89 c99 cc cpp dwp elfedit gcc gcc-ar gcc-nm gcc-ranlib gcov gcov-dump gcov-tool gprof ld ld.bfd ld.gold lto-dump nm objcopy objdump ranlib readelf size strings strip) + +for i in "${executables[@]}" +do + ln -s /usr/bin/$i /usr/bin/gcc10-$i +done diff --git a/probe-directory-index b/probe-directory-index new file mode 100755 index 0000000..0666e58 --- /dev/null +++ b/probe-directory-index @@ -0,0 +1,53 @@ +#!/usr/bin/awk -f + +# usage: aws s3 ls s3://download.draios.com/stable/sysdig-probe-binaries/ | $0 > index.html + +BEGIN { + print ""; + print ""; + print " "; + print " "; + print " Directory index"; + print " "; + print " "; + print " "; +} + +$4 ~ /\.ko$/ { + PROBE = $4 + PROBE_GROUP = PROBE + PROBE_GROUP = gensub(/(.*-probe(-bpf)?-[^-]+).*/, "\\1", 1, PROBE); + + if(PROBE_GROUPS[PROBE_GROUP]) + { + PROBE_GROUPS[PROBE_GROUP] = PROBE_GROUPS[PROBE_GROUP] "," PROBE; + } + else + { + PROBE_GROUPS[PROBE_GROUP] = PROBE; + } +} + +END { + n = asorti(PROBE_GROUPS, PG_INDEXES) + for(pgi = 1; pgi <= n; ++pgi) + { + PG = PG_INDEXES[pgi] + + print "

    " + split(PROBE_GROUPS[PG], PROBES, ","); + for(i = 1; i <= length(PROBES); ++i) + { + print "
  • " PROBES[i] "
  • "; + } + print "
" + } + print " \n" +} From 415dd3d1ddeaf764ad8fbec47b037ace77daca39 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Mon, 2 Aug 2021 16:41:23 +0200 Subject: [PATCH 002/259] Add a note about needing the ubuntu image --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 779c029..d818702 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,14 @@ docker run --rm -v /var/run/docker.sock:/var/run/docker.sock airgap/sysdig-probe docker save airgap/sysdig-probe-builder | gzip > builders.tar.gz ``` +If you are going to build probes for Ubuntu kernels, you will also need an `ubuntu:latest` +image on your airgapped host. You can ship it using a very similar approach: + +``` +docker pull ubuntu +docker save ubuntu | gzip > ubuntu.tar.gz +``` + ### **(internet access required)** Download the kernel packages This is left as an exercise for the reader. Note that the packages should not be unpacked or installed. From 1de40570f1977ff3a68e69d780234dd486ca9598 Mon Sep 17 00:00:00 2001 From: Kevin Kauffman Date: Mon, 30 Aug 2021 15:55:23 -0400 Subject: [PATCH 003/259] remove container used to build debian --- build-probe-binaries | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-probe-binaries b/build-probe-binaries index fc359a6..c7b4677 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -501,7 +501,7 @@ function ubuntu_build { else echo "Unpacking $DEB to $TARGET" mkdir -p $TARGET - docker run -v $(pwd)/$DEB:/$DEB:ro -v $(pwd)/$TARGET:/output:rw ubuntu:latest dpkg -x /$DEB /output + docker run --rm -v $(pwd)/$DEB:/$DEB:ro -v $(pwd)/$TARGET:/output:rw ubuntu:latest dpkg -x /$DEB /output touch $MARKER fi done From 98fb6a1a1248a2c636e68bb1fab6424ce4af8aa8 Mon Sep 17 00:00:00 2001 From: Kevin Kauffman Date: Tue, 31 Aug 2021 16:00:39 -0400 Subject: [PATCH 004/259] add vault repos to centos6 probe builders --- CentOS-Base.repo | 61 ++++++++++++++++++++++++++++++++++++++++ CentOS-fasttrack.repo | 7 +++++ Dockerfile.centos-gcc4.4 | 2 ++ 3 files changed, 70 insertions(+) create mode 100644 CentOS-Base.repo create mode 100644 CentOS-fasttrack.repo diff --git a/CentOS-Base.repo b/CentOS-Base.repo new file mode 100644 index 0000000..e5528cd --- /dev/null +++ b/CentOS-Base.repo @@ -0,0 +1,61 @@ +# CentOS-Base.repo +# +# The mirror system uses the connecting IP address of the client and the +# update status of each mirror to pick mirrors that are updated to and +# geographically close to the client. You should use this for CentOS updates +# unless you are manually picking other mirrors. +# +# If the mirrorlist= does not work for you, as a fall back you can try the +# remarked out baseurl= line instead. +# +# + +[base] +name=CentOS-$releasever - Base +baseurl=http://vault.centos.org/6.10/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 + +#released updates +[updates] +name=CentOS-$releasever - Updates +baseurl=http://vault.centos.org/6.10/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 + +#additional packages that may be useful +[extras] +name=CentOS-$releasever - Extras +baseurl=http://vault.centos.org/6.10/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 + +#additional packages that extend functionality of existing packages +[centosplus] +name=CentOS-$releasever - Plus +baseurl=http://vault.centos.org/6.10/centosplus/$basearch/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 + +[centos-sclo-rh] +name=CentOS-6 - SCLo rh +baseurl=http://vault.centos.org/6.10/sclo/$basearch/rh/ +gpgcheck=1 +enabled=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo + +[centos-sclo-sclo] +name=CentOS-6 - SCLo sclo +baseurl=http://vault.centos.org/6.10/sclo/$basearch/sclo/ +gpgcheck=1 +enabled=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo + +#contrib - packages by Centos Users +[contrib] +name=CentOS-$releasever - Contrib +baseurl=http://vault.centos.org/6.10/contrib/$basearch/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 diff --git a/CentOS-fasttrack.repo b/CentOS-fasttrack.repo new file mode 100644 index 0000000..b960dac --- /dev/null +++ b/CentOS-fasttrack.repo @@ -0,0 +1,7 @@ +[fasttrack] +name=CentOS-6 - fasttrack +#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=fasttrack&infra=$infra +baseurl=http://vault.centos.org/6.0/fasttrack/$basearch/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 diff --git a/Dockerfile.centos-gcc4.4 b/Dockerfile.centos-gcc4.4 index d468fe8..81e4030 100644 --- a/Dockerfile.centos-gcc4.4 +++ b/Dockerfile.centos-gcc4.4 @@ -1,5 +1,7 @@ FROM centos:6 +ADD *.repo /etc/yum.repos.d/ + RUN yum -y install \ wget \ git \ From cb5aecb0f92cf1d292e4a8b8adb56e01003399ca Mon Sep 17 00:00:00 2001 From: Kevin Kauffman Date: Tue, 31 Aug 2021 16:08:00 -0400 Subject: [PATCH 005/259] remove pull from each docker invocation as we hit our rate limits --- build-probe-binaries | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-probe-binaries b/build-probe-binaries index c7b4677..99233ce 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -223,7 +223,7 @@ function build_toolkit { if [ -z "${HAVE_BUILDER_TOOLKIT:-}" ] then IMAGE_NAME="${BUILDER_IMAGE_PREFIX:-}sysdig-probe-builder:toolkit" - docker build -t "$IMAGE_NAME" -f $BUILDER_SOURCE/Dockerfile.toolkit --pull $BUILDER_SOURCE + docker build -t "$IMAGE_NAME" -f $BUILDER_SOURCE/Dockerfile.toolkit $BUILDER_SOURCE HAVE_BUILDER_TOOLKIT=1 fi } @@ -371,7 +371,7 @@ function build_probe_impl { else if [ -z "${builders[$IMAGE_NAME]:-}" ] then - docker build -t "$IMAGE_NAME" -f $DOCKERFILE --pull $BUILDER_SOURCE || return 1 + docker build -t "$IMAGE_NAME" -f $DOCKERFILE $BUILDER_SOURCE || return 1 docker images -q -f 'dangling=true' | xargs --no-run-if-empty docker rmi || true builders[$IMAGE_NAME]=1 fi From ca5a7c656e418caa996cf9f94ec5e530c3123ed9 Mon Sep 17 00:00:00 2001 From: Kevin Kauffman Date: Mon, 6 Sep 2021 13:50:18 -0400 Subject: [PATCH 006/259] add ubuntu probe builder for libc 2.34 --- Dockerfile.ubuntu-gcc11.2 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Dockerfile.ubuntu-gcc11.2 diff --git a/Dockerfile.ubuntu-gcc11.2 b/Dockerfile.ubuntu-gcc11.2 new file mode 100644 index 0000000..cbb0af9 --- /dev/null +++ b/Dockerfile.ubuntu-gcc11.2 @@ -0,0 +1,19 @@ +FROM ubuntu:impish + +RUN echo 'deb http://archive.ubuntu.com/ubuntu/ hirsute-proposed restricted main multiverse universe' > /etc/apt/sources.list.d/ubuntu-proposed.list && \ + apt-get update && \ + apt-get -y --no-install-recommends install \ + cmake \ + g++ \ + git \ + kmod \ + libc6-dev \ + libelf-dev \ + make \ + pkg-config \ + && apt-get clean + +ADD builder-entrypoint.sh / +WORKDIR /build/probe +ENTRYPOINT [ "/bin/bash" ] + From 4952199657d1e9356220c8c8779710fe634c8947 Mon Sep 17 00:00:00 2001 From: Kevin Kauffman Date: Mon, 6 Sep 2021 13:58:32 -0400 Subject: [PATCH 007/259] use impish repos --- Dockerfile.ubuntu-gcc11.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.ubuntu-gcc11.2 b/Dockerfile.ubuntu-gcc11.2 index cbb0af9..13f780e 100644 --- a/Dockerfile.ubuntu-gcc11.2 +++ b/Dockerfile.ubuntu-gcc11.2 @@ -1,6 +1,6 @@ FROM ubuntu:impish -RUN echo 'deb http://archive.ubuntu.com/ubuntu/ hirsute-proposed restricted main multiverse universe' > /etc/apt/sources.list.d/ubuntu-proposed.list && \ +RUN echo 'deb http://archive.ubuntu.com/ubuntu/ impish-proposed restricted main multiverse universe' > /etc/apt/sources.list.d/ubuntu-proposed.list && \ apt-get update && \ apt-get -y --no-install-recommends install \ cmake \ From 0fb1c3c5a3a323be9f2d42ade2e6ac92165452e4 Mon Sep 17 00:00:00 2001 From: Kevin Kauffman Date: Tue, 7 Sep 2021 11:11:40 -0400 Subject: [PATCH 008/259] Update Dockerfile.ubuntu-gcc11.2 Co-authored-by: Angelo Puglisi --- Dockerfile.ubuntu-gcc11.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.ubuntu-gcc11.2 b/Dockerfile.ubuntu-gcc11.2 index 13f780e..ce2ac1e 100644 --- a/Dockerfile.ubuntu-gcc11.2 +++ b/Dockerfile.ubuntu-gcc11.2 @@ -15,5 +15,5 @@ RUN echo 'deb http://archive.ubuntu.com/ubuntu/ impish-proposed restricted main ADD builder-entrypoint.sh / WORKDIR /build/probe -ENTRYPOINT [ "/bin/bash" ] +ENTRYPOINT [ "/builder-entrypoint.sh" ] From 2828d74e4481441ef8cbbf7eee7bde0a9eec0d6e Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Wed, 11 Aug 2021 16:44:58 +0200 Subject: [PATCH 009/259] Typo: add missing `-B` option --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d818702..b414d8d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ docker run --rm \ -v /a-directory-with-some-free-space/:/workspace \ -v $(pwd)/agent-libs:/sysdig \ -v /directory-containing-kernel-packages/:/kernels \ - sysdig-probe-builder:latest -- \ + sysdig-probe-builder:latest -B -- \ -p sysdigcloud-probe -v 12.0.0 -k CustomCentOS ``` From a52671906453aba715d046a2145f39d107201704 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Wed, 11 Aug 2021 20:03:34 +0200 Subject: [PATCH 010/259] Fix Ubuntu build when running as a container We can't use $(pwd) in `docker run`, since our pwd is not the location of the files on the host. --- build-probe-binaries | 17 +++++++++++++++-- main-builder-entrypoint.sh | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/build-probe-binaries b/build-probe-binaries index 99233ce..6dc9af8 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -102,6 +102,10 @@ Options: coreos_developer_container.VERSION.bin.bz2, where VERSION is the CoreOS release (e.g. 2345.0.0). + -K KERNEL_BASEDIR + Pass KERNEL_BASEDIR as the directory containing the kernels to the builder + containers. This is probably only useful when running this script in a container + -p PROBE_NAME The resulting module name (e.g. sysdig-probe for OSS sysdig). @@ -144,7 +148,8 @@ EOF BASEDIR=$(pwd) DOCKER_BASEDIR=$BASEDIR -while getopts ":a:A:b:B:d:k:p:r:s:t:v:" opt +KERNEL_BASEDIR=$BASEDIR +while getopts ":a:A:b:B:d:k:K:p:r:s:t:v:" opt do case "$opt" in a) ARTIFACTORY_SERVER=$OPTARG;; @@ -154,6 +159,8 @@ do RUNNING_IN_DOCKER=1;; d) DOWNLOAD_CONCURRENCY=$OPTARG;; k) KERNEL_TYPE=$OPTARG;; + K) KERNEL_BASEDIR=$OPTARG + RUNNING_IN_DOCKER=1;; p) PROBE_NAME=$OPTARG;; r) RETRIES=$OPTARG;; s) SYSDIG_DIR=$OPTARG;; @@ -501,7 +508,13 @@ function ubuntu_build { else echo "Unpacking $DEB to $TARGET" mkdir -p $TARGET - docker run --rm -v $(pwd)/$DEB:/$DEB:ro -v $(pwd)/$TARGET:/output:rw ubuntu:latest dpkg -x /$DEB /output + if [ -n "$RUNNING_IN_DOCKER" ] + then + UBUNTU_KERNEL_DEB=$KERNEL_BASEDIR/${DEB#/*/} + else + UBUNTU_KERNEL_DEB=$(pwd)/$DEB + fi + docker run --rm -v $UBUNTU_KERNEL_DEB:/$DEB:ro -v $DOCKER_BASEDIR/$TARGET:/output:rw ubuntu:latest dpkg -x /$DEB /output touch $MARKER fi done diff --git a/main-builder-entrypoint.sh b/main-builder-entrypoint.sh index fbd1b68..02dac3f 100755 --- a/main-builder-entrypoint.sh +++ b/main-builder-entrypoint.sh @@ -63,7 +63,7 @@ build_probes() KERNELS_SRC=$(get_host_mount /kernels) cd /workspace - /builder/build-probe-binaries -B $WORKSPACE_SRC -s $SYSDIG_SRC -b "$BUILDER_IMAGE_PREFIX" "$@" /kernels/* + /builder/build-probe-binaries -B $WORKSPACE_SRC -K $KERNELS_SRC -s $SYSDIG_SRC -b "$BUILDER_IMAGE_PREFIX" "$@" /kernels/* } prepare_builders() From e01f2f4ca47b35005cf4b2e80af303ec1f4c17b4 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Thu, 12 Aug 2021 14:25:17 +0200 Subject: [PATCH 011/259] CentOS 8 uses `kernel-core` packages in addition to `kernel` The `kernel` package has no files in there (but still weighs 6 MB) --- kernel-crawler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel-crawler.py b/kernel-crawler.py index 795d361..be92b75 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -74,7 +74,7 @@ def sqlite_column(row, col): # Finally, we need to inspect every page for packages we need. # Again, this is an XPath + Regex query so use the regex if you want # to limit the number of packages reported. - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(devel-)?[0-9].*\.rpm$')]/@href" + "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(devel-|core-)?[0-9].*\.rpm$')]/@href" }, { @@ -84,7 +84,7 @@ def sqlite_column(row, col): "os/x86_64/Packages/", "updates/x86_64/Packages/" ], - "page_pattern" : "//body//table/tr/td/a[regex:test(@href, '^kernel-(devel-)?[0-9].*\.rpm$')]/@href" + "page_pattern" : "//body//table/tr/td/a[regex:test(@href, '^kernel-(devel-|core-)?[0-9].*\.rpm$')]/@href" } ], From ed3d94cd01b1d7181ac14c529ed7517dbc395cee Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Thu, 12 Aug 2021 15:31:05 +0200 Subject: [PATCH 012/259] Add CentOS 8 to kernel crawler --- kernel-crawler.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/kernel-crawler.py b/kernel-crawler.py index be92b75..8fdd22f 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -62,13 +62,14 @@ def sqlite_column(row, col): # This is the XPath + Regex (optional) for analyzing the `root` # page and discover possible distro versions. Use the regex if you # want to limit the version release - "discovery_pattern" : "/html/body//pre/a[regex:test(@href, '^6|^7.*$')]/@href", + "discovery_pattern" : "/html/body//pre/a[regex:test(@href, '^6|^7|^8.*$')]/@href", # Once we have found every version available, we need to know were # to go inside the tree to find packages we need (HTML pages) "subdirs" : [ "os/x86_64/Packages/", - "updates/x86_64/Packages/" + "updates/x86_64/Packages/", + "BaseOS/x86_64/os/Packages/" ], # Finally, we need to inspect every page for packages we need. @@ -79,10 +80,11 @@ def sqlite_column(row, col): { "root" : "http://vault.centos.org/", - "discovery_pattern" : "//body//table/tr/td/a[regex:test(@href, '^6|^7.*$')]/@href", + "discovery_pattern" : "//body//table/tr/td/a[regex:test(@href, '^6|^7|^8.*$')]/@href", "subdirs" : [ "os/x86_64/Packages/", - "updates/x86_64/Packages/" + "updates/x86_64/Packages/", + "BaseOS/x86_64/os/Packages/" ], "page_pattern" : "//body//table/tr/td/a[regex:test(@href, '^kernel-(devel-|core-)?[0-9].*\.rpm$')]/@href" } From 9ecdaeeeb1ecee5f1b962f9517b83de33b20ccd6 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Thu, 12 Aug 2021 15:33:16 +0200 Subject: [PATCH 013/259] Allow filtering kernel-crawler output It's effectively the same as `| grep -F ` but slightly easier to use --- kernel-crawler.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/kernel-crawler.py b/kernel-crawler.py index 8fdd22f..e8dbd61 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -390,13 +390,18 @@ def process_atomic_distro(current_repos): URL_TIMEOUT=30 if len(sys.argv) < 2 or not sys.argv[1] in repos: - sys.stderr.write("Usage: " + sys.argv[0] + " \n") + sys.stderr.write("Usage: " + sys.argv[0] + " [version]\n") sys.stderr.write("Available distros:\n") for d in sorted(repos): sys.stderr.write(" - {}\n".format(d)) sys.exit(1) distro = sys.argv[1] +try: + version_filter = sys.argv[2] + sys.stderr.write('Looking for packages matching "{}"\n'.format(version_filter)) +except IndexError: + version_filter = '' # # Navigate the `repos` tree and look for packages we need that match the @@ -450,4 +455,5 @@ def process_atomic_distro(current_repos): # Print URLs to stdout # for url in urls: - print(url) + if version_filter in url: + print(url) From 1da6d790519b035e2a397a46875c205a5b53652f Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Thu, 12 Aug 2021 16:02:26 +0200 Subject: [PATCH 014/259] Update README with some kernel-crawler docs --- README.md | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b414d8d..483ce3a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,61 @@ The probe builder can be used to automatically build kernel modules for [OSS Sysdig](https://github.com/draios/sysdig) as well as the [commercial Sysdig agent](https://sysdig.com/). It can run on any host with Docker installed, including (with some preparation) air-gapped hosts. -The description below assumes that we need to build probes for agent 12.0.0 (substitute the version as required) for RHEL/CentOS kernels. Whenever kernel packages are mentioned, it means kernel-VERSION.rpm and kernel-devel-VERSION.rpm files (with matching VERSION). A similar process can be used for Ubuntu kernels (linux-image-VERSION.deb, linux-headers-VERSION.deb and possibly others) with the -k CustomUbuntu option in place of -k CustomCentOS. +The description below assumes that we need to build probes for: +* agent 12.0.0 (substitute the version as required) +* for RedHat/CentOS kernels (for Ubuntu/Debian kernels use -k CustomUbuntu option instead of -k CustomCentOS). + +## Prerequisites + +### Downloading kernel packages + +To prebuild probes for a particular kernel, you need the headers package for that particular kernel, along +with its dependencies. + +For RedHat-like OSes (RHEL, CentOS, Fedora, etc.), the required packages are usually: +* `kernel-.rpm` +* `kernel-devel-.rpm` +* `kernel-core-.rpm` (if present) + +For Debian-like OSes (Debian, Ubuntu, etc.), the required packages are usually: +* `linux-image-.deb` +* `linux-headers-.deb` + +But please note that the set of required packages varies across distributions and versions, so providing +an exhaustive list is not possible here. + +You can use the `kernel-crawler.py` script to determine the set of packages for a particular kernel. +To use it, pass a distribution name (one of the following) and, optionally, the specific kernel version +or its subset. + +The output is a list of URLs directly to the kernel packages. For example, to download all the packages +needed to build the CentOS 4.18.0-305.10.2.el8\_4 kernel, you can run: + + # .../path/to/kernel-crawler.py CentOS 4.18.0-305.10.2.el8_4 | xargs wget -c + (...) + # ls -la + total 61556 + drwxr-xr-x 2 root root 4096 Aug 12 15:55 . + drwxr-xr-x 9 root root 4096 Aug 12 15:53 .. + -rw-r--r-- 1 root root 6169556 Jul 20 21:12 kernel-4.18.0-305.10.2.el8_4.x86_64.rpm + -rw-r--r-- 1 root root 37552272 Jul 20 21:12 kernel-core-4.18.0-305.10.2.el8_4.x86_64.rpm + -rw-r--r-- 1 root root 19290066 Aug 12 15:55 kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm + +Then you can pass the directory containing the kernel files to the probe builder container +(`/directory-containing-kernel-packages/` in the examples below). + +Distributions supported by the kernel crawler: + - AmazonLinux + - AmazonLinux2 + - CentOS + - CoreOS + - Debian + - Fedora + - Fedora-Atomic + - Ubuntu + +Please note that you do *not* need to extract or install the kernel packages on the build host. +The probe builder works on package files directly and extracts them internally. ## With internet access From 94e1bab8b6476e778062b2ba4b601ba70cac6525 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Fri, 13 Aug 2021 14:21:30 +0200 Subject: [PATCH 015/259] Hack to include all headers for ubuntu -generic kernels --- kernel-crawler.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel-crawler.py b/kernel-crawler.py index e8dbd61..dad214f 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -399,6 +399,8 @@ def process_atomic_distro(current_repos): distro = sys.argv[1] try: version_filter = sys.argv[2] + if distro == 'Ubuntu' and version_filter.endswith('-generic'): + version_filter = version_filter[:-len('-generic')] sys.stderr.write('Looking for packages matching "{}"\n'.format(version_filter)) except IndexError: version_filter = '' From 1d61295c32315151682523275154dd3b85086734 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Thu, 19 Aug 2021 18:33:35 +0200 Subject: [PATCH 016/259] Remove note about OSS Sysdig Support for that is incomplete now. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 483ce3a..38f8e3b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Running an on-prem probe builder -The probe builder can be used to automatically build kernel modules for [OSS Sysdig](https://github.com/draios/sysdig) as well as the [commercial Sysdig agent](https://sysdig.com/). It can run on any host with Docker installed, including (with some preparation) air-gapped hosts. +The probe builder can be used to automatically build kernel modules for the [commercial Sysdig agent](https://sysdig.com/). It can run on any host with Docker installed, including (with some preparation) air-gapped hosts. The description below assumes that we need to build probes for: * agent 12.0.0 (substitute the version as required) From b986c631f4b3e9e54d340d1e35d306c5804258c1 Mon Sep 17 00:00:00 2001 From: Naveen Bali Date: Fri, 17 Sep 2021 10:42:35 -0400 Subject: [PATCH 017/259] Provide username:password option to curl in sysdig-probe-loader --- sysdig-probe-loader | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sysdig-probe-loader b/sysdig-probe-loader index 313d1d9..a9939be 100755 --- a/sysdig-probe-loader +++ b/sysdig-probe-loader @@ -384,6 +384,10 @@ then else SYSDIG_PROBE_CURL_OPTIONS=-fsS fi +if [ -n "$SYSDIG_PROBE_BASIC_AUTH" ] +then + SYSDIG_PROBE_CURL_OPTIONS="-u ${SYSDIG_PROBE_BASIC_AUTH_USER} ${SYSDIG_PROBE_CURL_OPTIONS}" +fi MAX_RMMOD_WAIT=60 KERNEL_ERR_MESSAGE="" From 37ba7ae6264dbdba7fc0b1c29982b223780fabc9 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Mon, 13 Sep 2021 18:32:20 +0200 Subject: [PATCH 018/259] Switch Fedora to mirrors.kernel.org mirrors.edge.kernel.org apparently doesn't have Fedora packages now --- kernel-crawler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel-crawler.py b/kernel-crawler.py index dad214f..204fdf8 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -148,7 +148,7 @@ def sqlite_column(row, col): "Fedora" : [ { - "root" : "https://mirrors.edge.kernel.org/fedora/releases/", + "root" : "https://mirrors.kernel.org/fedora/releases/", "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", "subdirs" : [ "Everything/x86_64/os/Packages/k/" @@ -157,7 +157,7 @@ def sqlite_column(row, col): }, { - "root" : "https://mirrors.edge.kernel.org/fedora/updates/", + "root" : "https://mirrors.kernel.org/fedora/updates/", "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", "subdirs" : [ "x86_64/Packages/k/" @@ -166,7 +166,7 @@ def sqlite_column(row, col): }, { - "root" : "https://mirrors.edge.kernel.org/fedora/updates/", + "root" : "https://mirrors.kernel.org/fedora/updates/", "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", "subdirs" : [ "Everything/x86_64/Packages/k/" From ce515afeb9a668c3d2a6e57544abec245722bf81 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Wed, 8 Sep 2021 13:41:30 +0200 Subject: [PATCH 019/259] Fedora 34 builder (gcc 11.0) --- Dockerfile.centos-gcc11.0 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Dockerfile.centos-gcc11.0 diff --git a/Dockerfile.centos-gcc11.0 b/Dockerfile.centos-gcc11.0 new file mode 100644 index 0000000..ba80750 --- /dev/null +++ b/Dockerfile.centos-gcc11.0 @@ -0,0 +1,20 @@ +FROM fedora:34 + +RUN yum -y install \ + wget \ + git \ + gcc \ + gcc-c++ \ + autoconf \ + bison \ + flex \ + make \ + cmake \ + elfutils-devel \ + findutils \ + kmod \ + python-lxml && yum clean all + +ADD builder-entrypoint.sh / +WORKDIR /build/probe +ENTRYPOINT [ "/builder-entrypoint.sh" ] From a66abc8a2734a9a032f1c774bff8d1c2af18f189 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 14 Sep 2021 15:02:20 +0200 Subject: [PATCH 020/259] Automatically build eBPF probes on newer distributions --- Dockerfile.centos-gcc10.3 | 2 ++ Dockerfile.centos-gcc11.0 | 2 ++ Dockerfile.centos-gcc7.3 | 2 ++ Dockerfile.centos-gcc8.3 | 2 ++ Dockerfile.centos-gcc9.2 | 2 ++ Dockerfile.debian-gcc6.3 | 2 ++ Dockerfile.debian-gcc8.3 | 2 ++ Dockerfile.ubuntu-gcc10.3 | 2 ++ Dockerfile.ubuntu-gcc11.2 | 2 ++ Dockerfile.ubuntu-gcc7.4 | 2 ++ builder-entrypoint.sh | 6 ++++++ 11 files changed, 26 insertions(+) diff --git a/Dockerfile.centos-gcc10.3 b/Dockerfile.centos-gcc10.3 index 8c42e8a..64f2054 100644 --- a/Dockerfile.centos-gcc10.3 +++ b/Dockerfile.centos-gcc10.3 @@ -13,6 +13,8 @@ RUN yum -y install \ elfutils-devel \ findutils \ kmod \ + clang \ + llvm \ python-lxml && yum clean all # amazonlinux2 uses a wacky version of gcc which puts wrappers on stuff (probably from diff --git a/Dockerfile.centos-gcc11.0 b/Dockerfile.centos-gcc11.0 index ba80750..69fac80 100644 --- a/Dockerfile.centos-gcc11.0 +++ b/Dockerfile.centos-gcc11.0 @@ -13,6 +13,8 @@ RUN yum -y install \ elfutils-devel \ findutils \ kmod \ + clang \ + llvm \ python-lxml && yum clean all ADD builder-entrypoint.sh / diff --git a/Dockerfile.centos-gcc7.3 b/Dockerfile.centos-gcc7.3 index 927bfcf..24ddc7a 100644 --- a/Dockerfile.centos-gcc7.3 +++ b/Dockerfile.centos-gcc7.3 @@ -13,6 +13,8 @@ RUN yum -y install \ elfutils-devel \ findutils \ kmod \ + clang \ + llvm \ python-lxml && yum clean all ADD builder-entrypoint.sh / diff --git a/Dockerfile.centos-gcc8.3 b/Dockerfile.centos-gcc8.3 index 4a5b486..72239cb 100644 --- a/Dockerfile.centos-gcc8.3 +++ b/Dockerfile.centos-gcc8.3 @@ -13,6 +13,8 @@ RUN yum -y install \ elfutils-devel \ findutils \ kmod \ + clang \ + llvm \ python-lxml && yum clean all ADD builder-entrypoint.sh / diff --git a/Dockerfile.centos-gcc9.2 b/Dockerfile.centos-gcc9.2 index e03b4d2..9327419 100644 --- a/Dockerfile.centos-gcc9.2 +++ b/Dockerfile.centos-gcc9.2 @@ -13,6 +13,8 @@ RUN yum -y install \ elfutils-devel \ findutils \ kmod \ + clang \ + llvm \ python-lxml && yum clean all ADD builder-entrypoint.sh / diff --git a/Dockerfile.debian-gcc6.3 b/Dockerfile.debian-gcc6.3 index 639fdcc..1394d95 100644 --- a/Dockerfile.debian-gcc6.3 +++ b/Dockerfile.debian-gcc6.3 @@ -8,6 +8,8 @@ RUN apt-get update && apt-get -y --no-install-recommends install \ libc6-dev \ make \ pkg-config \ + clang \ + llvm \ && apt-get clean ADD builder-entrypoint.sh / diff --git a/Dockerfile.debian-gcc8.3 b/Dockerfile.debian-gcc8.3 index 9b08543..68b2573 100644 --- a/Dockerfile.debian-gcc8.3 +++ b/Dockerfile.debian-gcc8.3 @@ -8,6 +8,8 @@ RUN apt-get update && apt-get -y --no-install-recommends install \ libc6-dev \ make \ pkg-config \ + clang \ + llvm \ && apt-get clean ADD builder-entrypoint.sh / diff --git a/Dockerfile.ubuntu-gcc10.3 b/Dockerfile.ubuntu-gcc10.3 index 31c580a..0bc0ef6 100644 --- a/Dockerfile.ubuntu-gcc10.3 +++ b/Dockerfile.ubuntu-gcc10.3 @@ -11,6 +11,8 @@ RUN echo 'deb http://archive.ubuntu.com/ubuntu/ hirsute-proposed restricted main libelf-dev \ make \ pkg-config \ + clang \ + llvm \ && apt-get clean ADD builder-entrypoint.sh / diff --git a/Dockerfile.ubuntu-gcc11.2 b/Dockerfile.ubuntu-gcc11.2 index ce2ac1e..2a3de2f 100644 --- a/Dockerfile.ubuntu-gcc11.2 +++ b/Dockerfile.ubuntu-gcc11.2 @@ -11,6 +11,8 @@ RUN echo 'deb http://archive.ubuntu.com/ubuntu/ impish-proposed restricted main libelf-dev \ make \ pkg-config \ + clang \ + llvm \ && apt-get clean ADD builder-entrypoint.sh / diff --git a/Dockerfile.ubuntu-gcc7.4 b/Dockerfile.ubuntu-gcc7.4 index 72d060d..463f3b2 100644 --- a/Dockerfile.ubuntu-gcc7.4 +++ b/Dockerfile.ubuntu-gcc7.4 @@ -9,6 +9,8 @@ RUN apt-get update && apt-get -y --no-install-recommends install \ libelf-dev \ make \ pkg-config \ + clang \ + llvm \ && apt-get clean ADD builder-entrypoint.sh / diff --git a/builder-entrypoint.sh b/builder-entrypoint.sh index 3638fff..3fe9ed2 100755 --- a/builder-entrypoint.sh +++ b/builder-entrypoint.sh @@ -36,3 +36,9 @@ fi cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH_ORIG.ko + +if type -p clang > /dev/null +then + make -C /build/probe/sysdig/driver/bpf + cp /build/probe/sysdig/driver/bpf/probe.o $OUTPUT/$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko +fi From c7c65f7b50218265c90990de3e0b95eb849f5ab4 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 14 Sep 2021 18:03:46 +0000 Subject: [PATCH 021/259] Fix formatting --- build-probe-binaries | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build-probe-binaries b/build-probe-binaries index 6dc9af8..29aa70c 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -413,16 +413,16 @@ function build_probe { return fi - LOG=$(mktemp /tmp/log.XXXXXX) - if ! build_probe_impl &> $LOG - then - (echo "Build for $PROBE_ID failed"; cat $LOG) | tee -a $FAIL_LOG - FAILED=1 - else + LOG=$(mktemp /tmp/log.XXXXXX) + if ! build_probe_impl &> $LOG + then + (echo "Build for $PROBE_ID failed"; cat $LOG) | tee -a $FAIL_LOG + FAILED=1 + else echo "Build for $PROBE_ID successful" cat $LOG - fi - rm -f $LOG + fi + rm -f $LOG } function coreos_build { From 0f439113392322a69a9a50ad5afff5dcc5705274 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 14 Sep 2021 18:03:54 +0000 Subject: [PATCH 022/259] Separate kmod from ebpf builds at the build-probe-binaries level Otherwise we can't build the eBPF probe when the kmod is already built. --- build-probe-binaries | 33 +++++++++++++++++++- builder-entrypoint.sh | 70 ++++++++++++++++++++++++++----------------- 2 files changed, 74 insertions(+), 29 deletions(-) diff --git a/build-probe-binaries b/build-probe-binaries index 29aa70c..b067456 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -394,7 +394,35 @@ function build_probe_impl { -e HASH=$HASH \ -e HASH_ORIG=$HASH_ORIG \ --name $CONTAINER_NAME \ - $IMAGE_NAME || return 1 + $IMAGE_NAME "$@" || return 1 +} + +function build_probe_bpf { + PROBE_ID=$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o + + # Skip Kernel 4.15.0-29 because probe does not build against it + if [ $KERNEL_RELEASE-$HASH = "4.15.0-29-generic-ea0aa038a6b9bdc4bb42152682bba6ce" -o \ + $KERNEL_RELEASE-$HASH = "5.8.0-1023-aws-3f7746be1bef4c3f68f5465d8453fa4d" ]; then + echo "Temporarily skipping BPF $PROBE_ID" + return + fi + + if [ -f $BASEDIR/output/$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o ] && + [ -f $BASEDIR/output/$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH_ORIG.o ]; then + echo "Skipping BPF $PROBE_ID (already built)" + return + fi + + LOG=$(mktemp /tmp/log.XXXXXX) + if ! build_probe_impl bpf &> $LOG + then + (echo "BPF Build for $PROBE_ID failed"; cat $LOG) | tee -a $FAIL_LOG + FAILED=1 + else + echo "BPF Build for $PROBE_ID successful" + cat $LOG + fi + rm -f $LOG } function build_probe { @@ -541,6 +569,7 @@ function ubuntu_build { KERNEL_RELEASE=$KERNEL_VERSION echo "Building probe for Ubuntu kernel $KERNEL_VERSION ($KERNEL_RELEASE_FULL)" build_probe + build_probe_bpf done } @@ -581,6 +610,7 @@ function rhel_build { export KERNELDIR=$BASEDIR/$TARGET/usr/src/kernels/$KERNEL_RELEASE echo "Building probe for CentOS kernel $KERNEL_RELEASE" build_probe + build_probe_bpf done } @@ -682,6 +712,7 @@ function debian_build { KERNEL_RELEASE=$KERNEL_ARCH_RELEASE echo "Building probe for Debian kernel $KERNEL_ARCH_RELEASE" build_probe + build_probe_bpf done } diff --git a/builder-entrypoint.sh b/builder-entrypoint.sh index 3fe9ed2..88b55b9 100755 --- a/builder-entrypoint.sh +++ b/builder-entrypoint.sh @@ -14,31 +14,45 @@ set -euo pipefail ARCH=$(uname -m) -if [[ -f "${KERNELDIR}/scripts/gcc-plugins/stackleak_plugin.so" ]]; then - echo "Rebuilding gcc plugins for ${KERNELDIR}" - (cd "${KERNELDIR}" && make gcc-plugins) -fi - -echo Building $PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko - -mkdir -p /build/sysdig -cd /build/sysdig - -cmake -DCMAKE_BUILD_TYPE=Release -DPROBE_NAME=$PROBE_NAME -DPROBE_VERSION=$PROBE_VERSION -DPROBE_DEVICE_NAME=$PROBE_DEVICE_NAME -DCREATE_TEST_TARGETS=OFF /build/probe/sysdig -make driver -strip -g driver/$PROBE_NAME.ko - -KO_VERSION=$(/sbin/modinfo driver/$PROBE_NAME.ko | grep vermagic | tr -s " " | cut -d " " -f 2) -if [ "$KO_VERSION" != "$KERNEL_RELEASE" ]; then - echo "Corrupted probe, KO_VERSION " $KO_VERSION ", KERNEL_RELEASE " $KERNEL_RELEASE - exit 1 -fi - -cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko -cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH_ORIG.ko - -if type -p clang > /dev/null -then - make -C /build/probe/sysdig/driver/bpf - cp /build/probe/sysdig/driver/bpf/probe.o $OUTPUT/$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko -fi +build_kmod() { + if [[ -f "${KERNELDIR}/scripts/gcc-plugins/stackleak_plugin.so" ]]; then + echo "Rebuilding gcc plugins for ${KERNELDIR}" + (cd "${KERNELDIR}" && make gcc-plugins) + fi + + echo Building $PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko + + mkdir -p /build/sysdig + cd /build/sysdig + + cmake -DCMAKE_BUILD_TYPE=Release -DPROBE_NAME=$PROBE_NAME -DPROBE_VERSION=$PROBE_VERSION -DPROBE_DEVICE_NAME=$PROBE_DEVICE_NAME -DCREATE_TEST_TARGETS=OFF /build/probe/sysdig + make driver + strip -g driver/$PROBE_NAME.ko + + KO_VERSION=$(/sbin/modinfo driver/$PROBE_NAME.ko | grep vermagic | tr -s " " | cut -d " " -f 2) + if [ "$KO_VERSION" != "$KERNEL_RELEASE" ]; then + echo "Corrupted probe, KO_VERSION " $KO_VERSION ", KERNEL_RELEASE " $KERNEL_RELEASE + exit 1 + fi + + cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko + cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH_ORIG.ko +} + + +build_bpf() { + if ! type -p clang > /dev/null + then + echo "clang not available, not building eBPF probe $PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o" + else + echo "Building eBPF probe $PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o" + make -C /build/probe/sysdig/driver/bpf + cp /build/probe/sysdig/driver/bpf/probe.o $OUTPUT/$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o + fi +} + +case "${1:-}" in + bpf) build_bpf;; + "") build_kmod;; + *) exit 1;; +esac From fc9b1e448e557fdd5d32a31af2709c3690641803 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Fri, 24 Sep 2021 20:28:19 +0200 Subject: [PATCH 023/259] List eBPF probes as well in the directory listing --- probe-directory-index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/probe-directory-index b/probe-directory-index index 0666e58..3b402cb 100755 --- a/probe-directory-index +++ b/probe-directory-index @@ -20,7 +20,7 @@ BEGIN { print " "; } -$4 ~ /\.ko$/ { +$4 ~ /\.k?o$/ { PROBE = $4 PROBE_GROUP = PROBE PROBE_GROUP = gensub(/(.*-probe(-bpf)?-[^-]+).*/, "\\1", 1, PROBE); From 663a9acf2afbf15f0e176b4be44ee7f9891338be Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 21 Sep 2021 14:06:15 +0200 Subject: [PATCH 024/259] Use repository metadata to find kernel packages While we still have some hacks for e.g. choosing linux-modules when available instead of linux-image, this crawler should be much more robust than the old html-scraping based one. Also includes support for PhotonOS and Oracle Linux 6/7/8. Doesn't support Fedora Atomic and CoreOS, since these two distros are dead by now. --- kernel-crawler.py | 1180 +++++++++++++++++++++++++++++---------------- 1 file changed, 768 insertions(+), 412 deletions(-) diff --git a/kernel-crawler.py b/kernel-crawler.py index 204fdf8..2f03608 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -15,447 +15,803 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -# - -# Author: Samuele Pilleri -# Date: August 17th, 2015 -from __future__ import unicode_literals -import bz2 +# This script is used to: +# - scan a well-known distribution mirror for kernel packages +# - get all the packages' dependencies +# - print the URLs for all packages (kernels and dependencies) +# +# We unfortunately still need some heuristics to find the right +# packages but at least we get the dependencies cleanly. +# In theory we could inspect the package content lists, but +# that ends up being very slow. +# +# In the code, we have a few parallel class hierarchies, all +# based in an abstract interface, implemented by concrete +# RPM/DEB classes: +# - a Repository, as defined by having a single package database +# - a mirror, as defined by being a single http(s) server +# - a distribution, i.e. a collection of mirrors +# +# Please note that we don't have a notion of a distribution version +# in the abstract interface. +# +# Packages from different repositories are handled differently +# for rpm/deb systems: +# - rpm-based repos are completely independent of each other +# (since the repositories are generally self-contained, even +# for e.g. updates) +# - deb-based mirrors get their contents regrouped along `dist` lines +# (e.g. all Ubuntu Xenial packages are kept in one map, independent +# of whether they're coming from security, updates, backports etc.) +# +# This is required for two reasons: +# - package names are supposed to be unique in a distro (and they're +# not unique across different distributions) so otherwise we'd get +# wrong URLs (from the same package but a different distro) +# - the repositories aren't self contained, e.g. security repos +# may depend on kbuild packages from the main repo + +from __future__ import print_function import re -import sqlite3 -import sys import tempfile -import time + +from lxml import etree, html import zlib +import bz2 +import sys +import sqlite3 + +# --- http helpers --- try: + # noinspection PyCompatibility from urllib2 import urlopen, unquote - - # python 2 - def sqlite_column(row, col): - return row[bytes(col)] - except ImportError: + # noinspection PyCompatibility from urllib.request import urlopen + # noinspection PyCompatibility from urllib.parse import unquote - # python 3 - def sqlite_column(row, col): - return row[col] +try: + # noinspection PyCompatibility + from lzma import decompress as lzma_decompress +except ImportError: + try: + from backports.lzma import decompress as lzma_decompress + except ImportError: + def lzma_decompress(content): + raise NotImplementedError("LZMA compression not supported, install backports.lzma") + + +def get_url(url): + print('Retrieving {}'.format(url), file=sys.stderr) + resp = urlopen(url) + if url.endswith('.gz'): + return zlib.decompress(resp.read(), 47) + elif url.endswith('.xz'): + return lzma_decompress(resp.read()) + elif url.endswith('.bz2'): + return bz2.decompress(resp.read()) + else: + return resp.read() -from lxml import html -# -# This is the main configuration tree to easily analyze Linux repositories for -# hunting packages. When adding repos or distros be sure to respect the same data -# structure -# -repos = { - "CentOS" : [ - { - # This is the root path of the repository in which the script will - # look for distros (HTML page) - "root" : "http://mirrors.edge.kernel.org/centos/", - - # This is the XPath + Regex (optional) for analyzing the `root` - # page and discover possible distro versions. Use the regex if you - # want to limit the version release - "discovery_pattern" : "/html/body//pre/a[regex:test(@href, '^6|^7|^8.*$')]/@href", - - # Once we have found every version available, we need to know were - # to go inside the tree to find packages we need (HTML pages) - "subdirs" : [ - "os/x86_64/Packages/", - "updates/x86_64/Packages/", - "BaseOS/x86_64/os/Packages/" - ], - - # Finally, we need to inspect every page for packages we need. - # Again, this is an XPath + Regex query so use the regex if you want - # to limit the number of packages reported. - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(devel-|core-)?[0-9].*\.rpm$')]/@href" - }, - - { - "root" : "http://vault.centos.org/", - "discovery_pattern" : "//body//table/tr/td/a[regex:test(@href, '^6|^7|^8.*$')]/@href", - "subdirs" : [ - "os/x86_64/Packages/", - "updates/x86_64/Packages/", - "BaseOS/x86_64/os/Packages/" - ], - "page_pattern" : "//body//table/tr/td/a[regex:test(@href, '^kernel-(devel-|core-)?[0-9].*\.rpm$')]/@href" - } - ], - - "Ubuntu" : [ - { - # Had to split the URL because, unlike other repos for which the - # script was first created, Ubuntu puts everything into a single - # folder. The real URL we are forming is: - # http://mirrors.us.kernel.org/ubuntu/pool/main/l/linux/ - "root" : "https://mirrors.edge.kernel.org/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|headers)-(unsigned-)*[3-9].*-generic.*amd64.deb$')]/@href" - }, - - { - "root" : "https://mirrors.edge.kernel.org/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-headers-[3-9].*_all.deb$')]/@href" - }, - - { - "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|headers)-(unsigned-)*[3-9].*-generic.*amd64.deb$')]/@href" - }, - - { - "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-headers-[3-9].*_all.deb$')]/@href" - }, - - { - "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-modules-[3-9].*-generic.*amd64.deb$')]/@href" - }, - - ### Ubuntu AWS kernels - { - "root" : "https://mirrors.edge.kernel.org/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[regex:test(@href, 'linux-aws.*/')]/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|(aws-.*)?headers|modules)-[3-9].*(all|amd64).deb$')]/@href" - }, - - { - "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[regex:test(@href, 'linux-aws.*/')]/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|(aws-.*)?headers|modules)-[3-9].*(all|amd64).deb$')]/@href" - }, - ], - - "Fedora" : [ - { - "root" : "https://mirrors.kernel.org/fedora/releases/", - "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", - "subdirs" : [ - "Everything/x86_64/os/Packages/k/" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" - }, - - { - "root" : "https://mirrors.kernel.org/fedora/updates/", - "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", - "subdirs" : [ - "x86_64/Packages/k/" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" - }, - - { - "root" : "https://mirrors.kernel.org/fedora/updates/", - "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", - "subdirs" : [ - "Everything/x86_64/Packages/k/" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" - }, - - # { - # "root" : "https://mirrors.edge.kernel.org/fedora/development/", - # "discovery_pattern": "/html/body//a[regex:test(@href, '^2[2-9]/$')]/@href", - # "subdirs" : [ - # "x86_64/os/Packages/k/" - # ], - # "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" - # } - ], +def get_first_of(urls): + last_exc = Exception('Empty url list') + for url in urls: + try: + return get_url(url) + except Exception as exc: + last_exc = exc + raise last_exc - # - # Fedora Atomic repo is hard-coded to get the 4.17.x and 4.18.x (excluding rc) for now. - # - "Fedora-Atomic" : [ - { - "root" : "https://kojipkgs.fedoraproject.org/packages/kernel/", - "version_discovery_pattern": "/html/body//a[regex:test(@href, '^4\.1[78].*/$')]/@href", - "build_discovery_pattern": "/html/body//a[regex:test(@href, '^[0-9]+\.[^r].*/$')]/@href", - "subdirs" : [ - "x86_64/" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href", - }, - ], - - "CoreOS" : [ - { - "root" : "http://alpha.release.core-os.net/", - "discovery_pattern": "/html/body//a[regex:test(@href, 'amd64-usr')]/@href", - "subdirs" : [ - "" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^[5-9][0-9][0-9]|current|[1][0-9]{3}')]/@href", - "exclude_patterns": ["^15\d\d\."] - }, - - { - "root" : "http://beta.release.core-os.net/", - "discovery_pattern": "/html/body//a[regex:test(@href, 'amd64-usr')]/@href", - "subdirs" : [ - "" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^[5-9][0-9][0-9]|current|[1][0-9]{3}')]/@href" - }, - - { - "root" : "http://stable.release.core-os.net/", - "discovery_pattern": "/html/body//a[regex:test(@href, 'amd64-usr')]/@href", - "subdirs" : [ - "" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^[4-9][0-9][0-9]|current|[1][0-9]{3}')]/@href" - } - ], - - "Debian": [ - { - "root": "https://mirrors.edge.kernel.org/debian/pool/main/l/", - "discovery_pattern": "/html/body/pre/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-(image|headers)-[3-9]\.[0-9]+\.[0-9]+.*amd64.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "http://security.debian.org/pool/updates/main/l/", - "discovery_pattern": "/html/body/table//tr/td/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-(image|headers)-[3-9]\.[0-9]+\.[0-9]+.*amd64.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "https://mirrors.edge.kernel.org/debian/pool/main/l/", - "discovery_pattern": "/html/body/pre/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-headers-[3-9]\.[0-9]+\.[0-9]+.*-common_.*.all\.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "http://security.debian.org/pool/updates/main/l/", - "discovery_pattern": "/html/body/table//tr/td/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-headers-[3-9]\.[0-9]+\.[0-9]+.*-common_.*.all\.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "http://mirrors.edge.kernel.org/debian/pool/main/l/", - "discovery_pattern": "/html/body/pre/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-kbuild-.*amd64.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "http://mirrors.edge.kernel.org/debian/pool/main/l/", - "discovery_pattern": "/html/body/pre/a[@href = 'linux-tools/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-kbuild-.*amd64.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] - } - ] -} -# Build static list, check here for the last Amazon Linux AMI release: https://aws.amazon.com/amazon-linux-2/faqs/ -amazon_linux_builder = [('latest', 'updates'), ('latest', 'main'), ('2017.03', 'updates'), ('2017.03', 'main'), ('2017.09', 'updates'), ('2017.09', 'main'), ('2018.03', 'updates'), ('2018.03', 'main')] -amazon_repos = [] -for repo_release, release_type in amazon_linux_builder: - amazon_repos.append({ - "root": "http://repo.us-east-1.amazonaws.com/" + repo_release + "/" + release_type + "/mirror.list", - "discovery_pattern": "SELECT * FROM packages WHERE name LIKE 'kernel%'", - "subdirs": [""], - "page_pattern": "", - "exclude_patterns": ["doc", "tools", "headers"] - }) -repos['AmazonLinux'] = amazon_repos - -amazon_linux_2 = ['core/2.0', 'core/latest', 'extras/kernel-5.4/latest', 'extras/kernel-5.10/latest'] -amazon_linux2 = [] -for amzn_repos in amazon_linux_2: - amazon_linux2.append({ - "root": "http://amazonlinux.us-east-1.amazonaws.com/2/" + amzn_repos + "/x86_64/mirror.list", - "discovery_pattern": "SELECT * FROM packages WHERE name LIKE 'kernel%' AND name NOT LIKE 'kernel-livepatch%'", - "subdirs": [""], - "page_pattern": "", - "exclude_patterns": ["doc", "tools", "headers"] - }) - -repos['AmazonLinux2'] = amazon_linux2 - -def progress(distro, current, total, package): - sys.stderr.write('\r\x1b[2K{} {}/{} {}'.format(distro, current, total, package)) - -def exclude_patterns(repo, packages, base_url, urls): - for rpm in packages: - if "exclude_patterns" in repo and any(re.search(x, rpm) for x in repo["exclude_patterns"]): - continue - else: - urls.add(base_url + str(unquote(rpm))) - -def process_al_distro(al_distro_name, current_repo): - get_url = urlopen(current_repo["root"]).readline().decode('ascii') - if get_url: - if al_distro_name == "AmazonLinux": - base_mirror_url = get_url.replace('$basearch','x86_64').replace('\n','') + '/' - db_path = "repodata/primary.sqlite.bz2" - elif al_distro_name == "AmazonLinux2": - base_mirror_url = get_url.replace('\n','') + '/' - db_path = "repodata/primary.sqlite.gz" - - progress(current_repo["root"], 1, 3, 'downloading ' + db_path) - response = urlopen(base_mirror_url + db_path) - body = response.read() - - progress(current_repo["root"], 2, 3, 'decompressing') - if al_distro_name == "AmazonLinux": - decompressed_data = bz2.decompress(body) - elif al_distro_name == "AmazonLinux2": - decompressed_data = zlib.decompress(body, 16+zlib.MAX_WBITS) - - progress(current_repo["root"], 3, 3, 'querying') - db_file = tempfile.NamedTemporaryFile() - db_file.write(decompressed_data) - conn = sqlite3.connect(db_file.name) - conn.row_factory = sqlite3.Row - c = conn.cursor() - al_rpms = [sqlite_column(r, "location_href") for r in c.execute(current_repo["discovery_pattern"])] - exclude_patterns(current_repo, al_rpms, base_mirror_url, urls) - conn.close() - db_file.close() - - sys.stderr.write('\n') - return True +def check_url(url): + resp = urlopen(url) + return resp.getcode() == 200 - else: - return False -# -# Fedora Atomic needs 2 levels of discovery (for version, and build id, respectively) -# -def process_atomic_distro(current_repos): - for repo in current_repos["Fedora-Atomic"]: - try: - root = urlopen(repo["root"],timeout=URL_TIMEOUT).read() - except: - continue - versions = html.fromstring(root).xpath(repo["version_discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - vid = 0 - for version in versions: - vid += 1 - version_url=repo["root"] + version - try: - progress(repo["root"], vid, len(versions), version) - version_page=urlopen(version_url,timeout=URL_TIMEOUT).read() - except: - continue - builds = html.fromstring(version_page).xpath(repo["build_discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - for build in builds: - for subdir in repo["subdirs"]: - source = version_url + build + subdir - try: - page = urlopen(source,timeout=URL_TIMEOUT).read() - except: - continue - rpms = html.fromstring(page).xpath(repo["page_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - exclude_patterns(repo, rpms, source, urls) - sys.stderr.write('\n') +def check_any(urls): + return any(check_url(url) for url in urls) -# -# In our design you are not supposed to modify the code. The whole script is -# created so that you just have to add entry to the `repos` array and new -# links will be found automagically without needing to write any single line of -# code. -# -urls = set() -URL_TIMEOUT=30 +# --- generic repo stuff --- -if len(sys.argv) < 2 or not sys.argv[1] in repos: - sys.stderr.write("Usage: " + sys.argv[0] + " [version]\n") - sys.stderr.write("Available distros:\n") - for d in sorted(repos): - sys.stderr.write(" - {}\n".format(d)) - sys.exit(1) -distro = sys.argv[1] -try: - version_filter = sys.argv[2] - if distro == 'Ubuntu' and version_filter.endswith('-generic'): - version_filter = version_filter[:-len('-generic')] - sys.stderr.write('Looking for packages matching "{}"\n'.format(version_filter)) -except IndexError: - version_filter = '' +class Repository(object): + # return a map of {kernel_package_name => [dependencies]} + # if version is specified, limit only to the specified version + def get_package_tree(self, version=''): + raise NotImplementedError -# -# Navigate the `repos` tree and look for packages we need that match the -# patterns given. Save the result in `packages`. -# + # return true if the repository exists + # it might not if we're guessing the URL based on heuristics + def is_valid(self): + raise NotImplementedError -for repo in repos[distro]: - if distro == 'AmazonLinux': - try: - process_al_distro(distro, repo) - except: - continue - elif distro == 'AmazonLinux2': + # a textual representation of the repository, e.g. its URL + def __str__(self): + raise NotImplementedError + + +class Mirror(object): + # list repositories located on this http(s) server + def list_repos(self): + raise NotImplementedError + + # collect the results of `get_package_tree()` of all repos + # in this mirror + def get_package_tree(self, version=''): + packages = {} + repos = self.list_repos() + for repo in repos: + for release, dependencies in repo.get_package_tree(version).items(): + packages.setdefault(release, set()).update(dependencies) + return packages + + # flatten the hierarchy from `get_package_tree` and just return + # the urls to all packages + # + # this should become unnecessary once we teach the builder + # to use the dependency information instead of guessing + # the relations between packages itself + def get_package_urls(self, version=''): + urls = [] + for dependencies in self.get_package_tree(version).values(): + urls.extend(dependencies) + return urls + + +class MultiMirror(Mirror): + def __init__(self, mirrors): + self.mirrors = mirrors + + # combine the list of repositories from all the mirrors + # for this distribution + def list_repos(self): + repos = [] + for mirror in self.mirrors: + repos.extend(mirror.list_repos()) + return repos + + +# --- Debian-like repos --- + + +class DebRepository(Repository): + + # repo_base is e.g. https://mirrors.edge.kernel.org/debian/ + # repo_name is e.g. dists/bookworm/main/binary-amd64/ + # together they form the url to the directory containing Packages.gz + # while repo_base itself is prepended to the `Filename` field + # from the package metadata to get the full url to the package + def __init__(self, repo_base, repo_name): + self.repo_base = repo_base + self.repo_name = repo_name + + def __str__(self): + return self.repo_base + self.repo_name + + def is_valid(self): + return check_any([ + self.repo_base + self.repo_name + '/Packages.gz', + self.repo_base + self.repo_name + '/Packages.xz', + ]) + + # parse the Debian repo database + # return a map of package_name => { version, dependencies, filename } + @classmethod + def scan_packages(cls, stream): + """ + Parse a Packages file into individual packages metadata. + """ + current_package = {} + packages = {} + for line in stream: + line = line.rstrip() + if line == '': + name = current_package['Package'] + depends = current_package.get('Depends', []) + packages[name] = { + 'Depends': set(depends), + 'Version': current_package['Version'], + 'Filename': current_package['Filename'], + } + current_package = {} + continue + # ignore multiline values + if line.startswith(' '): + continue + try: + key, value = line.split(': ', 1) + if key in ('Provides', 'Depends'): + value = value.split(', ') + except ValueError: + print(line) + raise + current_package[key] = value + + if current_package: + name = current_package['Package'] + depends = current_package.get('Depends', []) + packages[name] = { + 'Depends': set(depends), + 'Version': current_package['Version'], + 'Filename': current_package['Filename'], + } + + return packages + + KERNEL_PACKAGE_PATTERN = re.compile(r'^linux-.*?-[0-9]\.[0-9]+\.[0-9]+') + KERNEL_RELEASE_UPDATE = re.compile(r'^([0-9]+\.[0-9]+\.[0-9]+-[0-9]+)\.(.+)') + + # what is a Debian kernel package? + # we want to consider linux-*-x.y.z packages, except for + # - linux-*-dbg, + # - linux-modules-extra-*, + # - linux-source-*, + # - linux-tools-* + # and also linux-kbuild-x.y packages + # + # since the kernel packages depend on all sorts of things + # (like e.g. coreutils), we only limit the dependencies + # to actual kernel packages or we'd end up with most of + # a Debian system + @classmethod + def is_kernel_package(cls, dep): + return (cls.KERNEL_PACKAGE_PATTERN.search(dep) and + not dep.endswith('-dbg') and + 'modules-extra' not in dep and + 'linux-source' not in dep and + 'tools' not in dep) or 'linux-kbuild' in dep + + @classmethod + def filter_kernel_packages(cls, deps): + return [dep for dep in deps if (cls.is_kernel_package(dep))] + + # given a package, find its dependencies recursively + @classmethod + def transitive_dependencies(cls, packages, pkg_name, dependencies=None, level=0, cache=None): + if cache is None: + cache = {} + if dependencies is None: + dependencies = {pkg_name} + pkg_deps = cls.filter_kernel_packages(packages[pkg_name]['Depends']) + for dep in pkg_deps: + dep = dep.split(None, 1)[0] + # Note: this always takes the first branch of alternative + # dependencies like 'foo|bar'. In the kernel crawler, we don't care + # + # the linux-image packages tend to depend on a lot of userspace + # packages (needed to e.g. install the kernel on a live system) + # but not for our purposes so we only filter for kernel packages + if dep in packages: + if dep not in dependencies: + if dep not in cache: + dependencies |= {dep} + deps = {dep} + deps |= cls.transitive_dependencies(packages, dep, dependencies, level + 1, cache) + cache[dep] = deps + dependencies |= cache[dep] + else: + # make sure we have a complete list of packages + # (pieced together from multiple repos if needed) + raise RuntimeError("{} not in package list".format(dep)) + return dependencies + + # the entry point into the transitive_dependencies recursive method + # returns the set of URLs needed for `pkg` and its dependencies + @classmethod + def get_package_deps(cls, packages, pkg): + all_deps = set() + if not cls.is_kernel_package(pkg): + return set() + for dep in cls.filter_kernel_packages(cls.transitive_dependencies(packages, pkg)): + all_deps.add(packages[dep]['URL']) + return all_deps + + # find a list of kernel packages + # since the names vary across distros and releases, + # we do a two step process + # first, find the headers package (at least that part is consistent + # and the packages are called linux-headers-) + # then, check for the first of: + # - linux-modules- + # - linux-image- + # - linux-image--unsigned> + # + # at some point the linux-image* packages switched to only + # shipping the kernel image (vmlinuz) itself plus a dependency + # on linux-modules. We only need /boot/config- from + # the binary package, so prefer the modules package if it exists + def get_package_list(self, deps, package_filter): + kernel_packages = [] + for p in deps.keys(): + if not p.startswith('linux-headers-'): + continue + release = p.replace('linux-headers-', '') + if 'linux-modules-{}'.format(release) in deps: + kernel_packages.append(p) + kernel_packages.append('linux-modules-{}'.format(release)) + elif 'linux-image-{}'.format(release) in deps: + kernel_packages.append(p) + kernel_packages.append('linux-image-{}'.format(release)) + + if not package_filter: + return kernel_packages + + # apply the version filter + kernel_packages = set(kernel_packages) + if package_filter in deps: + return [package_filter] + elif 'linux-modules-{}'.format(package_filter) in kernel_packages and 'linux-headers-{}'.format( + package_filter) in deps: + return ['linux-modules-{}'.format(package_filter), 'linux-headers-{}'.format(package_filter)] + elif 'linux-image-{}'.format(package_filter) in kernel_packages and 'linux-headers-{}'.format( + package_filter) in deps: + return ['linux-image-{}'.format(package_filter), 'linux-headers-{}'.format(package_filter)] + else: + return [k for k in kernel_packages if package_filter in k] + + # download and parse the package database + def get_raw_package_db(self): try: - # Brute force finding the repositories. - process_al_distro(distro, repo) + repo_packages = get_first_of([ + self.repo_base + self.repo_name + '/Packages.gz', + self.repo_base + self.repo_name + '/Packages.xz', + ]) except: - continue - elif distro == "Fedora-Atomic": + return {} + + repo_packages = repo_packages.splitlines(True) + packages = self.scan_packages(repo_packages) + for name, details in packages.items(): + details['URL'] = self.repo_base + details['Filename'] + return packages + + @classmethod + def build_package_tree(cls, packages, package_list): + deps = {} + for pkg in package_list: + pv = packages[pkg]['Version'] + # we unpack e.g. 4.15.0-140.144 to 4.15.0-140/144 + # make the probe builder's life a little bit easier + # (when we use more of the kernel crawler than just + # the raw urls) + m = cls.KERNEL_RELEASE_UPDATE.match(pv) + if m: + pv = '{}/{}'.format(m.group(1), m.group(2)) + deps.setdefault(pv, set()).update(cls.get_package_deps(packages, pkg)) + for pkg, dep_list in deps.items(): + have_headers = False + for dep in dep_list: + if 'linux-headers' in dep: + have_headers = True + if not have_headers: + del deps[pkg] + return deps + + def get_package_tree(self, version=''): + packages = self.get_raw_package_db() + package_list = self.get_package_list(packages, version) + return self.build_package_tree(packages, package_list) + + +class DebMirror(Mirror): + + def __init__(self, base_url, repo_filter=None): + # scan the http server at `base_url` to find repos inside + # only consider repos (http links) matching the repo filter + # (matches everything by default) + self.base_url = base_url + if repo_filter is None: + repo_filter = lambda _: True + self.repo_filter = repo_filter + + def scan_repo(self, dist): + # find the components in a repository + # we only care about main, updates and updates/main + # not about e.g. contrib or non-free + # + # unfortunately, naming isn't very consistent + # so e.g. some repos inside updates/ have an updates/main + # component. We strip that out if we see a double updates/ + # in the url + repos = {} + all_comps = set() + release = get_url(self.base_url + dist + 'Release') + for line in release.splitlines(False): + if line.startswith('Components: '): + for comp in line.split(None)[1:]: + if comp in ('main', 'updates', 'updates/main'): + if dist.endswith('updates/') and comp.startswith('updates/'): + comp = comp.replace('updates/', '') + all_comps.add(comp) + break + for comp in all_comps: + url = dist + comp + '/binary-amd64/' + repos[url] = DebRepository(self.base_url, url) + return repos + + def list_repos(self): + dists_url = self.base_url + 'dists/' + dists = get_url(dists_url) + doc = html.fromstring(dists, dists_url) + dists = [dist for dist in doc.xpath('/html/body//a[not(@href="../")]/@href') + if dist.endswith('/') + and not dist.startswith('/') + and not dist.startswith('?') + and not dist.startswith('http') + and self.repo_filter(dist) + ] + + repos = {} + for dist in dists: + # unfortunately, there's no way to know if there's + # an updates/ subdirectory from the top level + try: + repos.update(self.scan_repo('dists/{}'.format(dist))) + except: + pass + try: + repos.update(self.scan_repo('dists/{}updates/'.format(dist))) + except: + pass + + return sorted(repos.values()) + + +class DebianLikeMirror(MultiMirror): + + # since we need to group the Debian packages along dist lines, not along repo lines, + # we override the `get_package_tree` method to work nicely with the modified + # schema of values returned from DebRepository.build_package_tree + # until we use the dependency information in the probe builder itself, + # the key used (dist :: release) is arbitrary. When we start using the metadata, + # we might want to collapse releases across different dists here, so that + # packages[release] contains the dependencies for all dists and let the probe builder + # sort it out + def get_package_tree(self, version=''): + all_packages = {} + all_kernel_packages = [] + packages = {} + repos = self.list_repos() + for repository in repos: + repo_packages = repository.get_raw_package_db() + all_packages.update(repo_packages) + kernel_packages = repository.get_package_list(repo_packages, version) + all_kernel_packages.extend(kernel_packages) + + for release, dependencies in DebRepository.build_package_tree(all_packages, all_kernel_packages).items(): + packages.setdefault(release, set()).update(dependencies) + return packages + + +class DebianMirror(DebianLikeMirror): + @classmethod + def repo_filter(cls, dist): + # use the code names (bookworm etc.), not stable/testing/unstable aliases + # or version numbers + return 'stable' not in dist and 'testing' not in dist and not dist.startswith('Debian') + + def __init__(self): + mirrors = [ + DebMirror('https://mirrors.edge.kernel.org/debian/', self.repo_filter), + DebMirror('http://security.debian.org/', self.repo_filter), + ] + super(DebianMirror, self).__init__(mirrors) + + +class UbuntuMirror(DebianLikeMirror): + def __init__(self): + mirrors = [ + DebMirror('https://mirrors.edge.kernel.org/ubuntu/'), + DebMirror('http://security.ubuntu.com/ubuntu/'), + ] + super(UbuntuMirror, self).__init__(mirrors) + + +# --- RPM repos --- + + +class RpmRepository(Repository): + def __init__(self, base_url): + self.base_url = base_url + + def __str__(self): + return self.base_url + + def is_valid(self): + return check_url(self.base_url + 'repodata/repomd.xml') + + @classmethod + def get_loc_by_xpath(cls, text, expr): + e = etree.fromstring(text) + loc = e.xpath(expr, namespaces={ + 'common': 'http://linux.duke.edu/metadata/common', + 'repo': 'http://linux.duke.edu/metadata/repo', + 'rpm': 'http://linux.duke.edu/metadata/rpm' + }) + return loc[0] + + @classmethod + def kernel_package_query(cls): + # what is a kernel package? CentOS like distros generally stick to + # kernel and kernel-devel, but e.g. PhotonOS uses linux{,-devel} + # so make this a class method that subclasses can override + return '''name IN ('kernel', 'kernel-devel')''' + + @classmethod + def build_base_query(cls, version=''): + # based on whether we have a filter or not, build the query for the base case + # i.e. "find all kernel packages we're interested in" + base_query = '''SELECT version || '-' || release || '.' || arch, pkgkey FROM packages WHERE {}'''.format( + cls.kernel_package_query()) + if not version: + return base_query, () + else: + return base_query + ''' AND (version = ? OR version || '-' || "release" = ?)''', (version, version) + + @classmethod + def parse_repo_db(cls, repo_db, version=''): + db = sqlite3.connect(repo_db) + cursor = db.cursor() + + # we can do a recursive SQL query to find all packages + # and their (transitive) dependencies in one shot. Behold. + base_query, args = cls.build_base_query(version) + query = '''WITH RECURSIVE transitive_deps(version, pkgkey) AS ( + {} + UNION + SELECT transitive_deps.version, provides.pkgkey + FROM provides + INNER JOIN requires USING (name, flags, epoch, version, "release") + INNER JOIN transitive_deps ON requires.pkgkey = transitive_deps.pkgkey + ) SELECT transitive_deps.version, location_href FROM packages INNER JOIN transitive_deps using(pkgkey); + '''.format(base_query) + + cursor.execute(query, args) + return cursor.fetchall() + + def get_repodb_url(self): + repomd = get_url(self.base_url + 'repodata/repomd.xml') + pkglist_url = self.get_loc_by_xpath(repomd, '//repo:repomd/repo:data[@type="primary_db"]/repo:location/@href') + return self.base_url + pkglist_url + + def get_package_tree(self, version=''): + # download the sqlite database and query it + packages = {} try: - process_atomic_distro(repos) + repodb_url = self.get_repodb_url() + repodb = get_url(repodb_url) except: - continue - else: + return {} + with tempfile.NamedTemporaryFile() as tf: + tf.write(repodb) + tf.flush() + for pkg in self.parse_repo_db(tf.name, version): + version, url = pkg + packages.setdefault(version, set()).add(self.base_url + url) + return packages + + +class RpmMirror(Mirror): + + # scan the http server at `base_url` to find repos inside + # only consider repos (http links) matching the repo filter + # (matches everything by default) + # + # the variant is the distro-specific bit inside a particular dist + def __init__(self, base_url, variant, repo_filter=None): + self.base_url = base_url + self.variant = variant + if repo_filter is None: + repo_filter = lambda _: True + self.repo_filter = repo_filter + + def list_repos(self): + dists = get_url(self.base_url) + doc = html.fromstring(dists, self.base_url) + dists = doc.xpath('/html/body//a[not(@href="../")]/@href') + return [RpmRepository('{}{}{}'.format(self.base_url, dist, self.variant)) for dist in dists + if dist.endswith('/') + and not dist.startswith('/') + and not dist.startswith('?') + and not dist.startswith('http') + and self.repo_filter(dist) + ] + + +class CentosMirror(MultiMirror): + def __init__(self): + mirrors = [ + RpmMirror('http://mirror.centos.org/centos/', 'os/x86_64/', lambda ver: ver.startswith('7')), + RpmMirror('http://mirror.centos.org/centos/', 'updates/x86_64/', lambda ver: ver.startswith('7')), + RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/x86_64/os/', lambda ver: ver.startswith('8')), + RpmMirror('https://vault.centos.org/', 'os/x86_64/', + lambda ver: ver.startswith('6') or ver.startswith('7')), + RpmMirror('https://vault.centos.org/', 'updates/x86_64/', + lambda ver: ver.startswith('6') or ver.startswith('7')), + RpmMirror('https://vault.centos.org/', 'BaseOS/x86_64/os/', lambda ver: ver.startswith('8')), + ] + super(CentosMirror, self).__init__(mirrors) + + +class FedoraMirror(MultiMirror): + @classmethod + def repo_filter(cls, version): + """Don't bother testing ancient versions""" try: - root = urlopen(repo["root"],timeout=URL_TIMEOUT).read() - except: - continue - - versions = html.fromstring(root).xpath(repo["discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - current = 1 - total = len(versions) * len(repo["subdirs"]) - for version in versions: - for subdir in repo["subdirs"]: - # The try - except block is used because 404 errors and similar - # might happen (and actually happen because not all repos have - # packages we need) - try: - source = repo["root"] + version + subdir - progress(repo["root"], current, total, version + subdir) - current += 1 - page = urlopen(source,timeout=URL_TIMEOUT).read() - rpms = html.fromstring(page).xpath(repo["page_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - exclude_patterns(repo, rpms, source, urls) - except: - continue - sys.stderr.write('\n') + return int(version.rstrip('/')) >= 32 + except ValueError: + return False + + def __init__(self): + mirrors = [ + RpmMirror('https://mirrors.kernel.org/fedora/releases/', 'Everything/x86_64/os/', self.repo_filter), + ] + super(FedoraMirror, self).__init__(mirrors) + + +def get_al_repo(repo_root, repo_release): + repo_pointer = repo_root + repo_release + "/mirror.list" + resp = get_url(repo_pointer) + return resp.splitlines()[0].replace('$basearch', 'x86_64') + '/' + + +class AmazonLinux1Mirror(MultiMirror): + AL1_REPOS = [ + 'latest/updates', + 'latest/main', + '2017.03/updates', + '2017.03/main', + '2017.09/updates', + '2017.09/main', + '2018.03/updates', + '2018.03/main', + ] + def __init__(self): + super(AmazonLinux1Mirror, self).__init__([]) -# -# Print URLs to stdout -# -for url in urls: - if version_filter in url: + def list_repos(self): + repo_urls = set() + for r in self.AL1_REPOS: + repo_urls.add(get_al_repo("http://repo.us-east-1.amazonaws.com/", r)) + return [RpmRepository(url) for url in sorted(repo_urls)] + + +class AmazonLinux2Mirror(MultiMirror): + AL2_REPOS = [ + 'core/2.0', + 'core/latest', + 'extras/kernel-5.4/latest', + 'extras/kernel-5.10/latest', + ] + + def __init__(self): + super(AmazonLinux2Mirror, self).__init__([]) + + def list_repos(self): + repo_urls = set() + for r in self.AL2_REPOS: + repo_urls.add(get_al_repo("http://amazonlinux.us-east-1.amazonaws.com/2/", r + '/x86_64')) + return [RpmRepository(url) for url in sorted(repo_urls)] + + +class PhotonOsRepository(RpmRepository): + @classmethod + def kernel_package_query(cls): + # we exclude `esx` kernels because they don't support CONFIG_TRACEPOINTS + # see https://github.com/vmware/photon/issues/1223 + return '''((name = 'linux' OR name LIKE 'linux-%devel%') AND name NOT LIKE '%esx%')''' + + +class PhotonOsMirror(MultiMirror): + PHOTON_OS_VERSIONS = [ + ('3.0', '_release'), + ('3.0', '_updates'), + ('4.0', ''), + ('4.0', '_release'), + ('4.0', '_updates'), + ] + + def __init__(self): + super(PhotonOsMirror, self).__init__([]) + + def list_repos(self): + return [ + PhotonOsRepository( + 'https://packages.vmware.com/photon/{v}/photon{r}_{v}_x86_64/'.format(v=version, r=repo_tag)) + for version, repo_tag in self.PHOTON_OS_VERSIONS] + + +class OracleRepository(RpmRepository): + @classmethod + def kernel_package_query(cls): + return '''(name IN ('kernel', 'kernel-devel', 'kernel-uek', 'kernel-uek-devel') AND arch = 'x86_64')''' + + +class OracleMirror(MultiMirror): + REPOS = [] + + def __init__(self): + super(OracleMirror, self).__init__([]) + + def list_repos(self): + return [OracleRepository(url) for url in self.REPOS] + + +class Oracle6Mirror(OracleMirror): + REPOS = [ + 'http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/', + ] + + +class Oracle7Mirror(OracleMirror): + REPOS = [ + 'http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/', + ] + + +class Oracle8Mirror(OracleMirror): + REPOS = [ + 'http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/', + ] + + +DISTROS = { + 'Debian': DebianMirror, + 'Ubuntu': UbuntuMirror, + + 'CentOS': CentosMirror, + 'Fedora': FedoraMirror, + + 'AmazonLinux': AmazonLinux1Mirror, + 'AmazonLinux2': AmazonLinux2Mirror, + + 'PhotonOS': PhotonOsMirror, + + 'OracleLinux6': Oracle6Mirror, + 'OracleLinux7': Oracle7Mirror, + 'OracleLinux8': Oracle8Mirror, +} + + +def usage(): + print('Supported distributions:', file=sys.stderr) + for distro in sorted(DISTROS.keys()): + print(distro, file=sys.stderr) + + +def main(): + try: + distro_cls = DISTROS[sys.argv[1]] + except IndexError: + print('Usage: kernel-crawler.py DISTRO', file=sys.stderr) + usage() + sys.exit(1) + except KeyError: + print('Unsupported distribution {}'.format(sys.argv[1]), file=sys.stderr) + usage() + sys.exit(1) + + distro = distro_cls() + for url in distro.get_package_urls(): print(url) + + +if __name__ == '__main__': + main() From 4afcb52dd008df4d27ff6340e2a2bfe50ea902e8 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 21 Sep 2021 14:13:53 +0200 Subject: [PATCH 025/259] Add empty CoreOS/Fedora-Atomic mirrors, for compatibility --- kernel-crawler.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/kernel-crawler.py b/kernel-crawler.py index 2f03608..e555340 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -772,6 +772,15 @@ class Oracle8Mirror(OracleMirror): ] +# --- Dummy empty repos, for compatibility --- + + +class EmptyMirror(object): + @staticmethod + def get_package_urls(): + return [] + + DISTROS = { 'Debian': DebianMirror, 'Ubuntu': UbuntuMirror, @@ -787,6 +796,9 @@ class Oracle8Mirror(OracleMirror): 'OracleLinux6': Oracle6Mirror, 'OracleLinux7': Oracle7Mirror, 'OracleLinux8': Oracle8Mirror, + + 'CoreOS': EmptyMirror, + 'Fedora-Atomic': EmptyMirror, } From ba97c09e6d17aa6994f099299f7e93f0cedbc059 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 21 Sep 2021 18:42:04 +0200 Subject: [PATCH 026/259] Disable IPv6 --- kernel-crawler.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/kernel-crawler.py b/kernel-crawler.py index e555340..01277f2 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -63,6 +63,20 @@ import sys import sqlite3 +# --- disable ipv6 --- +import socket + +origGetAddrInfo = socket.getaddrinfo + + +def getaddrinfo_ipv4only(host, port, family=0, socktype=0, proto=0, flags=0): + return origGetAddrInfo(host, port, socket.AF_INET, socktype, proto, flags) + + +# replace the original socket.getaddrinfo by our version +socket.getaddrinfo = getaddrinfo_ipv4only +# --- + # --- http helpers --- try: From 1459fb562b047331f96bb9ebaedf911379943065 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 21 Sep 2021 18:42:39 +0200 Subject: [PATCH 027/259] Consider linux-image-*-unsigned packages --- kernel-crawler.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/kernel-crawler.py b/kernel-crawler.py index 01277f2..49e0e46 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -346,12 +346,13 @@ def get_package_list(self, deps, package_filter): if not p.startswith('linux-headers-'): continue release = p.replace('linux-headers-', '') - if 'linux-modules-{}'.format(release) in deps: - kernel_packages.append(p) - kernel_packages.append('linux-modules-{}'.format(release)) - elif 'linux-image-{}'.format(release) in deps: - kernel_packages.append(p) - kernel_packages.append('linux-image-{}'.format(release)) + candidates = ['linux-modules-{}', 'linux-image-{}', 'linux-image-{}-unsigned'] + for c in candidates: + candidate = c.format(release) + if candidate in deps: + kernel_packages.append(p) + kernel_packages.append(candidate) + break if not package_filter: return kernel_packages From 1cfe208400358e6bf4d30eea004d0e35c6cda59b Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Fri, 24 Sep 2021 20:13:39 +0200 Subject: [PATCH 028/259] Drop some kernels explicitly These are the variants we haven't built before so exclude them here to avoid an explosion in built probes. --- kernel-crawler.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/kernel-crawler.py b/kernel-crawler.py index 49e0e46..2ec5e47 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -345,6 +345,33 @@ def get_package_list(self, deps, package_filter): for p in deps.keys(): if not p.startswith('linux-headers-'): continue + # historically, we haven't built these variants + # and there's a ton of them. Leave them disabled, + # we can enable them when we need to + if '-cloud' in p: + continue + if '-rt' in p: + continue + if '-lowlatency' in p: + continue + if '-azure' in p: + continue + if '-oem' in p: + continue + if '-gcp' in p: + continue + if '-gke' in p: + continue + if '-oracle' in p: + continue + if '-kvm' in p: + continue + # skip backported kernels (again, to match historic behavior + # and to avoid an explosion in the number of built probes) + if '-lts-' in deps[p]['URL']: + continue + if '-hwe' in deps[p]['URL']: + continue release = p.replace('linux-headers-', '') candidates = ['linux-modules-{}', 'linux-image-{}', 'linux-image-{}-unsigned'] for c in candidates: From 78f4ec9c3bbc3ab3cb0b86c6991594e6adf28d99 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 21 Sep 2021 18:42:51 +0200 Subject: [PATCH 029/259] Keep Debian-like package lists per distro Otherwise we get conflicting package names under different URLs which made us include e.g. backported kernels (which we explicitly skip) because they had the same package name as a non-backported kernel we do want to build. --- kernel-crawler.py | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/kernel-crawler.py b/kernel-crawler.py index 2ec5e47..8a32c38 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -205,6 +205,11 @@ def __init__(self, repo_base, repo_name): self.repo_base = repo_base self.repo_name = repo_name + # guess the distro name (like `xenial` or `bookworm`) + # used to group packages by distro instead of by repo + dist = repo_name.replace('dists/', '').split('/')[0].split('-')[0] + self.dist = dist + def __str__(self): return self.repo_base + self.repo_name @@ -411,7 +416,7 @@ def get_raw_package_db(self): packages = self.scan_packages(repo_packages) for name, details in packages.items(): details['URL'] = self.repo_base + details['Filename'] - return packages + return {self.dist: packages} @classmethod def build_package_tree(cls, packages, package_list): @@ -437,8 +442,12 @@ def build_package_tree(cls, packages, package_list): def get_package_tree(self, version=''): packages = self.get_raw_package_db() - package_list = self.get_package_list(packages, version) - return self.build_package_tree(packages, package_list) + package_tree = {} + for dist, dist_packages in packages.items(): + package_list = self.get_package_list(dist_packages, version) + for pkg, deps in self.build_package_tree(dist_packages, package_list): + package_tree[dist + ':' + pkg] = deps + return package_tree class DebMirror(Mirror): @@ -517,17 +526,22 @@ class DebianLikeMirror(MultiMirror): # sort it out def get_package_tree(self, version=''): all_packages = {} - all_kernel_packages = [] + all_kernel_packages = {} packages = {} repos = self.list_repos() for repository in repos: repo_packages = repository.get_raw_package_db() - all_packages.update(repo_packages) - kernel_packages = repository.get_package_list(repo_packages, version) - all_kernel_packages.extend(kernel_packages) + for dist, dist_packages in repo_packages.items(): + all_packages.setdefault(dist, {}).update(dist_packages) + kernel_packages = repository.get_package_list(dist_packages, version) + all_kernel_packages.setdefault(dist, []).extend(kernel_packages) + + for dist, dist_packages in all_packages.items(): + dist_kernel_packages = all_kernel_packages.get(dist, []) - for release, dependencies in DebRepository.build_package_tree(all_packages, all_kernel_packages).items(): - packages.setdefault(release, set()).update(dependencies) + for release, dependencies in DebRepository.build_package_tree(dist_packages, dist_kernel_packages).items(): + if release not in packages: + packages[dist + '::' + release] = set(dependencies) return packages From f1bb0e416cec2f879babecde483aa9bf64897b31 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Fri, 24 Sep 2021 20:16:19 +0200 Subject: [PATCH 030/259] Allow filtering by kernel versions in the new kernel crawler --- kernel-crawler.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/kernel-crawler.py b/kernel-crawler.py index 8a32c38..5036260 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -833,7 +833,7 @@ class Oracle8Mirror(OracleMirror): class EmptyMirror(object): @staticmethod - def get_package_urls(): + def get_package_urls(version=''): return [] @@ -868,7 +868,7 @@ def main(): try: distro_cls = DISTROS[sys.argv[1]] except IndexError: - print('Usage: kernel-crawler.py DISTRO', file=sys.stderr) + print('Usage: kernel-crawler.py DISTRO [VERSION]', file=sys.stderr) usage() sys.exit(1) except KeyError: @@ -876,8 +876,13 @@ def main(): usage() sys.exit(1) + try: + version = sys.argv[2] + except IndexError: + version = '' + distro = distro_cls() - for url in distro.get_package_urls(): + for url in distro.get_package_urls(version): print(url) From ca188ec3f141156c314e1738b297127d6df77e9d Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Fri, 8 Oct 2021 16:07:14 +0200 Subject: [PATCH 031/259] Revert SSPROD-8709 To unblock the probe builder job which doesn't have sqlite 3.8 installed --- kernel-crawler.py | 1253 +++++++++++++++------------------------------ 1 file changed, 412 insertions(+), 841 deletions(-) diff --git a/kernel-crawler.py b/kernel-crawler.py index 5036260..204fdf8 100755 --- a/kernel-crawler.py +++ b/kernel-crawler.py @@ -15,876 +15,447 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +# +# Author: Samuele Pilleri +# Date: August 17th, 2015 -# This script is used to: -# - scan a well-known distribution mirror for kernel packages -# - get all the packages' dependencies -# - print the URLs for all packages (kernels and dependencies) -# -# We unfortunately still need some heuristics to find the right -# packages but at least we get the dependencies cleanly. -# In theory we could inspect the package content lists, but -# that ends up being very slow. -# -# In the code, we have a few parallel class hierarchies, all -# based in an abstract interface, implemented by concrete -# RPM/DEB classes: -# - a Repository, as defined by having a single package database -# - a mirror, as defined by being a single http(s) server -# - a distribution, i.e. a collection of mirrors -# -# Please note that we don't have a notion of a distribution version -# in the abstract interface. -# -# Packages from different repositories are handled differently -# for rpm/deb systems: -# - rpm-based repos are completely independent of each other -# (since the repositories are generally self-contained, even -# for e.g. updates) -# - deb-based mirrors get their contents regrouped along `dist` lines -# (e.g. all Ubuntu Xenial packages are kept in one map, independent -# of whether they're coming from security, updates, backports etc.) -# -# This is required for two reasons: -# - package names are supposed to be unique in a distro (and they're -# not unique across different distributions) so otherwise we'd get -# wrong URLs (from the same package but a different distro) -# - the repositories aren't self contained, e.g. security repos -# may depend on kbuild packages from the main repo - -from __future__ import print_function -import re -import tempfile +from __future__ import unicode_literals -from lxml import etree, html -import zlib import bz2 -import sys +import re import sqlite3 - -# --- disable ipv6 --- -import socket - -origGetAddrInfo = socket.getaddrinfo - - -def getaddrinfo_ipv4only(host, port, family=0, socktype=0, proto=0, flags=0): - return origGetAddrInfo(host, port, socket.AF_INET, socktype, proto, flags) - - -# replace the original socket.getaddrinfo by our version -socket.getaddrinfo = getaddrinfo_ipv4only -# --- - -# --- http helpers --- +import sys +import tempfile +import time +import zlib try: - # noinspection PyCompatibility from urllib2 import urlopen, unquote + + # python 2 + def sqlite_column(row, col): + return row[bytes(col)] + except ImportError: - # noinspection PyCompatibility from urllib.request import urlopen - # noinspection PyCompatibility from urllib.parse import unquote -try: - # noinspection PyCompatibility - from lzma import decompress as lzma_decompress -except ImportError: - try: - from backports.lzma import decompress as lzma_decompress - except ImportError: - def lzma_decompress(content): - raise NotImplementedError("LZMA compression not supported, install backports.lzma") - - -def get_url(url): - print('Retrieving {}'.format(url), file=sys.stderr) - resp = urlopen(url) - if url.endswith('.gz'): - return zlib.decompress(resp.read(), 47) - elif url.endswith('.xz'): - return lzma_decompress(resp.read()) - elif url.endswith('.bz2'): - return bz2.decompress(resp.read()) - else: - return resp.read() - - -def get_first_of(urls): - last_exc = Exception('Empty url list') - for url in urls: - try: - return get_url(url) - except Exception as exc: - last_exc = exc - raise last_exc - - -def check_url(url): - resp = urlopen(url) - return resp.getcode() == 200 - - -def check_any(urls): - return any(check_url(url) for url in urls) - + # python 3 + def sqlite_column(row, col): + return row[col] -# --- generic repo stuff --- +from lxml import html +# +# This is the main configuration tree to easily analyze Linux repositories for +# hunting packages. When adding repos or distros be sure to respect the same data +# structure +# +repos = { + "CentOS" : [ + { + # This is the root path of the repository in which the script will + # look for distros (HTML page) + "root" : "http://mirrors.edge.kernel.org/centos/", + + # This is the XPath + Regex (optional) for analyzing the `root` + # page and discover possible distro versions. Use the regex if you + # want to limit the version release + "discovery_pattern" : "/html/body//pre/a[regex:test(@href, '^6|^7|^8.*$')]/@href", + + # Once we have found every version available, we need to know were + # to go inside the tree to find packages we need (HTML pages) + "subdirs" : [ + "os/x86_64/Packages/", + "updates/x86_64/Packages/", + "BaseOS/x86_64/os/Packages/" + ], + + # Finally, we need to inspect every page for packages we need. + # Again, this is an XPath + Regex query so use the regex if you want + # to limit the number of packages reported. + "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(devel-|core-)?[0-9].*\.rpm$')]/@href" + }, + + { + "root" : "http://vault.centos.org/", + "discovery_pattern" : "//body//table/tr/td/a[regex:test(@href, '^6|^7|^8.*$')]/@href", + "subdirs" : [ + "os/x86_64/Packages/", + "updates/x86_64/Packages/", + "BaseOS/x86_64/os/Packages/" + ], + "page_pattern" : "//body//table/tr/td/a[regex:test(@href, '^kernel-(devel-|core-)?[0-9].*\.rpm$')]/@href" + } + ], + + "Ubuntu" : [ + { + # Had to split the URL because, unlike other repos for which the + # script was first created, Ubuntu puts everything into a single + # folder. The real URL we are forming is: + # http://mirrors.us.kernel.org/ubuntu/pool/main/l/linux/ + "root" : "https://mirrors.edge.kernel.org/ubuntu/pool/main/l/", + "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", + "subdirs" : [""], + "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|headers)-(unsigned-)*[3-9].*-generic.*amd64.deb$')]/@href" + }, + + { + "root" : "https://mirrors.edge.kernel.org/ubuntu/pool/main/l/", + "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", + "subdirs" : [""], + "page_pattern" : "/html/body//a[regex:test(@href, '^linux-headers-[3-9].*_all.deb$')]/@href" + }, + + { + "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", + "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", + "subdirs" : [""], + "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|headers)-(unsigned-)*[3-9].*-generic.*amd64.deb$')]/@href" + }, + + { + "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", + "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", + "subdirs" : [""], + "page_pattern" : "/html/body//a[regex:test(@href, '^linux-headers-[3-9].*_all.deb$')]/@href" + }, + + { + "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", + "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", + "subdirs" : [""], + "page_pattern" : "/html/body//a[regex:test(@href, '^linux-modules-[3-9].*-generic.*amd64.deb$')]/@href" + }, + + ### Ubuntu AWS kernels + { + "root" : "https://mirrors.edge.kernel.org/ubuntu/pool/main/l/", + "discovery_pattern" : "/html/body//a[regex:test(@href, 'linux-aws.*/')]/@href", + "subdirs" : [""], + "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|(aws-.*)?headers|modules)-[3-9].*(all|amd64).deb$')]/@href" + }, + + { + "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", + "discovery_pattern" : "/html/body//a[regex:test(@href, 'linux-aws.*/')]/@href", + "subdirs" : [""], + "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|(aws-.*)?headers|modules)-[3-9].*(all|amd64).deb$')]/@href" + }, + ], + + "Fedora" : [ + { + "root" : "https://mirrors.kernel.org/fedora/releases/", + "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", + "subdirs" : [ + "Everything/x86_64/os/Packages/k/" + ], + "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" + }, + + { + "root" : "https://mirrors.kernel.org/fedora/updates/", + "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", + "subdirs" : [ + "x86_64/Packages/k/" + ], + "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" + }, + + { + "root" : "https://mirrors.kernel.org/fedora/updates/", + "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", + "subdirs" : [ + "Everything/x86_64/Packages/k/" + ], + "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" + }, + + # { + # "root" : "https://mirrors.edge.kernel.org/fedora/development/", + # "discovery_pattern": "/html/body//a[regex:test(@href, '^2[2-9]/$')]/@href", + # "subdirs" : [ + # "x86_64/os/Packages/k/" + # ], + # "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" + # } + ], -class Repository(object): - # return a map of {kernel_package_name => [dependencies]} - # if version is specified, limit only to the specified version - def get_package_tree(self, version=''): - raise NotImplementedError - - # return true if the repository exists - # it might not if we're guessing the URL based on heuristics - def is_valid(self): - raise NotImplementedError - - # a textual representation of the repository, e.g. its URL - def __str__(self): - raise NotImplementedError - - -class Mirror(object): - # list repositories located on this http(s) server - def list_repos(self): - raise NotImplementedError - - # collect the results of `get_package_tree()` of all repos - # in this mirror - def get_package_tree(self, version=''): - packages = {} - repos = self.list_repos() - for repo in repos: - for release, dependencies in repo.get_package_tree(version).items(): - packages.setdefault(release, set()).update(dependencies) - return packages - - # flatten the hierarchy from `get_package_tree` and just return - # the urls to all packages # - # this should become unnecessary once we teach the builder - # to use the dependency information instead of guessing - # the relations between packages itself - def get_package_urls(self, version=''): - urls = [] - for dependencies in self.get_package_tree(version).values(): - urls.extend(dependencies) - return urls - - -class MultiMirror(Mirror): - def __init__(self, mirrors): - self.mirrors = mirrors - - # combine the list of repositories from all the mirrors - # for this distribution - def list_repos(self): - repos = [] - for mirror in self.mirrors: - repos.extend(mirror.list_repos()) - return repos - - -# --- Debian-like repos --- - - -class DebRepository(Repository): - - # repo_base is e.g. https://mirrors.edge.kernel.org/debian/ - # repo_name is e.g. dists/bookworm/main/binary-amd64/ - # together they form the url to the directory containing Packages.gz - # while repo_base itself is prepended to the `Filename` field - # from the package metadata to get the full url to the package - def __init__(self, repo_base, repo_name): - self.repo_base = repo_base - self.repo_name = repo_name - - # guess the distro name (like `xenial` or `bookworm`) - # used to group packages by distro instead of by repo - dist = repo_name.replace('dists/', '').split('/')[0].split('-')[0] - self.dist = dist - - def __str__(self): - return self.repo_base + self.repo_name - - def is_valid(self): - return check_any([ - self.repo_base + self.repo_name + '/Packages.gz', - self.repo_base + self.repo_name + '/Packages.xz', - ]) - - # parse the Debian repo database - # return a map of package_name => { version, dependencies, filename } - @classmethod - def scan_packages(cls, stream): - """ - Parse a Packages file into individual packages metadata. - """ - current_package = {} - packages = {} - for line in stream: - line = line.rstrip() - if line == '': - name = current_package['Package'] - depends = current_package.get('Depends', []) - packages[name] = { - 'Depends': set(depends), - 'Version': current_package['Version'], - 'Filename': current_package['Filename'], - } - current_package = {} - continue - # ignore multiline values - if line.startswith(' '): - continue - try: - key, value = line.split(': ', 1) - if key in ('Provides', 'Depends'): - value = value.split(', ') - except ValueError: - print(line) - raise - current_package[key] = value - - if current_package: - name = current_package['Package'] - depends = current_package.get('Depends', []) - packages[name] = { - 'Depends': set(depends), - 'Version': current_package['Version'], - 'Filename': current_package['Filename'], - } - - return packages - - KERNEL_PACKAGE_PATTERN = re.compile(r'^linux-.*?-[0-9]\.[0-9]+\.[0-9]+') - KERNEL_RELEASE_UPDATE = re.compile(r'^([0-9]+\.[0-9]+\.[0-9]+-[0-9]+)\.(.+)') - - # what is a Debian kernel package? - # we want to consider linux-*-x.y.z packages, except for - # - linux-*-dbg, - # - linux-modules-extra-*, - # - linux-source-*, - # - linux-tools-* - # and also linux-kbuild-x.y packages + # Fedora Atomic repo is hard-coded to get the 4.17.x and 4.18.x (excluding rc) for now. # - # since the kernel packages depend on all sorts of things - # (like e.g. coreutils), we only limit the dependencies - # to actual kernel packages or we'd end up with most of - # a Debian system - @classmethod - def is_kernel_package(cls, dep): - return (cls.KERNEL_PACKAGE_PATTERN.search(dep) and - not dep.endswith('-dbg') and - 'modules-extra' not in dep and - 'linux-source' not in dep and - 'tools' not in dep) or 'linux-kbuild' in dep - - @classmethod - def filter_kernel_packages(cls, deps): - return [dep for dep in deps if (cls.is_kernel_package(dep))] - - # given a package, find its dependencies recursively - @classmethod - def transitive_dependencies(cls, packages, pkg_name, dependencies=None, level=0, cache=None): - if cache is None: - cache = {} - if dependencies is None: - dependencies = {pkg_name} - pkg_deps = cls.filter_kernel_packages(packages[pkg_name]['Depends']) - for dep in pkg_deps: - dep = dep.split(None, 1)[0] - # Note: this always takes the first branch of alternative - # dependencies like 'foo|bar'. In the kernel crawler, we don't care - # - # the linux-image packages tend to depend on a lot of userspace - # packages (needed to e.g. install the kernel on a live system) - # but not for our purposes so we only filter for kernel packages - if dep in packages: - if dep not in dependencies: - if dep not in cache: - dependencies |= {dep} - deps = {dep} - deps |= cls.transitive_dependencies(packages, dep, dependencies, level + 1, cache) - cache[dep] = deps - dependencies |= cache[dep] - else: - # make sure we have a complete list of packages - # (pieced together from multiple repos if needed) - raise RuntimeError("{} not in package list".format(dep)) - return dependencies - - # the entry point into the transitive_dependencies recursive method - # returns the set of URLs needed for `pkg` and its dependencies - @classmethod - def get_package_deps(cls, packages, pkg): - all_deps = set() - if not cls.is_kernel_package(pkg): - return set() - for dep in cls.filter_kernel_packages(cls.transitive_dependencies(packages, pkg)): - all_deps.add(packages[dep]['URL']) - return all_deps - - # find a list of kernel packages - # since the names vary across distros and releases, - # we do a two step process - # first, find the headers package (at least that part is consistent - # and the packages are called linux-headers-) - # then, check for the first of: - # - linux-modules- - # - linux-image- - # - linux-image--unsigned> - # - # at some point the linux-image* packages switched to only - # shipping the kernel image (vmlinuz) itself plus a dependency - # on linux-modules. We only need /boot/config- from - # the binary package, so prefer the modules package if it exists - def get_package_list(self, deps, package_filter): - kernel_packages = [] - for p in deps.keys(): - if not p.startswith('linux-headers-'): - continue - # historically, we haven't built these variants - # and there's a ton of them. Leave them disabled, - # we can enable them when we need to - if '-cloud' in p: - continue - if '-rt' in p: - continue - if '-lowlatency' in p: - continue - if '-azure' in p: - continue - if '-oem' in p: - continue - if '-gcp' in p: - continue - if '-gke' in p: - continue - if '-oracle' in p: - continue - if '-kvm' in p: - continue - # skip backported kernels (again, to match historic behavior - # and to avoid an explosion in the number of built probes) - if '-lts-' in deps[p]['URL']: - continue - if '-hwe' in deps[p]['URL']: - continue - release = p.replace('linux-headers-', '') - candidates = ['linux-modules-{}', 'linux-image-{}', 'linux-image-{}-unsigned'] - for c in candidates: - candidate = c.format(release) - if candidate in deps: - kernel_packages.append(p) - kernel_packages.append(candidate) - break - - if not package_filter: - return kernel_packages - - # apply the version filter - kernel_packages = set(kernel_packages) - if package_filter in deps: - return [package_filter] - elif 'linux-modules-{}'.format(package_filter) in kernel_packages and 'linux-headers-{}'.format( - package_filter) in deps: - return ['linux-modules-{}'.format(package_filter), 'linux-headers-{}'.format(package_filter)] - elif 'linux-image-{}'.format(package_filter) in kernel_packages and 'linux-headers-{}'.format( - package_filter) in deps: - return ['linux-image-{}'.format(package_filter), 'linux-headers-{}'.format(package_filter)] + "Fedora-Atomic" : [ + { + "root" : "https://kojipkgs.fedoraproject.org/packages/kernel/", + "version_discovery_pattern": "/html/body//a[regex:test(@href, '^4\.1[78].*/$')]/@href", + "build_discovery_pattern": "/html/body//a[regex:test(@href, '^[0-9]+\.[^r].*/$')]/@href", + "subdirs" : [ + "x86_64/" + ], + "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href", + }, + ], + + "CoreOS" : [ + { + "root" : "http://alpha.release.core-os.net/", + "discovery_pattern": "/html/body//a[regex:test(@href, 'amd64-usr')]/@href", + "subdirs" : [ + "" + ], + "page_pattern" : "/html/body//a[regex:test(@href, '^[5-9][0-9][0-9]|current|[1][0-9]{3}')]/@href", + "exclude_patterns": ["^15\d\d\."] + }, + + { + "root" : "http://beta.release.core-os.net/", + "discovery_pattern": "/html/body//a[regex:test(@href, 'amd64-usr')]/@href", + "subdirs" : [ + "" + ], + "page_pattern" : "/html/body//a[regex:test(@href, '^[5-9][0-9][0-9]|current|[1][0-9]{3}')]/@href" + }, + + { + "root" : "http://stable.release.core-os.net/", + "discovery_pattern": "/html/body//a[regex:test(@href, 'amd64-usr')]/@href", + "subdirs" : [ + "" + ], + "page_pattern" : "/html/body//a[regex:test(@href, '^[4-9][0-9][0-9]|current|[1][0-9]{3}')]/@href" + } + ], + + "Debian": [ + { + "root": "https://mirrors.edge.kernel.org/debian/pool/main/l/", + "discovery_pattern": "/html/body/pre/a[@href = 'linux/']/@href", + "subdirs": [""], + "page_pattern": "/html/body//a[regex:test(@href, '^linux-(image|headers)-[3-9]\.[0-9]+\.[0-9]+.*amd64.deb$')]/@href", + "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] + }, + { + "root": "http://security.debian.org/pool/updates/main/l/", + "discovery_pattern": "/html/body/table//tr/td/a[@href = 'linux/']/@href", + "subdirs": [""], + "page_pattern": "/html/body//a[regex:test(@href, '^linux-(image|headers)-[3-9]\.[0-9]+\.[0-9]+.*amd64.deb$')]/@href", + "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] + }, + { + "root": "https://mirrors.edge.kernel.org/debian/pool/main/l/", + "discovery_pattern": "/html/body/pre/a[@href = 'linux/']/@href", + "subdirs": [""], + "page_pattern": "/html/body//a[regex:test(@href, '^linux-headers-[3-9]\.[0-9]+\.[0-9]+.*-common_.*.all\.deb$')]/@href", + "exclude_patterns": ["-rt", "dbg", "trunk", "exp", "unsigned", "cloud-amd64"] + }, + { + "root": "http://security.debian.org/pool/updates/main/l/", + "discovery_pattern": "/html/body/table//tr/td/a[@href = 'linux/']/@href", + "subdirs": [""], + "page_pattern": "/html/body//a[regex:test(@href, '^linux-headers-[3-9]\.[0-9]+\.[0-9]+.*-common_.*.all\.deb$')]/@href", + "exclude_patterns": ["-rt", "dbg", "trunk", "exp", "unsigned", "cloud-amd64"] + }, + { + "root": "http://mirrors.edge.kernel.org/debian/pool/main/l/", + "discovery_pattern": "/html/body/pre/a[@href = 'linux/']/@href", + "subdirs": [""], + "page_pattern": "/html/body//a[regex:test(@href, '^linux-kbuild-.*amd64.deb$')]/@href", + "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] + }, + { + "root": "http://mirrors.edge.kernel.org/debian/pool/main/l/", + "discovery_pattern": "/html/body/pre/a[@href = 'linux-tools/']/@href", + "subdirs": [""], + "page_pattern": "/html/body//a[regex:test(@href, '^linux-kbuild-.*amd64.deb$')]/@href", + "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] + } + ] +} + +# Build static list, check here for the last Amazon Linux AMI release: https://aws.amazon.com/amazon-linux-2/faqs/ +amazon_linux_builder = [('latest', 'updates'), ('latest', 'main'), ('2017.03', 'updates'), ('2017.03', 'main'), ('2017.09', 'updates'), ('2017.09', 'main'), ('2018.03', 'updates'), ('2018.03', 'main')] +amazon_repos = [] +for repo_release, release_type in amazon_linux_builder: + amazon_repos.append({ + "root": "http://repo.us-east-1.amazonaws.com/" + repo_release + "/" + release_type + "/mirror.list", + "discovery_pattern": "SELECT * FROM packages WHERE name LIKE 'kernel%'", + "subdirs": [""], + "page_pattern": "", + "exclude_patterns": ["doc", "tools", "headers"] + }) +repos['AmazonLinux'] = amazon_repos + +amazon_linux_2 = ['core/2.0', 'core/latest', 'extras/kernel-5.4/latest', 'extras/kernel-5.10/latest'] +amazon_linux2 = [] +for amzn_repos in amazon_linux_2: + amazon_linux2.append({ + "root": "http://amazonlinux.us-east-1.amazonaws.com/2/" + amzn_repos + "/x86_64/mirror.list", + "discovery_pattern": "SELECT * FROM packages WHERE name LIKE 'kernel%' AND name NOT LIKE 'kernel-livepatch%'", + "subdirs": [""], + "page_pattern": "", + "exclude_patterns": ["doc", "tools", "headers"] + }) + +repos['AmazonLinux2'] = amazon_linux2 + +def progress(distro, current, total, package): + sys.stderr.write('\r\x1b[2K{} {}/{} {}'.format(distro, current, total, package)) + +def exclude_patterns(repo, packages, base_url, urls): + for rpm in packages: + if "exclude_patterns" in repo and any(re.search(x, rpm) for x in repo["exclude_patterns"]): + continue else: - return [k for k in kernel_packages if package_filter in k] + urls.add(base_url + str(unquote(rpm))) + +def process_al_distro(al_distro_name, current_repo): + get_url = urlopen(current_repo["root"]).readline().decode('ascii') + if get_url: + if al_distro_name == "AmazonLinux": + base_mirror_url = get_url.replace('$basearch','x86_64').replace('\n','') + '/' + db_path = "repodata/primary.sqlite.bz2" + elif al_distro_name == "AmazonLinux2": + base_mirror_url = get_url.replace('\n','') + '/' + db_path = "repodata/primary.sqlite.gz" + + progress(current_repo["root"], 1, 3, 'downloading ' + db_path) + response = urlopen(base_mirror_url + db_path) + body = response.read() + + progress(current_repo["root"], 2, 3, 'decompressing') + if al_distro_name == "AmazonLinux": + decompressed_data = bz2.decompress(body) + elif al_distro_name == "AmazonLinux2": + decompressed_data = zlib.decompress(body, 16+zlib.MAX_WBITS) + + progress(current_repo["root"], 3, 3, 'querying') + db_file = tempfile.NamedTemporaryFile() + db_file.write(decompressed_data) + conn = sqlite3.connect(db_file.name) + conn.row_factory = sqlite3.Row + c = conn.cursor() + al_rpms = [sqlite_column(r, "location_href") for r in c.execute(current_repo["discovery_pattern"])] + exclude_patterns(current_repo, al_rpms, base_mirror_url, urls) + conn.close() + db_file.close() + + sys.stderr.write('\n') + return True + + else: + return False - # download and parse the package database - def get_raw_package_db(self): +# +# Fedora Atomic needs 2 levels of discovery (for version, and build id, respectively) +# +def process_atomic_distro(current_repos): + for repo in current_repos["Fedora-Atomic"]: try: - repo_packages = get_first_of([ - self.repo_base + self.repo_name + '/Packages.gz', - self.repo_base + self.repo_name + '/Packages.xz', - ]) + root = urlopen(repo["root"],timeout=URL_TIMEOUT).read() except: - return {} - - repo_packages = repo_packages.splitlines(True) - packages = self.scan_packages(repo_packages) - for name, details in packages.items(): - details['URL'] = self.repo_base + details['Filename'] - return {self.dist: packages} - - @classmethod - def build_package_tree(cls, packages, package_list): - deps = {} - for pkg in package_list: - pv = packages[pkg]['Version'] - # we unpack e.g. 4.15.0-140.144 to 4.15.0-140/144 - # make the probe builder's life a little bit easier - # (when we use more of the kernel crawler than just - # the raw urls) - m = cls.KERNEL_RELEASE_UPDATE.match(pv) - if m: - pv = '{}/{}'.format(m.group(1), m.group(2)) - deps.setdefault(pv, set()).update(cls.get_package_deps(packages, pkg)) - for pkg, dep_list in deps.items(): - have_headers = False - for dep in dep_list: - if 'linux-headers' in dep: - have_headers = True - if not have_headers: - del deps[pkg] - return deps - - def get_package_tree(self, version=''): - packages = self.get_raw_package_db() - package_tree = {} - for dist, dist_packages in packages.items(): - package_list = self.get_package_list(dist_packages, version) - for pkg, deps in self.build_package_tree(dist_packages, package_list): - package_tree[dist + ':' + pkg] = deps - return package_tree - - -class DebMirror(Mirror): - - def __init__(self, base_url, repo_filter=None): - # scan the http server at `base_url` to find repos inside - # only consider repos (http links) matching the repo filter - # (matches everything by default) - self.base_url = base_url - if repo_filter is None: - repo_filter = lambda _: True - self.repo_filter = repo_filter - - def scan_repo(self, dist): - # find the components in a repository - # we only care about main, updates and updates/main - # not about e.g. contrib or non-free - # - # unfortunately, naming isn't very consistent - # so e.g. some repos inside updates/ have an updates/main - # component. We strip that out if we see a double updates/ - # in the url - repos = {} - all_comps = set() - release = get_url(self.base_url + dist + 'Release') - for line in release.splitlines(False): - if line.startswith('Components: '): - for comp in line.split(None)[1:]: - if comp in ('main', 'updates', 'updates/main'): - if dist.endswith('updates/') and comp.startswith('updates/'): - comp = comp.replace('updates/', '') - all_comps.add(comp) - break - for comp in all_comps: - url = dist + comp + '/binary-amd64/' - repos[url] = DebRepository(self.base_url, url) - return repos - - def list_repos(self): - dists_url = self.base_url + 'dists/' - dists = get_url(dists_url) - doc = html.fromstring(dists, dists_url) - dists = [dist for dist in doc.xpath('/html/body//a[not(@href="../")]/@href') - if dist.endswith('/') - and not dist.startswith('/') - and not dist.startswith('?') - and not dist.startswith('http') - and self.repo_filter(dist) - ] - - repos = {} - for dist in dists: - # unfortunately, there's no way to know if there's - # an updates/ subdirectory from the top level - try: - repos.update(self.scan_repo('dists/{}'.format(dist))) - except: - pass + continue + versions = html.fromstring(root).xpath(repo["version_discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) + vid = 0 + for version in versions: + vid += 1 + version_url=repo["root"] + version try: - repos.update(self.scan_repo('dists/{}updates/'.format(dist))) + progress(repo["root"], vid, len(versions), version) + version_page=urlopen(version_url,timeout=URL_TIMEOUT).read() except: - pass - - return sorted(repos.values()) - - -class DebianLikeMirror(MultiMirror): - - # since we need to group the Debian packages along dist lines, not along repo lines, - # we override the `get_package_tree` method to work nicely with the modified - # schema of values returned from DebRepository.build_package_tree - # until we use the dependency information in the probe builder itself, - # the key used (dist :: release) is arbitrary. When we start using the metadata, - # we might want to collapse releases across different dists here, so that - # packages[release] contains the dependencies for all dists and let the probe builder - # sort it out - def get_package_tree(self, version=''): - all_packages = {} - all_kernel_packages = {} - packages = {} - repos = self.list_repos() - for repository in repos: - repo_packages = repository.get_raw_package_db() - for dist, dist_packages in repo_packages.items(): - all_packages.setdefault(dist, {}).update(dist_packages) - kernel_packages = repository.get_package_list(dist_packages, version) - all_kernel_packages.setdefault(dist, []).extend(kernel_packages) - - for dist, dist_packages in all_packages.items(): - dist_kernel_packages = all_kernel_packages.get(dist, []) - - for release, dependencies in DebRepository.build_package_tree(dist_packages, dist_kernel_packages).items(): - if release not in packages: - packages[dist + '::' + release] = set(dependencies) - return packages - - -class DebianMirror(DebianLikeMirror): - @classmethod - def repo_filter(cls, dist): - # use the code names (bookworm etc.), not stable/testing/unstable aliases - # or version numbers - return 'stable' not in dist and 'testing' not in dist and not dist.startswith('Debian') - - def __init__(self): - mirrors = [ - DebMirror('https://mirrors.edge.kernel.org/debian/', self.repo_filter), - DebMirror('http://security.debian.org/', self.repo_filter), - ] - super(DebianMirror, self).__init__(mirrors) - - -class UbuntuMirror(DebianLikeMirror): - def __init__(self): - mirrors = [ - DebMirror('https://mirrors.edge.kernel.org/ubuntu/'), - DebMirror('http://security.ubuntu.com/ubuntu/'), - ] - super(UbuntuMirror, self).__init__(mirrors) - - -# --- RPM repos --- - - -class RpmRepository(Repository): - def __init__(self, base_url): - self.base_url = base_url - - def __str__(self): - return self.base_url - - def is_valid(self): - return check_url(self.base_url + 'repodata/repomd.xml') - - @classmethod - def get_loc_by_xpath(cls, text, expr): - e = etree.fromstring(text) - loc = e.xpath(expr, namespaces={ - 'common': 'http://linux.duke.edu/metadata/common', - 'repo': 'http://linux.duke.edu/metadata/repo', - 'rpm': 'http://linux.duke.edu/metadata/rpm' - }) - return loc[0] - - @classmethod - def kernel_package_query(cls): - # what is a kernel package? CentOS like distros generally stick to - # kernel and kernel-devel, but e.g. PhotonOS uses linux{,-devel} - # so make this a class method that subclasses can override - return '''name IN ('kernel', 'kernel-devel')''' - - @classmethod - def build_base_query(cls, version=''): - # based on whether we have a filter or not, build the query for the base case - # i.e. "find all kernel packages we're interested in" - base_query = '''SELECT version || '-' || release || '.' || arch, pkgkey FROM packages WHERE {}'''.format( - cls.kernel_package_query()) - if not version: - return base_query, () - else: - return base_query + ''' AND (version = ? OR version || '-' || "release" = ?)''', (version, version) - - @classmethod - def parse_repo_db(cls, repo_db, version=''): - db = sqlite3.connect(repo_db) - cursor = db.cursor() - - # we can do a recursive SQL query to find all packages - # and their (transitive) dependencies in one shot. Behold. - base_query, args = cls.build_base_query(version) - query = '''WITH RECURSIVE transitive_deps(version, pkgkey) AS ( - {} - UNION - SELECT transitive_deps.version, provides.pkgkey - FROM provides - INNER JOIN requires USING (name, flags, epoch, version, "release") - INNER JOIN transitive_deps ON requires.pkgkey = transitive_deps.pkgkey - ) SELECT transitive_deps.version, location_href FROM packages INNER JOIN transitive_deps using(pkgkey); - '''.format(base_query) - - cursor.execute(query, args) - return cursor.fetchall() - - def get_repodb_url(self): - repomd = get_url(self.base_url + 'repodata/repomd.xml') - pkglist_url = self.get_loc_by_xpath(repomd, '//repo:repomd/repo:data[@type="primary_db"]/repo:location/@href') - return self.base_url + pkglist_url - - def get_package_tree(self, version=''): - # download the sqlite database and query it - packages = {} - try: - repodb_url = self.get_repodb_url() - repodb = get_url(repodb_url) - except: - return {} - with tempfile.NamedTemporaryFile() as tf: - tf.write(repodb) - tf.flush() - for pkg in self.parse_repo_db(tf.name, version): - version, url = pkg - packages.setdefault(version, set()).add(self.base_url + url) - return packages - - -class RpmMirror(Mirror): - - # scan the http server at `base_url` to find repos inside - # only consider repos (http links) matching the repo filter - # (matches everything by default) - # - # the variant is the distro-specific bit inside a particular dist - def __init__(self, base_url, variant, repo_filter=None): - self.base_url = base_url - self.variant = variant - if repo_filter is None: - repo_filter = lambda _: True - self.repo_filter = repo_filter - - def list_repos(self): - dists = get_url(self.base_url) - doc = html.fromstring(dists, self.base_url) - dists = doc.xpath('/html/body//a[not(@href="../")]/@href') - return [RpmRepository('{}{}{}'.format(self.base_url, dist, self.variant)) for dist in dists - if dist.endswith('/') - and not dist.startswith('/') - and not dist.startswith('?') - and not dist.startswith('http') - and self.repo_filter(dist) - ] - - -class CentosMirror(MultiMirror): - def __init__(self): - mirrors = [ - RpmMirror('http://mirror.centos.org/centos/', 'os/x86_64/', lambda ver: ver.startswith('7')), - RpmMirror('http://mirror.centos.org/centos/', 'updates/x86_64/', lambda ver: ver.startswith('7')), - RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/x86_64/os/', lambda ver: ver.startswith('8')), - RpmMirror('https://vault.centos.org/', 'os/x86_64/', - lambda ver: ver.startswith('6') or ver.startswith('7')), - RpmMirror('https://vault.centos.org/', 'updates/x86_64/', - lambda ver: ver.startswith('6') or ver.startswith('7')), - RpmMirror('https://vault.centos.org/', 'BaseOS/x86_64/os/', lambda ver: ver.startswith('8')), - ] - super(CentosMirror, self).__init__(mirrors) - - -class FedoraMirror(MultiMirror): - @classmethod - def repo_filter(cls, version): - """Don't bother testing ancient versions""" - try: - return int(version.rstrip('/')) >= 32 - except ValueError: - return False - - def __init__(self): - mirrors = [ - RpmMirror('https://mirrors.kernel.org/fedora/releases/', 'Everything/x86_64/os/', self.repo_filter), - ] - super(FedoraMirror, self).__init__(mirrors) - - -def get_al_repo(repo_root, repo_release): - repo_pointer = repo_root + repo_release + "/mirror.list" - resp = get_url(repo_pointer) - return resp.splitlines()[0].replace('$basearch', 'x86_64') + '/' - - -class AmazonLinux1Mirror(MultiMirror): - AL1_REPOS = [ - 'latest/updates', - 'latest/main', - '2017.03/updates', - '2017.03/main', - '2017.09/updates', - '2017.09/main', - '2018.03/updates', - '2018.03/main', - ] - - def __init__(self): - super(AmazonLinux1Mirror, self).__init__([]) - - def list_repos(self): - repo_urls = set() - for r in self.AL1_REPOS: - repo_urls.add(get_al_repo("http://repo.us-east-1.amazonaws.com/", r)) - return [RpmRepository(url) for url in sorted(repo_urls)] - - -class AmazonLinux2Mirror(MultiMirror): - AL2_REPOS = [ - 'core/2.0', - 'core/latest', - 'extras/kernel-5.4/latest', - 'extras/kernel-5.10/latest', - ] - - def __init__(self): - super(AmazonLinux2Mirror, self).__init__([]) - - def list_repos(self): - repo_urls = set() - for r in self.AL2_REPOS: - repo_urls.add(get_al_repo("http://amazonlinux.us-east-1.amazonaws.com/2/", r + '/x86_64')) - return [RpmRepository(url) for url in sorted(repo_urls)] - - -class PhotonOsRepository(RpmRepository): - @classmethod - def kernel_package_query(cls): - # we exclude `esx` kernels because they don't support CONFIG_TRACEPOINTS - # see https://github.com/vmware/photon/issues/1223 - return '''((name = 'linux' OR name LIKE 'linux-%devel%') AND name NOT LIKE '%esx%')''' - - -class PhotonOsMirror(MultiMirror): - PHOTON_OS_VERSIONS = [ - ('3.0', '_release'), - ('3.0', '_updates'), - ('4.0', ''), - ('4.0', '_release'), - ('4.0', '_updates'), - ] - - def __init__(self): - super(PhotonOsMirror, self).__init__([]) - - def list_repos(self): - return [ - PhotonOsRepository( - 'https://packages.vmware.com/photon/{v}/photon{r}_{v}_x86_64/'.format(v=version, r=repo_tag)) - for version, repo_tag in self.PHOTON_OS_VERSIONS] - - -class OracleRepository(RpmRepository): - @classmethod - def kernel_package_query(cls): - return '''(name IN ('kernel', 'kernel-devel', 'kernel-uek', 'kernel-uek-devel') AND arch = 'x86_64')''' - - -class OracleMirror(MultiMirror): - REPOS = [] - - def __init__(self): - super(OracleMirror, self).__init__([]) - - def list_repos(self): - return [OracleRepository(url) for url in self.REPOS] - - -class Oracle6Mirror(OracleMirror): - REPOS = [ - 'http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/', - ] - - -class Oracle7Mirror(OracleMirror): - REPOS = [ - 'http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/', - ] - - -class Oracle8Mirror(OracleMirror): - REPOS = [ - 'http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/', - ] - - -# --- Dummy empty repos, for compatibility --- - - -class EmptyMirror(object): - @staticmethod - def get_package_urls(version=''): - return [] - - -DISTROS = { - 'Debian': DebianMirror, - 'Ubuntu': UbuntuMirror, - - 'CentOS': CentosMirror, - 'Fedora': FedoraMirror, - - 'AmazonLinux': AmazonLinux1Mirror, - 'AmazonLinux2': AmazonLinux2Mirror, - - 'PhotonOS': PhotonOsMirror, + continue + builds = html.fromstring(version_page).xpath(repo["build_discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) + for build in builds: + for subdir in repo["subdirs"]: + source = version_url + build + subdir + try: + page = urlopen(source,timeout=URL_TIMEOUT).read() + except: + continue + rpms = html.fromstring(page).xpath(repo["page_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) + exclude_patterns(repo, rpms, source, urls) + sys.stderr.write('\n') - 'OracleLinux6': Oracle6Mirror, - 'OracleLinux7': Oracle7Mirror, - 'OracleLinux8': Oracle8Mirror, - 'CoreOS': EmptyMirror, - 'Fedora-Atomic': EmptyMirror, -} +# +# In our design you are not supposed to modify the code. The whole script is +# created so that you just have to add entry to the `repos` array and new +# links will be found automagically without needing to write any single line of +# code. +# +urls = set() +URL_TIMEOUT=30 +if len(sys.argv) < 2 or not sys.argv[1] in repos: + sys.stderr.write("Usage: " + sys.argv[0] + " [version]\n") + sys.stderr.write("Available distros:\n") + for d in sorted(repos): + sys.stderr.write(" - {}\n".format(d)) + sys.exit(1) -def usage(): - print('Supported distributions:', file=sys.stderr) - for distro in sorted(DISTROS.keys()): - print(distro, file=sys.stderr) +distro = sys.argv[1] +try: + version_filter = sys.argv[2] + if distro == 'Ubuntu' and version_filter.endswith('-generic'): + version_filter = version_filter[:-len('-generic')] + sys.stderr.write('Looking for packages matching "{}"\n'.format(version_filter)) +except IndexError: + version_filter = '' +# +# Navigate the `repos` tree and look for packages we need that match the +# patterns given. Save the result in `packages`. +# -def main(): - try: - distro_cls = DISTROS[sys.argv[1]] - except IndexError: - print('Usage: kernel-crawler.py DISTRO [VERSION]', file=sys.stderr) - usage() - sys.exit(1) - except KeyError: - print('Unsupported distribution {}'.format(sys.argv[1]), file=sys.stderr) - usage() - sys.exit(1) +for repo in repos[distro]: + if distro == 'AmazonLinux': + try: + process_al_distro(distro, repo) + except: + continue + elif distro == 'AmazonLinux2': + try: + # Brute force finding the repositories. + process_al_distro(distro, repo) + except: + continue + elif distro == "Fedora-Atomic": + try: + process_atomic_distro(repos) + except: + continue + else: + try: + root = urlopen(repo["root"],timeout=URL_TIMEOUT).read() + except: + continue + + versions = html.fromstring(root).xpath(repo["discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) + current = 1 + total = len(versions) * len(repo["subdirs"]) + for version in versions: + for subdir in repo["subdirs"]: + # The try - except block is used because 404 errors and similar + # might happen (and actually happen because not all repos have + # packages we need) + try: + source = repo["root"] + version + subdir + progress(repo["root"], current, total, version + subdir) + current += 1 + page = urlopen(source,timeout=URL_TIMEOUT).read() + rpms = html.fromstring(page).xpath(repo["page_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) + exclude_patterns(repo, rpms, source, urls) + except: + continue + sys.stderr.write('\n') - try: - version = sys.argv[2] - except IndexError: - version = '' - distro = distro_cls() - for url in distro.get_package_urls(version): +# +# Print URLs to stdout +# +for url in urls: + if version_filter in url: print(url) - - -if __name__ == '__main__': - main() From 33455a9e78fc8174f5631581062e3bc3a63c1cc5 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Wed, 13 Oct 2021 19:59:43 +0200 Subject: [PATCH 032/259] Clean the eBPF probe directory before we build the probe Otherwise we just reused whatever probe was lying there --- builder-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder-entrypoint.sh b/builder-entrypoint.sh index 88b55b9..883a002 100755 --- a/builder-entrypoint.sh +++ b/builder-entrypoint.sh @@ -46,7 +46,7 @@ build_bpf() { echo "clang not available, not building eBPF probe $PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o" else echo "Building eBPF probe $PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o" - make -C /build/probe/sysdig/driver/bpf + make -C /build/probe/sysdig/driver/bpf clean all cp /build/probe/sysdig/driver/bpf/probe.o $OUTPUT/$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o fi } From 64b0a4f8f9bfd8b16a348ee349e0ccc4f7cb838e Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Thu, 14 Oct 2021 14:45:05 +0200 Subject: [PATCH 033/259] Don't build eBPF probes for kernels < 4.14 --- build-probe-binaries | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/build-probe-binaries b/build-probe-binaries index b067456..f35f614 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -400,6 +400,20 @@ function build_probe_impl { function build_probe_bpf { PROBE_ID=$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o + KERNEL_MAJOR=${KERNEL_RELEASE%%.*} + KERNEL_MINOR=${KERNEL_RELEASE#$KERNEL_MAJOR.} + KERNEL_MINOR=${KERNEL_MINOR%%.*} + + if [ "$KERNEL_MAJOR" -lt 4 ] + then + echo "Kernel $KERNEL_RELEASE too old to support eBPF (need at least 4.14), skipping eBPF build" + return + elif [ "$KERNEL_MAJOR" -eq 4 -a "$KERNEL_MINOR" -lt 14 ] + then + echo "Kernel $KERNEL_RELEASE too old to support eBPF (need at least 4.14), skipping eBPF build" + return + fi + # Skip Kernel 4.15.0-29 because probe does not build against it if [ $KERNEL_RELEASE-$HASH = "4.15.0-29-generic-ea0aa038a6b9bdc4bb42152682bba6ce" -o \ $KERNEL_RELEASE-$HASH = "5.8.0-1023-aws-3f7746be1bef4c3f68f5465d8453fa4d" ]; then From 88730f48d0e2a86196e267500b4170a41ea9d605 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Thu, 14 Oct 2021 18:23:42 +0200 Subject: [PATCH 034/259] [SSPROD-8709] Also consider linux-modules-* as a build trigger We no longer download many of the linux-image-* packages so we need the linux-modules-* ones to trigger the build. This means we'll potentially run some builds twice but the second one should immediately notice that the probes are already built and exit. --- build-probe-binaries | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-probe-binaries b/build-probe-binaries index f35f614..8414fad 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -563,7 +563,7 @@ function ubuntu_build { for DEB in "$@" do - if [[ $(basename $DEB) != "linux-image-"*".deb" ]] + if [[ $(basename $DEB) != "linux-image-"*".deb" && $(basename $DEB) != "linux-modules-"*".deb" ]] then continue fi From 625b4d0c46dfbeda0c878619b54b2395f76ba9b9 Mon Sep 17 00:00:00 2001 From: Joseph Pittman Date: Wed, 20 Oct 2021 17:07:49 -0400 Subject: [PATCH 035/259] [SSPROD-9627] Enhance build-probe-binaries Debian logic to handle new linux-headers Makefile format Linux headers for Debian 11 use a new format for the architectur-specific Makefile. Enhance the Makefile relocation patching logic to handle this new format as well as the old one. --- build-probe-binaries | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-probe-binaries b/build-probe-binaries index 8414fad..57d6860 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -719,7 +719,8 @@ function debian_build { cat $MAKEFILE.sysdig-orig | \ sed '0,/MAKEARGS.*$/s||MAKEARGS := -C '"${CONTAINER_KERNELDIR_COMMON}"' O='"${CONTAINER_KERNELDIR}"'|' | \ sed 's/@://' | \ - sed 's|$(cmd) %.*$|$(cmd) : all|' > $MAKEFILE + sed 's|$(cmd) %.*$|$(cmd) : all|' | + sed 's|^include .*$|include '"${CONTAINER_KERNELDIR_COMMON}"'/Makefile|' > $MAKEFILE fi # impedance mismatch From 11df83524bcd5999125a772db4f8148ea20adbbe Mon Sep 17 00:00:00 2001 From: Joseph Pittman Date: Thu, 21 Oct 2021 11:40:04 -0400 Subject: [PATCH 036/259] [SSPROD-9627] Fixes to build-probe-binaries and Debian Dockerfiles to support CustomDebian operation - Install libelf-dev in Debian dockerfiles - Fix linux-kbuild finder logic to accomodate package location in CustomDebian mode --- Dockerfile.debian-gcc10.2 | 19 +++++++++++++++++++ Dockerfile.debian-gcc4.9 | 1 + Dockerfile.debian-gcc6.3 | 1 + Dockerfile.debian-gcc8.3 | 1 + build-probe-binaries | 2 +- 5 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 Dockerfile.debian-gcc10.2 diff --git a/Dockerfile.debian-gcc10.2 b/Dockerfile.debian-gcc10.2 new file mode 100644 index 0000000..130a018 --- /dev/null +++ b/Dockerfile.debian-gcc10.2 @@ -0,0 +1,19 @@ +FROM debian:bullseye + +RUN apt-get update && apt-get -y --no-install-recommends install \ + cmake \ + g++ \ + git \ + kmod \ + libc6-dev \ + libelf-dev \ + make \ + pkg-config \ + clang \ + llvm \ + && apt-get clean + +ADD builder-entrypoint.sh / +WORKDIR /build/probe +ENTRYPOINT [ "/builder-entrypoint.sh" ] + diff --git a/Dockerfile.debian-gcc4.9 b/Dockerfile.debian-gcc4.9 index 0b4fcf4..3c52e81 100644 --- a/Dockerfile.debian-gcc4.9 +++ b/Dockerfile.debian-gcc4.9 @@ -6,6 +6,7 @@ RUN apt-get update && apt-get -y --no-install-recommends install \ git \ kmod \ libc6-dev \ + libelf-dev \ make \ pkg-config \ && apt-get clean diff --git a/Dockerfile.debian-gcc6.3 b/Dockerfile.debian-gcc6.3 index 1394d95..c17f065 100644 --- a/Dockerfile.debian-gcc6.3 +++ b/Dockerfile.debian-gcc6.3 @@ -6,6 +6,7 @@ RUN apt-get update && apt-get -y --no-install-recommends install \ git \ kmod \ libc6-dev \ + libelf-dev \ make \ pkg-config \ clang \ diff --git a/Dockerfile.debian-gcc8.3 b/Dockerfile.debian-gcc8.3 index 68b2573..686e4e8 100644 --- a/Dockerfile.debian-gcc8.3 +++ b/Dockerfile.debian-gcc8.3 @@ -6,6 +6,7 @@ RUN apt-get update && apt-get -y --no-install-recommends install \ git \ kmod \ libc6-dev \ + libelf-dev \ make \ pkg-config \ clang \ diff --git a/build-probe-binaries b/build-probe-binaries index 57d6860..ab7e141 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -653,7 +653,7 @@ function debian_build { touch $MARKER fi set +e - KBUILD_PACKAGE=$(ls $DISTRO/linux-kbuild-${KERNEL_MAJOR}_*.deb 2>/dev/null | tail -1) + KBUILD_PACKAGE=$(ls $@ 2>/dev/null | grep "linux-kbuild-${KERNEL_MAJOR}_.*.deb" | tail -1) set -e if [ -n "$KBUILD_PACKAGE" ] then From 88f1c5784d76e4203eaf589f498db2795be67e6f Mon Sep 17 00:00:00 2001 From: Joseph Pittman Date: Mon, 25 Oct 2021 08:37:13 -0400 Subject: [PATCH 037/259] [SSPROD-9627] Fix README.md to document use of CustomDebian for Debian kernels --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 38f8e3b..09c79b8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,9 @@ The probe builder can be used to automatically build kernel modules for the [com The description below assumes that we need to build probes for: * agent 12.0.0 (substitute the version as required) -* for RedHat/CentOS kernels (for Ubuntu/Debian kernels use -k CustomUbuntu option instead of -k CustomCentOS). +* for RedHat/CentOS kernels + * for Ubuntu kernels use -k CustomUbuntu option instead of -k CustomCentOS + * for Debian kernels use -k CustomDebian option instead of -k CustomCentOS ## Prerequisites From 15c9e341983948f0a47ca07ec1e410ef5e0d91ca Mon Sep 17 00:00:00 2001 From: Joseph Pittman Date: Fri, 29 Oct 2021 16:19:57 -0400 Subject: [PATCH 038/259] [SSPROD-9709] Add SYSDIG_PROBE_OVERRIDE_FULL_URL environment variable to sysdig-probe-loader Allows user to specify the full URL, including host, directory, AND filename, to be used by sysdig-probe-loader in naming and retrieving a kernel module or eBPF probe. Useful if - Kernel config file is not available on host - normally needed to calculate hash value component of probe filename - Probe is to be downloaded from locally-hosted system, and the user is unable or unwilling to obey the Sysdig naming/directory hierarchy conventions --- sysdig-probe-loader | 87 ++++++++++++++++++++++++++++++++++++++------- 1 file changed, 75 insertions(+), 12 deletions(-) diff --git a/sysdig-probe-loader b/sysdig-probe-loader index a9939be..1d38eaa 100755 --- a/sysdig-probe-loader +++ b/sysdig-probe-loader @@ -21,6 +21,59 @@ # for it in a bunch of ways. Convenient when running sysdig inside # a container or in other weird environments. # +# By default, the script uses the following approaches to build or fetch +# or find the sysdig-probe, in the following order: +# 1) In the kernel module case, use modprobe, which looks for the kernel +# module already installed in /lib/modules +# 2) Look for the appropriate sysdig-probe (kernel module or eBPF) for the +# currently running kernel, in the .sysdig directory +# 3) Fetch the appropriate sysdig-probe (kernel module or eBPF) for the +# currently running kernel, from download.sysdig.com +# +# +# By default, the following naming conventions are used. +# A) Probe filename +# kernel module: sysdigcloud-probe----.ko +# eBPF probe: sysdigcloud-probe-bpf----.o +# Where: +# = sysdig release version (e.g. 12.0.3) +# = CPU architecture (e.g. x86_64) +# = uname -r output (e.g. 4.18.0-147.56.1.el8_1.x86_64) +# = result of hash, calculated over kernel config file, 32 hex digits +# So, an example kernel module filename would be +# sysdigcloud-probe-12.0.3-x86_64-4.18.0-147.56.1.el8_1.x86_64-2f4c51e1d6af404393d778653f50135.ko +# +# B) Download URL +# //sysdig-probe-binaries/ +# Where: +# DOWNLOAD_URL_HOST = "download.sysdig.com" by default +# DOWNLOAD_REPOSITORY = "stable" by defualt +# +# +# The following environment variables may be used to override defaults for different +# aspects of the object names: +# +# 1) SYSDIG_PROBE_OVERRIDE_FULL_URL +# - Overrides everything -- URL AND Probe filename +# - This is particularly useful when the user needs to download a probe built onsite, +# from a locally-hosted location, and doesn't want to worry about mimicing any +# naming conventions +# - Also particularly useful when the host doesn't have sufficient files (kernel headers, +# kernel config file) available, because it avoids the necessity of finding and +# calculating the checksum of the kernel config file on the local system. +# +# 2) SYSDIG_PROBE_URL +# - Finer-grain override +# - Allows the user to override only the DOWNLOAD_URL_HOST value from item B above, +# to specify a different host + optional port number (e.g. "probe-host.mydomain.com:80" +# vs. the default "download.sysdig.com"), +# - While retaining/mimicing the standard Sysdig directory structure and filename format +# +# 3) SYSDIG_REPOSITORY +# - Finer-grain override +# - Allows the user (or build script) to override only the DOWNLOAD_REPOSITORY value +# from item B above, to specify a top-level directory (e.g. "dev" instead of "stable") +# - While retaining/mimicing the standard Sysdig directory structure and filename format # # Returns 1 if $cos_ver > $base_ver, 0 otherwise @@ -69,7 +122,7 @@ cos_version_greater() } -get_kernel_config() { +get_kernel_config_hash() { if [ -f /proc/config.gz ]; then echo "Found kernel config at /proc/config.gz" KERNEL_CONFIG_PATH=/proc/config.gz @@ -178,9 +231,17 @@ load_kernel_probe() { echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" - get_kernel_config + local SYSDIG_PROBE_FILENAME + local URL - local SYSDIG_PROBE_FILENAME="${PROBE_NAME}-${SYSDIG_VERSION}-${ARCH}-${KERNEL_RELEASE}-${HASH}.ko" + if [ ! -z ${SYSDIG_PROBE_OVERRIDE_FULL_URL} ]; then + SYSDIG_PROBE_FILENAME=$(basename "${SYSDIG_PROBE_OVERRIDE_FULL_URL}") + URL=$(echo "${SYSDIG_PROBE_OVERRIDE_FULL_URL}" | sed s/+/%2B/g) + else + get_kernel_config_hash + SYSDIG_PROBE_FILENAME="${PROBE_NAME}-${SYSDIG_VERSION}-${ARCH}-${KERNEL_RELEASE}-${HASH}.ko" + URL=$(echo "${SYSDIG_PROBE_URL}/${SYSDIG_REPOSITORY}/sysdig-probe-binaries/${SYSDIG_PROBE_FILENAME}" | sed s/+/%2B/g) + fi if [ -f "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" ]; then echo "Found precompiled module at ~/.sysdig/${SYSDIG_PROBE_FILENAME}, loading module" @@ -188,9 +249,6 @@ load_kernel_probe() { exit $? fi - local URL - URL=$(echo "${SYSDIG_PROBE_URL}/${SYSDIG_REPOSITORY}/sysdig-probe-binaries/${SYSDIG_PROBE_FILENAME}" | sed s/+/%2B/g) - echo "* Trying to download precompiled module from ${URL}" curl_out=$(curl --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" -o "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" "${URL}" 2>&1) @@ -221,8 +279,6 @@ load_bpf_probe() { mount -t debugfs nodev /sys/kernel/debug fi - get_kernel_config - if [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/etc/os-release" ]; then . "${SYSDIG_HOST_ROOT}/etc/os-release" @@ -236,7 +292,17 @@ load_bpf_probe() { MINIKUBE_VERSION="$(cat ${SYSDIG_HOST_ROOT}/etc/VERSION)" fi - local BPF_PROBE_FILENAME="${BPF_PROBE_NAME}-${SYSDIG_VERSION}-${ARCH}-${KERNEL_RELEASE}-${HASH}.o" + local BPF_PROBE_FILENAME + local URL + + if [ ! -z ${SYSDIG_PROBE_OVERRIDE_FULL_URL} ]; then + BPF_PROBE_FILENAME=$(basename "${SYSDIG_PROBE_OVERRIDE_FULL_URL}") + URL=$(echo "${SYSDIG_PROBE_OVERRIDE_FULL_URL}" | sed s/+/%2B/g) + else + get_kernel_config_hash + BPF_PROBE_FILENAME="${BPF_PROBE_NAME}-${SYSDIG_VERSION}-${ARCH}-${KERNEL_RELEASE}-${HASH}.o" + URL=$(echo "${SYSDIG_PROBE_URL}/${SYSDIG_REPOSITORY}/sysdig-probe-binaries/${BPF_PROBE_FILENAME}" | sed s/+/%2B/g) + fi if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then @@ -346,9 +412,6 @@ load_bpf_probe() { fi if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - local URL - URL=$(echo "${SYSDIG_PROBE_URL}/${SYSDIG_REPOSITORY}/sysdig-probe-binaries/${BPF_PROBE_FILENAME}" | sed s/+/%2B/g) - echo "* Trying to download precompiled BPF probe from ${URL}" curl --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" -o "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" "${URL}" From 4480b340471fe6b881ddc84edf62209546c75f61 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 2 Nov 2021 22:46:54 +0100 Subject: [PATCH 039/259] Add a Fedora 35 builder (#24) --- Dockerfile.centos-gcc11.2 | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Dockerfile.centos-gcc11.2 diff --git a/Dockerfile.centos-gcc11.2 b/Dockerfile.centos-gcc11.2 new file mode 100644 index 0000000..42a84bd --- /dev/null +++ b/Dockerfile.centos-gcc11.2 @@ -0,0 +1,22 @@ +FROM fedora:35 + +RUN yum -y install \ + wget \ + git \ + gcc \ + gcc-c++ \ + autoconf \ + bison \ + flex \ + make \ + cmake \ + elfutils-devel \ + findutils \ + kmod \ + clang \ + llvm \ + python-lxml && yum clean all + +ADD builder-entrypoint.sh / +WORKDIR /build/probe +ENTRYPOINT [ "/builder-entrypoint.sh" ] From ca311d12f5ca945b7fc8bec271197275e1e30e86 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Fri, 8 Oct 2021 15:20:52 +0200 Subject: [PATCH 040/259] Install python3 in the builder container --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index b7df339..7247ad3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,10 +10,13 @@ RUN apk add \ git \ jq \ multipath-tools \ + python3 \ py3-lxml \ wget \ docker +RUN ln -s /usr/bin/python3 /usr/bin/python + ADD . /builder WORKDIR /builder ENTRYPOINT [ "/builder/main-builder-entrypoint.sh" ] From 66724e2f0aa069f799f9165cae8d4b9e8bbfa9c8 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Fri, 3 Dec 2021 17:47:53 +0100 Subject: [PATCH 041/259] [SMAGENT-3278] Don't install clang in Fedora 35 container The eBPF probe builds successfully with clang 13 but then fails the verifier test upon loading. --- Dockerfile.centos-gcc11.2 | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile.centos-gcc11.2 b/Dockerfile.centos-gcc11.2 index 42a84bd..bfe7298 100644 --- a/Dockerfile.centos-gcc11.2 +++ b/Dockerfile.centos-gcc11.2 @@ -13,8 +13,6 @@ RUN yum -y install \ elfutils-devel \ findutils \ kmod \ - clang \ - llvm \ python-lxml && yum clean all ADD builder-entrypoint.sh / From 600673f5271eb13f45b677a6b5266907bcb0539c Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Fri, 3 Dec 2021 17:58:28 +0100 Subject: [PATCH 042/259] [SMAGENT-3278] Use specific builder for Fedora 34 Fedora 34 and 35 have the same gcc version (at least at this point in time) but are otherwise incompatible: - fc34 can't build probes for fc35 kernels because fc35 needs a newer glibc - fc35 can't build eBPF probes (at all) because its clang is too new 1. Try to parse the kernel version to look for distro-specific tags. If one is found, look for a matching dockerfile. If there is one, use it. Otherwise, fall back to gcc version based choice. 2. Add a fc34 builder --- Dockerfile.fc34 | 22 ++++++++++++++++++++++ build-probe-binaries | 23 ++++++++++++++++++++++- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 Dockerfile.fc34 diff --git a/Dockerfile.fc34 b/Dockerfile.fc34 new file mode 100644 index 0000000..69fac80 --- /dev/null +++ b/Dockerfile.fc34 @@ -0,0 +1,22 @@ +FROM fedora:34 + +RUN yum -y install \ + wget \ + git \ + gcc \ + gcc-c++ \ + autoconf \ + bison \ + flex \ + make \ + cmake \ + elfutils-devel \ + findutils \ + kmod \ + clang \ + llvm \ + python-lxml && yum clean all + +ADD builder-entrypoint.sh / +WORKDIR /build/probe +ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/build-probe-binaries b/build-probe-binaries index ab7e141..0412741 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -278,7 +278,28 @@ function build_probe_impl { DOCKERFILE_TAG=$DOCKER_BUILDER echo "Forced use of builder $DOCKERFILE_TAG" - elif [ -n "${BUILDER_DISTRO:-}" ] + elif [ -e $KERNELDIR/include/generated/autoconf.h ] + then + # Try to find a distro-specific builder based on the version + # embedded in the header of autoconf.h + # /* + # * + # * Automatically generated file; DO NOT EDIT. + # * Linux/x86_64 5.15.5-100.fc34.x86_64 Kernel Configuration + # * + # */ + DISTRO_RELEASE=$(grep -Po '(?<=\.)fc[0-9]+(?=\..*Kernel Configuration$)' $KERNELDIR/include/generated/autoconf.h) + DOCKERFILE=$BUILDER_SOURCE/Dockerfile.$DISTRO_RELEASE + DOCKERFILE_TAG=${DOCKERFILE#$BUILDER_SOURCE/Dockerfile.} + + if [ ! -e "$DOCKERFILE" ] + then + echo "Could not find distro-specific builder for $DISTRO_RELEASE, falling back to gcc version selection" + DOCKERFILE= + fi + fi + + if [ -n "${BUILDER_DISTRO:-}" ] && [ -z "${DOCKERFILE:-}" ] then # Try to find the gcc version used to build this particular kernel # Check CONFIG_GCC_VERSION=90201 in the kernel config first From b1bc424ce0284d7d26ea6f0e8677e61e9e4f5d02 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Mon, 17 Jan 2022 10:58:27 +0100 Subject: [PATCH 043/259] Dockerfile: fix building of debian probes (#27) add a non-busybox sed to the container used to call the top-level script build-probe-binaries This is necessary to patch the Makefiles used when building debian probes. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 7247ad3..5a83b1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ RUN apk add \ multipath-tools \ python3 \ py3-lxml \ + sed \ wget \ docker From 5a5cbed5e939b63238a879fd1e3ef3a843f66050 Mon Sep 17 00:00:00 2001 From: "francesco.racciatti" Date: Wed, 2 Feb 2022 14:49:02 +0100 Subject: [PATCH 044/259] refactor: add helper functions to reduce indentation level --- sysdig-probe-loader | 597 ++++++++++++++++++++++++++++++-------------- 1 file changed, 404 insertions(+), 193 deletions(-) diff --git a/sysdig-probe-loader b/sysdig-probe-loader index 1d38eaa..526b9e4 100755 --- a/sysdig-probe-loader +++ b/sysdig-probe-loader @@ -21,6 +21,9 @@ # for it in a bunch of ways. Convenient when running sysdig inside # a container or in other weird environments. # +# +# --- WORKFLOW --- +# # By default, the script uses the following approaches to build or fetch # or find the sysdig-probe, in the following order: # 1) In the kernel module case, use modprobe, which looks for the kernel @@ -31,6 +34,8 @@ # currently running kernel, from download.sysdig.com # # +# --- ENVIRONMENT VARIABLES --- +# # By default, the following naming conventions are used. # A) Probe filename # kernel module: sysdigcloud-probe----.ko @@ -47,8 +52,7 @@ # //sysdig-probe-binaries/ # Where: # DOWNLOAD_URL_HOST = "download.sysdig.com" by default -# DOWNLOAD_REPOSITORY = "stable" by defualt -# +# DOWNLOAD_REPOSITORY = "stable" by default # # The following environment variables may be used to override defaults for different # aspects of the object names: @@ -61,19 +65,20 @@ # - Also particularly useful when the host doesn't have sufficient files (kernel headers, # kernel config file) available, because it avoids the necessity of finding and # calculating the checksum of the kernel config file on the local system. -# +# # 2) SYSDIG_PROBE_URL # - Finer-grain override # - Allows the user to override only the DOWNLOAD_URL_HOST value from item B above, # to specify a different host + optional port number (e.g. "probe-host.mydomain.com:80" # vs. the default "download.sysdig.com"), -# - While retaining/mimicing the standard Sysdig directory structure and filename format -# +# - While retaining/mimicing the standard Sysdig directory structure and filename format +# # 3) SYSDIG_REPOSITORY # - Finer-grain override # - Allows the user (or build script) to override only the DOWNLOAD_REPOSITORY value # from item B above, to specify a top-level directory (e.g. "dev" instead of "stable") -# - While retaining/mimicing the standard Sysdig directory structure and filename format +# - While retaining/mimicing the standard Sysdig directory structure and filename format + # # Returns 1 if $cos_ver > $base_ver, 0 otherwise @@ -122,58 +127,58 @@ cos_version_greater() } +# +# Looks for the kernel configuration and stores its hash in KERNEL_CONFIG_PATH. +# Returns 0 on success, 1 otherwise (cannot find kernel configuration). +# get_kernel_config_hash() { + echo "* Looking for kernel configuration" + if [ -f /proc/config.gz ]; then - echo "Found kernel config at /proc/config.gz" + echo " Found kernel config at /proc/config.gz" KERNEL_CONFIG_PATH=/proc/config.gz elif [ -f "/boot/config-${KERNEL_RELEASE}" ]; then - echo "Found kernel config at /boot/config-${KERNEL_RELEASE}" + echo " Found kernel config at /boot/config-${KERNEL_RELEASE}" KERNEL_CONFIG_PATH=/boot/config-${KERNEL_RELEASE} elif [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/boot/config-${KERNEL_RELEASE}" ]; then - echo "Found kernel config at ${SYSDIG_HOST_ROOT}/boot/config-${KERNEL_RELEASE}" + echo " Found kernel config at ${SYSDIG_HOST_ROOT}/boot/config-${KERNEL_RELEASE}" KERNEL_CONFIG_PATH="${SYSDIG_HOST_ROOT}/boot/config-${KERNEL_RELEASE}" elif [ -f "/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" ]; then - echo "Found kernel config at /usr/lib/ostree-boot/config-${KERNEL_RELEASE}" + echo " Found kernel config at /usr/lib/ostree-boot/config-${KERNEL_RELEASE}" KERNEL_CONFIG_PATH="/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" elif [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" ]; then - echo "Found kernel config at ${SYSDIG_HOST_ROOT}/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" + echo " Found kernel config at ${SYSDIG_HOST_ROOT}/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" KERNEL_CONFIG_PATH="${SYSDIG_HOST_ROOT}/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" elif [ -f /lib/modules/${KERNEL_RELEASE}/config ]; then # this code works both for native host and agent container assuming that # Dockerfile sets up the desired symlink /lib/modules -> $SYSDIG_HOST_ROOT/lib/modules - echo "Found kernel config at /lib/modules/${KERNEL_RELEASE}/config" + echo " Found kernel config at /lib/modules/${KERNEL_RELEASE}/config" KERNEL_CONFIG_PATH="/lib/modules/${KERNEL_RELEASE}/config" fi if [ -z "${KERNEL_CONFIG_PATH}" ]; then - echo "Cannot find kernel config" - exit 1 + echo "Cannot find kernel configuration" + return 1 fi if [[ "${KERNEL_CONFIG_PATH}" == *.gz ]]; then - HASH=$(zcat "${KERNEL_CONFIG_PATH}" | md5sum - | cut -d' ' -f1) + HASH=$(zcat "${KERNEL_CONFIG_PATH}" | md5sum - | cut -d' ' -f1) else - HASH=$(md5sum "${KERNEL_CONFIG_PATH}" | cut -d' ' -f1) - fi -} - -load_kernel_probe() { - if ! hash lsmod > /dev/null 2>&1; then - echo "This program requires lsmod" - exit 1 + HASH=$(md5sum "${KERNEL_CONFIG_PATH}" | cut -d' ' -f1) fi - if ! hash modprobe > /dev/null 2>&1; then - echo "This program requires modprobe" - exit 1 - fi + return 0 +} - if ! hash rmmod > /dev/null 2>&1; then - echo "This program requires rmmod" - exit 1 - fi +# +# Tries to remove the kernel probe. +# Returns 0 on success, 1 otherwise (kernel probe still loaded). +# +remove_kernel_probe() { echo "* Unloading ${PROBE_NAME}, if present" + + # Tries to remove the module within a predefined time ($MAX_RMMOD_WAIT) rmmod "${PROBE_NAME}" 2>/dev/null WAIT_TIME=0 KMOD_NAME=$(echo "${PROBE_NAME}" | tr "-" "_") @@ -189,264 +194,461 @@ load_kernel_probe() { sleep 1 done + # Still loaded if lsmod | grep "${KMOD_NAME}" > /dev/null 2>&1; then echo "* ${PROBE_NAME} seems to still be loaded, hoping the best" - exit 0 - fi - - # skip dkms on UEK hosts because it will always fail - if [[ $(uname -r) == *uek* ]]; then - echo "* Skipping dkms install for UEK host" - else - echo "* Running dkms install for ${PACKAGE_NAME}" - if dkms install -m "${PACKAGE_NAME}" -v "${SYSDIG_VERSION}" -k "${KERNEL_RELEASE}"; then - echo "* Trying to load a dkms ${PROBE_NAME}, if present" - - if insmod "/var/lib/dkms/${PACKAGE_NAME}/${SYSDIG_VERSION}/${KERNEL_RELEASE}/${ARCH}/module/${PROBE_NAME}.ko" > /dev/null 2>&1; then - echo "${PROBE_NAME} found and loaded in dkms" - exit 0 - elif insmod "/var/lib/dkms/${PACKAGE_NAME}/${SYSDIG_VERSION}/${KERNEL_RELEASE}/${ARCH}/module/${PROBE_NAME}.ko.xz" > /dev/null 2>&1; then - echo "${PROBE_NAME} found and loaded in dkms (xz)" - exit 0 - else - echo "* Unable to insmod" - fi - else - DKMS_LOG="/var/lib/dkms/${PACKAGE_NAME}/${SYSDIG_VERSION}/build/make.log" - if [ -f "${DKMS_LOG}" ]; then - echo "* Running dkms build failed, dumping ${DKMS_LOG}" - cat "${DKMS_LOG}" - else - echo "* Running dkms build failed, couldn't find ${DKMS_LOG}" - fi - fi + return 1 fi - echo "* Trying to load a system ${PROBE_NAME}, if present" - - if modprobe "${PROBE_NAME}" > /dev/null 2>&1; then - echo "${PROBE_NAME} found and loaded with modprobe" - exit 0 - fi + return 0 +} - echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" - local SYSDIG_PROBE_FILENAME - local URL +# +# Evaluates variables override. +# Returns 1 on success, 0 otherwise. +# +get_variable_override_kernel_probe() { + echo "* Evaluating override of environment variables" if [ ! -z ${SYSDIG_PROBE_OVERRIDE_FULL_URL} ]; then SYSDIG_PROBE_FILENAME=$(basename "${SYSDIG_PROBE_OVERRIDE_FULL_URL}") URL=$(echo "${SYSDIG_PROBE_OVERRIDE_FULL_URL}" | sed s/+/%2B/g) else + # Tries to get the hash of the kernel configuration get_kernel_config_hash + if [ $? -eq 1 ]; then + return 1 + fi + SYSDIG_PROBE_FILENAME="${PROBE_NAME}-${SYSDIG_VERSION}-${ARCH}-${KERNEL_RELEASE}-${HASH}.ko" URL=$(echo "${SYSDIG_PROBE_URL}/${SYSDIG_REPOSITORY}/sysdig-probe-binaries/${SYSDIG_PROBE_FILENAME}" | sed s/+/%2B/g) fi - if [ -f "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" ]; then - echo "Found precompiled module at ~/.sysdig/${SYSDIG_PROBE_FILENAME}, loading module" - insmod "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" - exit $? + return 0 +} + + +# +# Loads a precompiled kernel probe for the current kernel via insmod. +# Returns 0 on success, 1 otherwise. +# +load_precompiled_kernel_probe() { + echo "* Loading module" + insmod_out=$(insmod "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}") + if [ $? -ne 0 ]; then + echo "Cannot insmod, error $insmod_out" + return 1 fi + return 0 +} + +# +# Downloads a precompiled kernel probe for the current kernel. +# Returns 0 on success, 1 otherwise (download failed). +# +download_kernel_probe() { echo "* Trying to download precompiled module from ${URL}" curl_out=$(curl --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" -o "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" "${URL}" 2>&1) if [ "$?" = "0" ]; then - echo "Download succeeded, loading module" - insmod "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" - exit $? + echo " Download succeeded" + return 0 + fi + + echo "Download of ${PROBE_NAME} for version ${SYSDIG_VERSION} failed." + + # "curl: (22) The requested URL returned error: 404 Not Found" - The probe doesn't exist in the repo. + if [[ "$curl_out" =~ "404 Not Found" ]]; then + echo "The probe for this version does not exist in the repo." + # Enriches error message + if [ ! -z "${KERNEL_ERR_MESSAGE}" ]; then + echo "${KERNEL_ERR_MESSAGE}" + else + echo "Consider compiling your own ${PROBE_NAME} and loading it or getting in touch with the Sysdig community." + fi else - if [[ "$curl_out" =~ "404 Not Found" ]]; then - # The curl output throws a "curl: (22) The requested URL returned error: 404 Not Found" - but that is because the probe doesn't exist in the repo. - echo "Download of ${PROBE_NAME} for version ${SYSDIG_VERSION} failed. This is because the probe for this particular version does not exist in the repo." - if [ ! -z "${KERNEL_ERR_MESSAGE}" ]; then - echo "${KERNEL_ERR_MESSAGE}" - else - echo "Consider compiling your own ${PROBE_NAME} and loading it or getting in touch with the sysdig community" - fi + echo "$curl_out" + fi + + return 1 +} + + +# +# Builds and installs the probe kernel module via dkms. +# Returns 0 on success, 1 otherwise. +# +build_kernel_probe() { + echo "* Running dkms install for ${PACKAGE_NAME}" + + if dkms install -m "${PACKAGE_NAME}" -v "${SYSDIG_VERSION}" -k "${KERNEL_RELEASE}"; then + echo " dkms install done" + + echo "* Trying to load the dkms ${PROBE_NAME} via insmod" + if insmod "/var/lib/dkms/${PACKAGE_NAME}/${SYSDIG_VERSION}/${KERNEL_RELEASE}/${ARCH}/module/${PROBE_NAME}.ko" > /dev/null 2>&1; then + echo " ${PROBE_NAME} found and loaded in dkms" + return 0 + elif insmod "/var/lib/dkms/${PACKAGE_NAME}/${SYSDIG_VERSION}/${KERNEL_RELEASE}/${ARCH}/module/${PROBE_NAME}.ko.xz" > /dev/null 2>&1; then + echo " ${PROBE_NAME} found and loaded in dkms (xz)" + return 0 else - echo "$curl_out" + echo " Unable to insmod" + fi + else + DKMS_LOG="/var/lib/dkms/${PACKAGE_NAME}/${SYSDIG_VERSION}/build/make.log" + if [ -f "${DKMS_LOG}" ]; then + echo " Running dkms build failed, dumping ${DKMS_LOG}" + cat "${DKMS_LOG}" + else + echo " Running dkms build failed, couldn't find ${DKMS_LOG}" fi - exit 1 fi + + return 1 } -load_bpf_probe() { - echo "* Mounting debugfs" - if [ ! -d /sys/kernel/debug/tracing ]; then - mount -t debugfs nodev /sys/kernel/debug +# +# Tries to load the appropriate kernel probe. +# Returns 0 on success, 1 otherwise. +# +load_kernel_probe() { + echo "* Loading kernel probe" + + # Required utils + if ! hash lsmod > /dev/null 2>&1; then + echo "This program requires lsmod" + return 1 fi - if [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/etc/os-release" ]; then - . "${SYSDIG_HOST_ROOT}/etc/os-release" + if ! hash modprobe > /dev/null 2>&1; then + echo "This program requires modprobe" + return 1 + fi - if [ "${ID}" == "cos" ]; then - COS=1 - fi + if ! hash rmmod > /dev/null 2>&1; then + echo "This program requires rmmod" + return 1 fi - if [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/etc/VERSION" ]; then - MINIKUBE=1 - MINIKUBE_VERSION="$(cat ${SYSDIG_HOST_ROOT}/etc/VERSION)" + # Removes kernel probe, if cannot uses the loaded one + remove_kernel_probe + if [ $? -eq 1 ]; then + return 0 fi - local BPF_PROBE_FILENAME + local SYSDIG_PROBE_FILENAME local URL + # Evaluates variables override, returns if cannot (cannot find kernel config) + get_variable_override_kernel_probe + if [ $? -eq 1 ]; then + return 1 + fi + + # Builds the probe via dkms; skips UEK hosts, the build will always fail + if [[ $(uname -r) == *uek* ]]; then + echo "* Skipping dkms install for UEK host" + else + build_kernel_probe + if [ $? -eq 0 ]; then + return 0 + fi + fi + + echo "* Trying to load a system ${PROBE_NAME}, if present" + + if modprobe "${PROBE_NAME}" > /dev/null 2>&1; then + echo "${PROBE_NAME} found and loaded with modprobe" + return 0 + fi + + echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" + + # Looks for a precompiled kernel probe locally + echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" + if [ -f "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" ]; then + echo " Found precompiled module at ~/.sysdig/${SYSDIG_PROBE_FILENAME}" + load_precompiled_kernel_probe + return $? + fi + + # Tries to download a precompiled kernel probe + download_kernel_probe + if [ $? -eq 1 ]; then + return 1 + fi + load_precompiled_kernel_probe + return $? +} + + +# +# Makes a symlink to the BPF probe. +# Return 0 on success, 1 otherwise. +# +function make_symlink_bpf_probe() { + echo "* Making symlink to BPF probe" + + if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then + echo " BPF probe not found" + return 1 + fi + + if [ ! -f /proc/sys/net/core/bpf_jit_enable ]; then + echo "**********************************************************" + echo "** BPF doesn't have JIT enabled, performance might be **" + echo "** degraded. Please ensure to run on a kernel with **" + echo "** CONFIG_BPF_JIT enabled and/or use --net=host if **" + echo "** running inside a container. **" + echo "**********************************************************" + fi + + echo " BPF probe located, it's now possible to start Sysdig" + + symlink_out=$(ln -sf "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" "${HOME}/.sysdig/${BPF_PROBE_NAME}.o") + if [ $? -ne 0 ]; then + echo " Cannot ln, error $symlink_out" + return 1 + fi + + return 0 +} + + +# +# Downloads the BPF probe. +# Returns 0 on success, 1 otherwise. +# +download_bpf_probe() { + echo "* Trying to download precompiled BPF probe from ${URL}" + + curl --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" -o "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" "${URL}" + + if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then + echo " Download failed" + return 1 + fi + + echo " Download succeeded" + return 0 +} + + +# +# Evaluates variables override. +# Returns 1 on success, 0 otherwise. +# +get_variable_override_bpf_probe() { + echo "* Evaluating override of environment variables" + if [ ! -z ${SYSDIG_PROBE_OVERRIDE_FULL_URL} ]; then BPF_PROBE_FILENAME=$(basename "${SYSDIG_PROBE_OVERRIDE_FULL_URL}") URL=$(echo "${SYSDIG_PROBE_OVERRIDE_FULL_URL}" | sed s/+/%2B/g) else + # Tries to get the hash of the kernel configuration get_kernel_config_hash + if [ $? -eq 1 ]; then + return 1 + fi + BPF_PROBE_FILENAME="${BPF_PROBE_NAME}-${SYSDIG_VERSION}-${ARCH}-${KERNEL_RELEASE}-${HASH}.o" URL=$(echo "${SYSDIG_PROBE_URL}/${SYSDIG_REPOSITORY}/sysdig-probe-binaries/${BPF_PROBE_FILENAME}" | sed s/+/%2B/g) fi - if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then + return 0 +} + +# +# Builds the BPF probe. +# Returns 0, always. +# +build_bpf_probe() { + local BPF_KERNEL_SOURCES_URL="" + local STRIP_COMPONENTS=1 - local BPF_KERNEL_SOURCES_URL="" - local STRIP_COMPONENTS=1 - - customize_kernel_build() { - if [ -n "${KERNEL_EXTRA_VERSION}" ]; then + customize_kernel_build() { + if [ -n "${KERNEL_EXTRA_VERSION}" ]; then sed -i "s/LOCALVERSION=\"\"/LOCALVERSION=\"${KERNEL_EXTRA_VERSION}\"/" .config - fi - make olddefconfig > /dev/null - make modules_prepare > /dev/null - } + fi + make olddefconfig > /dev/null + make modules_prepare > /dev/null + } - if [ -n "${COS}" ]; then - echo "* COS detected (build ${BUILD_ID}), using cos kernel headers..." + if [ -n "${COS}" ]; then + echo " COS detected (build ${BUILD_ID}), using cos kernel headers..." - BPF_KERNEL_SOURCES_URL="https://storage.googleapis.com/cos-tools/${BUILD_ID}/kernel-headers.tgz" - KERNEL_EXTRA_VERSION="+" - STRIP_COMPONENTS=0 + BPF_KERNEL_SOURCES_URL="https://storage.googleapis.com/cos-tools/${BUILD_ID}/kernel-headers.tgz" + KERNEL_EXTRA_VERSION="+" + STRIP_COMPONENTS=0 - customize_kernel_build() { - pushd usr/src/* > /dev/null + customize_kernel_build() { + pushd usr/src/* > /dev/null - # Note: this overrides the KERNELDIR set while untarring the tarball - export KERNELDIR=`pwd` + # Note: this overrides the KERNELDIR set while untarring the tarball + export KERNELDIR=`pwd` - sed -i '/^#define randomized_struct_fields_start struct {$/d' include/linux/compiler-clang.h - sed -i '/^#define randomized_struct_fields_end };$/d' include/linux/compiler-clang.h + sed -i '/^#define randomized_struct_fields_start struct {$/d' include/linux/compiler-clang.h + sed -i '/^#define randomized_struct_fields_end };$/d' include/linux/compiler-clang.h - popd > /dev/null + popd > /dev/null - # Might need to configure our own sources depending on COS version - cos_ver=${BUILD_ID} - base_ver=11553.0.0 + # Might need to configure our own sources depending on COS version + cos_ver=${BUILD_ID} + base_ver=11553.0.0 - cos_version_greater - greater_ret=$? + cos_version_greater + greater_ret=$? - if [[ greater_ret -eq 1 ]]; then + if [[ greater_ret -eq 1 ]]; then export KBUILD_EXTRA_CPPFLAGS=-DCOS_73_WORKAROUND - fi - } + fi + } + fi + + if [ -n "${MINIKUBE}" ]; then + echo " Minikube detected (${MINIKUBE_VERSION}), using linux kernel sources for minikube kernel" + local kernel_version=$(uname -r) + local -r kernel_version_major=$(echo ${kernel_version} | cut -d. -f1) + local -r kernel_version_minor=$(echo ${kernel_version} | cut -d. -f2) + local -r kernel_version_patch=$(echo ${kernel_version} | cut -d. -f3) + + if [ "${kernel_version_patch}" == "0" ]; then + kernel_version="${kernel_version_major}.${kernel_version_minor}" fi - if [ -n "${MINIKUBE}" ]; then - echo "* Minikube detected (${MINIKUBE_VERSION}), using linux kernel sources for minikube kernel" - local kernel_version=$(uname -r) - local -r kernel_version_major=$(echo ${kernel_version} | cut -d. -f1) - local -r kernel_version_minor=$(echo ${kernel_version} | cut -d. -f2) - local -r kernel_version_patch=$(echo ${kernel_version} | cut -d. -f3) + BPF_KERNEL_SOURCES_URL="http://mirrors.edge.kernel.org/pub/linux/kernel/v${kernel_version_major}.x/linux-${kernel_version}.tar.gz" + fi - if [ "${kernel_version_patch}" == "0" ]; then - kernel_version="${kernel_version_major}.${kernel_version_minor}" - fi + if [ -n "${SYSDIG_BPF_USE_LOCAL_KERNEL_SOURCES}" ]; then + local -r kernel_version_major=$(uname -r | cut -d. -f1) + local -r kernel_version=$(uname -r | cut -d- -f1) + KERNEL_EXTRA_VERSION="-$(uname -r | cut -d- -f2)" - BPF_KERNEL_SOURCES_URL="http://mirrors.edge.kernel.org/pub/linux/kernel/v${kernel_version_major}.x/linux-${kernel_version}.tar.gz" + echo " Using downloaded kernel sources for kernel version ${kernel_version}..." + + BPF_KERNEL_SOURCES_URL="http://mirrors.edge.kernel.org/pub/linux/kernel/v${kernel_version_major}.x/linux-${kernel_version}.tar.gz" + fi + + if [ -n "${BPF_KERNEL_SOURCES_URL}" ]; then + echo " Downloading kernel sources from ${BPF_KERNEL_SOURCES_URL}" + + mkdir -p /tmp/kernel + cd /tmp/kernel + cd `mktemp -d -p /tmp/kernel` + if ! curl -o kernel-sources.tgz --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" "${BPF_KERNEL_SOURCES_URL}"; then + exit 1; fi - if [ -n "${SYSDIG_BPF_USE_LOCAL_KERNEL_SOURCES}" ]; then - local -r kernel_version_major=$(uname -r | cut -d. -f1) - local -r kernel_version=$(uname -r | cut -d- -f1) - KERNEL_EXTRA_VERSION="-$(uname -r | cut -d- -f2)" + echo " Extracting kernel sources" + + mkdir kernel-sources && tar xf kernel-sources.tgz -C kernel-sources --strip-components "${STRIP_COMPONENTS}" - echo "* Using downloaded kernel sources for kernel version ${kernel_version}..." + cd kernel-sources + export KERNELDIR=`pwd` - BPF_KERNEL_SOURCES_URL="http://mirrors.edge.kernel.org/pub/linux/kernel/v${kernel_version_major}.x/linux-${kernel_version}.tar.gz" + if [[ "${KERNEL_CONFIG_PATH}" == *.gz ]]; then + zcat "${KERNEL_CONFIG_PATH}" > .config + else + cat "${KERNEL_CONFIG_PATH}" > .config fi - if [ -n "${BPF_KERNEL_SOURCES_URL}" ]; then - echo "* Downloading ${BPF_KERNEL_SOURCES_URL}" + echo " Configuring kernel" + customize_kernel_build + fi - mkdir -p /tmp/kernel - cd /tmp/kernel - cd `mktemp -d -p /tmp/kernel` - if ! curl -o kernel-sources.tgz --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" "${BPF_KERNEL_SOURCES_URL}"; then - exit 1; - fi + echo " Trying to compile BPF probe ${BPF_PROBE_NAME} (${BPF_PROBE_FILENAME})" - echo "* Extracting kernel sources" + make -C "/usr/src/${PACKAGE_NAME}-${SYSDIG_VERSION}/bpf" > /dev/null - mkdir kernel-sources && tar xf kernel-sources.tgz -C kernel-sources --strip-components "${STRIP_COMPONENTS}" + mkdir -p ~/.sysdig + mv "/usr/src/${PACKAGE_NAME}-${SYSDIG_VERSION}/bpf/probe.o" "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" - cd kernel-sources - export KERNELDIR=`pwd` + if [ -n "${BPF_KERNEL_SOURCES_URL}" ]; then + rm -r /tmp/kernel + fi - if [[ "${KERNEL_CONFIG_PATH}" == *.gz ]]; then - zcat "${KERNEL_CONFIG_PATH}" > .config - else - cat "${KERNEL_CONFIG_PATH}" > .config - fi + return 0 +} - echo "* Configuring kernel" - customize_kernel_build - fi - echo "* Trying to compile BPF probe ${BPF_PROBE_NAME} (${BPF_PROBE_FILENAME})" +# +# Tries to load the appropriate BPF probe. +# Returns 0 on success, a non zero value otherwise. +# +load_bpf_probe() { + echo "* Loading BPF probe" - make -C "/usr/src/${PACKAGE_NAME}-${SYSDIG_VERSION}/bpf" > /dev/null + # Makes checks and set variables + if [ ! -d /sys/kernel/debug/tracing ]; then + echo "* Mounting debugfs" + mount -t debugfs nodev /sys/kernel/debug + fi - mkdir -p ~/.sysdig - mv "/usr/src/${PACKAGE_NAME}-${SYSDIG_VERSION}/bpf/probe.o" "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" + if [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/etc/os-release" ]; then + . "${SYSDIG_HOST_ROOT}/etc/os-release" - if [ -n "${BPF_KERNEL_SOURCES_URL}" ]; then - rm -r /tmp/kernel + if [ "${ID}" == "cos" ]; then + COS=1 fi fi - if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - echo "* Trying to download precompiled BPF probe from ${URL}" - - curl --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" -o "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" "${URL}" + if [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/etc/VERSION" ]; then + MINIKUBE=1 + MINIKUBE_VERSION="$(cat ${SYSDIG_HOST_ROOT}/etc/VERSION)" fi - if [ -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - if [ ! -f /proc/sys/net/core/bpf_jit_enable ]; then - echo "**********************************************************" - echo "** BPF doesn't have JIT enabled, performance might be **" - echo "** degraded. Please ensure to run on a kernel with **" - echo "** CONFIG_BPF_JIT enabled and/or use --net=host if **" - echo "** running inside a container. **" - echo "**********************************************************" - fi + local BPF_PROBE_FILENAME + local URL - echo "* BPF probe located, it's now possible to start sysdig" + # Evaluates variables override, returns if cannot (cannot find kernel config) + get_variable_override_bpf_probe + if [ $? -eq 1 ]; then + return 1 + fi - ln -sf "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" "${HOME}/.sysdig/${BPF_PROBE_NAME}.o" - exit $? + # Builds the bpf probe + echo "* Building BPF probe" + if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then + build_bpf_probe else - echo "* Failure to find a BPF probe" - exit 1 + echo " Will not build, the BPF probe ${BPF_PROBE_FILENAME} already exists at ${HOME}/.sysdig/" fi + + # Downloads the bpf probe + if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then + download_bpf_probe + if [ $? -eq 1 ]; then + return 1; + fi + else + echo " Will not download, the BPF probe ${BPF_PROBE_FILENAME} already exists at ${HOME}/.sysdig/" + fi + + make_symlink_bpf_probe + return $? } + +################### +### Entry point ### +################### + +# Inits variables and makes required checks ARCH=$(uname -m) KERNEL_RELEASE=$(uname -r) SCRIPT_NAME=$(basename "${0}") SYSDIG_PROBE_URL=${SYSDIG_PROBE_URL:-https://download.sysdig.com} + if [ -n "$SYSDIG_PROBE_INSECURE_DOWNLOAD" ] then SYSDIG_PROBE_CURL_OPTIONS=-fsSk else SYSDIG_PROBE_CURL_OPTIONS=-fsS fi + if [ -n "$SYSDIG_PROBE_BASIC_AUTH" ] then SYSDIG_PROBE_CURL_OPTIONS="-u ${SYSDIG_PROBE_BASIC_AUTH_USER} ${SYSDIG_PROBE_CURL_OPTIONS}" @@ -463,16 +665,16 @@ if [ -z "${SYSDIG_REPOSITORY}" ]; then fi if [ "${SCRIPT_NAME}" = "sysdig-probe-loader" ]; then - if [ -z "$SYSDIG_VERSION" ]; then - SYSDIG_VERSION=$(sysdig --version | cut -d' ' -f3) + if [ -z "$SYSDIG_VERSION" ]; then + SYSDIG_VERSION=$(sysdig --version | cut -d' ' -f3) fi PROBE_NAME="sysdig-probe" BPF_PROBE_NAME="sysdig-probe-bpf" PACKAGE_NAME="sysdig" elif [ "${SCRIPT_NAME}" = "sysdigcloud-probe-loader" ]; then EXEPATH=$(dirname "$(readlink -f "${0}")") - if [ -z "$SYSDIG_VERSION" ]; then - SYSDIG_VERSION=$("${EXEPATH}"/dragent --version) + if [ -z "$SYSDIG_VERSION" ]; then + SYSDIG_VERSION=$("${EXEPATH}"/dragent --version) fi PROBE_NAME="sysdigcloud-probe" BPF_PROBE_NAME="sysdigcloud-probe-bpf" @@ -492,8 +694,17 @@ if ! hash curl > /dev/null 2>&1; then exit 1 fi +# Loads the probe if [ -v SYSDIG_BPF_PROBE ] || [ "${1}" = "bpf" ]; then load_bpf_probe else load_kernel_probe fi + +# Echoes the result +if [ $? -eq 1 ]; then + echo "Cannot load probe" + exit 1 +fi +echo "Probe loaded" +exit 0 \ No newline at end of file From 2c86381e51c79c44a882bc7680688cedf7b6f135 Mon Sep 17 00:00:00 2001 From: "francesco.racciatti" Date: Wed, 2 Feb 2022 14:54:26 +0100 Subject: [PATCH 045/259] feat: add option to enforce probe downloading When defining the environment variable SYSDIG_FORCE_DOWNLOAD_PROBE, the probe loader skips the building phase and tries to directly download the probe. --- sysdig-probe-loader | 63 ++++++++++++++++++++++++++++----------------- 1 file changed, 39 insertions(+), 24 deletions(-) diff --git a/sysdig-probe-loader b/sysdig-probe-loader index 526b9e4..aab3f4f 100755 --- a/sysdig-probe-loader +++ b/sysdig-probe-loader @@ -33,6 +33,11 @@ # 3) Fetch the appropriate sysdig-probe (kernel module or eBPF) for the # currently running kernel, from download.sysdig.com # +# Workflow variations: +# A) If the environment variable SYSDIG_FORCE_DOWNLOAD_PROBE is defined, +# as the first and ONLY step, the script tries to download the appropriate sysdig-probe (kernel module or eBPF). +# The script won't try to build the probe. +# # # --- ENVIRONMENT VARIABLES --- # @@ -348,31 +353,36 @@ load_kernel_probe() { return 1 fi - # Builds the probe via dkms; skips UEK hosts, the build will always fail - if [[ $(uname -r) == *uek* ]]; then - echo "* Skipping dkms install for UEK host" + # Forces probe download, skips build + if [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ]; then + echo "* Skipping build, enforce downloading of kernel probe" else - build_kernel_probe - if [ $? -eq 0 ]; then - return 0 + # Builds the probe via dkms; skips UEK hosts, the build will always fail + if [[ $(uname -r) == *uek* ]]; then + echo "* Skipping dkms install for UEK host" + else + build_kernel_probe + if [ $? -eq 0 ]; then + return 0 + fi fi - fi - echo "* Trying to load a system ${PROBE_NAME}, if present" + echo "* Trying to load a system ${PROBE_NAME}, if present" - if modprobe "${PROBE_NAME}" > /dev/null 2>&1; then - echo "${PROBE_NAME} found and loaded with modprobe" - return 0 - fi + if modprobe "${PROBE_NAME}" > /dev/null 2>&1; then + echo "${PROBE_NAME} found and loaded with modprobe" + return 0 + fi - echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" + echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" - # Looks for a precompiled kernel probe locally - echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" - if [ -f "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" ]; then - echo " Found precompiled module at ~/.sysdig/${SYSDIG_PROBE_FILENAME}" - load_precompiled_kernel_probe - return $? + # Looks for a precompiled kernel probe locally + echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" + if [ -f "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" ]; then + echo " Found precompiled module at ~/.sysdig/${SYSDIG_PROBE_FILENAME}" + load_precompiled_kernel_probe + return $? + fi fi # Tries to download a precompiled kernel probe @@ -609,12 +619,17 @@ load_bpf_probe() { return 1 fi - # Builds the bpf probe - echo "* Building BPF probe" - if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - build_bpf_probe + # Forces probe download, skips build + if [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ]; then + echo "* Skipping build, enforce downloading of BPF probe" else - echo " Will not build, the BPF probe ${BPF_PROBE_FILENAME} already exists at ${HOME}/.sysdig/" + # Builds the bpf probe + echo "* Building BPF probe" + if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then + build_bpf_probe + else + echo " Will not build, the BPF probe ${BPF_PROBE_FILENAME} already exists at ${HOME}/.sysdig/" + fi fi # Downloads the bpf probe From 4cf604fbba92a97ef6f4b276afcf7b9e125eecd6 Mon Sep 17 00:00:00 2001 From: "francesco.racciatti" Date: Wed, 2 Feb 2022 17:40:30 +0100 Subject: [PATCH 046/259] feat: add option to enforce probe building When defining the environment variable SYSDIG_FORCE_BUILD_PROBE, the probe loader avoids downloading the probe and tries to directly build it. --- sysdig-probe-loader | 34 +++++++++++++++++++++++++++++----- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/sysdig-probe-loader b/sysdig-probe-loader index aab3f4f..9f3440f 100755 --- a/sysdig-probe-loader +++ b/sysdig-probe-loader @@ -35,9 +35,15 @@ # # Workflow variations: # A) If the environment variable SYSDIG_FORCE_DOWNLOAD_PROBE is defined, -# as the first and ONLY step, the script tries to download the appropriate sysdig-probe (kernel module or eBPF). +# the script ONLY tries to download the appropriate sysdig-probe (kernel module or eBPF). # The script won't try to build the probe. +# B) If the environment variable SYSDIG_FORCE_BUILD_PROBE is defined, +# the script ONLY tries to build the appropriate sysdig-probe (kernel module or eBPF). +# The script won't try to download the probe. # +# Note: +# SYSDIG_FORCE_DOWNLOAD_PROBE and SYSDIG_FORCE_BUILD_PROBE cannot be simultaneously defined. If so, the +# probe loader raises an error. # # --- ENVIRONMENT VARIABLES --- # @@ -355,7 +361,7 @@ load_kernel_probe() { # Forces probe download, skips build if [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ]; then - echo "* Skipping build, enforce downloading of kernel probe" + echo "* Skipping build, FORCE_DOWNLOAD_PROBE is enabled" else # Builds the probe via dkms; skips UEK hosts, the build will always fail if [[ $(uname -r) == *uek* ]]; then @@ -385,7 +391,12 @@ load_kernel_probe() { fi fi - # Tries to download a precompiled kernel probe + # Skip download, the probe build has failed + if [ -v SYSDIG_FORCE_BUILD_PROBE ]; then + echo "* Skipping download, FORCE_BUILD_PROBE is enabled" + return 1; + fi; + download_kernel_probe if [ $? -eq 1 ]; then return 1 @@ -621,7 +632,7 @@ load_bpf_probe() { # Forces probe download, skips build if [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ]; then - echo "* Skipping build, enforce downloading of BPF probe" + echo "* Skipping build, FORCE_DOWNLOAD_PROBE is enabled" else # Builds the bpf probe echo "* Building BPF probe" @@ -632,6 +643,13 @@ load_bpf_probe() { fi fi + # Skip download + if [ -v SYSDIG_FORCE_BUILD_PROBE ]; then + echo "* Skipping download, FORCE_BUILD_PROBE is enabled" + make_symlink_bpf_probe + return $?; + fi; + # Downloads the bpf probe if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then download_bpf_probe @@ -709,6 +727,12 @@ if ! hash curl > /dev/null 2>&1; then exit 1 fi +if [ -v SYSDIG_FORCE_BUILD_PROBE ] && [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ] ; then + echo "Cannot define SYSDIG_FORCE_BUILD_PROBE and SYSDIG_FORCE_DOWNLOAD_PROBE simultaneously." + echo "Cannot load the probe" + exit 1 +fi + # Loads the probe if [ -v SYSDIG_BPF_PROBE ] || [ "${1}" = "bpf" ]; then load_bpf_probe @@ -718,7 +742,7 @@ fi # Echoes the result if [ $? -eq 1 ]; then - echo "Cannot load probe" + echo "Cannot load the probe" exit 1 fi echo "Probe loaded" From c665cc9e3200e33972d1282ed4fd9db9edbfa46e Mon Sep 17 00:00:00 2001 From: "francesco.racciatti" Date: Wed, 2 Feb 2022 17:50:42 +0100 Subject: [PATCH 047/259] feat: prevent installing leftover probe when using force options --- sysdig-probe-loader | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sysdig-probe-loader b/sysdig-probe-loader index 9f3440f..134eaa9 100755 --- a/sysdig-probe-loader +++ b/sysdig-probe-loader @@ -344,7 +344,7 @@ load_kernel_probe() { return 1 fi - # Removes kernel probe, if cannot uses the loaded one + # Removes leftover kernel probe remove_kernel_probe if [ $? -eq 1 ]; then return 0 @@ -650,6 +650,16 @@ load_bpf_probe() { return $?; fi; + # Prevents installing a leftover probe + if [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ] && [ -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then + rm ${HOME}/.sysdig/${BPF_PROBE_FILENAME} + if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then + echo "* Removed existing bpf probe ${HOME}/.sysdig/${BPF_PROBE_FILENAME}" + else + echo "* Cannot remove existing bpf probe ${HOME}/.sysdig/${BPF_PROBE_FILENAME}" + fi + fi + # Downloads the bpf probe if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then download_bpf_probe From 8e8fe53025d919c8909b9445897439d6b04ee231 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Mon, 18 Oct 2021 17:36:57 +0200 Subject: [PATCH 048/259] Remove Fedora Atomic support It's been long dead now --- README.md | 1 - build-probe-binaries | 25 ------------------------- 2 files changed, 26 deletions(-) diff --git a/README.md b/README.md index 09c79b8..c200186 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,6 @@ Distributions supported by the kernel crawler: - CoreOS - Debian - Fedora - - Fedora-Atomic - Ubuntu Please note that you do *not* need to extract or install the kernel packages on the build host. diff --git a/build-probe-binaries b/build-probe-binaries index 0412741..a1b1265 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -77,7 +77,6 @@ Options: CoreOS Debian Fedora - Fedora-Atomic OracleOL6 OracleOL7 OracleRHCK @@ -808,25 +807,6 @@ function build_group_fedora { rhel_build $DISTRO/*.rpm } -function build_group_fedora_atomic { - # - # Fedora Atomic build - # - - DISTRO=fedora-atomic - BUILDER_DISTRO=centos - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading Fedora Atomic kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/kernel-crawler.py Fedora-Atomic | xargs -n 1 -P $DOWNLOAD_CONCURRENCY wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - - echo Building Fedora Atomic - rhel_build $DISTRO/*.rpm -} - function build_group_coreos { # # CoreOS build @@ -992,7 +972,6 @@ function build_everything { build_group_ubuntu build_group_centos build_group_fedora - build_group_fedora_atomic build_group_coreos build_group_debian build_group_oracle_rhck @@ -1019,10 +998,6 @@ case "$KERNEL_TYPE" in checkout_sysdig build_group_fedora ;; - Fedora-Atomic) - checkout_sysdig - build_group_fedora_atomic - ;; CoreOS) checkout_sysdig build_group_coreos From 08f2038407b1f3e01676fa3fc3cfece893f401e3 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Mon, 18 Oct 2021 17:38:34 +0200 Subject: [PATCH 049/259] Remove CoreOS support It will eventually come back as FlatCar but CoreOS itself is dead. --- README.md | 1 - build-probe-binaries | 114 ------------------------------------------- 2 files changed, 115 deletions(-) diff --git a/README.md b/README.md index c200186..ea45eca 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,6 @@ Distributions supported by the kernel crawler: - AmazonLinux - AmazonLinux2 - CentOS - - CoreOS - Debian - Fedora - Ubuntu diff --git a/build-probe-binaries b/build-probe-binaries index a1b1265..d010aa3 100755 --- a/build-probe-binaries +++ b/build-probe-binaries @@ -66,15 +66,11 @@ Options: The number of parallel kernel package downloads. Set to 0 to disable downloads completely. Defaults to the number of CPU cores. - Note: CoreOS images are downloaded serially, regardless of the value - of this setting (0 is still honored). - -k KERNEL_TYPE Build only for specified kernel types. The supported types are: AmazonLinux AmazonLinux2 CentOS - CoreOS Debian Fedora OracleOL6 @@ -90,17 +86,12 @@ Options: and provide your own DEBs/RPMs for the Custom* kernel types: $0 (...) -k CustomCentOS path/*.rpm - $0 (...) -k CustomCoreOS path/*.bin.bz2 $0 (...) -k CustomDebian path/*.deb $0 (...) -k CustomUbuntu path/*.deb The CustomCentOS type should also work for other RPM-based distributions, like Fedora, RHEL or AmazonLinux - For CoreOS, the downloaded images must be named - coreos_developer_container.VERSION.bin.bz2, where VERSION is - the CoreOS release (e.g. 2345.0.0). - -K KERNEL_BASEDIR Pass KERNEL_BASEDIR as the directory containing the kernels to the builder containers. This is probably only useful when running this script in a container @@ -137,10 +128,6 @@ Examples: - build the probe for a custom set of Ubuntu kernels $0 -v 0.26.5 -k CustomUbuntu pool/l/linux-{image,modules,headers}*.deb - - - build the probe for a specific CoreOS release - wget http://alpha.release.core-os.net/amd64-usr/2345.0.0/coreos_developer_container.bin.bz2 -O coreos_developer_container.2345.0.0.bin.bz2 - $0 -v 0.26.5 -k CustomCoreOS coreos_developer_container.2345.0.0.bin.bz2 EOF exit 1 } @@ -487,73 +474,6 @@ function build_probe { rm -f $LOG } -function coreos_build { - BUILDER_DISTRO=${BUILDER_DISTRO:-centos} - for IMG in "$@" - do - VERSION=${IMG##*/coreos_developer_container.} - VERSION=${VERSION%.bin.bz2} - VERSION_DIR=build/$DISTRO/$VERSION - if [ ! -e $VERSION_DIR/config_orig ] - then - mkdir -p $VERSION_DIR - echo "Unpacking $(basename $IMG)" - FULL_IMG=$(readlink -f "$IMG") - FULL_VERSION_DIR=$(readlink -f "$VERSION_DIR") - run_toolkit -v "$FULL_IMG:$FULL_IMG:ro" -v "$FULL_VERSION_DIR:$FULL_VERSION_DIR" -- coreos "$FULL_IMG" "$FULL_VERSION_DIR" - - KERNEL_RELEASE=$(cd $VERSION_DIR && ls config-* | sed s/config-//) - export COREOS_BUILD=${VERSION%%.*} - if [ $COREOS_BUILD -gt 890 ] - then - # https://groups.google.com/forum/#!topic/coreos-dev/Z8Q7sIy6YwE - sed -i 's/CONFIG_INITRAMFS_SOURCE=""/CONFIG_INITRAMFS_SOURCE="bootengine.cpio"\nCONFIG_INITRAMFS_ROOT_UID=0\nCONFIG_INITRAMFS_ROOT_GID=0/' $VERSION_DIR/config-* - sed -i 'N;s/\(CONFIG_RD_LZ4=.\)\n\(CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=\)/\1\nCONFIG_INITRAMFS_COMPRESSION=".gz"\n\2/' $VERSION_DIR/config-* - else - mkdir -p build/$DISTRO/vanilla - VANILLA=$(echo $KERNEL_RELEASE | sed s/[-+].*// | sed s/\.0$//) - MAJOR=$(echo $KERNEL_RELEASE | head -c1) - EXTRAVERSION=$(echo $KERNEL_RELEASE | sed s/[^-+]*//) - TGZ_NAME=linux-${VANILLA}.tar.xz - DIR_NAME=linux-${VANILLA} - KERNEL_URL=https://www.kernel.org/pub/linux/kernel/v${MAJOR}.x/$TGZ_NAME - wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} $KERNEL_URL -O build/$DISTRO/vanilla/$TGZ_NAME - if [ ! -e build/$DISTRO/vanilla/$DIR_NAME ] - then - (cd build/$DISTRO/vanilla && tar xf $TGZ_NAME) - fi - fi - fi - - KERNEL_RELEASE=$(cd $VERSION_DIR && ls config-* | sed s/config-//) - COREOS_BUILD=${VERSION%%.*} - HASH_ORIG=$(md5sum $VERSION_DIR/config_orig | cut -d' ' -f1) - HASH=$(md5sum $VERSION_DIR/config-* | cut -d' ' -f1) - echo "Building probe for CoreOS kernel $KERNEL_RELEASE (CoreOS build $COREOS_BUILD)" - if [ -f $BASEDIR/output/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko ] && - [ -f $BASEDIR/output/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH_ORIG.ko ]; then - echo "Skipping $PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko (already built)" - continue - fi - - if [ $COREOS_BUILD -gt 890 ] - then - unset DOCKER_BUILDER - export KERNELDIR=$BASEDIR/$VERSION_DIR/modules/$KERNEL_RELEASE/build - else - VANILLA=$(echo $KERNEL_RELEASE | sed s/[-+].*// | sed s/\.0$//) - EXTRAVERSION=$(echo $KERNEL_RELEASE | sed s/[^-+]*//) - export KERNELDIR=$BASEDIR/build/$DISTRO/vanilla/linux-$VANILLA - make distclean -C $KERNELDIR - sed -i "s/^EXTRAVERSION.*/EXTRAVERSION = $EXTRAVERSION/" $KERNELDIR/Makefile - cp $VERSION_DIR/config_orig $KERNELDIR/.config - DOCKER_BUILDER=coreos-old - fi - build_probe - - done -} - function ubuntu_build { BUILDER_DISTRO=${BUILDER_DISTRO:-ubuntu} for DEB in "$@" @@ -807,30 +727,6 @@ function build_group_fedora { rhel_build $DISTRO/*.rpm } -function build_group_coreos { - # - # CoreOS build - # - - DISTRO=coreos - BUILDER_DISTRO=centos - - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading CoreOS kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/kernel-crawler.py CoreOS | while read URL - do - COREOS_VERSION=$(curl -fsSL ${URL}version.txt | grep -Po '(?<=^COREOS_VERSION=).*') - wget -O $DISTRO/coreos_developer_container.$COREOS_VERSION.bin.bz2 -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} ${URL}coreos_developer_container.bin.bz2 - done - fi - - echo Building CoreOS - coreos_build $DISTRO/*.bin.bz2 -} - function build_group_debian { # # Debian build @@ -972,7 +868,6 @@ function build_everything { build_group_ubuntu build_group_centos build_group_fedora - build_group_coreos build_group_debian build_group_oracle_rhck build_group_oracle_ol6_uek @@ -998,10 +893,6 @@ case "$KERNEL_TYPE" in checkout_sysdig build_group_fedora ;; - CoreOS) - checkout_sysdig - build_group_coreos - ;; Debian) checkout_sysdig build_group_debian @@ -1035,11 +926,6 @@ case "$KERNEL_TYPE" in DISTRO=custom-centos rhel_build "$@" ;; - CustomCoreOS) - checkout_sysdig - DISTRO=custom-coreos - coreos_build "$@" - ;; CustomDebian) checkout_sysdig DISTRO=custom-debian From 6001aafb3119fc200c50b139521e42de97d8d9fc Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Mon, 18 Oct 2021 19:14:12 +0200 Subject: [PATCH 050/259] Rewrite the probe builder in Python This requires either a `pip install` from the probe builder directory or (more likely) a Docker container. The CLI is slightly changed: to actually build the probes, you need to add the `build` keyword before the command line arguments. To run the kernel crawler, run the builder with `crawl `. The Docker entrypoint is adapted and usage in a container should not require any changes. --- Dockerfile | 2 + README.md | 5 +- build-probe-binaries | 961 ------------------- kernel-crawler.py | 461 --------- main-builder-entrypoint.sh | 59 +- probe_builder/__init__.py | 142 +++ probe_builder/artifactory_download.py | 70 ++ probe_builder/builder/__init__.py | 0 probe_builder/builder/builder_image.py | 65 ++ probe_builder/builder/choose_builder.py | 136 +++ probe_builder/builder/distro/__init__.py | 19 + probe_builder/builder/distro/base_builder.py | 114 +++ probe_builder/builder/distro/centos.py | 49 + probe_builder/builder/distro/debian.py | 115 +++ probe_builder/builder/distro/ubuntu.py | 103 ++ probe_builder/builder/toolkit.py | 80 ++ probe_builder/context.py | 40 + probe_builder/disable_ipv6.py | 11 + probe_builder/docker.py | 85 ++ probe_builder/git.py | 9 + probe_builder/kernel_crawler/__init__.py | 28 + probe_builder/kernel_crawler/amazonlinux.py | 58 ++ probe_builder/kernel_crawler/centos.py | 27 + probe_builder/kernel_crawler/deb.py | 250 +++++ probe_builder/kernel_crawler/debian.py | 36 + probe_builder/kernel_crawler/download.py | 105 ++ probe_builder/kernel_crawler/fedora.py | 19 + probe_builder/kernel_crawler/oracle.py | 55 ++ probe_builder/kernel_crawler/photon_os.py | 27 + probe_builder/kernel_crawler/repo.py | 45 + probe_builder/kernel_crawler/rpm.py | 112 +++ probe_builder/kernel_crawler/ubuntu.py | 11 + probe_builder/py23.py | 12 + probe_builder/spawn.py | 46 + probe_builder/version.py | 27 + setup.py | 23 + 36 files changed, 1966 insertions(+), 1441 deletions(-) delete mode 100755 build-probe-binaries delete mode 100755 kernel-crawler.py create mode 100644 probe_builder/__init__.py create mode 100644 probe_builder/artifactory_download.py create mode 100644 probe_builder/builder/__init__.py create mode 100644 probe_builder/builder/builder_image.py create mode 100644 probe_builder/builder/choose_builder.py create mode 100644 probe_builder/builder/distro/__init__.py create mode 100644 probe_builder/builder/distro/base_builder.py create mode 100644 probe_builder/builder/distro/centos.py create mode 100644 probe_builder/builder/distro/debian.py create mode 100644 probe_builder/builder/distro/ubuntu.py create mode 100644 probe_builder/builder/toolkit.py create mode 100644 probe_builder/context.py create mode 100644 probe_builder/disable_ipv6.py create mode 100644 probe_builder/docker.py create mode 100644 probe_builder/git.py create mode 100644 probe_builder/kernel_crawler/__init__.py create mode 100644 probe_builder/kernel_crawler/amazonlinux.py create mode 100644 probe_builder/kernel_crawler/centos.py create mode 100644 probe_builder/kernel_crawler/deb.py create mode 100644 probe_builder/kernel_crawler/debian.py create mode 100644 probe_builder/kernel_crawler/download.py create mode 100644 probe_builder/kernel_crawler/fedora.py create mode 100644 probe_builder/kernel_crawler/oracle.py create mode 100644 probe_builder/kernel_crawler/photon_os.py create mode 100644 probe_builder/kernel_crawler/repo.py create mode 100644 probe_builder/kernel_crawler/rpm.py create mode 100644 probe_builder/kernel_crawler/ubuntu.py create mode 100644 probe_builder/py23.py create mode 100644 probe_builder/spawn.py create mode 100644 probe_builder/version.py create mode 100644 setup.py diff --git a/Dockerfile b/Dockerfile index 5a83b1c..7c7d239 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ RUN apk add \ jq \ multipath-tools \ python3 \ + py3-pip \ py3-lxml \ sed \ wget \ @@ -20,4 +21,5 @@ RUN ln -s /usr/bin/python3 /usr/bin/python ADD . /builder WORKDIR /builder +RUN /usr/bin/pip install -e . ENTRYPOINT [ "/builder/main-builder-entrypoint.sh" ] diff --git a/README.md b/README.md index ea45eca..ead10a3 100644 --- a/README.md +++ b/README.md @@ -27,14 +27,14 @@ For Debian-like OSes (Debian, Ubuntu, etc.), the required packages are usually: But please note that the set of required packages varies across distributions and versions, so providing an exhaustive list is not possible here. -You can use the `kernel-crawler.py` script to determine the set of packages for a particular kernel. +You can use the crawler functionality to determine the set of packages for a particular kernel. To use it, pass a distribution name (one of the following) and, optionally, the specific kernel version or its subset. The output is a list of URLs directly to the kernel packages. For example, to download all the packages needed to build the CentOS 4.18.0-305.10.2.el8\_4 kernel, you can run: - # .../path/to/kernel-crawler.py CentOS 4.18.0-305.10.2.el8_4 | xargs wget -c + # docker run (...) -C CentOS 4.18.0-305.10.2.el8_4 | grep '^ ' | xargs wget -c (...) # ls -la total 61556 @@ -53,6 +53,7 @@ Distributions supported by the kernel crawler: - CentOS - Debian - Fedora + - PhotonOS - Ubuntu Please note that you do *not* need to extract or install the kernel packages on the build host. diff --git a/build-probe-binaries b/build-probe-binaries deleted file mode 100755 index d010aa3..0000000 --- a/build-probe-binaries +++ /dev/null @@ -1,961 +0,0 @@ -#!/bin/bash -# -# Copyright (C) 2013-2020 Sysdig, Inc. -# -# This file is part of sysdig . -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -# -# This script builds a precompiled version of sysdig-probe for a bunch of kernels -# The precompiled binary is then obtained at runtime by sysdig-probe-loader -# Ideally, the community should expand this stuff with better support -# -set -xeuo pipefail - -ARTIFACTORY_SERVER= -ARTIFACTORY_KEY= -BUILDER_IMAGE_PREFIX= -DOWNLOAD_CONCURRENCY=$(nproc) -KERNEL_TYPE= -PROBE_NAME=sysdig-probe -RETRIES=10 -DOWNLOAD_TIMEOUT=300 -PROBE_VERSION= -RUNNING_IN_DOCKER= -FAILED= -FAIL_LOG=$(mktemp /tmp/fail.log.XXXXXX) - -usage() { - cat >&2 <sysdig-probe-builder:, where: - - is the value of this option, - - is chosen for every build. See the Dockerfiles shipped - with this script. - - -B BASEDIR - Pass BASEDIR as the base directory to the builder containers - This is probably only useful when running this script in a container - - -d DOWNLOAD_CONCURRENCY - The number of parallel kernel package downloads. Set to 0 to disable - downloads completely. Defaults to the number of CPU cores. - - -k KERNEL_TYPE - Build only for specified kernel types. The supported types are: - AmazonLinux - AmazonLinux2 - CentOS - Debian - Fedora - OracleOL6 - OracleOL7 - OracleRHCK - RHEL [requires Artifactory authentication] - Ubuntu - - If not specified, builds all the above types (RHEL kernels will be - skipped if no Artifactory credentials are provided). - - Additionally, you can skip the downloading of distribution kernels - and provide your own DEBs/RPMs for the Custom* kernel types: - - $0 (...) -k CustomCentOS path/*.rpm - $0 (...) -k CustomDebian path/*.deb - $0 (...) -k CustomUbuntu path/*.deb - - The CustomCentOS type should also work for other RPM-based distributions, - like Fedora, RHEL or AmazonLinux - - -K KERNEL_BASEDIR - Pass KERNEL_BASEDIR as the directory containing the kernels to the builder - containers. This is probably only useful when running this script in a container - - -p PROBE_NAME - The resulting module name (e.g. sysdig-probe for OSS sysdig). - - -r RETRIES - Number of retries for kernel package downloads. - - -s SYSDIG_DIR - The directory containing an existing Sysdig checkout in the required - version. Specify this option to prevent this script from cloning - the Sysdig repository. - - Note: you still need to pass -v with the right version, otherwise - the version number and the actual code will diverge, leading to - unpredictable behavior, including kernel crashes. - - -t DOWNLOAD_TIMEOUT - Timeout for kernel package downloads, in seconds. - - -v VERSION - The resulting module version. If not disabled (see -s), this script - will clone the Sysdig repository again and check out the right - version. - -Examples: - - build the probe for all distro kernels we know of: - $0 -v 0.26.5 - - - build the probe for all CentOS kernels - $0 -v 0.26.5 -k CentOS - - - build the probe for a custom set of Ubuntu kernels - $0 -v 0.26.5 -k CustomUbuntu pool/l/linux-{image,modules,headers}*.deb -EOF - exit 1 -} - -BASEDIR=$(pwd) -DOCKER_BASEDIR=$BASEDIR -KERNEL_BASEDIR=$BASEDIR -while getopts ":a:A:b:B:d:k:K:p:r:s:t:v:" opt -do - case "$opt" in - a) ARTIFACTORY_SERVER=$OPTARG;; - A) ARTIFACTORY_KEY=$OPTARG;; - b) BUILDER_IMAGE_PREFIX=$OPTARG;; - B) DOCKER_BASEDIR=$OPTARG - RUNNING_IN_DOCKER=1;; - d) DOWNLOAD_CONCURRENCY=$OPTARG;; - k) KERNEL_TYPE=$OPTARG;; - K) KERNEL_BASEDIR=$OPTARG - RUNNING_IN_DOCKER=1;; - p) PROBE_NAME=$OPTARG;; - r) RETRIES=$OPTARG;; - s) SYSDIG_DIR=$OPTARG;; - t) DOWNLOAD_TIMEOUT=$OPTARG;; - v) PROBE_VERSION=$OPTARG;; - \?) - echo "Invalid option $OPTARG" >&2 - usage - ;; - :) - echo "Option $OPTARG requires an argument" >&2 - usage - ;; - esac -done - -shift $((OPTIND - 1)) - -if [ -z "$PROBE_VERSION" ] -then - echo "-v VERSION is mandatory" >&2 - usage -fi - -if [ -n "${SYSDIG_DIR:-}" ] -then - # assume sysdig in the right version is already checked out in the directory - HAVE_SYSDIG_CHECKOUT=1 -else - SYSDIG_DIR=sysdig - HAVE_SYSDIG_CHECKOUT= -fi - -if [[ "$SYSDIG_DIR" != "/"* ]] -then - SYSDIG_DIR=$(readlink -f $SYSDIG_DIR) -fi -ARCH=$(uname -m) -BUILDER_SOURCE=$(dirname $(readlink -f $0)) - -if [ ! -d $BASEDIR/output ]; then - mkdir $BASEDIR/output -fi - -PROBE_DEVICE_NAME=$(echo $PROBE_NAME | cut -f1 -d-) - -if [ $PROBE_NAME = "sysdigcloud-probe" ]; then - SYSDIG_TAG="agent/${PROBE_VERSION}" -elif [ $PROBE_NAME = "sysdig-probe" ]; then - SYSDIG_TAG="${PROBE_VERSION}" -else - SYSDIG_TAG="${PROBE_DEVICE_NAME}/${PROBE_VERSION}" -fi - -function checkout_sysdig { - if [ -z "$HAVE_SYSDIG_CHECKOUT" ] - then - rm -rf $SYSDIG_DIR - mkdir -p $SYSDIG_DIR - git clone git@github.com:draios/sysdig.git $SYSDIG_DIR - (cd $SYSDIG_DIR && git checkout $SYSDIG_TAG) - fi - HAVE_SYSDIG_CHECKOUT=1 -} - -function build_toolkit { - if [ -z "${HAVE_BUILDER_TOOLKIT:-}" ] - then - IMAGE_NAME="${BUILDER_IMAGE_PREFIX:-}sysdig-probe-builder:toolkit" - docker build -t "$IMAGE_NAME" -f $BUILDER_SOURCE/Dockerfile.toolkit $BUILDER_SOURCE - HAVE_BUILDER_TOOLKIT=1 - fi -} - -function run_toolkit { - if [ -z "$RUNNING_IN_DOCKER" ] - then - build_toolkit - fi - declare -a DOCKER_OPTS - declare -a TOOLKIT_OPTS - - IN_TOOLKIT_OPTS= - for i in "$@" - do - if [ -z "$IN_TOOLKIT_OPTS" ] - then - if [ "$i" == "--" ] - then - IN_TOOLKIT_OPTS=1 - else - DOCKER_OPTS+=("$i") - fi - else - TOOLKIT_OPTS+=("$i") - fi - done - - if [ -z "$RUNNING_IN_DOCKER" ] - then - # running on the host, use toolkit container - docker run --rm --privileged ${DOCKER_OPTS[@]} "${BUILDER_IMAGE_PREFIX:-}sysdig-probe-builder:toolkit" ${TOOLKIT_OPTS[@]} - else - # already in a container, call the toolkit directly - /builder/toolkit-entrypoint.sh ${TOOLKIT_OPTS[@]} - fi -} - -declare -A builders -function build_probe_impl { - PROBE_ROOT=${PROBE_ROOT:-/build/probe} - if [ -n "${DOCKER_BUILDER:-}" ] - then - DOCKERFILE=$BUILDER_SOURCE/Dockerfile.$DOCKER_BUILDER - DOCKERFILE_TAG=$DOCKER_BUILDER - - echo "Forced use of builder $DOCKERFILE_TAG" - elif [ -e $KERNELDIR/include/generated/autoconf.h ] - then - # Try to find a distro-specific builder based on the version - # embedded in the header of autoconf.h - # /* - # * - # * Automatically generated file; DO NOT EDIT. - # * Linux/x86_64 5.15.5-100.fc34.x86_64 Kernel Configuration - # * - # */ - DISTRO_RELEASE=$(grep -Po '(?<=\.)fc[0-9]+(?=\..*Kernel Configuration$)' $KERNELDIR/include/generated/autoconf.h) - DOCKERFILE=$BUILDER_SOURCE/Dockerfile.$DISTRO_RELEASE - DOCKERFILE_TAG=${DOCKERFILE#$BUILDER_SOURCE/Dockerfile.} - - if [ ! -e "$DOCKERFILE" ] - then - echo "Could not find distro-specific builder for $DISTRO_RELEASE, falling back to gcc version selection" - DOCKERFILE= - fi - fi - - if [ -n "${BUILDER_DISTRO:-}" ] && [ -z "${DOCKERFILE:-}" ] - then - # Try to find the gcc version used to build this particular kernel - # Check CONFIG_GCC_VERSION=90201 in the kernel config first - # as 5.8.0 seems to have a different format for the LINUX_COMPILER string - if [ -e $KERNELDIR/include/generated/autoconf.h ] - then - BUILDER_GCC_VERSION=$(grep -Po '(?<=^#define CONFIG_GCC_VERSION ).*' $KERNELDIR/include/generated/autoconf.h | sed '-res@(.*)(..)(..)$@\1\.\2\.\3@' '-es@\.0@\.@g') - else - BUILDER_GCC_VERSION= - fi - - if [ -z "$BUILDER_GCC_VERSION" ] - then - if [ -e $KERNELDIR/include/generated/compile.h ] - then - BUILDER_GCC_VERSION=$(grep -Po '(?<=^#define LINUX_COMPILER "gcc version )[0-9.]+' $KERNELDIR/include/generated/compile.h || true) - elif [ -e $KERNELDIR/include/linux/compile.h ] - then - # RHEL6 - BUILDER_GCC_VERSION=$(grep -Po '(?<=^#define LINUX_COMPILER "gcc version )[0-9.]+' $KERNELDIR/include/linux/compile.h || true) - else - # ancient Ubuntu gets an ancient compiler - BUILDER_GCC_VERSION=4.8.0 - fi - fi - - if [ -z "$BUILDER_GCC_VERSION" ] - then - echo "Failed to find gcc version for $KERNELDIR" - return 1 - fi - - # We don't really care about the compiler patch levels, only the major/minor version - BUILDER_GCC_MINOR_VERSION="${BUILDER_GCC_VERSION%.*}" - - # Choose the right gcc version from the ones we have available (as Docker images) - # - if we have the exact minor version, use it - # - if not, and there's a newer compiler version, use that - # (as close to the requested version as possible) - # - if there are no newer compilers, use the newest one we have - # it will be older than the requested one but hopefully - # not by much - # - # This means we don't have to exactly follow all distro gcc versions - # (indeed, we don't e.g. for AmazonLinux) but only need to add a new - # Dockerfile when the latest kernel fails to build with our newest - # gcc for that distro - - # The dockerfiles in question all look like .../Dockerfile.centos-gcc4.4 - # or similar. We want to pick the one that's closest to $BUILDER_GCC_MINOR_VERSION - # (exact match, slightly newer, slightly older, in that order of preference). - # To do that, we iterate over the list of all available dockerfiles (i.e. gcc - # versions) for a particular distribution in ascending version order (oldest->newest). - # Sadly, sort -V falls back to ASCII order with non-numeric prefixes, i.e. - # these are sorted according to sort -V: - # Dockerfile.centos-gcc10.0 - # Dockerfile.centos-gcc4.4 - # Dockerfile.centos-gcc9.2 - # So, to get actual sorting by version numbers, we strip the common prefix first - # and add it back after finding the best available version. What we're sorting is: - # 4.4 - # 9.2 - # 10.0 - # and now we properly realize that gcc 10 is newer than 9.2, not older than 4.4 - DOCKERFILE_PREFIX=$BUILDER_SOURCE/Dockerfile.${BUILDER_DISTRO}-gcc - CHOSEN_GCC_VERSION=$(ls $DOCKERFILE_PREFIX* | sed "s@$DOCKERFILE_PREFIX@@" | sort -V | awk \ - -v target=${BUILDER_GCC_MINOR_VERSION} \ - ' - $1 < target { older = $1 } - $1 == target { exact = $1 } - $1 > target && !newer { newer = $1 } - - END { - if (exact) { print exact } - else if (newer) { print newer } - else { print older } - } - ') - DOCKERFILE=${DOCKERFILE_PREFIX}${CHOSEN_GCC_VERSION} - DOCKERFILE_TAG=${DOCKERFILE#$BUILDER_SOURCE/Dockerfile.} - echo "Selected builder $DOCKERFILE_TAG for $BUILDER_DISTRO, gcc $BUILDER_GCC_VERSION" - fi - - if [ ! -e $DOCKERFILE ] - then - echo "Cannot find $DOCKERFILE" - return 1 - fi - - IMAGE_NAME="sysdig-probe-builder:${DOCKERFILE_TAG}" - CONTAINER_NAME="sysdig-probe-builder-${DOCKERFILE_TAG}" - - docker ps -q -f "name=$CONTAINER_NAME" | xargs --no-run-if-empty docker rm || return 1 - if [ -n "$BUILDER_IMAGE_PREFIX" ] - then - IMAGE_NAME="${BUILDER_IMAGE_PREFIX}${IMAGE_NAME}" - else - if [ -z "${builders[$IMAGE_NAME]:-}" ] - then - docker build -t "$IMAGE_NAME" -f $DOCKERFILE $BUILDER_SOURCE || return 1 - docker images -q -f 'dangling=true' | xargs --no-run-if-empty docker rmi || true - builders[$IMAGE_NAME]=1 - fi - fi - - docker run --rm -v $DOCKER_BASEDIR:$PROBE_ROOT -v $SYSDIG_DIR:$PROBE_ROOT/sysdig \ - -e OUTPUT=$PROBE_ROOT/output \ - -e PROBE_NAME=$PROBE_NAME \ - -e PROBE_VERSION=$PROBE_VERSION \ - -e PROBE_DEVICE_NAME=$PROBE_DEVICE_NAME \ - -e KERNELDIR=$PROBE_ROOT/${KERNELDIR#$BASEDIR} \ - -e KERNEL_RELEASE=$KERNEL_RELEASE \ - -e HASH=$HASH \ - -e HASH_ORIG=$HASH_ORIG \ - --name $CONTAINER_NAME \ - $IMAGE_NAME "$@" || return 1 -} - -function build_probe_bpf { - PROBE_ID=$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o - - KERNEL_MAJOR=${KERNEL_RELEASE%%.*} - KERNEL_MINOR=${KERNEL_RELEASE#$KERNEL_MAJOR.} - KERNEL_MINOR=${KERNEL_MINOR%%.*} - - if [ "$KERNEL_MAJOR" -lt 4 ] - then - echo "Kernel $KERNEL_RELEASE too old to support eBPF (need at least 4.14), skipping eBPF build" - return - elif [ "$KERNEL_MAJOR" -eq 4 -a "$KERNEL_MINOR" -lt 14 ] - then - echo "Kernel $KERNEL_RELEASE too old to support eBPF (need at least 4.14), skipping eBPF build" - return - fi - - # Skip Kernel 4.15.0-29 because probe does not build against it - if [ $KERNEL_RELEASE-$HASH = "4.15.0-29-generic-ea0aa038a6b9bdc4bb42152682bba6ce" -o \ - $KERNEL_RELEASE-$HASH = "5.8.0-1023-aws-3f7746be1bef4c3f68f5465d8453fa4d" ]; then - echo "Temporarily skipping BPF $PROBE_ID" - return - fi - - if [ -f $BASEDIR/output/$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o ] && - [ -f $BASEDIR/output/$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH_ORIG.o ]; then - echo "Skipping BPF $PROBE_ID (already built)" - return - fi - - LOG=$(mktemp /tmp/log.XXXXXX) - if ! build_probe_impl bpf &> $LOG - then - (echo "BPF Build for $PROBE_ID failed"; cat $LOG) | tee -a $FAIL_LOG - FAILED=1 - else - echo "BPF Build for $PROBE_ID successful" - cat $LOG - fi - rm -f $LOG -} - -function build_probe { - PROBE_ID=$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko - - # Skip Kernel 4.15.0-29 because probe does not build against it - if [ $KERNEL_RELEASE-$HASH = "4.15.0-29-generic-ea0aa038a6b9bdc4bb42152682bba6ce" -o \ - $KERNEL_RELEASE-$HASH = "5.8.0-1023-aws-3f7746be1bef4c3f68f5465d8453fa4d" ]; then - echo "Temporarily skipping $PROBE_ID" - return - fi - - if [ -f $BASEDIR/output/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko ] && - [ -f $BASEDIR/output/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH_ORIG.ko ]; then - echo "Skipping $PROBE_ID (already built)" - return - fi - - LOG=$(mktemp /tmp/log.XXXXXX) - if ! build_probe_impl &> $LOG - then - (echo "Build for $PROBE_ID failed"; cat $LOG) | tee -a $FAIL_LOG - FAILED=1 - else - echo "Build for $PROBE_ID successful" - cat $LOG - fi - rm -f $LOG -} - -function ubuntu_build { - BUILDER_DISTRO=${BUILDER_DISTRO:-ubuntu} - for DEB in "$@" - do - KERNEL_RELEASE_FULL=$(echo $DEB | grep -E -o "[0-9]{1}\.[0-9]+\.[0-9]+-[0-9]+\.[0-9][^_]*") # ex. 3.13.0-24.47 - KERNEL_RELEASE=$(echo "$KERNEL_RELEASE_FULL" | grep -Eo '[^-]+-[0-9]+') # ex. 3.13.0-24 - KERNEL_UPDATE=${KERNEL_RELEASE_FULL#$KERNEL_RELEASE.} # ex. 47 - - TARGET=build/$BUILDER_DISTRO/$KERNEL_RELEASE/$KERNEL_UPDATE - MARKER=$TARGET/.$(basename $DEB) - if [ -e $MARKER ] - then - echo "$DEB already unpacked in $TARGET" - else - echo "Unpacking $DEB to $TARGET" - mkdir -p $TARGET - if [ -n "$RUNNING_IN_DOCKER" ] - then - UBUNTU_KERNEL_DEB=$KERNEL_BASEDIR/${DEB#/*/} - else - UBUNTU_KERNEL_DEB=$(pwd)/$DEB - fi - docker run --rm -v $UBUNTU_KERNEL_DEB:/$DEB:ro -v $DOCKER_BASEDIR/$TARGET:/output:rw ubuntu:latest dpkg -x /$DEB /output - touch $MARKER - fi - done - - for DEB in "$@" - do - if [[ $(basename $DEB) != "linux-image-"*".deb" && $(basename $DEB) != "linux-modules-"*".deb" ]] - then - continue - fi - KERNEL_RELEASE_FULL=$(echo $DEB | grep -Eo "[0-9]{1}\.[0-9]+\.[0-9]+-[0-9]+\.[0-9][^_]*") # ex. 3.13.0-24.47 - KERNEL_RELEASE=$(echo "$KERNEL_RELEASE_FULL" | grep -Eo '[^-]+-[0-9]+') # ex. 3.13.0-24 - KERNEL_UPDATE=${KERNEL_RELEASE_FULL#$KERNEL_RELEASE.} # ex. 47 - - KERNEL_VERSION=$(echo $DEB | grep -Eo "[0-9]{1}\.[0-9]+\.[0-9]+-[0-9]+-[a-z]+") # ex. 3.13.0-24-generic - - TARGET=build/$BUILDER_DISTRO/$KERNEL_RELEASE/$KERNEL_UPDATE - HASH=$(md5sum $TARGET/boot/config-$KERNEL_VERSION | cut -d' ' -f1) - HASH_ORIG=$HASH - - export KERNELDIR=$BASEDIR/$TARGET/usr/src/linux-headers-$KERNEL_VERSION - - # impedance mismatch - KERNEL_RELEASE=$KERNEL_VERSION - echo "Building probe for Ubuntu kernel $KERNEL_VERSION ($KERNEL_RELEASE_FULL)" - build_probe - build_probe_bpf - done -} - -function rhel_build { - BUILDER_DISTRO=${BUILDER_DISTRO:-centos} - for RPM in "$@" - do - RPM_FILE=$(basename $RPM) - KERNEL_RELEASE=$(echo $RPM_FILE | gawk 'match($0, /[^kernel\-(uek\-)?(core\-|devel\-)?].*[^(\.rpm)]/){ print substr($0, RSTART, RLENGTH) }') - - TARGET=build/$DISTRO/$KERNEL_RELEASE - MARKER=$TARGET/.$RPM_FILE - if [ -e $MARKER ] - then - echo "$RPM already unpacked in $TARGET" - else - echo "Unpacking $RPM to $TARGET" - mkdir -p $TARGET - FULL_RPM=$(readlink -f "$RPM") - FULL_TARGET=$(readlink -f "$TARGET") - run_toolkit -v "$FULL_RPM:$FULL_RPM:ro" -v "$FULL_TARGET:$FULL_TARGET" -- rpm "$FULL_RPM" "$FULL_TARGET" - touch $MARKER - fi - done - - for RPM in "$@" - do - RPM_FILE=$(basename $RPM) - KERNEL_RELEASE=$(echo $RPM_FILE | gawk 'match($0, /[^kernel\-(uek\-)?(core\-|devel\-)?].*[^(\.rpm)]/){ print substr($0, RSTART, RLENGTH) }') - TARGET=build/$DISTRO/$KERNEL_RELEASE - - if [ -f $TARGET/boot/config-$KERNEL_RELEASE ]; then - HASH=$(md5sum $TARGET/boot/config-$KERNEL_RELEASE | cut -d' ' -f1) - else - HASH=$(md5sum $TARGET/lib/modules/$KERNEL_RELEASE/config | cut -d' ' -f1) - fi - HASH_ORIG=$HASH - export KERNELDIR=$BASEDIR/$TARGET/usr/src/kernels/$KERNEL_RELEASE - echo "Building probe for CentOS kernel $KERNEL_RELEASE" - build_probe - build_probe_bpf - done -} - -function debian_build { - BUILDER_DISTRO=${BUILDER_DISTRO:-debian} - for DEB in "$@" - do - DEB_FILE=$(basename $DEB) - if [[ "$DEB_FILE" = *"kbuild"* ]] - then - continue - fi - KERNEL_RELEASE=$(echo ${DEB_FILE} | grep -E -o "[0-9]{1}\.[0-9]+\.[0-9]+(-[0-9]+)?"| head -1) - KERNEL_MAJOR=$(echo ${KERNEL_RELEASE} | grep -E -o "[0-9]{1}\.[0-9]+") - PACKAGE=$(echo ${DEB_FILE} | grep -E -o "(common_[0-9]{1}\.[0-9]+.*(amd64|all)|amd64_[0-9]{1}\.[0-9]+.*amd64)" | sed -E 's/(common_|amd64_|_amd64|all_|_all)//g') - - TARGET=build/$BUILDER_DISTRO/$KERNEL_RELEASE - MARKER=$TARGET/.$(basename $DEB) - if [ -e $MARKER ] - then - echo "$DEB already unpacked in $TARGET" - else - echo "Unpacking $DEB to $TARGET" - mkdir -p $TARGET - dpkg -x $DEB $TARGET - touch $MARKER - fi - set +e - KBUILD_PACKAGE=$(ls $@ 2>/dev/null | grep "linux-kbuild-${KERNEL_MAJOR}_.*.deb" | tail -1) - set -e - if [ -n "$KBUILD_PACKAGE" ] - then - MARKER=$TARGET/.$(basename $KBUILD_PACKAGE) - if [ -e $MARKER ] - then - echo "$KBUILD_PACKAGE already unpacked in $TARGET" - else - echo "Unpacking $KBUILD_PACKAGE to $TARGET" - mkdir -p $TARGET - dpkg -x $KBUILD_PACKAGE $TARGET - touch $MARKER - fi - fi - done - - for DEB in "$@" - do - DEB_FILE=$(basename $DEB) - if [[ "$DEB_FILE" != "linux-image-"*".deb" ]] - then - continue - fi - KERNEL_RELEASE=$(echo ${DEB_FILE} | grep -E -o "[0-9]{1}\.[0-9]+\.[0-9]+(-[0-9]+)?"| head -1) - KERNEL_ARCH_RELEASE=$(echo ${DEB_FILE} | grep -E -o "[0-9]{1}\.[0-9]+\.[0-9]+(-[0-9]+)?-amd64"| head -1) - KERNEL_COMMON_RELEASE=${KERNEL_ARCH_RELEASE/amd64/common} - - TARGET=build/$BUILDER_DISTRO/$KERNEL_RELEASE - HASH=$(md5sum $TARGET/boot/config-$KERNEL_ARCH_RELEASE | cut -d' ' -f1) - HASH_ORIG=$HASH - - export KERNELDIR=$BASEDIR/$TARGET/usr/src/linux-headers-$KERNEL_ARCH_RELEASE - export KERNELDIR_COMMON=$BASEDIR/$TARGET/usr/src/linux-headers-$KERNEL_COMMON_RELEASE - - CONTAINER_KERNELDIR=/build/probe/$TARGET/usr/src/linux-headers-$KERNEL_ARCH_RELEASE - CONTAINER_KERNELDIR_COMMON=/build/probe/$TARGET/usr/src/linux-headers-$KERNEL_COMMON_RELEASE - - BUILD_LINK=$(readlink $BASEDIR/$TARGET/lib/modules/$KERNEL_ARCH_RELEASE/build) - case $BUILD_LINK in - /*) - BUILD_LINK=../../../${BUILD_LINK#/} - ls -l $BASEDIR/$TARGET/lib/modules/$KERNEL_ARCH_RELEASE/build - ln -sf $BUILD_LINK $BASEDIR/$TARGET/lib/modules/$KERNEL_ARCH_RELEASE/build - ;; - esac - ls -l $BASEDIR/$TARGET/lib/modules/$KERNEL_ARCH_RELEASE/build - - SOURCE_LINK=$(readlink $BASEDIR/$TARGET/lib/modules/$KERNEL_ARCH_RELEASE/source) - case $SOURCE_LINK in - /*) - SOURCE_LINK=../../../${SOURCE_LINK#/} - ls -l $BASEDIR/$TARGET/lib/modules/$KERNEL_ARCH_RELEASE/source - ln -sf $SOURCE_LINK $BASEDIR/$TARGET/lib/modules/$KERNEL_ARCH_RELEASE/source - ;; - esac - ls -l $BASEDIR/$TARGET/lib/modules/$KERNEL_ARCH_RELEASE/source - - MAKEFILE=$BASEDIR/$TARGET/usr/src/linux-headers-$KERNEL_ARCH_RELEASE/Makefile - - if [ ! -e $MAKEFILE.sysdig-orig ] - then - cp $MAKEFILE $MAKEFILE.sysdig-orig - cat $MAKEFILE.sysdig-orig | \ - sed '0,/MAKEARGS.*$/s||MAKEARGS := -C '"${CONTAINER_KERNELDIR_COMMON}"' O='"${CONTAINER_KERNELDIR}"'|' | \ - sed 's/@://' | \ - sed 's|$(cmd) %.*$|$(cmd) : all|' | - sed 's|^include .*$|include '"${CONTAINER_KERNELDIR_COMMON}"'/Makefile|' > $MAKEFILE - fi - - # impedance mismatch - KERNEL_RELEASE=$KERNEL_ARCH_RELEASE - echo "Building probe for Debian kernel $KERNEL_ARCH_RELEASE" - build_probe - build_probe_bpf - done -} - -function build_group_ubuntu { - # - # Ubuntu build - # - - DISTRO=ubuntu - BUILDER_DISTRO=ubuntu - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading Ubuntu kernels - mkdir -p $DISTRO - $BUILDER_SOURCE/kernel-crawler.py Ubuntu | xargs -n 1 -P $DOWNLOAD_CONCURRENCY wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - - echo "Building Ubuntu" - ubuntu_build $DISTRO/*.deb -} - -function build_group_centos { - # - # RHEL build through CentOS - # - - DISTRO=centos - BUILDER_DISTRO=centos - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading CentOS kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/kernel-crawler.py CentOS | xargs -n 1 -P $DOWNLOAD_CONCURRENCY wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - - echo Building CentOS - rhel_build $DISTRO/*.rpm -} - -function build_group_fedora { - # - # Fedora build - # - - DISTRO=fedora - BUILDER_DISTRO=centos - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading Fedora kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/kernel-crawler.py Fedora | xargs -n 1 -P $DOWNLOAD_CONCURRENCY wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - - echo Building Fedora - rhel_build $DISTRO/*.rpm -} - -function build_group_debian { - # - # Debian build - # - DISTRO=debian - BUILDER_DISTRO=debian - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading Debian kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/kernel-crawler.py Debian | xargs -n 1 -P $DOWNLOAD_CONCURRENCY wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - - echo "Building Debian" - debian_build $DISTRO/*.deb -} - -function build_group_oracle_rhck { - # - # Oracle RHCK build - # - DISTRO=oracle-rhck - BUILDER_DISTRO=centos - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading Oracle RHCK kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/oracle-kernel-crawler.py Oracle-RHCK | xargs -n 1 wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - echo "Building Oracle RHCK" - rhel_build $DISTRO/*.rpm -} - -function build_group_oracle_ol6_uek { - # - # Oracle Linux 6 UEK build - # - DISTRO=oracle-uek6 - BUILDER_DISTRO=oracle-uek6 - DOCKER_BUILDER=ol6 - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading Oracle Linux 6 UEK kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/oracle-kernel-crawler.py OL6-UEK | xargs -n 1 wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - echo "Building Oracle Linux 6 UEK" - rhel_build $DISTRO/*.rpm - unset DOCKER_BUILDER -} - -function build_group_oracle_ol7_uek { - # - # Oracle Linux 7 UEK build - # - DISTRO=oracle-uek7 - BUILDER_DISTRO=oracle-uek7 - DOCKER_BUILDER=ol7 - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading Oracle Linux 7 UEK kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/oracle-kernel-crawler.py OL7-UEK | xargs -n 1 wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - echo "Building Oracle Linux 7 UEK" - rhel_build $DISTRO/*.rpm - unset DOCKER_BUILDER -} - -function build_group_amazonlinux { - # - # AmazonLinux build - # - DISTRO=amazonlinux - BUILDER_DISTRO=centos - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading AmazonLinux kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/kernel-crawler.py AmazonLinux | xargs -n 1 -P $DOWNLOAD_CONCURRENCY wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - echo "Building AmazonLinux" - rhel_build $DISTRO/*.rpm -} - -function build_group_amazonlinux2 { - # - # AmazonLinux build - # - DISTRO=amazonlinux2 - BUILDER_DISTRO=centos - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading AmazonLinux2 kernels - DIR=$(dirname $(readlink -f $0)) - mkdir -p $DISTRO - $DIR/kernel-crawler.py AmazonLinux2 | xargs -n 1 -P $DOWNLOAD_CONCURRENCY wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO - fi - echo "Building AmazonLinux2" - rhel_build $DISTRO/*.rpm -} - -function build_group_rhel { - if [ -z "$ARTIFACTORY_KEY" -o -z "$ARTIFACTORY_SERVER" ] - then - echo "Artifactory credentials missing, skipping RHEL build" - return - fi - - # - # RHEL build from Stored Sources - # - DISTRO=rhel - BUILDER_DISTRO=centos - if [ "$DOWNLOAD_CONCURRENCY" != "0" ] - then - echo Downloading RHEL kernels - mkdir -p $DISTRO - - # We're using aql to query for all of the objects in the repo - # and jq to parse the json to get the rpms - curl -s -H 'Content-Type: text/plain' -H "X-JFrog-Art-Api: $ARTIFACTORY_KEY" -X POST \ - -d 'items.find({"repo":"redhat-sources"})' https://$ARTIFACTORY_SERVER/artifactory/api/search/aql | \ - jq -r '.results[].name as $o | $o | select(endswith(".rpm")) | $o' | \ - xargs -n 1 -P $DOWNLOAD_CONCURRENCY -iRPM wget -c -nv --timeout=${DOWNLOAD_TIMEOUT} --tries=${RETRIES} -P $DISTRO https://$ARTIFACTORY_SERVER/artifactory/redhat-sources/RPM --header "X-JFrog-Art-Api: $ARTIFACTORY_KEY" - fi - - echo Building RHEL from Stored Sources - rhel_build $DISTRO/*.rpm -} - -function build_everything { - build_group_rhel - build_group_ubuntu - build_group_centos - build_group_fedora - build_group_debian - build_group_oracle_rhck - build_group_oracle_ol6_uek - build_group_oracle_ol7_uek - build_group_amazonlinux - build_group_amazonlinux2 -} - -case "$KERNEL_TYPE" in - "") - checkout_sysdig - build_everything - ;; - Ubuntu) - checkout_sysdig - build_group_ubuntu - ;; - CentOS) - checkout_sysdig - build_group_centos - ;; - Fedora) - checkout_sysdig - build_group_fedora - ;; - Debian) - checkout_sysdig - build_group_debian - ;; - OracleRHCK) - checkout_sysdig - build_group_oracle_rhck - ;; - OracleOL6) - checkout_sysdig - build_group_oracle_ol6_uek - ;; - OracleOL7) - checkout_sysdig - build_group_oracle_ol7_uek - ;; - AmazonLinux) - checkout_sysdig - build_group_amazonlinux - ;; - AmazonLinux2) - checkout_sysdig - build_group_amazonlinux2 - ;; - RHEL) - checkout_sysdig - build_group_rhel - ;; - CustomCentOS) - checkout_sysdig - DISTRO=custom-centos - rhel_build "$@" - ;; - CustomDebian) - checkout_sysdig - DISTRO=custom-debian - debian_build "$@" - ;; - CustomUbuntu) - checkout_sysdig - DISTRO=custom-ubuntu - ubuntu_build "$@" - ;; - *) -# Note: if you add a new KERNEL_TYPE here, please remember to update -# the usage message near the top of this file - exit 1 - ;; -esac - -if [ -s "$FAIL_LOG" ] -then - echo "Failed builds:" - echo "------------------------------" - cat $FAIL_LOG -fi -rm -f $FAIL_LOG -if [ -n "$FAILED" ] -then - echo "Build failed." - exit 1 -else - echo "Success." -fi - -# vim: :set tabstop=8 shiftwidth=8 noexpandtab: diff --git a/kernel-crawler.py b/kernel-crawler.py deleted file mode 100755 index 204fdf8..0000000 --- a/kernel-crawler.py +++ /dev/null @@ -1,461 +0,0 @@ -#!/usr/bin/env python -# -# Copyright (C) 2013-2018 Draios Inc dba Sysdig. -# -# This file is part of sysdig . -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -# Author: Samuele Pilleri -# Date: August 17th, 2015 - -from __future__ import unicode_literals - -import bz2 -import re -import sqlite3 -import sys -import tempfile -import time -import zlib - -try: - from urllib2 import urlopen, unquote - - # python 2 - def sqlite_column(row, col): - return row[bytes(col)] - -except ImportError: - from urllib.request import urlopen - from urllib.parse import unquote - - # python 3 - def sqlite_column(row, col): - return row[col] - -from lxml import html - -# -# This is the main configuration tree to easily analyze Linux repositories for -# hunting packages. When adding repos or distros be sure to respect the same data -# structure -# -repos = { - "CentOS" : [ - { - # This is the root path of the repository in which the script will - # look for distros (HTML page) - "root" : "http://mirrors.edge.kernel.org/centos/", - - # This is the XPath + Regex (optional) for analyzing the `root` - # page and discover possible distro versions. Use the regex if you - # want to limit the version release - "discovery_pattern" : "/html/body//pre/a[regex:test(@href, '^6|^7|^8.*$')]/@href", - - # Once we have found every version available, we need to know were - # to go inside the tree to find packages we need (HTML pages) - "subdirs" : [ - "os/x86_64/Packages/", - "updates/x86_64/Packages/", - "BaseOS/x86_64/os/Packages/" - ], - - # Finally, we need to inspect every page for packages we need. - # Again, this is an XPath + Regex query so use the regex if you want - # to limit the number of packages reported. - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(devel-|core-)?[0-9].*\.rpm$')]/@href" - }, - - { - "root" : "http://vault.centos.org/", - "discovery_pattern" : "//body//table/tr/td/a[regex:test(@href, '^6|^7|^8.*$')]/@href", - "subdirs" : [ - "os/x86_64/Packages/", - "updates/x86_64/Packages/", - "BaseOS/x86_64/os/Packages/" - ], - "page_pattern" : "//body//table/tr/td/a[regex:test(@href, '^kernel-(devel-|core-)?[0-9].*\.rpm$')]/@href" - } - ], - - "Ubuntu" : [ - { - # Had to split the URL because, unlike other repos for which the - # script was first created, Ubuntu puts everything into a single - # folder. The real URL we are forming is: - # http://mirrors.us.kernel.org/ubuntu/pool/main/l/linux/ - "root" : "https://mirrors.edge.kernel.org/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|headers)-(unsigned-)*[3-9].*-generic.*amd64.deb$')]/@href" - }, - - { - "root" : "https://mirrors.edge.kernel.org/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-headers-[3-9].*_all.deb$')]/@href" - }, - - { - "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|headers)-(unsigned-)*[3-9].*-generic.*amd64.deb$')]/@href" - }, - - { - "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-headers-[3-9].*_all.deb$')]/@href" - }, - - { - "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[@href = 'linux/']/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-modules-[3-9].*-generic.*amd64.deb$')]/@href" - }, - - ### Ubuntu AWS kernels - { - "root" : "https://mirrors.edge.kernel.org/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[regex:test(@href, 'linux-aws.*/')]/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|(aws-.*)?headers|modules)-[3-9].*(all|amd64).deb$')]/@href" - }, - - { - "root" : "http://security.ubuntu.com/ubuntu/pool/main/l/", - "discovery_pattern" : "/html/body//a[regex:test(@href, 'linux-aws.*/')]/@href", - "subdirs" : [""], - "page_pattern" : "/html/body//a[regex:test(@href, '^linux-(image|(aws-.*)?headers|modules)-[3-9].*(all|amd64).deb$')]/@href" - }, - ], - - "Fedora" : [ - { - "root" : "https://mirrors.kernel.org/fedora/releases/", - "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", - "subdirs" : [ - "Everything/x86_64/os/Packages/k/" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" - }, - - { - "root" : "https://mirrors.kernel.org/fedora/updates/", - "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", - "subdirs" : [ - "x86_64/Packages/k/" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" - }, - - { - "root" : "https://mirrors.kernel.org/fedora/updates/", - "discovery_pattern": "/html/body//a[regex:test(@href, '^[3-9][0-9]/$')]/@href", - "subdirs" : [ - "Everything/x86_64/Packages/k/" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" - }, - - # { - # "root" : "https://mirrors.edge.kernel.org/fedora/development/", - # "discovery_pattern": "/html/body//a[regex:test(@href, '^2[2-9]/$')]/@href", - # "subdirs" : [ - # "x86_64/os/Packages/k/" - # ], - # "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href" - # } - ], - - # - # Fedora Atomic repo is hard-coded to get the 4.17.x and 4.18.x (excluding rc) for now. - # - "Fedora-Atomic" : [ - { - "root" : "https://kojipkgs.fedoraproject.org/packages/kernel/", - "version_discovery_pattern": "/html/body//a[regex:test(@href, '^4\.1[78].*/$')]/@href", - "build_discovery_pattern": "/html/body//a[regex:test(@href, '^[0-9]+\.[^r].*/$')]/@href", - "subdirs" : [ - "x86_64/" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^kernel-(core|devel)-[0-9].*\.rpm$')]/@href", - }, - ], - - "CoreOS" : [ - { - "root" : "http://alpha.release.core-os.net/", - "discovery_pattern": "/html/body//a[regex:test(@href, 'amd64-usr')]/@href", - "subdirs" : [ - "" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^[5-9][0-9][0-9]|current|[1][0-9]{3}')]/@href", - "exclude_patterns": ["^15\d\d\."] - }, - - { - "root" : "http://beta.release.core-os.net/", - "discovery_pattern": "/html/body//a[regex:test(@href, 'amd64-usr')]/@href", - "subdirs" : [ - "" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^[5-9][0-9][0-9]|current|[1][0-9]{3}')]/@href" - }, - - { - "root" : "http://stable.release.core-os.net/", - "discovery_pattern": "/html/body//a[regex:test(@href, 'amd64-usr')]/@href", - "subdirs" : [ - "" - ], - "page_pattern" : "/html/body//a[regex:test(@href, '^[4-9][0-9][0-9]|current|[1][0-9]{3}')]/@href" - } - ], - - "Debian": [ - { - "root": "https://mirrors.edge.kernel.org/debian/pool/main/l/", - "discovery_pattern": "/html/body/pre/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-(image|headers)-[3-9]\.[0-9]+\.[0-9]+.*amd64.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "http://security.debian.org/pool/updates/main/l/", - "discovery_pattern": "/html/body/table//tr/td/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-(image|headers)-[3-9]\.[0-9]+\.[0-9]+.*amd64.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "https://mirrors.edge.kernel.org/debian/pool/main/l/", - "discovery_pattern": "/html/body/pre/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-headers-[3-9]\.[0-9]+\.[0-9]+.*-common_.*.all\.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "http://security.debian.org/pool/updates/main/l/", - "discovery_pattern": "/html/body/table//tr/td/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-headers-[3-9]\.[0-9]+\.[0-9]+.*-common_.*.all\.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "http://mirrors.edge.kernel.org/debian/pool/main/l/", - "discovery_pattern": "/html/body/pre/a[@href = 'linux/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-kbuild-.*amd64.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] - }, - { - "root": "http://mirrors.edge.kernel.org/debian/pool/main/l/", - "discovery_pattern": "/html/body/pre/a[@href = 'linux-tools/']/@href", - "subdirs": [""], - "page_pattern": "/html/body//a[regex:test(@href, '^linux-kbuild-.*amd64.deb$')]/@href", - "exclude_patterns": ["-rt", "dbg", "trunk", "all", "exp", "unsigned", "cloud-amd64"] - } - ] -} - -# Build static list, check here for the last Amazon Linux AMI release: https://aws.amazon.com/amazon-linux-2/faqs/ -amazon_linux_builder = [('latest', 'updates'), ('latest', 'main'), ('2017.03', 'updates'), ('2017.03', 'main'), ('2017.09', 'updates'), ('2017.09', 'main'), ('2018.03', 'updates'), ('2018.03', 'main')] -amazon_repos = [] -for repo_release, release_type in amazon_linux_builder: - amazon_repos.append({ - "root": "http://repo.us-east-1.amazonaws.com/" + repo_release + "/" + release_type + "/mirror.list", - "discovery_pattern": "SELECT * FROM packages WHERE name LIKE 'kernel%'", - "subdirs": [""], - "page_pattern": "", - "exclude_patterns": ["doc", "tools", "headers"] - }) -repos['AmazonLinux'] = amazon_repos - -amazon_linux_2 = ['core/2.0', 'core/latest', 'extras/kernel-5.4/latest', 'extras/kernel-5.10/latest'] -amazon_linux2 = [] -for amzn_repos in amazon_linux_2: - amazon_linux2.append({ - "root": "http://amazonlinux.us-east-1.amazonaws.com/2/" + amzn_repos + "/x86_64/mirror.list", - "discovery_pattern": "SELECT * FROM packages WHERE name LIKE 'kernel%' AND name NOT LIKE 'kernel-livepatch%'", - "subdirs": [""], - "page_pattern": "", - "exclude_patterns": ["doc", "tools", "headers"] - }) - -repos['AmazonLinux2'] = amazon_linux2 - -def progress(distro, current, total, package): - sys.stderr.write('\r\x1b[2K{} {}/{} {}'.format(distro, current, total, package)) - -def exclude_patterns(repo, packages, base_url, urls): - for rpm in packages: - if "exclude_patterns" in repo and any(re.search(x, rpm) for x in repo["exclude_patterns"]): - continue - else: - urls.add(base_url + str(unquote(rpm))) - -def process_al_distro(al_distro_name, current_repo): - get_url = urlopen(current_repo["root"]).readline().decode('ascii') - if get_url: - if al_distro_name == "AmazonLinux": - base_mirror_url = get_url.replace('$basearch','x86_64').replace('\n','') + '/' - db_path = "repodata/primary.sqlite.bz2" - elif al_distro_name == "AmazonLinux2": - base_mirror_url = get_url.replace('\n','') + '/' - db_path = "repodata/primary.sqlite.gz" - - progress(current_repo["root"], 1, 3, 'downloading ' + db_path) - response = urlopen(base_mirror_url + db_path) - body = response.read() - - progress(current_repo["root"], 2, 3, 'decompressing') - if al_distro_name == "AmazonLinux": - decompressed_data = bz2.decompress(body) - elif al_distro_name == "AmazonLinux2": - decompressed_data = zlib.decompress(body, 16+zlib.MAX_WBITS) - - progress(current_repo["root"], 3, 3, 'querying') - db_file = tempfile.NamedTemporaryFile() - db_file.write(decompressed_data) - conn = sqlite3.connect(db_file.name) - conn.row_factory = sqlite3.Row - c = conn.cursor() - al_rpms = [sqlite_column(r, "location_href") for r in c.execute(current_repo["discovery_pattern"])] - exclude_patterns(current_repo, al_rpms, base_mirror_url, urls) - conn.close() - db_file.close() - - sys.stderr.write('\n') - return True - - else: - return False - -# -# Fedora Atomic needs 2 levels of discovery (for version, and build id, respectively) -# -def process_atomic_distro(current_repos): - for repo in current_repos["Fedora-Atomic"]: - try: - root = urlopen(repo["root"],timeout=URL_TIMEOUT).read() - except: - continue - versions = html.fromstring(root).xpath(repo["version_discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - vid = 0 - for version in versions: - vid += 1 - version_url=repo["root"] + version - try: - progress(repo["root"], vid, len(versions), version) - version_page=urlopen(version_url,timeout=URL_TIMEOUT).read() - except: - continue - builds = html.fromstring(version_page).xpath(repo["build_discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - for build in builds: - for subdir in repo["subdirs"]: - source = version_url + build + subdir - try: - page = urlopen(source,timeout=URL_TIMEOUT).read() - except: - continue - rpms = html.fromstring(page).xpath(repo["page_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - exclude_patterns(repo, rpms, source, urls) - sys.stderr.write('\n') - - -# -# In our design you are not supposed to modify the code. The whole script is -# created so that you just have to add entry to the `repos` array and new -# links will be found automagically without needing to write any single line of -# code. -# -urls = set() -URL_TIMEOUT=30 - -if len(sys.argv) < 2 or not sys.argv[1] in repos: - sys.stderr.write("Usage: " + sys.argv[0] + " [version]\n") - sys.stderr.write("Available distros:\n") - for d in sorted(repos): - sys.stderr.write(" - {}\n".format(d)) - sys.exit(1) - -distro = sys.argv[1] -try: - version_filter = sys.argv[2] - if distro == 'Ubuntu' and version_filter.endswith('-generic'): - version_filter = version_filter[:-len('-generic')] - sys.stderr.write('Looking for packages matching "{}"\n'.format(version_filter)) -except IndexError: - version_filter = '' - -# -# Navigate the `repos` tree and look for packages we need that match the -# patterns given. Save the result in `packages`. -# - -for repo in repos[distro]: - if distro == 'AmazonLinux': - try: - process_al_distro(distro, repo) - except: - continue - elif distro == 'AmazonLinux2': - try: - # Brute force finding the repositories. - process_al_distro(distro, repo) - except: - continue - elif distro == "Fedora-Atomic": - try: - process_atomic_distro(repos) - except: - continue - else: - try: - root = urlopen(repo["root"],timeout=URL_TIMEOUT).read() - except: - continue - - versions = html.fromstring(root).xpath(repo["discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - current = 1 - total = len(versions) * len(repo["subdirs"]) - for version in versions: - for subdir in repo["subdirs"]: - # The try - except block is used because 404 errors and similar - # might happen (and actually happen because not all repos have - # packages we need) - try: - source = repo["root"] + version + subdir - progress(repo["root"], current, total, version + subdir) - current += 1 - page = urlopen(source,timeout=URL_TIMEOUT).read() - rpms = html.fromstring(page).xpath(repo["page_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - exclude_patterns(repo, rpms, source, urls) - except: - continue - sys.stderr.write('\n') - - -# -# Print URLs to stdout -# -for url in urls: - if version_filter in url: - print(url) diff --git a/main-builder-entrypoint.sh b/main-builder-entrypoint.sh index 02dac3f..f8057d6 100755 --- a/main-builder-entrypoint.sh +++ b/main-builder-entrypoint.sh @@ -17,6 +17,12 @@ Usage: -v KERNELS:/kernels \\ IMAGE -B [-b BUILDER_IMAGE_PREFIX/] [-- BUILDER_OPTIONS...] + docker run --rm IMAGE -C -- DISTRIBUTION + + docker run --rm \\ + -v KERNELS:/kernels \\ + IMAGE -A [-- ARTIFACTORY_DOWNLOADER_OPTIONS...] + Required volumes: - /var/run/docker.sock for spawning build containers - WORKSPACE @@ -40,54 +46,67 @@ Options: It should match the prefix used with the -P option below (in an earlier invocation) + -A + Download kernel packages from an Artifactory instance + + -C + Run the kernel crawler to list available kernel packages + for a particular distribution. Run without extra parameters + to see the supported distributions. EOF exit 1 } -get_host_mount() +check_docker_socket() { - SOURCE=$(docker inspect $(hostname) | jq -r ".[0].Mounts[]|select(.Destination == \"$1\")|.Source") - if [ -z "$SOURCE" ] + if ! docker info &>/dev/null then - echo "Cannot find original location of $1" >&2 + echo "Docker socket not available" >&2 echo >&2 usage fi - echo "$SOURCE" } build_probes() { - WORKSPACE_SRC=$(get_host_mount /workspace) - SYSDIG_SRC=$(get_host_mount /sysdig) - KERNELS_SRC=$(get_host_mount /kernels) - + check_docker_socket cd /workspace - /builder/build-probe-binaries -B $WORKSPACE_SRC -K $KERNELS_SRC -s $SYSDIG_SRC -b "$BUILDER_IMAGE_PREFIX" "$@" /kernels/* + probe_builder build -s /sysdig -b "$BUILDER_IMAGE_PREFIX" "$@" /kernels/* } prepare_builders() { + check_docker_socket for i in Dockerfile.* ; do docker build -t ${BUILDER_IMAGE_PREFIX}sysdig-probe-builder:${i#Dockerfile.} -f $i . ; done } -if ! docker info &>/dev/null -then - echo "Docker socket not available" >&2 - echo >&2 - usage -fi +download_from_artifactory() +{ + cd /kernels + artifactory_download "$@" +} + +crawl() +{ + probe_builder crawl "$@" +} BUILDER_IMAGE_PREFIX= -while getopts ":b:BP" opt +while getopts ":Ab:BCP" opt do case "$opt" in + A) + OP=download_from_artifactory + ;; b) BUILDER_IMAGE_PREFIX=$OPTARG ;; B) OP=build ;; + C) + OP=crawl + ;; P) OP=prepare ;; @@ -108,9 +127,15 @@ done shift $((OPTIND - 1)) case "${OP:-}" in + download_from_artifactory) + download_from_artifactory "$@" + ;; build) build_probes "$@" ;; + crawl) + crawl "$@" + ;; prepare) prepare_builders ;; diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py new file mode 100644 index 0000000..dd16f8d --- /dev/null +++ b/probe_builder/__init__.py @@ -0,0 +1,142 @@ +import logging +import os +import sys + +import click + +from probe_builder.kernel_crawler import crawl_kernels, DISTROS +from . import kernel_crawler, disable_ipv6, git, docker +from .builder import choose_builder, builder_image +from .builder.distro import Distro +from .context import Context, Workspace, Probe, DownloadConfig + +logger = logging.getLogger(__name__) + + +def init_logging(debug): + level = 'DEBUG' if debug else 'INFO' + logger.setLevel(level) + handler = logging.StreamHandler(sys.stderr) + handler.setFormatter(logging.Formatter('%(asctime)s %(message)s')) + handler.setLevel(level) + logger.addHandler(handler) + + +def get_probe(workspace, sysdig_dir, probe_name, probe_version): + workspace_dir = workspace.workspace + + try: + probe_device_name, _ = probe_name.split('-', 1) + except ValueError: + probe_device_name = probe_name + + if sysdig_dir is None: + sysdig_dir = os.path.join(workspace_dir, 'sysdig') + if probe_device_name == 'sysdigcloud': + repo = 'https://github.com/draios/agent-libs' + branch = 'agent/{}'.format(probe_version) + elif probe_device_name == 'sysdig': + repo = 'https://github.com/draios/sysdig' + branch = probe_version + else: + raise RuntimeError('Unsupported probe type {}'.format(probe_name)) + git.clone(repo, branch, sysdig_dir) + else: + sysdig_dir = os.path.abspath(sysdig_dir) + + if not os.path.exists(sysdig_dir): + click.echo('Driver source directory {} does not exist'.format(sysdig_dir), err=True) + sys.exit(1) + + return Probe(sysdig_dir, probe_name, probe_version, probe_device_name) + + +class CrawlDistro(object): + + def __init__(self, distro, builder_distro, crawler_distro): + self.distro_obj = Distro(distro, builder_distro) + self.distro_builder = self.distro_obj.builder() + self.crawler_distro = crawler_distro + + def get_kernels(self, workspace, _packages, download_config): + return self.distro_builder.crawl(workspace, self.distro_obj, self.crawler_distro, download_config) + + +class LocalDistro(object): + + def __init__(self, distro, builder_distro): + self.distro_obj = Distro(distro, builder_distro) + self.distro_builder = self.distro_obj.builder() + + def get_kernels(self, _workspace, packages, _download_config): + return self.distro_builder.batch_packages(packages) + + +CLI_DISTROS = { + 'AmazonLinux': CrawlDistro('amazonlinux', 'centos', 'AmazonLinux'), + 'AmazonLinux2': CrawlDistro('amazonlinux2', 'centos', 'AmazonLinux2'), + 'CentOS': CrawlDistro('centos', 'centos', 'CentOS'), + 'Debian': CrawlDistro('debian', 'debian', 'Debian'), + 'Fedora': CrawlDistro('fedora', 'centos', 'Fedora'), + 'OracleOL6': None, + 'OracleOL7': None, + 'OracleRHCK': None, + 'Ubuntu': CrawlDistro('ubuntu', 'ubuntu', 'Ubuntu'), + 'CustomCentOS': LocalDistro('custom-centos', 'centos'), + 'CustomDebian': LocalDistro('custom-debian', 'debian'), + 'CustomUbuntu': LocalDistro('custom-ubuntu', 'ubuntu'), +} + + +@click.group() +@click.option('--debug/--no-debug') +def cli(debug): + init_logging(debug) + + +@click.command() +@click.option('-b', '--builder-image-prefix', default='') +@click.option('-d', '--download-concurrency', type=click.INT, default=1) +@click.option('-k', '--kernel-type', type=click.Choice(sorted(CLI_DISTROS.keys()))) +@click.option('-p', '--probe-name') +@click.option('-r', '--retries', type=click.INT, default=1) +@click.option('-s', '--source-dir') +@click.option('-t', '--download-timeout', type=click.FLOAT) +@click.option('-v', '--probe-version') +@click.argument('package', nargs=-1) +def build(builder_image_prefix, + download_concurrency, kernel_type, probe_name, retries, + source_dir, download_timeout, probe_version, package): + workspace_dir = os.getcwd() + builder_source = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + workspace = Workspace(docker.get_mount_mapping(), workspace_dir, builder_source, builder_image_prefix) + probe = get_probe(workspace, source_dir, probe_name, probe_version) + distro_obj = CLI_DISTROS[kernel_type] + + distro_builder = distro_obj.distro_builder + distro = distro_obj.distro_obj + download_config = DownloadConfig(download_concurrency, download_timeout, retries, None) + + kernels = distro_obj.get_kernels(workspace, package, download_config) + kernel_dirs = distro_builder.unpack_kernels(workspace, distro.distro, kernels) + for release, target in kernel_dirs.items(): + distro_builder.build_kernel(workspace, probe, distro.builder_distro, release, target) + + +@click.command() +@click.argument('distro', type=click.Choice(sorted(DISTROS.keys()))) +@click.argument('version', required=False, default='') +def crawl(distro, version=''): + kernels = crawl_kernels(distro, version) + for release, packages in kernels.items(): + print('=== {} ==='.format(release)) + for pkg in packages: + print(' {}'.format(pkg)) + + +cli.add_command(build, 'build') +cli.add_command(crawl, 'crawl') + +if __name__ == '__main__': + cli() diff --git a/probe_builder/artifactory_download.py b/probe_builder/artifactory_download.py new file mode 100644 index 0000000..0e99198 --- /dev/null +++ b/probe_builder/artifactory_download.py @@ -0,0 +1,70 @@ +#!/usr/bin/env python + +from __future__ import print_function + +import click +import requests +import json + +from probe_builder.context import DownloadConfig +from probe_builder.builder.distro.base_builder import to_s +from probe_builder.kernel_crawler.download import download_file + + +def list_artifactory_rpm(url, key, repo_name): + req = {'repo': repo_name} + req = 'items.find({})'.format(json.dumps(req)) + resp = requests.post(url + '/api/search/aql', data=req, headers={ + 'Content-Type': 'text/plain', + 'X-JFrog-Art-Api': key, + }) + + resp.raise_for_status() + resp = resp.json() + for pkg in resp['results']: + if pkg['name'].endswith('.rpm'): + yield pkg['name'] + + +def download_artifactory_rpm(url, key, repo_name, pkgs): + download_config = DownloadConfig(1, None, 1, { + 'X-JFrog-Art-Api': key + }) + + with click.progressbar(pkgs, item_show_func=to_s) as pkgs: + for pkg in pkgs: + pkg_url = '{}/{}/{}'.format(url, repo_name, pkg) + download_file(pkg_url, pkg, download_config) + + +@click.group() +@click.pass_context +@click.option('--url') +@click.option('--key') +@click.option('--repo') +def cli(ctx, url, key, repo): + ctx.ensure_object(dict) + ctx.obj['url'] = url + ctx.obj['key'] = key + ctx.obj['repo'] = repo + + +@click.command() +@click.pass_obj +def cli_list(obj): + for pkg in list_artifactory_rpm(obj['url'], obj['key'], obj['repo']): + print(pkg) + + +@click.command() +@click.pass_obj +def cli_download(obj): + rpms = list(list_artifactory_rpm(obj['url'], obj['key'], obj['repo'])) + download_artifactory_rpm(obj['url'], obj['key'], obj['repo'], rpms) + + +cli.add_command(cli_list, 'list') +cli.add_command(cli_download, 'download') + +if __name__ == '__main__': + cli() diff --git a/probe_builder/builder/__init__.py b/probe_builder/builder/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/probe_builder/builder/builder_image.py b/probe_builder/builder/builder_image.py new file mode 100644 index 0000000..26a09f3 --- /dev/null +++ b/probe_builder/builder/builder_image.py @@ -0,0 +1,65 @@ +import logging +import os + +from .. import docker +from ..version import Version + + +logger = logging.getLogger(__name__) + + +def build(workspace, dockerfile, dockerfile_tag): + image_name = '{}sysdig-probe-builder:{}'.format(workspace.image_prefix, dockerfile_tag) + docker.build(image_name, dockerfile, workspace.builder_source) + + +def run(workspace, probe, kernel_dir, kernel_release, + config_hash, container_name, image_name, args): + volumes = [ + docker.DockerVolume(workspace.host_workspace(), '/build/probe', False), + docker.DockerVolume(workspace.host_dir(probe.sysdig_dir), '/build/probe/sysdig', False), + ] + env = [ + docker.EnvVar('OUTPUT', '/build/probe/output'), + docker.EnvVar('PROBE_NAME', probe.probe_name), + docker.EnvVar('PROBE_VERSION', probe.probe_version), + docker.EnvVar('PROBE_DEVICE_NAME', probe.probe_device_name), + docker.EnvVar('KERNELDIR', kernel_dir.replace(workspace.workspace, '/build/probe/')), + docker.EnvVar('KERNEL_RELEASE', kernel_release), + docker.EnvVar('HASH', config_hash), + docker.EnvVar('HASH_ORIG', config_hash) + ] + + docker.run(image_name, volumes, args, env, name=container_name) + + +def probe_output_file(probe, kernel_release, config_hash, bpf): + arch = os.uname()[4] + if bpf: + return '{}-bpf-{}-{}-{}-{}.o'.format( + probe.probe_name, probe.probe_version, arch, kernel_release, config_hash + ) + else: + return '{}-{}-{}-{}-{}.ko'.format( + probe.probe_name, probe.probe_version, arch, kernel_release, config_hash + ) + + +SKIPPED_KERNELS = [ + ("4.15.0-29-generic", "ea0aa038a6b9bdc4bb42152682bba6ce"), + ("5.8.0-1023-aws", "3f7746be1bef4c3f68f5465d8453fa4d"), +] + + +def skip_build(probe, output_dir, kernel_release, config_hash, bpf): + probe_file_name = probe_output_file(probe, kernel_release, config_hash, bpf) + + if os.path.exists(os.path.join(output_dir, probe_file_name)): + return "Already built" + + if (kernel_release, config_hash) in SKIPPED_KERNELS: + return "Unsupported kernel" + if bpf: + kernel_version = Version(kernel_release) + if kernel_version < Version('4.14'): + return 'Kernel {} too old to support eBPF (need at least 4.14)'.format(kernel_release) diff --git a/probe_builder/builder/choose_builder.py b/probe_builder/builder/choose_builder.py new file mode 100644 index 0000000..74ad838 --- /dev/null +++ b/probe_builder/builder/choose_builder.py @@ -0,0 +1,136 @@ +import os +import logging +import re + +from ..version import Version + +logger = logging.getLogger(__name__) + +AUTOCONF_RE = re.compile('^#define CONFIG_GCC_VERSION ([0-9][0-9]?)([0-9][0-9])([0-9][0-9])$') +LINUX_COMPILER_RE = re.compile('^#define LINUX_COMPILER "gcc version ([0-9.]+)') +FEDORA_KERNEL_RE = re.compile(r'.*\.(fc[0-9]+)\..*Kernel Configuration$') + + +def get_kernel_distro_tag(kernel_dir): + # Try to find a distro-specific builder based on the version + # embedded in the header of autoconf.h + # /* + # * + # * Automatically generated file; DO NOT EDIT. + # * Linux/x86_64 5.15.5-100.fc34.x86_64 Kernel Configuration + # * + # */ + try: + logger.debug('checking {} for distro tag'.format(os.path.join(kernel_dir, "include/generated/autoconf.h"))) + with open(os.path.join(kernel_dir, "include/generated/autoconf.h")) as fp: + for line in fp: + m = FEDORA_KERNEL_RE.match(line) + if m: + distro_tag = m.group(1) + return distro_tag + except IOError: + pass + + +def choose_distro_dockerfile(builder_source, _builder_distro, kernel_dir): + distro_tag = get_kernel_distro_tag(kernel_dir) + if distro_tag is None: + return + + dockerfile = os.path.join(builder_source, 'Dockerfile.{}'.format(distro_tag)) + if os.path.exists(dockerfile): + return dockerfile, distro_tag + + +def get_kernel_gcc_version(kernel_dir): + # Try to find the gcc version used to build this particular kernel + # Check CONFIG_GCC_VERSION=90201 in the kernel config first + # as 5.8.0 seems to have a different format for the LINUX_COMPILER string + try: + logger.debug('checking {} for gcc version'.format(os.path.join(kernel_dir, "include/generated/autoconf.h"))) + with open(os.path.join(kernel_dir, "include/generated/autoconf.h")) as fp: + for line in fp: + m = AUTOCONF_RE.match(line) + if m: + version = [int(m.group(1)), int(m.group(2)), int(m.group(3))] + return '.'.join(str(s) for s in version) + except IOError: + pass + + # then, try the LINUX_COMPILER macro, in two separate files + try: + logger.debug('checking {} for gcc version'.format(os.path.join(kernel_dir, "include/generated/compile.h"))) + with open(os.path.join(kernel_dir, "include/generated/compile.h")) as fp: + for line in fp: + m = LINUX_COMPILER_RE.match(line) + if m: + return m.group(1) + except IOError: + pass + + # RHEL 6 + try: + logger.debug('checking {} for gcc version'.format(os.path.join(kernel_dir, "include/compile.h"))) + with open(os.path.join(kernel_dir, "include/compile.h")) as fp: + for line in fp: + m = LINUX_COMPILER_RE.match(line) + if m: + return m.group(1) + except IOError: + pass + + # ancient Ubuntu gets an ancient compiler + return '4.8.0' + + +def choose_gcc_dockerfile(builder_source, builder_distro, kernel_dir): + kernel_gcc = get_kernel_gcc_version(kernel_dir) + # We don't really care about the compiler patch levels, only the major/minor version + kernel_gcc = Version(kernel_gcc) + + # Choose the right gcc version from the ones we have available (as Docker images) + # - if we have the exact minor version, use it + # - if not, and there's a newer compiler version, use that + # (as close to the requested version as possible) + # - if there are no newer compilers, use the newest one we have + # it will be older than the requested one but hopefully + # not by much + # + # This means we don't have to exactly follow all distro gcc versions + # (indeed, we don't e.g. for AmazonLinux) but only need to add a new + # Dockerfile when the latest kernel fails to build with our newest + # gcc for that distro + + # The dockerfiles in question all look like .../Dockerfile.centos-gcc4.4 + # or similar. We want to pick the one that's closest to `kernel_gcc` + # (exact match, slightly newer, slightly older, in that order of preference). + # To do that, we iterate over the list of all available dockerfiles (i.e. gcc + # versions) for a particular distribution in ascending version order (oldest->newest). + # To get actual sorting by version numbers, we strip the common prefix first + # and add it back after finding the best available version. What we're sorting is: + # 4.4 + # 9.2 + # 10.0 + # and now we properly realize that gcc 10 is newer than 9.2, not older than 4.4 + prefix = 'Dockerfile.{}-gcc'.format(builder_distro) + dockerfile_versions = [Version(f[len(prefix):]) for f in os.listdir(builder_source) if f.startswith(prefix)] + dockerfile_versions.sort() + logger.debug('available dockerfiles: {!r}'.format(dockerfile_versions)) + + chosen = None + for version in dockerfile_versions: + chosen = version + if version >= kernel_gcc: + break + + dockerfile = prefix + str(chosen) + tag = dockerfile.replace('Dockerfile.', '') + return os.path.join(builder_source, dockerfile), tag + + +def choose_dockerfile(builder_source, builder_distro, kernel_dir): + dockerfile_with_tag = choose_distro_dockerfile(builder_source, builder_distro, kernel_dir) + if dockerfile_with_tag is not None: + return dockerfile_with_tag + + return choose_gcc_dockerfile(builder_source, builder_distro, kernel_dir) diff --git a/probe_builder/builder/distro/__init__.py b/probe_builder/builder/distro/__init__.py new file mode 100644 index 0000000..8b21e15 --- /dev/null +++ b/probe_builder/builder/distro/__init__.py @@ -0,0 +1,19 @@ +from collections import namedtuple +from .centos import CentosBuilder +from .debian import DebianBuilder +from .ubuntu import UbuntuBuilder + + +class Distro(namedtuple('Distro', 'distro builder_distro')): + def builder(self): + try: + return DISTRO_BUILDERS[self.builder_distro]() + except KeyError: + raise ValueError('Unsupported builder distro {}'.format(self.builder_distro)) + + +DISTRO_BUILDERS = { + 'centos': CentosBuilder, + 'debian': DebianBuilder, + 'ubuntu': UbuntuBuilder, +} diff --git a/probe_builder/builder/distro/base_builder.py b/probe_builder/builder/distro/base_builder.py new file mode 100644 index 0000000..b253d7b --- /dev/null +++ b/probe_builder/builder/distro/base_builder.py @@ -0,0 +1,114 @@ +import errno +import logging +import os +import subprocess + +import click + +from probe_builder import docker +from probe_builder.builder import builder_image, choose_builder +from probe_builder.kernel_crawler import crawl_kernels +from probe_builder.kernel_crawler.download import download_batch + +logger = logging.getLogger(__name__) + + +def to_s(s): + if s is None: + return '' + else: + return str(s) + + +class DistroBuilder(object): + + @staticmethod + def md5sum(path): + from hashlib import md5 + digest = md5() + with open(path) as fp: + digest.update(fp.read().encode('utf-8')) + return digest.hexdigest() + + def unpack_kernels(self, workspace, distro, kernels): + raise NotImplementedError + + def hash_config(self, release, target): + raise NotImplementedError + + def get_kernel_dir(self, workspace, release, target): + raise NotImplementedError + + @staticmethod + def build_kernel_impl(config_hash, container_name, image_name, kernel_dir, probe, release, workspace, bpf, + skip_reason): + if bpf: + label = 'eBPF' + args = ['bpf'] + else: + label = 'kmod' + args = [] + + if skip_reason: + logger.info('Skipping build of {} probe {}-{}: {}'.format(label, release, config_hash, skip_reason)) + + docker.rm(container_name) + try: + builder_image.run(workspace, probe, kernel_dir, release, config_hash, container_name, image_name, args) + except subprocess.CalledProcessError: + logger.error("Build failed for {} probe {}-{}".format(label, release, config_hash)) + else: + logger.info("Build for {} probe {}-{} successful".format(label, release, config_hash)) + + def build_kernel(self, workspace, probe, builder_distro, release, target): + config_hash = self.hash_config(release, target) + output_dir = workspace.subdir('output') + + kmod_skip_reason = builder_image.skip_build(probe, output_dir, release, config_hash, False) + ebpf_skip_reason = builder_image.skip_build(probe, output_dir, release, config_hash, True) + if kmod_skip_reason and ebpf_skip_reason: + logger.info('Skipping build of kmod probe {}-{}: {}'.format(release, config_hash, kmod_skip_reason)) + logger.info('Skipping build of eBPF probe {}-{}: {}'.format(release, config_hash, ebpf_skip_reason)) + return + + try: + os.makedirs(output_dir, 0o755) + except OSError as exc: + if exc.errno != errno.EEXIST: + raise + + kernel_dir = self.get_kernel_dir(workspace, release, target) + dockerfile, dockerfile_tag = choose_builder.choose_dockerfile(workspace.builder_source, builder_distro, + kernel_dir) + if not workspace.image_prefix: + builder_image.build(workspace, dockerfile, dockerfile_tag) + + image_name = '{}sysdig-probe-builder:{}'.format(workspace.image_prefix, dockerfile_tag) + container_name = 'sysdig-probe-builder-{}'.format(dockerfile_tag) + + self.build_kernel_impl(config_hash, container_name, image_name, kernel_dir, probe, release, workspace, False, + kmod_skip_reason) + self.build_kernel_impl(config_hash, container_name, image_name, kernel_dir, probe, release, workspace, True, + ebpf_skip_reason) + + def batch_packages(self, kernel_files): + raise NotImplementedError + + def crawl(self, workspace, distro, crawler_distro, download_config=None): + kernels = crawl_kernels(crawler_distro) + try: + os.makedirs(workspace.subdir(distro.distro)) + except OSError as exc: + if exc.errno != errno.EEXIST: + raise + + all_urls = [] + kernel_files = {} + for release, urls in kernels.items(): + all_urls.extend(urls) + kernel_files[release] = [workspace.subdir(distro.distro, os.path.basename(url)) for url in urls] + + with click.progressbar(all_urls, label='Downloading kernels', item_show_func=to_s) as all_urls: + download_batch(all_urls, workspace.subdir(distro.distro), download_config) + + return kernel_files diff --git a/probe_builder/builder/distro/centos.py b/probe_builder/builder/distro/centos.py new file mode 100644 index 0000000..eb27a9f --- /dev/null +++ b/probe_builder/builder/distro/centos.py @@ -0,0 +1,49 @@ +import logging +import os +import re + +import click + +from probe_builder.builder import toolkit +from .base_builder import DistroBuilder + +logger = logging.getLogger(__name__) + + +class CentosBuilder(DistroBuilder): + RPM_KERNEL_RELEASE_RE = re.compile(r'^kernel-(uek-)?(core-|devel-|modules-)?(?P.*)\.rpm$') + + def unpack_kernels(self, workspace, distro, kernels): + kernel_dirs = dict() + + for release, rpms in kernels.items(): + target = workspace.subdir('build', distro, release) + kernel_dirs[release] = target + + for rpm in rpms: + rpm_basename = os.path.basename(rpm) + marker = os.path.join(target, '.' + rpm_basename) + toolkit.unpack_rpm(workspace, rpm, target, marker) + + return kernel_dirs + + def hash_config(self, release, target): + try: + return self.md5sum(os.path.join(target, 'boot/config-{}'.format(release))) + except IOError: + return self.md5sum(os.path.join(target, 'lib/modules/{}/config'.format(release))) + + def get_kernel_dir(self, workspace, release, target): + return workspace.subdir(target, 'usr/src/kernels', release) + + def batch_packages(self, kernel_files): + kernels = dict() + for rpm in kernel_files: + rpm_filename = os.path.basename(rpm) + m = self.RPM_KERNEL_RELEASE_RE.match(rpm_filename) + if not m: + click.echo("Filename {} doesn't look like a kernel package".format(rpm_filename), err=True) + continue + kernels.setdefault(m.group('release'), []).append(rpm) + + return kernels diff --git a/probe_builder/builder/distro/debian.py b/probe_builder/builder/distro/debian.py new file mode 100644 index 0000000..76e136e --- /dev/null +++ b/probe_builder/builder/distro/debian.py @@ -0,0 +1,115 @@ +import logging +import os +import re + +import click + +from probe_builder.builder import toolkit +from probe_builder.builder.distro.base_builder import DistroBuilder + +logger = logging.getLogger(__name__) + + +class DebianBuilder(DistroBuilder): + KERNEL_VERSION_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+(-[^-]+)?)-(?P[a-z0-9]+)') + KBUILD_PACKAGE_RE = re.compile(r'linux-kbuild-(?P[0-9]\.[0-9]+)_') + + @staticmethod + def _reparent_link(base_path, release, link_name): + build_link_path = os.path.join(base_path, 'lib/modules', release, link_name) + build_link_target = os.readlink(build_link_path) + if build_link_target.startswith('/'): + build_link_target = '../../..' + build_link_target + os.unlink(build_link_path) + os.symlink(build_link_target, build_link_path) + + def unpack_kernels(self, workspace, distro, kernels): + kernel_dirs = dict() + + for release, debs in kernels.items(): + version, arch = release.rsplit('-', 1) + + target = workspace.subdir('build', distro, version) + kernel_dirs[release] = target + + for deb in debs: + deb_basename = os.path.basename(deb) + marker = os.path.join(target, '.' + deb_basename) + toolkit.unpack_deb(workspace, deb, target, marker) + + for release, target in kernel_dirs.items(): + kerneldir = self.get_kernel_dir(workspace, release, target) + + base_path = workspace.subdir(target) + self._reparent_link(base_path, release, 'build') + self._reparent_link(base_path, release, 'source') + + makefile = os.path.join(kerneldir, 'Makefile') + makefile_orig = makefile + '.sysdig-orig' + target_in_container = target.replace(workspace.workspace, '/build/probe') + if not os.path.exists(makefile_orig): + with open(makefile) as fp: + orig = fp.read() + with open(makefile_orig, 'w') as fp: + fp.write(orig) + patched = orig.replace('/usr/src', os.path.join(target_in_container, 'usr/src')) + with open(makefile, 'w') as fp: + fp.write(patched) + + return kernel_dirs + + def hash_config(self, release, target): + return self.md5sum(os.path.join(target, 'boot/config-{}'.format(release))) + + def get_kernel_dir(self, workspace, release, target): + return workspace.subdir(target, 'usr/src/linux-headers-{}'.format(release)) + + def batch_packages(self, kernel_files): + kernels = dict() + + # similar to ubuntu, debian has two version numbers per (kernel) package + # e.g. linux-headers-5.10.0-8-amd64_5.10.46-5_amd64.deb + # + # fortunately, we unpack to 5.10.0-8 and look for 5.10.0-8-amd64 inside + # so we can easily find the requested directory name from the release + # also, for every minor kernel version (like 5.10) there's a matching + # kbuild-x.xx package that we need to include in the build directory + + common_packages = {} + arch_packages = {} + kbuild_packages = {} + + for deb in kernel_files: + deb_basename = os.path.basename(deb) + + if 'linux-kbuild' in deb: + m = self.KBUILD_PACKAGE_RE.search(deb_basename) + if not m: + click.echo("Filename {} doesn't look like a kbuild package (no version)".format(deb), err=True) + continue + kbuild_packages[m.group('major')] = deb + continue + + m = self.KERNEL_VERSION_RE.search(deb_basename) + if not m: + click.echo("Filename {} doesn't look like a kernel package (no version)".format(deb), err=True) + continue + version = m.group('version') + arch = m.group('arch') + + if arch == 'common': + common_packages.setdefault(version, []).append(deb) + else: + arch_packages.setdefault(version, {}).setdefault(arch, []).append(deb) + + for version, per_arch in arch_packages.items(): + for arch, packages in per_arch.items(): + packages.extend(common_packages.get(version, [])) + major, minor, _ = version.split('.', 2) + major_version = '{}.{}'.format(major, minor) + kbuild_pkg = kbuild_packages.get(major_version) + if kbuild_pkg: + packages.append(kbuild_pkg) + kernels['{}-{}'.format(version, arch)] = packages + + return kernels diff --git a/probe_builder/builder/distro/ubuntu.py b/probe_builder/builder/distro/ubuntu.py new file mode 100644 index 0000000..b85cfc4 --- /dev/null +++ b/probe_builder/builder/distro/ubuntu.py @@ -0,0 +1,103 @@ +import logging +import os +import re + +import click + +from probe_builder.builder import toolkit +from .base_builder import DistroBuilder + +logger = logging.getLogger(__name__) + + +class UbuntuBuilder(DistroBuilder): + KERNEL_VERSION_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+)\.(?P[0-9][^_]*)') + KERNEL_RELEASE_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+-[a-z]+)') + + def unpack_kernels(self, workspace, distro, kernels): + kernel_dirs = dict() + + for release, debs in kernels: + # we don't have the version handy, so gather it from all the package + # names in the release. these all should match but at this point we can + # only validate that it is so + version = None + + for deb in debs: + deb_basename = os.path.basename(deb) + m = self.KERNEL_VERSION_RE.search(deb_basename) + if not m: + raise ValueError("{} doesn't look like a kernel package".format(deb)) + if version is None: + version = (m.group('version'), m.group('update')) + else: + new_version = (m.group('version'), m.group('update')) + if version != new_version: + raise ValueError("Unexpected version {}/{} from package {} (expected {}/{})".format( + new_version[0], new_version[1], deb, + version[0], version[1] + )) + + target = workspace.subdir('build', distro, version[0], version[1]) + kernel_dirs[release] = target + + for deb in debs: + deb_basename = os.path.basename(deb) + marker = os.path.join(target, '.' + deb_basename) + toolkit.unpack_deb(workspace, deb, target, marker) + + return kernel_dirs + + def hash_config(self, release, target): + return self.md5sum(os.path.join(target, 'boot/config-{}'.format(release))) + + def get_kernel_dir(self, workspace, release, target): + return workspace.subdir(target, 'usr/src/linux-headers-{}'.format(release)) + + def batch_packages(self, kernel_files): + kernels = [] + + # ubuntu kernels have two separate versions + # e.g. the package linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb + # has a "version" (used in the target dir) of 5.4.0-86/97 + # and a "release" (describing the paths inside the archive) of 5.4.0-86-generic + # + # sadly, it's not as straightforward as we'd wish. there's also a package + # linux-headers-5.4.0-86_5.4.0-86.97_all.deb which is a dependency (potentially) + # shared between multiple packages. + # + # so we need to unpack the debs into the "version" directory and then can end + # up with multiple kernels in that directory. this means we can't return + # a dict, but a list of tuples + + version_to_releases = dict() + releases = dict() + version_files = dict() + + for deb in kernel_files: + deb_basename = os.path.basename(deb) + + m = self.KERNEL_VERSION_RE.search(deb_basename) + if not m: + click.echo("Filename {} doesn't look like a kernel package (no version)".format(deb), err=True) + continue + version = m.group('version') + update = m.group('update') + version = '{}/{}'.format(version, update) + + m = self.KERNEL_RELEASE_RE.search(deb_basename) + if m: + release = m.group('release') + version_to_releases.setdefault(version, set()).add(release) + releases.setdefault(release, []).append(deb) + else: + version_files.setdefault(version, []).append(deb) + + for version, release_ids in version_to_releases.items(): + for release_id in release_ids: + release_files = releases[release_id] + # add all the shared files that end up in the same directory + release_files.extend(version_files.get(version, [])) + kernels.append((release_id, release_files)) + + return kernels diff --git a/probe_builder/builder/toolkit.py b/probe_builder/builder/toolkit.py new file mode 100644 index 0000000..40e9589 --- /dev/null +++ b/probe_builder/builder/toolkit.py @@ -0,0 +1,80 @@ +import errno +import logging + +from .. import docker, spawn +import os + +logger = logging.getLogger(__name__) + + +HAVE_TOOLKIT = False + + +def toolkit_image(image_prefix): + return '{}sysdig-probe-builder:toolkit'.format(image_prefix) + + +def build_toolkit(workspace): + global HAVE_TOOLKIT + if HAVE_TOOLKIT: + return + image = toolkit_image(workspace.image_prefix) + dockerfile = os.path.join(workspace.builder_source, 'Dockerfile.toolkit') + docker.build(image, dockerfile, workspace.builder_source) + HAVE_TOOLKIT = True + + +def unpack_rpm(workspace, rpm_file, target_dir, marker): + if marker is not None and os.path.exists(marker): + logger.info('{} already exists, not unpacking {}'.format(marker, rpm_file)) + return + + rpm_file = os.path.abspath(rpm_file) + target_dir = os.path.abspath(target_dir) + + if not workspace.in_docker(): + build_toolkit(workspace) + volumes = [ + docker.DockerVolume(rpm_file, rpm_file, True), + docker.DockerVolume(target_dir, target_dir, False), + ] + docker.run(toolkit_image(workspace.image_prefix), volumes, ['rpm', rpm_file, target_dir], []) + else: + try: + os.makedirs(target_dir, 0o755) + except OSError as exc: + if exc.errno != errno.EEXIST: + raise + spawn.pipe(["/builder/toolkit-entrypoint.sh", "rpm", rpm_file, target_dir]) + + if marker is not None: + with open(marker, 'w') as marker_fp: + marker_fp.write('\n') + + +def unpack_deb(workspace, deb_file, target_dir, marker): + if marker is not None and os.path.exists(marker): + logger.info('{} already exists, not unpacking {}'.format(marker, deb_file)) + return + + deb_file = os.path.abspath(deb_file) + target_dir = os.path.abspath(target_dir) + + deb_file = workspace.host_dir(deb_file) + target_dir = workspace.host_dir(target_dir) + + if deb_file is None: + raise ValueError('Package {} not within workspace {}'.format(deb_file, workspace.workspace)) + + if target_dir is None: + raise ValueError('Target directory {} not within workspace {}'.format(target_dir, workspace.workspace)) + + volumes = [ + docker.DockerVolume(deb_file, deb_file, True), + docker.DockerVolume(target_dir, target_dir, False), + ] + docker.run('ubuntu:latest', volumes, ['dpkg', '-x', deb_file, target_dir], []) + + if marker is not None: + with open(marker, 'w') as marker_fp: + marker_fp.write('\n') diff --git a/probe_builder/context.py b/probe_builder/context.py new file mode 100644 index 0000000..d390514 --- /dev/null +++ b/probe_builder/context.py @@ -0,0 +1,40 @@ +from collections import namedtuple +import os + + +class Context(object): + pass + + +class Workspace( + namedtuple( + 'Workspace', 'mount_mapping workspace builder_source image_prefix')): + + def host_dir(self, container_dir): + if self.mount_mapping is None: + return container_dir + for (container_mount, host_mount) in self.mount_mapping: + if container_dir == container_mount: + return host_mount + elif container_dir.startswith(container_mount + '/'): + return container_dir.replace(container_mount, host_mount) + + def in_docker(self): + return self.mount_mapping is not None + + def host_workspace(self): + return self.host_dir(self.workspace) + + def subdir(self, *args): + return os.path.join(self.workspace, *args) + + +class Probe(namedtuple('Probe', 'sysdig_dir probe_name probe_version probe_device_name')): + pass + + +class DownloadConfig(namedtuple('DownloadConfig', 'concurrency timeout retries extra_headers')): + + @staticmethod + def default(): + return DownloadConfig(1, None, 1, None) diff --git a/probe_builder/disable_ipv6.py b/probe_builder/disable_ipv6.py new file mode 100644 index 0000000..0ef60a0 --- /dev/null +++ b/probe_builder/disable_ipv6.py @@ -0,0 +1,11 @@ +import socket +import requests.packages.urllib3.util.connection as urllib3_cn + + +def allowed_gai_family(): + return socket.AF_INET + + +urllib3_cn.allowed_gai_family = allowed_gai_family + + diff --git a/probe_builder/docker.py b/probe_builder/docker.py new file mode 100644 index 0000000..398c367 --- /dev/null +++ b/probe_builder/docker.py @@ -0,0 +1,85 @@ +import json +import os + +from .spawn import pipe, json_pipe + + +class DockerVolume(object): + host_path = None + container_path = None + readonly = True + + def __init__(self, host_path, container_path, readonly=True): + self.host_path = host_path + self.container_path = container_path + self.readonly = readonly + + def __str__(self): + if self.readonly: + return '{}:{}:ro'.format(self.host_path, self.container_path) + else: + return '{}:{}'.format(self.host_path, self.container_path) + + +class EnvVar(object): + name = None + value = None + + def __init__(self, name, value): + self.name = name + self.value = value + + def __str__(self): + return '{}={}'.format(self.name, self.value) + + +def run(image, volumes, command, env, privileged=False, name=None): + cmd = ['docker', 'run', '--rm'] + if privileged: + cmd.append('--privileged') + for volume in volumes: + cmd.append('-v') + cmd.append(str(volume)) + for var in env: + cmd.append('-e') + cmd.append(str(var)) + if name is not None: + cmd.append('--name') + cmd.append(str(name)) + cmd.append(image) + cmd.extend(command) + + pipe(cmd) + + +def build(image, dockerfile, context_dir): + pipe(['docker', 'build', '-t', str(image), '-f', str(dockerfile), str(context_dir)]) + remove_dangling_images() + + +def rm(container_name): + pipe(['docker', 'rm', container_name], silence_errors=True) + + +def inspect_self(): + try: + hostname = os.uname()[1] + return json_pipe(['docker', 'inspect', hostname], silence_errors=True) + except Exception: + pass + + +def get_mount_mapping(): + inspect = inspect_self() + if inspect is None: + return + mounts = [] + for mount in inspect[0]['Mounts']: + mounts.append((mount['Destination'], mount['Source'])) + return mounts + + +def remove_dangling_images(): + images = pipe(['docker', 'images', '-q', '-f', 'dangling=true']) + if images: + pipe(['docker', 'rmi'] + images, silence_errors=True) diff --git a/probe_builder/git.py b/probe_builder/git.py new file mode 100644 index 0000000..791615f --- /dev/null +++ b/probe_builder/git.py @@ -0,0 +1,9 @@ +import os + +from probe_builder import spawn + + +def clone(repo_url, branch, target_dir): + if not os.path.exists(target_dir): + spawn.pipe(['git', 'clone', repo_url, target_dir]) + spawn.pipe(['git', 'checkout', branch], silence_errors=False, cwd=target_dir) diff --git a/probe_builder/kernel_crawler/__init__.py b/probe_builder/kernel_crawler/__init__.py new file mode 100644 index 0000000..f5c09c3 --- /dev/null +++ b/probe_builder/kernel_crawler/__init__.py @@ -0,0 +1,28 @@ +from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror +from .centos import CentosMirror +from .fedora import FedoraMirror +from .oracle import Oracle6Mirror, Oracle7Mirror, Oracle8Mirror +from .photon_os import PhotonOsMirror + +from .debian import DebianMirror +from .ubuntu import UbuntuMirror + +DISTROS = { + 'AmazonLinux': AmazonLinux1Mirror, + 'AmazonLinux2': AmazonLinux2Mirror, + 'CentOS': CentosMirror, + 'Fedora': FedoraMirror, + 'Oracle6': Oracle6Mirror, + 'Oracle7': Oracle7Mirror, + 'Oracle8': Oracle8Mirror, + 'PhotonOS': PhotonOsMirror, + + 'Debian': DebianMirror, + 'Ubuntu': UbuntuMirror, +} + + +def crawl_kernels(distro, version=''): + dist = DISTROS[distro] + + return dist().get_package_tree(version) diff --git a/probe_builder/kernel_crawler/amazonlinux.py b/probe_builder/kernel_crawler/amazonlinux.py new file mode 100644 index 0000000..c612e4b --- /dev/null +++ b/probe_builder/kernel_crawler/amazonlinux.py @@ -0,0 +1,58 @@ +#!/usr/bin/env python +import sys + +import click + +from . import repo +from . import rpm +from probe_builder.kernel_crawler.download import get_url + + +def get_al_repo(repo_root, repo_release): + repo_pointer = repo_root + repo_release + "/mirror.list" + resp = get_url(repo_pointer) + return resp.splitlines()[0].replace('$basearch', 'x86_64') + '/' + + +class AmazonLinux1Mirror(repo.Distro): + AL1_REPOS = [ + 'latest/updates', + 'latest/main', + '2017.03/updates', + '2017.03/main', + '2017.09/updates', + '2017.09/main', + '2018.03/updates', + '2018.03/main', + ] + + def __init__(self): + super(AmazonLinux1Mirror, self).__init__([]) + + def list_repos(self): + repo_urls = set() + with click.progressbar( + self.AL1_REPOS, label='Checking repositories', file=sys.stderr, item_show_func=repo.to_s) as repos: + for r in repos: + repo_urls.add(get_al_repo("http://repo.us-east-1.amazonaws.com/", r)) + return [rpm.RpmRepository(url) for url in sorted(repo_urls)] + + +class AmazonLinux2Mirror(repo.Distro): + AL2_REPOS = [ + 'core/2.0', + 'core/latest', + 'extras/kernel-5.4/latest', + 'extras/kernel-5.10/latest', + ] + + def __init__(self): + super(AmazonLinux2Mirror, self).__init__([]) + + def list_repos(self): + repo_urls = set() + with click.progressbar( + self.AL2_REPOS, label='Checking repositories', file=sys.stderr, item_show_func=repo.to_s) as repos: + for r in repos: + repo_urls.add(get_al_repo("http://amazonlinux.us-east-1.amazonaws.com/2/", r + '/x86_64')) + return [rpm.RpmRepository(url) for url in sorted(repo_urls)] diff --git a/probe_builder/kernel_crawler/centos.py b/probe_builder/kernel_crawler/centos.py new file mode 100644 index 0000000..4edc2c3 --- /dev/null +++ b/probe_builder/kernel_crawler/centos.py @@ -0,0 +1,27 @@ +from . import repo +from . import rpm + + +def v7_only(ver): + return ver.startswith('7') + + +def v8_only(ver): + return ver.startswith('8') + + +def v6_or_v7(ver): + return ver.startswith('6') or ver.startswith('7') + + +class CentosMirror(repo.Distro): + def __init__(self): + mirrors = [ + rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/x86_64/', v7_only), + rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/x86_64/', v7_only), + rpm.RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/x86_64/os/', v8_only), + rpm.RpmMirror('https://vault.centos.org/', 'os/x86_64/', v6_or_v7), + rpm.RpmMirror('https://vault.centos.org/', 'updates/x86_64/', v6_or_v7), + rpm.RpmMirror('https://vault.centos.org/', 'BaseOS/x86_64/os/', v8_only), + ] + super(CentosMirror, self).__init__(mirrors) diff --git a/probe_builder/kernel_crawler/deb.py b/probe_builder/kernel_crawler/deb.py new file mode 100644 index 0000000..e373b32 --- /dev/null +++ b/probe_builder/kernel_crawler/deb.py @@ -0,0 +1,250 @@ +#!/usr/bin/env python + +from __future__ import print_function + +import re +import sys + +import click +import requests +from lxml import html + +from . import repo +from probe_builder.kernel_crawler.download import get_first_of, get_url + + +class IncompletePackageListException(Exception): + pass + + +class DebRepository(repo.Repository): + + def __init__(self, repo_base, repo_name): + self.repo_base = repo_base + self.repo_name = repo_name + + def __str__(self): + return self.repo_base + self.repo_name + + @classmethod + def scan_packages(cls, stream): + """ + Parse a Packages file into individual packages metadata. + """ + current_package = {} + packages = {} + for line in stream: + line = line.rstrip() + if line == '': + name = current_package['Package'] + depends = current_package.get('Depends', []) + packages[name] = { + 'Depends': set(depends), + 'Version': current_package['Version'], + 'Filename': current_package['Filename'], + } + current_package = {} + continue + # ignore multiline values + if line.startswith(' '): + continue + try: + key, value = line.split(': ', 1) + if key in ('Provides', 'Depends'): + value = value.split(', ') + except ValueError: + print(line) + raise + current_package[key] = value + + if current_package: + name = current_package['Package'] + depends = current_package.get('Depends', []) + packages[name] = { + 'Depends': set(depends), + 'Version': current_package['Version'], + 'Filename': current_package['Filename'], + } + + return packages + + KERNEL_PACKAGE_PATTERN = re.compile(r'^linux-.*?-[0-9]\.[0-9]+\.[0-9]+') + KERNEL_RELEASE_UPDATE = re.compile(r'^([0-9]+\.[0-9]+\.[0-9]+-[0-9]+)\.(.+)') + + @classmethod + def is_kernel_package(cls, dep): + return (cls.KERNEL_PACKAGE_PATTERN.search(dep) and + not dep.endswith('-dbg') and + 'modules-extra' not in dep and + 'linux-source' not in dep and + 'tools' not in dep) or 'linux-kbuild' in dep + + @classmethod + def filter_kernel_packages(cls, deps): + return [dep for dep in deps if (cls.is_kernel_package(dep))] + + @classmethod + def transitive_dependencies(cls, packages, pkg_name, dependencies=None, level=0, cache=None): + if cache is None: + cache = {} + if dependencies is None: + dependencies = {pkg_name} + pkg_deps = cls.filter_kernel_packages(packages[pkg_name]['Depends']) + for dep in pkg_deps: + dep = dep.split(None, 1)[0] + # Note: this always takes the first branch of alternative + # dependencies like 'foo|bar'. In the kernel crawler, we don't care + # + # also, apparently libc6 and libgcc1 depend on each other + # so we only filter for kernel packages + if dep in packages: + if dep not in dependencies: + if dep not in cache: + dependencies |= {dep} + deps = {dep} + deps |= cls.transitive_dependencies(packages, dep, dependencies, level + 1, cache) + cache[dep] = deps + dependencies |= cache[dep] + else: + raise (IncompletePackageListException("{} not in package list".format(dep))) + return dependencies + + @classmethod + def get_package_deps(cls, packages, pkg): + all_deps = set() + if not cls.is_kernel_package(pkg): + return set() + for dep in cls.filter_kernel_packages(cls.transitive_dependencies(packages, pkg)): + all_deps.add(packages[dep]['URL']) + return all_deps + + def get_package_list(self, deps, package_filter): + kernel_packages = [] + for p in deps.keys(): + if not p.startswith('linux-headers-'): + continue + release = p.replace('linux-headers-', '') + if 'linux-modules-{}'.format(release) in deps: + kernel_packages.append(p) + kernel_packages.append('linux-modules-{}'.format(release)) + elif 'linux-image-{}'.format(release) in deps: + kernel_packages.append(p) + kernel_packages.append('linux-image-{}'.format(release)) + + if not package_filter: + return kernel_packages + # return [dep for dep in kernel_packages if self.is_kernel_package(dep) and not dep.endswith('-dbg')] + + kernel_packages = set(kernel_packages) + linux_modules = 'linux-modules-{}'.format(package_filter) + linux_headers = 'linux-headers-{}'.format(package_filter) + linux_image = 'linux-image-{}'.format(package_filter) + if package_filter in deps: + return [package_filter] + elif linux_modules in kernel_packages and linux_headers in deps: + return [linux_modules, linux_headers] + elif linux_image in kernel_packages and linux_headers in deps: + return [linux_image, linux_headers] + else: + return [k for k in kernel_packages if package_filter in k] + + def get_raw_package_db(self): + try: + repo_packages = get_first_of([ + self.repo_base + self.repo_name + '/Packages.xz', + self.repo_base + self.repo_name + '/Packages.gz', + ]) + except requests.HTTPError: + return {} + + repo_packages = repo_packages.splitlines(True) + packages = self.scan_packages(repo_packages) + for name, details in packages.items(): + details['URL'] = self.repo_base + details['Filename'] + return packages + + @classmethod + def build_package_tree(cls, packages, package_list): + deps = {} + with click.progressbar(package_list, label='Building dependency tree', file=sys.stderr, + item_show_func=repo.to_s) as pkgs: + for pkg in pkgs: + pv = packages[pkg]['Version'] + m = cls.KERNEL_RELEASE_UPDATE.match(pv) + if m: + pv = '{}/{}'.format(m.group(1), m.group(2)) + try: + deps.setdefault(pv, set()).update(cls.get_package_deps(packages, pkg)) + except IncompletePackageListException: + pass + for pkg, dep_list in deps.items(): + have_headers = False + for dep in dep_list: + if 'linux-headers' in dep: + have_headers = True + if not have_headers: + del deps[pkg] + return deps + + def get_package_tree(self, version=''): + packages = self.get_raw_package_db() + package_list = self.get_package_list(packages, version) + return self.build_package_tree(packages, package_list) + + +class DebMirror(repo.Mirror): + + def __init__(self, base_url, repo_filter=None): + self.base_url = base_url + if repo_filter is None: + repo_filter = lambda _: True + self.repo_filter = repo_filter + + def __str__(self): + return self.base_url + + def scan_repo(self, dist): + repos = {} + all_comps = set() + release = get_url(self.base_url + dist + 'Release') + for line in release.splitlines(False): + if line.startswith('Components: '): + for comp in line.split(None)[1:]: + if comp in ('main', 'updates', 'updates/main'): + if dist.endswith('updates/') and comp.startswith('updates/'): + comp = comp.replace('updates/', '') + all_comps.add(comp) + break + for comp in all_comps: + url = dist + comp + '/binary-amd64/' + repos[url] = DebRepository(self.base_url, url) + return repos + + def list_repos(self): + dists_url = self.base_url + 'dists/' + dists = requests.get(dists_url) + dists.raise_for_status() + dists = dists.content + doc = html.fromstring(dists, dists_url) + dists = [dist for dist in doc.xpath('/html/body//a[not(@href="../")]/@href') + if dist.endswith('/') + and not dist.startswith('/') + and not dist.startswith('?') + and not dist.startswith('http') + and self.repo_filter(dist) + ] + + repos = {} + with click.progressbar( + dists, label='Scanning {}'.format(self.base_url), file=sys.stderr, item_show_func=repo.to_s) as dists: + for dist in dists: + try: + repos.update(self.scan_repo('dists/{}'.format(dist))) + except requests.HTTPError: + pass + try: + repos.update(self.scan_repo('dists/{}updates/'.format(dist))) + except requests.HTTPError: + pass + + return sorted(repos.values()) diff --git a/probe_builder/kernel_crawler/debian.py b/probe_builder/kernel_crawler/debian.py new file mode 100644 index 0000000..e41e64f --- /dev/null +++ b/probe_builder/kernel_crawler/debian.py @@ -0,0 +1,36 @@ +from . import repo +from . import deb +import click +import sys + + +def repo_filter(dist): + return 'stable' not in dist and 'testing' not in dist and not dist.startswith('Debian') + + +class DebianLikeMirror(repo.Distro): + + def get_package_tree(self, version=''): + all_packages = {} + all_kernel_packages = [] + packages = {} + repos = self.list_repos() + with click.progressbar(repos, label='Listing packages', file=sys.stderr, item_show_func=repo.to_s) as repos: + for repository in repos: + repo_packages = repository.get_raw_package_db() + all_packages.update(repo_packages) + kernel_packages = repository.get_package_list(repo_packages, version) + all_kernel_packages.extend(kernel_packages) + + for release, dependencies in deb.DebRepository.build_package_tree(all_packages, all_kernel_packages).items(): + packages.setdefault(release, set()).update(dependencies) + return packages + + +class DebianMirror(DebianLikeMirror): + def __init__(self): + mirrors = [ + deb.DebMirror('https://mirrors.edge.kernel.org/debian/', repo_filter), + deb.DebMirror('http://security.debian.org/', repo_filter), + ] + super(DebianMirror, self).__init__(mirrors) diff --git a/probe_builder/kernel_crawler/download.py b/probe_builder/kernel_crawler/download.py new file mode 100644 index 0000000..f3310a9 --- /dev/null +++ b/probe_builder/kernel_crawler/download.py @@ -0,0 +1,105 @@ +import bz2 +import zlib +import requests +import shutil +from threading import Thread +import os + +from probe_builder.context import DownloadConfig + +try: + import lzma +except ImportError: + from backports import lzma + +try: + from queue import Queue +except ImportError: + from Queue import Queue + + +def download_file(url, output_file, download_config=None): + if download_config is None: + download_config = DownloadConfig.default() + resp = None + for i in range(download_config.retries): + with open(output_file, 'ab') as fp: + size = fp.tell() + if size > 0: + headers = {'Range': 'bytes={}-'.format(size)} + else: + headers = {} + if download_config.extra_headers is not None: + headers.update(download_config.extra_headers) + resp = requests.get(url, headers=headers, stream=True, timeout=download_config.timeout) + if resp.status_code == 206: + # yay, resuming the download + shutil.copyfileobj(resp.raw, fp) + return + elif resp.status_code == 416: + return # "requested range not satisfiable", we have the whole thing + elif resp.status_code == 200: + fp.truncate(0) # have to start over + shutil.copyfileobj(resp.raw, fp) + return + + resp.raise_for_status() + raise requests.HTTPError('Unexpected status code {}'.format(resp.status_code)) + + +def download_batch(urls, output_dir, download_config=None): + if download_config is None: + download_config = DownloadConfig.default() + q = Queue(1) + + def dl(): + while True: + url = q.get() + output_file = os.path.join(output_dir, os.path.basename(url)) + download_file(url, output_file, download_config) + q.task_done() + + for i in range(download_config.concurrency): + t = Thread(target=dl) + t.daemon = True + t.start() + + for batch_url in urls: + q.put(batch_url) + + q.join() + + +def get_url(url): + resp = requests.get(url) + resp.raise_for_status() + if url.endswith('.gz'): + return zlib.decompress(resp.content, 47) + elif url.endswith('.xz'): + return lzma.decompress(resp.content) + elif url.endswith('.bz2'): + return bz2.decompress(resp.content) + else: + return resp.content + + +def get_first_of(urls): + last_exc = Exception('Empty url list') + for url in urls: + try: + return get_url(url) + except Exception as exc: + last_exc = exc + raise last_exc + + +if __name__ == '__main__': + import sys + + _url = sys.argv[1] + try: + _output_file = sys.argv[2] + except IndexError: + _output_file = os.path.basename(_url) + + download_file(_url, _output_file) diff --git a/probe_builder/kernel_crawler/fedora.py b/probe_builder/kernel_crawler/fedora.py new file mode 100644 index 0000000..3cc947d --- /dev/null +++ b/probe_builder/kernel_crawler/fedora.py @@ -0,0 +1,19 @@ +from probe_builder.kernel_crawler import repo, rpm + + +def repo_filter(version): + """Don't bother testing ancient versions""" + try: + return int(version.rstrip('/')) >= 32 + except ValueError: + return False + + +class FedoraMirror(repo.Distro): + def __init__(self): + mirrors = [ + rpm.RpmMirror('https://mirrors.kernel.org/fedora/releases/', 'Everything/x86_64/os/', repo_filter), + ] + super(FedoraMirror, self).__init__(mirrors) + + diff --git a/probe_builder/kernel_crawler/oracle.py b/probe_builder/kernel_crawler/oracle.py new file mode 100644 index 0000000..424fcbf --- /dev/null +++ b/probe_builder/kernel_crawler/oracle.py @@ -0,0 +1,55 @@ +from . import repo +from . import rpm + + +class OracleRepository(rpm.RpmRepository): + @classmethod + def kernel_package_query(cls): + return '''(name IN ('kernel', 'kernel-devel', 'kernel-uek', 'kernel-uek-devel') AND arch = 'x86_64')''' + + +class Oracle6Mirror(repo.Distro): + OL6_REPOS = [ + 'http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/', + + ] + + def __init__(self): + super(Oracle6Mirror, self).__init__([]) + + def list_repos(self): + return [OracleRepository(url) for url in self.OL6_REPOS] + + +class Oracle7Mirror(repo.Distro): + OL7_REPOS = [ + 'http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/', + ] + + def __init__(self): + super(Oracle7Mirror, self).__init__([]) + + def list_repos(self): + return [OracleRepository(url) for url in self.OL7_REPOS] + + +class Oracle8Mirror(repo.Distro): + OL8_REPOS = [ + 'http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/', + 'http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/', + ] + + def __init__(self): + super(Oracle8Mirror, self).__init__([]) + + def list_repos(self): + return [OracleRepository(url) for url in self.OL8_REPOS] diff --git a/probe_builder/kernel_crawler/photon_os.py b/probe_builder/kernel_crawler/photon_os.py new file mode 100644 index 0000000..f25afa8 --- /dev/null +++ b/probe_builder/kernel_crawler/photon_os.py @@ -0,0 +1,27 @@ +from . import rpm +from . import repo + + +class PhotonOsRepository(rpm.RpmRepository): + @classmethod + def kernel_package_query(cls): + return '''((name = 'linux' OR name LIKE 'linux-%devel%') AND name NOT LIKE '%esx%')''' + + +class PhotonOsMirror(repo.Distro): + PHOTON_OS_VERSIONS = [ + ('3.0', '_release'), + ('3.0', '_updates'), + ('4.0', ''), + ('4.0', '_release'), + ('4.0', '_updates'), + ] + + def __init__(self): + super(PhotonOsMirror, self).__init__([]) + + def list_repos(self): + return [ + PhotonOsRepository('https://packages.vmware.com/photon/{v}/photon{r}_{v}_x86_64/'.format( + v=version, r=repo_tag)) + for version, repo_tag in self.PHOTON_OS_VERSIONS] diff --git a/probe_builder/kernel_crawler/repo.py b/probe_builder/kernel_crawler/repo.py new file mode 100644 index 0000000..939f944 --- /dev/null +++ b/probe_builder/kernel_crawler/repo.py @@ -0,0 +1,45 @@ +from __future__ import print_function + +import click +import sys + + +class Repository(object): + def get_package_tree(self, version=''): + raise NotImplementedError + + def __str__(self): + raise NotImplementedError + + +def to_s(s): + if s is None: + return '' + return str(s) + + +class Mirror(object): + def list_repos(self): + raise NotImplementedError + + def get_package_tree(self, version=''): + packages = {} + repos = self.list_repos() + with click.progressbar(repos, label='Listing packages', file=sys.stderr, item_show_func=to_s) as repos: + for repo in repos: + for release, dependencies in repo.get_package_tree(version).items(): + packages.setdefault(release, set()).update(dependencies) + return packages + + +class Distro(Mirror): + def __init__(self, mirrors): + self.mirrors = mirrors + + def list_repos(self): + repos = [] + with click.progressbar( + self.mirrors, label='Checking repositories', file=sys.stderr, item_show_func=to_s) as mirrors: + for mirror in mirrors: + repos.extend(mirror.list_repos()) + return repos diff --git a/probe_builder/kernel_crawler/rpm.py b/probe_builder/kernel_crawler/rpm.py new file mode 100644 index 0000000..1ddba8a --- /dev/null +++ b/probe_builder/kernel_crawler/rpm.py @@ -0,0 +1,112 @@ +#!/usr/bin/env python +from __future__ import print_function + +import requests +from lxml import etree, html +import sqlite3 +import tempfile + +from . import repo +from probe_builder.kernel_crawler.download import get_url + +try: + import lzma +except ImportError: + from backports import lzma + + +class RpmRepository(repo.Repository): + def __init__(self, base_url): + self.base_url = base_url + + def __str__(self): + return self.base_url + + @classmethod + def get_loc_by_xpath(cls, text, expr): + e = etree.fromstring(text) + loc = e.xpath(expr, namespaces={ + 'common': 'http://linux.duke.edu/metadata/common', + 'repo': 'http://linux.duke.edu/metadata/repo', + 'rpm': 'http://linux.duke.edu/metadata/rpm' + }) + return loc[0] + + @classmethod + def kernel_package_query(cls): + return '''name IN ('kernel', 'kernel-devel')''' + + @classmethod + def build_base_query(cls, version=''): + base_query = '''SELECT version || '-' || release || '.' || arch, pkgkey FROM packages WHERE {}'''.format( + cls.kernel_package_query()) + if not version: + return base_query, () + else: + return base_query + ''' AND (version = ? OR version || '-' || "release" = ?)''', (version, version) + + @classmethod + def parse_repo_db(cls, repo_db, version=''): + db = sqlite3.connect(repo_db) + cursor = db.cursor() + + base_query, args = cls.build_base_query(version) + query = '''WITH RECURSIVE transitive_deps(version, pkgkey) AS ( + {} + UNION + SELECT transitive_deps.version, provides.pkgkey + FROM provides + INNER JOIN requires USING (name, flags, epoch, version, "release") + INNER JOIN transitive_deps ON requires.pkgkey = transitive_deps.pkgkey + ) SELECT transitive_deps.version, location_href FROM packages INNER JOIN transitive_deps using(pkgkey); + '''.format(base_query) + + cursor.execute(query, args) + return cursor.fetchall() + + def get_repodb_url(self): + repomd = get_url(self.base_url + 'repodata/repomd.xml') + pkglist_url = self.get_loc_by_xpath(repomd, '//repo:repomd/repo:data[@type="primary_db"]/repo:location/@href') + return self.base_url + pkglist_url + + def get_package_tree(self, version=''): + packages = {} + try: + repodb_url = self.get_repodb_url() + repodb = get_url(repodb_url) + except requests.HTTPError: + return {} + with tempfile.NamedTemporaryFile() as tf: + tf.write(repodb) + tf.flush() + for pkg in self.parse_repo_db(tf.name, version): + version, url = pkg + packages.setdefault(version, set()).add(self.base_url + url) + return packages + + +class RpmMirror(repo.Mirror): + + def __init__(self, base_url, variant, repo_filter=None): + self.base_url = base_url + self.variant = variant + if repo_filter is None: + repo_filter = lambda _: True + self.repo_filter = repo_filter + + def __str__(self): + return self.base_url + + def list_repos(self): + dists = requests.get(self.base_url) + dists.raise_for_status() + dists = dists.content + doc = html.fromstring(dists, self.base_url) + dists = doc.xpath('/html/body//a[not(@href="../")]/@href') + return [RpmRepository('{}{}{}'.format(self.base_url, dist, self.variant)) for dist in dists + if dist.endswith('/') + and not dist.startswith('/') + and not dist.startswith('?') + and not dist.startswith('http') + and self.repo_filter(dist) + ] diff --git a/probe_builder/kernel_crawler/ubuntu.py b/probe_builder/kernel_crawler/ubuntu.py new file mode 100644 index 0000000..c69ad36 --- /dev/null +++ b/probe_builder/kernel_crawler/ubuntu.py @@ -0,0 +1,11 @@ +from . import deb +from . import debian + + +class UbuntuMirror(debian.DebianLikeMirror): + def __init__(self): + mirrors = [ + deb.DebMirror('https://mirrors.edge.kernel.org/ubuntu/'), + deb.DebMirror('http://security.ubuntu.com/ubuntu/'), + ] + super(UbuntuMirror, self).__init__(mirrors) diff --git a/probe_builder/py23.py b/probe_builder/py23.py new file mode 100644 index 0000000..5f6b93c --- /dev/null +++ b/probe_builder/py23.py @@ -0,0 +1,12 @@ +def make_bytes(s): + try: + return s.encode('utf-8') + except AttributeError: + return s + + +def make_string(s): + try: + return s.decode('utf-8') + except AttributeError: + return s diff --git a/probe_builder/spawn.py b/probe_builder/spawn.py new file mode 100644 index 0000000..e04d670 --- /dev/null +++ b/probe_builder/spawn.py @@ -0,0 +1,46 @@ +import json +import logging +import subprocess + +from probe_builder.py23 import make_bytes, make_string + +logger = logging.getLogger(__name__) + + +def pipe(cmd, silence_errors=False, cwd=None): + cmd = [make_bytes(c) for c in cmd] + cmd_string = make_string(b' '.join(cmd)) + if cwd is not None: + logger.info('Running {} in {}'.format(cmd_string, make_string(cwd))) + else: + logger.info('Running {}'.format(cmd_string)) + child = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (stdout, _) = child.communicate(None) + if not silence_errors and child.returncode != 0: + logger.warn('{} returned error code {}'.format(cmd_string, child.returncode)) + for line in stdout.splitlines(False): + logger.warn(make_string(line)) + raise subprocess.CalledProcessError(child.returncode, cmd_string) + else: + lines = stdout.splitlines(False) + for line in lines: + logger.debug(make_string(line)) + return lines + + +def json_pipe(cmd, silence_errors=False, cwd=None): + cmd = [make_bytes(c) for c in cmd] + cmd_string = make_string(b' '.join(cmd)) + if cwd is not None: + logger.info('Running {} in {}'.format(cmd_string, make_string(cwd))) + else: + logger.info('Running {}'.format(cmd_string)) + child = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (stdout, _) = child.communicate(None) + if not silence_errors and child.returncode != 0: + logger.warn('{} returned error code {}'.format(cmd_string, child.returncode)) + for line in stdout.splitlines(False): + logger.warn(line) + raise subprocess.CalledProcessError(child.returncode, cmd_string) + else: + return json.loads(make_string(stdout)) diff --git a/probe_builder/version.py b/probe_builder/version.py new file mode 100644 index 0000000..f814d8d --- /dev/null +++ b/probe_builder/version.py @@ -0,0 +1,27 @@ +from functools import total_ordering + + +@total_ordering +class Version(object): + major = None + minor = None + + def __init__(self, version_str): + major, minor = version_str.split('.')[:2] + self.major = int(major) + self.minor = int(minor) + + def __eq__(self, other): + return (self.major, self.minor) == (other.major, other.minor) + + def __lt__(self, other): + return (self.major, self.minor) < (other.major, other.minor) + + def __str__(self): + return '{}.{}'.format(self.major, self.minor) + + def __repr__(self): + return str(self) + + + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8ee56ed --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='probe_builder', + version='1.0', + description='Sysdig probe builder', + author='Grzegorz Nosek', + author_email='grzegorz.nosek@sysdig.com', + url='https://www.sysdig.com/', + packages=['probe_builder'], + install_requires=[ + 'click', + 'requests', + 'lxml', + ], + entry_points={ + 'console_scripts': [ + 'probe_builder = probe_builder:cli', + 'artifactory_download = probe_builder.artifactory_download:cli', + ], + }, + ) From ffbc5311638262289691d663bf1033a649e60f56 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Mon, 3 Jan 2022 18:19:44 +0100 Subject: [PATCH 051/259] Add Flatcar Linux support --- Dockerfile | 1 + Dockerfile.flatcar-gcc11.2 | 22 +++++ Dockerfile.toolkit | 2 +- README.md | 1 + probe_builder/__init__.py | 4 +- probe_builder/builder/distro/__init__.py | 2 + probe_builder/builder/distro/base_builder.py | 4 +- probe_builder/builder/distro/flatcar.py | 93 ++++++++++++++++++++ probe_builder/builder/toolkit.py | 35 ++++++++ probe_builder/context.py | 2 +- probe_builder/docker.py | 11 +++ probe_builder/kernel_crawler/__init__.py | 4 + probe_builder/kernel_crawler/download.py | 5 ++ probe_builder/kernel_crawler/flatcar.py | 48 ++++++++++ toolkit-entrypoint.sh | 14 +-- 15 files changed, 236 insertions(+), 12 deletions(-) create mode 100644 Dockerfile.flatcar-gcc11.2 create mode 100644 probe_builder/builder/distro/flatcar.py create mode 100644 probe_builder/kernel_crawler/flatcar.py diff --git a/Dockerfile b/Dockerfile index 7c7d239..bafa16b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ RUN apk add \ py3-pip \ py3-lxml \ sed \ + sfdisk \ wget \ docker diff --git a/Dockerfile.flatcar-gcc11.2 b/Dockerfile.flatcar-gcc11.2 new file mode 100644 index 0000000..69fac80 --- /dev/null +++ b/Dockerfile.flatcar-gcc11.2 @@ -0,0 +1,22 @@ +FROM fedora:34 + +RUN yum -y install \ + wget \ + git \ + gcc \ + gcc-c++ \ + autoconf \ + bison \ + flex \ + make \ + cmake \ + elfutils-devel \ + findutils \ + kmod \ + clang \ + llvm \ + python-lxml && yum clean all + +ADD builder-entrypoint.sh / +WORKDIR /build/probe +ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.toolkit b/Dockerfile.toolkit index 14089ab..1bf4f94 100644 --- a/Dockerfile.toolkit +++ b/Dockerfile.toolkit @@ -1,5 +1,5 @@ FROM alpine -RUN apk add rpm2cpio multipath-tools +RUN apk add rpm2cpio multipath-tools sfdisk jq ADD toolkit-entrypoint.sh /toolkit-entrypoint.sh ENTRYPOINT ["/toolkit-entrypoint.sh"] diff --git a/README.md b/README.md index ead10a3..3c3d87f 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ Distributions supported by the kernel crawler: - CentOS - Debian - Fedora + - Flatcar - PhotonOS - Ubuntu diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index dd16f8d..b27ecc2 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -78,6 +78,7 @@ def get_kernels(self, _workspace, packages, _download_config): 'CentOS': CrawlDistro('centos', 'centos', 'CentOS'), 'Debian': CrawlDistro('debian', 'debian', 'Debian'), 'Fedora': CrawlDistro('fedora', 'centos', 'Fedora'), + 'Flatcar': CrawlDistro('flatcar', 'flatcar', 'Flatcar'), 'OracleOL6': None, 'OracleOL7': None, 'OracleRHCK': None, @@ -85,6 +86,7 @@ def get_kernels(self, _workspace, packages, _download_config): 'CustomCentOS': LocalDistro('custom-centos', 'centos'), 'CustomDebian': LocalDistro('custom-debian', 'debian'), 'CustomUbuntu': LocalDistro('custom-ubuntu', 'ubuntu'), + 'CustomFlatcar': LocalDistro('custom-flatcar', 'flatcar'), } @@ -110,7 +112,7 @@ def build(builder_image_prefix, workspace_dir = os.getcwd() builder_source = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) - workspace = Workspace(docker.get_mount_mapping(), workspace_dir, builder_source, builder_image_prefix) + workspace = Workspace(docker.is_privileged(), docker.get_mount_mapping(), workspace_dir, builder_source, builder_image_prefix) probe = get_probe(workspace, source_dir, probe_name, probe_version) distro_obj = CLI_DISTROS[kernel_type] diff --git a/probe_builder/builder/distro/__init__.py b/probe_builder/builder/distro/__init__.py index 8b21e15..c11195f 100644 --- a/probe_builder/builder/distro/__init__.py +++ b/probe_builder/builder/distro/__init__.py @@ -1,6 +1,7 @@ from collections import namedtuple from .centos import CentosBuilder from .debian import DebianBuilder +from .flatcar import FlatcarBuilder from .ubuntu import UbuntuBuilder @@ -15,5 +16,6 @@ def builder(self): DISTRO_BUILDERS = { 'centos': CentosBuilder, 'debian': DebianBuilder, + 'flatcar': FlatcarBuilder, 'ubuntu': UbuntuBuilder, } diff --git a/probe_builder/builder/distro/base_builder.py b/probe_builder/builder/distro/base_builder.py index b253d7b..0cbe5c4 100644 --- a/probe_builder/builder/distro/base_builder.py +++ b/probe_builder/builder/distro/base_builder.py @@ -39,8 +39,8 @@ def hash_config(self, release, target): def get_kernel_dir(self, workspace, release, target): raise NotImplementedError - @staticmethod - def build_kernel_impl(config_hash, container_name, image_name, kernel_dir, probe, release, workspace, bpf, + @classmethod + def build_kernel_impl(cls, config_hash, container_name, image_name, kernel_dir, probe, release, workspace, bpf, skip_reason): if bpf: label = 'eBPF' diff --git a/probe_builder/builder/distro/flatcar.py b/probe_builder/builder/distro/flatcar.py new file mode 100644 index 0000000..42577aa --- /dev/null +++ b/probe_builder/builder/distro/flatcar.py @@ -0,0 +1,93 @@ +import errno +import glob +import logging +import os +import subprocess + +import click + +from .base_builder import DistroBuilder, to_s +from .. import toolkit, builder_image +from ... import crawl_kernels, docker +from ...kernel_crawler.download import download_file + +logger = logging.getLogger(__name__) + + +class FlatcarBuilder(DistroBuilder): + def unpack_kernels(self, workspace, distro, kernels): + kernel_dirs = dict() + + for release, dev_containers in kernels.items(): + target = workspace.subdir('build', distro, release) + kernel_dirs[release] = target + + for dev_container in dev_containers: + dev_container_basename = os.path.basename(dev_container) + marker = os.path.join(target, '.' + dev_container_basename) + toolkit.unpack_coreos(workspace, dev_container, target, marker) + + return kernel_dirs + + def hash_config(self, release, target): + return self.md5sum(os.path.join(target, 'config'.format(release))) + + def get_kernel_dir(self, workspace, release, target): + versions = glob.glob(os.path.join(target, 'modules/*/build')) + if len(versions) != 1: + raise RuntimeError('Expected one kernel version in {}, got: {!r}'.format(target, versions)) + return versions[0] + + def batch_packages(self, kernel_files): + releases = {} + for path in kernel_files: + release, orig_filename = os.path.basename(path).split('-', 1) + releases.setdefault(release, []).append(path) + return releases + + @classmethod + def build_kernel_impl(cls, config_hash, container_name, image_name, kernel_dir, probe, release, workspace, bpf, + skip_reason): + if bpf: + label = 'eBPF' + args = ['bpf'] + else: + label = 'kmod' + args = [] + + coreos_kernel_release = os.path.basename(os.path.dirname(kernel_dir)) + + if skip_reason: + logger.info('Skipping build of {} probe {}-{} ({}): {}'.format(label, coreos_kernel_release, config_hash, + release, skip_reason)) + + docker.rm(container_name) + try: + builder_image.run(workspace, probe, kernel_dir, coreos_kernel_release, config_hash, container_name, image_name, args) + except subprocess.CalledProcessError: + logger.error("Build failed for {} probe {}-{} ({})".format(label, coreos_kernel_release, config_hash, release)) + else: + logger.info("Build for {} probe {}-{} ({}) successful".format(label, coreos_kernel_release, config_hash, release)) + + def crawl(self, workspace, distro, crawler_distro, download_config=None): + kernels = crawl_kernels(crawler_distro) + try: + os.makedirs(workspace.subdir(distro.distro)) + except OSError as exc: + if exc.errno != errno.EEXIST: + raise + + all_urls = [] + kernel_files = {} + for release, urls in kernels.items(): + all_urls.extend(urls) + kernel_files[release] = [ + workspace.subdir(distro.distro, '{}-{}'.format(release, os.path.basename(url))) for url in urls] + + with click.progressbar(all_urls, label='Downloading development containers', item_show_func=to_s) as all_urls: + for url in all_urls: + _, release, filename = url.rsplit('/', 2) + output_file = workspace.subdir(distro.distro, '{}-{}'.format(release, filename)) + download_file(url, output_file, download_config) + + return kernel_files diff --git a/probe_builder/builder/toolkit.py b/probe_builder/builder/toolkit.py index 40e9589..6a69db8 100644 --- a/probe_builder/builder/toolkit.py +++ b/probe_builder/builder/toolkit.py @@ -24,6 +24,38 @@ def build_toolkit(workspace): HAVE_TOOLKIT = True +def unpack_coreos(workspace, coreos_file, target_dir, marker): + if marker is not None and os.path.exists(marker): + logger.info('{} already exists, not unpacking {}'.format(marker, coreos_file)) + return + + coreos_file = os.path.abspath(coreos_file) + target_dir = os.path.abspath(target_dir) + + if not workspace.in_docker() or not workspace.is_privileged: + build_toolkit(workspace) + coreos_file = workspace.host_dir(coreos_file) + target_dir = workspace.host_dir(target_dir) + + volumes = [ + docker.DockerVolume(coreos_file, coreos_file, True), + docker.DockerVolume(target_dir, target_dir, False), + ] + docker.run( + toolkit_image(workspace.image_prefix), volumes, ['coreos', coreos_file, target_dir], [], privileged=True) + else: + try: + os.makedirs(target_dir, 0o755) + except OSError as exc: + if exc.errno != errno.EEXIST: + raise + spawn.pipe(["/builder/toolkit-entrypoint.sh", "coreos", coreos_file, target_dir]) + + if marker is not None: + with open(marker, 'w') as marker_fp: + marker_fp.write('\n') + + def unpack_rpm(workspace, rpm_file, target_dir, marker): if marker is not None and os.path.exists(marker): logger.info('{} already exists, not unpacking {}'.format(marker, rpm_file)) @@ -34,6 +66,9 @@ def unpack_rpm(workspace, rpm_file, target_dir, marker): if not workspace.in_docker(): build_toolkit(workspace) + rpm_file = workspace.host_dir(rpm_file) + target_dir = workspace.host_dir(target_dir) + volumes = [ docker.DockerVolume(rpm_file, rpm_file, True), docker.DockerVolume(target_dir, target_dir, False), diff --git a/probe_builder/context.py b/probe_builder/context.py index d390514..6abd2a6 100644 --- a/probe_builder/context.py +++ b/probe_builder/context.py @@ -8,7 +8,7 @@ class Context(object): class Workspace( namedtuple( - 'Workspace', 'mount_mapping workspace builder_source image_prefix')): + 'Workspace', 'is_privileged mount_mapping workspace builder_source image_prefix')): def host_dir(self, container_dir): if self.mount_mapping is None: diff --git a/probe_builder/docker.py b/probe_builder/docker.py index 398c367..626b184 100644 --- a/probe_builder/docker.py +++ b/probe_builder/docker.py @@ -79,6 +79,17 @@ def get_mount_mapping(): return mounts +def is_privileged(): + inspect = inspect_self() + if inspect is None: + return True + try: + if inspect[0]['HostConfig']['Privileged'] == 'true': + return True + except: + return False + + def remove_dangling_images(): images = pipe(['docker', 'images', '-q', '-f', 'dangling=true']) if images: diff --git a/probe_builder/kernel_crawler/__init__.py b/probe_builder/kernel_crawler/__init__.py index f5c09c3..5c24b7b 100644 --- a/probe_builder/kernel_crawler/__init__.py +++ b/probe_builder/kernel_crawler/__init__.py @@ -7,6 +7,8 @@ from .debian import DebianMirror from .ubuntu import UbuntuMirror +from .flatcar import FlatcarMirror + DISTROS = { 'AmazonLinux': AmazonLinux1Mirror, 'AmazonLinux2': AmazonLinux2Mirror, @@ -19,6 +21,8 @@ 'Debian': DebianMirror, 'Ubuntu': UbuntuMirror, + + 'Flatcar': FlatcarMirror, } diff --git a/probe_builder/kernel_crawler/download.py b/probe_builder/kernel_crawler/download.py index f3310a9..b967593 100644 --- a/probe_builder/kernel_crawler/download.py +++ b/probe_builder/kernel_crawler/download.py @@ -4,6 +4,7 @@ import shutil from threading import Thread import os +import logging from probe_builder.context import DownloadConfig @@ -18,11 +19,15 @@ from Queue import Queue +logger = logging.getLogger(__name__) + + def download_file(url, output_file, download_config=None): if download_config is None: download_config = DownloadConfig.default() resp = None for i in range(download_config.retries): + logger.debug('Downloading {} to {}, attempt {} of {}'.format(url, output_file, i+1, download_config.retries)) with open(output_file, 'ab') as fp: size = fp.tell() if size > 0: diff --git a/probe_builder/kernel_crawler/flatcar.py b/probe_builder/kernel_crawler/flatcar.py new file mode 100644 index 0000000..dc2f781 --- /dev/null +++ b/probe_builder/kernel_crawler/flatcar.py @@ -0,0 +1,48 @@ +import os + +import requests +from lxml import html + +from probe_builder.kernel_crawler.repo import Repository, Distro + + +class FlatcarRepository(Repository): + def __init__(self, base_url): + self.base_url = base_url + + def get_package_tree(self, version=''): + release = os.path.basename(self.base_url.rstrip('/')) + if version not in release: + return {} + dev_container = os.path.join(self.base_url, 'flatcar_developer_container.bin.bz2') + return {release: [dev_container]} + + def __str__(self): + return self.base_url + + +class FlatcarMirror(Distro): + CHANNELS = ['stable', 'beta', 'alpha'] + + def __init__(self): + mirrors = ['https://{}.release.flatcar-linux.net/amd64-usr/'.format(channel) for channel in self.CHANNELS] + super(FlatcarMirror, self).__init__(mirrors) + + def scan_repo(self, base_url): + dists = requests.get(base_url) + dists.raise_for_status() + dists = dists.content + doc = html.fromstring(dists, base_url) + dists = doc.xpath('/html/body//a[not(@href="../")]/@href') + return [FlatcarRepository('{}{}'.format(base_url, dist.lstrip('./'))) for dist in dists + if dist.endswith('/') + and dist.startswith('./') + and 'current' not in dist + and '-' not in dist + ] + + def list_repos(self): + repos = [] + for repo in self.mirrors: + repos.extend(self.scan_repo(repo)) + return repos diff --git a/toolkit-entrypoint.sh b/toolkit-entrypoint.sh index b192f28..4d9a532 100755 --- a/toolkit-entrypoint.sh +++ b/toolkit-entrypoint.sh @@ -20,18 +20,18 @@ unpack_coreos_kernel() # mount developer container is a very stateful part of this script # the section between mount/unmounting should be kept very small # otherwise if something fails there are many inconsistencies that can happen - LOOPDEV=$(kpartx -asv /tmp/container.img | cut -d\ -f 3) - mount /dev/mapper/$LOOPDEV /mnt + OFFSET=$(sfdisk -J /tmp/container.img | jq '.partitiontable.sectorsize * .partitiontable.partitions[0].start') + mount -o ro,loop,offset="$OFFSET" /tmp/container.img /mnt + # Copy kernel headers cp -r /mnt/lib/modules "$OUTPUT_DIR" # Copy kernel config - rm -f $OUTPUT_DIR/config-* - cp /mnt/usr/boot/config-* $OUTPUT_DIR/ - cp $OUTPUT_DIR/config-* $OUTPUT_DIR/config_orig - # umount and remove the developer container + rm -f $OUTPUT_DIR/config* + cp /mnt/usr/boot/config* $OUTPUT_DIR/ + + # umount the developer container umount /mnt - kpartx -dv /tmp/container.img } unpack_rpm() From 33f735109d7d8b5b7d98d3b51e5ba0e292f16951 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Tue, 4 Jan 2022 14:41:31 +0100 Subject: [PATCH 052/259] Add Oracle Linux support --- Dockerfile.ol6 => Dockerfile.oracle-gcc4.4 | 0 Dockerfile.ol7 => Dockerfile.oracle-gcc4.8 | 0 Dockerfile.oracle-gcc8.5 | 19 ++++ README.md | 3 + oracle-kernel-crawler.py | 121 --------------------- probe_builder/__init__.py | 6 +- probe_builder/builder/distro/__init__.py | 1 + 7 files changed, 26 insertions(+), 124 deletions(-) rename Dockerfile.ol6 => Dockerfile.oracle-gcc4.4 (100%) rename Dockerfile.ol7 => Dockerfile.oracle-gcc4.8 (100%) create mode 100644 Dockerfile.oracle-gcc8.5 delete mode 100755 oracle-kernel-crawler.py diff --git a/Dockerfile.ol6 b/Dockerfile.oracle-gcc4.4 similarity index 100% rename from Dockerfile.ol6 rename to Dockerfile.oracle-gcc4.4 diff --git a/Dockerfile.ol7 b/Dockerfile.oracle-gcc4.8 similarity index 100% rename from Dockerfile.ol7 rename to Dockerfile.oracle-gcc4.8 diff --git a/Dockerfile.oracle-gcc8.5 b/Dockerfile.oracle-gcc8.5 new file mode 100644 index 0000000..157ab65 --- /dev/null +++ b/Dockerfile.oracle-gcc8.5 @@ -0,0 +1,19 @@ +FROM oraclelinux:8 + +RUN yum -y install \ + wget \ + git \ + gcc \ + gcc-c++ \ + autoconf \ + make \ + cmake \ + elfutils-libelf-devel \ + file \ + clang \ + llvm \ + kmod && yum clean all + +ADD builder-entrypoint.sh / +WORKDIR /build/probe +ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/README.md b/README.md index 3c3d87f..699b5a9 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,9 @@ Distributions supported by the kernel crawler: - Debian - Fedora - Flatcar + - Oracle6 + - Oracle7 + - Oracle8 - PhotonOS - Ubuntu diff --git a/oracle-kernel-crawler.py b/oracle-kernel-crawler.py deleted file mode 100755 index 17edb49..0000000 --- a/oracle-kernel-crawler.py +++ /dev/null @@ -1,121 +0,0 @@ -#!/usr/bin/python -# -# Copyright (C) 2013-2018 Draios Inc dba Sysdig. -# -# This file is part of sysdig . -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -import sys - -try: - from urllib2 import urlopen, unquote -except ImportError: - from urllib.request import urlopen - from urllib.parse import unquote - -from lxml import html - -# -# Copied from kernel-crawler.py and hacked up for oracle linux -# because they don't use a normal directory structure. -# -repos = { - # Oracle only puts full isos with unhelpful names on mirrors.kernel.org, so skip it - "OL6-UEK": [ - { - # yum.oracle.com has a bad cert, so use http instead of https - "root": "http://yum.oracle.com/", - "discovery_pattern": "/html/body//h3/a[regex:test(@href, 'oracle-linux-6\.html')]/@href", - "sub_discovery_pattern": "/html/body//h3[regex:test(., '^UEK Release [3-9]:')]/a[regex:test(@href, 'x86_64/index.html')]/@href", - "page_pattern": "/html/body//a[regex:test(@href, '^getPackage/kernel-uek-(devel-)?[0-9].*\.rpm$')]/@href", - } - ], - - "OL7-UEK": [ - { - "root": "http://yum.oracle.com/", - "discovery_pattern": "/html/body//h3/a[regex:test(@href, 'oracle-linux-7\.html')]/@href", - "sub_discovery_pattern": "/html/body//h3[regex:test(., '^UEK Release [3-9]:')]/a[regex:test(@href, 'x86_64/index.html')]/@href", - "page_pattern": "/html/body//a[regex:test(@href, '^getPackage/kernel-uek-(devel-)?[0-9].*\.rpm$')]/@href", - } - ], - - "Oracle-RHCK": [ - { - "root": "http://yum.oracle.com/", - "discovery_pattern": "/html/body//h3/a[regex:test(@href, 'oracle-linux-[6-7]+\.html')]/@href", - "sub_discovery_pattern": "/html/body//h3[regex:test(., '^Latest:')]/a[regex:test(@href, 'x86_64/index.html')]/@href", - "page_pattern": "/html/body//a[regex:test(@href, '^getPackage/kernel-(devel-)?[0-9].*\.rpm$')]/@href", - } - ] -} - -def progress(distro, current, total, package): - sys.stderr.write('\r{} {}/{} {} '.format(distro, current, total, package)) - -# -# In our design you are not supposed to modify the code. The whole script is -# created so that you just have to add entry to the `repos` array and new -# links will be found automagically without needing to write any single line of -# code. -# -urls = set() -URL_TIMEOUT=30 - -if len(sys.argv) < 2 or not sys.argv[1] in repos: - sys.stderr.write("Usage: " + sys.argv[0] + " \n") - sys.exit(1) - -# -# Navigate the `repos` tree and look for packages we need that match the -# patterns given. Save the result in `packages`. -# -for repo in repos[sys.argv[1]]: - try: - root = urlopen(repo["root"],timeout=URL_TIMEOUT).read() - except: - continue - versions = html.fromstring(root).xpath(repo["discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - vid = 0 - for version in versions: - vid += 1 - ver_url = repo["root"] + version - progress(repo["root"], vid, len(versions), version) - try: - subroot = urlopen(ver_url,timeout=URL_TIMEOUT).read() - except: - continue - sub_vers = html.fromstring(subroot).xpath(repo["sub_discovery_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - for sub_ver in sub_vers: - sub_ver = sub_ver.lstrip('/') - # The try - except block is used because 404 errors and similar - # might happen (and actually happen because not all repos have - # packages we need) - try: - source = repo["root"] + sub_ver - page = urlopen(source,timeout=URL_TIMEOUT).read() - rpms = html.fromstring(page).xpath(repo["page_pattern"], namespaces = {"regex": "http://exslt.org/regular-expressions"}) - - source = source.replace("index.html", "") - for rpm in rpms: - urls.add(source + str(unquote(rpm))) - except: - continue - -# -# Print URLs to stdout -# -for url in urls: - print(url) diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index b27ecc2..7d25a17 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -79,9 +79,9 @@ def get_kernels(self, _workspace, packages, _download_config): 'Debian': CrawlDistro('debian', 'debian', 'Debian'), 'Fedora': CrawlDistro('fedora', 'centos', 'Fedora'), 'Flatcar': CrawlDistro('flatcar', 'flatcar', 'Flatcar'), - 'OracleOL6': None, - 'OracleOL7': None, - 'OracleRHCK': None, + 'Oracle6': CrawlDistro('oracle6', 'oracle', 'Oracle6'), + 'Oracle7': CrawlDistro('oracle7', 'oracle', 'Oracle7'), + 'Oracle8': CrawlDistro('oracle8', 'oracle', 'Oracle8'), 'Ubuntu': CrawlDistro('ubuntu', 'ubuntu', 'Ubuntu'), 'CustomCentOS': LocalDistro('custom-centos', 'centos'), 'CustomDebian': LocalDistro('custom-debian', 'debian'), diff --git a/probe_builder/builder/distro/__init__.py b/probe_builder/builder/distro/__init__.py index c11195f..5d7c3de 100644 --- a/probe_builder/builder/distro/__init__.py +++ b/probe_builder/builder/distro/__init__.py @@ -18,4 +18,5 @@ def builder(self): 'debian': DebianBuilder, 'flatcar': FlatcarBuilder, 'ubuntu': UbuntuBuilder, + 'oracle': CentosBuilder, } From f12780660abd0ca9ea5662926fdd04a3109a6aa6 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Thu, 20 Jan 2022 16:53:56 +0100 Subject: [PATCH 053/259] Add some notes about the implementation --- README.dev.md | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 README.dev.md diff --git a/README.dev.md b/README.dev.md new file mode 100644 index 0000000..28d1213 --- /dev/null +++ b/README.dev.md @@ -0,0 +1,105 @@ +# Developer notes + +## Data flow through the application + +Based on the command line arguments, a distribution is chosen. +This amounts to: +* a `DistroBuilder` subclass, containing distro-specific code +* a distribution name, used mostly as a directory name to store downloaded kernels +* a builder distro name, used to select a set of Dockerfiles to choose from +* a crawler distro name, passed to the kernel crawler (which has its own set of supported distributions) + +Wherever `DistroBuilder` is mentioned in this document, it means a *subclass* +of the `DistroBuilder` class. + +### Building probes from local files + +#### Batching packages + +The input is a list of paths to local files. `DistroBuilder.batch_packages` is called +to group the packages into kernel versions, resulting in a dictionary of arrays: + +```json +{ + "5.4.0-1": [ + "kernel-5.4.0-1.x86_64.rpm", + "kernel-devel-5.4.0-1.x86_64.rpm" + ], + "5.5.0-10": [ + "kernel-5.5.0-10.x86_64.rpm", + "kernel-devel-5.5.0-10.x86_64.rpm" + ] +} +``` + +(the package names here are obviously fake). + +**Note:** this process doesn't inspect the packages themselves and only +relies on file names (like the old probe builder did). This means it may +be less accurate or completely wrong in some situations. + +#### Unpacking the packages + +The dictionary created above is passed to `DistroBuilder.unpack_kernels`. +This method uses distro-specific (or rather packager-specific) code to unpack +all packages in the per-release directories. + +It returns a map of release->directory, similar to: + +```json +{ + "5.4.0-1": ".../build/debian/5.4.0-1", + "5.5.0-10": ".../build/debian/5.5.0-10" +} +``` + +(the directories are named in a way that is compatible with the old builder +so the mapping isn't always trivial, e.g. for Ubuntu kernels whose versioning +is somewhat complicated). + +#### Building the kernels + +For each (release, directory) pair returned from `unpack_kernels`, +`DistroBuilder.build_kernels` is called. This method is common to all +builders but it has per-distro extension points: + + * `get_kernel_dir`: return the full path to the kernel headers + (the directory passed in is the root of the filesystem where the packages are extracted to, + and the actual kernel directory is a subdirectory like `/usr/src/linux-headers-5.4.0-1`) + * `hash_config`: return the MD5 hash of the kernel's config file + (the config file is stored in different places for different distributions + and this method knows where) + +The rest of the code is distro-agnostic. + +### Building probes for all kernels in a distribution + +The kernel crawler has its own set of supported distributions, mostly +overlapping with the `DistroBuilder`s but e.g. Amazon Linux, Fedora and Oracle +Linux are compatible enough that they can use the CentOS builder, even though +they need their own crawlers (even if only to specify the list of mirrors). + +In the crawler, each distribution is a set of mirrors, each of which can contain one +or more repositories. A repository knows how to parse its metadata and return a map +of release->list of URLs: + +```json +{ + "5.4.0-1": [ + "http://.../kernel-5.4.0-1.x86_64.rpm", + "http://.../kernel-devel-5.4.0-1.x86_64.rpm" + ], + "5.5.0-10": [ + "http://.../kernel-5.5.0-10.x86_64.rpm", + "http://.../kernel-devel-5.5.0-10.x86_64.rpm" + ] +} +``` + +The result of the crawler is used in `DistroBuilder.crawl` to download all +packages and replace the URLs with file paths. This is identical to the result +of `DistroBuilder.batch_packages` (used with local files), except that +the crawler understands repository metadata (which we don't have with local files) +so should generally make a better job of getting the right packages together. + +The steps to unpack and build the kernels are identical in both cases. \ No newline at end of file From 5294d89a3cf3f39b4061d46389349794efbaa623 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Fri, 11 Feb 2022 17:24:28 +0100 Subject: [PATCH 054/259] Fix AmazonLinux builder py3 compatibility --- probe_builder/kernel_crawler/amazonlinux.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/probe_builder/kernel_crawler/amazonlinux.py b/probe_builder/kernel_crawler/amazonlinux.py index c612e4b..61a6600 100644 --- a/probe_builder/kernel_crawler/amazonlinux.py +++ b/probe_builder/kernel_crawler/amazonlinux.py @@ -6,12 +6,13 @@ from . import repo from . import rpm from probe_builder.kernel_crawler.download import get_url +from probe_builder.py23 import make_string def get_al_repo(repo_root, repo_release): repo_pointer = repo_root + repo_release + "/mirror.list" resp = get_url(repo_pointer) - return resp.splitlines()[0].replace('$basearch', 'x86_64') + '/' + return make_string(resp.splitlines()[0]).replace('$basearch', 'x86_64') + '/' class AmazonLinux1Mirror(repo.Distro): From b2fc438389c3623714b9b48f45097f0082a2ce25 Mon Sep 17 00:00:00 2001 From: Grzegorz Nosek Date: Mon, 14 Feb 2022 14:15:58 +0100 Subject: [PATCH 055/259] Fix deb crawler py3 compatibility --- probe_builder/kernel_crawler/deb.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/probe_builder/kernel_crawler/deb.py b/probe_builder/kernel_crawler/deb.py index e373b32..ca8f0cc 100644 --- a/probe_builder/kernel_crawler/deb.py +++ b/probe_builder/kernel_crawler/deb.py @@ -11,6 +11,7 @@ from . import repo from probe_builder.kernel_crawler.download import get_first_of, get_url +from probe_builder.py23 import make_bytes, make_string class IncompletePackageListException(Exception): @@ -34,6 +35,7 @@ def scan_packages(cls, stream): current_package = {} packages = {} for line in stream: + line = make_string(line) line = line.rstrip() if line == '': name = current_package['Package'] @@ -177,7 +179,7 @@ def build_package_tree(cls, packages, package_list): deps.setdefault(pv, set()).update(cls.get_package_deps(packages, pkg)) except IncompletePackageListException: pass - for pkg, dep_list in deps.items(): + for pkg, dep_list in list(deps.items()): have_headers = False for dep in dep_list: if 'linux-headers' in dep: @@ -208,8 +210,9 @@ def scan_repo(self, dist): all_comps = set() release = get_url(self.base_url + dist + 'Release') for line in release.splitlines(False): - if line.startswith('Components: '): + if line.startswith(make_bytes('Components: ')): for comp in line.split(None)[1:]: + comp = make_string(comp) if comp in ('main', 'updates', 'updates/main'): if dist.endswith('updates/') and comp.startswith('updates/'): comp = comp.replace('updates/', '') @@ -247,4 +250,4 @@ def list_repos(self): except requests.HTTPError: pass - return sorted(repos.values()) + return sorted(repos.values(), key=str) From 71a82a32bb44612d9b5af4bf655e305fb7f73f94 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Mon, 21 Feb 2022 20:29:00 +0100 Subject: [PATCH 056/259] fix centos vault error handling vault.centos.org servers are renowned for having very limited bandwidth. Fix the current error handling so that: a) a stack trace is printed b) remaining, working repositories can be processed --- probe_builder/kernel_crawler/rpm.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/probe_builder/kernel_crawler/rpm.py b/probe_builder/kernel_crawler/rpm.py index 1ddba8a..3a34a9f 100644 --- a/probe_builder/kernel_crawler/rpm.py +++ b/probe_builder/kernel_crawler/rpm.py @@ -1,5 +1,6 @@ #!/usr/bin/env python from __future__ import print_function +import traceback import requests from lxml import etree, html @@ -74,7 +75,8 @@ def get_package_tree(self, version=''): try: repodb_url = self.get_repodb_url() repodb = get_url(repodb_url) - except requests.HTTPError: + except requests.exceptions.RequestException: + traceback.print_exc() return {} with tempfile.NamedTemporaryFile() as tf: tf.write(repodb) From f9b92593f1dc1509be37792ec62ffdea89202521 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Tue, 22 Feb 2022 11:21:34 +0100 Subject: [PATCH 057/259] rpm crawler: filter out non-existing distributions Some RPM-based distributions (namely CentOS) might at some point get deprecated, so that their content gets removed completely from the official mirrors, while leaving the base directory (e.g. present with just a readme file within it, e.g.: http://mirror.centos.org/centos/7.8.2003/readme Filter out such distributions (where the final path is non-existing) so that they're left out of the official list of repos to crawl. This way, we prevent stack traces introduced by the new error handling from cluttering the output. --- probe_builder/kernel_crawler/rpm.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/probe_builder/kernel_crawler/rpm.py b/probe_builder/kernel_crawler/rpm.py index 3a34a9f..33d280e 100644 --- a/probe_builder/kernel_crawler/rpm.py +++ b/probe_builder/kernel_crawler/rpm.py @@ -99,16 +99,28 @@ def __init__(self, base_url, variant, repo_filter=None): def __str__(self): return self.base_url + def dist_url(self, dist): + return '{}{}{}'.format(self.base_url, dist, self.variant) + + def dist_exists(self, dist): + try: + r = requests.get(self.dist_url(dist)) + r.raise_for_status() + except requests.exceptions.RequestException: + return False + return True + def list_repos(self): dists = requests.get(self.base_url) dists.raise_for_status() dists = dists.content doc = html.fromstring(dists, self.base_url) dists = doc.xpath('/html/body//a[not(@href="../")]/@href') - return [RpmRepository('{}{}{}'.format(self.base_url, dist, self.variant)) for dist in dists + return [RpmRepository(self.dist_url(dist)) for dist in dists if dist.endswith('/') and not dist.startswith('/') and not dist.startswith('?') and not dist.startswith('http') and self.repo_filter(dist) + and self.dist_exists(dist) ] From 79ce976c758261589a857f45695462eac9fc44fb Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Tue, 22 Feb 2022 11:28:25 +0100 Subject: [PATCH 058/259] fix centos 8 handling - remove CentOS 8 BaseOS - use CentOS vault mirror from cern.ch --- probe_builder/kernel_crawler/centos.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/probe_builder/kernel_crawler/centos.py b/probe_builder/kernel_crawler/centos.py index 4edc2c3..937184e 100644 --- a/probe_builder/kernel_crawler/centos.py +++ b/probe_builder/kernel_crawler/centos.py @@ -19,9 +19,10 @@ def __init__(self): mirrors = [ rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/x86_64/', v7_only), rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/x86_64/', v7_only), - rpm.RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/x86_64/os/', v8_only), - rpm.RpmMirror('https://vault.centos.org/', 'os/x86_64/', v6_or_v7), - rpm.RpmMirror('https://vault.centos.org/', 'updates/x86_64/', v6_or_v7), - rpm.RpmMirror('https://vault.centos.org/', 'BaseOS/x86_64/os/', v8_only), + # CentOS 8 reached end-of-life at the end of 2021, so no point looking for it + # rpm.RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/x86_64/os/', v8_only), + rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'os/x86_64/', v6_or_v7), + rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'updates/x86_64/', v6_or_v7), + rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'BaseOS/x86_64/os/', v8_only), ] super(CentosMirror, self).__init__(mirrors) From 06ca5303fba10833a09c5ac8185990bf4c071212 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Mon, 21 Feb 2022 20:51:12 +0100 Subject: [PATCH 059/259] fix handling of missing kernel packages some debian kernel packages might disappear from the server while still being listed in the repository metadata. This causes an exception in the downloader thread, which will abort the thread, leaving the main thread stuck while waiting for the queue to join. Add some exception handler to the downlaoder thread so that the caller doesn't get stuck. --- probe_builder/kernel_crawler/download.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/probe_builder/kernel_crawler/download.py b/probe_builder/kernel_crawler/download.py index b967593..839ad57 100644 --- a/probe_builder/kernel_crawler/download.py +++ b/probe_builder/kernel_crawler/download.py @@ -1,6 +1,7 @@ import bz2 import zlib import requests +import traceback import shutil from threading import Thread import os @@ -61,7 +62,10 @@ def dl(): while True: url = q.get() output_file = os.path.join(output_dir, os.path.basename(url)) - download_file(url, output_file, download_config) + try: + download_file(url, output_file, download_config) + except requests.exceptions.RequestException: + traceback.print_exc() q.task_done() for i in range(download_config.concurrency): @@ -73,6 +77,9 @@ def dl(): q.put(batch_url) q.join() + # TODO shouldn't we also wait for all threads to terminate, + # like it's done on the examples of python 3.7 (but NOT on 2.7/3.8/3.9)? + # see https://docs.python.org/3.7/library/queue.html def get_url(url): From ed4839bffbcda14c04763a1343f04ea53c7f3af1 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Mon, 21 Feb 2022 20:54:25 +0100 Subject: [PATCH 060/259] tolerate broken debian packages current handling of debian packages (e.g. because they failed to download and are empty) will cause the unpacking to fail completely. Handle that case by just skipping the directories for which the unpacking failed. --- probe_builder/builder/distro/debian.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/probe_builder/builder/distro/debian.py b/probe_builder/builder/distro/debian.py index 76e136e..430f481 100644 --- a/probe_builder/builder/distro/debian.py +++ b/probe_builder/builder/distro/debian.py @@ -1,6 +1,7 @@ import logging import os import re +import traceback import click @@ -32,10 +33,14 @@ def unpack_kernels(self, workspace, distro, kernels): target = workspace.subdir('build', distro, version) kernel_dirs[release] = target - for deb in debs: - deb_basename = os.path.basename(deb) - marker = os.path.join(target, '.' + deb_basename) - toolkit.unpack_deb(workspace, deb, target, marker) + try: + for deb in debs: + deb_basename = os.path.basename(deb) + marker = os.path.join(target, '.' + deb_basename) + toolkit.unpack_deb(workspace, deb, target, marker) + except: + traceback.print_exc() + del kernel_dirs[release] for release, target in kernel_dirs.items(): kerneldir = self.get_kernel_dir(workspace, release, target) From 3c89fc3949446b506154cc9a8f7c5217474e72d6 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Tue, 22 Feb 2022 16:05:30 +0100 Subject: [PATCH 061/259] batch crawled packages as if it were local debian and ubuntu have a very weird package naming which requires us to discard the versioning information our crawler obtains from the repository metadata, and recur to parsing filenames, which is what we would be doing on a local distro anyway. Notice how this also fixes unpack_kernels for debian, which expects a list of tuples instead of the dictionary returned by the crawler. --- probe_builder/__init__.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index 7d25a17..b050558 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -59,8 +59,13 @@ def __init__(self, distro, builder_distro, crawler_distro): self.crawler_distro = crawler_distro def get_kernels(self, workspace, _packages, download_config): - return self.distro_builder.crawl(workspace, self.distro_obj, self.crawler_distro, download_config) - + # crawler will return a dictionary of {"release": ["http://url/for/package1.rpm", "http://url/for/package1.rpm"]} + crawled_dict = self.distro_builder.crawl(workspace, self.distro_obj, self.crawler_distro, download_config) + # we flatten that dictionary into a single list, retaining ONLY package urls and discaring the release altogether + flattened_packages = [pkg for pkgs in crawled_dict.values() for pkg in pkgs] + # then we batch that list as if it were a local distro + batched_packages = self.distro_builder.batch_packages(flattened_packages) + return batched_packages class LocalDistro(object): From f218cbd5907f4629c5b91089572296a3c6264765 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Wed, 23 Feb 2022 11:55:02 +0100 Subject: [PATCH 062/259] debian: fix parsing of kernel package version some debian kernel packages have an additional version suffix (examples I found are -rt and -cloud) which is somehow buried into the name, and that is particularly weird for the the ones having the "common" arch in the name: linux-headers-5.16.0-1-amd64_5.16.7-2_amd64.deb linux-headers-5.16.0-1-cloud-amd64_5.16.7-2_amd64.deb linux-headers-5.16.0-1-common_5.16.7-2_all.deb linux-headers-5.16.0-1-common-rt_5.16.7-2_all.deb linux-headers-5.16.0-1-rt-amd64_5.16.7-2_amd64.deb Refactor the regexp so to capture the combination of arch and variant (in whatever order) by stopping at the first "_", and handle the exception of the "common" pseudo-architecture accordingly. Notice how we now have different combinations of variant+architecture (or just architecture with no variant) but they are all treated as if they were an architecture (with the exception of possibly having an hypen in between, like cloud-amd64). For this reason, use a different separator ":" between the version and the variant+architecture so that the version can be easily reconstructed. --- probe_builder/builder/distro/debian.py | 32 ++++++++++++++++++-------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/probe_builder/builder/distro/debian.py b/probe_builder/builder/distro/debian.py index 430f481..7b05574 100644 --- a/probe_builder/builder/distro/debian.py +++ b/probe_builder/builder/distro/debian.py @@ -12,7 +12,7 @@ class DebianBuilder(DistroBuilder): - KERNEL_VERSION_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+(-[^-]+)?)-(?P[a-z0-9]+)') + KERNEL_VERSION_RE = re.compile(r'-(?P[0-9]\.[0-9]+\.[0-9]+(-[^-]+)?)-(?P[a-z0-9-]+)_') KBUILD_PACKAGE_RE = re.compile(r'linux-kbuild-(?P[0-9]\.[0-9]+)_') @staticmethod @@ -28,7 +28,11 @@ def unpack_kernels(self, workspace, distro, kernels): kernel_dirs = dict() for release, debs in kernels.items(): - version, arch = release.rsplit('-', 1) + # we can no longer use '-' as the separator, since now also have variant + # (e.g. cloud-amd64) + version, vararch = release.rsplit(':', 1) + # restore the original composite e.g. 5.16.0-1-cloud-amd64 + release = release.replace(':', '-') target = workspace.subdir('build', distro, version) kernel_dirs[release] = target @@ -100,21 +104,31 @@ def batch_packages(self, kernel_files): click.echo("Filename {} doesn't look like a kernel package (no version)".format(deb), err=True) continue version = m.group('version') - arch = m.group('arch') + vararch = m.group('vararch') - if arch == 'common': + if 'common' in vararch: + # + # linux-headers-5.16.0-1-|common|_5.16.7-2_all.deb + # linux-headers-5.16.0-1-|common-rt|_5.16.7-2_all.deb + # common_packages.setdefault(version, []).append(deb) else: - arch_packages.setdefault(version, {}).setdefault(arch, []).append(deb) - - for version, per_arch in arch_packages.items(): - for arch, packages in per_arch.items(): + # + # linux-headers-5.16.0-1-|rt-amd64|_5.16.7-2_amd64.deb + # linux-image-5.16.0-1-|amd64|_5.16.7-2_amd64.deb + # linux-image-5.16.0-1-|cloud-amd64|_5.16.7-2_amd64.deb + # linux-image-5.16.0-1-|rt-amd64|_5.16.7-2_amd64.deb + # + arch_packages.setdefault(version, {}).setdefault(vararch, []).append(deb) + + for version, per_vararch in arch_packages.items(): + for vararch, packages in per_vararch.items(): packages.extend(common_packages.get(version, [])) major, minor, _ = version.split('.', 2) major_version = '{}.{}'.format(major, minor) kbuild_pkg = kbuild_packages.get(major_version) if kbuild_pkg: packages.append(kbuild_pkg) - kernels['{}-{}'.format(version, arch)] = packages + kernels['{}:{}'.format(version, vararch)] = packages return kernels From 16b4d908559b60d480cd02d559a990b572f1b29e Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Wed, 23 Feb 2022 21:28:56 +0100 Subject: [PATCH 063/259] ubuntu: handle release_ids containing dashes Packages like: linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb were not handled correctly in that release_id was considered as '5.4.0-1063-azure' which would also contain packages like: linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb leading to the following error: ValueError: Unexpected version 5.4.0-1063/66+cvm3 from package /workspace/ubuntu/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb (expected 5.4.0-1063/66) Change the regex so to swallow such strings and therefore yield a different release_id and avoid such mismatch. --- probe_builder/builder/distro/ubuntu.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/probe_builder/builder/distro/ubuntu.py b/probe_builder/builder/distro/ubuntu.py index b85cfc4..814f936 100644 --- a/probe_builder/builder/distro/ubuntu.py +++ b/probe_builder/builder/distro/ubuntu.py @@ -12,7 +12,7 @@ class UbuntuBuilder(DistroBuilder): KERNEL_VERSION_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+)\.(?P[0-9][^_]*)') - KERNEL_RELEASE_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+-[a-z]+)') + KERNEL_RELEASE_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+-[a-z0-9-]+)') def unpack_kernels(self, workspace, distro, kernels): kernel_dirs = dict() @@ -77,6 +77,7 @@ def batch_packages(self, kernel_files): for deb in kernel_files: deb_basename = os.path.basename(deb) + # linux-headers-5.4.0-1063-azure-cvm_|5.4.0-1063.66+cvm3|_amd64.deb m = self.KERNEL_VERSION_RE.search(deb_basename) if not m: click.echo("Filename {} doesn't look like a kernel package (no version)".format(deb), err=True) @@ -85,6 +86,8 @@ def batch_packages(self, kernel_files): update = m.group('update') version = '{}/{}'.format(version, update) + + # linux-headers-|5.4.0-1063-azure-cvm|_5.4.0-1063.66+cvm3_amd64.deb m = self.KERNEL_RELEASE_RE.search(deb_basename) if m: release = m.group('release') From 80da8c491daa57cbe5d2fb87e2ffdac5e091b05d Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Thu, 10 Feb 2022 22:41:54 +0100 Subject: [PATCH 064/259] crawler: fedora: add fedora updates this way, in addition to: === 5.6.6-300.fc32.x86_64 === === 5.8.15-301.fc33.x86_64 === === 5.11.12-300.fc34.x86_64 === === 5.14.10-300.fc35.x86_64 === we also get: === 5.11.22-100.fc32.x86_64 === === 5.14.18-100.fc33.x86_64 === === 5.16.9-100.fc34.x86_64 === === 5.16.9-200.fc35.x86_64 === --- probe_builder/kernel_crawler/fedora.py | 1 + 1 file changed, 1 insertion(+) diff --git a/probe_builder/kernel_crawler/fedora.py b/probe_builder/kernel_crawler/fedora.py index 3cc947d..22fc7f5 100644 --- a/probe_builder/kernel_crawler/fedora.py +++ b/probe_builder/kernel_crawler/fedora.py @@ -13,6 +13,7 @@ class FedoraMirror(repo.Distro): def __init__(self): mirrors = [ rpm.RpmMirror('https://mirrors.kernel.org/fedora/releases/', 'Everything/x86_64/os/', repo_filter), + rpm.RpmMirror('https://mirrors.kernel.org/fedora/updates/', 'Everything/x86_64/', repo_filter), ] super(FedoraMirror, self).__init__(mirrors) From 01d55697ffa47be18dcbd1807970383adc4b2abc Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Mon, 28 Feb 2022 12:21:39 +0100 Subject: [PATCH 065/259] probe-builder: fix typo in comment --- probe_builder/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index b050558..c7bb933 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -61,7 +61,7 @@ def __init__(self, distro, builder_distro, crawler_distro): def get_kernels(self, workspace, _packages, download_config): # crawler will return a dictionary of {"release": ["http://url/for/package1.rpm", "http://url/for/package1.rpm"]} crawled_dict = self.distro_builder.crawl(workspace, self.distro_obj, self.crawler_distro, download_config) - # we flatten that dictionary into a single list, retaining ONLY package urls and discaring the release altogether + # we flatten that dictionary into a single list, retaining ONLY package urls and discarding the release altogether flattened_packages = [pkg for pkgs in crawled_dict.values() for pkg in pkgs] # then we batch that list as if it were a local distro batched_packages = self.distro_builder.batch_packages(flattened_packages) From 8cdb98ab404d394ed931e152f9ea37623494fa19 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Wed, 2 Mar 2022 14:07:44 +0100 Subject: [PATCH 066/259] crawler: ubuntu: no longer treat it as a debian-like mirror crawling ubuntu mirrors as debian-like has the effect of resolving all dependencies across all repositories. This creates a global namespace for all ubuntu packages (across all distributions), which creates a problem when the same kernel release (e.g. 5.4.0-1065-68) is packaged within packages of the same name: - linux-headers-5.4.0-1065-aws but with different versions: - 5.4.0-1065.68~18.04.1 (within bionic repositories) - 5.4.0-1065.68 (within focal repositories) This has the side effect of one version potentially masking all others. This patch essentially restores the default distro behavior, by which dependencies are only resolved looking at packages coming from the same repo. This way we can build all combinations of (kernel_release, pkgs_version), jumping from 1568 to 1958 kernels. Notice how we were not necessarily skipping backported kernels; in some cases newer versions would be masked by older ones, for no obvious reason. --- probe_builder/kernel_crawler/ubuntu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/probe_builder/kernel_crawler/ubuntu.py b/probe_builder/kernel_crawler/ubuntu.py index c69ad36..80c02ab 100644 --- a/probe_builder/kernel_crawler/ubuntu.py +++ b/probe_builder/kernel_crawler/ubuntu.py @@ -1,8 +1,8 @@ from . import deb -from . import debian +from . import repo -class UbuntuMirror(debian.DebianLikeMirror): +class UbuntuMirror(repo.Distro): def __init__(self): mirrors = [ deb.DebMirror('https://mirrors.edge.kernel.org/ubuntu/'), From a4c6cca3cccaa9eea3cc93dfa8fbbf0aec0de6b8 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Wed, 2 Mar 2022 15:42:08 +0100 Subject: [PATCH 067/259] crawler: debian: drop DebianLikeMirror with ubuntu no longer being a debian-like mirror, there's no point keeping it around. Drop it and add a few words why some special behavior is needed for debian mirrors in the first place. --- probe_builder/kernel_crawler/debian.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/probe_builder/kernel_crawler/debian.py b/probe_builder/kernel_crawler/debian.py index e41e64f..1890ed0 100644 --- a/probe_builder/kernel_crawler/debian.py +++ b/probe_builder/kernel_crawler/debian.py @@ -8,8 +8,18 @@ def repo_filter(dist): return 'stable' not in dist and 'testing' not in dist and not dist.startswith('Debian') -class DebianLikeMirror(repo.Distro): +class DebianMirror(repo.Distro): + def __init__(self): + mirrors = [ + deb.DebMirror('https://mirrors.edge.kernel.org/debian/', repo_filter), + deb.DebMirror('http://security.debian.org/', repo_filter), + ] + super(DebianMirror, self).__init__(mirrors) + # For Debian mirrors, we need to override this method so that dependencies + # can be resolved (i.e. build_package_tree) across multiple repositories. + # This is namely required for the linux-kbuild package, which is typically + # hosted on a different repository compared to the kernel packages def get_package_tree(self, version=''): all_packages = {} all_kernel_packages = [] @@ -25,12 +35,3 @@ def get_package_tree(self, version=''): for release, dependencies in deb.DebRepository.build_package_tree(all_packages, all_kernel_packages).items(): packages.setdefault(release, set()).update(dependencies) return packages - - -class DebianMirror(DebianLikeMirror): - def __init__(self): - mirrors = [ - deb.DebMirror('https://mirrors.edge.kernel.org/debian/', repo_filter), - deb.DebMirror('http://security.debian.org/', repo_filter), - ] - super(DebianMirror, self).__init__(mirrors) From 18a841806558cbeb3759cb67e00a012d0814ae99 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Thu, 3 Mar 2022 13:16:15 +0100 Subject: [PATCH 068/259] builder: allow multiple target directories for the same release kernel_dirs has so far been treated as a dictionary with the release as the key, and the target directory as the value. However, for ubuntu we have the need to build the exact same release onto multiple target directories (i.e. package versions). Rework the dictionary as a list of tuples. --- probe_builder/__init__.py | 2 +- probe_builder/builder/distro/centos.py | 4 ++-- probe_builder/builder/distro/debian.py | 7 +++---- probe_builder/builder/distro/flatcar.py | 4 ++-- probe_builder/builder/distro/ubuntu.py | 5 ++--- 5 files changed, 10 insertions(+), 12 deletions(-) diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index c7bb933..d36c935 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -127,7 +127,7 @@ def build(builder_image_prefix, kernels = distro_obj.get_kernels(workspace, package, download_config) kernel_dirs = distro_builder.unpack_kernels(workspace, distro.distro, kernels) - for release, target in kernel_dirs.items(): + for release, target in kernel_dirs: distro_builder.build_kernel(workspace, probe, distro.builder_distro, release, target) diff --git a/probe_builder/builder/distro/centos.py b/probe_builder/builder/distro/centos.py index eb27a9f..98c94f9 100644 --- a/probe_builder/builder/distro/centos.py +++ b/probe_builder/builder/distro/centos.py @@ -14,11 +14,11 @@ class CentosBuilder(DistroBuilder): RPM_KERNEL_RELEASE_RE = re.compile(r'^kernel-(uek-)?(core-|devel-|modules-)?(?P.*)\.rpm$') def unpack_kernels(self, workspace, distro, kernels): - kernel_dirs = dict() + kernel_dirs = list() for release, rpms in kernels.items(): target = workspace.subdir('build', distro, release) - kernel_dirs[release] = target + kernel_dirs.append((release, target)) for rpm in rpms: rpm_basename = os.path.basename(rpm) diff --git a/probe_builder/builder/distro/debian.py b/probe_builder/builder/distro/debian.py index 7b05574..5ac493d 100644 --- a/probe_builder/builder/distro/debian.py +++ b/probe_builder/builder/distro/debian.py @@ -25,7 +25,7 @@ def _reparent_link(base_path, release, link_name): os.symlink(build_link_target, build_link_path) def unpack_kernels(self, workspace, distro, kernels): - kernel_dirs = dict() + kernel_dirs = list() for release, debs in kernels.items(): # we can no longer use '-' as the separator, since now also have variant @@ -35,18 +35,17 @@ def unpack_kernels(self, workspace, distro, kernels): release = release.replace(':', '-') target = workspace.subdir('build', distro, version) - kernel_dirs[release] = target try: for deb in debs: deb_basename = os.path.basename(deb) marker = os.path.join(target, '.' + deb_basename) toolkit.unpack_deb(workspace, deb, target, marker) + kernel_dirs.append((release, target)) except: traceback.print_exc() - del kernel_dirs[release] - for release, target in kernel_dirs.items(): + for release, target in kernel_dirs: kerneldir = self.get_kernel_dir(workspace, release, target) base_path = workspace.subdir(target) diff --git a/probe_builder/builder/distro/flatcar.py b/probe_builder/builder/distro/flatcar.py index 42577aa..a07f722 100644 --- a/probe_builder/builder/distro/flatcar.py +++ b/probe_builder/builder/distro/flatcar.py @@ -16,11 +16,11 @@ class FlatcarBuilder(DistroBuilder): def unpack_kernels(self, workspace, distro, kernels): - kernel_dirs = dict() + kernel_dirs = list() for release, dev_containers in kernels.items(): target = workspace.subdir('build', distro, release) - kernel_dirs[release] = target + kernel_dirs.append((release, target)) for dev_container in dev_containers: dev_container_basename = os.path.basename(dev_container) diff --git a/probe_builder/builder/distro/ubuntu.py b/probe_builder/builder/distro/ubuntu.py index 814f936..dd1f736 100644 --- a/probe_builder/builder/distro/ubuntu.py +++ b/probe_builder/builder/distro/ubuntu.py @@ -15,8 +15,7 @@ class UbuntuBuilder(DistroBuilder): KERNEL_RELEASE_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+-[a-z0-9-]+)') def unpack_kernels(self, workspace, distro, kernels): - kernel_dirs = dict() - + kernel_dirs = list() for release, debs in kernels: # we don't have the version handy, so gather it from all the package # names in the release. these all should match but at this point we can @@ -39,7 +38,7 @@ def unpack_kernels(self, workspace, distro, kernels): )) target = workspace.subdir('build', distro, version[0], version[1]) - kernel_dirs[release] = target + kernel_dirs.append((release, target)) for deb in debs: deb_basename = os.path.basename(deb) From 7cf8cce31030c79a9bfa401f284f4d7a9c49b00d Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Thu, 3 Mar 2022 13:12:09 +0100 Subject: [PATCH 069/259] ubuntu: treat each package version as a separate release when batching packages, instead of using the plain release '5.4.0-100-generic' as the key, use the tuple (release, version), allowing for the storage of two separate set of packages within the releases dictionary: ('5.4.0-100-generic', '5.4.0-100.113~18.04.1'): ['/workspace/ubuntu/linux-modules-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb', '/workspace/ubuntu/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb'] ('5.4.0-100-generic', '5.4.0-100.113'): ['/workspace/ubuntu/linux-modules-5.4.0-100-generic_5.4.0-100.113_amd64.deb', '/workspace/ubuntu/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb'] which will eventually be returned as two tuples in kernels: ('5.4.0-100-generic', ['/workspace/ubuntu/linux-modules-5.4.0-100-generic_5.4.0-100.113_amd64.deb', '/workspace/ubuntu/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb']) ('5.4.0-100-generic', ['/workspace/ubuntu/linux-modules-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb', '/workspace/ubuntu/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb']) --- probe_builder/builder/distro/ubuntu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/probe_builder/builder/distro/ubuntu.py b/probe_builder/builder/distro/ubuntu.py index dd1f736..b90ef4e 100644 --- a/probe_builder/builder/distro/ubuntu.py +++ b/probe_builder/builder/distro/ubuntu.py @@ -91,13 +91,13 @@ def batch_packages(self, kernel_files): if m: release = m.group('release') version_to_releases.setdefault(version, set()).add(release) - releases.setdefault(release, []).append(deb) + releases.setdefault((release, version), []).append(deb) else: version_files.setdefault(version, []).append(deb) for version, release_ids in version_to_releases.items(): for release_id in release_ids: - release_files = releases[release_id] + release_files = releases[(release_id, version)] # add all the shared files that end up in the same directory release_files.extend(version_files.get(version, [])) kernels.append((release_id, release_files)) From 7d349c4ad0687abac8ffe058cf1d81cdbcc40bc0 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Mon, 7 Mar 2022 14:03:25 +0100 Subject: [PATCH 070/259] builder: do not try to build probes that should be skipped add a missing return statement, probably forgotten --- probe_builder/builder/distro/base_builder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/probe_builder/builder/distro/base_builder.py b/probe_builder/builder/distro/base_builder.py index 0cbe5c4..2fd1587 100644 --- a/probe_builder/builder/distro/base_builder.py +++ b/probe_builder/builder/distro/base_builder.py @@ -51,6 +51,7 @@ def build_kernel_impl(cls, config_hash, container_name, image_name, kernel_dir, if skip_reason: logger.info('Skipping build of {} probe {}-{}: {}'.format(label, release, config_hash, skip_reason)) + return docker.rm(container_name) try: From bc47c34f8aeec2d3969c42382bc3e9789ac7651a Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Mon, 7 Mar 2022 14:16:59 +0100 Subject: [PATCH 071/259] builder: log errors if the probe file does not get built after running the builder image, check that the probe file actually exists. If not, print the resulting output. This becomes useful, for instance, when the eBPF probe does not get built because the builder image does not contain clang / llvm. --- probe_builder/builder/builder_image.py | 9 +++++---- probe_builder/builder/distro/base_builder.py | 11 +++++++++-- probe_builder/docker.py | 3 ++- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/probe_builder/builder/builder_image.py b/probe_builder/builder/builder_image.py index 26a09f3..f3f2138 100644 --- a/probe_builder/builder/builder_image.py +++ b/probe_builder/builder/builder_image.py @@ -30,7 +30,7 @@ def run(workspace, probe, kernel_dir, kernel_release, docker.EnvVar('HASH_ORIG', config_hash) ] - docker.run(image_name, volumes, args, env, name=container_name) + return docker.run(image_name, volumes, args, env, name=container_name) def probe_output_file(probe, kernel_release, config_hash, bpf): @@ -50,11 +50,12 @@ def probe_output_file(probe, kernel_release, config_hash, bpf): ("5.8.0-1023-aws", "3f7746be1bef4c3f68f5465d8453fa4d"), ] - -def skip_build(probe, output_dir, kernel_release, config_hash, bpf): +def probe_built(probe, output_dir, kernel_release, config_hash, bpf): probe_file_name = probe_output_file(probe, kernel_release, config_hash, bpf) + return os.path.exists(os.path.join(output_dir, probe_file_name)) - if os.path.exists(os.path.join(output_dir, probe_file_name)): +def skip_build(probe, output_dir, kernel_release, config_hash, bpf): + if probe_built(probe, output_dir, kernel_release, config_hash, bpf): return "Already built" if (kernel_release, config_hash) in SKIPPED_KERNELS: diff --git a/probe_builder/builder/distro/base_builder.py b/probe_builder/builder/distro/base_builder.py index 2fd1587..f6066fc 100644 --- a/probe_builder/builder/distro/base_builder.py +++ b/probe_builder/builder/distro/base_builder.py @@ -9,6 +9,7 @@ from probe_builder.builder import builder_image, choose_builder from probe_builder.kernel_crawler import crawl_kernels from probe_builder.kernel_crawler.download import download_batch +from probe_builder.py23 import make_bytes, make_string logger = logging.getLogger(__name__) @@ -55,11 +56,17 @@ def build_kernel_impl(cls, config_hash, container_name, image_name, kernel_dir, docker.rm(container_name) try: - builder_image.run(workspace, probe, kernel_dir, release, config_hash, container_name, image_name, args) + lines = builder_image.run(workspace, probe, kernel_dir, release, config_hash, container_name, image_name, args) except subprocess.CalledProcessError: logger.error("Build failed for {} probe {}-{}".format(label, release, config_hash)) else: - logger.info("Build for {} probe {}-{} successful".format(label, release, config_hash)) + output_dir = workspace.subdir('output') + if builder_image.probe_built(probe, output_dir, release, config_hash, bpf): + logger.info("Build for {} probe {}-{} successful".format(label, release, config_hash)) + else: + logger.warn("Build for {} probe {}-{} failed silently: no output file found".format(label, release, config_hash)) + for line in lines: + logger.warn(make_string(line)) def build_kernel(self, workspace, probe, builder_distro, release, target): config_hash = self.hash_config(release, target) diff --git a/probe_builder/docker.py b/probe_builder/docker.py index 626b184..97c1f29 100644 --- a/probe_builder/docker.py +++ b/probe_builder/docker.py @@ -49,7 +49,8 @@ def run(image, volumes, command, env, privileged=False, name=None): cmd.append(image) cmd.extend(command) - pipe(cmd) + # return stdout + return pipe(cmd) def build(image, dockerfile, context_dir): From cc6b4c7c08973e24f9651145867c530cdf953645 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Mon, 7 Mar 2022 14:57:18 +0100 Subject: [PATCH 072/259] fix eBPF build for Fedora 35 (#37) Re-add clang and llvm to the builder container for Fedora 35, which were initially removed because at the time they would generate code that would not pass the verifier test upon loading. The version now present in the image does not seem to suffer from this problem anymore, so re-add them. This reverts commit 66724e2f0aa069f799f9165cae8d4b9e8bbfa9c8. --- Dockerfile.centos-gcc11.2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.centos-gcc11.2 b/Dockerfile.centos-gcc11.2 index bfe7298..42a84bd 100644 --- a/Dockerfile.centos-gcc11.2 +++ b/Dockerfile.centos-gcc11.2 @@ -13,6 +13,8 @@ RUN yum -y install \ elfutils-devel \ findutils \ kmod \ + clang \ + llvm \ python-lxml && yum clean all ADD builder-entrypoint.sh / From 7c3d1a9b9126c08f053564a13b5523b0a840c82c Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Thu, 17 Mar 2022 16:56:35 +0100 Subject: [PATCH 073/259] refine kernel version filtering (#41) add -f option to the build command, so that filter could be applied to building in addition to crawling. Notice how for 'crawl' it's an argument, whereas for 'build' it's an option. Also refactor the argument all around so that it's called 'filter' as opposed to 'version', and add a few comments about the logic. This makes for a slightly quicker test cycle by running, for instance: ... -k Ubuntu -f 4.4.0-1089 ... -k Debian -f 4.19.0-0 ... -k Fedora -f 5.6.6-300.fc32 --- probe_builder/__init__.py | 11 +++++----- probe_builder/builder/distro/base_builder.py | 4 ++-- probe_builder/kernel_crawler/deb.py | 22 ++++++++++++-------- probe_builder/kernel_crawler/rpm.py | 15 ++++++------- 4 files changed, 29 insertions(+), 23 deletions(-) diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index d36c935..93b9a15 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -58,9 +58,9 @@ def __init__(self, distro, builder_distro, crawler_distro): self.distro_builder = self.distro_obj.builder() self.crawler_distro = crawler_distro - def get_kernels(self, workspace, _packages, download_config): + def get_kernels(self, workspace, _packages, download_config, filter): # crawler will return a dictionary of {"release": ["http://url/for/package1.rpm", "http://url/for/package1.rpm"]} - crawled_dict = self.distro_builder.crawl(workspace, self.distro_obj, self.crawler_distro, download_config) + crawled_dict = self.distro_builder.crawl(workspace, self.distro_obj, self.crawler_distro, download_config, filter) # we flatten that dictionary into a single list, retaining ONLY package urls and discarding the release altogether flattened_packages = [pkg for pkgs in crawled_dict.values() for pkg in pkgs] # then we batch that list as if it were a local distro @@ -73,7 +73,7 @@ def __init__(self, distro, builder_distro): self.distro_obj = Distro(distro, builder_distro) self.distro_builder = self.distro_obj.builder() - def get_kernels(self, _workspace, packages, _download_config): + def get_kernels(self, _workspace, packages, _download_config, filter): return self.distro_builder.batch_packages(packages) @@ -105,6 +105,7 @@ def cli(debug): @click.option('-b', '--builder-image-prefix', default='') @click.option('-d', '--download-concurrency', type=click.INT, default=1) @click.option('-k', '--kernel-type', type=click.Choice(sorted(CLI_DISTROS.keys()))) +@click.option('-f', '--filter', default='') @click.option('-p', '--probe-name') @click.option('-r', '--retries', type=click.INT, default=1) @click.option('-s', '--source-dir') @@ -112,7 +113,7 @@ def cli(debug): @click.option('-v', '--probe-version') @click.argument('package', nargs=-1) def build(builder_image_prefix, - download_concurrency, kernel_type, probe_name, retries, + download_concurrency, kernel_type, filter, probe_name, retries, source_dir, download_timeout, probe_version, package): workspace_dir = os.getcwd() builder_source = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) @@ -125,7 +126,7 @@ def build(builder_image_prefix, distro = distro_obj.distro_obj download_config = DownloadConfig(download_concurrency, download_timeout, retries, None) - kernels = distro_obj.get_kernels(workspace, package, download_config) + kernels = distro_obj.get_kernels(workspace, package, download_config, filter) kernel_dirs = distro_builder.unpack_kernels(workspace, distro.distro, kernels) for release, target in kernel_dirs: distro_builder.build_kernel(workspace, probe, distro.builder_distro, release, target) diff --git a/probe_builder/builder/distro/base_builder.py b/probe_builder/builder/distro/base_builder.py index f6066fc..f0b266f 100644 --- a/probe_builder/builder/distro/base_builder.py +++ b/probe_builder/builder/distro/base_builder.py @@ -102,8 +102,8 @@ def build_kernel(self, workspace, probe, builder_distro, release, target): def batch_packages(self, kernel_files): raise NotImplementedError - def crawl(self, workspace, distro, crawler_distro, download_config=None): - kernels = crawl_kernels(crawler_distro) + def crawl(self, workspace, distro, crawler_distro, download_config=None, filter=''): + kernels = crawl_kernels(crawler_distro, filter) try: os.makedirs(workspace.subdir(distro.distro)) except OSError as exc: diff --git a/probe_builder/kernel_crawler/deb.py b/probe_builder/kernel_crawler/deb.py index ca8f0cc..0138f13 100644 --- a/probe_builder/kernel_crawler/deb.py +++ b/probe_builder/kernel_crawler/deb.py @@ -120,16 +120,16 @@ def get_package_deps(cls, packages, pkg): all_deps.add(packages[dep]['URL']) return all_deps - def get_package_list(self, deps, package_filter): + def get_package_list(self, packages, package_filter): kernel_packages = [] - for p in deps.keys(): + for p in packages.keys(): if not p.startswith('linux-headers-'): continue release = p.replace('linux-headers-', '') - if 'linux-modules-{}'.format(release) in deps: + if 'linux-modules-{}'.format(release) in packages: kernel_packages.append(p) kernel_packages.append('linux-modules-{}'.format(release)) - elif 'linux-image-{}'.format(release) in deps: + elif 'linux-image-{}'.format(release) in packages: kernel_packages.append(p) kernel_packages.append('linux-image-{}'.format(release)) @@ -141,12 +141,16 @@ def get_package_list(self, deps, package_filter): linux_modules = 'linux-modules-{}'.format(package_filter) linux_headers = 'linux-headers-{}'.format(package_filter) linux_image = 'linux-image-{}'.format(package_filter) - if package_filter in deps: + # if the filter is an exact match on package name, just pick that + if package_filter in packages: return [package_filter] - elif linux_modules in kernel_packages and linux_headers in deps: + # if the filter is an exact match on the suffix for headers and modules, use both + elif linux_modules in kernel_packages and linux_headers in kernel_packages: return [linux_modules, linux_headers] - elif linux_image in kernel_packages and linux_headers in deps: + # same for image + elif linux_image in kernel_packages and linux_headers in kernel_packages: return [linux_image, linux_headers] + # otherwise just pick up anything matching it else: return [k for k in kernel_packages if package_filter in k] @@ -188,9 +192,9 @@ def build_package_tree(cls, packages, package_list): del deps[pkg] return deps - def get_package_tree(self, version=''): + def get_package_tree(self, filter=''): packages = self.get_raw_package_db() - package_list = self.get_package_list(packages, version) + package_list = self.get_package_list(packages, filter) return self.build_package_tree(packages, package_list) diff --git a/probe_builder/kernel_crawler/rpm.py b/probe_builder/kernel_crawler/rpm.py index 33d280e..659b56f 100644 --- a/probe_builder/kernel_crawler/rpm.py +++ b/probe_builder/kernel_crawler/rpm.py @@ -38,20 +38,21 @@ def kernel_package_query(cls): return '''name IN ('kernel', 'kernel-devel')''' @classmethod - def build_base_query(cls, version=''): + def build_base_query(cls, filter=''): base_query = '''SELECT version || '-' || release || '.' || arch, pkgkey FROM packages WHERE {}'''.format( cls.kernel_package_query()) - if not version: + if not filter: return base_query, () else: - return base_query + ''' AND (version = ? OR version || '-' || "release" = ?)''', (version, version) + # if filtering, match anythint like 5.6.6 (version) or 5.6.6-300.fc32 (version || '-' || release) + return base_query + ''' AND (version = ? OR version || '-' || "release" = ?)''', (filter, filter) @classmethod - def parse_repo_db(cls, repo_db, version=''): + def parse_repo_db(cls, repo_db, filter=''): db = sqlite3.connect(repo_db) cursor = db.cursor() - base_query, args = cls.build_base_query(version) + base_query, args = cls.build_base_query(filter) query = '''WITH RECURSIVE transitive_deps(version, pkgkey) AS ( {} UNION @@ -70,7 +71,7 @@ def get_repodb_url(self): pkglist_url = self.get_loc_by_xpath(repomd, '//repo:repomd/repo:data[@type="primary_db"]/repo:location/@href') return self.base_url + pkglist_url - def get_package_tree(self, version=''): + def get_package_tree(self, filter=''): packages = {} try: repodb_url = self.get_repodb_url() @@ -81,7 +82,7 @@ def get_package_tree(self, version=''): with tempfile.NamedTemporaryFile() as tf: tf.write(repodb) tf.flush() - for pkg in self.parse_repo_db(tf.name, version): + for pkg in self.parse_repo_db(tf.name, filter): version, url = pkg packages.setdefault(version, set()).add(self.base_url + url) return packages From c875f4a9ed75790da2cd530d91b7e54c6a9ebbe2 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Thu, 17 Mar 2022 16:57:13 +0100 Subject: [PATCH 074/259] add -d option to the entry point to pass --debug to the probe builder (#40) --- main-builder-entrypoint.sh | 13 ++++++++++--- probe_builder/__init__.py | 1 + 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/main-builder-entrypoint.sh b/main-builder-entrypoint.sh index f8057d6..5215a1e 100755 --- a/main-builder-entrypoint.sh +++ b/main-builder-entrypoint.sh @@ -53,6 +53,9 @@ Options: Run the kernel crawler to list available kernel packages for a particular distribution. Run without extra parameters to see the supported distributions. + + -d + Enable debug (pass --debug to the probe builder) EOF exit 1 } @@ -71,7 +74,7 @@ build_probes() { check_docker_socket cd /workspace - probe_builder build -s /sysdig -b "$BUILDER_IMAGE_PREFIX" "$@" /kernels/* + probe_builder ${DEBUG_PREFIX} build -s /sysdig -b "$BUILDER_IMAGE_PREFIX" "$@" /kernels/* } prepare_builders() @@ -88,11 +91,12 @@ download_from_artifactory() crawl() { - probe_builder crawl "$@" + probe_builder ${DEBUG_PREFIX} crawl "$@" } BUILDER_IMAGE_PREFIX= -while getopts ":Ab:BCP" opt +DEBUG_PREFIX= +while getopts ":Ab:BCdP" opt do case "$opt" in A) @@ -107,6 +111,9 @@ do C) OP=crawl ;; + d) + DEBUG_PREFIX="--debug" + ;; P) OP=prepare ;; diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index 93b9a15..435f6a2 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -20,6 +20,7 @@ def init_logging(debug): handler.setFormatter(logging.Formatter('%(asctime)s %(message)s')) handler.setLevel(level) logger.addHandler(handler) + logger.debug("DEBUG logging enabled") def get_probe(workspace, sysdig_dir, probe_name, probe_version): From c8ca918a832b8c03edbae81ff0f57b3957357653 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Thu, 17 Mar 2022 13:46:28 +0100 Subject: [PATCH 075/259] add comments and debug messages for deb-based repositories deb-based kernels (ubuntu and debian) are highly convoluted. Add some debugging statements and comments to help understand. --- probe_builder/builder/distro/base_builder.py | 3 +- probe_builder/builder/distro/debian.py | 17 ++++++- probe_builder/builder/distro/ubuntu.py | 49 +++++++++++++++++++- probe_builder/kernel_crawler/deb.py | 27 +++++++++++ 4 files changed, 92 insertions(+), 4 deletions(-) diff --git a/probe_builder/builder/distro/base_builder.py b/probe_builder/builder/distro/base_builder.py index f0b266f..c987d47 100644 --- a/probe_builder/builder/distro/base_builder.py +++ b/probe_builder/builder/distro/base_builder.py @@ -109,7 +109,7 @@ def crawl(self, workspace, distro, crawler_distro, download_config=None, filter= except OSError as exc: if exc.errno != errno.EEXIST: raise - + # kernels is a dict {'release'=>['urls'...]} all_urls = [] kernel_files = {} for release, urls in kernels.items(): @@ -119,4 +119,5 @@ def crawl(self, workspace, distro, crawler_distro, download_config=None, filter= with click.progressbar(all_urls, label='Downloading kernels', item_show_func=to_s) as all_urls: download_batch(all_urls, workspace.subdir(distro.distro), download_config) + # kernel_files is a dict {'release'=>['/local/path/to/files'....]} return kernel_files diff --git a/probe_builder/builder/distro/debian.py b/probe_builder/builder/distro/debian.py index 5ac493d..02242a3 100644 --- a/probe_builder/builder/distro/debian.py +++ b/probe_builder/builder/distro/debian.py @@ -76,7 +76,8 @@ def batch_packages(self, kernel_files): kernels = dict() # similar to ubuntu, debian has two version numbers per (kernel) package - # e.g. linux-headers-5.10.0-8-amd64_5.10.46-5_amd64.deb + # e.g. linux-headers-|5.10.0-8|-|amd64 |_5.10.46-5_amd64.deb + # | version| |vararch| # # fortunately, we unpack to 5.10.0-8 and look for 5.10.0-8-amd64 inside # so we can easily find the requested directory name from the release @@ -87,6 +88,12 @@ def batch_packages(self, kernel_files): arch_packages = {} kbuild_packages = {} + + # Step 1: we loop over all files and we arrange them in 3 buckets: + # kbuild_packages = { '5.16': 'file' } + # common_packages = { '5.16.0-1': ['files...'] } + # arch_packages = { '5.16.0-1': { 'rt-amd64': ['files...'] } } + for deb in kernel_files: deb_basename = os.path.basename(deb) @@ -120,6 +127,14 @@ def batch_packages(self, kernel_files): # arch_packages.setdefault(version, {}).setdefault(vararch, []).append(deb) + + # Step 2: we compose a dictionary + # { '5.16-0-1:rt-amd64' : [ 'linux-headers-5.16.0-1-|rt-amd64|_5.16.7-2_amd64.deb' (from arch_packages) + # 'linux-headers-5.16.0-1-|common|_5.16.7-2_all.deb' (from common_packages) + # 'linux-headers-5.16.0-1-|common-rt|_5.16.7-2_all.deb' (from common_packages) + # 'linux-kbuild-5.16....' (from kbuild_packages) + # ] + # } for version, per_vararch in arch_packages.items(): for vararch, packages in per_vararch.items(): packages.extend(common_packages.get(version, [])) diff --git a/probe_builder/builder/distro/ubuntu.py b/probe_builder/builder/distro/ubuntu.py index b90ef4e..b9fc64e 100644 --- a/probe_builder/builder/distro/ubuntu.py +++ b/probe_builder/builder/distro/ubuntu.py @@ -1,6 +1,7 @@ import logging import os import re +import pprint import click @@ -8,7 +9,7 @@ from .base_builder import DistroBuilder logger = logging.getLogger(__name__) - +pp = pprint.PrettyPrinter(depth=4) class UbuntuBuilder(DistroBuilder): KERNEL_VERSION_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+)\.(?P[0-9][^_]*)') @@ -16,6 +17,9 @@ class UbuntuBuilder(DistroBuilder): def unpack_kernels(self, workspace, distro, kernels): kernel_dirs = list() + + # notice how here kernels is a list of tuples + # ( '5.4.0-1063-aws', [".._5.4.0-1063.66_amd64.deb"] ) for release, debs in kernels: # we don't have the version handy, so gather it from all the package # names in the release. these all should match but at this point we can @@ -36,8 +40,11 @@ def unpack_kernels(self, workspace, distro, kernels): new_version[0], new_version[1], deb, version[0], version[1] )) - + # extracted files will end up in a directory derived from the version + # e.g. 5.4.0-1063/66 target = workspace.subdir('build', distro, version[0], version[1]) + # which we will address by release + # ( '5.4.0-1063-aws', '/path/to/5.4.0-1063/66' ) kernel_dirs.append((release, target)) for deb in debs: @@ -59,7 +66,9 @@ def batch_packages(self, kernel_files): # ubuntu kernels have two separate versions # e.g. the package linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb # has a "version" (used in the target dir) of 5.4.0-86/97 + # which is effectively the deb package version # and a "release" (describing the paths inside the archive) of 5.4.0-86-generic + # which is effectively part of the deb package name # # sadly, it's not as straightforward as we'd wish. there's also a package # linux-headers-5.4.0-86_5.4.0-86.97_all.deb which is a dependency (potentially) @@ -73,6 +82,24 @@ def batch_packages(self, kernel_files): releases = dict() version_files = dict() + + # Step 1: allocate all packages between two buckets: + # version_files = {'5.4.0-1063/66': ['...linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb', + # '...linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb', + # '...linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb'], + # releases = + # {('5.4.0-1063-aws', '5.4.0-1063/66'): ['..linux-modules-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb', + # '...linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb'], + # ('5.4.0-1063-azure', '5.4.0-1063/66'): ['...linux-modules-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb', + # '...linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb'], + # ('5.4.0-1063-gke', '5.4.0-1063/66'): ['...linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb', + # '...linux-modules-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb'], + # and also build a map + # version_to_releases = {'5.4.0-1063/66': {'5.4.0-1063-gke', '5.4.0-1063-azure', '5.4.0-1063-aws'}, + # + # this essentially means that for each unique "version" we can find across all .deb packages + + for deb in kernel_files: deb_basename = os.path.basename(deb) @@ -91,10 +118,27 @@ def batch_packages(self, kernel_files): if m: release = m.group('release') version_to_releases.setdefault(version, set()).add(release) + logger.debug("release-file: release={}, version={}, deb={}".format(release, version, deb)) releases.setdefault((release, version), []).append(deb) else: + logger.debug("non-release-file: version={}, deb={}".format(version, deb)) version_files.setdefault(version, []).append(deb) + + logger.debug("version_files=\n{}".format(pp.pformat(version_files))) + logger.debug("releases=\n{}".format(pp.pformat(releases))) + logger.debug("version_to_releases=\n{}".format(pp.pformat(version_to_releases))) + + # Step 2: provide the final list (note: a list, not a dict!) where the first element + # is the 'release' + # [ ('5.4.0-1063-aws', + # ['/workspace/ubuntu/linux-modules-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb', + # '/workspace/ubuntu/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb', + # '/workspace/ubuntu/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb', + # '/workspace/ubuntu/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb', + # '/workspace/ubuntu/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb']), + #] + for version, release_ids in version_to_releases.items(): for release_id in release_ids: release_files = releases[(release_id, version)] @@ -102,4 +146,5 @@ def batch_packages(self, kernel_files): release_files.extend(version_files.get(version, [])) kernels.append((release_id, release_files)) + logger.debug("kernels=\n{}".format(pp.pformat(kernels))) return kernels diff --git a/probe_builder/kernel_crawler/deb.py b/probe_builder/kernel_crawler/deb.py index 0138f13..ba87d6d 100644 --- a/probe_builder/kernel_crawler/deb.py +++ b/probe_builder/kernel_crawler/deb.py @@ -6,12 +6,18 @@ import sys import click +import logging import requests + from lxml import html from . import repo from probe_builder.kernel_crawler.download import get_first_of, get_url from probe_builder.py23 import make_bytes, make_string +import pprint + +logger = logging.getLogger(__name__) +pp = pprint.PrettyPrinter(depth=4) class IncompletePackageListException(Exception): @@ -120,6 +126,9 @@ def get_package_deps(cls, packages, pkg): all_deps.add(packages[dep]['URL']) return all_deps + + # this method returns a list of available kernel-looking package _names_ + # (i.e., without version) available from within an individual .deb repository def get_package_list(self, packages, package_filter): kernel_packages = [] for p in packages.keys(): @@ -134,6 +143,7 @@ def get_package_list(self, packages, package_filter): kernel_packages.append('linux-image-{}'.format(release)) if not package_filter: + logger.debug("kernel_packages[{}]=\n{}".format(str(self), pp.pformat(kernel_packages))) return kernel_packages # return [dep for dep in kernel_packages if self.is_kernel_package(dep) and not dep.endswith('-dbg')] @@ -171,7 +181,19 @@ def get_raw_package_db(self): @classmethod def build_package_tree(cls, packages, package_list): + # this classmethod takes as input: + # - packages, a dictionary of .deb packages with their metadata + # - packages_list, a list of strings (package names) + # it traverses the dependency chain within the package_list + # and returns a dictionary of urls: + # {'5.15.0-1001/2': {'http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1001_5.15.0-1001.2_all.deb', + # 'http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1001-azure_5.15.0-1001.2_amd64.deb', + # 'http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.15.0-1001-azure_5.15.0-1001.2_amd64.deb', + # 'http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.15.0-1001-azure_5.15.0-1001.2_amd64.deb'}, + deps = {} + logger.debug("packages=\n{}".format(pp.pformat(packages))) + logger.debug("package_list=\n{}".format(pp.pformat(package_list))) with click.progressbar(package_list, label='Building dependency tree', file=sys.stderr, item_show_func=repo.to_s) as pkgs: for pkg in pkgs: @@ -180,9 +202,13 @@ def build_package_tree(cls, packages, package_list): if m: pv = '{}/{}'.format(m.group(1), m.group(2)) try: + logger.debug("Building dependency tree for {}, pv={}".format(str(pkg), pv)) deps.setdefault(pv, set()).update(cls.get_package_deps(packages, pkg)) except IncompletePackageListException: + logger.debug("No dependencies found for {}, pv={}".format(str(pkg), pv)) pass + + logger.debug("before pruning, deps=\n{}".format(pp.pformat(deps))) for pkg, dep_list in list(deps.items()): have_headers = False for dep in dep_list: @@ -190,6 +216,7 @@ def build_package_tree(cls, packages, package_list): have_headers = True if not have_headers: del deps[pkg] + logger.debug("after pruning, deps=\n{}".format(pp.pformat(deps))) return deps def get_package_tree(self, filter=''): From 8a3ea297651e246998bd8200b134df354395c90b Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Thu, 17 Mar 2022 14:35:51 +0100 Subject: [PATCH 076/259] builder: only batch packages for debian and ubuntu revert the previous change where we would flatten everything and always batch the whole pool of crawled kernels. Instead, redefine the crawl() method only where needed: - on debian, flatten all packages and batch them in a single heap (so, behaviour unchanged) - on ubuntu, perform batching per general version (i.e., the release which does not include the variant) and pass that information to the batching logic. This will become clearer in the next commit. --- probe_builder/__init__.py | 8 +------- probe_builder/builder/distro/debian.py | 16 ++++++++++++++++ probe_builder/builder/distro/ubuntu.py | 13 ++++++++++++- 3 files changed, 29 insertions(+), 8 deletions(-) diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index 435f6a2..e2d74db 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -60,13 +60,7 @@ def __init__(self, distro, builder_distro, crawler_distro): self.crawler_distro = crawler_distro def get_kernels(self, workspace, _packages, download_config, filter): - # crawler will return a dictionary of {"release": ["http://url/for/package1.rpm", "http://url/for/package1.rpm"]} - crawled_dict = self.distro_builder.crawl(workspace, self.distro_obj, self.crawler_distro, download_config, filter) - # we flatten that dictionary into a single list, retaining ONLY package urls and discarding the release altogether - flattened_packages = [pkg for pkgs in crawled_dict.values() for pkg in pkgs] - # then we batch that list as if it were a local distro - batched_packages = self.distro_builder.batch_packages(flattened_packages) - return batched_packages + return self.distro_builder.crawl(workspace, self.distro_obj, self.crawler_distro, download_config, filter) class LocalDistro(object): diff --git a/probe_builder/builder/distro/debian.py b/probe_builder/builder/distro/debian.py index 02242a3..9eb16fe 100644 --- a/probe_builder/builder/distro/debian.py +++ b/probe_builder/builder/distro/debian.py @@ -15,6 +15,22 @@ class DebianBuilder(DistroBuilder): KERNEL_VERSION_RE = re.compile(r'-(?P[0-9]\.[0-9]+\.[0-9]+(-[^-]+)?)-(?P[a-z0-9-]+)_') KBUILD_PACKAGE_RE = re.compile(r'linux-kbuild-(?P[0-9]\.[0-9]+)_') + + def crawl(self, workspace, distro, crawler_distro, download_config=None, filter=''): + # for debian, we essentially want to discard the classification work performed by the crawler, + # and batch packages together + + # call the parent's method + crawled_dict = super().crawl(workspace=workspace, distro=distro, crawler_distro=crawler_distro, download_config=download_config, filter=filter) + + # flatten that dictionary into a single list, retaining ONLY package urls and discarding the release altogether + flattened_packages = [pkg for pkgs in crawled_dict.values() for pkg in pkgs] + # then we batch that list as if it were a local distro + batched_packages = self.batch_packages(flattened_packages) + + logger.debug("batched_packages=\n{}".format(pp.pformat(batched_packages))) + return batched_packages + @staticmethod def _reparent_link(base_path, release, link_name): build_link_path = os.path.join(base_path, 'lib/modules', release, link_name) diff --git a/probe_builder/builder/distro/ubuntu.py b/probe_builder/builder/distro/ubuntu.py index b9fc64e..3c5bd4f 100644 --- a/probe_builder/builder/distro/ubuntu.py +++ b/probe_builder/builder/distro/ubuntu.py @@ -15,6 +15,17 @@ class UbuntuBuilder(DistroBuilder): KERNEL_VERSION_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+)\.(?P[0-9][^_]*)') KERNEL_RELEASE_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+-[a-z0-9-]+)') + def crawl(self, workspace, distro, crawler_distro, download_config=None, filter=''): + crawled_dict = super().crawl(workspace=workspace, distro=distro, crawler_distro=crawler_distro, download_config=download_config, filter=filter) + kernels = [] + # batch packages according to package version, e.g. '5.15.0-1001/1' as returned by the crawler + # (which is the package version of the main 'linux-headers-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb') + # each of those versions may yield one or more releases e.g. '5.15.0-1001-gke' + for version, flattened_packages in crawled_dict.items(): + # since the returned value is a list of tuple, we just extend them + kernels.extend(self.batch_packages(flattened_packages, version)) + return kernels + def unpack_kernels(self, workspace, distro, kernels): kernel_dirs = list() @@ -60,7 +71,7 @@ def hash_config(self, release, target): def get_kernel_dir(self, workspace, release, target): return workspace.subdir(target, 'usr/src/linux-headers-{}'.format(release)) - def batch_packages(self, kernel_files): + def batch_packages(self, kernel_files, expected_version=None): kernels = [] # ubuntu kernels have two separate versions From d7bbd4c53bc142989de3dbc67ba76ebf836100f6 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Thu, 17 Mar 2022 11:12:24 +0100 Subject: [PATCH 077/259] fix building of ubuntu's dishomogenous versions There's one specific ubuntu kernel, namely 5.15.0-1001-gke, which comes off as a set of packages which all have a common version 5.15.0-1001.1, except for linux-image-5.15.0-1001-gke which has version 5.15.0-1001.1+2. This is somewhat an exception as normally, when you resolve packages within the same repo, all kernel packages have the exact same version, and this is the logic applied by batch_packages() and unpack_kernels(). However, since we have repo metadata available, we can also leverage that information, e.g. === 5.15.0-1001/1 === http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1001_5.15.0-1001.1_amd64.deb http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gke/linux-image-5.15.0-1001-gke_5.15.0-1001.1+2_amd64.deb http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb so that it only needs to be checked that the expected version is at least a prefix of the package version. Same goes for unpack_kernels() -- which only works because the "longest" package does not happen to be the first one, and we surely hope this will not change. Note: this can be tested by running: ...build ... -k Ubuntu -f 5.15.0-1001 --- probe_builder/builder/distro/ubuntu.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/probe_builder/builder/distro/ubuntu.py b/probe_builder/builder/distro/ubuntu.py index 3c5bd4f..fc17ba9 100644 --- a/probe_builder/builder/distro/ubuntu.py +++ b/probe_builder/builder/distro/ubuntu.py @@ -46,7 +46,7 @@ def unpack_kernels(self, workspace, distro, kernels): version = (m.group('version'), m.group('update')) else: new_version = (m.group('version'), m.group('update')) - if version != new_version: + if version[0] != new_version[0] and not new_version[1].startswith(version[1]): raise ValueError("Unexpected version {}/{} from package {} (expected {}/{})".format( new_version[0], new_version[1], deb, version[0], version[1] @@ -123,6 +123,13 @@ def batch_packages(self, kernel_files, expected_version=None): update = m.group('update') version = '{}/{}'.format(version, update) + if expected_version: + if version.startswith(expected_version): + version = expected_version + else: + raise ValueError("Unexpected version {} from package {} (expected to start with {})".format( + version, deb, expected_version)) + # linux-headers-|5.4.0-1063-azure-cvm|_5.4.0-1063.66+cvm3_amd64.deb m = self.KERNEL_RELEASE_RE.search(deb_basename) From 9ba442224547922c892ee4241fad2b79764f8cd5 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Fri, 18 Mar 2022 17:03:12 +0100 Subject: [PATCH 078/259] fix debian builder (missing pprint package) (#43) --- probe_builder/builder/distro/debian.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/probe_builder/builder/distro/debian.py b/probe_builder/builder/distro/debian.py index 9eb16fe..f84c15f 100644 --- a/probe_builder/builder/distro/debian.py +++ b/probe_builder/builder/distro/debian.py @@ -2,6 +2,7 @@ import os import re import traceback +import pprint import click @@ -9,7 +10,7 @@ from probe_builder.builder.distro.base_builder import DistroBuilder logger = logging.getLogger(__name__) - +pp = pprint.PrettyPrinter(depth=4) class DebianBuilder(DistroBuilder): KERNEL_VERSION_RE = re.compile(r'-(?P[0-9]\.[0-9]+\.[0-9]+(-[^-]+)?)-(?P[a-z0-9-]+)_') From 5e448eff7872b520bb1b2690fd4821aff483f78c Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Tue, 22 Mar 2022 17:47:14 +0100 Subject: [PATCH 079/259] optimize download (#45) * optimize download In order to handle incomplete downloads, the current implementation will always try to append any remaining bytes to an already existing files. But this means issuing at least one HTTP request per file, which might slow down the process dramatically. Instead, use temporary .part files and rename to the their filename once complete -- this way we can assume that a file with the right name is always complete and we can skip the download altogether. * crawler: only use http for downloading this will speed up subsequent downloads significantly if we use a proxy --- probe_builder/kernel_crawler/debian.py | 2 +- probe_builder/kernel_crawler/download.py | 65 ++++++++++++++---------- probe_builder/kernel_crawler/ubuntu.py | 2 +- 3 files changed, 39 insertions(+), 30 deletions(-) diff --git a/probe_builder/kernel_crawler/debian.py b/probe_builder/kernel_crawler/debian.py index 1890ed0..96cde93 100644 --- a/probe_builder/kernel_crawler/debian.py +++ b/probe_builder/kernel_crawler/debian.py @@ -11,7 +11,7 @@ def repo_filter(dist): class DebianMirror(repo.Distro): def __init__(self): mirrors = [ - deb.DebMirror('https://mirrors.edge.kernel.org/debian/', repo_filter), + deb.DebMirror('http://mirrors.edge.kernel.org/debian/', repo_filter), deb.DebMirror('http://security.debian.org/', repo_filter), ] super(DebianMirror, self).__init__(mirrors) diff --git a/probe_builder/kernel_crawler/download.py b/probe_builder/kernel_crawler/download.py index 839ad57..01ef981 100644 --- a/probe_builder/kernel_crawler/download.py +++ b/probe_builder/kernel_crawler/download.py @@ -24,34 +24,43 @@ def download_file(url, output_file, download_config=None): - if download_config is None: - download_config = DownloadConfig.default() - resp = None - for i in range(download_config.retries): - logger.debug('Downloading {} to {}, attempt {} of {}'.format(url, output_file, i+1, download_config.retries)) - with open(output_file, 'ab') as fp: - size = fp.tell() - if size > 0: - headers = {'Range': 'bytes={}-'.format(size)} - else: - headers = {} - if download_config.extra_headers is not None: - headers.update(download_config.extra_headers) - resp = requests.get(url, headers=headers, stream=True, timeout=download_config.timeout) - if resp.status_code == 206: - # yay, resuming the download - shutil.copyfileobj(resp.raw, fp) - return - elif resp.status_code == 416: - return # "requested range not satisfiable", we have the whole thing - elif resp.status_code == 200: - fp.truncate(0) # have to start over - shutil.copyfileobj(resp.raw, fp) - return - - resp.raise_for_status() - raise requests.HTTPError('Unexpected status code {}'.format(resp.status_code)) - + def download_temp_file(url, temp_file, download_config): + if download_config is None: + download_config = DownloadConfig.default() + resp = None + for i in range(download_config.retries): + logger.debug('Downloading {} to {}, attempt {} of {}'.format(url, temp_file, i+1, download_config.retries)) + with open(temp_file, 'ab') as fp: + size = fp.tell() + if size > 0: + headers = {'Range': 'bytes={}-'.format(size)} + else: + headers = {} + if download_config.extra_headers is not None: + headers.update(download_config.extra_headers) + resp = requests.get(url, headers=headers, stream=True, timeout=download_config.timeout) + if resp.status_code == 206: + # yay, resuming the download + shutil.copyfileobj(resp.raw, fp) + return + elif resp.status_code == 416: + return # "requested range not satisfiable", we have the whole thing + elif resp.status_code == 200: + fp.truncate(0) # have to start over + shutil.copyfileobj(resp.raw, fp) + return + resp.raise_for_status() + raise requests.HTTPError('Unexpected status code {}'.format(resp.status_code)) + + # if target path already exists, assume it's complete + if os.path.exists(output_file): + logger.debug('Downloading {} to {} not necessary'.format(url, output_file)) + return + # download to .part file + temp_file = output_file + ".part" + download_temp_file(url, temp_file, download_config) + # and then rename it to its final target + shutil.move(temp_file, output_file) def download_batch(urls, output_dir, download_config=None): if download_config is None: diff --git a/probe_builder/kernel_crawler/ubuntu.py b/probe_builder/kernel_crawler/ubuntu.py index 80c02ab..ea880e2 100644 --- a/probe_builder/kernel_crawler/ubuntu.py +++ b/probe_builder/kernel_crawler/ubuntu.py @@ -5,7 +5,7 @@ class UbuntuMirror(repo.Distro): def __init__(self): mirrors = [ - deb.DebMirror('https://mirrors.edge.kernel.org/ubuntu/'), + deb.DebMirror('http://mirrors.edge.kernel.org/ubuntu/'), deb.DebMirror('http://security.ubuntu.com/ubuntu/'), ] super(UbuntuMirror, self).__init__(mirrors) From 3d641517fdd91723799fae75a026e5677023916d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 1 Mar 2022 17:19:54 +0100 Subject: [PATCH 080/259] new(kernel_crawler): implemented multiarch support. Signed-off-by: Federico Di Pierro --- probe_builder/__init__.py | 5 +- probe_builder/kernel_crawler/__init__.py | 5 +- probe_builder/kernel_crawler/amazonlinux.py | 16 +++--- probe_builder/kernel_crawler/centos.py | 17 +++--- probe_builder/kernel_crawler/deb.py | 5 +- probe_builder/kernel_crawler/debian.py | 8 +-- probe_builder/kernel_crawler/fedora.py | 8 +-- probe_builder/kernel_crawler/flatcar.py | 6 +- probe_builder/kernel_crawler/oracle.py | 64 +++++++++++---------- probe_builder/kernel_crawler/photon_os.py | 8 +-- probe_builder/kernel_crawler/repo.py | 8 ++- probe_builder/kernel_crawler/rpm.py | 1 + probe_builder/kernel_crawler/ubuntu.py | 10 ++-- 13 files changed, 85 insertions(+), 76 deletions(-) diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index e2d74db..941ac5d 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -130,8 +130,9 @@ def build(builder_image_prefix, @click.command() @click.argument('distro', type=click.Choice(sorted(DISTROS.keys()))) @click.argument('version', required=False, default='') -def crawl(distro, version=''): - kernels = crawl_kernels(distro, version) +@click.argument('arch', required=False, default='') +def crawl(distro, version='', arch=''): + kernels = crawl_kernels(distro, version, arch) for release, packages in kernels.items(): print('=== {} ==='.format(release)) for pkg in packages: diff --git a/probe_builder/kernel_crawler/__init__.py b/probe_builder/kernel_crawler/__init__.py index 5c24b7b..f497cd8 100644 --- a/probe_builder/kernel_crawler/__init__.py +++ b/probe_builder/kernel_crawler/__init__.py @@ -26,7 +26,8 @@ } -def crawl_kernels(distro, version=''): +def crawl_kernels(distro, version='', arch=''): dist = DISTROS[distro] - + if arch: + return dist(arch).get_package_tree(version) return dist().get_package_tree(version) diff --git a/probe_builder/kernel_crawler/amazonlinux.py b/probe_builder/kernel_crawler/amazonlinux.py index 61a6600..9e928d4 100644 --- a/probe_builder/kernel_crawler/amazonlinux.py +++ b/probe_builder/kernel_crawler/amazonlinux.py @@ -9,10 +9,10 @@ from probe_builder.py23 import make_string -def get_al_repo(repo_root, repo_release): +def get_al_repo(repo_root, repo_release, repo_arch = ''): repo_pointer = repo_root + repo_release + "/mirror.list" resp = get_url(repo_pointer) - return make_string(resp.splitlines()[0]).replace('$basearch', 'x86_64') + '/' + return make_string(resp.splitlines()[0]).replace('$basearch', repo_arch) + '/' class AmazonLinux1Mirror(repo.Distro): @@ -27,15 +27,15 @@ class AmazonLinux1Mirror(repo.Distro): '2018.03/main', ] - def __init__(self): - super(AmazonLinux1Mirror, self).__init__([]) + def __init__(self, arch='x86_64'): + super(AmazonLinux1Mirror, self).__init__([], arch) def list_repos(self): repo_urls = set() with click.progressbar( self.AL1_REPOS, label='Checking repositories', file=sys.stderr, item_show_func=repo.to_s) as repos: for r in repos: - repo_urls.add(get_al_repo("http://repo.us-east-1.amazonaws.com/", r)) + repo_urls.add(get_al_repo("http://repo.us-east-1.amazonaws.com/", r, self.arch)) return [rpm.RpmRepository(url) for url in sorted(repo_urls)] @@ -47,13 +47,13 @@ class AmazonLinux2Mirror(repo.Distro): 'extras/kernel-5.10/latest', ] - def __init__(self): - super(AmazonLinux2Mirror, self).__init__([]) + def __init__(self, arch='x86_64'): + super(AmazonLinux2Mirror, self).__init__([], arch) def list_repos(self): repo_urls = set() with click.progressbar( self.AL2_REPOS, label='Checking repositories', file=sys.stderr, item_show_func=repo.to_s) as repos: for r in repos: - repo_urls.add(get_al_repo("http://amazonlinux.us-east-1.amazonaws.com/2/", r + '/x86_64')) + repo_urls.add(get_al_repo("http://amazonlinux.us-east-1.amazonaws.com/2/", r + '/' + self.arch)) return [rpm.RpmRepository(url) for url in sorted(repo_urls)] diff --git a/probe_builder/kernel_crawler/centos.py b/probe_builder/kernel_crawler/centos.py index 937184e..2c00bf3 100644 --- a/probe_builder/kernel_crawler/centos.py +++ b/probe_builder/kernel_crawler/centos.py @@ -13,16 +13,15 @@ def v8_only(ver): def v6_or_v7(ver): return ver.startswith('6') or ver.startswith('7') - class CentosMirror(repo.Distro): - def __init__(self): + def __init__(self, arch='x86_64'): mirrors = [ - rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/x86_64/', v7_only), - rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/x86_64/', v7_only), + rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/' + arch + '/', v7_only), + rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/' + arch + '/', v7_only), # CentOS 8 reached end-of-life at the end of 2021, so no point looking for it - # rpm.RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/x86_64/os/', v8_only), - rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'os/x86_64/', v6_or_v7), - rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'updates/x86_64/', v6_or_v7), - rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'BaseOS/x86_64/os/', v8_only), + # rpm.RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), + rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'os/' + arch + '/', v6_or_v7), + rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'updates/' + arch + '/', v6_or_v7), + rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'BaseOS/' + arch + '/os/', v8_only), ] - super(CentosMirror, self).__init__(mirrors) + super(CentosMirror, self).__init__(mirrors, arch) diff --git a/probe_builder/kernel_crawler/deb.py b/probe_builder/kernel_crawler/deb.py index ba87d6d..8b1e564 100644 --- a/probe_builder/kernel_crawler/deb.py +++ b/probe_builder/kernel_crawler/deb.py @@ -227,11 +227,12 @@ def get_package_tree(self, filter=''): class DebMirror(repo.Mirror): - def __init__(self, base_url, repo_filter=None): + def __init__(self, base_url, arch, repo_filter=None): self.base_url = base_url if repo_filter is None: repo_filter = lambda _: True self.repo_filter = repo_filter + super().__init__(arch) def __str__(self): return self.base_url @@ -250,7 +251,7 @@ def scan_repo(self, dist): all_comps.add(comp) break for comp in all_comps: - url = dist + comp + '/binary-amd64/' + url = dist + comp + '/binary-' + self.arch + '/' repos[url] = DebRepository(self.base_url, url) return repos diff --git a/probe_builder/kernel_crawler/debian.py b/probe_builder/kernel_crawler/debian.py index 96cde93..2c03750 100644 --- a/probe_builder/kernel_crawler/debian.py +++ b/probe_builder/kernel_crawler/debian.py @@ -9,12 +9,12 @@ def repo_filter(dist): class DebianMirror(repo.Distro): - def __init__(self): + def __init__(self, arch='amd64'): mirrors = [ - deb.DebMirror('http://mirrors.edge.kernel.org/debian/', repo_filter), - deb.DebMirror('http://security.debian.org/', repo_filter), + deb.DebMirror('http://mirrors.edge.kernel.org/debian/', arch, repo_filter), + deb.DebMirror('http://security.debian.org/', arch, repo_filter), ] - super(DebianMirror, self).__init__(mirrors) + super(DebianMirror, self).__init__(mirrors, arch) # For Debian mirrors, we need to override this method so that dependencies # can be resolved (i.e. build_package_tree) across multiple repositories. diff --git a/probe_builder/kernel_crawler/fedora.py b/probe_builder/kernel_crawler/fedora.py index 22fc7f5..2b8163a 100644 --- a/probe_builder/kernel_crawler/fedora.py +++ b/probe_builder/kernel_crawler/fedora.py @@ -10,11 +10,11 @@ def repo_filter(version): class FedoraMirror(repo.Distro): - def __init__(self): + def __init__(self, arch='x86_64'): mirrors = [ - rpm.RpmMirror('https://mirrors.kernel.org/fedora/releases/', 'Everything/x86_64/os/', repo_filter), - rpm.RpmMirror('https://mirrors.kernel.org/fedora/updates/', 'Everything/x86_64/', repo_filter), + rpm.RpmMirror('https://mirrors.kernel.org/fedora/releases/', 'Everything/' + arch + '/os/', repo_filter), + rpm.RpmMirror('https://mirrors.kernel.org/fedora/updates/', 'Everything/' + arch + '/', repo_filter), ] - super(FedoraMirror, self).__init__(mirrors) + super(FedoraMirror, self).__init__(mirrors, arch) diff --git a/probe_builder/kernel_crawler/flatcar.py b/probe_builder/kernel_crawler/flatcar.py index dc2f781..78d3a41 100644 --- a/probe_builder/kernel_crawler/flatcar.py +++ b/probe_builder/kernel_crawler/flatcar.py @@ -24,9 +24,9 @@ def __str__(self): class FlatcarMirror(Distro): CHANNELS = ['stable', 'beta', 'alpha'] - def __init__(self): - mirrors = ['https://{}.release.flatcar-linux.net/amd64-usr/'.format(channel) for channel in self.CHANNELS] - super(FlatcarMirror, self).__init__(mirrors) + def __init__(self, arch='amd64'): + mirrors = ['https://{c}.release.flatcar-linux.net/{a}-usr/'.format(c=channel, a=arch) for channel in self.CHANNELS] + super(FlatcarMirror, self).__init__(mirrors, arch) def scan_repo(self, base_url): dists = requests.get(base_url) diff --git a/probe_builder/kernel_crawler/oracle.py b/probe_builder/kernel_crawler/oracle.py index 424fcbf..ac46664 100644 --- a/probe_builder/kernel_crawler/oracle.py +++ b/probe_builder/kernel_crawler/oracle.py @@ -9,47 +9,49 @@ def kernel_package_query(cls): class Oracle6Mirror(repo.Distro): - OL6_REPOS = [ - 'http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/', - - ] - - def __init__(self): - super(Oracle6Mirror, self).__init__([]) + def repos(self): + return [ + 'http://yum.oracle.com/repo/OracleLinux/OL6/latest/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/' + self.arch + '/', + ] + + def __init__(self, arch='x86_64'): + super(Oracle6Mirror, self).__init__([], arch) def list_repos(self): - return [OracleRepository(url) for url in self.OL6_REPOS] + return [OracleRepository(url) for url in self.repos()] class Oracle7Mirror(repo.Distro): - OL7_REPOS = [ - 'http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/', - ] - - def __init__(self): - super(Oracle7Mirror, self).__init__([]) + def repos(self): + return [ + 'http://yum.oracle.com/repo/OracleLinux/OL7/latest/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/' + self.arch + '/', + ] + + def __init__(self, arch='x86_64'): + super(Oracle7Mirror, self).__init__([], arch) def list_repos(self): - return [OracleRepository(url) for url in self.OL7_REPOS] + return [OracleRepository(url) for url in self.repos()] class Oracle8Mirror(repo.Distro): - OL8_REPOS = [ - 'http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/', - 'http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/', - ] + def repos(self): + return [ + 'http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/' + self.arch + '/', + ] - def __init__(self): - super(Oracle8Mirror, self).__init__([]) + def __init__(self, arch='x86_64'): + super(Oracle8Mirror, self).__init__([], arch) def list_repos(self): - return [OracleRepository(url) for url in self.OL8_REPOS] + return [OracleRepository(url) for url in self.repos()] diff --git a/probe_builder/kernel_crawler/photon_os.py b/probe_builder/kernel_crawler/photon_os.py index f25afa8..517e776 100644 --- a/probe_builder/kernel_crawler/photon_os.py +++ b/probe_builder/kernel_crawler/photon_os.py @@ -17,11 +17,11 @@ class PhotonOsMirror(repo.Distro): ('4.0', '_updates'), ] - def __init__(self): - super(PhotonOsMirror, self).__init__([]) + def __init__(self, arch='x86_64'): + super(PhotonOsMirror, self).__init__([], arch) def list_repos(self): return [ - PhotonOsRepository('https://packages.vmware.com/photon/{v}/photon{r}_{v}_x86_64/'.format( - v=version, r=repo_tag)) + PhotonOsRepository('https://packages.vmware.com/photon/{v}/photon{r}_{v}_{a}/'.format( + v=version, r=repo_tag, a=self.arch)) for version, repo_tag in self.PHOTON_OS_VERSIONS] diff --git a/probe_builder/kernel_crawler/repo.py b/probe_builder/kernel_crawler/repo.py index 939f944..5449603 100644 --- a/probe_builder/kernel_crawler/repo.py +++ b/probe_builder/kernel_crawler/repo.py @@ -19,7 +19,10 @@ def to_s(s): class Mirror(object): - def list_repos(self): + def __init__(self, arch): + self.arch = arch + + def list_repos(self,): raise NotImplementedError def get_package_tree(self, version=''): @@ -33,8 +36,9 @@ def get_package_tree(self, version=''): class Distro(Mirror): - def __init__(self, mirrors): + def __init__(self, mirrors, arch): self.mirrors = mirrors + super().__init__(arch) def list_repos(self): repos = [] diff --git a/probe_builder/kernel_crawler/rpm.py b/probe_builder/kernel_crawler/rpm.py index 659b56f..fd23113 100644 --- a/probe_builder/kernel_crawler/rpm.py +++ b/probe_builder/kernel_crawler/rpm.py @@ -96,6 +96,7 @@ def __init__(self, base_url, variant, repo_filter=None): if repo_filter is None: repo_filter = lambda _: True self.repo_filter = repo_filter + self.url = base_url def __str__(self): return self.base_url diff --git a/probe_builder/kernel_crawler/ubuntu.py b/probe_builder/kernel_crawler/ubuntu.py index ea880e2..e45a59c 100644 --- a/probe_builder/kernel_crawler/ubuntu.py +++ b/probe_builder/kernel_crawler/ubuntu.py @@ -1,11 +1,11 @@ from . import deb from . import repo - class UbuntuMirror(repo.Distro): - def __init__(self): + def __init__(self, arch='amd64'): mirrors = [ - deb.DebMirror('http://mirrors.edge.kernel.org/ubuntu/'), - deb.DebMirror('http://security.ubuntu.com/ubuntu/'), + deb.DebMirror('http://mirrors.edge.kernel.org/ubuntu/', arch), + deb.DebMirror('http://security.ubuntu.com/ubuntu/', arch), + deb.DebMirror('http://ports.ubuntu.com/ubuntu-ports/', arch), ] - super(UbuntuMirror, self).__init__(mirrors) + super(UbuntuMirror, self).__init__(mirrors, arch) From 7d22cb8b4c36684ac763421218c3130a4c5a14ec Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 3 Mar 2022 10:29:02 +0100 Subject: [PATCH 081/259] update(kernel_crawler): allow to list all kernels from all supported OSes. Moreover, added support for 'arm' keyword to list all arm kernels (debian-like use 'arm64' while others use 'aarch64'). Signed-off-by: Federico Di Pierro --- probe_builder/kernel_crawler/__init__.py | 39 ++++++++++++--------- probe_builder/kernel_crawler/amazonlinux.py | 4 +++ probe_builder/kernel_crawler/centos.py | 2 ++ probe_builder/kernel_crawler/fedora.py | 2 ++ probe_builder/kernel_crawler/flatcar.py | 2 ++ probe_builder/kernel_crawler/oracle.py | 6 ++++ probe_builder/kernel_crawler/photon_os.py | 2 ++ probe_builder/kernel_crawler/ubuntu.py | 2 ++ 8 files changed, 43 insertions(+), 16 deletions(-) diff --git a/probe_builder/kernel_crawler/__init__.py b/probe_builder/kernel_crawler/__init__.py index f497cd8..d18522c 100644 --- a/probe_builder/kernel_crawler/__init__.py +++ b/probe_builder/kernel_crawler/__init__.py @@ -10,24 +10,31 @@ from .flatcar import FlatcarMirror DISTROS = { - 'AmazonLinux': AmazonLinux1Mirror, - 'AmazonLinux2': AmazonLinux2Mirror, - 'CentOS': CentosMirror, - 'Fedora': FedoraMirror, - 'Oracle6': Oracle6Mirror, - 'Oracle7': Oracle7Mirror, - 'Oracle8': Oracle8Mirror, - 'PhotonOS': PhotonOsMirror, - - 'Debian': DebianMirror, - 'Ubuntu': UbuntuMirror, - - 'Flatcar': FlatcarMirror, + 'AmazonLinux': {AmazonLinux1Mirror}, + 'AmazonLinux2': {AmazonLinux2Mirror}, + 'CentOS': {CentosMirror}, + 'Fedora': {FedoraMirror}, + 'Oracle6': {Oracle6Mirror}, + 'Oracle7': {Oracle7Mirror}, + 'Oracle8': {Oracle8Mirror}, + 'PhotonOS': {PhotonOsMirror}, + + 'Debian': {DebianMirror}, + 'Ubuntu': {UbuntuMirror}, + + 'Flatcar': {FlatcarMirror}, + + '*': {AmazonLinux1Mirror, AmazonLinux2Mirror, CentosMirror, FedoraMirror, Oracle6Mirror, Oracle7Mirror, + Oracle8Mirror, PhotonOsMirror, DebianMirror, UbuntuMirror, FlatcarMirror}, } def crawl_kernels(distro, version='', arch=''): dist = DISTROS[distro] - if arch: - return dist(arch).get_package_tree(version) - return dist().get_package_tree(version) + ret = {} + for d in dist: + if arch: + ret.update(d(arch).get_package_tree(version)) + else: + ret.update(d().get_package_tree(version)) + return ret diff --git a/probe_builder/kernel_crawler/amazonlinux.py b/probe_builder/kernel_crawler/amazonlinux.py index 9e928d4..c8b7156 100644 --- a/probe_builder/kernel_crawler/amazonlinux.py +++ b/probe_builder/kernel_crawler/amazonlinux.py @@ -28,6 +28,8 @@ class AmazonLinux1Mirror(repo.Distro): ] def __init__(self, arch='x86_64'): + if arch=='arm': + arch='aarch64' super(AmazonLinux1Mirror, self).__init__([], arch) def list_repos(self): @@ -48,6 +50,8 @@ class AmazonLinux2Mirror(repo.Distro): ] def __init__(self, arch='x86_64'): + if arch=='arm': + arch='aarch64' super(AmazonLinux2Mirror, self).__init__([], arch) def list_repos(self): diff --git a/probe_builder/kernel_crawler/centos.py b/probe_builder/kernel_crawler/centos.py index 2c00bf3..4df1111 100644 --- a/probe_builder/kernel_crawler/centos.py +++ b/probe_builder/kernel_crawler/centos.py @@ -15,6 +15,8 @@ def v6_or_v7(ver): class CentosMirror(repo.Distro): def __init__(self, arch='x86_64'): + if arch=='arm': + arch='aarch64' mirrors = [ rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/' + arch + '/', v7_only), rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/' + arch + '/', v7_only), diff --git a/probe_builder/kernel_crawler/fedora.py b/probe_builder/kernel_crawler/fedora.py index 2b8163a..63d8f22 100644 --- a/probe_builder/kernel_crawler/fedora.py +++ b/probe_builder/kernel_crawler/fedora.py @@ -11,6 +11,8 @@ def repo_filter(version): class FedoraMirror(repo.Distro): def __init__(self, arch='x86_64'): + if arch=='arm': + arch='aarch64' mirrors = [ rpm.RpmMirror('https://mirrors.kernel.org/fedora/releases/', 'Everything/' + arch + '/os/', repo_filter), rpm.RpmMirror('https://mirrors.kernel.org/fedora/updates/', 'Everything/' + arch + '/', repo_filter), diff --git a/probe_builder/kernel_crawler/flatcar.py b/probe_builder/kernel_crawler/flatcar.py index 78d3a41..15fceee 100644 --- a/probe_builder/kernel_crawler/flatcar.py +++ b/probe_builder/kernel_crawler/flatcar.py @@ -25,6 +25,8 @@ class FlatcarMirror(Distro): CHANNELS = ['stable', 'beta', 'alpha'] def __init__(self, arch='amd64'): + if arch=='arm': + arch='arm64' mirrors = ['https://{c}.release.flatcar-linux.net/{a}-usr/'.format(c=channel, a=arch) for channel in self.CHANNELS] super(FlatcarMirror, self).__init__(mirrors, arch) diff --git a/probe_builder/kernel_crawler/oracle.py b/probe_builder/kernel_crawler/oracle.py index ac46664..60e645a 100644 --- a/probe_builder/kernel_crawler/oracle.py +++ b/probe_builder/kernel_crawler/oracle.py @@ -19,6 +19,8 @@ def repos(self): ] def __init__(self, arch='x86_64'): + if arch=='arm': + arch='aarch64' super(Oracle6Mirror, self).__init__([], arch) def list_repos(self): @@ -37,6 +39,8 @@ def repos(self): ] def __init__(self, arch='x86_64'): + if arch=='arm': + arch='aarch64' super(Oracle7Mirror, self).__init__([], arch) def list_repos(self): @@ -51,6 +55,8 @@ def repos(self): ] def __init__(self, arch='x86_64'): + if arch=='arm': + arch='aarch64' super(Oracle8Mirror, self).__init__([], arch) def list_repos(self): diff --git a/probe_builder/kernel_crawler/photon_os.py b/probe_builder/kernel_crawler/photon_os.py index 517e776..7231e49 100644 --- a/probe_builder/kernel_crawler/photon_os.py +++ b/probe_builder/kernel_crawler/photon_os.py @@ -18,6 +18,8 @@ class PhotonOsMirror(repo.Distro): ] def __init__(self, arch='x86_64'): + if arch=='arm': + arch='aarch64' super(PhotonOsMirror, self).__init__([], arch) def list_repos(self): diff --git a/probe_builder/kernel_crawler/ubuntu.py b/probe_builder/kernel_crawler/ubuntu.py index e45a59c..b302a9c 100644 --- a/probe_builder/kernel_crawler/ubuntu.py +++ b/probe_builder/kernel_crawler/ubuntu.py @@ -3,6 +3,8 @@ class UbuntuMirror(repo.Distro): def __init__(self, arch='amd64'): + if arch=='arm': + arch='arm64' mirrors = [ deb.DebMirror('http://mirrors.edge.kernel.org/ubuntu/', arch), deb.DebMirror('http://security.ubuntu.com/ubuntu/', arch), From 333271d6f49dbea4c95a34bf377329e542278a1d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 4 Mar 2022 12:41:30 +0100 Subject: [PATCH 082/259] new: support json encoding for kernel_crawler. Signed-off-by: Federico Di Pierro --- probe_builder/__init__.py | 27 ++++++++++++---- probe_builder/kernel_crawler/__init__.py | 41 +++++++++++------------- 2 files changed, 39 insertions(+), 29 deletions(-) diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index 941ac5d..6cf2d9b 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -1,7 +1,7 @@ import logging import os import sys - +import json import click from probe_builder.kernel_crawler import crawl_kernels, DISTROS @@ -127,16 +127,29 @@ def build(builder_image_prefix, distro_builder.build_kernel(workspace, probe, distro.builder_distro, release, target) +class SetEncoder(json.JSONEncoder): + def default(self, obj): + if isinstance(obj, set): + return list(obj) + return json.JSONEncoder.default(self, obj) + @click.command() -@click.argument('distro', type=click.Choice(sorted(DISTROS.keys()))) +@click.argument('distro', type=click.Choice(sorted(DISTROS.keys()) + ['*'])) @click.argument('version', required=False, default='') @click.argument('arch', required=False, default='') -def crawl(distro, version='', arch=''): +@click.argument('json_fmt', required=False, default=False) +def crawl(distro, version='', arch='', json_fmt=False): kernels = crawl_kernels(distro, version, arch) - for release, packages in kernels.items(): - print('=== {} ==='.format(release)) - for pkg in packages: - print(' {}'.format(pkg)) + if not json_fmt: + for dist, ks in kernels.items(): + print('=== {} ==='.format(dist)) + for release, packages in ks.items(): + print('=== {} ==='.format(release)) + for pkg in packages: + print(' {}'.format(pkg)) + else: + json_object = json.dumps(kernels, indent=4, cls=SetEncoder) + print(json_object) cli.add_command(build, 'build') diff --git a/probe_builder/kernel_crawler/__init__.py b/probe_builder/kernel_crawler/__init__.py index d18522c..22d44dc 100644 --- a/probe_builder/kernel_crawler/__init__.py +++ b/probe_builder/kernel_crawler/__init__.py @@ -10,31 +10,28 @@ from .flatcar import FlatcarMirror DISTROS = { - 'AmazonLinux': {AmazonLinux1Mirror}, - 'AmazonLinux2': {AmazonLinux2Mirror}, - 'CentOS': {CentosMirror}, - 'Fedora': {FedoraMirror}, - 'Oracle6': {Oracle6Mirror}, - 'Oracle7': {Oracle7Mirror}, - 'Oracle8': {Oracle8Mirror}, - 'PhotonOS': {PhotonOsMirror}, - - 'Debian': {DebianMirror}, - 'Ubuntu': {UbuntuMirror}, - - 'Flatcar': {FlatcarMirror}, - - '*': {AmazonLinux1Mirror, AmazonLinux2Mirror, CentosMirror, FedoraMirror, Oracle6Mirror, Oracle7Mirror, - Oracle8Mirror, PhotonOsMirror, DebianMirror, UbuntuMirror, FlatcarMirror}, + 'AmazonLinux': AmazonLinux1Mirror, + 'AmazonLinux2': AmazonLinux2Mirror, + 'CentOS': CentosMirror, + 'Fedora': FedoraMirror, + 'Oracle6': Oracle6Mirror, + 'Oracle7': Oracle7Mirror, + 'Oracle8': Oracle8Mirror, + 'PhotonOS': PhotonOsMirror, + + 'Debian': DebianMirror, + 'Ubuntu': UbuntuMirror, + + 'Flatcar': FlatcarMirror, } def crawl_kernels(distro, version='', arch=''): - dist = DISTROS[distro] ret = {} - for d in dist: - if arch: - ret.update(d(arch).get_package_tree(version)) - else: - ret.update(d().get_package_tree(version)) + for distname, dist in DISTROS.items(): + if distname == distro or distro == "*": + if arch: + ret[distname] = dist(arch).get_package_tree(version) + else: + ret[distname] = dist().get_package_tree(version) return ret From 733e6c264e273cb2b672305fac18e6ed53db2084 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 4 Apr 2022 15:56:51 +0200 Subject: [PATCH 083/259] new: added a cron based github action to automatically push new list of supported kernels. Output can be found for each platform in kernels/ subdir. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 39 +++++++++ kernels/README.md | 1 + kernels/aarch64/README.md | 1 + kernels/x86_64/README.md | 1 + probe_builder/__init__.py | 110 +------------------------- 5 files changed, 43 insertions(+), 109 deletions(-) create mode 100644 .github/workflows/update_kernels.yaml create mode 100644 kernels/README.md create mode 100644 kernels/aarch64/README.md create mode 100644 kernels/x86_64/README.md diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml new file mode 100644 index 0000000..ea5de0c --- /dev/null +++ b/.github/workflows/update_kernels.yaml @@ -0,0 +1,39 @@ +name: Update list of kernels weekly + +on: + schedule: + - cron: '0 0 * * 0' # every sunday at midnight + +jobs: + crawler: + runs-on: ubuntu-latest + steps: + - name: Install deps + run: | + sudo apt-get update && sudo apt-get -y install bash gawk grep curl dpkg rpm2cpio git jq multipath-tools python3 python3-pip python3-lxml python3-requests python3-click sed fdisk wget docker + + - name: Checkout crawler + uses: actions/checkout@v2 + with: + path: crawler + + - name: Setup py project + run: | + cd "$GITHUB_WORKSPACE/crawler" && /usr/bin/pip install -e . + + - name: Run crawler for x86_64 + run: | + cd "$GITHUB_WORKSPACE/crawler" && python probe_builder/__init__.py crawl '*' "" "" true > kernels/x86_64/list.json + + - name: Run crawler for aarch64 + run: | + cd "$GITHUB_WORKSPACE/crawler" && python probe_builder/__init__.py crawl '*' "" "arm" true > kernels/aarch64/list.json + + - name: Push updated list + run: | + cd "$GITHUB_WORKSPACE/crawler" + git config user.name github-actions + git config user.email github-actions@github.com + git add kernels/x86_64/list.json kernels/aarch64/list.json + git commit -m "[CI] updated kernel json lists." + git push diff --git a/kernels/README.md b/kernels/README.md new file mode 100644 index 0000000..42c8793 --- /dev/null +++ b/kernels/README.md @@ -0,0 +1 @@ +Here a weekly GH action will store current list of supported kernels. diff --git a/kernels/aarch64/README.md b/kernels/aarch64/README.md new file mode 100644 index 0000000..6b23176 --- /dev/null +++ b/kernels/aarch64/README.md @@ -0,0 +1 @@ +Home for aarch64 kernels list. diff --git a/kernels/x86_64/README.md b/kernels/x86_64/README.md new file mode 100644 index 0000000..36510f8 --- /dev/null +++ b/kernels/x86_64/README.md @@ -0,0 +1 @@ +Home for x86_64 kernels list. diff --git a/probe_builder/__init__.py b/probe_builder/__init__.py index 6cf2d9b..bc33907 100644 --- a/probe_builder/__init__.py +++ b/probe_builder/__init__.py @@ -1,18 +1,12 @@ import logging -import os -import sys import json +import sys import click from probe_builder.kernel_crawler import crawl_kernels, DISTROS -from . import kernel_crawler, disable_ipv6, git, docker -from .builder import choose_builder, builder_image -from .builder.distro import Distro -from .context import Context, Workspace, Probe, DownloadConfig logger = logging.getLogger(__name__) - def init_logging(debug): level = 'DEBUG' if debug else 'INFO' logger.setLevel(level) @@ -22,111 +16,11 @@ def init_logging(debug): logger.addHandler(handler) logger.debug("DEBUG logging enabled") - -def get_probe(workspace, sysdig_dir, probe_name, probe_version): - workspace_dir = workspace.workspace - - try: - probe_device_name, _ = probe_name.split('-', 1) - except ValueError: - probe_device_name = probe_name - - if sysdig_dir is None: - sysdig_dir = os.path.join(workspace_dir, 'sysdig') - if probe_device_name == 'sysdigcloud': - repo = 'https://github.com/draios/agent-libs' - branch = 'agent/{}'.format(probe_version) - elif probe_device_name == 'sysdig': - repo = 'https://github.com/draios/sysdig' - branch = probe_version - else: - raise RuntimeError('Unsupported probe type {}'.format(probe_name)) - git.clone(repo, branch, sysdig_dir) - else: - sysdig_dir = os.path.abspath(sysdig_dir) - - if not os.path.exists(sysdig_dir): - click.echo('Driver source directory {} does not exist'.format(sysdig_dir), err=True) - sys.exit(1) - - return Probe(sysdig_dir, probe_name, probe_version, probe_device_name) - - -class CrawlDistro(object): - - def __init__(self, distro, builder_distro, crawler_distro): - self.distro_obj = Distro(distro, builder_distro) - self.distro_builder = self.distro_obj.builder() - self.crawler_distro = crawler_distro - - def get_kernels(self, workspace, _packages, download_config, filter): - return self.distro_builder.crawl(workspace, self.distro_obj, self.crawler_distro, download_config, filter) - -class LocalDistro(object): - - def __init__(self, distro, builder_distro): - self.distro_obj = Distro(distro, builder_distro) - self.distro_builder = self.distro_obj.builder() - - def get_kernels(self, _workspace, packages, _download_config, filter): - return self.distro_builder.batch_packages(packages) - - -CLI_DISTROS = { - 'AmazonLinux': CrawlDistro('amazonlinux', 'centos', 'AmazonLinux'), - 'AmazonLinux2': CrawlDistro('amazonlinux2', 'centos', 'AmazonLinux2'), - 'CentOS': CrawlDistro('centos', 'centos', 'CentOS'), - 'Debian': CrawlDistro('debian', 'debian', 'Debian'), - 'Fedora': CrawlDistro('fedora', 'centos', 'Fedora'), - 'Flatcar': CrawlDistro('flatcar', 'flatcar', 'Flatcar'), - 'Oracle6': CrawlDistro('oracle6', 'oracle', 'Oracle6'), - 'Oracle7': CrawlDistro('oracle7', 'oracle', 'Oracle7'), - 'Oracle8': CrawlDistro('oracle8', 'oracle', 'Oracle8'), - 'Ubuntu': CrawlDistro('ubuntu', 'ubuntu', 'Ubuntu'), - 'CustomCentOS': LocalDistro('custom-centos', 'centos'), - 'CustomDebian': LocalDistro('custom-debian', 'debian'), - 'CustomUbuntu': LocalDistro('custom-ubuntu', 'ubuntu'), - 'CustomFlatcar': LocalDistro('custom-flatcar', 'flatcar'), -} - - @click.group() @click.option('--debug/--no-debug') def cli(debug): init_logging(debug) - -@click.command() -@click.option('-b', '--builder-image-prefix', default='') -@click.option('-d', '--download-concurrency', type=click.INT, default=1) -@click.option('-k', '--kernel-type', type=click.Choice(sorted(CLI_DISTROS.keys()))) -@click.option('-f', '--filter', default='') -@click.option('-p', '--probe-name') -@click.option('-r', '--retries', type=click.INT, default=1) -@click.option('-s', '--source-dir') -@click.option('-t', '--download-timeout', type=click.FLOAT) -@click.option('-v', '--probe-version') -@click.argument('package', nargs=-1) -def build(builder_image_prefix, - download_concurrency, kernel_type, filter, probe_name, retries, - source_dir, download_timeout, probe_version, package): - workspace_dir = os.getcwd() - builder_source = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) - - workspace = Workspace(docker.is_privileged(), docker.get_mount_mapping(), workspace_dir, builder_source, builder_image_prefix) - probe = get_probe(workspace, source_dir, probe_name, probe_version) - distro_obj = CLI_DISTROS[kernel_type] - - distro_builder = distro_obj.distro_builder - distro = distro_obj.distro_obj - download_config = DownloadConfig(download_concurrency, download_timeout, retries, None) - - kernels = distro_obj.get_kernels(workspace, package, download_config, filter) - kernel_dirs = distro_builder.unpack_kernels(workspace, distro.distro, kernels) - for release, target in kernel_dirs: - distro_builder.build_kernel(workspace, probe, distro.builder_distro, release, target) - - class SetEncoder(json.JSONEncoder): def default(self, obj): if isinstance(obj, set): @@ -151,8 +45,6 @@ def crawl(distro, version='', arch='', json_fmt=False): json_object = json.dumps(kernels, indent=4, cls=SetEncoder) print(json_object) - -cli.add_command(build, 'build') cli.add_command(crawl, 'crawl') if __name__ == '__main__': From 6344557d0588fabb6fb2787585a348b6b184b951 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 5 Apr 2022 09:46:20 +0200 Subject: [PATCH 084/259] chore(kernel_crawler): dropped unused files. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 4 +- CentOS-Base.repo | 61 -- CentOS-fasttrack.repo | 7 - Dockerfile | 26 - Dockerfile.centos-gcc10.3 | 27 - Dockerfile.centos-gcc11.0 | 22 - Dockerfile.centos-gcc11.2 | 22 - Dockerfile.centos-gcc4.4 | 20 - Dockerfile.centos-gcc4.8 | 18 - Dockerfile.centos-gcc7.3 | 22 - Dockerfile.centos-gcc8.3 | 22 - Dockerfile.centos-gcc9.2 | 22 - Dockerfile.coreos-old | 20 - Dockerfile.debian-gcc10.2 | 19 - Dockerfile.debian-gcc4.9 | 17 - Dockerfile.debian-gcc6.3 | 19 - Dockerfile.debian-gcc8.3 | 19 - Dockerfile.fc34 | 22 - Dockerfile.flatcar-gcc11.2 | 22 - Dockerfile.oracle-gcc4.4 | 17 - Dockerfile.oracle-gcc4.8 | 18 - Dockerfile.oracle-gcc8.5 | 19 - Dockerfile.toolkit | 5 - Dockerfile.ubuntu-gcc10.3 | 21 - Dockerfile.ubuntu-gcc11.2 | 21 - Dockerfile.ubuntu-gcc4.8 | 15 - Dockerfile.ubuntu-gcc5.4 | 17 - Dockerfile.ubuntu-gcc7.4 | 19 - README.dev.md | 105 --- README.md | 144 +--- probe_builder/__init__.py => __init__.py | 2 +- builder-entrypoint-coreos.sh | 41 - builder-entrypoint.sh | 58 -- install_wsl2_kernel_headers.bash | 295 ------- .../__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1062 bytes .../__pycache__/amazonlinux.cpython-310.pyc | Bin 0 -> 2693 bytes .../__pycache__/centos.cpython-310.pyc | Bin 0 -> 1227 bytes .../__pycache__/deb.cpython-310.pyc | Bin 0 -> 8255 bytes .../__pycache__/debian.cpython-310.pyc | Bin 0 -> 1621 bytes .../__pycache__/fedora.cpython-310.pyc | Bin 0 -> 1024 bytes .../__pycache__/flatcar.cpython-310.pyc | Bin 0 -> 2505 bytes .../__pycache__/oracle.cpython-310.pyc | Bin 0 -> 3466 bytes .../__pycache__/photon_os.cpython-310.pyc | Bin 0 -> 1566 bytes .../__pycache__/repo.cpython-310.pyc | Bin 0 -> 2291 bytes .../__pycache__/rpm.cpython-310.pyc | Bin 0 -> 5132 bytes .../__pycache__/ubuntu.cpython-310.pyc | Bin 0 -> 795 bytes .../amazonlinux.py | 4 +- .../centos.py | 0 .../kernel_crawler => kernel_crawler}/deb.py | 4 +- .../debian.py | 0 .../fedora.py | 3 +- .../flatcar.py | 3 +- .../oracle.py | 0 .../photon_os.py | 0 .../kernel_crawler => kernel_crawler}/repo.py | 0 .../kernel_crawler => kernel_crawler}/rpm.py | 2 +- .../ubuntu.py | 0 .../utils}/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 159 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 854 bytes .../utils/__pycache__/py23.cpython-310.pyc | Bin 0 -> 435 bytes kernel_crawler/utils/download.py | 29 + .../utils}/py23.py | 0 link-aws-gcc.sh | 6 - main-builder-entrypoint.sh | 152 ---- probe-directory-index | 53 -- probe_builder/artifactory_download.py | 70 -- probe_builder/builder/builder_image.py | 66 -- probe_builder/builder/choose_builder.py | 136 ---- probe_builder/builder/distro/__init__.py | 22 - probe_builder/builder/distro/base_builder.py | 123 --- probe_builder/builder/distro/centos.py | 49 -- probe_builder/builder/distro/debian.py | 165 ---- probe_builder/builder/distro/flatcar.py | 93 --- probe_builder/builder/distro/ubuntu.py | 168 ---- probe_builder/builder/toolkit.py | 115 --- probe_builder/context.py | 40 - probe_builder/disable_ipv6.py | 11 - probe_builder/docker.py | 97 --- probe_builder/git.py | 9 - probe_builder/kernel_crawler/download.py | 126 --- probe_builder/spawn.py | 46 -- probe_builder/version.py | 27 - setup.py | 18 +- sysdig-probe-loader | 759 ------------------ toolkit-entrypoint.sh | 56 -- 87 files changed, 50 insertions(+), 3610 deletions(-) delete mode 100644 CentOS-Base.repo delete mode 100644 CentOS-fasttrack.repo delete mode 100644 Dockerfile delete mode 100644 Dockerfile.centos-gcc10.3 delete mode 100644 Dockerfile.centos-gcc11.0 delete mode 100644 Dockerfile.centos-gcc11.2 delete mode 100644 Dockerfile.centos-gcc4.4 delete mode 100644 Dockerfile.centos-gcc4.8 delete mode 100644 Dockerfile.centos-gcc7.3 delete mode 100644 Dockerfile.centos-gcc8.3 delete mode 100644 Dockerfile.centos-gcc9.2 delete mode 100644 Dockerfile.coreos-old delete mode 100644 Dockerfile.debian-gcc10.2 delete mode 100644 Dockerfile.debian-gcc4.9 delete mode 100644 Dockerfile.debian-gcc6.3 delete mode 100644 Dockerfile.debian-gcc8.3 delete mode 100644 Dockerfile.fc34 delete mode 100644 Dockerfile.flatcar-gcc11.2 delete mode 100644 Dockerfile.oracle-gcc4.4 delete mode 100644 Dockerfile.oracle-gcc4.8 delete mode 100644 Dockerfile.oracle-gcc8.5 delete mode 100644 Dockerfile.toolkit delete mode 100644 Dockerfile.ubuntu-gcc10.3 delete mode 100644 Dockerfile.ubuntu-gcc11.2 delete mode 100644 Dockerfile.ubuntu-gcc4.8 delete mode 100644 Dockerfile.ubuntu-gcc5.4 delete mode 100644 Dockerfile.ubuntu-gcc7.4 delete mode 100644 README.dev.md rename probe_builder/__init__.py => __init__.py (95%) delete mode 100755 builder-entrypoint-coreos.sh delete mode 100755 builder-entrypoint.sh delete mode 100755 install_wsl2_kernel_headers.bash rename {probe_builder/kernel_crawler => kernel_crawler}/__init__.py (100%) create mode 100644 kernel_crawler/__pycache__/__init__.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/amazonlinux.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/centos.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/deb.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/debian.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/fedora.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/flatcar.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/oracle.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/photon_os.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/repo.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/rpm.cpython-310.pyc create mode 100644 kernel_crawler/__pycache__/ubuntu.cpython-310.pyc rename {probe_builder/kernel_crawler => kernel_crawler}/amazonlinux.py (94%) rename {probe_builder/kernel_crawler => kernel_crawler}/centos.py (100%) rename {probe_builder/kernel_crawler => kernel_crawler}/deb.py (98%) rename {probe_builder/kernel_crawler => kernel_crawler}/debian.py (100%) rename {probe_builder/kernel_crawler => kernel_crawler}/fedora.py (92%) rename {probe_builder/kernel_crawler => kernel_crawler}/flatcar.py (95%) rename {probe_builder/kernel_crawler => kernel_crawler}/oracle.py (100%) rename {probe_builder/kernel_crawler => kernel_crawler}/photon_os.py (100%) rename {probe_builder/kernel_crawler => kernel_crawler}/repo.py (100%) rename {probe_builder/kernel_crawler => kernel_crawler}/rpm.py (98%) rename {probe_builder/kernel_crawler => kernel_crawler}/ubuntu.py (100%) rename {probe_builder/builder => kernel_crawler/utils}/__init__.py (100%) create mode 100644 kernel_crawler/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 kernel_crawler/utils/__pycache__/download.cpython-310.pyc create mode 100644 kernel_crawler/utils/__pycache__/py23.cpython-310.pyc create mode 100644 kernel_crawler/utils/download.py rename {probe_builder => kernel_crawler/utils}/py23.py (100%) delete mode 100755 link-aws-gcc.sh delete mode 100755 main-builder-entrypoint.sh delete mode 100755 probe-directory-index delete mode 100644 probe_builder/artifactory_download.py delete mode 100644 probe_builder/builder/builder_image.py delete mode 100644 probe_builder/builder/choose_builder.py delete mode 100644 probe_builder/builder/distro/__init__.py delete mode 100644 probe_builder/builder/distro/base_builder.py delete mode 100644 probe_builder/builder/distro/centos.py delete mode 100644 probe_builder/builder/distro/debian.py delete mode 100644 probe_builder/builder/distro/flatcar.py delete mode 100644 probe_builder/builder/distro/ubuntu.py delete mode 100644 probe_builder/builder/toolkit.py delete mode 100644 probe_builder/context.py delete mode 100644 probe_builder/disable_ipv6.py delete mode 100644 probe_builder/docker.py delete mode 100644 probe_builder/git.py delete mode 100644 probe_builder/kernel_crawler/download.py delete mode 100644 probe_builder/spawn.py delete mode 100644 probe_builder/version.py delete mode 100755 sysdig-probe-loader delete mode 100755 toolkit-entrypoint.sh diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index ea5de0c..94998e5 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -23,11 +23,11 @@ jobs: - name: Run crawler for x86_64 run: | - cd "$GITHUB_WORKSPACE/crawler" && python probe_builder/__init__.py crawl '*' "" "" true > kernels/x86_64/list.json + cd "$GITHUB_WORKSPACE/crawler" && python __init__.py crawl '*' "" "" true > kernels/x86_64/list.json - name: Run crawler for aarch64 run: | - cd "$GITHUB_WORKSPACE/crawler" && python probe_builder/__init__.py crawl '*' "" "arm" true > kernels/aarch64/list.json + cd "$GITHUB_WORKSPACE/crawler" && python __init__.py crawl '*' "" "arm" true > kernels/aarch64/list.json - name: Push updated list run: | diff --git a/CentOS-Base.repo b/CentOS-Base.repo deleted file mode 100644 index e5528cd..0000000 --- a/CentOS-Base.repo +++ /dev/null @@ -1,61 +0,0 @@ -# CentOS-Base.repo -# -# The mirror system uses the connecting IP address of the client and the -# update status of each mirror to pick mirrors that are updated to and -# geographically close to the client. You should use this for CentOS updates -# unless you are manually picking other mirrors. -# -# If the mirrorlist= does not work for you, as a fall back you can try the -# remarked out baseurl= line instead. -# -# - -[base] -name=CentOS-$releasever - Base -baseurl=http://vault.centos.org/6.10/os/$basearch/ -gpgcheck=1 -gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 - -#released updates -[updates] -name=CentOS-$releasever - Updates -baseurl=http://vault.centos.org/6.10/updates/$basearch/ -gpgcheck=1 -gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 - -#additional packages that may be useful -[extras] -name=CentOS-$releasever - Extras -baseurl=http://vault.centos.org/6.10/extras/$basearch/ -gpgcheck=1 -gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 - -#additional packages that extend functionality of existing packages -[centosplus] -name=CentOS-$releasever - Plus -baseurl=http://vault.centos.org/6.10/centosplus/$basearch/ -gpgcheck=1 -enabled=0 -gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 - -[centos-sclo-rh] -name=CentOS-6 - SCLo rh -baseurl=http://vault.centos.org/6.10/sclo/$basearch/rh/ -gpgcheck=1 -enabled=1 -gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo - -[centos-sclo-sclo] -name=CentOS-6 - SCLo sclo -baseurl=http://vault.centos.org/6.10/sclo/$basearch/sclo/ -gpgcheck=1 -enabled=1 -gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo - -#contrib - packages by Centos Users -[contrib] -name=CentOS-$releasever - Contrib -baseurl=http://vault.centos.org/6.10/contrib/$basearch/ -gpgcheck=1 -enabled=0 -gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 diff --git a/CentOS-fasttrack.repo b/CentOS-fasttrack.repo deleted file mode 100644 index b960dac..0000000 --- a/CentOS-fasttrack.repo +++ /dev/null @@ -1,7 +0,0 @@ -[fasttrack] -name=CentOS-6 - fasttrack -#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=fasttrack&infra=$infra -baseurl=http://vault.centos.org/6.0/fasttrack/$basearch/ -gpgcheck=1 -enabled=0 -gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index bafa16b..0000000 --- a/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -FROM alpine - -RUN apk add \ - bash \ - gawk \ - grep \ - curl \ - dpkg \ - rpm2cpio \ - git \ - jq \ - multipath-tools \ - python3 \ - py3-pip \ - py3-lxml \ - sed \ - sfdisk \ - wget \ - docker - -RUN ln -s /usr/bin/python3 /usr/bin/python - -ADD . /builder -WORKDIR /builder -RUN /usr/bin/pip install -e . -ENTRYPOINT [ "/builder/main-builder-entrypoint.sh" ] diff --git a/Dockerfile.centos-gcc10.3 b/Dockerfile.centos-gcc10.3 deleted file mode 100644 index 64f2054..0000000 --- a/Dockerfile.centos-gcc10.3 +++ /dev/null @@ -1,27 +0,0 @@ -FROM fedora:32 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - findutils \ - kmod \ - clang \ - llvm \ - python-lxml && yum clean all - -# amazonlinux2 uses a wacky version of gcc which puts wrappers on stuff (probably from -# a "future" repo or something), so we just link it to the actual stuff instead -ADD link-aws-gcc.sh / -RUN /link-aws-gcc.sh - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.centos-gcc11.0 b/Dockerfile.centos-gcc11.0 deleted file mode 100644 index 69fac80..0000000 --- a/Dockerfile.centos-gcc11.0 +++ /dev/null @@ -1,22 +0,0 @@ -FROM fedora:34 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - findutils \ - kmod \ - clang \ - llvm \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.centos-gcc11.2 b/Dockerfile.centos-gcc11.2 deleted file mode 100644 index 42a84bd..0000000 --- a/Dockerfile.centos-gcc11.2 +++ /dev/null @@ -1,22 +0,0 @@ -FROM fedora:35 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - findutils \ - kmod \ - clang \ - llvm \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.centos-gcc4.4 b/Dockerfile.centos-gcc4.4 deleted file mode 100644 index 81e4030..0000000 --- a/Dockerfile.centos-gcc4.4 +++ /dev/null @@ -1,20 +0,0 @@ -FROM centos:6 - -ADD *.repo /etc/yum.repos.d/ - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.centos-gcc4.8 b/Dockerfile.centos-gcc4.8 deleted file mode 100644 index 3ae750b..0000000 --- a/Dockerfile.centos-gcc4.8 +++ /dev/null @@ -1,18 +0,0 @@ -FROM centos:7 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.centos-gcc7.3 b/Dockerfile.centos-gcc7.3 deleted file mode 100644 index 24ddc7a..0000000 --- a/Dockerfile.centos-gcc7.3 +++ /dev/null @@ -1,22 +0,0 @@ -FROM fedora:27 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - findutils \ - kmod \ - clang \ - llvm \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.centos-gcc8.3 b/Dockerfile.centos-gcc8.3 deleted file mode 100644 index 72239cb..0000000 --- a/Dockerfile.centos-gcc8.3 +++ /dev/null @@ -1,22 +0,0 @@ -FROM fedora:29 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - findutils \ - kmod \ - clang \ - llvm \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.centos-gcc9.2 b/Dockerfile.centos-gcc9.2 deleted file mode 100644 index 9327419..0000000 --- a/Dockerfile.centos-gcc9.2 +++ /dev/null @@ -1,22 +0,0 @@ -FROM fedora:31 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - findutils \ - kmod \ - clang \ - llvm \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.coreos-old b/Dockerfile.coreos-old deleted file mode 100644 index 8b2fb39..0000000 --- a/Dockerfile.coreos-old +++ /dev/null @@ -1,20 +0,0 @@ -FROM centos:7 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - bc \ - openssl-devel \ - python-lxml && yum clean all - -ADD builder-entrypoint-coreos.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint-coreos.sh" ] diff --git a/Dockerfile.debian-gcc10.2 b/Dockerfile.debian-gcc10.2 deleted file mode 100644 index 130a018..0000000 --- a/Dockerfile.debian-gcc10.2 +++ /dev/null @@ -1,19 +0,0 @@ -FROM debian:bullseye - -RUN apt-get update && apt-get -y --no-install-recommends install \ - cmake \ - g++ \ - git \ - kmod \ - libc6-dev \ - libelf-dev \ - make \ - pkg-config \ - clang \ - llvm \ - && apt-get clean - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] - diff --git a/Dockerfile.debian-gcc4.9 b/Dockerfile.debian-gcc4.9 deleted file mode 100644 index 3c52e81..0000000 --- a/Dockerfile.debian-gcc4.9 +++ /dev/null @@ -1,17 +0,0 @@ -FROM debian:jessie - -RUN apt-get update && apt-get -y --no-install-recommends install \ - cmake \ - g++ \ - git \ - kmod \ - libc6-dev \ - libelf-dev \ - make \ - pkg-config \ - && apt-get clean - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] - diff --git a/Dockerfile.debian-gcc6.3 b/Dockerfile.debian-gcc6.3 deleted file mode 100644 index c17f065..0000000 --- a/Dockerfile.debian-gcc6.3 +++ /dev/null @@ -1,19 +0,0 @@ -FROM debian:stretch - -RUN apt-get update && apt-get -y --no-install-recommends install \ - cmake \ - g++ \ - git \ - kmod \ - libc6-dev \ - libelf-dev \ - make \ - pkg-config \ - clang \ - llvm \ - && apt-get clean - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] - diff --git a/Dockerfile.debian-gcc8.3 b/Dockerfile.debian-gcc8.3 deleted file mode 100644 index 686e4e8..0000000 --- a/Dockerfile.debian-gcc8.3 +++ /dev/null @@ -1,19 +0,0 @@ -FROM debian:buster - -RUN apt-get update && apt-get -y --no-install-recommends install \ - cmake \ - g++ \ - git \ - kmod \ - libc6-dev \ - libelf-dev \ - make \ - pkg-config \ - clang \ - llvm \ - && apt-get clean - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] - diff --git a/Dockerfile.fc34 b/Dockerfile.fc34 deleted file mode 100644 index 69fac80..0000000 --- a/Dockerfile.fc34 +++ /dev/null @@ -1,22 +0,0 @@ -FROM fedora:34 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - findutils \ - kmod \ - clang \ - llvm \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.flatcar-gcc11.2 b/Dockerfile.flatcar-gcc11.2 deleted file mode 100644 index 69fac80..0000000 --- a/Dockerfile.flatcar-gcc11.2 +++ /dev/null @@ -1,22 +0,0 @@ -FROM fedora:34 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - bison \ - flex \ - make \ - cmake \ - elfutils-devel \ - findutils \ - kmod \ - clang \ - llvm \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.oracle-gcc4.4 b/Dockerfile.oracle-gcc4.4 deleted file mode 100644 index e5e8b5b..0000000 --- a/Dockerfile.oracle-gcc4.4 +++ /dev/null @@ -1,17 +0,0 @@ -FROM oraclelinux:6 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - make \ - cmake \ - libdtrace-ctf \ - elfutils-devel \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.oracle-gcc4.8 b/Dockerfile.oracle-gcc4.8 deleted file mode 100644 index cd3a2ad..0000000 --- a/Dockerfile.oracle-gcc4.8 +++ /dev/null @@ -1,18 +0,0 @@ -FROM oraclelinux:7 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - make \ - cmake \ - libdtrace-ctf \ - elfutils-libelf-devel \ - file \ - python-lxml && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.oracle-gcc8.5 b/Dockerfile.oracle-gcc8.5 deleted file mode 100644 index 157ab65..0000000 --- a/Dockerfile.oracle-gcc8.5 +++ /dev/null @@ -1,19 +0,0 @@ -FROM oraclelinux:8 - -RUN yum -y install \ - wget \ - git \ - gcc \ - gcc-c++ \ - autoconf \ - make \ - cmake \ - elfutils-libelf-devel \ - file \ - clang \ - llvm \ - kmod && yum clean all - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.toolkit b/Dockerfile.toolkit deleted file mode 100644 index 1bf4f94..0000000 --- a/Dockerfile.toolkit +++ /dev/null @@ -1,5 +0,0 @@ -FROM alpine - -RUN apk add rpm2cpio multipath-tools sfdisk jq -ADD toolkit-entrypoint.sh /toolkit-entrypoint.sh -ENTRYPOINT ["/toolkit-entrypoint.sh"] diff --git a/Dockerfile.ubuntu-gcc10.3 b/Dockerfile.ubuntu-gcc10.3 deleted file mode 100644 index 0bc0ef6..0000000 --- a/Dockerfile.ubuntu-gcc10.3 +++ /dev/null @@ -1,21 +0,0 @@ -FROM ubuntu:hirsute-20210119 - -RUN echo 'deb http://archive.ubuntu.com/ubuntu/ hirsute-proposed restricted main multiverse universe' > /etc/apt/sources.list.d/ubuntu-proposed.list && \ - apt-get update && \ - apt-get -y --no-install-recommends install \ - cmake \ - g++ \ - git \ - kmod \ - libc6-dev \ - libelf-dev \ - make \ - pkg-config \ - clang \ - llvm \ - && apt-get clean - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] - diff --git a/Dockerfile.ubuntu-gcc11.2 b/Dockerfile.ubuntu-gcc11.2 deleted file mode 100644 index 2a3de2f..0000000 --- a/Dockerfile.ubuntu-gcc11.2 +++ /dev/null @@ -1,21 +0,0 @@ -FROM ubuntu:impish - -RUN echo 'deb http://archive.ubuntu.com/ubuntu/ impish-proposed restricted main multiverse universe' > /etc/apt/sources.list.d/ubuntu-proposed.list && \ - apt-get update && \ - apt-get -y --no-install-recommends install \ - cmake \ - g++ \ - git \ - kmod \ - libc6-dev \ - libelf-dev \ - make \ - pkg-config \ - clang \ - llvm \ - && apt-get clean - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] - diff --git a/Dockerfile.ubuntu-gcc4.8 b/Dockerfile.ubuntu-gcc4.8 deleted file mode 100644 index afa62d4..0000000 --- a/Dockerfile.ubuntu-gcc4.8 +++ /dev/null @@ -1,15 +0,0 @@ -FROM ubuntu:14.04 - -RUN apt-get update && apt-get -y --no-install-recommends install \ - cmake \ - g++ \ - git \ - libc6-dev \ - libelf-dev \ - make \ - pkg-config \ - && apt-get clean - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] diff --git a/Dockerfile.ubuntu-gcc5.4 b/Dockerfile.ubuntu-gcc5.4 deleted file mode 100644 index 8aaccaa..0000000 --- a/Dockerfile.ubuntu-gcc5.4 +++ /dev/null @@ -1,17 +0,0 @@ -FROM ubuntu:16.04 - -RUN apt-get update && apt-get -y --no-install-recommends install \ - cmake \ - g++ \ - git \ - kmod \ - libc6-dev \ - libelf-dev \ - make \ - pkg-config \ - && apt-get clean - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] - diff --git a/Dockerfile.ubuntu-gcc7.4 b/Dockerfile.ubuntu-gcc7.4 deleted file mode 100644 index 463f3b2..0000000 --- a/Dockerfile.ubuntu-gcc7.4 +++ /dev/null @@ -1,19 +0,0 @@ -FROM ubuntu:18.04 - -RUN apt-get update && apt-get -y --no-install-recommends install \ - cmake \ - g++ \ - git \ - kmod \ - libc6-dev \ - libelf-dev \ - make \ - pkg-config \ - clang \ - llvm \ - && apt-get clean - -ADD builder-entrypoint.sh / -WORKDIR /build/probe -ENTRYPOINT [ "/builder-entrypoint.sh" ] - diff --git a/README.dev.md b/README.dev.md deleted file mode 100644 index 28d1213..0000000 --- a/README.dev.md +++ /dev/null @@ -1,105 +0,0 @@ -# Developer notes - -## Data flow through the application - -Based on the command line arguments, a distribution is chosen. -This amounts to: -* a `DistroBuilder` subclass, containing distro-specific code -* a distribution name, used mostly as a directory name to store downloaded kernels -* a builder distro name, used to select a set of Dockerfiles to choose from -* a crawler distro name, passed to the kernel crawler (which has its own set of supported distributions) - -Wherever `DistroBuilder` is mentioned in this document, it means a *subclass* -of the `DistroBuilder` class. - -### Building probes from local files - -#### Batching packages - -The input is a list of paths to local files. `DistroBuilder.batch_packages` is called -to group the packages into kernel versions, resulting in a dictionary of arrays: - -```json -{ - "5.4.0-1": [ - "kernel-5.4.0-1.x86_64.rpm", - "kernel-devel-5.4.0-1.x86_64.rpm" - ], - "5.5.0-10": [ - "kernel-5.5.0-10.x86_64.rpm", - "kernel-devel-5.5.0-10.x86_64.rpm" - ] -} -``` - -(the package names here are obviously fake). - -**Note:** this process doesn't inspect the packages themselves and only -relies on file names (like the old probe builder did). This means it may -be less accurate or completely wrong in some situations. - -#### Unpacking the packages - -The dictionary created above is passed to `DistroBuilder.unpack_kernels`. -This method uses distro-specific (or rather packager-specific) code to unpack -all packages in the per-release directories. - -It returns a map of release->directory, similar to: - -```json -{ - "5.4.0-1": ".../build/debian/5.4.0-1", - "5.5.0-10": ".../build/debian/5.5.0-10" -} -``` - -(the directories are named in a way that is compatible with the old builder -so the mapping isn't always trivial, e.g. for Ubuntu kernels whose versioning -is somewhat complicated). - -#### Building the kernels - -For each (release, directory) pair returned from `unpack_kernels`, -`DistroBuilder.build_kernels` is called. This method is common to all -builders but it has per-distro extension points: - - * `get_kernel_dir`: return the full path to the kernel headers - (the directory passed in is the root of the filesystem where the packages are extracted to, - and the actual kernel directory is a subdirectory like `/usr/src/linux-headers-5.4.0-1`) - * `hash_config`: return the MD5 hash of the kernel's config file - (the config file is stored in different places for different distributions - and this method knows where) - -The rest of the code is distro-agnostic. - -### Building probes for all kernels in a distribution - -The kernel crawler has its own set of supported distributions, mostly -overlapping with the `DistroBuilder`s but e.g. Amazon Linux, Fedora and Oracle -Linux are compatible enough that they can use the CentOS builder, even though -they need their own crawlers (even if only to specify the list of mirrors). - -In the crawler, each distribution is a set of mirrors, each of which can contain one -or more repositories. A repository knows how to parse its metadata and return a map -of release->list of URLs: - -```json -{ - "5.4.0-1": [ - "http://.../kernel-5.4.0-1.x86_64.rpm", - "http://.../kernel-devel-5.4.0-1.x86_64.rpm" - ], - "5.5.0-10": [ - "http://.../kernel-5.5.0-10.x86_64.rpm", - "http://.../kernel-devel-5.5.0-10.x86_64.rpm" - ] -} -``` - -The result of the crawler is used in `DistroBuilder.crawl` to download all -packages and replace the URLs with file paths. This is identical to the result -of `DistroBuilder.batch_packages` (used with local files), except that -the crawler understands repository metadata (which we don't have with local files) -so should generally make a better job of getting the right packages together. - -The steps to unpack and build the kernels are identical in both cases. \ No newline at end of file diff --git a/README.md b/README.md index 699b5a9..b089b52 100644 --- a/README.md +++ b/README.md @@ -1,53 +1,6 @@ -# Running an on-prem probe builder +# Falcosecurity kernel-crawler -The probe builder can be used to automatically build kernel modules for the [commercial Sysdig agent](https://sysdig.com/). It can run on any host with Docker installed, including (with some preparation) air-gapped hosts. - -The description below assumes that we need to build probes for: -* agent 12.0.0 (substitute the version as required) -* for RedHat/CentOS kernels - * for Ubuntu kernels use -k CustomUbuntu option instead of -k CustomCentOS - * for Debian kernels use -k CustomDebian option instead of -k CustomCentOS - -## Prerequisites - -### Downloading kernel packages - -To prebuild probes for a particular kernel, you need the headers package for that particular kernel, along -with its dependencies. - -For RedHat-like OSes (RHEL, CentOS, Fedora, etc.), the required packages are usually: -* `kernel-.rpm` -* `kernel-devel-.rpm` -* `kernel-core-.rpm` (if present) - -For Debian-like OSes (Debian, Ubuntu, etc.), the required packages are usually: -* `linux-image-.deb` -* `linux-headers-.deb` - -But please note that the set of required packages varies across distributions and versions, so providing -an exhaustive list is not possible here. - -You can use the crawler functionality to determine the set of packages for a particular kernel. -To use it, pass a distribution name (one of the following) and, optionally, the specific kernel version -or its subset. - -The output is a list of URLs directly to the kernel packages. For example, to download all the packages -needed to build the CentOS 4.18.0-305.10.2.el8\_4 kernel, you can run: - - # docker run (...) -C CentOS 4.18.0-305.10.2.el8_4 | grep '^ ' | xargs wget -c - (...) - # ls -la - total 61556 - drwxr-xr-x 2 root root 4096 Aug 12 15:55 . - drwxr-xr-x 9 root root 4096 Aug 12 15:53 .. - -rw-r--r-- 1 root root 6169556 Jul 20 21:12 kernel-4.18.0-305.10.2.el8_4.x86_64.rpm - -rw-r--r-- 1 root root 37552272 Jul 20 21:12 kernel-core-4.18.0-305.10.2.el8_4.x86_64.rpm - -rw-r--r-- 1 root root 19290066 Aug 12 15:55 kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm - -Then you can pass the directory containing the kernel files to the probe builder container -(`/directory-containing-kernel-packages/` in the examples below). - -Distributions supported by the kernel crawler: +Distributions supported: - AmazonLinux - AmazonLinux2 - CentOS @@ -60,93 +13,6 @@ Distributions supported by the kernel crawler: - PhotonOS - Ubuntu -Please note that you do *not* need to extract or install the kernel packages on the build host. -The probe builder works on package files directly and extracts them internally. - -## With internet access - -``` -git clone https://github.com/draios/probe-builder -git clone https://github.com/draios/agent-libs - -docker build -t sysdig-probe-builder probe-builder/ - -cd agent-libs -git checkout agent/12.0.0 -cd .. - -docker run --rm \ - -v /var/run/docker.sock:/var/run/docker.sock \ - -v /a-directory-with-some-free-space/:/workspace \ - -v $(pwd)/agent-libs:/sysdig \ - -v /directory-containing-kernel-packages/:/kernels \ - sysdig-probe-builder:latest -B -- \ - -p sysdigcloud-probe -v 12.0.0 -k CustomCentOS -``` - -## Air-gapped setup - -### **(internet access required)** Prepare the builder images - -**Note:** this takes a long time but is a one-time task - -``` -git clone https://github.com/draios/probe-builder -docker build -t airgap/sysdig-probe-builder probe-builder/ - -docker run --rm -v /var/run/docker.sock:/var/run/docker.sock airgap/sysdig-probe-builder:latest -P -b airgap/ -docker save airgap/sysdig-probe-builder | gzip > builders.tar.gz -``` - -If you are going to build probes for Ubuntu kernels, you will also need an `ubuntu:latest` -image on your airgapped host. You can ship it using a very similar approach: - -``` -docker pull ubuntu -docker save ubuntu | gzip > ubuntu.tar.gz -``` - -### **(internet access required)** Download the kernel packages - -This is left as an exercise for the reader. Note that the packages should not be unpacked or installed. - -### **(internet access required)** Get the right sysdig source - -``` -git clone https://github.com/draios/agent-libs -cd agent-libs -git archive agent/12.0.0 --prefix sysdig/ | gzip > sysdig.tar.gz -``` - -### Ship builders.tar.gz, sysdig.tar.gz and the kernels to the air-gapped host -Again, exercise for the reader - -### **(air-gapped host)** Load the builder images (again, slow and one-time) - -``` -zcat builders.tar.gz | docker load -``` - -### **(air-gapped host)** Unpack the sysdig source - -``` -tar xzf sysdig.tar.gz -``` - -it will create sysdig/ in the current directory - -### **(air-gapped host)** Run the probe builder - -**Note:** This is a single long command - -``` -docker run --rm \ - -v /var/run/docker.sock:/var/run/docker.sock \ - -v /a-directory-with-some-free-space/:/workspace \ - -v /wherever-you-unpacked/sysdig/:/sysdig \ - -v /directory-containing-kernel-packages/:/kernels \ - airgap/sysdig-probe-builder:latest -B -b airgap/ -- \ - -p sysdigcloud-probe -v 12.0.0 -k CustomCentOS -``` - -The probes will appear in `/a-directory-with-some-free-space/output`. That directory can be served over HTTP and the URL to the server used as `SYSDIG_PROBE_URL` when loading the module (e.g. agent-kmodule container). +Architectures supported: +- x86_64 +- aarch64 \ No newline at end of file diff --git a/probe_builder/__init__.py b/__init__.py similarity index 95% rename from probe_builder/__init__.py rename to __init__.py index bc33907..80b1929 100644 --- a/probe_builder/__init__.py +++ b/__init__.py @@ -3,7 +3,7 @@ import sys import click -from probe_builder.kernel_crawler import crawl_kernels, DISTROS +from kernel_crawler import crawl_kernels, DISTROS logger = logging.getLogger(__name__) diff --git a/builder-entrypoint-coreos.sh b/builder-entrypoint-coreos.sh deleted file mode 100755 index 578320e..0000000 --- a/builder-entrypoint-coreos.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -# required env vars: -# HASH -# HASH_ORIG -# KERNELDIR -# KERNEL_RELEASE -# OUTPUT -# PROBE_DEVICE_NAME -# PROBE_NAME -# PROBE_VERSION - -set -euo pipefail - -ARCH=$(uname -m) - -if [[ -f "${KERNELDIR}/scripts/gcc-plugins/stackleak_plugin.so" ]]; then - echo "Rebuilding gcc plugins for ${KERNELDIR}" - (cd "${KERNELDIR}" && make gcc-plugins) -fi - -(cd $KERNELDIR && make modules_prepare) - -echo Building $PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko - -mkdir -p /build/sysdig -cd /build/sysdig - -cmake -DCMAKE_BUILD_TYPE=Release -DPROBE_NAME=$PROBE_NAME -DPROBE_VERSION=$PROBE_VERSION -DPROBE_DEVICE_NAME=$PROBE_DEVICE_NAME -DCREATE_TEST_TARGETS=OFF /build/probe/sysdig -make driver -strip -g driver/$PROBE_NAME.ko - -KO_VERSION=$(/sbin/modinfo driver/$PROBE_NAME.ko | grep vermagic | tr -s " " | cut -d " " -f 2) -if [ "$KO_VERSION" != "$KERNEL_RELEASE" ]; then - echo "Corrupted probe, KO_VERSION " $KO_VERSION ", KERNEL_RELEASE " $KERNEL_RELEASE - exit 1 -fi - -cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko -cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH_ORIG.ko - diff --git a/builder-entrypoint.sh b/builder-entrypoint.sh deleted file mode 100755 index 883a002..0000000 --- a/builder-entrypoint.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/bash - -# required env vars: -# HASH -# HASH_ORIG -# KERNELDIR -# KERNEL_RELEASE -# OUTPUT -# PROBE_DEVICE_NAME -# PROBE_NAME -# PROBE_VERSION - -set -euo pipefail - -ARCH=$(uname -m) - -build_kmod() { - if [[ -f "${KERNELDIR}/scripts/gcc-plugins/stackleak_plugin.so" ]]; then - echo "Rebuilding gcc plugins for ${KERNELDIR}" - (cd "${KERNELDIR}" && make gcc-plugins) - fi - - echo Building $PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko - - mkdir -p /build/sysdig - cd /build/sysdig - - cmake -DCMAKE_BUILD_TYPE=Release -DPROBE_NAME=$PROBE_NAME -DPROBE_VERSION=$PROBE_VERSION -DPROBE_DEVICE_NAME=$PROBE_DEVICE_NAME -DCREATE_TEST_TARGETS=OFF /build/probe/sysdig - make driver - strip -g driver/$PROBE_NAME.ko - - KO_VERSION=$(/sbin/modinfo driver/$PROBE_NAME.ko | grep vermagic | tr -s " " | cut -d " " -f 2) - if [ "$KO_VERSION" != "$KERNEL_RELEASE" ]; then - echo "Corrupted probe, KO_VERSION " $KO_VERSION ", KERNEL_RELEASE " $KERNEL_RELEASE - exit 1 - fi - - cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.ko - cp driver/$PROBE_NAME.ko $OUTPUT/$PROBE_NAME-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH_ORIG.ko -} - - -build_bpf() { - if ! type -p clang > /dev/null - then - echo "clang not available, not building eBPF probe $PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o" - else - echo "Building eBPF probe $PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o" - make -C /build/probe/sysdig/driver/bpf clean all - cp /build/probe/sysdig/driver/bpf/probe.o $OUTPUT/$PROBE_NAME-bpf-$PROBE_VERSION-$ARCH-$KERNEL_RELEASE-$HASH.o - fi -} - -case "${1:-}" in - bpf) build_bpf;; - "") build_kmod;; - *) exit 1;; -esac diff --git a/install_wsl2_kernel_headers.bash b/install_wsl2_kernel_headers.bash deleted file mode 100755 index 1cc58da..0000000 --- a/install_wsl2_kernel_headers.bash +++ /dev/null @@ -1,295 +0,0 @@ -#!/bin/bash - -# install_wsl2_kernel_headers -# Install kernel headers for WSL2 kernel version. -# -# Usage: -# % sudo bash -# # install_wsl2_kernel_headers -# OR -# # KERNEL_BUILD_NUM_JOBS=8 install_wsl2_kernel_headers -# -# Steps: -# 1) Confirm caller is running as root, needed for permission to write to -# /usr/src and /lib/modules -# 2) Verify that kernel version is of the expected format, *-microsoft-standard-WSL2 -# 3) Form Linux kernel branch name -# 4) Check to see if /lib/modules/ directory already exists; -# if so, does nothing else -# 5) Remove any existing kernel source tree, /usr/src/linux-src-x.x.x-sysdig, since that -# tree is in an unknown state -# 6) Retrieve kernel source tree from github WSL2-Linux-Kernel, into -# /usr/src/linux-src-x.x.x-sysdig -# 7) Install Microsoft-provided config file. -# 8) Build kernel, honoring environment variable KERNEL_BUILD_NUM_JOBS if provided. -# 9) Install kernel headers into /lib/modules/ -# 10) Validate /lib/modules/ directory now present -# 11) Remove unneeded files from kernel source tree, to save space - - -#========================================================================================== -# 1) Confirm caller is running as root, needed for permission to write to -# /usr/src and /lib/modules -#========================================================================================== -if [ "${EUID}" != "0" ] -then - echo Error: Must execute as root, for access to /usr/src and /lib/modules - exit 1 -fi - - -#========================================================================================== -# 2) Verify that kernel version is of the expected format, *-microsoft-standard-WSL2 -#========================================================================================== -MICROSOFT_KERNEL_RELEASE_SUFFIX=-microsoft-standard-WSL2 -UNAME_KERNEL_RELEASE=`uname -r` - -if [[ ${UNAME_KERNEL_RELEASE} != *${MICROSOFT_KERNEL_RELEASE_SUFFIX} ]] -then - echo Error: Unsupported kernel version ${UNAME_KERNEL_RELEASE} - echo Only \*${MICROSOFT_KERNEL_RELEASE_SUFFIX} versions supported - exit 1 -fi - - -#========================================================================================== -# 3) Form Linux kernel branch name -#========================================================================================== -KERNEL_VERSION_NUMBER=`echo ${UNAME_KERNEL_RELEASE} | sed "s/${MICROSOFT_KERNEL_RELEASE_SUFFIX}$//"` - -if [[ ${KERNEL_VERSION_NUMBER} == *${UNAME_KERNEL_RELEASE} || ${KERNEL_VERSION_NUMBER} == "" ]] -then - echo Error: Parsing kernel version number from ${UNAME_KERNEL_RELEASE} failed - exit 1 -fi - -echo Supported kernel version ${UNAME_KERNEL_RELEASE} - -LINUX_BRANCH=linux-msft-${KERNEL_VERSION_NUMBER} -echo LINUX_BRANCH=${LINUX_BRANCH} -echo - - -#========================================================================================== -# 4) Check to see if /lib/modules/ directory already exists; -# if so, does nothing else -#========================================================================================== -LIB_MODULES_DIR=/lib/modules/${UNAME_KERNEL_RELEASE} -echo LIB_MODULES_DIR=${LIB_MODULES_DIR} - -if [ -d ${LIB_MODULES_DIR} ] -then - echo Kernel modules directory $LIB_MODULES_DIR already exists - echo Performing no work. - exit 0 -fi - - -#========================================================================================== -# 5) Remove any existing kernel source tree, /usr/src/linux-src-x.x.x-sysdig, since that -# tree is in an unknown state -#========================================================================================== -LINUX_SRC_DIR=/usr/src/${LINUX_BRANCH}-sysdig -if [ -d ${LINUX_SRC_DIR} ] -then - echo Removing existing directory ${LINUX_SRC_DIR} - CMD="rm -rf ${LINUX_SRC_DIR}" # NOTE: rm -rf is dangerous; ONLY remove explicitly named directory - echo ${CMD} - eval ${CMD} - - if [ "$?" != "0" ] - then - echo Error: rm failed - exit 1 - fi - - echo -fi - - -#========================================================================================== -# 6) Retrieve kernel source tree from github WSL2-Linux-Kernel, into -# /usr/src/linux-src-x.x.x-sysdig -#========================================================================================== -echo Retrieving kernel source from github WSL2-Linux-Kernel, tag ${LINUX_BRANCH}, into ${LINUX_SRC_DIR}/${LINUX_SRC_TARFILE} - -CMD="mkdir -p ${LINUX_SRC_DIR}" -echo ${CMD} -eval ${CMD} -if [ "$?" != "0" ] -then - echo Error: mkdir failed - exit 1 -fi - -LINUX_SRC_TARFILE=${LINUX_BRANCH}.tar.gz -CMD="curl -L https://github.com/microsoft/WSL2-Linux-Kernel/archive/refs/tags/${LINUX_BRANCH}.tar.gz --output ${LINUX_SRC_DIR}/${LINUX_SRC_TARFILE}" -echo ${CMD} -eval ${CMD} - -if [ "$?" != "0" ] -then - echo Error: curl failed - exit 1 -fi - -echo Extracting kernel source from ${LINUX_SRC_TARFILE} -cd ${LINUX_SRC_DIR} -CMD="tar xf ${LINUX_BRANCH}.tar.gz --strip-components 1" -echo ${CMD} -eval ${CMD} - -if [ "$?" != "0" ] -then - echo Error: tar xf failed - exit 1 -fi - -echo - - -#========================================================================================== -# 7) Install Microsoft-provided config file. -#========================================================================================== -echo -echo Installing Microsoft kernel config file -cd ${LINUX_SRC_DIR} -if [ ! -f Microsoft/config-wsl ] -then - echo Error: Microsoft/config-wsl file not found in ${LINUX_SRC_DIR} - exit 1 -fi -CMD="cp Microsoft/config-wsl ./.config" -echo ${CMD} -eval ${CMD} - -if [ "$?" != "0" ] -then - echo Error: cp failed - exit 1 -fi - -echo - - -#========================================================================================== -# 8) Build kernel, honoring environment variable KERNEL_BUILD_NUM_JOBS if provided. -#========================================================================================== -echo Building kernel - -cd ${LINUX_SRC_DIR} -if [ "${KERNEL_BUILD_NUM_JOBS}" == "" ] -then - CMD="make LOCALVERSION=" - echo ${CMD} - eval ${CMD} -else - echo Using environment variable KERNEL_BUILD_NUM_JOBS=${KERNEL_BUILD_NUM_JOBS} - CMD="make -j $KERNEL_BUILD_NUM_JOBS LOCALVERSION=" - echo ${CMD} - eval ${CMD} -fi - -if [ "$?" != "0" ] -then - echo Error: Kernel build failed - exit 1 -fi - -echo - - -#========================================================================================== -# 9) Install kernel headers into /lib/modules/ -#========================================================================================== -echo Installing kernel headers -cd ${LINUX_SRC_DIR} -CMD="make modules_install" -echo ${CMD} -eval ${CMD} -if [ "$?" != "0" ] -then - echo Error: make failed - exit 1 -fi - -echo - - -#========================================================================================== -# 10) Validate /lib/modules/ directory now present -#========================================================================================== -if [ ! -d ${LIB_MODULES_DIR} ] -then - echo Error: Kernel modules directory ${LIB_MODULES_DIR} still not present after modules_install - exit 1 -fi - - -#========================================================================================== -# 11) Remove unneeded files from kernel source tree, to save space -#========================================================================================== -echo Reclaiming space - -echo Removing ${LINUX_BRANCH}.tar.gz -cd ${LINUX_SRC_DIR} -CMD="rm -f ${LINUX_BRANCH}.tar.gz" -echo ${CMD} -eval ${CMD} - -if [ "$?" != "0" ] -then - echo Error: rm failed - exit 1 -fi - -CMD="make clean" -cd ${LINUX_SRC_DIR} -echo ${CMD} -eval ${CMD} -if [ "$?" != "0" ] -then - echo Error: make failed - exit 1 -fi - -echo Removing C files -CMD="find ${LINUX_SRC_DIR} -name '*.c' -print | xargs rm" -echo ${CMD} -eval ${CMD} - -cd ${LINUX_SRC_DIR} -SUBDIRS="`echo [a-z]* | sed 's/arch//' | sed 's/include//'`" -if [ "$SUBDIRS" != "" ] -then - echo Removing unneeded H files - CMD="find $SUBDIRS -name '*.h' -print | xargs rm" - echo ${CMD} - eval ${CMD} -fi - -echo Removing ASM files -CMD="find ${LINUX_SRC_DIR} -name '*.S' -print -o -name '*.asm' -print | xargs rm" -echo ${CMD} -eval ${CMD} - -echo Removing PY files -CMD="find ${LINUX_SRC_DIR} -name '*.py' -print | xargs rm" -echo ${CMD} -eval ${CMD} - -echo Removing JSON files -CMD="find ${LINUX_SRC_DIR} -name '*.json' -print | xargs rm" -echo ${CMD} -eval ${CMD} - -echo Removing Documentation -CMD="find ${LINUX_SRC_DIR} -name 'Documentation' -print | xargs rm -r" -echo ${CMD} -eval ${CMD} - -echo - - -echo Kernel modules installed into $LIB_MODULES_DIR -exit 0 diff --git a/probe_builder/kernel_crawler/__init__.py b/kernel_crawler/__init__.py similarity index 100% rename from probe_builder/kernel_crawler/__init__.py rename to kernel_crawler/__init__.py diff --git a/kernel_crawler/__pycache__/__init__.cpython-310.pyc b/kernel_crawler/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e93a02622f219d0dd8de35c04c751a2fd2c2e26a GIT binary patch literal 1062 zcmZ8gO>fgM7`C0%N!z5$$_6J8C!``l#SUzT34u0EVuBT|AS4SErHQvijpOnra^lR56Smup4qJZnJdYjc$?MnB_ghG{AK!OJzKzgNO%|J{$U`-X zFDfJ`!5I>mVL=$dnv={DHnR=3vWB3H8f<5daG5KbtSMToWwb`t79R5qrkO7~tYff~ zEs1~y2D{m^=&~+G9CN~LPPxmQyv04<;Q{X^&97~CCFvyX#QTidO5zVuZ|N6S=6a;= zJ`&MKnLkPM>HB+6QveB`MZtnYUWSt>9!G~fEP?YLt!a`LCCJ)&%b`eRUfU7GN6Z3VGFQ*#k>Ith(KiIE z%J84v{*e^Cf4~zCX)OCMC5-zMkRyI)G)*(5&RBTP#vF2p8+^JxLR&bOfiMBfTmfNm{J0LQ5l_@I)b()&cUpRK;KeW(m@+D rX;}zYl~%i(LMGFUKhSrjxUE8fJnX4oQjzFEEP^j}q8OpSJIj9o@z)o6 literal 0 HcmV?d00001 diff --git a/kernel_crawler/__pycache__/amazonlinux.cpython-310.pyc b/kernel_crawler/__pycache__/amazonlinux.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8770930a6dec1ecb416f78ee5ff2825e25e38bba GIT binary patch literal 2693 zcma)8OK;mo5Z)yzin1g-bsIYmr%2oMp*9vR#c`4%NE#$X4^7=7J_IEY5Hxpf(_V_o zE(OPee6rD;ilYC(?oI!ozlGPHa;QQDeQy8)7nUnx;0dIL0@PrjaA+|kR^R_6)j^_YB z&Ky?SrC#X=!p2y6m#{K7*T;5DuMCn3tAeCDkW?65BDINEa4uPVMS<36W=Y;o;BCrw z46ouUPyLP*z?S1+gZnC#QEN3Lp^3`|tpIPd;~{i42c$=ObQ)}#CfjC8dgcz@wo=-& z_Kbb7<09FidnPk`#y;3IO+bsnVz=VPk(7z7iwF)ub-JZ%%Yov74A)*$w`NH^N7_KL zG1V4PDxwxwSrJqgLC9+buY}tBGD%XelCxZJ*kUk%I}HZfNz_WY^uS)#?h{#tU0>gK z*OHjKE1Yo|g^Bw#ksEGXCd+(wxf2PHx*J@!xbQ<6Yzp`c;-H(fK#$IgdV4D?qq_p( zd+Y~tH6fPM;dw!+d&-&ClGPs8LQyAzo=)j;!CnZnaQl(l4r33vv-MC zcnPldZ19?Qm#_B(`LwY%Y*MYh+5r==3L`eeeTBLXk{pP zclgfn;XCf(@a^NPwE%}R`^D`Ae_=i}v`sld9<9WDIrtPvk21PpNShhkG$oJ~WXIS8 zn|pNMz-(S3eRI(>0~ve803)_AUo*3U>a@9(6R<(%_FBoJhK@%8zKYdqWl)Lq52Qc;@7h^s#MLtl`Y|y&CS1 zhfR@gGx7BqZnHkuEo&~XD%}hGMJfX|D2%f=>+|kl#@t{?TYhGhkRN~=5_PYc z@( zHFFxcPAV&Jz~Wj_>a@6t2P`1LEssznZ{er*kS0gi!F)r_kFZk&?4YzpC0yc2t(u#s z4M#z4qb`Y8Mz09qUF6x1@FJ9G%;pd{(p7Va d^US%MmyCP(*HVZYhdM^Zs8D>y%t?Fd(px9Rd0YSh literal 0 HcmV?d00001 diff --git a/kernel_crawler/__pycache__/centos.cpython-310.pyc b/kernel_crawler/__pycache__/centos.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b04c18764304769d25187eb2aafabbb1b94320d2 GIT binary patch literal 1227 zcmZ`(PiqrF6rb7IziA>WvGpM0NywqyOG!%+5i1IU73@LS%dp*5M><95n%+-@;Pxj<{lf*`(59YnMZ{ECr^P4RijT!;^_WkWa;u7)$Kb8q>O(}cM=D5Cfsw9FyRRwq$>gug7n@H5sBJ45j9Ca`)4c(#L7Nt)qhe5 z)}qE$vMfL{RrWKqEeLf6YZulpEO0_DA@`KRX=l&Stt)D3x=K~0k9t-2iY9C%)fG_@ z_+IbC-J&n!jucY$vLgOisKdBa#erNu81{0o#)nc3WX>~{9_8?v$w5`7I%BHaMb37;-jqwxM}R6N!48t8LWQ@OGna=fk~23K@vx}7o8`P{u#rZu9nLhVd7KSB5R3)L(&3sGx_A@`ZCsD{@H@C=k{uXY$@)c&v*~1;^B2 zBkRu3tdG)RUd7|!Wvb=-{dnxg5Tg|;oQR1&l>OQCETrt6SRfcr4@;@kJ@g7W?+tnt z=PhPjE%T0Xv0@X<3e^Dpi1RE@wdVW=W9lIs#sK<0u#md6=`?AR!J_W()oA=+`T92g zCZP)b;d&wOAni-eO^x$@A%;2Xb?BnZNU~*1wqq#_BQaLJw!9tg9g<7V ze(=t$B#vfV!&DIgMNqWpQ_+WIfuhw*AN$^-f5klXB}D-NEl~8SaTB?}b7q(1QgYDl zV(#3pxpVKi=lss^-07A|u7=+~{@3-@U!B*qUs2)k&qU#ET;V?4 zUFW+|H~4PWO}<-oi|=;b#@z^VZKv+w8BB#&qMSb>tO}eu1P?H6JZr7-vM7bzSD3^S9^Au`M zqoypUP&0*^GpIQ$^;=r4@&xP9Y9cN7RI3v;*7}`h)arJYP-SjJ?cj;X+D+y6x-~s5 zuKVcKQeo8SuBACD^;Lidx9x5Djn$pV57PqY!w5sJKOvD}G)wxuXroE5JN%>J-^LXd zk@#9&NDV?1n3|rx_~TBq+wKK^8EpOew(F&t$_nR1r=V+u(qtWr&exs4PjYhjG z`vK*PjmCE03$m8SnyO%IPQJXbxY2Fi#^p{_2*antpK%)TfXY} zL8Ga>djX2lUtQ?!D4O0J&6AenXr|zrXO^?CAAf;v2g{NALk&7%NE3I{x1=TQhuW^F z+kS57$Q<@F&p8J<7wviJa(e;!f-G{ri2PYOB`XgFo-Cm>EoZo;ERV_K7P_rs*owMpr)glO;~(X9T<_uvNot8mw1$@G zNU<}ww8vuUv7Y8h85*lz=#R1_>6($6p&zWN6L?O|QnD|1HH{)|R;$yB8jTlFVnN!% z74huEd=|!?nxq=zALaKaMthNHn{bX-Ovu4;E~4a`VO%v~`s6LTo`G`dT%rK`n6m-;Df zU?uucm&Urbrw{DNNbFsK7V{M3DXmkQwExOTjKsRg<8Ip+#Uxcw-`}?5V<=f<-h29| z`XD!OlALt!YU=&OL49FQ44m6qr)X-Cy|W@T`bRmMjnKZ(?rDjGJtbxmA0ak%rZ_A9>P?yoLP%QmvjF zJ)GvQ`aQoR!!-AiuR<7d>b!^HG96N9A!kJjqFzMurKraGkE)76M6Wx`s*9KTA$N=Q z^VOQ8Xp2%Ch@@J*)Bqx-Mu@}>BTq%)y;ii5T466}q3RZ;UYz^mm`qZx#$ zji-IDU7u?9mGS|EqqU^Ycu}btv^suj(lqNifEh2r*z$K$>n;s@ROw1#)9Z}K3BQF& zhF6i8mMNV5e^J=FEno(}H7#AZx-N84L8~jw&x^RD{M0o}-4Ta++VPo5<(+s_T>T6) z?cbkYcE1gdE!<(PHG3&G=jG~pT*?4DocHfX%8QHH zw8L&+HT}93b-O`0uH0gD2E@!>zjkx!+KtBYm3OaSdH)*jD=VnM2Kt_AZln%v3+;JL zSKr1gQv+LdbZe$tVPgdIqwT$kt|4JoQFn#@m96VfZA1U9ZR)?FEB?l$z@K^kxuPO* zg)>Ngp{)ri-~=2(j$QI@#?l17k#sFwgk<4qBbvL#C#f%dN4<$GppVv@EtTQcy%@k&vL9!Q*#A-sUVfM1`(`)&Sv(F!_K7RX*9)Iiq^7bV~c;B>irY6*7(s`?Y$ zE!^J+D(5!DPYLO92lhG`6B|JNfbseq-o9s{omwoyS;FxocS@sYwogWI^g}ZNmhXx$ z1f!|7lpz}d8Luv$eK4qYx)A_$44hRGbW)?R*V&b*Hzr&Xg!E9)2LT0{^Zbq*l{wZunU*-a%3wb%ByeXRUsSy3cSi zaydGImMvzG0-kIFFc;<1xEF=~c^U2TE0bIMHB+D98>I5I%M2=nj*+%YQYT>1_e5Br z@-3JGq^}JDD5ym}cC!F)Ye2>#fj`amS!mnGS=RbeYW)1>4M_4O49SL)$&}WV8lIGB zVq+nZr3OS+cf24V5r=F{M}(19i06)=f_vS^gG^a%;Ds$_#c=@%yf`U=qYq6iofO)^ z#UL>YeP3r{G1T@nEbl@_DhN}&@&ejd)NGZ0%`$tuS#OvTn?ilj0cgeZxSHB%*mNA-J1{stE#@kuRy^Xt`xkl=Y3 zTq~p|C`YJXruXH*!vnABs~=Ix_IgB0Qak9bulry)(qHYbgA7F~)qA}(*URvNtpcFI zOqnb|k>#aRN5qv1Jfi%-2hFdSSlXiqD;yU`608@pR+fCWUNY#+Crp?QE$bngLK2q= z=zz0DTE=~b(+a@E)X&109K%JeD;)5n3iuCQGsf>SF?LksIL1Fh7cwzMmp?=%J`To? zpaB;!Tq1ZlR6@hf!rS*7)39q`0d4kjuDjq~qsiXYuz8^+m zn*U&BWjUj;F0)$59u8pv{Zp$I`Rx$kMq8VfI7%C7W2ktiU#AAJ*T`!HBlpd?&+dDM z01IL70n)AhE&4MbA!1slEqYouK})}Ku|1Ux^{UUR@#G*AxL3f4bn&JH*e(jFA^^Sw zhm07~fjamjprKlXP+SWf8r52x2x=s7YSW4Go31o}Y5wU)gqOh0>mUOnq2LM^9KW_% z7#0&7+XQE?-T`7EEE<+5%;G!ZZ3@ofGyJYR-c?R4glYB|_l8r69aVM_!VRafSxP7%{A*bremfd1sYW!49-`3cP{~yUta1Sybu%z&Hau%(&^-?kEi@< zPxU*P;dy!@q*=cgX9zVvf~1vr&RYZeKHIZ4t3JTI)Q>44+*H>oxq$@iC}=ge(gF^I z)|DTItDXXU?r?Yr*P|36N@_;kMwp%$1tK@E-MDt;*0sjZm#(Y3X7(s3HR+0|f%A!YFWt zLFP$(5GV^eLg5ej<(i>x{j6Tm?$uIyCEWdm-s%DPdaxz8ZVQZ zr|T9jK1s}ujF(neMmTO3jYHC6@8(<#y!NW}E`QNdLKEzCyl}P`Qd_t?etdRdf@1up=BA!0{9$*jVNG;Egj`qh0 z$kzcxm-kVk3$f=klaxc{72C%sKDcuN zE%4QtiNjQ`fLwkKfqhhjSm5b*2{z~$^g||K?ovH>Gh?*x#l?4Fhusbi`@-=7BTlf} zUaM2jWdM!Sr%`5+s$*wd$|4YFakbU))Xw~uVzE|YXjeIiD%%9oOlIkdWXa(?pH!+h zsQ4ZwZ&7lO5;8}SzB$}dQ^FUd7O7cS&r?`RfDx*nQpeZ02UVm7wDHI;r+GdJq(}b~ z9XWI-cqVRL27nV}9|y<*5&+x!uN`L=ZKjBi9caV;2oq{Yx=v(*9{RZlCEI?=`h`loXtG=oHcZ5%smkmHj7bdvn*}! zx{E}wvD0r1thj_D@hO~#Rb&p@fC!lW0^F+Of`^IC>7C^S6T3A?osdi_POL5^Aj=qVYf#0d$#|&a86BPyDb3!0cu#8G?|IRNxR{f z6k2sDVQG?t(;S^JKv=FzEc_xNi~nn#3sgHJayL3}`srDf$u(ath`z=ks>I-lnEzY=Ez+r3F} z${#!#Y*Rb)`n=*pD7w$9Qs-iJv~(Fesf8~gDe53sIFBF{E$T(Rl6|Ssi=tx8nA#uB Ge)zuw!N7C? literal 0 HcmV?d00001 diff --git a/kernel_crawler/__pycache__/debian.cpython-310.pyc b/kernel_crawler/__pycache__/debian.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da977479e885028f1ed81b2676432172d5e02ca9 GIT binary patch literal 1621 zcmZ8h&5z?W6t@%Sqis4f3@|M0fZ&4YfmR@d#0ssDSXc?c9N@4b0$FM7w&|ov*LJte zC_T+cdqVsR>2Yry_-lOSwEqG^z4~Ymwcuhno>D<3^<3O+< z$e{C_g0KO#Ovz;lt1IOAIUJF*6mRwoX&1(qF!U)*f>z`SE&IZ0*NW7jdrKn%QrTJT zYm$d2%eG&6^?MPJAh!=U`J#2lrTUL(XvtN#dn!frLtbK5TAaMqN066kRW&s zSo&ii45=xAMUAs{8`^2B3Rz_m=v zd}3Lm(wPl*il0&2;XKU~tvPREq&mQ-4q%F4XbfBAM3nt=!Y*IGiOz5@+LBucpvxw)dY(+B2K>A{8Oz)JUu`o=By$vWTN3&-a``lW!w z|1$?l<}%UJMnW#Z0a>J()NRILwlryHZ~2S%zX4bJ9hex!9@0B7LfWMfbm#BWf8PpD z;QaFKTbX$iHIy=-3X>U@*KqN%EQ(|yIk#QT7o}L`NJpGMUL|>Z)0BY1@5AKepD&J$kO)bK+#qBSz9x!Lgb)%*C=e-#M8q|#^X)o5d@p9#gji0M zp!^4_q|9I1mMSe}3Sjo^M4@7=8O_ek&g1*mWvA03C_jF^8+>Pk{B(!A!twALRrk?I zB56i)8qu6Zj1tMDcS<7fEsV5G3;oC68HN=q_;;7Nsmt-Zief&;7P*WlWv4^=+Lp$67A^rTV%9Za!-5NVMb zA&`8oRW`KTO>3Kr884|_5+ccBt%azGhh@A6570Q4v@-$abOqVtzgPM6;a%YSx8*6^ z!%QRwI~H-Sgs?3k@={JR=eLFUGKsVKm%6&`EczxY%WitRcLHn9)Kj<>oTJ^k0a>N> uQoB9h5^z-4`_Gs5w^Dr7Wt}kJqpnpOSHcD_=fk{m|2gd*#(fg7)!;9@gZpLx literal 0 HcmV?d00001 diff --git a/kernel_crawler/__pycache__/flatcar.cpython-310.pyc b/kernel_crawler/__pycache__/flatcar.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a2ea0565b40d97658078d51e4aaecf9fc9d733f GIT binary patch literal 2505 zcmZ`)OOG2x5bo}Icx=|hgeWh9hyn?jzP4#2iUDZ|J_jS>1HW)s?|M^YtjLX;` zG&uU$I9S2A{2q;DlBcXYYk8OBSfnDex)x{Bl6GomPS?rYuFKh1OghrtWztp7j@7N< zxF$Uud&B*I(eStmAWS_p2;@!ExjZ-S|NbiZZDRc%t2VNm)S=)54>Vg@YA* z%PVLUqhPv1aw&FM*OGN@0{_4NP@mqr_?DEI zF(0!K&-;Kq=bh(Vd%dVs;Sf@c(k@lH3UyrdoWUE|y!;~Q7nurHl~j<#Met(*8^HjI zo?7k=lN4uz4F$PM!x*B+DGpa>;j{-&v=@d+o>XB-JC+nhgOAQ1i?_YMOtXd1sZb8S zCiENFsn|N7iZNTarncmJ_?rkkj(EhOmEeKQcZa@9u_q?hSd6VTo={n=&PyJQ-k%2- zO7%#k#XvzA7kL#Wxq@~t$=kirr@pI2QEGb-RsC6V@+ea#DcS`rTr$x1dXeP54U|t^ zd!(RDid@$~r3#bTZQ}Na8=FMV%o43{t*I&;MDa$nrosx8qFGa#Q{3Y=Z*k1hrQ=z8 z^=~mjYyY7>y(U+PdWKoRj6e;$;GyxkiT2fCYGH^+3d6T?iK&pwN9T_Fp07e!!<)33 zOSPrEgrRPPVOGdtO8uoU+#E*f>`57{2$q=B97&n zLvWy{ypCp{9&5{Js*1D|rGq{-nY{kl0vav!N+D2dLU@L*Hw3s+{LBuVdzANkYzL89@d~lJBc_PM zXKYWPpkPIOr=zV1GIRkMx;R=yVhAO~6yrR0*078Z>k|}$b>uBM{6+jKHU(}YM(uu8 z4ayrqupLj@bLh3_0AEg%e7M!lRTXSUljUIv0n(etnn$Qi?rH&9RN;(hf6}eR{U}EU zqZZf^#Qh^sZQM*zs^TIW+%^8l(`IC?_+dAWu&5(|mOL z^`R_Oj;eN0xfL8#Y>LS=>LI3L4~a7t>lRkbo;tHyp>|kPmo#P~Ol^gm8%yaFXsj@>6<5seWXCa&5jn>u=BDqM>(_8~Z*5ykmvM2fI%>Tr_P&Z;c z(ef^B@d27OhBY%hf7qZKXo@4emjvBNoNYQ|#E4N|1o+3eUb|`wPb1+L4(6cO4&?{$ z8ERfpMcp9&m;{!~PZZjf@dv3IOh)(akx> zVwI-IvqNnrhcm_zPf5Ma-9$xyQ+RHxY542cp+yTnN2Bd@D@#qOV1*`$Y(O{n3}uGz dhYn27RL8qHyEtx>2%6%c7qP@!q9sn9_z$hVO49%U literal 0 HcmV?d00001 diff --git a/kernel_crawler/__pycache__/oracle.cpython-310.pyc b/kernel_crawler/__pycache__/oracle.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..255d9dd54014148a04821e7c3c57e42fe51a1050 GIT binary patch literal 3466 zcmcgv-B0625a0DzoRClolsok^ZPh|rE^ZGRxD%yR$EhF31qoDDid0#~yFkFfxpmSW z7JUNgp8Fr%J?6cCjbHoJXWpn(b!KgogaAkGq#AkH9eZYHc7F3)$1fCe1TO2(AGfqD zA%Eed_tIdp0(ZbbFv6%u8ni|!jujXyHHDJz2veDMLYT&tJ@r_vX`s=W0UCqTJsmU# zXfn(MjhSdNpvkfvXmW|hWFwoTl>eK;QY9K`f;WBmuZm{F1y$dr!fXZZ;5GfXy{8wB@qPezfT=PHR!TLj%^WxlUi_h2 zoSEL|;(&Y8v&Cd|hw)$g=54;;^Au*u8>Qm6)zzXS+}+~W#p$Pu6}vJ&UFu+Ns_O+p zhXtiLyKn9K4Q_37#zo!rt)G3dZ#9L##qVsj>mF#WI11Yp&Tk$}eVJCdc^FM5PnwRq z@9c2GEak!jnQwrxi_+iv)*?cq3YgHOjxo{YGj69f(3 z+Vz<*(+s+~hz#m*FEPCU12Kt0N2$~e)Dd6A>$D6atz%rpn##;)WScUL=_gsJsKGKP zq^3V38mSpjr)*S+Q>#3#3*n1_(&FN>v@0-R^oZ<{TL4?Q)t<4|GuC^?Mt8iU!*ZEw zcz3teYTmc3!*-*bRKWEc76R3ZLs_dIw4Yk*YZc3LT0Cf3XVePkhA?})zPj=KgGW~Q zhUJdOXff5M5r z+Lh&-kr8)^i_lFk31gUG%b$J(;)pW3uLy%Fzta|JL0ylP=gJP~UjP{~vPn8>HBueX zh%yd_SD7!Vksh?0T!>L{fIzPw)LXXQQN#o&#G4=>iL7l)c-wZIiNx|d@a!$PPbHSA zMyF^v)gOH7ZUBK8Ga~SG97GK3Bl4WQAge%9fGM@wXOgD6i6)aEASv>TfoUGmWBP~k zMA?ifqZ9X2M~Rg37m?Z)-o?GoEqV2z1@LSxV+N<_dy<5+{gLB4w%q&jlIOdQ7c9dd zHH1|#3W3oN`0tv&o%$cA;q9yZgD>30PDa2vLj)c>Vg!X;0Yele5K$qify+HFt%GFB z_wW^25v(Da2FO1qG3jV_OqZ2)LD6@m{2~gV?lQ*06^w!Iv0lL%h}U5Zmg!*+Br9_m z_E<<8OuPYc48b1@)+_MGf`$B18HRFVldpz10hYQsvBj&*Sz-)!;W7|P?0kUrLP&J! zB~P`plwgul#{?rGcqO}tDO~3kh>|K0)B;Z>A+h-`jwA#n7|)pjF)J{HloQhRUdjog z2v*lIfcOx7%jJ;v#K-5;ZU~=(&O-e(h_t!W5V{?DS#ygSw7aCWWgp7SKSQTUM-Ms` zpQD3W6fz(wx?PGM-iN!}r8($Q)ZVm97q9426@17p#iCr*r8_{CC9N9XyYbPsXl*$G z_k;fCyE$AJlRmm0u5-90c$6SqwSQBXCb_;EOeF%Yh3P$5un(r`djB6xzrhfCVVZ{U zIxt;Er@b&8bovsQ;@;hby9-kTV2au*oEJpkxhW8FQDLLm*uW1O`9nf}&ql^7oR#qH mIf`$|o{_ca_QQFrM&?rdNxh7}IO6XilBeV9xG_F4HTfUWq5$0h literal 0 HcmV?d00001 diff --git a/kernel_crawler/__pycache__/photon_os.cpython-310.pyc b/kernel_crawler/__pycache__/photon_os.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a9399ca2aad56f6b99d00317341238354f4a273 GIT binary patch literal 1566 zcmZ`(QE%He5GE;ER@^x4vZ7u0WDLtvJ;WNYAlQmD=&%%9y3H<*Jt`^X{W zZ=Ae7T$nt7Pooe-(2V3Xq7-!oI*S-3UlZX7_c;-+qzBHK6S-ii2@fouWCt~{c%r^T z0{l`M+{OqT}SV{+yPphyx?K_Vs{K?QqG&S>Nc2V%Kq@o}%Hihfsb zLlm7>g*r|!{%oL*-&gQy1R^NxW1Z2~-Mjrbm#zD)!5SjNd=yf69FfmFvHLSP_VHd?+4yZyF3 zouFoX&Jh>qronk$h(U(>Jcp=pHeI=vWU zrF!UyL$^W9s<#ih|C2_JsJ|e4)Uss`>S#F<)m{*nL>}_PEX=@tpDIc@kSR~FF|9~NPsthko$Z7D51_apa6PAEoLJ?i9>*%_t*r)*sp&x}m1;r&Om^B& zE6xLETrIOb+pXe2V@i8h`sEkP3VlpeIGvk2?#(&e!l(_pdGUc@Ey=oddeUG6ZBW-jQ+-+GJGzh zFM3r~>U&{0Wu$Ho^JlS=?WD-3)D2IDj!GYz*hX`OEghxEb`_HG|EAQ24 z<&DIlJ1_?NLVGsfsKP4`K+!@E2DhlkrcTiwo%LK;jCwHj8*G%h0H zoo%ri)OEanM|a+NWQ Lp3Kul=a%U z$%R(h6XGkR7o>g=zJ#xwICDdY@}4JY+O*)2-#kBi=KcG<=W=l|CNO^e?aNN+6Y@JQ zt_}|tn=sY4Kse#FAU)cq6nUp`+Kzp@ZTEA+UGAL{?g{V2ZTsBk!6|76AP;#2^2o|V zST}eK>sW+vF5=EMNf!QqzmtTTrGd=*nstZ$Oy^~PD?|C!;lg4Qrg{U2AZ^MC*bs7u zyQj1b7H}W5dOU!?MkfA73`&*jQXUzSIq=DJAWvaFgZU>qsmV|DoNk>{v$9p{FM5MQ z^h93^{;8CuOdR7WQFKlCgOCa=J124hzWVF4joq>*HoAffnP=t3i&E}y3}o36PdmfB z0BOBq)78F^eNnJXriTS=N-%JJaAaCLLbE}d?Wa3}X(>d6hM|=nJ$^WIV}1TyhF(ku z@>8!Qq?5=1NeJYe$_DaibxoSUnUFE1C1X~+1d`*sSCmaQAu1AMl=voMte^G-V4mC>5AR465w1~vC=~~$hN6>jpkGcn>0>BNy9Zt6) zRTVjbcj9c-W>MpU696BouBf#BdAelk4*tceqaKZ@ybtRP=Cy%#ZNgOV0=YyM+U_fkwuXDu54QyQ+kL6X-iZF0syUqs~>ZLN%D$m90~bc z^LSD}>fAMck#ZB5Ybfiq6 zG!(A1II(CpKK?tms~-D z#Uo!wf^#Z+5#dokguON`^yw?jr$lRYTpJ?9#_R{{GDV7UP( zr+{u3v279Dx`toqSAgGluHhGZ7~psH*{;a;5x^ENcwHef5C%ykAHz$&iNrej7IJSR z!7gS3@uLPX+2kf(9gJjpxE<6Xn=5^L_uc!~Y=#QET9ZT$_~u4YE4a7(FHu+0u>b%7 literal 0 HcmV?d00001 diff --git a/kernel_crawler/__pycache__/rpm.cpython-310.pyc b/kernel_crawler/__pycache__/rpm.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d7ae1a548bfa2cbafb9fc7541d8417ff54ae837 GIT binary patch literal 5132 zcmai2%X8bt8OJUjgeXduWjAh`q(zma5?Y%~o9SZ`zcR5LD{bf*$%!XOJsgO;lqi7@ zFF;FTz>_`GTsocJdmwN1wSNw-?Io8UnoGxR;{Lt`DT%Z?1_z4|i*Fy_>-T-j&cZ^` zz;*p!zuo@Fl41OvUQS;wUT)%!|B6N!f<;D)1&k5RBOY-5Gy@Y)GqPHCV7HvW8GkPX z1^wL(Tww`2nrjt3(ql6?kDj8KN6$QZmeF%T@GZkHeU053KFb!ns@YCzjb6K+G&}98 z&of&lO3KXIO~_Fj*pW%Cry`J6)Nh4#n&$Ln;pHaocpHs00wxTofC>J@ zfC@}u;b}=**ur^YJZ6Cdx*%Ll7eHUo+hzFT>bH_uctUS;Vo{vK*djQV#Q7&Im>0_s z&3dPDzoYgmUDer^SGIf22)&hksoFBC)m3;9;Z=28AqK~M9p^Zuq=A}vMfcf(vnFi!X&KJJFQly-GB2XY~)z| zm6tJfTfUh&`IL&boSD$I&w^q*Y{|GA)@7`;ubPS^%!&=wX+h#=3qVUk($u&XjAGc)ScXVtkxUXK3S_EAlb{Q;(oN#{lGFs^^aZ(Y0p!)YDQ4*UPM zr7#f;isaS)3W?xtRK2y;+?`f0dt>T~kdI`v>gx^qOudR>vzxs*_Ce@iKirYEhdrr| z-l7eYBUrq@GQG*O*fV1)Zb*Z)L+uwo1tHiFt~g{P1HQpi7B9dzcmqg+r+JCuiZ%4R zZ&mx%t@Yone|XP(BvlMd@zT^=y|PLVB_oN5(>-O~6RP^|Wv{!xvoDXl+naYk@y2q* z-u*l4o9o_}11)g>m)-}}Ti)7a&THNc@9yRqORS97SnN`zbl9IN#@UQUPGkdF)m zm@za{K4QP;1AE{=?N(|-<%QH5+G!zmMw}U-oe>2guZI7G&)?s;cgNdY|M1hzt&Pvt zy+nm=U}5u-tO?nTCmNe5+4nx!^45yp%=P8qg|1Jl8+WTO^p0&ivr2hv7p$T>kD5Zp z<=mz(jHh*TJC7O9D~-1f2by6zOD5lYnMMF4A?4QEu9A%zA3r7M%vxSA26nCGTJ+yP z7RN7Sh4^9AOys*kq26h?Wjz5h_Eg+a>TNicT0s*O=Td9L03Px>)hgE6N*MrI|}1EaN23it?~7yA%v@wzQe|u1~tMIfOu6 zZX=Inb9q?`_RLLWs|&oA!EzO$FYe*BqhQM0=*#Q_g;2=sM%0UUm5((uix46!#xfDI z5%!`aGeKu&D1^4IKbO}~!5k$>Rk@AcC+ei2)D%^f ziky+=iK+Z?4TxZJ2*BrXnSBGN&@u)ig(nM!lt8u za6|!5J3qGsPJUX!sfdcBg=`Ly^GQ>wj;huvbxtm#sl3r~av4Nk*{48?8e&8kJ&2Sa zJE)dLFR%nHzGw`Y0wSs#>E6PveuM^@^`6!UjybG$N;kULcCSWZYg>fZL$KyWmeGIf zc%#RaefcUOOcY-Skq_`K?SSy6P&LDLlFgIP)$(FQy+_V{qv`1&yN#igvmv;jawUq zX3NV)KsQvs$492FS^CbG1Ns49SHP14E)DUymOZlsP7Uajm(DCBI_KbwGc*Ygfo#AoV5+fa?b%1KO)!o8@PM+;?R&nXeug2_OdP+$q!%l4MRf(uID05c1sPMb;>_#)%0mbh?}J4jE;w+a$SiZ| zI~+2e>jPZw`{h&IQ|2TADHP}#lc$h)Uy-gUfwEk*lM`O1WHF@gL+lb80VSead+nF+Kya zgCz4{Rqq37W5g6faESi{Ml8-LtUso(-stK3uFe1BIv1by*G}Rvr^lg=^b``3B41Et zYDoORicq2Hb9pW?rAGA*HI&x$c|Le!`mdC7FKI?`S#%ECQ7066ZAP)2&2LctPu3|Z z1anj^&?{<-O|pXi6G+=UbMoNP`#TkX$0B9!)jWelf9*ccg#Z8m literal 0 HcmV?d00001 diff --git a/kernel_crawler/__pycache__/ubuntu.cpython-310.pyc b/kernel_crawler/__pycache__/ubuntu.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..070173c45d23b1791bf46caab614cefbb1a11d64 GIT binary patch literal 795 zcmZWn&59F25bnQ;Nl4U-IeHKja@d*6vWG>)LqHJRi-<6nW@fsRjG0M~-80CB>}ePF zHP++aeG-p-_2erEf>kqPh*(fxRaaM6f7M-PIvo>`=-b=$J0;`?E{;XO;x(uX0TfZR zASI0{MW2DsVn)duqPP+_Lr zm?{!8C2q-*DyI0&DCW0BkXS&)z)wD;&9-jd<<=VOgQQevrx|Mtbilz3K+(Ddz@93) zVRoR{6|Kn~ReVpsvepv^FF*_p; z%9e%;wOZ+LqwQ7~p|Pu|X-P)AXMLX2S!471GVC_O%#??m=Y39PZ0-I}IBDb2Jh0fM zA1!qHw|Uo8+FE=+Ka?`x=Czb_?uFCE(u>4qYyY5Ucu)OE%B)D7lk%SYI*-<-)X`Ea zZS%}TAC28al{Kk8Nt?WYXwnM^QJJg`kf-fJvlR)%i5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HMenx(7s(xB( zN@`JNa=w0eeo?l5K~a8Es%}zgW)4tPKRdN3FEuAVxhSzb2gofg$;>I%kB`sH%PfhH a*DI*J#bJ}1pHiBWY6mjAmuFyfgD=taf)h1lOnEZ>K*fA-}wFcLiv?Kr!!82_hgR zzJ z4Dkco+Tt6`R^R4`KC!_a6#v3X8pDzuo|QKtCc@KIS@Oea`E1a3ftHtZX{>SVOj_61 zQDWp|ru4+v$j*%mWG>7ivFDDLX)<*kA!C&lS{mb8vC6H?t@dmj^AV|IbDcVl{^BRm zJ#_qe8J??5hBGOoPGS|FD18wYT21BC={!jh4KJk5WjcvVcOkvJ@t zu7%Z2Fmf9MntP}^5I_fdDBW6`RQD17ugSi_J1BLN-{HaHsIPsC$!qfQ;fj_m3l+VF z6GE}!BbUzigg$3aLk{4bGB;FV_i>imT0`EW)Bdlc?QUnBF`T5 zA^1vfIo12<8wA=j)BYuE&vQG2oi|ybv^~~ZY1f`c@r5@{T}%Dnouqa8I&*N8DKSsw XbN@okeN+M2=Ivs4`#^64*4_OJ7yHC) literal 0 HcmV?d00001 diff --git a/kernel_crawler/utils/__pycache__/py23.cpython-310.pyc b/kernel_crawler/utils/__pycache__/py23.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b655c5e4b7e0105dccbb894a889e55a54650be0 GIT binary patch literal 435 zcmZ`#u};H44D}sp8%m3W#J~rzbSRNvVL%lKv3BWD!BRCj7ow!S%DJdY)sdBdfH5D$ zl9ew&-B`d5Lh6D~e!l0E@7cE9ZX4KMK2O4TjvqpHO*6S>&yE=k81)PfV6@resEjv) zUL#Wc^k;JS*>Bmmrwr@n241=DO^sm$9ynDTDUh>)Cfsvw1*IOY8@ZeHFMGOb;v%vJ ztHT@TC=PRncSM#-RjI55YVn_6gW$=|F_@u2iX$70EhWK{Y>53Zk5kSD3DN@7Nkr3C z$~1Rzngz?^{Nij`RPFgR!AV#+%%tJ1>_DpyA7ANj+GqOjR3sH7dy!@hO0(oit|1`( u{erBaI;fR0o@DVT2@)ylFbsRT7OKfkS^Ys>>tD^S$x|GNVkQzkbXq?I1y@@D literal 0 HcmV?d00001 diff --git a/kernel_crawler/utils/download.py b/kernel_crawler/utils/download.py new file mode 100644 index 0000000..f3f062f --- /dev/null +++ b/kernel_crawler/utils/download.py @@ -0,0 +1,29 @@ +import bz2 +import zlib +import requests +try: + import lzma +except ImportError: + from backports import lzma + +def get_url(url): + resp = requests.get(url) + resp.raise_for_status() + if url.endswith('.gz'): + return zlib.decompress(resp.content, 47) + elif url.endswith('.xz'): + return lzma.decompress(resp.content) + elif url.endswith('.bz2'): + return bz2.decompress(resp.content) + else: + return resp.content + + +def get_first_of(urls): + last_exc = Exception('Empty url list') + for url in urls: + try: + return get_url(url) + except Exception as exc: + last_exc = exc + raise last_exc diff --git a/probe_builder/py23.py b/kernel_crawler/utils/py23.py similarity index 100% rename from probe_builder/py23.py rename to kernel_crawler/utils/py23.py diff --git a/link-aws-gcc.sh b/link-aws-gcc.sh deleted file mode 100755 index 3775965..0000000 --- a/link-aws-gcc.sh +++ /dev/null @@ -1,6 +0,0 @@ -executables=(addr2line ar as c++filt c89 c99 cc cpp dwp elfedit gcc gcc-ar gcc-nm gcc-ranlib gcov gcov-dump gcov-tool gprof ld ld.bfd ld.gold lto-dump nm objcopy objdump ranlib readelf size strings strip) - -for i in "${executables[@]}" -do - ln -s /usr/bin/$i /usr/bin/gcc10-$i -done diff --git a/main-builder-entrypoint.sh b/main-builder-entrypoint.sh deleted file mode 100755 index 5215a1e..0000000 --- a/main-builder-entrypoint.sh +++ /dev/null @@ -1,152 +0,0 @@ -#!/bin/bash - -set -euo pipefail - -usage() -{ - cat >&2 </dev/null - then - echo "Docker socket not available" >&2 - echo >&2 - usage - fi -} - -build_probes() -{ - check_docker_socket - cd /workspace - probe_builder ${DEBUG_PREFIX} build -s /sysdig -b "$BUILDER_IMAGE_PREFIX" "$@" /kernels/* -} - -prepare_builders() -{ - check_docker_socket - for i in Dockerfile.* ; do docker build -t ${BUILDER_IMAGE_PREFIX}sysdig-probe-builder:${i#Dockerfile.} -f $i . ; done -} - -download_from_artifactory() -{ - cd /kernels - artifactory_download "$@" -} - -crawl() -{ - probe_builder ${DEBUG_PREFIX} crawl "$@" -} - -BUILDER_IMAGE_PREFIX= -DEBUG_PREFIX= -while getopts ":Ab:BCdP" opt -do - case "$opt" in - A) - OP=download_from_artifactory - ;; - b) - BUILDER_IMAGE_PREFIX=$OPTARG - ;; - B) - OP=build - ;; - C) - OP=crawl - ;; - d) - DEBUG_PREFIX="--debug" - ;; - P) - OP=prepare - ;; - \?) - echo "Invalid option $OPTARG" >&2 - echo "Did you mean to pass it to the probe builder? Add -- before" >&2 - echo >&2 - usage - ;; - :) - echo "Option $OPTARG requires an argument" >&2 - echo >&2 - usage - ;; - esac -done - -shift $((OPTIND - 1)) - -case "${OP:-}" in - download_from_artifactory) - download_from_artifactory "$@" - ;; - build) - build_probes "$@" - ;; - crawl) - crawl "$@" - ;; - prepare) - prepare_builders - ;; - *) - usage - ;; -esac diff --git a/probe-directory-index b/probe-directory-index deleted file mode 100755 index 3b402cb..0000000 --- a/probe-directory-index +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/awk -f - -# usage: aws s3 ls s3://download.draios.com/stable/sysdig-probe-binaries/ | $0 > index.html - -BEGIN { - print ""; - print ""; - print " "; - print " "; - print " Directory index"; - print " "; - print " "; - print " "; -} - -$4 ~ /\.k?o$/ { - PROBE = $4 - PROBE_GROUP = PROBE - PROBE_GROUP = gensub(/(.*-probe(-bpf)?-[^-]+).*/, "\\1", 1, PROBE); - - if(PROBE_GROUPS[PROBE_GROUP]) - { - PROBE_GROUPS[PROBE_GROUP] = PROBE_GROUPS[PROBE_GROUP] "," PROBE; - } - else - { - PROBE_GROUPS[PROBE_GROUP] = PROBE; - } -} - -END { - n = asorti(PROBE_GROUPS, PG_INDEXES) - for(pgi = 1; pgi <= n; ++pgi) - { - PG = PG_INDEXES[pgi] - - print "

    " - split(PROBE_GROUPS[PG], PROBES, ","); - for(i = 1; i <= length(PROBES); ++i) - { - print "
  • " PROBES[i] "
  • "; - } - print "
" - } - print " \n" -} diff --git a/probe_builder/artifactory_download.py b/probe_builder/artifactory_download.py deleted file mode 100644 index 0e99198..0000000 --- a/probe_builder/artifactory_download.py +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env python - -from __future__ import print_function - -import click -import requests -import json - -from probe_builder.context import DownloadConfig -from probe_builder.builder.distro.base_builder import to_s -from probe_builder.kernel_crawler.download import download_file - - -def list_artifactory_rpm(url, key, repo_name): - req = {'repo': repo_name} - req = 'items.find({})'.format(json.dumps(req)) - resp = requests.post(url + '/api/search/aql', data=req, headers={ - 'Content-Type': 'text/plain', - 'X-JFrog-Art-Api': key, - }) - - resp.raise_for_status() - resp = resp.json() - for pkg in resp['results']: - if pkg['name'].endswith('.rpm'): - yield pkg['name'] - - -def download_artifactory_rpm(url, key, repo_name, pkgs): - download_config = DownloadConfig(1, None, 1, { - 'X-JFrog-Art-Api': key - }) - - with click.progressbar(pkgs, item_show_func=to_s) as pkgs: - for pkg in pkgs: - pkg_url = '{}/{}/{}'.format(url, repo_name, pkg) - download_file(pkg_url, pkg, download_config) - - -@click.group() -@click.pass_context -@click.option('--url') -@click.option('--key') -@click.option('--repo') -def cli(ctx, url, key, repo): - ctx.ensure_object(dict) - ctx.obj['url'] = url - ctx.obj['key'] = key - ctx.obj['repo'] = repo - - -@click.command() -@click.pass_obj -def cli_list(obj): - for pkg in list_artifactory_rpm(obj['url'], obj['key'], obj['repo']): - print(pkg) - - -@click.command() -@click.pass_obj -def cli_download(obj): - rpms = list(list_artifactory_rpm(obj['url'], obj['key'], obj['repo'])) - download_artifactory_rpm(obj['url'], obj['key'], obj['repo'], rpms) - - -cli.add_command(cli_list, 'list') -cli.add_command(cli_download, 'download') - -if __name__ == '__main__': - cli() diff --git a/probe_builder/builder/builder_image.py b/probe_builder/builder/builder_image.py deleted file mode 100644 index f3f2138..0000000 --- a/probe_builder/builder/builder_image.py +++ /dev/null @@ -1,66 +0,0 @@ -import logging -import os - -from .. import docker -from ..version import Version - - -logger = logging.getLogger(__name__) - - -def build(workspace, dockerfile, dockerfile_tag): - image_name = '{}sysdig-probe-builder:{}'.format(workspace.image_prefix, dockerfile_tag) - docker.build(image_name, dockerfile, workspace.builder_source) - - -def run(workspace, probe, kernel_dir, kernel_release, - config_hash, container_name, image_name, args): - volumes = [ - docker.DockerVolume(workspace.host_workspace(), '/build/probe', False), - docker.DockerVolume(workspace.host_dir(probe.sysdig_dir), '/build/probe/sysdig', False), - ] - env = [ - docker.EnvVar('OUTPUT', '/build/probe/output'), - docker.EnvVar('PROBE_NAME', probe.probe_name), - docker.EnvVar('PROBE_VERSION', probe.probe_version), - docker.EnvVar('PROBE_DEVICE_NAME', probe.probe_device_name), - docker.EnvVar('KERNELDIR', kernel_dir.replace(workspace.workspace, '/build/probe/')), - docker.EnvVar('KERNEL_RELEASE', kernel_release), - docker.EnvVar('HASH', config_hash), - docker.EnvVar('HASH_ORIG', config_hash) - ] - - return docker.run(image_name, volumes, args, env, name=container_name) - - -def probe_output_file(probe, kernel_release, config_hash, bpf): - arch = os.uname()[4] - if bpf: - return '{}-bpf-{}-{}-{}-{}.o'.format( - probe.probe_name, probe.probe_version, arch, kernel_release, config_hash - ) - else: - return '{}-{}-{}-{}-{}.ko'.format( - probe.probe_name, probe.probe_version, arch, kernel_release, config_hash - ) - - -SKIPPED_KERNELS = [ - ("4.15.0-29-generic", "ea0aa038a6b9bdc4bb42152682bba6ce"), - ("5.8.0-1023-aws", "3f7746be1bef4c3f68f5465d8453fa4d"), -] - -def probe_built(probe, output_dir, kernel_release, config_hash, bpf): - probe_file_name = probe_output_file(probe, kernel_release, config_hash, bpf) - return os.path.exists(os.path.join(output_dir, probe_file_name)) - -def skip_build(probe, output_dir, kernel_release, config_hash, bpf): - if probe_built(probe, output_dir, kernel_release, config_hash, bpf): - return "Already built" - - if (kernel_release, config_hash) in SKIPPED_KERNELS: - return "Unsupported kernel" - if bpf: - kernel_version = Version(kernel_release) - if kernel_version < Version('4.14'): - return 'Kernel {} too old to support eBPF (need at least 4.14)'.format(kernel_release) diff --git a/probe_builder/builder/choose_builder.py b/probe_builder/builder/choose_builder.py deleted file mode 100644 index 74ad838..0000000 --- a/probe_builder/builder/choose_builder.py +++ /dev/null @@ -1,136 +0,0 @@ -import os -import logging -import re - -from ..version import Version - -logger = logging.getLogger(__name__) - -AUTOCONF_RE = re.compile('^#define CONFIG_GCC_VERSION ([0-9][0-9]?)([0-9][0-9])([0-9][0-9])$') -LINUX_COMPILER_RE = re.compile('^#define LINUX_COMPILER "gcc version ([0-9.]+)') -FEDORA_KERNEL_RE = re.compile(r'.*\.(fc[0-9]+)\..*Kernel Configuration$') - - -def get_kernel_distro_tag(kernel_dir): - # Try to find a distro-specific builder based on the version - # embedded in the header of autoconf.h - # /* - # * - # * Automatically generated file; DO NOT EDIT. - # * Linux/x86_64 5.15.5-100.fc34.x86_64 Kernel Configuration - # * - # */ - try: - logger.debug('checking {} for distro tag'.format(os.path.join(kernel_dir, "include/generated/autoconf.h"))) - with open(os.path.join(kernel_dir, "include/generated/autoconf.h")) as fp: - for line in fp: - m = FEDORA_KERNEL_RE.match(line) - if m: - distro_tag = m.group(1) - return distro_tag - except IOError: - pass - - -def choose_distro_dockerfile(builder_source, _builder_distro, kernel_dir): - distro_tag = get_kernel_distro_tag(kernel_dir) - if distro_tag is None: - return - - dockerfile = os.path.join(builder_source, 'Dockerfile.{}'.format(distro_tag)) - if os.path.exists(dockerfile): - return dockerfile, distro_tag - - -def get_kernel_gcc_version(kernel_dir): - # Try to find the gcc version used to build this particular kernel - # Check CONFIG_GCC_VERSION=90201 in the kernel config first - # as 5.8.0 seems to have a different format for the LINUX_COMPILER string - try: - logger.debug('checking {} for gcc version'.format(os.path.join(kernel_dir, "include/generated/autoconf.h"))) - with open(os.path.join(kernel_dir, "include/generated/autoconf.h")) as fp: - for line in fp: - m = AUTOCONF_RE.match(line) - if m: - version = [int(m.group(1)), int(m.group(2)), int(m.group(3))] - return '.'.join(str(s) for s in version) - except IOError: - pass - - # then, try the LINUX_COMPILER macro, in two separate files - try: - logger.debug('checking {} for gcc version'.format(os.path.join(kernel_dir, "include/generated/compile.h"))) - with open(os.path.join(kernel_dir, "include/generated/compile.h")) as fp: - for line in fp: - m = LINUX_COMPILER_RE.match(line) - if m: - return m.group(1) - except IOError: - pass - - # RHEL 6 - try: - logger.debug('checking {} for gcc version'.format(os.path.join(kernel_dir, "include/compile.h"))) - with open(os.path.join(kernel_dir, "include/compile.h")) as fp: - for line in fp: - m = LINUX_COMPILER_RE.match(line) - if m: - return m.group(1) - except IOError: - pass - - # ancient Ubuntu gets an ancient compiler - return '4.8.0' - - -def choose_gcc_dockerfile(builder_source, builder_distro, kernel_dir): - kernel_gcc = get_kernel_gcc_version(kernel_dir) - # We don't really care about the compiler patch levels, only the major/minor version - kernel_gcc = Version(kernel_gcc) - - # Choose the right gcc version from the ones we have available (as Docker images) - # - if we have the exact minor version, use it - # - if not, and there's a newer compiler version, use that - # (as close to the requested version as possible) - # - if there are no newer compilers, use the newest one we have - # it will be older than the requested one but hopefully - # not by much - # - # This means we don't have to exactly follow all distro gcc versions - # (indeed, we don't e.g. for AmazonLinux) but only need to add a new - # Dockerfile when the latest kernel fails to build with our newest - # gcc for that distro - - # The dockerfiles in question all look like .../Dockerfile.centos-gcc4.4 - # or similar. We want to pick the one that's closest to `kernel_gcc` - # (exact match, slightly newer, slightly older, in that order of preference). - # To do that, we iterate over the list of all available dockerfiles (i.e. gcc - # versions) for a particular distribution in ascending version order (oldest->newest). - # To get actual sorting by version numbers, we strip the common prefix first - # and add it back after finding the best available version. What we're sorting is: - # 4.4 - # 9.2 - # 10.0 - # and now we properly realize that gcc 10 is newer than 9.2, not older than 4.4 - prefix = 'Dockerfile.{}-gcc'.format(builder_distro) - dockerfile_versions = [Version(f[len(prefix):]) for f in os.listdir(builder_source) if f.startswith(prefix)] - dockerfile_versions.sort() - logger.debug('available dockerfiles: {!r}'.format(dockerfile_versions)) - - chosen = None - for version in dockerfile_versions: - chosen = version - if version >= kernel_gcc: - break - - dockerfile = prefix + str(chosen) - tag = dockerfile.replace('Dockerfile.', '') - return os.path.join(builder_source, dockerfile), tag - - -def choose_dockerfile(builder_source, builder_distro, kernel_dir): - dockerfile_with_tag = choose_distro_dockerfile(builder_source, builder_distro, kernel_dir) - if dockerfile_with_tag is not None: - return dockerfile_with_tag - - return choose_gcc_dockerfile(builder_source, builder_distro, kernel_dir) diff --git a/probe_builder/builder/distro/__init__.py b/probe_builder/builder/distro/__init__.py deleted file mode 100644 index 5d7c3de..0000000 --- a/probe_builder/builder/distro/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -from collections import namedtuple -from .centos import CentosBuilder -from .debian import DebianBuilder -from .flatcar import FlatcarBuilder -from .ubuntu import UbuntuBuilder - - -class Distro(namedtuple('Distro', 'distro builder_distro')): - def builder(self): - try: - return DISTRO_BUILDERS[self.builder_distro]() - except KeyError: - raise ValueError('Unsupported builder distro {}'.format(self.builder_distro)) - - -DISTRO_BUILDERS = { - 'centos': CentosBuilder, - 'debian': DebianBuilder, - 'flatcar': FlatcarBuilder, - 'ubuntu': UbuntuBuilder, - 'oracle': CentosBuilder, -} diff --git a/probe_builder/builder/distro/base_builder.py b/probe_builder/builder/distro/base_builder.py deleted file mode 100644 index c987d47..0000000 --- a/probe_builder/builder/distro/base_builder.py +++ /dev/null @@ -1,123 +0,0 @@ -import errno -import logging -import os -import subprocess - -import click - -from probe_builder import docker -from probe_builder.builder import builder_image, choose_builder -from probe_builder.kernel_crawler import crawl_kernels -from probe_builder.kernel_crawler.download import download_batch -from probe_builder.py23 import make_bytes, make_string - -logger = logging.getLogger(__name__) - - -def to_s(s): - if s is None: - return '' - else: - return str(s) - - -class DistroBuilder(object): - - @staticmethod - def md5sum(path): - from hashlib import md5 - digest = md5() - with open(path) as fp: - digest.update(fp.read().encode('utf-8')) - return digest.hexdigest() - - def unpack_kernels(self, workspace, distro, kernels): - raise NotImplementedError - - def hash_config(self, release, target): - raise NotImplementedError - - def get_kernel_dir(self, workspace, release, target): - raise NotImplementedError - - @classmethod - def build_kernel_impl(cls, config_hash, container_name, image_name, kernel_dir, probe, release, workspace, bpf, - skip_reason): - if bpf: - label = 'eBPF' - args = ['bpf'] - else: - label = 'kmod' - args = [] - - if skip_reason: - logger.info('Skipping build of {} probe {}-{}: {}'.format(label, release, config_hash, skip_reason)) - return - - docker.rm(container_name) - try: - lines = builder_image.run(workspace, probe, kernel_dir, release, config_hash, container_name, image_name, args) - except subprocess.CalledProcessError: - logger.error("Build failed for {} probe {}-{}".format(label, release, config_hash)) - else: - output_dir = workspace.subdir('output') - if builder_image.probe_built(probe, output_dir, release, config_hash, bpf): - logger.info("Build for {} probe {}-{} successful".format(label, release, config_hash)) - else: - logger.warn("Build for {} probe {}-{} failed silently: no output file found".format(label, release, config_hash)) - for line in lines: - logger.warn(make_string(line)) - - def build_kernel(self, workspace, probe, builder_distro, release, target): - config_hash = self.hash_config(release, target) - output_dir = workspace.subdir('output') - - kmod_skip_reason = builder_image.skip_build(probe, output_dir, release, config_hash, False) - ebpf_skip_reason = builder_image.skip_build(probe, output_dir, release, config_hash, True) - if kmod_skip_reason and ebpf_skip_reason: - logger.info('Skipping build of kmod probe {}-{}: {}'.format(release, config_hash, kmod_skip_reason)) - logger.info('Skipping build of eBPF probe {}-{}: {}'.format(release, config_hash, ebpf_skip_reason)) - return - - try: - os.makedirs(output_dir, 0o755) - except OSError as exc: - if exc.errno != errno.EEXIST: - raise - - kernel_dir = self.get_kernel_dir(workspace, release, target) - dockerfile, dockerfile_tag = choose_builder.choose_dockerfile(workspace.builder_source, builder_distro, - kernel_dir) - if not workspace.image_prefix: - builder_image.build(workspace, dockerfile, dockerfile_tag) - - image_name = '{}sysdig-probe-builder:{}'.format(workspace.image_prefix, dockerfile_tag) - container_name = 'sysdig-probe-builder-{}'.format(dockerfile_tag) - - self.build_kernel_impl(config_hash, container_name, image_name, kernel_dir, probe, release, workspace, False, - kmod_skip_reason) - self.build_kernel_impl(config_hash, container_name, image_name, kernel_dir, probe, release, workspace, True, - ebpf_skip_reason) - - def batch_packages(self, kernel_files): - raise NotImplementedError - - def crawl(self, workspace, distro, crawler_distro, download_config=None, filter=''): - kernels = crawl_kernels(crawler_distro, filter) - try: - os.makedirs(workspace.subdir(distro.distro)) - except OSError as exc: - if exc.errno != errno.EEXIST: - raise - # kernels is a dict {'release'=>['urls'...]} - all_urls = [] - kernel_files = {} - for release, urls in kernels.items(): - all_urls.extend(urls) - kernel_files[release] = [workspace.subdir(distro.distro, os.path.basename(url)) for url in urls] - - with click.progressbar(all_urls, label='Downloading kernels', item_show_func=to_s) as all_urls: - download_batch(all_urls, workspace.subdir(distro.distro), download_config) - - # kernel_files is a dict {'release'=>['/local/path/to/files'....]} - return kernel_files diff --git a/probe_builder/builder/distro/centos.py b/probe_builder/builder/distro/centos.py deleted file mode 100644 index 98c94f9..0000000 --- a/probe_builder/builder/distro/centos.py +++ /dev/null @@ -1,49 +0,0 @@ -import logging -import os -import re - -import click - -from probe_builder.builder import toolkit -from .base_builder import DistroBuilder - -logger = logging.getLogger(__name__) - - -class CentosBuilder(DistroBuilder): - RPM_KERNEL_RELEASE_RE = re.compile(r'^kernel-(uek-)?(core-|devel-|modules-)?(?P.*)\.rpm$') - - def unpack_kernels(self, workspace, distro, kernels): - kernel_dirs = list() - - for release, rpms in kernels.items(): - target = workspace.subdir('build', distro, release) - kernel_dirs.append((release, target)) - - for rpm in rpms: - rpm_basename = os.path.basename(rpm) - marker = os.path.join(target, '.' + rpm_basename) - toolkit.unpack_rpm(workspace, rpm, target, marker) - - return kernel_dirs - - def hash_config(self, release, target): - try: - return self.md5sum(os.path.join(target, 'boot/config-{}'.format(release))) - except IOError: - return self.md5sum(os.path.join(target, 'lib/modules/{}/config'.format(release))) - - def get_kernel_dir(self, workspace, release, target): - return workspace.subdir(target, 'usr/src/kernels', release) - - def batch_packages(self, kernel_files): - kernels = dict() - for rpm in kernel_files: - rpm_filename = os.path.basename(rpm) - m = self.RPM_KERNEL_RELEASE_RE.match(rpm_filename) - if not m: - click.echo("Filename {} doesn't look like a kernel package".format(rpm_filename), err=True) - continue - kernels.setdefault(m.group('release'), []).append(rpm) - - return kernels diff --git a/probe_builder/builder/distro/debian.py b/probe_builder/builder/distro/debian.py deleted file mode 100644 index f84c15f..0000000 --- a/probe_builder/builder/distro/debian.py +++ /dev/null @@ -1,165 +0,0 @@ -import logging -import os -import re -import traceback -import pprint - -import click - -from probe_builder.builder import toolkit -from probe_builder.builder.distro.base_builder import DistroBuilder - -logger = logging.getLogger(__name__) -pp = pprint.PrettyPrinter(depth=4) - -class DebianBuilder(DistroBuilder): - KERNEL_VERSION_RE = re.compile(r'-(?P[0-9]\.[0-9]+\.[0-9]+(-[^-]+)?)-(?P[a-z0-9-]+)_') - KBUILD_PACKAGE_RE = re.compile(r'linux-kbuild-(?P[0-9]\.[0-9]+)_') - - - def crawl(self, workspace, distro, crawler_distro, download_config=None, filter=''): - # for debian, we essentially want to discard the classification work performed by the crawler, - # and batch packages together - - # call the parent's method - crawled_dict = super().crawl(workspace=workspace, distro=distro, crawler_distro=crawler_distro, download_config=download_config, filter=filter) - - # flatten that dictionary into a single list, retaining ONLY package urls and discarding the release altogether - flattened_packages = [pkg for pkgs in crawled_dict.values() for pkg in pkgs] - # then we batch that list as if it were a local distro - batched_packages = self.batch_packages(flattened_packages) - - logger.debug("batched_packages=\n{}".format(pp.pformat(batched_packages))) - return batched_packages - - @staticmethod - def _reparent_link(base_path, release, link_name): - build_link_path = os.path.join(base_path, 'lib/modules', release, link_name) - build_link_target = os.readlink(build_link_path) - if build_link_target.startswith('/'): - build_link_target = '../../..' + build_link_target - os.unlink(build_link_path) - os.symlink(build_link_target, build_link_path) - - def unpack_kernels(self, workspace, distro, kernels): - kernel_dirs = list() - - for release, debs in kernels.items(): - # we can no longer use '-' as the separator, since now also have variant - # (e.g. cloud-amd64) - version, vararch = release.rsplit(':', 1) - # restore the original composite e.g. 5.16.0-1-cloud-amd64 - release = release.replace(':', '-') - - target = workspace.subdir('build', distro, version) - - try: - for deb in debs: - deb_basename = os.path.basename(deb) - marker = os.path.join(target, '.' + deb_basename) - toolkit.unpack_deb(workspace, deb, target, marker) - kernel_dirs.append((release, target)) - except: - traceback.print_exc() - - for release, target in kernel_dirs: - kerneldir = self.get_kernel_dir(workspace, release, target) - - base_path = workspace.subdir(target) - self._reparent_link(base_path, release, 'build') - self._reparent_link(base_path, release, 'source') - - makefile = os.path.join(kerneldir, 'Makefile') - makefile_orig = makefile + '.sysdig-orig' - target_in_container = target.replace(workspace.workspace, '/build/probe') - if not os.path.exists(makefile_orig): - with open(makefile) as fp: - orig = fp.read() - with open(makefile_orig, 'w') as fp: - fp.write(orig) - patched = orig.replace('/usr/src', os.path.join(target_in_container, 'usr/src')) - with open(makefile, 'w') as fp: - fp.write(patched) - - return kernel_dirs - - def hash_config(self, release, target): - return self.md5sum(os.path.join(target, 'boot/config-{}'.format(release))) - - def get_kernel_dir(self, workspace, release, target): - return workspace.subdir(target, 'usr/src/linux-headers-{}'.format(release)) - - def batch_packages(self, kernel_files): - kernels = dict() - - # similar to ubuntu, debian has two version numbers per (kernel) package - # e.g. linux-headers-|5.10.0-8|-|amd64 |_5.10.46-5_amd64.deb - # | version| |vararch| - # - # fortunately, we unpack to 5.10.0-8 and look for 5.10.0-8-amd64 inside - # so we can easily find the requested directory name from the release - # also, for every minor kernel version (like 5.10) there's a matching - # kbuild-x.xx package that we need to include in the build directory - - common_packages = {} - arch_packages = {} - kbuild_packages = {} - - - # Step 1: we loop over all files and we arrange them in 3 buckets: - # kbuild_packages = { '5.16': 'file' } - # common_packages = { '5.16.0-1': ['files...'] } - # arch_packages = { '5.16.0-1': { 'rt-amd64': ['files...'] } } - - for deb in kernel_files: - deb_basename = os.path.basename(deb) - - if 'linux-kbuild' in deb: - m = self.KBUILD_PACKAGE_RE.search(deb_basename) - if not m: - click.echo("Filename {} doesn't look like a kbuild package (no version)".format(deb), err=True) - continue - kbuild_packages[m.group('major')] = deb - continue - - m = self.KERNEL_VERSION_RE.search(deb_basename) - if not m: - click.echo("Filename {} doesn't look like a kernel package (no version)".format(deb), err=True) - continue - version = m.group('version') - vararch = m.group('vararch') - - if 'common' in vararch: - # - # linux-headers-5.16.0-1-|common|_5.16.7-2_all.deb - # linux-headers-5.16.0-1-|common-rt|_5.16.7-2_all.deb - # - common_packages.setdefault(version, []).append(deb) - else: - # - # linux-headers-5.16.0-1-|rt-amd64|_5.16.7-2_amd64.deb - # linux-image-5.16.0-1-|amd64|_5.16.7-2_amd64.deb - # linux-image-5.16.0-1-|cloud-amd64|_5.16.7-2_amd64.deb - # linux-image-5.16.0-1-|rt-amd64|_5.16.7-2_amd64.deb - # - arch_packages.setdefault(version, {}).setdefault(vararch, []).append(deb) - - - # Step 2: we compose a dictionary - # { '5.16-0-1:rt-amd64' : [ 'linux-headers-5.16.0-1-|rt-amd64|_5.16.7-2_amd64.deb' (from arch_packages) - # 'linux-headers-5.16.0-1-|common|_5.16.7-2_all.deb' (from common_packages) - # 'linux-headers-5.16.0-1-|common-rt|_5.16.7-2_all.deb' (from common_packages) - # 'linux-kbuild-5.16....' (from kbuild_packages) - # ] - # } - for version, per_vararch in arch_packages.items(): - for vararch, packages in per_vararch.items(): - packages.extend(common_packages.get(version, [])) - major, minor, _ = version.split('.', 2) - major_version = '{}.{}'.format(major, minor) - kbuild_pkg = kbuild_packages.get(major_version) - if kbuild_pkg: - packages.append(kbuild_pkg) - kernels['{}:{}'.format(version, vararch)] = packages - - return kernels diff --git a/probe_builder/builder/distro/flatcar.py b/probe_builder/builder/distro/flatcar.py deleted file mode 100644 index a07f722..0000000 --- a/probe_builder/builder/distro/flatcar.py +++ /dev/null @@ -1,93 +0,0 @@ -import errno -import glob -import logging -import os -import subprocess - -import click - -from .base_builder import DistroBuilder, to_s -from .. import toolkit, builder_image -from ... import crawl_kernels, docker -from ...kernel_crawler.download import download_file - -logger = logging.getLogger(__name__) - - -class FlatcarBuilder(DistroBuilder): - def unpack_kernels(self, workspace, distro, kernels): - kernel_dirs = list() - - for release, dev_containers in kernels.items(): - target = workspace.subdir('build', distro, release) - kernel_dirs.append((release, target)) - - for dev_container in dev_containers: - dev_container_basename = os.path.basename(dev_container) - marker = os.path.join(target, '.' + dev_container_basename) - toolkit.unpack_coreos(workspace, dev_container, target, marker) - - return kernel_dirs - - def hash_config(self, release, target): - return self.md5sum(os.path.join(target, 'config'.format(release))) - - def get_kernel_dir(self, workspace, release, target): - versions = glob.glob(os.path.join(target, 'modules/*/build')) - if len(versions) != 1: - raise RuntimeError('Expected one kernel version in {}, got: {!r}'.format(target, versions)) - return versions[0] - - def batch_packages(self, kernel_files): - releases = {} - for path in kernel_files: - release, orig_filename = os.path.basename(path).split('-', 1) - releases.setdefault(release, []).append(path) - return releases - - @classmethod - def build_kernel_impl(cls, config_hash, container_name, image_name, kernel_dir, probe, release, workspace, bpf, - skip_reason): - if bpf: - label = 'eBPF' - args = ['bpf'] - else: - label = 'kmod' - args = [] - - coreos_kernel_release = os.path.basename(os.path.dirname(kernel_dir)) - - if skip_reason: - logger.info('Skipping build of {} probe {}-{} ({}): {}'.format(label, coreos_kernel_release, config_hash, - release, skip_reason)) - - docker.rm(container_name) - try: - builder_image.run(workspace, probe, kernel_dir, coreos_kernel_release, config_hash, container_name, image_name, args) - except subprocess.CalledProcessError: - logger.error("Build failed for {} probe {}-{} ({})".format(label, coreos_kernel_release, config_hash, release)) - else: - logger.info("Build for {} probe {}-{} ({}) successful".format(label, coreos_kernel_release, config_hash, release)) - - def crawl(self, workspace, distro, crawler_distro, download_config=None): - kernels = crawl_kernels(crawler_distro) - try: - os.makedirs(workspace.subdir(distro.distro)) - except OSError as exc: - if exc.errno != errno.EEXIST: - raise - - all_urls = [] - kernel_files = {} - for release, urls in kernels.items(): - all_urls.extend(urls) - kernel_files[release] = [ - workspace.subdir(distro.distro, '{}-{}'.format(release, os.path.basename(url))) for url in urls] - - with click.progressbar(all_urls, label='Downloading development containers', item_show_func=to_s) as all_urls: - for url in all_urls: - _, release, filename = url.rsplit('/', 2) - output_file = workspace.subdir(distro.distro, '{}-{}'.format(release, filename)) - download_file(url, output_file, download_config) - - return kernel_files diff --git a/probe_builder/builder/distro/ubuntu.py b/probe_builder/builder/distro/ubuntu.py deleted file mode 100644 index fc17ba9..0000000 --- a/probe_builder/builder/distro/ubuntu.py +++ /dev/null @@ -1,168 +0,0 @@ -import logging -import os -import re -import pprint - -import click - -from probe_builder.builder import toolkit -from .base_builder import DistroBuilder - -logger = logging.getLogger(__name__) -pp = pprint.PrettyPrinter(depth=4) - -class UbuntuBuilder(DistroBuilder): - KERNEL_VERSION_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+)\.(?P[0-9][^_]*)') - KERNEL_RELEASE_RE = re.compile(r'(?P[0-9]\.[0-9]+\.[0-9]+-[0-9]+-[a-z0-9-]+)') - - def crawl(self, workspace, distro, crawler_distro, download_config=None, filter=''): - crawled_dict = super().crawl(workspace=workspace, distro=distro, crawler_distro=crawler_distro, download_config=download_config, filter=filter) - kernels = [] - # batch packages according to package version, e.g. '5.15.0-1001/1' as returned by the crawler - # (which is the package version of the main 'linux-headers-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb') - # each of those versions may yield one or more releases e.g. '5.15.0-1001-gke' - for version, flattened_packages in crawled_dict.items(): - # since the returned value is a list of tuple, we just extend them - kernels.extend(self.batch_packages(flattened_packages, version)) - return kernels - - def unpack_kernels(self, workspace, distro, kernels): - kernel_dirs = list() - - # notice how here kernels is a list of tuples - # ( '5.4.0-1063-aws', [".._5.4.0-1063.66_amd64.deb"] ) - for release, debs in kernels: - # we don't have the version handy, so gather it from all the package - # names in the release. these all should match but at this point we can - # only validate that it is so - version = None - - for deb in debs: - deb_basename = os.path.basename(deb) - m = self.KERNEL_VERSION_RE.search(deb_basename) - if not m: - raise ValueError("{} doesn't look like a kernel package".format(deb)) - if version is None: - version = (m.group('version'), m.group('update')) - else: - new_version = (m.group('version'), m.group('update')) - if version[0] != new_version[0] and not new_version[1].startswith(version[1]): - raise ValueError("Unexpected version {}/{} from package {} (expected {}/{})".format( - new_version[0], new_version[1], deb, - version[0], version[1] - )) - # extracted files will end up in a directory derived from the version - # e.g. 5.4.0-1063/66 - target = workspace.subdir('build', distro, version[0], version[1]) - # which we will address by release - # ( '5.4.0-1063-aws', '/path/to/5.4.0-1063/66' ) - kernel_dirs.append((release, target)) - - for deb in debs: - deb_basename = os.path.basename(deb) - marker = os.path.join(target, '.' + deb_basename) - toolkit.unpack_deb(workspace, deb, target, marker) - - return kernel_dirs - - def hash_config(self, release, target): - return self.md5sum(os.path.join(target, 'boot/config-{}'.format(release))) - - def get_kernel_dir(self, workspace, release, target): - return workspace.subdir(target, 'usr/src/linux-headers-{}'.format(release)) - - def batch_packages(self, kernel_files, expected_version=None): - kernels = [] - - # ubuntu kernels have two separate versions - # e.g. the package linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb - # has a "version" (used in the target dir) of 5.4.0-86/97 - # which is effectively the deb package version - # and a "release" (describing the paths inside the archive) of 5.4.0-86-generic - # which is effectively part of the deb package name - # - # sadly, it's not as straightforward as we'd wish. there's also a package - # linux-headers-5.4.0-86_5.4.0-86.97_all.deb which is a dependency (potentially) - # shared between multiple packages. - # - # so we need to unpack the debs into the "version" directory and then can end - # up with multiple kernels in that directory. this means we can't return - # a dict, but a list of tuples - - version_to_releases = dict() - releases = dict() - version_files = dict() - - - # Step 1: allocate all packages between two buckets: - # version_files = {'5.4.0-1063/66': ['...linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb', - # '...linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb', - # '...linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb'], - # releases = - # {('5.4.0-1063-aws', '5.4.0-1063/66'): ['..linux-modules-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb', - # '...linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb'], - # ('5.4.0-1063-azure', '5.4.0-1063/66'): ['...linux-modules-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb', - # '...linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb'], - # ('5.4.0-1063-gke', '5.4.0-1063/66'): ['...linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb', - # '...linux-modules-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb'], - # and also build a map - # version_to_releases = {'5.4.0-1063/66': {'5.4.0-1063-gke', '5.4.0-1063-azure', '5.4.0-1063-aws'}, - # - # this essentially means that for each unique "version" we can find across all .deb packages - - - for deb in kernel_files: - deb_basename = os.path.basename(deb) - - # linux-headers-5.4.0-1063-azure-cvm_|5.4.0-1063.66+cvm3|_amd64.deb - m = self.KERNEL_VERSION_RE.search(deb_basename) - if not m: - click.echo("Filename {} doesn't look like a kernel package (no version)".format(deb), err=True) - continue - version = m.group('version') - update = m.group('update') - version = '{}/{}'.format(version, update) - - if expected_version: - if version.startswith(expected_version): - version = expected_version - else: - raise ValueError("Unexpected version {} from package {} (expected to start with {})".format( - version, deb, expected_version)) - - - # linux-headers-|5.4.0-1063-azure-cvm|_5.4.0-1063.66+cvm3_amd64.deb - m = self.KERNEL_RELEASE_RE.search(deb_basename) - if m: - release = m.group('release') - version_to_releases.setdefault(version, set()).add(release) - logger.debug("release-file: release={}, version={}, deb={}".format(release, version, deb)) - releases.setdefault((release, version), []).append(deb) - else: - logger.debug("non-release-file: version={}, deb={}".format(version, deb)) - version_files.setdefault(version, []).append(deb) - - - logger.debug("version_files=\n{}".format(pp.pformat(version_files))) - logger.debug("releases=\n{}".format(pp.pformat(releases))) - logger.debug("version_to_releases=\n{}".format(pp.pformat(version_to_releases))) - - # Step 2: provide the final list (note: a list, not a dict!) where the first element - # is the 'release' - # [ ('5.4.0-1063-aws', - # ['/workspace/ubuntu/linux-modules-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb', - # '/workspace/ubuntu/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb', - # '/workspace/ubuntu/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb', - # '/workspace/ubuntu/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb', - # '/workspace/ubuntu/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb']), - #] - - for version, release_ids in version_to_releases.items(): - for release_id in release_ids: - release_files = releases[(release_id, version)] - # add all the shared files that end up in the same directory - release_files.extend(version_files.get(version, [])) - kernels.append((release_id, release_files)) - - logger.debug("kernels=\n{}".format(pp.pformat(kernels))) - return kernels diff --git a/probe_builder/builder/toolkit.py b/probe_builder/builder/toolkit.py deleted file mode 100644 index 6a69db8..0000000 --- a/probe_builder/builder/toolkit.py +++ /dev/null @@ -1,115 +0,0 @@ -import errno -import logging - -from .. import docker, spawn -import os - -logger = logging.getLogger(__name__) - - -HAVE_TOOLKIT = False - - -def toolkit_image(image_prefix): - return '{}sysdig-probe-builder:toolkit'.format(image_prefix) - - -def build_toolkit(workspace): - global HAVE_TOOLKIT - if HAVE_TOOLKIT: - return - image = toolkit_image(workspace.image_prefix) - dockerfile = os.path.join(workspace.builder_source, 'Dockerfile.toolkit') - docker.build(image, dockerfile, workspace.builder_source) - HAVE_TOOLKIT = True - - -def unpack_coreos(workspace, coreos_file, target_dir, marker): - if marker is not None and os.path.exists(marker): - logger.info('{} already exists, not unpacking {}'.format(marker, coreos_file)) - return - - coreos_file = os.path.abspath(coreos_file) - target_dir = os.path.abspath(target_dir) - - if not workspace.in_docker() or not workspace.is_privileged: - build_toolkit(workspace) - coreos_file = workspace.host_dir(coreos_file) - target_dir = workspace.host_dir(target_dir) - - volumes = [ - docker.DockerVolume(coreos_file, coreos_file, True), - docker.DockerVolume(target_dir, target_dir, False), - ] - docker.run( - toolkit_image(workspace.image_prefix), volumes, ['coreos', coreos_file, target_dir], [], privileged=True) - else: - try: - os.makedirs(target_dir, 0o755) - except OSError as exc: - if exc.errno != errno.EEXIST: - raise - spawn.pipe(["/builder/toolkit-entrypoint.sh", "coreos", coreos_file, target_dir]) - - if marker is not None: - with open(marker, 'w') as marker_fp: - marker_fp.write('\n') - - -def unpack_rpm(workspace, rpm_file, target_dir, marker): - if marker is not None and os.path.exists(marker): - logger.info('{} already exists, not unpacking {}'.format(marker, rpm_file)) - return - - rpm_file = os.path.abspath(rpm_file) - target_dir = os.path.abspath(target_dir) - - if not workspace.in_docker(): - build_toolkit(workspace) - rpm_file = workspace.host_dir(rpm_file) - target_dir = workspace.host_dir(target_dir) - - volumes = [ - docker.DockerVolume(rpm_file, rpm_file, True), - docker.DockerVolume(target_dir, target_dir, False), - ] - docker.run(toolkit_image(workspace.image_prefix), volumes, ['rpm', rpm_file, target_dir], []) - else: - try: - os.makedirs(target_dir, 0o755) - except OSError as exc: - if exc.errno != errno.EEXIST: - raise - spawn.pipe(["/builder/toolkit-entrypoint.sh", "rpm", rpm_file, target_dir]) - - if marker is not None: - with open(marker, 'w') as marker_fp: - marker_fp.write('\n') - - -def unpack_deb(workspace, deb_file, target_dir, marker): - if marker is not None and os.path.exists(marker): - logger.info('{} already exists, not unpacking {}'.format(marker, deb_file)) - return - - deb_file = os.path.abspath(deb_file) - target_dir = os.path.abspath(target_dir) - - deb_file = workspace.host_dir(deb_file) - target_dir = workspace.host_dir(target_dir) - - if deb_file is None: - raise ValueError('Package {} not within workspace {}'.format(deb_file, workspace.workspace)) - - if target_dir is None: - raise ValueError('Target directory {} not within workspace {}'.format(target_dir, workspace.workspace)) - - volumes = [ - docker.DockerVolume(deb_file, deb_file, True), - docker.DockerVolume(target_dir, target_dir, False), - ] - docker.run('ubuntu:latest', volumes, ['dpkg', '-x', deb_file, target_dir], []) - - if marker is not None: - with open(marker, 'w') as marker_fp: - marker_fp.write('\n') diff --git a/probe_builder/context.py b/probe_builder/context.py deleted file mode 100644 index 6abd2a6..0000000 --- a/probe_builder/context.py +++ /dev/null @@ -1,40 +0,0 @@ -from collections import namedtuple -import os - - -class Context(object): - pass - - -class Workspace( - namedtuple( - 'Workspace', 'is_privileged mount_mapping workspace builder_source image_prefix')): - - def host_dir(self, container_dir): - if self.mount_mapping is None: - return container_dir - for (container_mount, host_mount) in self.mount_mapping: - if container_dir == container_mount: - return host_mount - elif container_dir.startswith(container_mount + '/'): - return container_dir.replace(container_mount, host_mount) - - def in_docker(self): - return self.mount_mapping is not None - - def host_workspace(self): - return self.host_dir(self.workspace) - - def subdir(self, *args): - return os.path.join(self.workspace, *args) - - -class Probe(namedtuple('Probe', 'sysdig_dir probe_name probe_version probe_device_name')): - pass - - -class DownloadConfig(namedtuple('DownloadConfig', 'concurrency timeout retries extra_headers')): - - @staticmethod - def default(): - return DownloadConfig(1, None, 1, None) diff --git a/probe_builder/disable_ipv6.py b/probe_builder/disable_ipv6.py deleted file mode 100644 index 0ef60a0..0000000 --- a/probe_builder/disable_ipv6.py +++ /dev/null @@ -1,11 +0,0 @@ -import socket -import requests.packages.urllib3.util.connection as urllib3_cn - - -def allowed_gai_family(): - return socket.AF_INET - - -urllib3_cn.allowed_gai_family = allowed_gai_family - - diff --git a/probe_builder/docker.py b/probe_builder/docker.py deleted file mode 100644 index 97c1f29..0000000 --- a/probe_builder/docker.py +++ /dev/null @@ -1,97 +0,0 @@ -import json -import os - -from .spawn import pipe, json_pipe - - -class DockerVolume(object): - host_path = None - container_path = None - readonly = True - - def __init__(self, host_path, container_path, readonly=True): - self.host_path = host_path - self.container_path = container_path - self.readonly = readonly - - def __str__(self): - if self.readonly: - return '{}:{}:ro'.format(self.host_path, self.container_path) - else: - return '{}:{}'.format(self.host_path, self.container_path) - - -class EnvVar(object): - name = None - value = None - - def __init__(self, name, value): - self.name = name - self.value = value - - def __str__(self): - return '{}={}'.format(self.name, self.value) - - -def run(image, volumes, command, env, privileged=False, name=None): - cmd = ['docker', 'run', '--rm'] - if privileged: - cmd.append('--privileged') - for volume in volumes: - cmd.append('-v') - cmd.append(str(volume)) - for var in env: - cmd.append('-e') - cmd.append(str(var)) - if name is not None: - cmd.append('--name') - cmd.append(str(name)) - cmd.append(image) - cmd.extend(command) - - # return stdout - return pipe(cmd) - - -def build(image, dockerfile, context_dir): - pipe(['docker', 'build', '-t', str(image), '-f', str(dockerfile), str(context_dir)]) - remove_dangling_images() - - -def rm(container_name): - pipe(['docker', 'rm', container_name], silence_errors=True) - - -def inspect_self(): - try: - hostname = os.uname()[1] - return json_pipe(['docker', 'inspect', hostname], silence_errors=True) - except Exception: - pass - - -def get_mount_mapping(): - inspect = inspect_self() - if inspect is None: - return - mounts = [] - for mount in inspect[0]['Mounts']: - mounts.append((mount['Destination'], mount['Source'])) - return mounts - - -def is_privileged(): - inspect = inspect_self() - if inspect is None: - return True - try: - if inspect[0]['HostConfig']['Privileged'] == 'true': - return True - except: - return False - - -def remove_dangling_images(): - images = pipe(['docker', 'images', '-q', '-f', 'dangling=true']) - if images: - pipe(['docker', 'rmi'] + images, silence_errors=True) diff --git a/probe_builder/git.py b/probe_builder/git.py deleted file mode 100644 index 791615f..0000000 --- a/probe_builder/git.py +++ /dev/null @@ -1,9 +0,0 @@ -import os - -from probe_builder import spawn - - -def clone(repo_url, branch, target_dir): - if not os.path.exists(target_dir): - spawn.pipe(['git', 'clone', repo_url, target_dir]) - spawn.pipe(['git', 'checkout', branch], silence_errors=False, cwd=target_dir) diff --git a/probe_builder/kernel_crawler/download.py b/probe_builder/kernel_crawler/download.py deleted file mode 100644 index 01ef981..0000000 --- a/probe_builder/kernel_crawler/download.py +++ /dev/null @@ -1,126 +0,0 @@ -import bz2 -import zlib -import requests -import traceback -import shutil -from threading import Thread -import os -import logging - -from probe_builder.context import DownloadConfig - -try: - import lzma -except ImportError: - from backports import lzma - -try: - from queue import Queue -except ImportError: - from Queue import Queue - - -logger = logging.getLogger(__name__) - - -def download_file(url, output_file, download_config=None): - def download_temp_file(url, temp_file, download_config): - if download_config is None: - download_config = DownloadConfig.default() - resp = None - for i in range(download_config.retries): - logger.debug('Downloading {} to {}, attempt {} of {}'.format(url, temp_file, i+1, download_config.retries)) - with open(temp_file, 'ab') as fp: - size = fp.tell() - if size > 0: - headers = {'Range': 'bytes={}-'.format(size)} - else: - headers = {} - if download_config.extra_headers is not None: - headers.update(download_config.extra_headers) - resp = requests.get(url, headers=headers, stream=True, timeout=download_config.timeout) - if resp.status_code == 206: - # yay, resuming the download - shutil.copyfileobj(resp.raw, fp) - return - elif resp.status_code == 416: - return # "requested range not satisfiable", we have the whole thing - elif resp.status_code == 200: - fp.truncate(0) # have to start over - shutil.copyfileobj(resp.raw, fp) - return - resp.raise_for_status() - raise requests.HTTPError('Unexpected status code {}'.format(resp.status_code)) - - # if target path already exists, assume it's complete - if os.path.exists(output_file): - logger.debug('Downloading {} to {} not necessary'.format(url, output_file)) - return - # download to .part file - temp_file = output_file + ".part" - download_temp_file(url, temp_file, download_config) - # and then rename it to its final target - shutil.move(temp_file, output_file) - -def download_batch(urls, output_dir, download_config=None): - if download_config is None: - download_config = DownloadConfig.default() - q = Queue(1) - - def dl(): - while True: - url = q.get() - output_file = os.path.join(output_dir, os.path.basename(url)) - try: - download_file(url, output_file, download_config) - except requests.exceptions.RequestException: - traceback.print_exc() - q.task_done() - - for i in range(download_config.concurrency): - t = Thread(target=dl) - t.daemon = True - t.start() - - for batch_url in urls: - q.put(batch_url) - - q.join() - # TODO shouldn't we also wait for all threads to terminate, - # like it's done on the examples of python 3.7 (but NOT on 2.7/3.8/3.9)? - # see https://docs.python.org/3.7/library/queue.html - - -def get_url(url): - resp = requests.get(url) - resp.raise_for_status() - if url.endswith('.gz'): - return zlib.decompress(resp.content, 47) - elif url.endswith('.xz'): - return lzma.decompress(resp.content) - elif url.endswith('.bz2'): - return bz2.decompress(resp.content) - else: - return resp.content - - -def get_first_of(urls): - last_exc = Exception('Empty url list') - for url in urls: - try: - return get_url(url) - except Exception as exc: - last_exc = exc - raise last_exc - - -if __name__ == '__main__': - import sys - - _url = sys.argv[1] - try: - _output_file = sys.argv[2] - except IndexError: - _output_file = os.path.basename(_url) - - download_file(_url, _output_file) diff --git a/probe_builder/spawn.py b/probe_builder/spawn.py deleted file mode 100644 index e04d670..0000000 --- a/probe_builder/spawn.py +++ /dev/null @@ -1,46 +0,0 @@ -import json -import logging -import subprocess - -from probe_builder.py23 import make_bytes, make_string - -logger = logging.getLogger(__name__) - - -def pipe(cmd, silence_errors=False, cwd=None): - cmd = [make_bytes(c) for c in cmd] - cmd_string = make_string(b' '.join(cmd)) - if cwd is not None: - logger.info('Running {} in {}'.format(cmd_string, make_string(cwd))) - else: - logger.info('Running {}'.format(cmd_string)) - child = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - (stdout, _) = child.communicate(None) - if not silence_errors and child.returncode != 0: - logger.warn('{} returned error code {}'.format(cmd_string, child.returncode)) - for line in stdout.splitlines(False): - logger.warn(make_string(line)) - raise subprocess.CalledProcessError(child.returncode, cmd_string) - else: - lines = stdout.splitlines(False) - for line in lines: - logger.debug(make_string(line)) - return lines - - -def json_pipe(cmd, silence_errors=False, cwd=None): - cmd = [make_bytes(c) for c in cmd] - cmd_string = make_string(b' '.join(cmd)) - if cwd is not None: - logger.info('Running {} in {}'.format(cmd_string, make_string(cwd))) - else: - logger.info('Running {}'.format(cmd_string)) - child = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - (stdout, _) = child.communicate(None) - if not silence_errors and child.returncode != 0: - logger.warn('{} returned error code {}'.format(cmd_string, child.returncode)) - for line in stdout.splitlines(False): - logger.warn(line) - raise subprocess.CalledProcessError(child.returncode, cmd_string) - else: - return json.loads(make_string(stdout)) diff --git a/probe_builder/version.py b/probe_builder/version.py deleted file mode 100644 index f814d8d..0000000 --- a/probe_builder/version.py +++ /dev/null @@ -1,27 +0,0 @@ -from functools import total_ordering - - -@total_ordering -class Version(object): - major = None - minor = None - - def __init__(self, version_str): - major, minor = version_str.split('.')[:2] - self.major = int(major) - self.minor = int(minor) - - def __eq__(self, other): - return (self.major, self.minor) == (other.major, other.minor) - - def __lt__(self, other): - return (self.major, self.minor) < (other.major, other.minor) - - def __str__(self): - return '{}.{}'.format(self.major, self.minor) - - def __repr__(self): - return str(self) - - - diff --git a/setup.py b/setup.py index 8ee56ed..19914cb 100644 --- a/setup.py +++ b/setup.py @@ -2,22 +2,16 @@ from distutils.core import setup -setup(name='probe_builder', - version='1.0', - description='Sysdig probe builder', +setup(name='kernel_crawler', + version='1.0.0', + description='Falcosecurity kernel crawler', author='Grzegorz Nosek', author_email='grzegorz.nosek@sysdig.com', - url='https://www.sysdig.com/', - packages=['probe_builder'], + url='https://falco.org/', + packages=['kernel_crawler'], install_requires=[ 'click', 'requests', 'lxml', ], - entry_points={ - 'console_scripts': [ - 'probe_builder = probe_builder:cli', - 'artifactory_download = probe_builder.artifactory_download:cli', - ], - }, - ) +) diff --git a/sysdig-probe-loader b/sysdig-probe-loader deleted file mode 100755 index 134eaa9..0000000 --- a/sysdig-probe-loader +++ /dev/null @@ -1,759 +0,0 @@ -#!/bin/bash -# -# Copyright (C) 2013-2018 Draios Inc dba Sysdig. -# -# This file is part of sysdig . -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# -# Simple script that desperately tries to load sysdig-probe looking -# for it in a bunch of ways. Convenient when running sysdig inside -# a container or in other weird environments. -# -# -# --- WORKFLOW --- -# -# By default, the script uses the following approaches to build or fetch -# or find the sysdig-probe, in the following order: -# 1) In the kernel module case, use modprobe, which looks for the kernel -# module already installed in /lib/modules -# 2) Look for the appropriate sysdig-probe (kernel module or eBPF) for the -# currently running kernel, in the .sysdig directory -# 3) Fetch the appropriate sysdig-probe (kernel module or eBPF) for the -# currently running kernel, from download.sysdig.com -# -# Workflow variations: -# A) If the environment variable SYSDIG_FORCE_DOWNLOAD_PROBE is defined, -# the script ONLY tries to download the appropriate sysdig-probe (kernel module or eBPF). -# The script won't try to build the probe. -# B) If the environment variable SYSDIG_FORCE_BUILD_PROBE is defined, -# the script ONLY tries to build the appropriate sysdig-probe (kernel module or eBPF). -# The script won't try to download the probe. -# -# Note: -# SYSDIG_FORCE_DOWNLOAD_PROBE and SYSDIG_FORCE_BUILD_PROBE cannot be simultaneously defined. If so, the -# probe loader raises an error. -# -# --- ENVIRONMENT VARIABLES --- -# -# By default, the following naming conventions are used. -# A) Probe filename -# kernel module: sysdigcloud-probe----.ko -# eBPF probe: sysdigcloud-probe-bpf----.o -# Where: -# = sysdig release version (e.g. 12.0.3) -# = CPU architecture (e.g. x86_64) -# = uname -r output (e.g. 4.18.0-147.56.1.el8_1.x86_64) -# = result of hash, calculated over kernel config file, 32 hex digits -# So, an example kernel module filename would be -# sysdigcloud-probe-12.0.3-x86_64-4.18.0-147.56.1.el8_1.x86_64-2f4c51e1d6af404393d778653f50135.ko -# -# B) Download URL -# //sysdig-probe-binaries/ -# Where: -# DOWNLOAD_URL_HOST = "download.sysdig.com" by default -# DOWNLOAD_REPOSITORY = "stable" by default -# -# The following environment variables may be used to override defaults for different -# aspects of the object names: -# -# 1) SYSDIG_PROBE_OVERRIDE_FULL_URL -# - Overrides everything -- URL AND Probe filename -# - This is particularly useful when the user needs to download a probe built onsite, -# from a locally-hosted location, and doesn't want to worry about mimicing any -# naming conventions -# - Also particularly useful when the host doesn't have sufficient files (kernel headers, -# kernel config file) available, because it avoids the necessity of finding and -# calculating the checksum of the kernel config file on the local system. -# -# 2) SYSDIG_PROBE_URL -# - Finer-grain override -# - Allows the user to override only the DOWNLOAD_URL_HOST value from item B above, -# to specify a different host + optional port number (e.g. "probe-host.mydomain.com:80" -# vs. the default "download.sysdig.com"), -# - While retaining/mimicing the standard Sysdig directory structure and filename format -# -# 3) SYSDIG_REPOSITORY -# - Finer-grain override -# - Allows the user (or build script) to override only the DOWNLOAD_REPOSITORY value -# from item B above, to specify a top-level directory (e.g. "dev" instead of "stable") -# - While retaining/mimicing the standard Sysdig directory structure and filename format - - -# -# Returns 1 if $cos_ver > $base_ver, 0 otherwise -# -cos_version_greater() -{ - if [[ $cos_ver == $base_ver ]]; then - return 0 - fi - - # - # COS build numbers are in the format x.y.z - # - a=`echo $cos_ver | cut -d. -f1` - b=`echo $cos_ver | cut -d. -f2` - c=`echo $cos_ver | cut -d. -f3` - - d=`echo $base_ver | cut -d. -f1` - e=`echo $base_ver | cut -d. -f2` - f=`echo $base_ver | cut -d. -f3` - - # Test the first component - if [[ $a -gt $d ]]; then - return 1 - elif [[ $d -gt $a ]]; then - return 0 - fi - - # Test the second component - if [[ $b -gt $e ]]; then - return 1 - elif [[ $e -gt $b ]]; then - return 0 - fi - - # Test the third component - if [[ $c -gt $f ]]; then - return 1 - elif [[ $f -gt $c ]]; then - return 0 - fi - - # If we get here, probably malformed version string? - - return 0 -} - - -# -# Looks for the kernel configuration and stores its hash in KERNEL_CONFIG_PATH. -# Returns 0 on success, 1 otherwise (cannot find kernel configuration). -# -get_kernel_config_hash() { - echo "* Looking for kernel configuration" - - if [ -f /proc/config.gz ]; then - echo " Found kernel config at /proc/config.gz" - KERNEL_CONFIG_PATH=/proc/config.gz - elif [ -f "/boot/config-${KERNEL_RELEASE}" ]; then - echo " Found kernel config at /boot/config-${KERNEL_RELEASE}" - KERNEL_CONFIG_PATH=/boot/config-${KERNEL_RELEASE} - elif [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/boot/config-${KERNEL_RELEASE}" ]; then - echo " Found kernel config at ${SYSDIG_HOST_ROOT}/boot/config-${KERNEL_RELEASE}" - KERNEL_CONFIG_PATH="${SYSDIG_HOST_ROOT}/boot/config-${KERNEL_RELEASE}" - elif [ -f "/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" ]; then - echo " Found kernel config at /usr/lib/ostree-boot/config-${KERNEL_RELEASE}" - KERNEL_CONFIG_PATH="/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" - elif [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" ]; then - echo " Found kernel config at ${SYSDIG_HOST_ROOT}/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" - KERNEL_CONFIG_PATH="${SYSDIG_HOST_ROOT}/usr/lib/ostree-boot/config-${KERNEL_RELEASE}" - elif [ -f /lib/modules/${KERNEL_RELEASE}/config ]; then - # this code works both for native host and agent container assuming that - # Dockerfile sets up the desired symlink /lib/modules -> $SYSDIG_HOST_ROOT/lib/modules - echo " Found kernel config at /lib/modules/${KERNEL_RELEASE}/config" - KERNEL_CONFIG_PATH="/lib/modules/${KERNEL_RELEASE}/config" - fi - - if [ -z "${KERNEL_CONFIG_PATH}" ]; then - echo "Cannot find kernel configuration" - return 1 - fi - - if [[ "${KERNEL_CONFIG_PATH}" == *.gz ]]; then - HASH=$(zcat "${KERNEL_CONFIG_PATH}" | md5sum - | cut -d' ' -f1) - else - HASH=$(md5sum "${KERNEL_CONFIG_PATH}" | cut -d' ' -f1) - fi - - return 0 -} - - -# -# Tries to remove the kernel probe. -# Returns 0 on success, 1 otherwise (kernel probe still loaded). -# -remove_kernel_probe() { - echo "* Unloading ${PROBE_NAME}, if present" - - # Tries to remove the module within a predefined time ($MAX_RMMOD_WAIT) - rmmod "${PROBE_NAME}" 2>/dev/null - WAIT_TIME=0 - KMOD_NAME=$(echo "${PROBE_NAME}" | tr "-" "_") - while lsmod | grep "${KMOD_NAME}" > /dev/null 2>&1 && [ $WAIT_TIME -lt $MAX_RMMOD_WAIT ]; do - if rmmod "${PROBE_NAME}" 2>/dev/null; then - echo "* Unloading ${PROBE_NAME} succeeded after ${WAIT_TIME}s" - break - fi - ((++WAIT_TIME)) - if (( $WAIT_TIME % 5 == 0 )); then - echo "* ${PROBE_NAME} still loaded, waited ${WAIT_TIME}s (max wait ${MAX_RMMOD_WAIT}s)" - fi - sleep 1 - done - - # Still loaded - if lsmod | grep "${KMOD_NAME}" > /dev/null 2>&1; then - echo "* ${PROBE_NAME} seems to still be loaded, hoping the best" - return 1 - fi - - return 0 -} - - -# -# Evaluates variables override. -# Returns 1 on success, 0 otherwise. -# -get_variable_override_kernel_probe() { - echo "* Evaluating override of environment variables" - - if [ ! -z ${SYSDIG_PROBE_OVERRIDE_FULL_URL} ]; then - SYSDIG_PROBE_FILENAME=$(basename "${SYSDIG_PROBE_OVERRIDE_FULL_URL}") - URL=$(echo "${SYSDIG_PROBE_OVERRIDE_FULL_URL}" | sed s/+/%2B/g) - else - # Tries to get the hash of the kernel configuration - get_kernel_config_hash - if [ $? -eq 1 ]; then - return 1 - fi - - SYSDIG_PROBE_FILENAME="${PROBE_NAME}-${SYSDIG_VERSION}-${ARCH}-${KERNEL_RELEASE}-${HASH}.ko" - URL=$(echo "${SYSDIG_PROBE_URL}/${SYSDIG_REPOSITORY}/sysdig-probe-binaries/${SYSDIG_PROBE_FILENAME}" | sed s/+/%2B/g) - fi - - return 0 -} - - -# -# Loads a precompiled kernel probe for the current kernel via insmod. -# Returns 0 on success, 1 otherwise. -# -load_precompiled_kernel_probe() { - echo "* Loading module" - insmod_out=$(insmod "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}") - if [ $? -ne 0 ]; then - echo "Cannot insmod, error $insmod_out" - return 1 - fi - return 0 -} - - -# -# Downloads a precompiled kernel probe for the current kernel. -# Returns 0 on success, 1 otherwise (download failed). -# -download_kernel_probe() { - echo "* Trying to download precompiled module from ${URL}" - - curl_out=$(curl --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" -o "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" "${URL}" 2>&1) - if [ "$?" = "0" ]; then - echo " Download succeeded" - return 0 - fi - - echo "Download of ${PROBE_NAME} for version ${SYSDIG_VERSION} failed." - - # "curl: (22) The requested URL returned error: 404 Not Found" - The probe doesn't exist in the repo. - if [[ "$curl_out" =~ "404 Not Found" ]]; then - echo "The probe for this version does not exist in the repo." - # Enriches error message - if [ ! -z "${KERNEL_ERR_MESSAGE}" ]; then - echo "${KERNEL_ERR_MESSAGE}" - else - echo "Consider compiling your own ${PROBE_NAME} and loading it or getting in touch with the Sysdig community." - fi - else - echo "$curl_out" - fi - - return 1 -} - - -# -# Builds and installs the probe kernel module via dkms. -# Returns 0 on success, 1 otherwise. -# -build_kernel_probe() { - echo "* Running dkms install for ${PACKAGE_NAME}" - - if dkms install -m "${PACKAGE_NAME}" -v "${SYSDIG_VERSION}" -k "${KERNEL_RELEASE}"; then - echo " dkms install done" - - echo "* Trying to load the dkms ${PROBE_NAME} via insmod" - if insmod "/var/lib/dkms/${PACKAGE_NAME}/${SYSDIG_VERSION}/${KERNEL_RELEASE}/${ARCH}/module/${PROBE_NAME}.ko" > /dev/null 2>&1; then - echo " ${PROBE_NAME} found and loaded in dkms" - return 0 - elif insmod "/var/lib/dkms/${PACKAGE_NAME}/${SYSDIG_VERSION}/${KERNEL_RELEASE}/${ARCH}/module/${PROBE_NAME}.ko.xz" > /dev/null 2>&1; then - echo " ${PROBE_NAME} found and loaded in dkms (xz)" - return 0 - else - echo " Unable to insmod" - fi - else - DKMS_LOG="/var/lib/dkms/${PACKAGE_NAME}/${SYSDIG_VERSION}/build/make.log" - if [ -f "${DKMS_LOG}" ]; then - echo " Running dkms build failed, dumping ${DKMS_LOG}" - cat "${DKMS_LOG}" - else - echo " Running dkms build failed, couldn't find ${DKMS_LOG}" - fi - fi - - return 1 -} - - -# -# Tries to load the appropriate kernel probe. -# Returns 0 on success, 1 otherwise. -# -load_kernel_probe() { - echo "* Loading kernel probe" - - # Required utils - if ! hash lsmod > /dev/null 2>&1; then - echo "This program requires lsmod" - return 1 - fi - - if ! hash modprobe > /dev/null 2>&1; then - echo "This program requires modprobe" - return 1 - fi - - if ! hash rmmod > /dev/null 2>&1; then - echo "This program requires rmmod" - return 1 - fi - - # Removes leftover kernel probe - remove_kernel_probe - if [ $? -eq 1 ]; then - return 0 - fi - - local SYSDIG_PROBE_FILENAME - local URL - - # Evaluates variables override, returns if cannot (cannot find kernel config) - get_variable_override_kernel_probe - if [ $? -eq 1 ]; then - return 1 - fi - - # Forces probe download, skips build - if [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ]; then - echo "* Skipping build, FORCE_DOWNLOAD_PROBE is enabled" - else - # Builds the probe via dkms; skips UEK hosts, the build will always fail - if [[ $(uname -r) == *uek* ]]; then - echo "* Skipping dkms install for UEK host" - else - build_kernel_probe - if [ $? -eq 0 ]; then - return 0 - fi - fi - - echo "* Trying to load a system ${PROBE_NAME}, if present" - - if modprobe "${PROBE_NAME}" > /dev/null 2>&1; then - echo "${PROBE_NAME} found and loaded with modprobe" - return 0 - fi - - echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" - - # Looks for a precompiled kernel probe locally - echo "* Trying to find precompiled ${PROBE_NAME} for ${KERNEL_RELEASE}" - if [ -f "${HOME}/.sysdig/${SYSDIG_PROBE_FILENAME}" ]; then - echo " Found precompiled module at ~/.sysdig/${SYSDIG_PROBE_FILENAME}" - load_precompiled_kernel_probe - return $? - fi - fi - - # Skip download, the probe build has failed - if [ -v SYSDIG_FORCE_BUILD_PROBE ]; then - echo "* Skipping download, FORCE_BUILD_PROBE is enabled" - return 1; - fi; - - download_kernel_probe - if [ $? -eq 1 ]; then - return 1 - fi - load_precompiled_kernel_probe - return $? -} - - -# -# Makes a symlink to the BPF probe. -# Return 0 on success, 1 otherwise. -# -function make_symlink_bpf_probe() { - echo "* Making symlink to BPF probe" - - if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - echo " BPF probe not found" - return 1 - fi - - if [ ! -f /proc/sys/net/core/bpf_jit_enable ]; then - echo "**********************************************************" - echo "** BPF doesn't have JIT enabled, performance might be **" - echo "** degraded. Please ensure to run on a kernel with **" - echo "** CONFIG_BPF_JIT enabled and/or use --net=host if **" - echo "** running inside a container. **" - echo "**********************************************************" - fi - - echo " BPF probe located, it's now possible to start Sysdig" - - symlink_out=$(ln -sf "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" "${HOME}/.sysdig/${BPF_PROBE_NAME}.o") - if [ $? -ne 0 ]; then - echo " Cannot ln, error $symlink_out" - return 1 - fi - - return 0 -} - - -# -# Downloads the BPF probe. -# Returns 0 on success, 1 otherwise. -# -download_bpf_probe() { - echo "* Trying to download precompiled BPF probe from ${URL}" - - curl --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" -o "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" "${URL}" - - if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - echo " Download failed" - return 1 - fi - - echo " Download succeeded" - return 0 -} - - -# -# Evaluates variables override. -# Returns 1 on success, 0 otherwise. -# -get_variable_override_bpf_probe() { - echo "* Evaluating override of environment variables" - - if [ ! -z ${SYSDIG_PROBE_OVERRIDE_FULL_URL} ]; then - BPF_PROBE_FILENAME=$(basename "${SYSDIG_PROBE_OVERRIDE_FULL_URL}") - URL=$(echo "${SYSDIG_PROBE_OVERRIDE_FULL_URL}" | sed s/+/%2B/g) - else - # Tries to get the hash of the kernel configuration - get_kernel_config_hash - if [ $? -eq 1 ]; then - return 1 - fi - - BPF_PROBE_FILENAME="${BPF_PROBE_NAME}-${SYSDIG_VERSION}-${ARCH}-${KERNEL_RELEASE}-${HASH}.o" - URL=$(echo "${SYSDIG_PROBE_URL}/${SYSDIG_REPOSITORY}/sysdig-probe-binaries/${BPF_PROBE_FILENAME}" | sed s/+/%2B/g) - fi - - return 0 -} - -# -# Builds the BPF probe. -# Returns 0, always. -# -build_bpf_probe() { - local BPF_KERNEL_SOURCES_URL="" - local STRIP_COMPONENTS=1 - - customize_kernel_build() { - if [ -n "${KERNEL_EXTRA_VERSION}" ]; then - sed -i "s/LOCALVERSION=\"\"/LOCALVERSION=\"${KERNEL_EXTRA_VERSION}\"/" .config - fi - make olddefconfig > /dev/null - make modules_prepare > /dev/null - } - - if [ -n "${COS}" ]; then - echo " COS detected (build ${BUILD_ID}), using cos kernel headers..." - - BPF_KERNEL_SOURCES_URL="https://storage.googleapis.com/cos-tools/${BUILD_ID}/kernel-headers.tgz" - KERNEL_EXTRA_VERSION="+" - STRIP_COMPONENTS=0 - - customize_kernel_build() { - pushd usr/src/* > /dev/null - - # Note: this overrides the KERNELDIR set while untarring the tarball - export KERNELDIR=`pwd` - - sed -i '/^#define randomized_struct_fields_start struct {$/d' include/linux/compiler-clang.h - sed -i '/^#define randomized_struct_fields_end };$/d' include/linux/compiler-clang.h - - popd > /dev/null - - # Might need to configure our own sources depending on COS version - cos_ver=${BUILD_ID} - base_ver=11553.0.0 - - cos_version_greater - greater_ret=$? - - if [[ greater_ret -eq 1 ]]; then - export KBUILD_EXTRA_CPPFLAGS=-DCOS_73_WORKAROUND - fi - } - fi - - if [ -n "${MINIKUBE}" ]; then - echo " Minikube detected (${MINIKUBE_VERSION}), using linux kernel sources for minikube kernel" - local kernel_version=$(uname -r) - local -r kernel_version_major=$(echo ${kernel_version} | cut -d. -f1) - local -r kernel_version_minor=$(echo ${kernel_version} | cut -d. -f2) - local -r kernel_version_patch=$(echo ${kernel_version} | cut -d. -f3) - - if [ "${kernel_version_patch}" == "0" ]; then - kernel_version="${kernel_version_major}.${kernel_version_minor}" - fi - - BPF_KERNEL_SOURCES_URL="http://mirrors.edge.kernel.org/pub/linux/kernel/v${kernel_version_major}.x/linux-${kernel_version}.tar.gz" - fi - - if [ -n "${SYSDIG_BPF_USE_LOCAL_KERNEL_SOURCES}" ]; then - local -r kernel_version_major=$(uname -r | cut -d. -f1) - local -r kernel_version=$(uname -r | cut -d- -f1) - KERNEL_EXTRA_VERSION="-$(uname -r | cut -d- -f2)" - - echo " Using downloaded kernel sources for kernel version ${kernel_version}..." - - BPF_KERNEL_SOURCES_URL="http://mirrors.edge.kernel.org/pub/linux/kernel/v${kernel_version_major}.x/linux-${kernel_version}.tar.gz" - fi - - if [ -n "${BPF_KERNEL_SOURCES_URL}" ]; then - echo " Downloading kernel sources from ${BPF_KERNEL_SOURCES_URL}" - - mkdir -p /tmp/kernel - cd /tmp/kernel - cd `mktemp -d -p /tmp/kernel` - if ! curl -o kernel-sources.tgz --create-dirs "${SYSDIG_PROBE_CURL_OPTIONS}" "${BPF_KERNEL_SOURCES_URL}"; then - exit 1; - fi - - echo " Extracting kernel sources" - - mkdir kernel-sources && tar xf kernel-sources.tgz -C kernel-sources --strip-components "${STRIP_COMPONENTS}" - - cd kernel-sources - export KERNELDIR=`pwd` - - if [[ "${KERNEL_CONFIG_PATH}" == *.gz ]]; then - zcat "${KERNEL_CONFIG_PATH}" > .config - else - cat "${KERNEL_CONFIG_PATH}" > .config - fi - - echo " Configuring kernel" - customize_kernel_build - fi - - echo " Trying to compile BPF probe ${BPF_PROBE_NAME} (${BPF_PROBE_FILENAME})" - - make -C "/usr/src/${PACKAGE_NAME}-${SYSDIG_VERSION}/bpf" > /dev/null - - mkdir -p ~/.sysdig - mv "/usr/src/${PACKAGE_NAME}-${SYSDIG_VERSION}/bpf/probe.o" "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" - - if [ -n "${BPF_KERNEL_SOURCES_URL}" ]; then - rm -r /tmp/kernel - fi - - return 0 -} - - -# -# Tries to load the appropriate BPF probe. -# Returns 0 on success, a non zero value otherwise. -# -load_bpf_probe() { - echo "* Loading BPF probe" - - # Makes checks and set variables - if [ ! -d /sys/kernel/debug/tracing ]; then - echo "* Mounting debugfs" - mount -t debugfs nodev /sys/kernel/debug - fi - - if [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/etc/os-release" ]; then - . "${SYSDIG_HOST_ROOT}/etc/os-release" - - if [ "${ID}" == "cos" ]; then - COS=1 - fi - fi - - if [ ! -z "${SYSDIG_HOST_ROOT}" ] && [ -f "${SYSDIG_HOST_ROOT}/etc/VERSION" ]; then - MINIKUBE=1 - MINIKUBE_VERSION="$(cat ${SYSDIG_HOST_ROOT}/etc/VERSION)" - fi - - local BPF_PROBE_FILENAME - local URL - - # Evaluates variables override, returns if cannot (cannot find kernel config) - get_variable_override_bpf_probe - if [ $? -eq 1 ]; then - return 1 - fi - - # Forces probe download, skips build - if [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ]; then - echo "* Skipping build, FORCE_DOWNLOAD_PROBE is enabled" - else - # Builds the bpf probe - echo "* Building BPF probe" - if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - build_bpf_probe - else - echo " Will not build, the BPF probe ${BPF_PROBE_FILENAME} already exists at ${HOME}/.sysdig/" - fi - fi - - # Skip download - if [ -v SYSDIG_FORCE_BUILD_PROBE ]; then - echo "* Skipping download, FORCE_BUILD_PROBE is enabled" - make_symlink_bpf_probe - return $?; - fi; - - # Prevents installing a leftover probe - if [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ] && [ -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - rm ${HOME}/.sysdig/${BPF_PROBE_FILENAME} - if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - echo "* Removed existing bpf probe ${HOME}/.sysdig/${BPF_PROBE_FILENAME}" - else - echo "* Cannot remove existing bpf probe ${HOME}/.sysdig/${BPF_PROBE_FILENAME}" - fi - fi - - # Downloads the bpf probe - if [ ! -f "${HOME}/.sysdig/${BPF_PROBE_FILENAME}" ]; then - download_bpf_probe - if [ $? -eq 1 ]; then - return 1; - fi - else - echo " Will not download, the BPF probe ${BPF_PROBE_FILENAME} already exists at ${HOME}/.sysdig/" - fi - - make_symlink_bpf_probe - return $? -} - - -################### -### Entry point ### -################### - -# Inits variables and makes required checks -ARCH=$(uname -m) -KERNEL_RELEASE=$(uname -r) -SCRIPT_NAME=$(basename "${0}") -SYSDIG_PROBE_URL=${SYSDIG_PROBE_URL:-https://download.sysdig.com} - -if [ -n "$SYSDIG_PROBE_INSECURE_DOWNLOAD" ] -then - SYSDIG_PROBE_CURL_OPTIONS=-fsSk -else - SYSDIG_PROBE_CURL_OPTIONS=-fsS -fi - -if [ -n "$SYSDIG_PROBE_BASIC_AUTH" ] -then - SYSDIG_PROBE_CURL_OPTIONS="-u ${SYSDIG_PROBE_BASIC_AUTH_USER} ${SYSDIG_PROBE_CURL_OPTIONS}" -fi - -MAX_RMMOD_WAIT=60 -KERNEL_ERR_MESSAGE="" -if [[ $# -ge 1 ]]; then - KERNEL_ERR_MESSAGE="$1" -fi - -if [ -z "${SYSDIG_REPOSITORY}" ]; then - SYSDIG_REPOSITORY="stable" -fi - -if [ "${SCRIPT_NAME}" = "sysdig-probe-loader" ]; then - if [ -z "$SYSDIG_VERSION" ]; then - SYSDIG_VERSION=$(sysdig --version | cut -d' ' -f3) - fi - PROBE_NAME="sysdig-probe" - BPF_PROBE_NAME="sysdig-probe-bpf" - PACKAGE_NAME="sysdig" -elif [ "${SCRIPT_NAME}" = "sysdigcloud-probe-loader" ]; then - EXEPATH=$(dirname "$(readlink -f "${0}")") - if [ -z "$SYSDIG_VERSION" ]; then - SYSDIG_VERSION=$("${EXEPATH}"/dragent --version) - fi - PROBE_NAME="sysdigcloud-probe" - BPF_PROBE_NAME="sysdigcloud-probe-bpf" - PACKAGE_NAME="draios-agent" -else - echo "This script must be called as sysdig-probe-loader or sysdigcloud-probe-loader" - exit 1 -fi - -if [ "$(id -u)" != 0 ]; then - echo "Installer must be run as root (or with sudo)." - exit 1 -fi - -if ! hash curl > /dev/null 2>&1; then - echo "This program requires curl" - exit 1 -fi - -if [ -v SYSDIG_FORCE_BUILD_PROBE ] && [ -v SYSDIG_FORCE_DOWNLOAD_PROBE ] ; then - echo "Cannot define SYSDIG_FORCE_BUILD_PROBE and SYSDIG_FORCE_DOWNLOAD_PROBE simultaneously." - echo "Cannot load the probe" - exit 1 -fi - -# Loads the probe -if [ -v SYSDIG_BPF_PROBE ] || [ "${1}" = "bpf" ]; then - load_bpf_probe -else - load_kernel_probe -fi - -# Echoes the result -if [ $? -eq 1 ]; then - echo "Cannot load the probe" - exit 1 -fi -echo "Probe loaded" -exit 0 \ No newline at end of file diff --git a/toolkit-entrypoint.sh b/toolkit-entrypoint.sh deleted file mode 100755 index 4d9a532..0000000 --- a/toolkit-entrypoint.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh - -set -euo pipefail - -usage() { - cat >&2 < /tmp/container.img - - # mount developer container is a very stateful part of this script - # the section between mount/unmounting should be kept very small - # otherwise if something fails there are many inconsistencies that can happen - OFFSET=$(sfdisk -J /tmp/container.img | jq '.partitiontable.sectorsize * .partitiontable.partitions[0].start') - mount -o ro,loop,offset="$OFFSET" /tmp/container.img /mnt - - # Copy kernel headers - cp -r /mnt/lib/modules "$OUTPUT_DIR" - - # Copy kernel config - rm -f $OUTPUT_DIR/config* - cp /mnt/usr/boot/config* $OUTPUT_DIR/ - - # umount the developer container - umount /mnt -} - -unpack_rpm() -{ - KERNEL_PACKAGE="$1" - OUTPUT_DIR="$2" - - rpm2cpio "$KERNEL_PACKAGE" | (cd "$OUTPUT_DIR" && cpio -idm) -} - -case "$1" in - coreos) - unpack_coreos_kernel "$2" "$3" - ;; - rpm) - unpack_rpm "$2" "$3" - ;; - *) - echo "Unsupported distribution $1" - exit 1 - ;; -esac From dc767b11468cda434666468ff364d8d2affc99cb Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 5 Apr 2022 14:34:07 +0200 Subject: [PATCH 085/259] docs(README): updated readme with gh action badge. Signed-off-by: Federico Di Pierro --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b089b52..c4bd879 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Falcosecurity kernel-crawler +[![Update list of kernels weekly](https://github.com/FedeDP/probe-builder/actions/workflows/update_kernels.yaml/badge.svg)](https://github.com/FedeDP/probe-builder/actions/workflows/update_kernels.yaml) + Distributions supported: - AmazonLinux - AmazonLinux2 @@ -15,4 +17,4 @@ Distributions supported: Architectures supported: - x86_64 -- aarch64 \ No newline at end of file +- aarch64 From 137d4607fb5e3eb4274aa2675d3bb695f69215fd Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 10 Apr 2022 01:21:51 +0000 Subject: [PATCH 086/259] [CI] updated kernel json lists. --- kernels/aarch64/list.json | 7941 ++++++++++ kernels/x86_64/list.json | 30469 ++++++++++++++++++++++++++++++++++++ 2 files changed, 38410 insertions(+) create mode 100644 kernels/aarch64/list.json create mode 100644 kernels/x86_64/list.json diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json new file mode 100644 index 0000000..51ddcc0 --- /dev/null +++ b/kernels/aarch64/list.json @@ -0,0 +1,7941 @@ +{ + "AmazonLinux": {}, + "AmazonLinux2": { + "4.14.152-127.182.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/3ff58e60282902afcb02f1f2d4261190781629b807dc6bba5ad72a85cba392b9/kernel-4.14.152-127.182.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" + ], + "4.14.181-142.260.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/085be1f91563524edb6f3193ff6c472e1d755eb57206b1eef017445120bdef22/kernel-4.14.181-142.260.amzn2.aarch64.rpm" + ], + "4.14.121-109.96.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/be7e277ee1de11f7b66d0854085593673c58ea7d4e10bfbb2e22cf3861e48bf8/kernel-4.14.121-109.96.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" + ], + "4.14.101-91.76.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/88d9539119db87902970e50748d3e6424d48e46afe3881fca3feeb2e33a6dde3/kernel-4.14.101-91.76.amzn2.aarch64.rpm" + ], + "4.14.165-133.209.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/22bc6eb5b155a7b0a21f739a7e5713fa1beab4f78107a6532a4fdea33204830e/kernel-4.14.165-133.209.amzn2.aarch64.rpm" + ], + "4.14.177-139.253.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d07f55b5a8555ffdb5b520bbea8359e7e5667b68a9b55ad0073c365f48be6548/kernel-4.14.177-139.253.amzn2.aarch64.rpm" + ], + "4.14.231-173.361.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1fc003dfef271ceb0a3c8ab0151f5e6d3b2baca30c1994bb1c7426a21779f5ad/kernel-4.14.231-173.361.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" + ], + "4.14.154-128.181.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/09e2fadd8c9a3f7b00135f8c9e105bdfbe354cbd73857d816e1467dcbc10f43e/kernel-4.14.154-128.181.amzn2.aarch64.rpm" + ], + "4.14.241-184.433.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4f5ce44b2c027fc5f3f53434d6eadc4bb3c37e2dc3e93f7d24c96914131cbeff/kernel-4.14.241-184.433.amzn2.aarch64.rpm" + ], + "4.14.209-160.339.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5f4a8c593cb185b1d03f7a42cfb4bb44eef350cfcb2d7f78e4ef57fc963214f8/kernel-4.14.209-160.339.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" + ], + "4.14.219-164.354.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/95cc215dcd067f28023eb29ec2b536cb26b3a9cdcdfef6a163d023837fca2cd7/kernel-4.14.219-164.354.amzn2.aarch64.rpm" + ], + "4.14.203-156.332.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/45657494a7c1c632bbdf5b13d99f4f87c08c12935ee6b05fad5224276152c5ff/kernel-4.14.203-156.332.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" + ], + "4.14.225-169.362.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9a0e9a24776228633d7a534179217ed9161d1ee3ac0c70b875fb2df659d100f7/kernel-4.14.225-169.362.amzn2.aarch64.rpm" + ], + "4.14.97-90.72.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2a95d844378e0ffb1a071348862ee0423faedeabf1559d9632bcaa7d39579535/kernel-4.14.97-90.72.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" + ], + "4.14.273-207.502.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/99a534a83aa0576d45625d9a579fb00ae914cca43aea4666a297a497f4fb7808/kernel-4.14.273-207.502.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" + ], + "4.14.232-176.381.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/710f09347b372154aa822600774700ce8ba8c517d634fdb1e3a3e2f26abba77f/kernel-4.14.232-176.381.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" + ], + "4.14.200-155.322.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b9799ea4f98550dbcf0f4d4b2f43efae9f9e2e99b1577ae8c37b38793310a6df/kernel-4.14.200-155.322.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" + ], + "4.14.232-177.418.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8ddbfb322250e1b781f2189d1d729d4bb390c98c4b18f8c99cd6a9b3aa81b808/kernel-4.14.232-177.418.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" + ], + "4.14.128-112.105.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bd4dff89bd177c77c34f48d571c8f34901e13f4a5c83ab82994da6ad4e3be33e/kernel-4.14.128-112.105.amzn2.aarch64.rpm" + ], + "4.14.158-129.185.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c111d0224dd743ad343f26465d93a5a817818d7d88521d8c05d539615dabe0ff/kernel-4.14.158-129.185.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" + ], + "4.14.219-161.340.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cb6178888004881d1be9213b7462b675457535489bbd1c84af25f4f529cec533/kernel-4.14.219-161.340.amzn2.aarch64.rpm" + ], + "4.14.243-185.433.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a432c87c0c9acb5ae542cc247f39343555213fa25f917572c9135b1ecd5e7a96/kernel-4.14.243-185.433.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" + ], + "4.14.146-120.181.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8a23697b93589f90844fd5c5d96e2ca6cdba4cffcf36ae73f42806f786776331/kernel-4.14.146-120.181.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" + ], + "4.14.106-97.85.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/269a16058b3044a3104aac95959635b80129adce6f5a41eb6c9272e72b8c730e/kernel-4.14.106-97.85.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" + ], + "4.14.77-80.57.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/af2865d851beebdd2a7178a249b5aef5bf83328b59b4145d288bd132d9d91f67/kernel-4.14.77-80.57.amzn2.aarch64.rpm" + ], + "4.14.88-88.73.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/15d0a42f7aead56a288b5e488bc9e33f4ffc37a1c69d347376b0499725745253/kernel-4.14.88-88.73.amzn2.aarch64.rpm" + ], + "4.14.248-189.473.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/34512ab2fd7ff3051af5cd5516a5a28d704dad28fad312f8ca36d3f48b5e9bbe/kernel-4.14.248-189.473.amzn2.aarch64.rpm" + ], + "4.14.114-103.97.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fe57f7a44fac0c706527f43c3f368ad6625456ea18ce958d2747116035239091/kernel-4.14.114-103.97.amzn2.aarch64.rpm" + ], + "4.14.171-136.231.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a27af0f944a3f18eb0ac0d4ed8b78dc3d69d9b407c9ddcf44265a5a54ffb52b2/kernel-4.14.171-136.231.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" + ], + "4.14.123-111.109.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2f444c5296812fbae92ec6a6fe147a23f9a661f3de8f4628d81c53558805d7bf/kernel-4.14.123-111.109.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" + ], + "4.14.173-137.229.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a2ae3e462602eedbec2ed3d7bb144793eaa582f3966dc993e429bc265fe26d6a/kernel-4.14.173-137.229.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" + ], + "4.14.94-89.73.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cd1eb09ac77738dbd6963c0909070cad9887912b41cf872e8d501c7d0dfffb56/kernel-4.14.94-89.73.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" + ], + "4.14.193-149.317.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/96dbd7583e9a14196525ad3627afa81c703f04fcff41f6c8e4ad542b48133202/kernel-4.14.193-149.317.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" + ], + "4.14.256-197.484.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1ceb131f91c2c9cb59cbfc56a53f468c88a34266b4fc1fbc52f58e6aa7a5f802/kernel-4.14.256-197.484.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" + ], + "4.14.114-105.126.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/154d6d67e57a60fdae389871931259ae0138596cc9dda145186e9d95682476d7/kernel-4.14.114-105.126.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" + ], + "4.14.262-200.489.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1d5e9081d75b8cf4246dded8ba67621fe6c41f87ca5d63243c82467d6dac27e1/kernel-4.14.262-200.489.amzn2.aarch64.rpm" + ], + "4.14.246-187.474.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/617e217e6f904e5853c3357151304b3c1cd25e105d0adee3e683916aedee17bf/kernel-4.14.246-187.474.amzn2.aarch64.rpm" + ], + "4.14.165-131.185.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a53547dde3884ac57819a36acfae0aabf6eefb1531b3dcfba36aeb2bfedd37df/kernel-4.14.165-131.185.amzn2.aarch64.rpm" + ], + "4.14.252-195.483.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b4a805f248eb5605b2c3cdf7bde8398c9b1efe5794a90fef5c0835c44e6cc6f3/kernel-4.14.252-195.483.amzn2.aarch64.rpm" + ], + "4.14.198-152.320.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9ac6a81718ae2acd09165e3e152bcd4858161f7972a86b66e6f87ea9e7e74005/kernel-4.14.198-152.320.amzn2.aarch64.rpm" + ], + "4.14.173-137.228.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/24056f30573ab2edfa17c7fcb59312b2c41a33839c0aa01ba11e8cb0e525d958/kernel-4.14.173-137.228.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" + ], + "4.14.138-114.102.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4c4c2e20a85ecab710e3a9c64b470891547bbe2da1899b3f2dac7360608a639f/kernel-4.14.138-114.102.amzn2.aarch64.rpm" + ], + "4.14.181-140.257.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/56569a5c3733a613254a1ae8ecdbd75012976309cc9f5ebf625fad5c90525cc0/kernel-4.14.181-140.257.amzn2.aarch64.rpm" + ], + "4.14.252-195.481.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2499209c64edc66df4b76dfe8e72c0d4814e6edc1809ff34d29a53f489cf1834/kernel-4.14.252-195.481.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" + ], + "4.14.152-124.171.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1d4638611126d484bb9b921282f393c045b345a60e02162406b535ea5b0fe34d/kernel-4.14.152-124.171.amzn2.aarch64.rpm" + ], + "4.14.143-118.123.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/483c5a72e1444cd76f27aeb620c862452031302346a2f44546f31d29cf11aca0/kernel-4.14.143-118.123.amzn2.aarch64.rpm" + ], + "4.14.268-205.500.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7c09f053939c226a83a9e70ebbc69c424ff66210d6bffa062466f245ce3c3f82/kernel-4.14.268-205.500.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" + ], + "4.14.104-95.84.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/014ce4c0e16c56b62a4e14467a62ee3ce71cd6dc61f8b02e912ea0434e7f3f05/kernel-4.14.104-95.84.amzn2.aarch64.rpm" + ], + "4.14.133-113.112.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c07a542a57c72cd69babb26b281b9a00751f2fbbd56389acd14cc2274bdfe42c/kernel-4.14.133-113.112.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" + ], + "4.14.109-99.92.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fcebb45ec19f3d47e7aac64826f9c90ec3dfa1adbcad8386af4487e1a7bc9bf1/kernel-4.14.109-99.92.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" + ], + "4.14.177-139.254.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a38d3b188dfa230a95cb6227a8d27202748f4f43d2420bc58609c6b01b8eec52/kernel-4.14.177-139.254.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" + ], + "4.14.146-119.123.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/344b5cb3f2621317c56ad7ba1d681f844aaf9d056448439d0d0e345df149bf7f/kernel-4.14.146-119.123.amzn2.aarch64.rpm" + ], + "4.14.192-147.314.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c4257953aa1b0af00bb9cd310be11dbe271f20ae77e439d0f4792a638164cc78/kernel-4.14.192-147.314.amzn2.aarch64.rpm" + ], + "4.14.238-182.422.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/12cb0374008eaae8e3b61e975cba69e225729fc1020a439003a00339032aacf0/kernel-4.14.238-182.422.amzn2.aarch64.rpm" + ], + "4.14.209-160.335.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f310ec2822e76d622c35ef178ebbc4d0b8395b92d5470903d1c3dd2d0de17cd2/kernel-4.14.209-160.335.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" + ], + "4.14.133-113.105.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f504fa38deaf4f4892bae5bd56138391876e9232c05b780e11ae88a494178f2d/kernel-4.14.133-113.105.amzn2.aarch64.rpm" + ], + "4.14.77-86.82.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/eb0abdb57be9ab5517a859955f15c091093f4a133bbe4111213b99537cbb7f37/kernel-4.14.77-86.82.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" + ], + "4.14.238-182.421.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cde07e727752b280a3223d4ca654867cf9c91dfc5c934bf6f47fc4e8d135d883/kernel-4.14.238-182.421.amzn2.aarch64.rpm" + ], + "4.14.88-88.76.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a586e43134054829329dd3e7ec2184c8e29f54521756fc9ce06264dee04591ff/kernel-4.14.88-88.76.amzn2.aarch64.rpm" + ], + "4.14.186-146.268.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7c101ca6bb562e5d5e3d4f0b471a83afe4f45b4b8437c9df59d98f9379e35fcf/kernel-4.14.186-146.268.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" + ], + "4.14.77-81.59.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/3fd8a523808359312cada0170b715a0eeb1437403e388e2c3449fba96d0d6130/kernel-4.14.77-81.59.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" + ], + "4.14.231-173.360.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ba68f466a24ccae2a30cfd6d1841d765e26bb4c8a56c59ad687d1a02915e2ec6/kernel-4.14.231-173.360.amzn2.aarch64.rpm" + ], + "4.14.214-160.339.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/283b26a21e092b5d781901fb34864ed83e4f9764ffe41fd9de3a3f9890c155c0/kernel-4.14.214-160.339.amzn2.aarch64.rpm" + ], + "4.14.225-168.357.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/59a01c40852e49796566e6b9ac28c430680e2f7e9f25b7b23d35cae6be9bc10b/kernel-4.14.225-168.357.amzn2.aarch64.rpm" + ], + "5.10.50-44.131.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/9b69ce102d67c87b15621cbcbb7d1a048f49f391ae6c5eda3b99cbb4d922bc91/kernel-5.10.50-44.131.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" + ], + "5.10.50-44.132.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/53a1e1236e6cee9715fe13847d8d183ae0a3223404bb45ae9af36d45be96a858/kernel-5.10.50-44.132.amzn2.aarch64.rpm" + ], + "5.10.59-52.142.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/13b5d9207f0dd8b7bf37dc54ee139635b6b2131164e45ca885dd12c0c5eb8d46/kernel-5.10.59-52.142.amzn2.aarch64.rpm" + ], + "5.10.75-79.358.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/3e2b78ea1c53268a52cd0c940e8ac2b1240e7131832bce8cb6e1de4491e55bf6/kernel-5.10.75-79.358.amzn2.aarch64.rpm" + ], + "5.10.93-87.444.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/aebb2d4a995d1f6e4807ab63e9646bea86c94d1c60ab3e9f39e8010a6e42a3bc/kernel-5.10.93-87.444.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" + ], + "5.10.35-31.135.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/bea125eae2832e4507cb2af64821f933bbdb95b17a6b69f7ea6ba27ba01ddb8f/kernel-5.10.35-31.135.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" + ], + "5.10.106-102.504.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/c82c315fefc54dbe231c6f0b0daa39f479c591f805e698b2dcaeb73714052dbd/kernel-5.10.106-102.504.amzn2.aarch64.rpm" + ], + "5.10.102-99.473.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/e8e37c290b0b022018cde2a9ee36560a2be06a83877ecd655a3b3aee9045b3f3/kernel-5.10.102-99.473.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" + ], + "5.10.62-55.141.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/7482bd0ebc2da61a418989eff361730659b6fc8c5cf2986e347b43b33d39fac2/kernel-5.10.62-55.141.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" + ], + "5.10.82-83.359.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/cd2bc861ff3a945e1ae653d64309bce25c059f32f67c27fc4b60397845fbac01/kernel-5.10.82-83.359.amzn2.aarch64.rpm" + ], + "5.10.68-62.173.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/00c714339ecb98914efc4816c925c8749b07a3551ceb159bda12b15883c8e84a/kernel-5.10.68-62.173.amzn2.aarch64.rpm" + ], + "5.10.47-39.130.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/0ca9fd45666253f06b7716faf073fb293f523cbd5c0ccdd7370bdcd43295410c/kernel-5.10.47-39.130.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" + ], + "5.10.29-27.128.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/f1d598ff87d955715cab341147e6ed86632d41e380e597928be38f2ed168f167/kernel-5.10.29-27.128.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" + ], + "5.10.96-90.460.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/52921aac35a345d28379fadf0de08f5d3255b5b6a2736e25db5acddd65e9f8a0/kernel-5.10.96-90.460.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" + ], + "5.10.29-27.126.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/40b6f9f771984b87143293982f0f737d3a1ee99d3f671d3dac1ce2cadbe9a3b3/kernel-5.10.29-27.126.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" + ], + "5.4.58-32.125.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/f86f7a86a429e62850162483bfdfe62a80c3c725fb70d6a806c3419ecd07a8f8/kernel-5.4.58-32.125.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" + ], + "5.4.110-54.189.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/822316d3e272622f3ce1c502698e243b5337788d6f628a5b2ffda1f1f41ab870/kernel-5.4.110-54.189.amzn2.aarch64.rpm" + ], + "5.4.129-63.229.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/cba73c39a767f83e952042a2c1f6ed4caaed755ff40c47361f865a0484417cf9/kernel-5.4.129-63.229.amzn2.aarch64.rpm" + ], + "5.4.129-62.227.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/526cf686fd79159f315755dfb836a7b97ef9060fd7c286f5779a52cb8d3ed542/kernel-5.4.129-62.227.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" + ], + "5.4.144-69.257.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/1864310eed0d8a0904bda90ccad74f2fcf5b98e738b635a5a62227e90314b942/kernel-5.4.144-69.257.amzn2.aarch64.rpm" + ], + "5.4.46-23.77.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/7c77a16ecd0f6d9daefa3364b5ecd6747e9f33a7b8dbcca1510f2df5baaf2fef/kernel-5.4.46-23.77.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" + ], + "5.4.46-19.75.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/86eed216a644973f24a0717ca1207922f4128597bb4c1afa2a7cb08d999f0e75/kernel-5.4.46-19.75.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" + ], + "5.4.91-41.139.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/a1b0062105a948adc30d3a55418b0cd49a206fde59a2c4f2e6e2b979b5bc64c8/kernel-5.4.91-41.139.amzn2.aarch64.rpm" + ], + "5.4.117-58.216.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c2dc7308d9dd95e4ae858272a5d26ca5fc513d9c3d183d5f42adcdbb1ba793b9/kernel-5.4.117-58.216.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" + ], + "5.4.172-90.336.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/cf4c6010974cc5fa0979aa58d2b1e5685417ae3a3eef8bdfcb579f4ac6460949/kernel-5.4.172-90.336.amzn2.aarch64.rpm" + ], + "5.4.156-83.273.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/a4ae6db38eebc08016cafbf466fa14c3ecbe9f93d38a17c15a7b136afc81a07a/kernel-5.4.156-83.273.amzn2.aarch64.rpm" + ], + "5.4.110-54.182.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c44b8c9eae9a9b03eefab7176acb96b9c52a631ee188599563d54bb93bbe8f36/kernel-5.4.110-54.182.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" + ], + "5.4.186-102.354.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/9a6da1f77626946b623d06b98bf5f62889ea7284bf788f90d6af2cffa4175368/kernel-5.4.186-102.354.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" + ], + "5.4.50-25.83.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/e25bb679d01dd70d0a1ed7442b005d7b1b9a5b9810db3d83ad128c5ed2ef7b2e/kernel-5.4.50-25.83.amzn2.aarch64.rpm" + ], + "5.4.80-40.140.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/e4cfce14821fa2939c13732426c8fc30276b379662b953a9c485fe9106455584/kernel-5.4.80-40.140.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" + ], + "5.4.38-17.76.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/cd086421a891f11659a7a24bf999fdc3c9a5ccc4483f3efcbf968c8eaaba712b/kernel-5.4.38-17.76.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" + ], + "5.4.105-48.177.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d62d9b6be6e8567e98b69b3c2fbdef2f787a15013620a81492b87906834c19aa/kernel-5.4.105-48.177.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" + ], + "5.4.20-12.75.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/53261ab083b5305bb0f4ffbfb838e479dd2c5d5d862fda7a05747b93041f278b/kernel-5.4.20-12.75.amzn2.aarch64.rpm" + ], + "5.4.149-73.259.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/224dfe2c036bb3ce653c355d56a906405c53596992ee6d031e96a6ee26c43e0e/kernel-5.4.149-73.259.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" + ], + "5.4.176-91.338.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/9b2ac1eaadfb9b8ec028098504589c5a570b9b425cfdeb66e211cff80d3a4a27/kernel-5.4.176-91.338.amzn2.aarch64.rpm" + ], + "5.4.181-99.354.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/173b7cca93bdb115f8fc11e7fd0e67e87044d31cc45d64a329f0f3510654b580/kernel-5.4.181-99.354.amzn2.aarch64.rpm" + ], + "5.4.74-36.135.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/a6b6b08a87351bfd2cc510916dd919afe518f8f7c1d651bc57d7d71bc3e7f229/kernel-5.4.74-36.135.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" + ], + "5.4.68-34.125.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/853af3c2cd14c5e8ba4c22bda96431b1a31864a542d189523176b121fdce2bbb/kernel-5.4.68-34.125.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" + ], + "5.4.95-42.163.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/282637e0fe096952528ebbacf9eec438434a1c39dc1f2cb60e2c9f0866191d56/kernel-5.4.95-42.163.amzn2.aarch64.rpm" + ], + "5.4.141-67.229.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8f350cc7fadb25ad4ccde13a431329f2f864d9e421449fb232d01f09cfd1ab2a/kernel-5.4.141-67.229.amzn2.aarch64.rpm" + ], + "5.4.162-86.275.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8a16cf6650664a44c6af2658619b58d30ce8145ba49f3bad4f157361bddebd3e/kernel-5.4.162-86.275.amzn2.aarch64.rpm" + ], + "5.4.58-27.104.amzn2.aarch64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/25e337ee790a8ae9afd4f961d5b83660b47bf88fa7142a060af1b0a5ddfd4719/kernel-5.4.58-27.104.amzn2.aarch64.rpm" + ] + }, + "CentOS": { + "4.18.0-80.1.2.el8_0.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.1.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.1.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.1.2.el8_0.aarch64.rpm" + ], + "4.18.0-80.11.1.el8_0.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.11.1.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.11.1.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.11.1.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.aarch64.rpm" + ], + "4.18.0-80.11.2.el8_0.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.11.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.11.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.11.2.el8_0.aarch64.rpm" + ], + "4.18.0-80.4.2.el8_0.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.4.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.4.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.4.2.el8_0.aarch64.rpm" + ], + "4.18.0-80.7.1.el8_0.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.7.1.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.7.1.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.7.1.el8_0.aarch64.rpm" + ], + "4.18.0-80.7.2.el8_0.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.7.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.7.2.el8_0.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.7.2.el8_0.aarch64.rpm" + ], + "4.18.0-80.el8.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.el8.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.el8.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.el8.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.el8.aarch64.rpm" + ], + "4.18.0-147.8.1.el8_1.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-4.18.0-147.8.1.el8_1.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-147.8.1.el8_1.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-147.8.1.el8_1.aarch64.rpm" + ], + "4.18.0-193.28.1.el8_2.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-193.28.1.el8_2.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-193.28.1.el8_2.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-4.18.0-193.28.1.el8_2.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.aarch64.rpm" + ], + "4.18.0-240.22.1.el8_3.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-240.22.1.el8_3.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-240.22.1.el8_3.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-4.18.0-240.22.1.el8_3.aarch64.rpm" + ], + "4.18.0-305.10.2.el8_4.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.10.2.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.10.2.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.10.2.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.aarch64.rpm" + ], + "4.18.0-305.12.1.el8_4.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.12.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.12.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.12.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.aarch64.rpm" + ], + "4.18.0-305.17.1.el8_4.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.17.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.17.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.17.1.el8_4.aarch64.rpm" + ], + "4.18.0-305.19.1.el8_4.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.19.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.19.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.19.1.el8_4.aarch64.rpm" + ], + "4.18.0-305.25.1.el8_4.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.25.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.25.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.25.1.el8_4.aarch64.rpm" + ], + "4.18.0-305.3.1.el8.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.3.1.el8.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.3.1.el8.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.3.1.el8.aarch64.rpm" + ], + "4.18.0-305.7.1.el8_4.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.7.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.7.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.7.1.el8_4.aarch64.rpm" + ], + "4.18.0-348.2.1.el8_5.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-348.2.1.el8_5.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-4.18.0-348.2.1.el8_5.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-348.2.1.el8_5.aarch64.rpm" + ], + "4.18.0-348.7.1.el8_5.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-348.7.1.el8_5.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-348.7.1.el8_5.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-4.18.0-348.7.1.el8_5.aarch64.rpm" + ], + "4.18.0-348.el8.aarch64": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-348.el8.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-348.el8.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-4.18.0-348.el8.aarch64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.el8.aarch64.rpm" + ] + }, + "Fedora": { + "5.6.6-300.fc32.aarch64": [ + "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-modules-5.6.6-300.fc32.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-devel-5.6.6-300.fc32.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-5.6.6-300.fc32.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-core-5.6.6-300.fc32.aarch64.rpm" + ], + "5.8.15-301.fc33.aarch64": [ + "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-core-5.8.15-301.fc33.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-modules-5.8.15-301.fc33.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-devel-5.8.15-301.fc33.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-5.8.15-301.fc33.aarch64.rpm" + ], + "5.11.12-300.fc34.aarch64": [ + "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-devel-5.11.12-300.fc34.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-5.11.12-300.fc34.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-core-5.11.12-300.fc34.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-modules-5.11.12-300.fc34.aarch64.rpm" + ], + "5.14.10-300.fc35.aarch64": [ + "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-modules-5.14.10-300.fc35.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-5.14.10-300.fc35.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-devel-5.14.10-300.fc35.aarch64.rpm", + "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-core-5.14.10-300.fc35.aarch64.rpm" + ], + "5.11.22-100.fc32.aarch64": [ + "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-modules-5.11.22-100.fc32.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-core-5.11.22-100.fc32.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-devel-5.11.22-100.fc32.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-5.11.22-100.fc32.aarch64.rpm" + ], + "5.14.18-100.fc33.aarch64": [ + "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-core-5.14.18-100.fc33.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-5.14.18-100.fc33.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-devel-5.14.18-100.fc33.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-modules-5.14.18-100.fc33.aarch64.rpm" + ], + "5.16.18-100.fc34.aarch64": [ + "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-modules-5.16.18-100.fc34.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.16.18-100.fc34.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-core-5.16.18-100.fc34.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-5.16.18-100.fc34.aarch64.rpm" + ], + "5.16.18-200.fc35.aarch64": [ + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-modules-5.16.18-200.fc35.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.16.18-200.fc35.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-5.16.18-200.fc35.aarch64.rpm", + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-core-5.16.18-200.fc35.aarch64.rpm" + ] + }, + "Oracle6": {}, + "Oracle7": {}, + "Oracle8": {}, + "PhotonOS": { + "1.3.0-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/Linux-PAM-1.3.0-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/Linux-PAM-devel-1.3.0-1.ph3.aarch64.rpm" + ], + "4.19.15-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/linux-4.19.15-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/linux-devel-4.19.15-2.ph3.aarch64.rpm" + ], + "4.19.104-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.104-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.104-1.ph3.aarch64.rpm" + ], + "4.19.104-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.104-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.104-3.ph3.aarch64.rpm" + ], + "4.19.112-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.112-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.112-1.ph3.aarch64.rpm" + ], + "4.19.115-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-1.ph3.aarch64.rpm" + ], + "4.19.115-10.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-10.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-10.ph3.aarch64.rpm" + ], + "4.19.115-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-2.ph3.aarch64.rpm" + ], + "4.19.115-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-3.ph3.aarch64.rpm" + ], + "4.19.115-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-5.ph3.aarch64.rpm" + ], + "4.19.115-6.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-6.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-6.ph3.aarch64.rpm" + ], + "4.19.115-7.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-7.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-7.ph3.aarch64.rpm" + ], + "4.19.115-9.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-9.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-9.ph3.aarch64.rpm" + ], + "4.19.124-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.124-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.124-1.ph3.aarch64.rpm" + ], + "4.19.124-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.124-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.124-2.ph3.aarch64.rpm" + ], + "4.19.126-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.126-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.126-1.ph3.aarch64.rpm" + ], + "4.19.126-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.126-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.126-2.ph3.aarch64.rpm" + ], + "4.19.129-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.129-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-1.ph3.aarch64.rpm" + ], + "4.19.129-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.129-2.ph3.aarch64.rpm" + ], + "4.19.129-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.129-3.ph3.aarch64.rpm" + ], + "4.19.132-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-1.ph3.aarch64.rpm" + ], + "4.19.132-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-2.ph3.aarch64.rpm" + ], + "4.19.132-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-3.ph3.aarch64.rpm" + ], + "4.19.132-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-5.ph3.aarch64.rpm" + ], + "4.19.132-6.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-6.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-6.ph3.aarch64.rpm" + ], + "4.19.138-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.138-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-1.ph3.aarch64.rpm" + ], + "4.19.138-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.138-2.ph3.aarch64.rpm" + ], + "4.19.138-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.138-4.ph3.aarch64.rpm" + ], + "4.19.145-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.145-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-1.ph3.aarch64.rpm" + ], + "4.19.145-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.145-2.ph3.aarch64.rpm" + ], + "4.19.145-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.145-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-4.ph3.aarch64.rpm" + ], + "4.19.148-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-1.ph3.aarch64.rpm" + ], + "4.19.148-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-2.ph3.aarch64.rpm" + ], + "4.19.148-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-3.ph3.aarch64.rpm" + ], + "4.19.148-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-4.ph3.aarch64.rpm" + ], + "4.19.148-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-5.ph3.aarch64.rpm" + ], + "4.19.15-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.15-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.15-3.ph3.aarch64.rpm" + ], + "4.19.150-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.150-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.150-1.ph3.aarch64.rpm" + ], + "4.19.154-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-1.ph3.aarch64.rpm" + ], + "4.19.154-10.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-10.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-10.ph3.aarch64.rpm" + ], + "4.19.154-11.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-11.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-11.ph3.aarch64.rpm" + ], + "4.19.154-8.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-8.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-8.ph3.aarch64.rpm" + ], + "4.19.154-9.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-9.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-9.ph3.aarch64.rpm" + ], + "4.19.160-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.160-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-3.ph3.aarch64.rpm" + ], + "4.19.160-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.160-4.ph3.aarch64.rpm" + ], + "4.19.160-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.160-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-5.ph3.aarch64.rpm" + ], + "4.19.160-6.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-6.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.160-6.ph3.aarch64.rpm" + ], + "4.19.164-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.164-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.164-1.ph3.aarch64.rpm" + ], + "4.19.164-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.164-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.164-2.ph3.aarch64.rpm" + ], + "4.19.174-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.174-2.ph3.aarch64.rpm" + ], + "4.19.174-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.174-4.ph3.aarch64.rpm" + ], + "4.19.174-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.174-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-5.ph3.aarch64.rpm" + ], + "4.19.177-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.177-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.177-1.ph3.aarch64.rpm" + ], + "4.19.177-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.177-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.177-2.ph3.aarch64.rpm" + ], + "4.19.182-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.182-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.182-1.ph3.aarch64.rpm" + ], + "4.19.182-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.182-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.182-2.ph3.aarch64.rpm" + ], + "4.19.186-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.186-1.ph3.aarch64.rpm" + ], + "4.19.186-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.186-2.ph3.aarch64.rpm" + ], + "4.19.186-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.186-3.ph3.aarch64.rpm" + ], + "4.19.186-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.186-4.ph3.aarch64.rpm" + ], + "4.19.189-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.189-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-2.ph3.aarch64.rpm" + ], + "4.19.189-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.189-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-3.ph3.aarch64.rpm" + ], + "4.19.189-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.189-4.ph3.aarch64.rpm" + ], + "4.19.189-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.189-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-5.ph3.aarch64.rpm" + ], + "4.19.190-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.190-1.ph3.aarch64.rpm" + ], + "4.19.190-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.190-2.ph3.aarch64.rpm" + ], + "4.19.190-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.190-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-3.ph3.aarch64.rpm" + ], + "4.19.191-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.191-1.ph3.aarch64.rpm" + ], + "4.19.191-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.191-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-2.ph3.aarch64.rpm" + ], + "4.19.191-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.191-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-3.ph3.aarch64.rpm" + ], + "4.19.198-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.198-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-1.ph3.aarch64.rpm" + ], + "4.19.198-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.198-2.ph3.aarch64.rpm" + ], + "4.19.198-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.198-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-3.ph3.aarch64.rpm" + ], + "4.19.198-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.198-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-4.ph3.aarch64.rpm" + ], + "4.19.205-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.205-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.205-1.ph3.aarch64.rpm" + ], + "4.19.208-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.208-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.208-1.ph3.aarch64.rpm" + ], + "4.19.214-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.214-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.214-3.ph3.aarch64.rpm" + ], + "4.19.214-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.214-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.214-4.ph3.aarch64.rpm" + ], + "4.19.217-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.217-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.217-1.ph3.aarch64.rpm" + ], + "4.19.219-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.219-1.ph3.aarch64.rpm" + ], + "4.19.219-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.219-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-3.ph3.aarch64.rpm" + ], + "4.19.219-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.219-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-4.ph3.aarch64.rpm" + ], + "4.19.219-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.219-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-5.ph3.aarch64.rpm" + ], + "4.19.224-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.224-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.224-1.ph3.aarch64.rpm" + ], + "4.19.224-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.224-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.224-2.ph3.aarch64.rpm" + ], + "4.19.225-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.225-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.225-3.ph3.aarch64.rpm" + ], + "4.19.229-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.229-1.ph3.aarch64.rpm" + ], + "4.19.229-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.229-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-2.ph3.aarch64.rpm" + ], + "4.19.229-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.229-3.ph3.aarch64.rpm" + ], + "4.19.232-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.232-1.ph3.aarch64.rpm" + ], + "4.19.232-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.232-2.ph3.aarch64.rpm" + ], + "4.19.232-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.232-3.ph3.aarch64.rpm" + ], + "4.19.232-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.232-4.ph3.aarch64.rpm" + ], + "4.19.29-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.29-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.29-1.ph3.aarch64.rpm" + ], + "4.19.32-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.32-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.32-3.ph3.aarch64.rpm" + ], + "4.19.40-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.40-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.40-2.ph3.aarch64.rpm" + ], + "4.19.40-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.40-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.40-3.ph3.aarch64.rpm" + ], + "4.19.52-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.52-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.52-1.ph3.aarch64.rpm" + ], + "4.19.52-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.52-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.52-2.ph3.aarch64.rpm" + ], + "4.19.65-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.65-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.65-2.ph3.aarch64.rpm" + ], + "4.19.65-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.65-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.65-3.ph3.aarch64.rpm" + ], + "4.19.69-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.69-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.69-1.ph3.aarch64.rpm" + ], + "4.19.72-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.72-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.72-1.ph3.aarch64.rpm" + ], + "4.19.72-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.72-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.72-2.ph3.aarch64.rpm" + ], + "4.19.76-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.76-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.76-1.ph3.aarch64.rpm" + ], + "4.19.76-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.76-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.76-5.ph3.aarch64.rpm" + ], + "4.19.79-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.79-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.79-1.ph3.aarch64.rpm" + ], + "4.19.79-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.79-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.79-2.ph3.aarch64.rpm" + ], + "4.19.82-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.82-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.82-1.ph3.aarch64.rpm" + ], + "4.19.84-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.84-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.84-1.ph3.aarch64.rpm" + ], + "4.19.84-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.84-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.84-2.ph3.aarch64.rpm" + ], + "4.19.87-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.87-1.ph3.aarch64.rpm" + ], + "4.19.87-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.87-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-4.ph3.aarch64.rpm" + ], + "4.19.87-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.87-5.ph3.aarch64.rpm" + ], + "4.19.97-1.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-1.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-1.ph3.aarch64.rpm" + ], + "4.19.97-2.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-2.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-2.ph3.aarch64.rpm" + ], + "4.19.97-3.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-3.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-3.ph3.aarch64.rpm" + ], + "4.19.97-4.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-4.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-4.ph3.aarch64.rpm" + ], + "4.19.97-5.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-5.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-5.ph3.aarch64.rpm" + ], + "4.19.97-6.ph3.aarch64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-6.ph3.aarch64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-6.ph3.aarch64.rpm" + ], + "1.4.0-3.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-3.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-1.4.0-3.ph4.aarch64.rpm" + ], + "1.4.0-4.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-1.4.0-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/Linux-PAM-1.4.0-4.ph4.aarch64.rpm" + ], + "5.10.103-1.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-1.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.103-1.ph4.aarch64.rpm" + ], + "5.10.103-2.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.103-2.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-2.ph4.aarch64.rpm" + ], + "5.10.103-3.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-3.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.103-3.ph4.aarch64.rpm" + ], + "5.10.103-4.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-5.10.103-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.103-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.103-4.ph4.aarch64.rpm" + ], + "5.10.25-1.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-1.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-1.ph4.aarch64.rpm" + ], + "5.10.25-10.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-10.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-10.ph4.aarch64.rpm" + ], + "5.10.25-2.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-2.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-2.ph4.aarch64.rpm" + ], + "5.10.25-3.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-3.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-3.ph4.aarch64.rpm" + ], + "5.10.25-5.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-5.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-5.ph4.aarch64.rpm" + ], + "5.10.25-6.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-6.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-6.ph4.aarch64.rpm" + ], + "5.10.25-7.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-7.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-7.ph4.aarch64.rpm" + ], + "5.10.25-9.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-9.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-9.ph4.aarch64.rpm" + ], + "5.10.35-1.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-1.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.35-1.ph4.aarch64.rpm" + ], + "5.10.35-2.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-2.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.35-2.ph4.aarch64.rpm" + ], + "5.10.35-3.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.35-3.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-3.ph4.aarch64.rpm" + ], + "5.10.35-4.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.35-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-4.ph4.aarch64.rpm" + ], + "5.10.4-17.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.4-17.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.4-17.ph4.aarch64.rpm" + ], + "5.10.42-1.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.42-1.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-1.ph4.aarch64.rpm" + ], + "5.10.42-2.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-2.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.42-2.ph4.aarch64.rpm" + ], + "5.10.42-3.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.42-3.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-3.ph4.aarch64.rpm" + ], + "5.10.46-2.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.46-2.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.46-2.ph4.aarch64.rpm" + ], + "5.10.52-1.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.52-1.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.52-1.ph4.aarch64.rpm" + ], + "5.10.52-2.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.52-2.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.52-2.ph4.aarch64.rpm" + ], + "5.10.61-1.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.61-1.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.61-1.ph4.aarch64.rpm" + ], + "5.10.61-2.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.61-2.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.61-2.ph4.aarch64.rpm" + ], + "5.10.75-1.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.75-1.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.75-1.ph4.aarch64.rpm" + ], + "5.10.78-1.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-1.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.78-1.ph4.aarch64.rpm" + ], + "5.10.78-4.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.78-4.ph4.aarch64.rpm" + ], + "5.10.78-5.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.78-5.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-5.ph4.aarch64.rpm" + ], + "5.10.83-2.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-2.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-2.ph4.aarch64.rpm" + ], + "5.10.83-3.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-3.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-3.ph4.aarch64.rpm" + ], + "5.10.83-4.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-4.ph4.aarch64.rpm" + ], + "5.10.83-5.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-5.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-5.ph4.aarch64.rpm" + ], + "5.10.83-6.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-6.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-6.ph4.aarch64.rpm" + ], + "5.10.83-7.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-7.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-7.ph4.aarch64.rpm" + ], + "5.10.93-1.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-1.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.93-1.ph4.aarch64.rpm" + ], + "5.10.93-3.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.93-3.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-3.ph4.aarch64.rpm" + ], + "5.10.93-4.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.93-4.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-4.ph4.aarch64.rpm" + ], + "5.10.93-5.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.93-5.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-5.ph4.aarch64.rpm" + ], + "1.4.0-2.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/Linux-PAM-1.4.0-2.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-2.ph4.aarch64.rpm" + ], + "5.10.4-16.ph4.aarch64": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/linux-5.10.4-16.ph4.aarch64.rpm", + "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/linux-devel-5.10.4-16.ph4.aarch64.rpm" + ] + }, + "Debian": {}, + "Ubuntu": { + "4.15.0-1113/120": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + ], + "4.15.0-1116/123": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb" + ], + "4.15.0-1117/124": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb" + ], + "4.15.0-1119/128": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb" + ], + "4.15.0-1120/128": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb" + ], + "4.15.0-1120/129": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" + ], + "4.15.0-1121/129": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" + ], + "4.15.0-1121/130": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb" + ], + "4.15.0-1123/132": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" + ], + "4.15.0-1124/133": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" + ], + "4.15.0-1125/134": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" + ], + "4.15.0-1126/135": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" + ], + "4.15.0-1127/136": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" + ], + "4.15.0-167/175": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-167-generic_4.15.0-167.175_arm64.deb" + ], + "4.15.0-168/176": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-168-generic_4.15.0-168.176_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_arm64.deb" + ], + "4.15.0-169/177": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-169-generic_4.15.0-169.177_arm64.deb" + ], + "4.15.0-170/178": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-170-generic_4.15.0-170.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_arm64.deb" + ], + "4.15.0-172/181": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-172-generic_4.15.0-172.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb" + ], + "4.15.0-173/182": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-173-generic_4.15.0-173.182_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" + ], + "4.15.0-174/183": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-174-generic_4.15.0-174.183_arm64.deb" + ], + "4.15.0-176/185": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-176-generic_4.15.0-176.185_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" + ], + "5.0.0-1028/31": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb" + ], + "5.4.0-100/113~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" + ], + "5.4.0-105/119~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb" + ], + "5.4.0-1058/62~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + ], + "5.4.0-106/120~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb" + ], + "5.4.0-1062/66~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" + ], + "5.4.0-1064/67~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" + ], + "5.4.0-1064/68~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" + ], + "5.4.0-1066/69~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb" + ], + "5.4.0-1067/72~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" + ], + "5.4.0-1068/73~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb" + ], + "5.4.0-1069/73~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" + ], + "5.4.0-1070/74~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb" + ], + "5.4.0-1070/76~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb" + ], + "5.4.0-1072/77~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" + ], + "5.4.0-108/122~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb" + ], + "5.4.0-91/102~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb" + ], + "5.4.0-97/110~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb" + ], + "5.4.0-99/112~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" + ], + "4.15.0-101/102": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-101-generic_4.15.0-101.102_arm64.deb" + ], + "4.15.0-1029/30": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb" + ], + "4.15.0-1030/32": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-modules-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb" + ], + "4.15.0-1031/33": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-modules-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + ], + "4.15.0-1032/34": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb" + ], + "4.15.0-1033/35": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + ], + "4.15.0-1034/36": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb" + ], + "4.15.0-1035/37": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" + ], + "4.15.0-1039/41": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb" + ], + "4.15.0-1040/42": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb" + ], + "4.15.0-1041/43": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb" + ], + "4.15.0-1043/45": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" + ], + "4.15.0-1044/46": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + ], + "4.15.0-1045/47": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb" + ], + "4.15.0-1047/49": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb" + ], + "4.15.0-1048/50": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb" + ], + "4.15.0-1050/52": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" + ], + "4.15.0-1051/53": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" + ], + "4.15.0-1052/54": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb" + ], + "4.15.0-1053/57": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb" + ], + "4.15.0-1054/56": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb" + ], + "4.15.0-1054/58": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb" + ], + "4.15.0-1055/59": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb" + ], + "4.15.0-1056/58": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" + ], + "4.15.0-1057/59": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb" + ], + "4.15.0-1057/62": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" + ], + "4.15.0-1058/60": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" + ], + "4.15.0-1058/64": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb" + ], + "4.15.0-106/107": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-106-generic_4.15.0-106.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb" + ], + "4.15.0-1060/62": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb" + ], + "4.15.0-1060/66": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb" + ], + "4.15.0-1062/69": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb" + ], + "4.15.0-1063/67": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + ], + "4.15.0-1064/71": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" + ], + "4.15.0-1065/69": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" + ], + "4.15.0-1065/72": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb" + ], + "4.15.0-1066/70": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" + ], + "4.15.0-1066/73": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb" + ], + "4.15.0-1067/71": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb" + ], + "4.15.0-1067/74": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb" + ], + "4.15.0-1069/76": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" + ], + "4.15.0-1070/77": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb" + ], + "4.15.0-1071/78": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb" + ], + "4.15.0-1072/79": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb" + ], + "4.15.0-1073/77": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" + ], + "4.15.0-1074/81": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb" + ], + "4.15.0-1076/80": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb" + ], + "4.15.0-1076/83": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" + ], + "4.15.0-1077/81": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb" + ], + "4.15.0-1077/84": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" + ], + "4.15.0-1079/83": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" + ], + "4.15.0-1079/86": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb" + ], + "4.15.0-108/109": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-108-generic_4.15.0-108.109_arm64.deb" + ], + "4.15.0-1080/84": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb" + ], + "4.15.0-1080/87": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb" + ], + "4.15.0-1081/88": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb" + ], + "4.15.0-1082/86": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + ], + "4.15.0-1083/87": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb" + ], + "4.15.0-1083/91": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb" + ], + "4.15.0-1084/92": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb" + ], + "4.15.0-1086/91": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb" + ], + "4.15.0-1086/94": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb" + ], + "4.15.0-1087/92": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb" + ], + "4.15.0-1087/95": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" + ], + "4.15.0-1089/98": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb" + ], + "4.15.0-109/110": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-109-generic_4.15.0-109.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" + ], + "4.15.0-1090/95": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb" + ], + "4.15.0-1090/99": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb" + ], + "4.15.0-1091/96": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb" + ], + "4.15.0-1092/98": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb" + ], + "4.15.0-1093/99": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb" + ], + "4.15.0-1093/102": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb" + ], + "4.15.0-1094/101": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" + ], + "4.15.0-1094/103": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb" + ], + "4.15.0-1095/102": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb" + ], + "4.15.0-1095/104": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" + ], + "4.15.0-1096/103": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb" + ], + "4.15.0-1096/105": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb" + ], + "4.15.0-1097/104": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" + ], + "4.15.0-1097/106": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb" + ], + "4.15.0-1098/105": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" + ], + "4.15.0-1098/107": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb" + ], + "4.15.0-1099/106": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb" + ], + "4.15.0-1099/108": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb" + ], + "4.15.0-1100/109": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb" + ], + "4.15.0-1101/108": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb" + ], + "4.15.0-1101/110": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb" + ], + "4.15.0-1102/109": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb" + ], + "4.15.0-1102/111": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb" + ], + "4.15.0-1103/110": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb" + ], + "4.15.0-1103/112": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb" + ], + "4.15.0-1106/113": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" + ], + "4.15.0-1106/115": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" + ], + "4.15.0-1109/116": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" + ], + "4.15.0-1109/118": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb" + ], + "4.15.0-111/112": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-111-generic_4.15.0-111.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" + ], + "4.15.0-1110/117": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb" + ], + "4.15.0-1110/119": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" + ], + "4.15.0-1111/118": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" + ], + "4.15.0-1111/120": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb" + ], + "4.15.0-1112/119": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" + ], + "4.15.0-1112/121": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb" + ], + "4.15.0-1113/122": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb" + ], + "4.15.0-1114/121": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" + ], + "4.15.0-1114/123": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb" + ], + "4.15.0-1115/122": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb" + ], + "4.15.0-1115/124": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb" + ], + "4.15.0-1116/125": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb" + ], + "4.15.0-1118/125": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" + ], + "4.15.0-1118/127": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb" + ], + "4.15.0-1119/127": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb" + ], + "4.15.0-112/113": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-112-generic_4.15.0-112.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" + ], + "4.15.0-1122/131": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb" + ], + "4.15.0-115/116": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-115-generic_4.15.0-115.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb" + ], + "4.15.0-117/118": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-117-generic_4.15.0-117.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb" + ], + "4.15.0-118/119": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-118-generic_4.15.0-118.119_arm64.deb" + ], + "4.15.0-121/123": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-121-generic_4.15.0-121.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb" + ], + "4.15.0-122/124": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-122-generic_4.15.0-122.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" + ], + "4.15.0-123/126": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-123-generic_4.15.0-123.126_arm64.deb" + ], + "4.15.0-128/131": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-128-generic_4.15.0-128.131_arm64.deb" + ], + "4.15.0-129/132": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-129-generic_4.15.0-129.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" + ], + "4.15.0-130/134": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-130-generic_4.15.0-130.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" + ], + "4.15.0-132/136": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-132-generic_4.15.0-132.136_arm64.deb" + ], + "4.15.0-135/139": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-135-generic_4.15.0-135.139_arm64.deb" + ], + "4.15.0-136/140": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-136-generic_4.15.0-136.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb" + ], + "4.15.0-137/141": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-137-generic_4.15.0-137.141_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" + ], + "4.15.0-139/143": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-139-generic_4.15.0-139.143_arm64.deb" + ], + "4.15.0-140/144": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-140-generic_4.15.0-140.144_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb" + ], + "4.15.0-141/145": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-141-generic_4.15.0-141.145_arm64.deb" + ], + "4.15.0-142/146": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-142-generic_4.15.0-142.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" + ], + "4.15.0-143/147": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-143-generic_4.15.0-143.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" + ], + "4.15.0-144/148": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-144-generic_4.15.0-144.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" + ], + "4.15.0-147/151": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-147-generic_4.15.0-147.151_arm64.deb" + ], + "4.15.0-151/157": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-151-generic_4.15.0-151.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" + ], + "4.15.0-153/160": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-153-generic_4.15.0-153.160_arm64.deb" + ], + "4.15.0-154/161": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-154-generic_4.15.0-154.161_arm64.deb" + ], + "4.15.0-156/163": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-156-generic_4.15.0-156.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" + ], + "4.15.0-158/166": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-158-generic_4.15.0-158.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" + ], + "4.15.0-159/167": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-159-generic_4.15.0-159.167_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb" + ], + "4.15.0-161/169": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-161-generic_4.15.0-161.169_arm64.deb" + ], + "4.15.0-162/170": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-162-generic_4.15.0-162.170_arm64.deb" + ], + "4.15.0-163/171": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-163-generic_4.15.0-163.171_arm64.deb" + ], + "4.15.0-166/174": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-166-generic_4.15.0-166.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" + ], + "4.15.0-171/180": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-171-generic_4.15.0-171.180_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_arm64.deb" + ], + "4.15.0-175/184": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-175-generic_4.15.0-175.184_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + ], + "4.15.0-22/24": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-22-generic_4.15.0-22.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb" + ], + "4.15.0-23/25": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-23-generic_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb" + ], + "4.15.0-24/26": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-24-generic_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb" + ], + "4.15.0-29/31": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-29-generic_4.15.0-29.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb" + ], + "4.15.0-30/32": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-30-generic_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" + ], + "4.15.0-32/35": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-32-generic_4.15.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" + ], + "4.15.0-33/36": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-33-generic_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb" + ], + "4.15.0-34/37": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-34-generic_4.15.0-34.37_arm64.deb" + ], + "4.15.0-36/39": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-36-generic_4.15.0-36.39_arm64.deb" + ], + "4.15.0-39/42": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-39-generic_4.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb" + ], + "4.15.0-42/45": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-42-generic_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb" + ], + "4.15.0-43/46": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-43-generic_4.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb" + ], + "4.15.0-44/47": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-44-generic_4.15.0-44.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" + ], + "4.15.0-45/48": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-45-generic_4.15.0-45.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb" + ], + "4.15.0-46/49": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-46-generic_4.15.0-46.49_arm64.deb" + ], + "4.15.0-47/50": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-47-generic_4.15.0-47.50_arm64.deb" + ], + "4.15.0-50/54": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-50-generic_4.15.0-50.54_arm64.deb" + ], + "4.15.0-51/55": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-51-generic_4.15.0-51.55_arm64.deb" + ], + "4.15.0-52/56": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-52-generic_4.15.0-52.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" + ], + "4.15.0-54/58": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-54-generic_4.15.0-54.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb" + ], + "4.15.0-55/60": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-55-generic_4.15.0-55.60_arm64.deb" + ], + "4.15.0-58/64": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-58-generic_4.15.0-58.64_arm64.deb" + ], + "4.15.0-60/67": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-60-generic_4.15.0-60.67_arm64.deb" + ], + "4.15.0-62/69": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-62-generic_4.15.0-62.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" + ], + "4.15.0-64/73": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-64-generic_4.15.0-64.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb" + ], + "4.15.0-65/74": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-65-generic_4.15.0-65.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" + ], + "4.15.0-66/75": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-66-generic_4.15.0-66.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_arm64.deb" + ], + "4.15.0-69/78": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-69-generic_4.15.0-69.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" + ], + "4.15.0-70/79": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-70-generic_4.15.0-70.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" + ], + "4.15.0-72/81": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-72-generic_4.15.0-72.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" + ], + "4.15.0-74/84": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-74-generic_4.15.0-74.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" + ], + "4.15.0-76/86": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-76-generic_4.15.0-76.86_arm64.deb" + ], + "4.15.0-88/88": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-88-generic_4.15.0-88.88_arm64.deb" + ], + "4.15.0-91/92": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-91-generic_4.15.0-91.92_arm64.deb" + ], + "4.15.0-96/97": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-96-generic_4.15.0-96.97_arm64.deb" + ], + "4.15.0-99/100": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-99-generic_4.15.0-99.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" + ], + "4.18.0-13/14~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb" + ], + "4.18.0-14/15~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb" + ], + "4.18.0-15/16~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" + ], + "4.18.0-16/17~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" + ], + "4.18.0-17/18~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb" + ], + "4.18.0-20/21~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" + ], + "4.18.0-21/22~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb" + ], + "4.18.0-22/23~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb" + ], + "4.18.0-24/25~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" + ], + "4.18.0-25/26~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb" + ], + "5.0.0-1021/24~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb" + ], + "5.0.0-1022/25~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb" + ], + "5.0.0-1023/26~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_arm64.deb" + ], + "5.0.0-1024/27~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" + ], + "5.0.0-1025/28": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + ], + "5.0.0-1027/30": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" + ], + "5.0.0-15/16~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb" + ], + "5.0.0-16/17~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" + ], + "5.0.0-17/18~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb" + ], + "5.0.0-19/20~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" + ], + "5.0.0-20/21~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb" + ], + "5.0.0-23/24~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" + ], + "5.0.0-25/26~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb" + ], + "5.0.0-27/28~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb" + ], + "5.0.0-29/31~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb" + ], + "5.0.0-31/33~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" + ], + "5.0.0-32/34~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" + ], + "5.0.0-35/38~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" + ], + "5.0.0-36/39~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" + ], + "5.0.0-37/40~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb" + ], + "5.0.0-52/56~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb" + ], + "5.0.0-61/65": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-61-generic_5.0.0-61.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" + ], + "5.0.0-62/67": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-62-generic_5.0.0-62.67_arm64.deb" + ], + "5.0.0-63/69": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-63-generic_5.0.0-63.69_arm64.deb" + ], + "5.0.0-65/71": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-65-generic_5.0.0-65.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" + ], + "5.3.0-1017/18~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" + ], + "5.3.0-1019/21~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb" + ], + "5.3.0-1023/25~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" + ], + "5.3.0-1028/30~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb" + ], + "5.3.0-1030/32~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + ], + "5.3.0-1032/34~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" + ], + "5.3.0-1033/35": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + ], + "5.3.0-1034/36": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + ], + "5.3.0-1035/37": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb" + ], + "5.3.0-19/20~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb" + ], + "5.3.0-22/24~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb" + ], + "5.3.0-23/25~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" + ], + "5.3.0-24/26~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" + ], + "5.3.0-26/28~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" + ], + "5.3.0-28/30~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" + ], + "5.3.0-40/32~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb" + ], + "5.3.0-42/34~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb" + ], + "5.3.0-45/37~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" + ], + "5.3.0-46/38~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" + ], + "5.3.0-51/44~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" + ], + "5.3.0-53/47~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb" + ], + "5.3.0-59/53~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb" + ], + "5.3.0-61/55~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb" + ], + "5.3.0-62/56~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb" + ], + "5.3.0-64/58~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb" + ], + "5.4.0-1020/20~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" + ], + "5.4.0-1022/22~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb" + ], + "5.4.0-1024/24~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb" + ], + "5.4.0-1025/25~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb" + ], + "5.4.0-1028/29~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb" + ], + "5.4.0-1029/30~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" + ], + "5.4.0-1032/33~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + ], + "5.4.0-1034/35~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + ], + "5.4.0-1035/37~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb" + ], + "5.4.0-1037/39~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" + ], + "5.4.0-1038/40~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb" + ], + "5.4.0-1039/41~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb" + ], + "5.4.0-104/118~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" + ], + "5.4.0-1041/43~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb" + ], + "5.4.0-1043/45~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb" + ], + "5.4.0-1045/47~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb" + ], + "5.4.0-1046/50~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb" + ], + "5.4.0-1047/49~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb" + ], + "5.4.0-1048/50~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb" + ], + "5.4.0-1048/52~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" + ], + "5.4.0-1049/51~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb" + ], + "5.4.0-1051/53~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb" + ], + "5.4.0-1052/56~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb" + ], + "5.4.0-1053/57~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" + ], + "5.4.0-1054/57~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" + ], + "5.4.0-1054/58~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb" + ], + "5.4.0-1055/58~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb" + ], + "5.4.0-1055/59~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb" + ], + "5.4.0-1056/59~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb" + ], + "5.4.0-1056/60~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb" + ], + "5.4.0-1057/60~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb" + ], + "5.4.0-1057/61~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb" + ], + "5.4.0-1058/61~18.04.3": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + ], + "5.4.0-1059/62~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" + ], + "5.4.0-1059/63~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb" + ], + "5.4.0-1060/63~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" + ], + "5.4.0-1061/64~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + ], + "5.4.0-1061/65~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb" + ], + "5.4.0-1063/66~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" + ], + "5.4.0-1063/67~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" + ], + "5.4.0-1065/68~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb" + ], + "5.4.0-1066/71~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb" + ], + "5.4.0-1068/72~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_arm64.deb" + ], + "5.4.0-1069/75~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb" + ], + "5.4.0-107/121~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb" + ], + "5.4.0-1071/76~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" + ], + "5.4.0-37/41~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + ], + "5.4.0-39/43~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb" + ], + "5.4.0-40/44~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb" + ], + "5.4.0-42/46~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" + ], + "5.4.0-45/49~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" + ], + "5.4.0-47/51~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" + ], + "5.4.0-48/52~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" + ], + "5.4.0-51/56~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" + ], + "5.4.0-52/57~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" + ], + "5.4.0-53/59~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" + ], + "5.4.0-58/64~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb" + ], + "5.4.0-59/65~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb" + ], + "5.4.0-60/67~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb" + ], + "5.4.0-62/70~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb" + ], + "5.4.0-65/73~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb" + ], + "5.4.0-66/74~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" + ], + "5.4.0-67/75~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb" + ], + "5.4.0-70/78~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb" + ], + "5.4.0-71/79~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb" + ], + "5.4.0-72/80~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb" + ], + "5.4.0-73/82~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" + ], + "5.4.0-74/83~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb" + ], + "5.4.0-77/86~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" + ], + "5.4.0-80/90~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb" + ], + "5.4.0-81/91~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb" + ], + "5.4.0-84/94~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb" + ], + "5.4.0-86/97~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb" + ], + "5.4.0-87/98~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" + ], + "5.4.0-89/100~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb" + ], + "5.4.0-90/101~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb" + ], + "5.4.0-92/103~18.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" + ], + "5.4.0-94/106~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" + ], + "5.4.0-96/109~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" + ], + "4.15.0-1037/39": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb" + ], + "4.15.0-124/127": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-124-generic_4.15.0-124.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" + ], + "4.15.0-134/138": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-134-generic_4.15.0-134.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" + ], + "4.15.0-38/41": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-38-generic_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb" + ], + "4.15.0-48/51": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-48-generic_4.15.0-48.51_arm64.deb" + ], + "4.18.0-18/19~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" + ], + "5.0.0-41/45~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb" + ], + "5.0.0-43/47~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" + ], + "5.0.0-44/48~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" + ], + "5.0.0-47/51~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + ], + "5.0.0-48/52~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" + ], + "5.0.0-53/57~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" + ], + "5.0.0-58/62~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb" + ], + "5.0.0-60/64~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb" + ], + "5.3.0-1016/17~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" + ], + "5.4.0-1018/18~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" + ], + "5.4.0-1049/53~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb" + ], + "5.4.0-54/60~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" + ], + "5.4.0-64/72~18.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" + ], + "4.15.0-20/21": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-20-generic_4.15.0-20.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb" + ], + "5.15.0-1005/5": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb" + ], + "5.15.0-24/24": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-modules-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-modules-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb" + ], + "5.15.0-1002/4": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb" + ], + "5.15.0-1003/4": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb" + ], + "5.15.0-1003/6": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-modules-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-gcp/linux-image-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb" + ], + "5.15.0-1004/6": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb" + ], + "5.15.0-1004/4": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.15.0-1004-raspi_5.15.0-1004.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1004_5.15.0-1004.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.15.0-1004-raspi_5.15.0-1004.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1004-raspi_5.15.0-1004.4_arm64.deb" + ], + "5.15.0-23/23": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-23-lowlatency_5.15.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-23-lowlatency-64k_5.15.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-modules-5.15.0-23-lowlatency_5.15.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-23_5.15.0-23.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-23-lowlatency-64k_5.15.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-modules-5.15.0-23-lowlatency-64k_5.15.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-23-lowlatency_5.15.0-23.23_arm64.deb" + ], + "5.15.0-25/25": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.15.0-25-generic_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.15.0-25-generic_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb" + ], + "5.11.0-1022/23~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb" + ], + "5.11.0-1028/31~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb" + ], + "5.11.0-1029/32~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" + ], + "5.11.0-1029/32~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb" + ], + "5.11.0-40/44~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb" + ], + "5.11.0-41/45~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" + ], + "5.11.0-42/46~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb" + ], + "5.11.0-43/47~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb" + ], + "5.11.0-60/60": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-generic_5.11.0-60.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-generic_5.11.0-60.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb" + ], + "5.11.0-61/61": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-generic_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-generic_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb" + ], + "5.13.0-1014/15~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + ], + "5.13.0-1014/16~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb" + ], + "5.13.0-1018/22~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb" + ], + "5.13.0-1019/21~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" + ], + "5.13.0-1020/22~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb" + ], + "5.13.0-1022/24~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb" + ], + "5.13.0-1022/26~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb" + ], + "5.13.0-1023/28~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb" + ], + "5.13.0-1026/31~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb" + ], + "5.13.0-19/19~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb" + ], + "5.13.0-21/21~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb" + ], + "5.13.0-22/22~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb" + ], + "5.13.0-28/31~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" + ], + "5.13.0-29/32~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb" + ], + "5.13.0-30/33~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb" + ], + "5.13.0-32/35~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb" + ], + "5.13.0-36/41~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb" + ], + "5.13.0-37/42~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb" + ], + "5.13.0-40/45~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" + ], + "5.15.0-18/18~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-generic-64k_5.15.0-18.18~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-generic_5.15.0-18.18~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-generic-64k_5.15.0-18.18~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-generic_5.15.0-18.18~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-generic-64k_5.15.0-18.18~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-generic_5.15.0-18.18~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-18_5.15.0-18.18~20.04.2_all.deb" + ], + "5.15.0-22/22~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-22-generic_5.15.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-22-generic-64k_5.15.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-22_5.15.0-22.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-22-generic-64k_5.15.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-22-generic-64k_5.15.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-22-generic_5.15.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-22-generic_5.15.0-22.22~20.04.1_arm64.deb" + ], + "5.15.0-23/23~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-23-generic_5.15.0-23.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-23-generic-64k_5.15.0-23.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-23-generic-64k_5.15.0-23.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-23-generic-64k_5.15.0-23.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-23_5.15.0-23.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-23-generic_5.15.0-23.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-23-generic_5.15.0-23.23~20.04.1_arm64.deb" + ], + "5.15.0-25/25~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-25-generic_5.15.0-25.25~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-25-generic_5.15.0-25.25~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-25-generic-64k_5.15.0-25.25~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-25-generic-64k_5.15.0-25.25~20.04.1_arm64.deb" + ], + "5.4.0-100/113": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-100-generic_5.4.0-100.113_arm64.deb" + ], + "5.4.0-102/115": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-102-generic_5.4.0-102.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_arm64.deb" + ], + "5.4.0-1026/29": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb" + ], + "5.4.0-1027/30": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1027_5.4.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb" + ], + "5.4.0-1028/31": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb" + ], + "5.4.0-1031/34": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1031_5.4.0-1031.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb" + ], + "5.4.0-1046/50": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" + ], + "5.4.0-105/119": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-105-generic_5.4.0-105.119_arm64.deb" + ], + "5.4.0-1051/57": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb" + ], + "5.4.0-1052/58": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" + ], + "5.4.0-1053/60": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" + ], + "5.4.0-1056/63": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb" + ], + "5.4.0-1057/61": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb" + ], + "5.4.0-1058/62": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb" + ], + "5.4.0-106/120": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-106-generic_5.4.0-106.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" + ], + "5.4.0-1062/66": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb" + ], + "5.4.0-1064/67": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" + ], + "5.4.0-1064/68": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" + ], + "5.4.0-1066/69": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb" + ], + "5.4.0-1067/72": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb" + ], + "5.4.0-1068/73": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb" + ], + "5.4.0-1069/73": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" + ], + "5.4.0-107/121": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-107-generic_5.4.0-107.121_arm64.deb" + ], + "5.4.0-1070/74": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb" + ], + "5.4.0-1070/76": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb" + ], + "5.4.0-1072/77": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" + ], + "5.4.0-1075/78": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + ], + "5.4.0-108/122": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-108-generic_5.4.0-108.122_arm64.deb" + ], + "5.4.0-97/110": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-97-generic_5.4.0-97.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" + ], + "5.4.0-98/111": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-98-generic_5.4.0-98.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb" + ], + "5.4.0-99/112": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-99-generic_5.4.0-99.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" + ], + "5.8.0-67/75": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-generic_5.8.0-67.75_arm64.deb" + ], + "5.11.0-1014/15~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + ], + "5.11.0-1016/17~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb" + ], + "5.11.0-1017/18~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" + ], + "5.11.0-1019/20~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" + ], + "5.11.0-1020/21~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" + ], + "5.11.0-1020/21~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" + ], + "5.11.0-1021/22~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb" + ], + "5.11.0-1021/22~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + ], + "5.11.0-1023/24~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" + ], + "5.11.0-1025/27~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb" + ], + "5.11.0-1027/30~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" + ], + "5.11.0-1028/31~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb" + ], + "5.11.0-22/23~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb" + ], + "5.11.0-25/27~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb" + ], + "5.11.0-27/29~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" + ], + "5.11.0-34/36~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb" + ], + "5.11.0-36/40~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb" + ], + "5.11.0-37/41~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" + ], + "5.11.0-38/42~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" + ], + "5.11.0-44/48~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" + ], + "5.11.0-46/51~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb" + ], + "5.13.0-1008/9~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb" + ], + "5.13.0-1011/12~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb" + ], + "5.13.0-1011/13~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb" + ], + "5.13.0-1012/13~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" + ], + "5.13.0-1015/19~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb" + ], + "5.13.0-1016/20~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" + ], + "5.13.0-1017/19~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb" + ], + "5.13.0-1021/23~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" + ], + "5.13.0-1021/24~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb" + ], + "5.13.0-1021/26~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" + ], + "5.13.0-1025/30~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + ], + "5.13.0-23/23~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb" + ], + "5.13.0-25/26~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" + ], + "5.13.0-27/29~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb" + ], + "5.13.0-35/40~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" + ], + "5.13.0-39/44~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" + ], + "5.4.0-1011/11": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" + ], + "5.4.0-1011/14": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb" + ], + "5.4.0-1012/15": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb" + ], + "5.4.0-1012/12": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" + ], + "5.4.0-1013/16": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb" + ], + "5.4.0-1013/13": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb" + ], + "5.4.0-1015/15": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" + ], + "5.4.0-1016/19": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb" + ], + "5.4.0-1016/17": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb" + ], + "5.4.0-1017/17": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb" + ], + "5.4.0-1018/18": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + ], + "5.4.0-1018/20": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" + ], + "5.4.0-1019/22": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1019_5.4.0-1019.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb" + ], + "5.4.0-1019/21": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb" + ], + "5.4.0-1020/20": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb" + ], + "5.4.0-1020/23": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" + ], + "5.4.0-1021/21": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb" + ], + "5.4.0-1021/24": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb" + ], + "5.4.0-1022/22": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1022-aws_5.4.0-1022.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + ], + "5.4.0-1022/25": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb" + ], + "5.4.0-1023/26": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb" + ], + "5.4.0-1024/24": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb" + ], + "5.4.0-1025/25": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb" + ], + "5.4.0-1025/28": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" + ], + "5.4.0-1028/29": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + ], + "5.4.0-1029/30": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb" + ], + "5.4.0-1029/32": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb" + ], + "5.4.0-1030/33": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" + ], + "5.4.0-1032/33": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1032-aws_5.4.0-1032.33_arm64.deb" + ], + "5.4.0-1032/35": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" + ], + "5.4.0-1033/36": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" + ], + "5.4.0-1034/35": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + ], + "5.4.0-1034/37": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" + ], + "5.4.0-1035/37": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" + ], + "5.4.0-1035/38": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb" + ], + "5.4.0-1036/39": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" + ], + "5.4.0-1037/39": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb" + ], + "5.4.0-1038/40": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb" + ], + "5.4.0-1038/41": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" + ], + "5.4.0-1039/41": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + ], + "5.4.0-104/118": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-104-generic_5.4.0-104.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" + ], + "5.4.0-1041/43": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb" + ], + "5.4.0-1041/45": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb" + ], + "5.4.0-1042/46": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb" + ], + "5.4.0-1043/45": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + ], + "5.4.0-1043/47": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb" + ], + "5.4.0-1044/48": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb" + ], + "5.4.0-1045/47": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb" + ], + "5.4.0-1045/49": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" + ], + "5.4.0-1047/49": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + ], + "5.4.0-1047/52": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb" + ], + "5.4.0-1048/50": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb" + ], + "5.4.0-1048/52": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb" + ], + "5.4.0-1048/53": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" + ], + "5.4.0-1049/51": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb" + ], + "5.4.0-1050/56": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb" + ], + "5.4.0-1051/53": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb" + ], + "5.4.0-1052/56": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb" + ], + "5.4.0-1053/57": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb" + ], + "5.4.0-1054/57": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" + ], + "5.4.0-1054/58": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb" + ], + "5.4.0-1055/58": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb" + ], + "5.4.0-1055/59": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" + ], + "5.4.0-1055/62": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb" + ], + "5.4.0-1056/59": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" + ], + "5.4.0-1056/60": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60_arm64.deb" + ], + "5.4.0-1057/60": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb" + ], + "5.4.0-1058/61": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb" + ], + "5.4.0-1058/65": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb" + ], + "5.4.0-1059/62": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb" + ], + "5.4.0-1059/63": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb" + ], + "5.4.0-1060/63": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + ], + "5.4.0-1061/64": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" + ], + "5.4.0-1061/65": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb" + ], + "5.4.0-1063/66": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb" + ], + "5.4.0-1063/67": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb" + ], + "5.4.0-1065/68": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb" + ], + "5.4.0-1066/71": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb" + ], + "5.4.0-1068/72": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb" + ], + "5.4.0-1069/75": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb" + ], + "5.4.0-1071/76": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + ], + "5.4.0-28/32": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-28-generic_5.4.0-28.32_arm64.deb" + ], + "5.4.0-29/33": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-29-generic_5.4.0-29.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" + ], + "5.4.0-31/35": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-31-generic_5.4.0-31.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" + ], + "5.4.0-33/37": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-33-generic_5.4.0-33.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" + ], + "5.4.0-37/41": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-37-generic_5.4.0-37.41_arm64.deb" + ], + "5.4.0-39/43": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-39-generic_5.4.0-39.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb" + ], + "5.4.0-40/44": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-40-generic_5.4.0-40.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_arm64.deb" + ], + "5.4.0-42/46": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-42-generic_5.4.0-42.46_arm64.deb" + ], + "5.4.0-45/49": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-45-generic_5.4.0-45.49_arm64.deb" + ], + "5.4.0-47/51": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-47-generic_5.4.0-47.51_arm64.deb" + ], + "5.4.0-48/52": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-48-generic_5.4.0-48.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb" + ], + "5.4.0-51/56": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-51-generic_5.4.0-51.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb" + ], + "5.4.0-52/57": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-52-generic_5.4.0-52.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb" + ], + "5.4.0-53/59": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-53-generic_5.4.0-53.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb" + ], + "5.4.0-58/64": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-58-generic_5.4.0-58.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb" + ], + "5.4.0-59/65": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-59-generic_5.4.0-59.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" + ], + "5.4.0-60/67": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-60-generic_5.4.0-60.67_arm64.deb" + ], + "5.4.0-62/70": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-62-generic_5.4.0-62.70_arm64.deb" + ], + "5.4.0-65/73": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-65-generic_5.4.0-65.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb" + ], + "5.4.0-66/74": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-66-generic_5.4.0-66.74_arm64.deb" + ], + "5.4.0-67/75": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-67-generic_5.4.0-67.75_arm64.deb" + ], + "5.4.0-70/78": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-70-generic_5.4.0-70.78_arm64.deb" + ], + "5.4.0-71/79": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-71-generic_5.4.0-71.79_arm64.deb" + ], + "5.4.0-72/80": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-72-generic_5.4.0-72.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb" + ], + "5.4.0-73/82": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-73-generic_5.4.0-73.82_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_arm64.deb" + ], + "5.4.0-74/83": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-74-generic_5.4.0-74.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" + ], + "5.4.0-77/86": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-77-generic_5.4.0-77.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" + ], + "5.4.0-80/90": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-80-generic_5.4.0-80.90_arm64.deb" + ], + "5.4.0-81/91": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-81-generic_5.4.0-81.91_arm64.deb" + ], + "5.4.0-84/94": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-84-generic_5.4.0-84.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb" + ], + "5.4.0-86/97": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-86-generic_5.4.0-86.97_arm64.deb" + ], + "5.4.0-88/99": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-88-generic_5.4.0-88.99_arm64.deb" + ], + "5.4.0-89/100": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-89-generic_5.4.0-89.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" + ], + "5.4.0-90/101": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-90-generic_5.4.0-90.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" + ], + "5.4.0-91/102": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-91-generic_5.4.0-91.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" + ], + "5.4.0-92/103": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-92-generic_5.4.0-92.103_arm64.deb" + ], + "5.4.0-94/106": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-94-generic_5.4.0-94.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb" + ], + "5.4.0-96/109": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-96-generic_5.4.0-96.109_arm64.deb" + ], + "5.8.0-1031/32~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb" + ], + "5.8.0-1033/34~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" + ], + "5.8.0-1035/37~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb" + ], + "5.8.0-1037/38~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" + ], + "5.8.0-1038/40~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb" + ], + "5.8.0-1038/39~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb" + ], + "5.8.0-1041/43~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" + ], + "5.8.0-1042/44~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" + ], + "5.8.0-33/36~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb" + ], + "5.8.0-34/37~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" + ], + "5.8.0-36/40~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb" + ], + "5.8.0-38/43~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb" + ], + "5.8.0-41/46~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb" + ], + "5.8.0-43/49~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb" + ], + "5.8.0-44/50~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb" + ], + "5.8.0-45/51~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb" + ], + "5.8.0-48/54~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" + ], + "5.8.0-49/55~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb" + ], + "5.8.0-50/56~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" + ], + "5.8.0-53/60~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb" + ], + "5.8.0-55/62~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + ], + "5.8.0-59/66~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" + ], + "5.8.0-63/71~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb" + ], + "5.11.0-1009/9~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb" + ], + "5.4.0-1007/10": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb" + ], + "5.4.0-1049/53": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb" + ], + "5.4.0-54/60": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-54-generic_5.4.0-54.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" + ], + "5.4.0-64/72": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-64-generic_5.4.0-64.72_arm64.deb" + ], + "5.8.0-1034/35~20.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" + ], + "5.8.0-23/24~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb" + ], + "5.8.0-25/26~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" + ], + "5.8.0-28/30~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" + ], + "5.8.0-29/31~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb" + ], + "5.8.0-40/45~20.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb" + ], + "5.4.0-1008/8": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb" + ], + "5.4.0-1009/9": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb" + ], + "5.4.0-26/30": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-26-generic_5.4.0-26.30_arm64.deb" + ], + "5.11.0-1021/22": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb" + ], + "5.11.0-1022/23": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb" + ], + "5.11.0-1027/30": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" + ], + "5.11.0-49/55": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.11.0-49-generic_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.11.0-49-generic_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" + ], + "5.11.0-1006/6": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb" + ], + "5.11.0-1007/7": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb" + ], + "5.11.0-16/17": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.11.0-16-generic_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.11.0-16-generic_5.11.0-16.17_arm64.deb" + ], + "5.13.0-1007/8": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb" + ], + "5.13.0-1010/12": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" + ], + "5.13.0-1013/14": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + ], + "5.13.0-1014/15": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb" + ], + "5.13.0-1014/16": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb" + ], + "5.13.0-1016/20": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb" + ], + "5.13.0-1017/21": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + ], + "5.13.0-1017/19": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" + ], + "5.13.0-1018/20": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb" + ], + "5.13.0-1018/22": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb" + ], + "5.13.0-1019/21": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb" + ], + "5.13.0-1020/22": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + ], + "5.13.0-1021/23": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" + ], + "5.13.0-1022/24": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" + ], + "5.13.0-1022/26": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb" + ], + "5.13.0-1022/27": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb" + ], + "5.13.0-1023/28": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb" + ], + "5.13.0-1023/25": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" + ], + "5.13.0-1024/29": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb" + ], + "5.13.0-1025/27": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" + ], + "5.13.0-1026/31": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb" + ], + "5.13.0-28/31": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-28-generic_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-28-generic_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" + ], + "5.13.0-29/32": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-29-generic_5.13.0-29.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-29-generic_5.13.0-29.32_arm64.deb" + ], + "5.13.0-30/33": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-30-generic_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-30-generic_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb" + ], + "5.13.0-32/35": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-32-generic_5.13.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-32-generic_5.13.0-32.35_arm64.deb" + ], + "5.13.0-36/41": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-36-generic_5.13.0-36.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-36-generic_5.13.0-36.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb" + ], + "5.13.0-37/42": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-37-generic_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-37-generic_5.13.0-37.42_arm64.deb" + ], + "5.13.0-38/43": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-38-generic_5.13.0-38.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-38-generic_5.13.0-38.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb" + ], + "5.13.0-40/45": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-40-generic_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-40-generic_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" + ], + "5.13.0-1006/7": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb" + ], + "5.13.0-1008/9": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb" + ], + "5.13.0-1009/10": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb" + ], + "5.13.0-1009/11": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb" + ], + "5.13.0-1011/12": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" + ], + "5.13.0-1011/13": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" + ], + "5.13.0-1012/13": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb" + ], + "5.13.0-1012/14": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" + ], + "5.13.0-1013/16": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb" + ], + "5.13.0-1013/15": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb" + ], + "5.13.0-1015/19": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + ], + "5.13.0-1015/17": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb" + ], + "5.13.0-1016/18": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb" + ], + "5.13.0-1021/24": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb" + ], + "5.13.0-1021/26": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + ], + "5.13.0-1024/26": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb" + ], + "5.13.0-1025/30": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb" + ], + "5.13.0-21/21": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-21-generic_5.13.0-21.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-21-generic_5.13.0-21.21_arm64.deb" + ], + "5.13.0-22/22": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-22-generic_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-22-generic_5.13.0-22.22_arm64.deb" + ], + "5.13.0-23/23": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-23-generic_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-23-generic_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb" + ], + "5.13.0-25/26": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-25-generic_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-25-generic_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb" + ], + "5.13.0-27/29": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-27-generic_5.13.0-27.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-27-generic_5.13.0-27.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb" + ], + "5.13.0-35/40": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-35-generic_5.13.0-35.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-35-generic_5.13.0-35.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" + ], + "5.13.0-39/44": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-39-generic_5.13.0-39.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-39-generic_5.13.0-39.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb" + ], + "5.13.0-20/20": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-20-generic_5.13.0-20.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-20-generic_5.13.0-20.20_arm64.deb" + ], + "5.13.0-1005/6": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb" + ], + "5.13.0-1008/10": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" + ], + "5.13.0-19/19": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-19-generic_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-19-generic_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb" + ], + "3.13.0-100/147": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-100-generic_3.13.0-100.147_arm64.deb" + ], + "3.13.0-101/148": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-101-generic_3.13.0-101.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" + ], + "3.13.0-103/150": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-103-generic_3.13.0-103.150_arm64.deb" + ], + "3.13.0-105/152": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-105-generic_3.13.0-105.152_arm64.deb" + ], + "3.13.0-106/153": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-106-generic_3.13.0-106.153_arm64.deb" + ], + "3.13.0-107/154": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-107-generic_3.13.0-107.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" + ], + "3.13.0-108/155": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-108-generic_3.13.0-108.155_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" + ], + "3.13.0-109/156": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-109-generic_3.13.0-109.156_arm64.deb" + ], + "3.13.0-110/157": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-110-generic_3.13.0-110.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb" + ], + "3.13.0-112/159": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-112-generic_3.13.0-112.159_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb" + ], + "3.13.0-115/162": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-115-generic_3.13.0-115.162_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" + ], + "3.13.0-116/163": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-116-generic_3.13.0-116.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + ], + "3.13.0-117/164": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-117-generic_3.13.0-117.164_arm64.deb" + ], + "3.13.0-119/166": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-119-generic_3.13.0-119.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" + ], + "3.13.0-121/170": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-121-generic_3.13.0-121.170_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" + ], + "3.13.0-123/172": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-123-generic_3.13.0-123.172_arm64.deb" + ], + "3.13.0-125/174": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-125-generic_3.13.0-125.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" + ], + "3.13.0-126/175": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-126-generic_3.13.0-126.175_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" + ], + "3.13.0-128/177": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-128-generic_3.13.0-128.177_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" + ], + "3.13.0-129/178": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-129-generic_3.13.0-129.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" + ], + "3.13.0-132/181": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-132-generic_3.13.0-132.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb" + ], + "3.13.0-133/182": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-133-generic_3.13.0-133.182_arm64.deb" + ], + "3.13.0-135/184": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-135-generic_3.13.0-135.184_arm64.deb" + ], + "3.13.0-137/186": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-137-generic_3.13.0-137.186_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" + ], + "3.13.0-139/188": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-139-generic_3.13.0-139.188_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" + ], + "3.13.0-141/190": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-141-generic_3.13.0-141.190_arm64.deb" + ], + "3.13.0-142/191": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-142-generic_3.13.0-142.191_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb" + ], + "3.13.0-143/192": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-143-generic_3.13.0-143.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" + ], + "3.13.0-144/193": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-144-generic_3.13.0-144.193_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb" + ], + "3.13.0-147/196": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-147-generic_3.13.0-147.196_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" + ], + "3.13.0-149/199": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-149-generic_3.13.0-149.199_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_arm64.deb" + ], + "3.13.0-151/201": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-151-generic_3.13.0-151.201_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb" + ], + "3.13.0-153/203": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-153-generic_3.13.0-153.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" + ], + "3.13.0-155/205": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-155-generic_3.13.0-155.205_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" + ], + "3.13.0-156/206": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-156-generic_3.13.0-156.206_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" + ], + "3.13.0-157/207": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-157-generic_3.13.0-157.207_arm64.deb" + ], + "3.13.0-160/210": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-160-generic_3.13.0-160.210_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" + ], + "3.13.0-161/211": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-161-generic_3.13.0-161.211_arm64.deb" + ], + "3.13.0-162/212": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-162-generic_3.13.0-162.212_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" + ], + "3.13.0-164/214": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-164-generic_3.13.0-164.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" + ], + "3.13.0-165/215": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-165-generic_3.13.0-165.215_arm64.deb" + ], + "3.13.0-166/216": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-166-generic_3.13.0-166.216_arm64.deb" + ], + "3.13.0-167/217": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-167-generic_3.13.0-167.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" + ], + "3.13.0-168/218": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-168-generic_3.13.0-168.218_arm64.deb" + ], + "3.13.0-170/220": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-170-generic_3.13.0-170.220_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb" + ], + "3.13.0-24/47": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb" + ], + "3.13.0-27/50": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-27-generic_3.13.0-27.50_arm64.deb" + ], + "3.13.0-29/53": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-29-generic_3.13.0-29.53_arm64.deb" + ], + "3.13.0-30/55": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-30-generic_3.13.0-30.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" + ], + "3.13.0-32/57": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-32-generic_3.13.0-32.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" + ], + "3.13.0-33/58": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-33-generic_3.13.0-33.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb" + ], + "3.13.0-34/60": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-34-generic_3.13.0-34.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" + ], + "3.13.0-35/62": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-35-generic_3.13.0-35.62_arm64.deb" + ], + "3.13.0-36/63": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-36-generic_3.13.0-36.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" + ], + "3.13.0-37/64": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-37-generic_3.13.0-37.64_arm64.deb" + ], + "3.13.0-39/66": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-39-generic_3.13.0-39.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb" + ], + "3.13.0-40/69": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-40-generic_3.13.0-40.69_arm64.deb" + ], + "3.13.0-41/70": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-41-generic_3.13.0-41.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb" + ], + "3.13.0-43/72": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-43-generic_3.13.0-43.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb" + ], + "3.13.0-44/73": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-44-generic_3.13.0-44.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb" + ], + "3.13.0-46/79": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-46-generic_3.13.0-46.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_arm64.deb" + ], + "3.13.0-48/80": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-48-generic_3.13.0-48.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_arm64.deb" + ], + "3.13.0-49/83": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-49-generic_3.13.0-49.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb" + ], + "3.13.0-51/84": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-51-generic_3.13.0-51.84_arm64.deb" + ], + "3.13.0-52/86": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-52-generic_3.13.0-52.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" + ], + "3.13.0-53/89": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-53-generic_3.13.0-53.89_arm64.deb" + ], + "3.13.0-54/91": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-54-generic_3.13.0-54.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb" + ], + "3.13.0-55/94": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-55-generic_3.13.0-55.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb" + ], + "3.13.0-57/95": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-57-generic_3.13.0-57.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" + ], + "3.13.0-58/97": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-58-generic_3.13.0-58.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" + ], + "3.13.0-59/98": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-59-generic_3.13.0-59.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb" + ], + "3.13.0-61/100": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-61-generic_3.13.0-61.100_arm64.deb" + ], + "3.13.0-62/102": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-62-generic_3.13.0-62.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" + ], + "3.13.0-63/103": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-63-generic_3.13.0-63.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb" + ], + "3.13.0-65/106": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-65-generic_3.13.0-65.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" + ], + "3.13.0-66/108": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-66-generic_3.13.0-66.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" + ], + "3.13.0-67/110": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-67-generic_3.13.0-67.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" + ], + "3.13.0-68/111": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-68-generic_3.13.0-68.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" + ], + "3.13.0-70/113": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-70-generic_3.13.0-70.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" + ], + "3.13.0-71/114": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-71-generic_3.13.0-71.114_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb" + ], + "3.13.0-73/116": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-73-generic_3.13.0-73.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb" + ], + "3.13.0-74/118": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-74-generic_3.13.0-74.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb" + ], + "3.13.0-76/120": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-76-generic_3.13.0-76.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb" + ], + "3.13.0-77/121": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-77-generic_3.13.0-77.121_arm64.deb" + ], + "3.13.0-79/123": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-79-generic_3.13.0-79.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb" + ], + "3.13.0-83/127": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-83-generic_3.13.0-83.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb" + ], + "3.13.0-85/129": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-85-generic_3.13.0-85.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb" + ], + "3.13.0-86/131": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-86-generic_3.13.0-86.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb" + ], + "3.13.0-87/133": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-87-generic_3.13.0-87.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" + ], + "3.13.0-88/135": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-88-generic_3.13.0-88.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" + ], + "3.13.0-91/138": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-91-generic_3.13.0-91.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" + ], + "3.13.0-92/139": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-92-generic_3.13.0-92.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" + ], + "3.13.0-93/140": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-93-generic_3.13.0-93.140_arm64.deb" + ], + "3.13.0-95/142": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-95-generic_3.13.0-95.142_arm64.deb" + ], + "3.13.0-96/143": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-96-generic_3.13.0-96.143_arm64.deb" + ], + "3.13.0-98/145": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-98-generic_3.13.0-98.145_arm64.deb" + ], + "3.16.0-25/33~14.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb" + ], + "3.16.0-26/35~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb" + ], + "3.16.0-28/38~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" + ], + "3.16.0-29/39~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" + ], + "3.16.0-31/43~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb" + ], + "3.16.0-33/44~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" + ], + "3.16.0-34/47~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb" + ], + "3.16.0-36/48~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" + ], + "3.16.0-37/51~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" + ], + "3.16.0-38/52~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" + ], + "3.16.0-39/53~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb" + ], + "3.16.0-41/57~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb" + ], + "3.16.0-43/58~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" + ], + "3.16.0-44/59~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb" + ], + "3.16.0-45/60~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb" + ], + "3.16.0-46/62~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb" + ], + "3.16.0-48/64~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" + ], + "3.16.0-49/65~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb" + ], + "3.16.0-50/67~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" + ], + "3.16.0-51/69~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb" + ], + "3.16.0-52/71~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" + ], + "3.16.0-53/72~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" + ], + "3.16.0-55/74~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" + ], + "3.16.0-56/75~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb" + ], + "3.16.0-57/77~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb" + ], + "3.16.0-59/79~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb" + ], + "3.16.0-60/80~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" + ], + "3.16.0-62/83~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb" + ], + "3.16.0-67/87~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb" + ], + "3.16.0-69/89~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" + ], + "3.16.0-70/90~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb" + ], + "3.16.0-71/92~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb" + ], + "3.16.0-73/95~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb" + ], + "3.16.0-76/98~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" + ], + "3.16.0-77/99~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb" + ], + "3.19.0-20/20~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb" + ], + "3.19.0-21/21~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb" + ], + "3.19.0-22/22~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb" + ], + "3.19.0-23/24~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb" + ], + "3.19.0-25/26~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" + ], + "3.19.0-26/28~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb" + ], + "3.19.0-28/30~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb" + ], + "3.19.0-30/34~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb" + ], + "3.19.0-31/36~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" + ], + "3.19.0-32/37~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" + ], + "3.19.0-33/38~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" + ], + "3.19.0-37/42~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb" + ], + "3.19.0-39/44~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" + ], + "3.19.0-41/46~14.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb" + ], + "3.19.0-42/48~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb" + ], + "3.19.0-43/49~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" + ], + "3.19.0-47/53~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb" + ], + "3.19.0-49/55~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb" + ], + "3.19.0-51/58~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb" + ], + "3.19.0-56/62~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" + ], + "3.19.0-58/64~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb" + ], + "3.19.0-59/66~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" + ], + "3.19.0-61/69~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + ], + "3.19.0-64/72~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb" + ], + "3.19.0-65/73~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb" + ], + "3.19.0-66/74~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb" + ], + "3.19.0-68/76~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" + ], + "3.19.0-69/77~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" + ], + "3.19.0-71/79~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb" + ], + "3.19.0-73/81~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" + ], + "3.19.0-74/82~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb" + ], + "3.19.0-75/83~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" + ], + "3.19.0-77/85~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb" + ], + "3.19.0-78/86~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb" + ], + "3.19.0-79/87~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb" + ], + "3.19.0-80/88~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb" + ], + "4.2.0-18/22~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb" + ], + "4.2.0-19/23~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" + ], + "4.2.0-21/25~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" + ], + "4.2.0-22/27~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" + ], + "4.2.0-23/28~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" + ], + "4.2.0-25/30~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb" + ], + "4.2.0-27/32~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" + ], + "4.2.0-30/36~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb" + ], + "4.2.0-34/39~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" + ], + "4.2.0-35/40~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-generic_4.2.0-35.40~14.04.1_arm64.deb" + ], + "4.2.0-36/42~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" + ], + "4.2.0-38/45~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" + ], + "4.2.0-41/48~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" + ], + "4.2.0-42/49~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" + ], + "4.4.0-101/124~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb" + ], + "4.4.0-103/126~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" + ], + "4.4.0-104/127~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb" + ], + "4.4.0-108/131~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb" + ], + "4.4.0-109/132~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb" + ], + "4.4.0-111/134~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" + ], + "4.4.0-112/135~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb" + ], + "4.4.0-116/140~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb" + ], + "4.4.0-119/143~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb" + ], + "4.4.0-121/145~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb" + ], + "4.4.0-124/148~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" + ], + "4.4.0-127/153~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb" + ], + "4.4.0-128/154~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb" + ], + "4.4.0-130/156~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb" + ], + "4.4.0-133/159~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb" + ], + "4.4.0-134/160~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" + ], + "4.4.0-137/163~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" + ], + "4.4.0-138/164~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" + ], + "4.4.0-139/165~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb" + ], + "4.4.0-141/167~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" + ], + "4.4.0-142/168~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb" + ], + "4.4.0-143/169~14.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" + ], + "4.4.0-144/170~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb" + ], + "4.4.0-148/174~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" + ], + "4.4.0-21/37~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb" + ], + "4.4.0-22/40~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb" + ], + "4.4.0-24/43~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" + ], + "4.4.0-28/47~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" + ], + "4.4.0-31/50~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-generic_4.4.0-31.50~14.04.1_arm64.deb" + ], + "4.4.0-34/53~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" + ], + "4.4.0-36/55~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" + ], + "4.4.0-38/57~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb" + ], + "4.4.0-42/62~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb" + ], + "4.4.0-45/66~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb" + ], + "4.4.0-47/68~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb" + ], + "4.4.0-51/72~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb" + ], + "4.4.0-53/74~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb" + ], + "4.4.0-57/78~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb" + ], + "4.4.0-59/80~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb" + ], + "4.4.0-62/83~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb" + ], + "4.4.0-63/84~14.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" + ], + "4.4.0-64/85~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb" + ], + "4.4.0-66/87~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb" + ], + "4.4.0-67/88~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" + ], + "4.4.0-70/91~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb" + ], + "4.4.0-71/92~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" + ], + "4.4.0-72/93~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" + ], + "4.4.0-75/96~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb" + ], + "4.4.0-78/99~14.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb" + ], + "4.4.0-79/100~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + ], + "4.4.0-81/104~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" + ], + "4.4.0-83/106~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" + ], + "4.4.0-87/110~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" + ], + "4.4.0-89/112~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" + ], + "4.4.0-91/114~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" + ], + "4.4.0-92/115~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" + ], + "4.4.0-93/116~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb" + ], + "4.4.0-96/119~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" + ], + "4.4.0-97/120~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" + ], + "4.4.0-98/121~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb" + ], + "3.13.0-113/160": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-113-generic_3.13.0-113.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb" + ], + "3.13.0-145/194": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-145-generic_3.13.0-145.194_arm64.deb" + ], + "3.13.0-158/208": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-158-generic_3.13.0-158.208_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb" + ], + "3.13.0-163/213": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-163-generic_3.13.0-163.213_arm64.deb" + ], + "3.13.0-169/219": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-169-generic_3.13.0-169.219_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" + ], + "3.13.0-45/74": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-45-generic_3.13.0-45.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" + ], + "3.16.0-30/40~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb" + ], + "3.16.0-40/54~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" + ], + "3.19.0-18/18~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb" + ], + "4.4.0-131/157~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" + ], + "4.4.0-135/161~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" + ], + "4.4.0-140/166~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb" + ], + "4.4.0-146/172~14.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" + ], + "3.13.0-24/46": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.46_arm64.deb" + ], + "4.15.0-1095/102~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb" + ], + "4.15.0-1096/103~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb" + ], + "4.4.0-206/238": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-206-generic_4.4.0-206.238_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" + ], + "4.4.0-207/239": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-207-generic_4.4.0-207.239_arm64.deb" + ], + "4.10.0-14/16~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb" + ], + "4.10.0-19/21~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb" + ], + "4.10.0-20/22~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" + ], + "4.10.0-21/23~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb" + ], + "4.10.0-22/24~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" + ], + "4.10.0-24/28~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" + ], + "4.10.0-26/30~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb" + ], + "4.10.0-27/30~16.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb" + ], + "4.10.0-28/32~16.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb" + ], + "4.10.0-30/34~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" + ], + "4.10.0-32/36~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb" + ], + "4.10.0-33/37~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb" + ], + "4.10.0-35/39~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb" + ], + "4.10.0-37/41~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb" + ], + "4.10.0-38/42~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" + ], + "4.10.0-40/44~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" + ], + "4.10.0-42/46~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb" + ], + "4.11.0-13/19~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb" + ], + "4.11.0-14/20~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" + ], + "4.13.0-16/19~16.04.3": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" + ], + "4.13.0-17/20~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" + ], + "4.13.0-19/22~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb" + ], + "4.13.0-21/24~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb" + ], + "4.13.0-25/29~16.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb" + ], + "4.13.0-26/29~16.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb" + ], + "4.13.0-31/34~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb" + ], + "4.13.0-32/35~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" + ], + "4.13.0-36/40~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb" + ], + "4.13.0-37/42~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb" + ], + "4.13.0-38/43~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" + ], + "4.13.0-39/44~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb" + ], + "4.13.0-41/46~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" + ], + "4.13.0-43/48~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" + ], + "4.13.0-45/50~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb" + ], + "4.15.0-101/102~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" + ], + "4.15.0-106/107~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb" + ], + "4.15.0-107/108~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb" + ], + "4.15.0-1093/99~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" + ], + "4.15.0-1094/101~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" + ], + "4.15.0-1097/104~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb" + ], + "4.15.0-1098/105~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb" + ], + "4.15.0-1099/106~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" + ], + "4.15.0-112/113~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb" + ], + "4.15.0-115/116~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" + ], + "4.15.0-117/118~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + ], + "4.15.0-118/119~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" + ], + "4.15.0-120/122~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb" + ], + "4.15.0-122/124~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" + ], + "4.15.0-123/126~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" + ], + "4.15.0-128/131~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb" + ], + "4.15.0-129/132~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb" + ], + "4.15.0-13/14~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" + ], + "4.15.0-132/136~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb" + ], + "4.15.0-133/137~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" + ], + "4.15.0-136/140~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" + ], + "4.15.0-137/141~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb" + ], + "4.15.0-139/143~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" + ], + "4.15.0-140/144~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb" + ], + "4.15.0-142/146~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" + ], + "4.15.0-15/16~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb" + ], + "4.15.0-20/21~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" + ], + "4.15.0-22/24~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb" + ], + "4.15.0-23/25~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" + ], + "4.15.0-24/26~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" + ], + "4.15.0-29/31~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb" + ], + "4.15.0-30/32~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb" + ], + "4.15.0-32/35~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" + ], + "4.15.0-33/36~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" + ], + "4.15.0-34/37~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb" + ], + "4.15.0-36/39~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb" + ], + "4.15.0-39/42~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" + ], + "4.15.0-42/45~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb" + ], + "4.15.0-43/46~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" + ], + "4.15.0-45/48~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb" + ], + "4.15.0-46/49~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" + ], + "4.15.0-47/50~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb" + ], + "4.15.0-50/54~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" + ], + "4.15.0-51/55~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" + ], + "4.15.0-52/56~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb" + ], + "4.15.0-54/58~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb" + ], + "4.15.0-55/60~16.04.2": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" + ], + "4.15.0-58/64~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb" + ], + "4.15.0-60/67~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb" + ], + "4.15.0-62/69~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb" + ], + "4.15.0-64/73~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" + ], + "4.15.0-65/74~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" + ], + "4.15.0-66/75~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb" + ], + "4.15.0-69/78~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb" + ], + "4.15.0-70/79~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb" + ], + "4.15.0-72/81~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" + ], + "4.15.0-74/83~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" + ], + "4.15.0-76/86~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" + ], + "4.15.0-88/88~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" + ], + "4.15.0-91/92~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" + ], + "4.15.0-96/97~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb" + ], + "4.15.0-99/100~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" + ], + "4.4.0-101/124": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-101-generic_4.4.0-101.124_arm64.deb" + ], + "4.4.0-103/126": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-103-generic_4.4.0-103.126_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" + ], + "4.4.0-104/127": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-104-generic_4.4.0-104.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" + ], + "4.4.0-108/131": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-108-generic_4.4.0-108.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb" + ], + "4.4.0-109/132": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-109-generic_4.4.0-109.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb" + ], + "4.4.0-112/135": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-112-generic_4.4.0-112.135_arm64.deb" + ], + "4.4.0-116/140": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-116-generic_4.4.0-116.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" + ], + "4.4.0-119/143": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-119-generic_4.4.0-119.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_arm64.deb" + ], + "4.4.0-121/145": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-121-generic_4.4.0-121.145_arm64.deb" + ], + "4.4.0-124/148": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-124-generic_4.4.0-124.148_arm64.deb" + ], + "4.4.0-127/153": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-127-generic_4.4.0-127.153_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb" + ], + "4.4.0-128/154": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-128-generic_4.4.0-128.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" + ], + "4.4.0-130/156": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-130-generic_4.4.0-130.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" + ], + "4.4.0-133/159": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-133-generic_4.4.0-133.159_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" + ], + "4.4.0-134/160": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-134-generic_4.4.0-134.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" + ], + "4.4.0-137/163": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-137-generic_4.4.0-137.163_arm64.deb" + ], + "4.4.0-138/164": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-138-generic_4.4.0-138.164_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" + ], + "4.4.0-139/165": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-139-generic_4.4.0-139.165_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb" + ], + "4.4.0-141/167": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-141-generic_4.4.0-141.167_arm64.deb" + ], + "4.4.0-142/168": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-142-generic_4.4.0-142.168_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb" + ], + "4.4.0-143/169": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-143-generic_4.4.0-143.169_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb" + ], + "4.4.0-145/171": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-145-generic_4.4.0-145.171_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" + ], + "4.4.0-148/174": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-148-generic_4.4.0-148.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" + ], + "4.4.0-150/176": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-150-generic_4.4.0-150.176_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" + ], + "4.4.0-151/178": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-151-generic_4.4.0-151.178_arm64.deb" + ], + "4.4.0-154/181": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-154-generic_4.4.0-154.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb" + ], + "4.4.0-157/185": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-157-generic_4.4.0-157.185_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb" + ], + "4.4.0-159/187": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-159-generic_4.4.0-159.187_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb" + ], + "4.4.0-161/189": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-161-generic_4.4.0-161.189_arm64.deb" + ], + "4.4.0-164/192": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-164-generic_4.4.0-164.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb" + ], + "4.4.0-165/193": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-165-generic_4.4.0-165.193_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" + ], + "4.4.0-166/195": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-166-generic_4.4.0-166.195_arm64.deb" + ], + "4.4.0-168/197": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-168-generic_4.4.0-168.197_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" + ], + "4.4.0-169/198": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-169-generic_4.4.0-169.198_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" + ], + "4.4.0-170/199": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-170-generic_4.4.0-170.199_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb" + ], + "4.4.0-171/200": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-171-generic_4.4.0-171.200_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" + ], + "4.4.0-173/203": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-173-generic_4.4.0-173.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" + ], + "4.4.0-174/204": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-174-generic_4.4.0-174.204_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" + ], + "4.4.0-176/206": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-176-generic_4.4.0-176.206_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" + ], + "4.4.0-177/207": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-177-generic_4.4.0-177.207_arm64.deb" + ], + "4.4.0-178/208": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-178-generic_4.4.0-178.208_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" + ], + "4.4.0-179/209": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-179-generic_4.4.0-179.209_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb" + ], + "4.4.0-184/214": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-184-generic_4.4.0-184.214_arm64.deb" + ], + "4.4.0-185/215": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-185-generic_4.4.0-185.215_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_arm64.deb" + ], + "4.4.0-186/216": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-186-generic_4.4.0-186.216_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb" + ], + "4.4.0-187/217": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-187-generic_4.4.0-187.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" + ], + "4.4.0-189/219": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-189-generic_4.4.0-189.219_arm64.deb" + ], + "4.4.0-190/220": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-190-generic_4.4.0-190.220_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" + ], + "4.4.0-193/224": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-193-generic_4.4.0-193.224_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" + ], + "4.4.0-194/226": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-194-generic_4.4.0-194.226_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb" + ], + "4.4.0-197/229": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-197-generic_4.4.0-197.229_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" + ], + "4.4.0-198/230": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-198-generic_4.4.0-198.230_arm64.deb" + ], + "4.4.0-200/232": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-200-generic_4.4.0-200.232_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" + ], + "4.4.0-201/233": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-201-generic_4.4.0-201.233_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" + ], + "4.4.0-203/235": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-203-generic_4.4.0-203.235_arm64.deb" + ], + "4.4.0-204/236": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-204-generic_4.4.0-204.236_arm64.deb" + ], + "4.4.0-208/240": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-208-generic_4.4.0-208.240_arm64.deb" + ], + "4.4.0-209/241": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-209-generic_4.4.0-209.241_arm64.deb" + ], + "4.4.0-210/242": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-210-generic_4.4.0-210.242_arm64.deb" + ], + "4.4.0-22/40": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-22-generic_4.4.0-22.40_arm64.deb" + ], + "4.4.0-24/43": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-24-generic_4.4.0-24.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb" + ], + "4.4.0-28/47": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-28-generic_4.4.0-28.47_arm64.deb" + ], + "4.4.0-31/50": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-31-generic_4.4.0-31.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb" + ], + "4.4.0-34/53": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-34-generic_4.4.0-34.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" + ], + "4.4.0-36/55": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-36-generic_4.4.0-36.55_arm64.deb" + ], + "4.4.0-38/57": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-38-generic_4.4.0-38.57_arm64.deb" + ], + "4.4.0-42/62": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-42-generic_4.4.0-42.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" + ], + "4.4.0-45/66": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-45-generic_4.4.0-45.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" + ], + "4.4.0-47/68": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-47-generic_4.4.0-47.68_arm64.deb" + ], + "4.4.0-51/72": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-51-generic_4.4.0-51.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb" + ], + "4.4.0-53/74": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-53-generic_4.4.0-53.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" + ], + "4.4.0-57/78": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-57-generic_4.4.0-57.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" + ], + "4.4.0-59/80": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-59-generic_4.4.0-59.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_arm64.deb" + ], + "4.4.0-62/83": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-62-generic_4.4.0-62.83_arm64.deb" + ], + "4.4.0-63/84": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-63-generic_4.4.0-63.84_arm64.deb" + ], + "4.4.0-64/85": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-64-generic_4.4.0-64.85_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + ], + "4.4.0-66/87": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-66-generic_4.4.0-66.87_arm64.deb" + ], + "4.4.0-67/88": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-67-generic_4.4.0-67.88_arm64.deb" + ], + "4.4.0-70/91": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-70-generic_4.4.0-70.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb" + ], + "4.4.0-71/92": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-71-generic_4.4.0-71.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" + ], + "4.4.0-72/93": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-72-generic_4.4.0-72.93_arm64.deb" + ], + "4.4.0-75/96": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-75-generic_4.4.0-75.96_arm64.deb" + ], + "4.4.0-78/99": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-78-generic_4.4.0-78.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" + ], + "4.4.0-79/100": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-79-generic_4.4.0-79.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" + ], + "4.4.0-81/104": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-81-generic_4.4.0-81.104_arm64.deb" + ], + "4.4.0-83/106": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-83-generic_4.4.0-83.106_arm64.deb" + ], + "4.4.0-87/110": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-87-generic_4.4.0-87.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb" + ], + "4.4.0-89/112": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-89-generic_4.4.0-89.112_arm64.deb" + ], + "4.4.0-91/114": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-91-generic_4.4.0-91.114_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb" + ], + "4.4.0-92/115": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-92-generic_4.4.0-92.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" + ], + "4.4.0-93/116": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-93-generic_4.4.0-93.116_arm64.deb" + ], + "4.4.0-96/119": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-96-generic_4.4.0-96.119_arm64.deb" + ], + "4.4.0-97/120": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-97-generic_4.4.0-97.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" + ], + "4.4.0-98/121": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-98-generic_4.4.0-98.121_arm64.deb" + ], + "4.8.0-34/36~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb" + ], + "4.8.0-36/36~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" + ], + "4.8.0-39/42~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb" + ], + "4.8.0-41/44~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" + ], + "4.8.0-45/48~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" + ], + "4.8.0-46/49~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb" + ], + "4.8.0-49/52~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" + ], + "4.8.0-52/55~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb" + ], + "4.8.0-54/57~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" + ], + "4.8.0-56/61~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" + ], + "4.8.0-58/63~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb" + ], + "4.15.0-38/41~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb" + ], + "4.15.0-48/51~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" + ], + "4.4.0-122/146": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-122-generic_4.4.0-122.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" + ], + "4.4.0-131/157": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-131-generic_4.4.0-131.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb" + ], + "4.4.0-135/161": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-135-generic_4.4.0-135.161_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb" + ], + "4.4.0-140/166": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-140-generic_4.4.0-140.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" + ], + "4.4.0-146/172": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-146-generic_4.4.0-146.172_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" + ], + "4.4.0-43/63": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-43-generic_4.4.0-43.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" + ], + "4.4.0-77/98": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-77-generic_4.4.0-77.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb" + ], + "4.8.0-42/45~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" + ], + "4.8.0-44/47~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb" + ], + "4.8.0-51/54~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" + ], + "4.8.0-53/56~16.04.1": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" + ], + "4.4.0-21/37": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-21-generic_4.4.0-21.37_arm64.deb" + ] + }, + "Flatcar": { + "3033.2.0": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.0/flatcar_developer_container.bin.bz2" + ], + "3033.2.1": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.1/flatcar_developer_container.bin.bz2" + ], + "3033.2.2": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.2/flatcar_developer_container.bin.bz2" + ], + "3033.2.3": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.3/flatcar_developer_container.bin.bz2" + ], + "3033.2.4": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.4/flatcar_developer_container.bin.bz2" + ], + "3139.2.0": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.0/flatcar_developer_container.bin.bz2" + ], + "3033.1.0": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3033.1.0/flatcar_developer_container.bin.bz2" + ], + "3033.1.1": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3033.1.1/flatcar_developer_container.bin.bz2" + ], + "3066.1.0": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.0/flatcar_developer_container.bin.bz2" + ], + "3066.1.1": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.1/flatcar_developer_container.bin.bz2" + ], + "3066.1.2": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.2/flatcar_developer_container.bin.bz2" + ], + "3139.1.0": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3139.1.0/flatcar_developer_container.bin.bz2" + ], + "3139.1.1": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3139.1.1/flatcar_developer_container.bin.bz2" + ], + "3185.1.0": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3185.1.0/flatcar_developer_container.bin.bz2" + ], + "2345.0.1": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2345.0.1/flatcar_developer_container.bin.bz2" + ], + "2345.0.2": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2345.0.2/flatcar_developer_container.bin.bz2" + ], + "2387.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2387.0.0/flatcar_developer_container.bin.bz2" + ], + "2411.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2411.0.0/flatcar_developer_container.bin.bz2" + ], + "2430.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2430.0.0/flatcar_developer_container.bin.bz2" + ], + "2466.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2466.0.0/flatcar_developer_container.bin.bz2" + ], + "2492.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2492.0.0/flatcar_developer_container.bin.bz2" + ], + "2513.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2513.0.0/flatcar_developer_container.bin.bz2" + ], + "2513.0.1": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2513.0.1/flatcar_developer_container.bin.bz2" + ], + "2513.1.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2513.1.0/flatcar_developer_container.bin.bz2" + ], + "2592.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2592.0.0/flatcar_developer_container.bin.bz2" + ], + "2605.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2605.0.0/flatcar_developer_container.bin.bz2" + ], + "2605.1.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2605.1.0/flatcar_developer_container.bin.bz2" + ], + "2632.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2632.0.0/flatcar_developer_container.bin.bz2" + ], + "2661.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2661.0.0/flatcar_developer_container.bin.bz2" + ], + "2671.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2671.0.0/flatcar_developer_container.bin.bz2" + ], + "2697.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2697.0.0/flatcar_developer_container.bin.bz2" + ], + "2705.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2705.0.0/flatcar_developer_container.bin.bz2" + ], + "2723.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2723.0.0/flatcar_developer_container.bin.bz2" + ], + "2748.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2748.0.0/flatcar_developer_container.bin.bz2" + ], + "2783.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2783.0.0/flatcar_developer_container.bin.bz2" + ], + "2801.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2801.0.0/flatcar_developer_container.bin.bz2" + ], + "2801.0.1": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2801.0.1/flatcar_developer_container.bin.bz2" + ], + "2823.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2823.0.0/flatcar_developer_container.bin.bz2" + ], + "2857.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2857.0.0/flatcar_developer_container.bin.bz2" + ], + "2879.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2879.0.0/flatcar_developer_container.bin.bz2" + ], + "2879.0.1": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2879.0.1/flatcar_developer_container.bin.bz2" + ], + "2905.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2905.0.0/flatcar_developer_container.bin.bz2" + ], + "2920.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2920.0.0/flatcar_developer_container.bin.bz2" + ], + "2942.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2942.0.0/flatcar_developer_container.bin.bz2" + ], + "2955.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2955.0.0/flatcar_developer_container.bin.bz2" + ], + "2969.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2969.0.0/flatcar_developer_container.bin.bz2" + ], + "2983.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2983.0.0/flatcar_developer_container.bin.bz2" + ], + "3005.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3005.0.0/flatcar_developer_container.bin.bz2" + ], + "3005.0.1": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3005.0.1/flatcar_developer_container.bin.bz2" + ], + "3033.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3033.0.0/flatcar_developer_container.bin.bz2" + ], + "3046.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3046.0.0/flatcar_developer_container.bin.bz2" + ], + "3066.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3066.0.0/flatcar_developer_container.bin.bz2" + ], + "3115.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3115.0.0/flatcar_developer_container.bin.bz2" + ], + "3127.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3127.0.0/flatcar_developer_container.bin.bz2" + ], + "3139.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3139.0.0/flatcar_developer_container.bin.bz2" + ], + "3165.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3165.0.0/flatcar_developer_container.bin.bz2" + ], + "3185.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3185.0.0/flatcar_developer_container.bin.bz2" + ], + "3200.0.0": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3200.0.0/flatcar_developer_container.bin.bz2" + ] + } +} diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json new file mode 100644 index 0000000..fd4af95 --- /dev/null +++ b/kernels/x86_64/list.json @@ -0,0 +1,30469 @@ +{ + "AmazonLinux": { + "4.9.17-8.31.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/main/201703c0ffee/x86_64/Packages/kernel-devel-4.9.17-8.31.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/main/201703c0ffee/x86_64/Packages/kernel-4.9.17-8.31.amzn1.x86_64.rpm" + ], + "4.9.32-15.41.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.32-15.41.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.32-15.41.amzn1.x86_64.rpm" + ], + "4.9.38-16.33.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.38-16.33.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.38-16.33.amzn1.x86_64.rpm" + ], + "4.9.27-14.31.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.27-14.31.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.27-14.31.amzn1.x86_64.rpm" + ], + "4.9.43-17.38.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.43-17.38.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.43-17.38.amzn1.x86_64.rpm" + ], + "4.9.27-14.33.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.27-14.33.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.27-14.33.amzn1.x86_64.rpm" + ], + "4.9.20-11.31.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.20-11.31.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.20-11.31.amzn1.x86_64.rpm" + ], + "4.9.38-16.35.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.38-16.35.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.38-16.35.amzn1.x86_64.rpm" + ], + "4.9.43-17.39.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.43-17.39.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.43-17.39.amzn1.x86_64.rpm" + ], + "4.9.20-10.30.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.20-10.30.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.20-10.30.amzn1.x86_64.rpm" + ], + "4.9.51-10.52.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/main/154a6dd467e2/x86_64/Packages/kernel-devel-4.9.51-10.52.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/main/154a6dd467e2/x86_64/Packages/kernel-4.9.51-10.52.amzn1.x86_64.rpm" + ], + "4.9.91-40.57.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.91-40.57.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.91-40.57.amzn1.x86_64.rpm" + ], + "4.9.76-3.78.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.76-3.78.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.76-3.78.amzn1.x86_64.rpm" + ], + "4.9.75-25.55.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.75-25.55.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.75-25.55.amzn1.x86_64.rpm" + ], + "4.9.93-41.60.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.93-41.60.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.93-41.60.amzn1.x86_64.rpm" + ], + "4.9.58-18.51.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.58-18.51.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.58-18.51.amzn1.x86_64.rpm" + ], + "4.9.70-22.55.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.70-22.55.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.70-22.55.amzn1.x86_64.rpm" + ], + "4.9.62-21.56.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.62-21.56.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.62-21.56.amzn1.x86_64.rpm" + ], + "4.9.85-38.58.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.85-38.58.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.85-38.58.amzn1.x86_64.rpm" + ], + "4.9.116-43.59.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.116-43.59.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.116-43.59.amzn1.x86_64.rpm" + ], + "4.9.77-31.58.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.77-31.58.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.77-31.58.amzn1.x86_64.rpm" + ], + "4.9.70-25.242.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.70-25.242.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.70-25.242.amzn1.x86_64.rpm" + ], + "4.9.85-37.55.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.85-37.55.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.85-37.55.amzn1.x86_64.rpm" + ], + "4.9.81-35.56.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.81-35.56.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.81-35.56.amzn1.x86_64.rpm" + ], + "4.9.119-44.140.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.119-44.140.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.119-44.140.amzn1.x86_64.rpm" + ], + "4.9.58-18.55.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.58-18.55.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.58-18.55.amzn1.x86_64.rpm" + ], + "4.14.26-46.32.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/main/c31535f74c6e/x86_64/Packages/kernel-4.14.26-46.32.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/main/c31535f74c6e/x86_64/Packages/kernel-devel-4.14.26-46.32.amzn1.x86_64.rpm" + ], + "4.14.152-98.182.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.152-98.182.amzn1.x86_64.rpm" + ], + "4.14.88-72.76.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.88-72.76.amzn1.x86_64.rpm" + ], + "4.14.209-117.337.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.209-117.337.amzn1.x86_64.rpm" + ], + "4.14.165-103.209.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.165-103.209.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" + ], + "4.14.232-123.381.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.232-123.381.amzn1.x86_64.rpm" + ], + "4.14.154-99.181.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.154-99.181.amzn1.x86_64.rpm" + ], + "4.14.238-125.422.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.238-125.422.amzn1.x86_64.rpm" + ], + "4.14.121-85.96.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.121-85.96.amzn1.x86_64.rpm" + ], + "4.14.186-110.268.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.186-110.268.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" + ], + "4.14.225-121.357.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.225-121.357.amzn1.x86_64.rpm" + ], + "4.14.77-69.57.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.77-69.57.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" + ], + "4.14.181-108.257.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.181-108.257.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" + ], + "4.14.33-51.34.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.33-51.34.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" + ], + "4.14.262-135.489.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.262-135.489.amzn1.x86_64.rpm" + ], + "4.14.123-86.109.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.123-86.109.amzn1.x86_64.rpm" + ], + "4.14.114-83.126.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.114-83.126.amzn1.x86_64.rpm" + ], + "4.14.173-106.229.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.173-106.229.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" + ], + "4.14.88-72.73.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.88-72.73.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" + ], + "4.14.97-74.72.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.97-74.72.amzn1.x86_64.rpm" + ], + "4.14.42-52.37.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.42-52.37.amzn1.x86_64.rpm" + ], + "4.14.165-102.185.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.165-102.185.amzn1.x86_64.rpm" + ], + "4.14.143-91.122.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.143-91.122.amzn1.x86_64.rpm" + ], + "4.14.128-87.105.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.128-87.105.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" + ], + "4.14.114-82.97.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.114-82.97.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" + ], + "4.14.62-65.117.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.62-65.117.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" + ], + "4.14.177-107.254.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.177-107.254.amzn1.x86_64.rpm" + ], + "4.14.133-88.112.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.133-88.112.amzn1.x86_64.rpm" + ], + "4.14.104-78.84.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.104-78.84.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" + ], + "4.14.219-119.340.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.219-119.340.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" + ], + "4.14.51-60.38.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.51-60.38.amzn1.x86_64.rpm" + ], + "4.14.225-121.362.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.225-121.362.amzn1.x86_64.rpm" + ], + "4.14.94-73.73.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.94-73.73.amzn1.x86_64.rpm" + ], + "4.14.138-89.102.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.138-89.102.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" + ], + "4.14.171-105.231.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.171-105.231.amzn1.x86_64.rpm" + ], + "4.14.268-139.500.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.268-139.500.amzn1.x86_64.rpm" + ], + "4.14.101-75.76.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.101-75.76.amzn1.x86_64.rpm" + ], + "4.14.106-79.86.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.106-79.86.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" + ], + "4.14.158-101.185.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.158-101.185.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" + ], + "4.14.67-66.56.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.67-66.56.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" + ], + "4.14.133-88.105.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.133-88.105.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" + ], + "4.14.262-135.486.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.262-135.486.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" + ], + "4.14.55-62.37.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.55-62.37.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" + ], + "4.14.248-129.473.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.248-129.473.amzn1.x86_64.rpm" + ], + "4.14.72-68.55.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.72-68.55.amzn1.x86_64.rpm" + ], + "4.14.146-93.123.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.146-93.123.amzn1.x86_64.rpm" + ], + "4.14.47-56.37.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.47-56.37.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" + ], + "4.14.33-51.37.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.33-51.37.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" + ], + "4.14.70-67.55.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.70-67.55.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" + ], + "4.14.238-125.421.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.238-125.421.amzn1.x86_64.rpm" + ], + "4.14.273-140.502.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.273-140.502.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" + ], + "4.14.200-116.320.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.200-116.320.amzn1.x86_64.rpm" + ], + "4.14.77-70.59.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.77-70.59.amzn1.x86_64.rpm" + ], + "4.14.77-70.82.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.77-70.82.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" + ], + "4.14.203-116.332.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.203-116.332.amzn1.x86_64.rpm" + ], + "4.14.252-131.483.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.252-131.483.amzn1.x86_64.rpm" + ], + "4.14.109-80.92.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.109-80.92.amzn1.x86_64.rpm" + ], + "4.14.193-113.317.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.193-113.317.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" + ], + "4.14.59-64.43.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.59-64.43.amzn1.x86_64.rpm" + ], + "4.14.214-118.339.amzn1.x86_64": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.214-118.339.amzn1.x86_64.rpm", + "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" + ] + }, + "AmazonLinux2": { + "4.14.51-66.38.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8c7f0f9fafbfd310843ab5fab25a83dbb9ea03dd7cc9a0cb7aeea4edc7ba86bd/kernel-4.14.51-66.38.amzn2.x86_64.rpm" + ], + "4.14.209-160.339.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/008b5c46fc5e20ef8e17b21f70cef27876cfd7347f61f21032eb69863f980288/kernel-4.14.209-160.339.amzn2.x86_64.rpm" + ], + "4.9.76-38.79.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0d4c311ab0040ef613d3b56d01618e1c229928ad92e2ec86cee1588f9cb17943/kernel-4.9.76-38.79.amzn2.x86_64.rpm" + ], + "4.14.72-73.55.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/372b017cd34cd2baca3554c98f0889d993d7d5ecc4af281d3959663022af869a/kernel-4.14.72-73.55.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" + ], + "4.14.146-120.181.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e683bb49e282d8a4adc265f851665fdc469e790ff02a2a9099286a07a6f1ca45/kernel-4.14.146-120.181.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" + ], + "4.14.225-168.357.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c3260daf386439efdb928fc0736e452e0469133acc125c3f1c2f5df57f948c11/kernel-4.14.225-168.357.amzn2.x86_64.rpm" + ], + "4.14.152-127.182.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6cae21fc73c7a043e1a635c7efc3afb5e8a1ad0a1a91565655d08df36ec7114f/kernel-4.14.152-127.182.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" + ], + "4.14.181-142.260.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/632bc5eb727b1538ad17d60ffd76e3f08a6034b007caec48f74a0c4bb8f65b03/kernel-4.14.181-142.260.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" + ], + "4.14.273-207.502.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ca410d11ea07cce13a20f5ae390970c121045d4dabe2abd1b5dbe44f364273db/kernel-4.14.273-207.502.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" + ], + "4.14.252-195.483.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/186c1da4e5fc99cbff604e35fbdc7f5fcee6e87c6fe92e54f2f1c2af6db1a676/kernel-4.14.252-195.483.amzn2.x86_64.rpm" + ], + "4.9.75-1.56.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/dfca174f9ba13ef67e4e532c6819df9736f9337588962d05b337cfcbfcef76f8/kernel-4.9.75-1.56.amzn2.x86_64.rpm" + ], + "4.14.165-131.185.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b70379e880c9de2f316f0ba0425ae6137b8a70a519c2c7118464340f07b6036e/kernel-4.14.165-131.185.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" + ], + "4.14.26-54.32.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/273cc5022a976cea6cadfceedead5f463419194954ea7b9cbadaf13699bf57fd/kernel-4.14.26-54.32.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" + ], + "4.14.192-147.314.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/308af1ccbf8eb01beb5e0c3f5a37bab7d65423d71c590cae1cb58053dbf9b5b1/kernel-4.14.192-147.314.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" + ], + "4.14.186-146.268.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f55e0b38b9b854b74c7c9b3613ca74d1d91f174db30f4371e6e44901091b4a86/kernel-4.14.186-146.268.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" + ], + "4.14.55-68.37.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4bfd9b8ccb6a453079e934d2355e752508cc12cc8aea30076290f3c879d6a852/kernel-4.14.55-68.37.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" + ], + "4.14.133-113.105.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2a2e5852b45e2874cefef210d1f9d8096b19d79bc38a7a21ce9801bfc58bab6e/kernel-4.14.133-113.105.amzn2.x86_64.rpm" + ], + "4.9.62-10.57.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/65303ab3ce6c24c65a52df467ff5b685aa3fedd713f88b7a266c2042f05b432a/kernel-4.9.62-10.57.amzn2.x86_64.rpm" + ], + "4.14.88-88.76.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/99e2195cee7700336b32d9e5eebcd4d6baa20fa28ce0920af5bce012b8090da8/kernel-4.14.88-88.76.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" + ], + "4.14.225-169.362.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9d70b5ef17b3429672c98e1a68a614fbc7d7c3cf10c2add7adf293de61656b1c/kernel-4.14.225-169.362.amzn2.x86_64.rpm" + ], + "4.14.114-103.97.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f1c577510be0f0666b866bd1730b7385d3231221f4008cca786cefae1622d632/kernel-4.14.114-103.97.amzn2.x86_64.rpm" + ], + "4.14.42-61.37.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/61fe08e946c5e09d71643c30b1f4144550f26949e8ec89a3aac0dcc3f8135a85/kernel-4.14.42-61.37.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" + ], + "4.14.232-177.418.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/10bc7c9ac40b1b78e5c50349ab5efb3ec0f7b310521e01e06018dcbb3566b8fe/kernel-4.14.232-177.418.amzn2.x86_64.rpm" + ], + "4.14.193-149.317.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5b3f2826e8af28d7f82c3a3d9600bf7b163b119d204b8c610bb526527a46c786/kernel-4.14.193-149.317.amzn2.x86_64.rpm" + ], + "4.14.101-91.76.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/463b80bc15f21845388392ae4f25d0db86d0c19e4c6505ebc0598ca43cccfe73/kernel-4.14.101-91.76.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" + ], + "4.14.33-59.37.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c5f241b39577e68367ffb0466ea218455c35c787d7b143ae84df927982ad8155/kernel-4.14.33-59.37.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" + ], + "4.14.47-63.37.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/63c787287ed30810d4da1a65a8427ab51f5a8579ebbdffb5fb05c5697876a852/kernel-4.14.47-63.37.amzn2.x86_64.rpm" + ], + "4.14.109-99.92.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4247d24c27a4daea1b5fb3b5f795e131a284e0a22be50a20b077fc7a47fb750d/kernel-4.14.109-99.92.amzn2.x86_64.rpm" + ], + "4.14.59-68.43.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6ca4937fcc692040e38c0c49d63028ed55246f513fc9eccec61b349da465bb60/kernel-4.14.59-68.43.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" + ], + "4.14.214-160.339.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/07c45b5b4f5bd182cc89a75a1a94d35e7023259f023359e101a16e76b37c2a7a/kernel-4.14.214-160.339.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" + ], + "4.14.171-136.231.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2401407e2b5e1961a9e8ffc7922e23a74b4e820453e33c37da0b9e3436ab4030/kernel-4.14.171-136.231.amzn2.x86_64.rpm" + ], + "4.14.77-86.82.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f6c94dd0d90a39747969bd90a7dd8bd6d1cb4cc15d4899354eee4befaa0d886f/kernel-4.14.77-86.82.amzn2.x86_64.rpm" + ], + "4.14.231-173.361.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6ff4cd3a6c5814f9c0728a87c238357dfa9db20b4ebf648f0f215a8dd67d5ee0/kernel-4.14.231-173.361.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" + ], + "4.14.123-111.109.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f9bb448e80062bb0a4b784684c7f15d7457c7efbbf46576ae32d62c708e0acf6/kernel-4.14.123-111.109.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" + ], + "4.14.243-185.433.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d820d928058a36c200aeec6ef4ab52cdbeb2e061bffa5c7f43b62332212957f1/kernel-4.14.243-185.433.amzn2.x86_64.rpm" + ], + "4.14.219-161.340.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e8fa40ea8dff8e9b30625bc7b4c9361f9b1976a0ee17c9546c48389b7cfe46ce/kernel-4.14.219-161.340.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" + ], + "4.14.268-205.500.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/731fa3d4fcc1cabc6ee37ede943f9c484a1218ad72d1ef1a5b0d49862a79277d/kernel-4.14.268-205.500.amzn2.x86_64.rpm" + ], + "4.14.219-164.354.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f2f4b68853d103b9b9219913e6cc1bca287b05c049874e8e3dc22e80c598272e/kernel-4.14.219-164.354.amzn2.x86_64.rpm" + ], + "4.14.138-114.102.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1de1db3610f2d619c5bc1dc55c4ce33a2cbddbcd90d770d705037b4a20698755/kernel-4.14.138-114.102.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" + ], + "4.14.77-80.57.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5e302394d55f190fb4f0c2a1439cd287f8600aea28cd8c4a2c7cc81f1a508722/kernel-4.14.77-80.57.amzn2.x86_64.rpm" + ], + "4.14.70-72.55.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0937ec17bb2eafa9baeb8e67887567eeb3354cd0f3389cc472a1c55c2c773d77/kernel-4.14.70-72.55.amzn2.x86_64.rpm" + ], + "4.14.88-88.73.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8f93b7a88c6baa55459bfd633ddd8f6e65067d4bc8bc04ca727ef82c904b109a/kernel-4.14.88-88.73.amzn2.x86_64.rpm" + ], + "4.14.146-119.123.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/11bc84bbb759d63b7d5d8b0b05e6094d245a97f26f32b76e126052be8557041a/kernel-4.14.146-119.123.amzn2.x86_64.rpm" + ], + "4.9.85-46.56.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1ace4e5b7c5bb854bf32706520702ee5f963d972987d6e93b9fd5ad31428a1e8/kernel-4.9.85-46.56.amzn2.x86_64.rpm" + ], + "4.14.143-118.123.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d2d50b3403ce331785529b989dec28d43cb9a72e938e2ad9c22dc08b0191dfa8/kernel-4.14.143-118.123.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" + ], + "4.14.106-97.85.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6a6f8afa9d6143e87771b81c26cfd4395bf4bcf3619fb61824f875b70dd0f499/kernel-4.14.106-97.85.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" + ], + "4.14.181-140.257.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b81bc0a4d4a58731e8b734de30c62a39afe010871a758283494e312df39a0c90/kernel-4.14.181-140.257.amzn2.x86_64.rpm" + ], + "4.14.256-197.484.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a20488f95461dba5c381064a333554b81d5feac5d026b49f4b7708feaa31f52e/kernel-4.14.256-197.484.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" + ], + "4.14.67-71.56.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a01ce1cd0b2528665f49dede6e797548c3ce7e94d973ec755a9dcb8fd3507a65/kernel-4.14.67-71.56.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" + ], + "4.14.246-187.474.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8bd8b469421bc1cff8845de9b526274cda82b0f7cd513fb407dfaffc733ee0a1/kernel-4.14.246-187.474.amzn2.x86_64.rpm" + ], + "4.14.241-184.433.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b7545f14edfdf02ef6d1f20dbe906e95bb48303dc73d29f97ec650dd4c0fba1d/kernel-4.14.241-184.433.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" + ], + "4.9.85-47.59.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b14b81b3fbe31a8ea3563de30ad49af2c50cf80d55dd4aebb25c904050925b36/kernel-4.9.85-47.59.amzn2.x86_64.rpm" + ], + "4.14.133-113.112.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/430e83f79f26ba39380f0dbc9a8be86e25ae4108b3e5921be3e8afb04d6c74e9/kernel-4.14.133-113.112.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" + ], + "4.14.200-155.322.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8da3427740802e1466366393c81e3e7552450f31057708aecacf63e901b52d07/kernel-4.14.200-155.322.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" + ], + "4.14.209-160.335.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/dcb2f3b00c27fa8b6ddeb9416ca8e01a93aadecb43a1f127a34cd0b24e920122/kernel-4.14.209-160.335.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" + ], + "4.14.177-139.254.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0512593a7864c0bccd240b5deacc316ee908898598fdc6e6b58b23b40fc90268/kernel-4.14.177-139.254.amzn2.x86_64.rpm" + ], + "4.14.198-152.320.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e3fee2c9dc382e5300dab5cc673cd57ab49768cb894ada1e39d83d11471b2524/kernel-4.14.198-152.320.amzn2.x86_64.rpm" + ], + "4.14.77-81.59.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bff4796f8e261ecc85d9c7cb7b10c75dbd26ee2f99a7ac70ca25241cf7c6eb75/kernel-4.14.77-81.59.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" + ], + "4.14.238-182.422.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/60cec016cc93fcf66079166a5d2e848649fff931456bfdab4f7b46a5abc7d21b/kernel-4.14.238-182.422.amzn2.x86_64.rpm" + ], + "4.14.154-128.181.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/38e8982f4cb792e7ba3cac78950596bc8b17bd32ad21ffc8f68f4d7e73e7bce4/kernel-4.14.154-128.181.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" + ], + "4.14.114-105.126.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b68df43c87ddf2e9741bb217f3c6ef4c036cc5f63e830d636fb4a49a1d789136/kernel-4.14.114-105.126.amzn2.x86_64.rpm" + ], + "4.9.70-2.243.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/48d108446f48b0fbe5dd3697b1914d7fee4f1cc32b0760c428da3466e9295daf/kernel-4.9.70-2.243.amzn2.x86_64.rpm" + ], + "4.14.231-173.360.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f3e63192f79dd8287f62f5b11716116174a69c6c768c4a6e34bc2272b95e5f44/kernel-4.14.231-173.360.amzn2.x86_64.rpm" + ], + "4.14.104-95.84.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/332cfd723a2d59e9733cfd913ef2353337470d34f2bde61fa9504a559df24a8f/kernel-4.14.104-95.84.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" + ], + "4.14.97-90.72.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/86b2a8219a7b09f9dae7610d24e900feb82d9b92ad9d8af3aaa19d8ae851166f/kernel-4.14.97-90.72.amzn2.x86_64.rpm" + ], + "4.14.165-133.209.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5482281c6474fb1e2e26161f8ce2632205b6effbd3fe180d82f65e74f92bb093/kernel-4.14.165-133.209.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" + ], + "4.14.121-109.96.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a7d89ec33e9b710836a08ce2cb5ab1d6d9938d970740676364d1fb0ea06509c8/kernel-4.14.121-109.96.amzn2.x86_64.rpm" + ], + "4.14.47-64.38.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a8b380be1e33c0444815eea13cc7c283b7691afc373ca6e3c5f1aeb874b2e673/kernel-4.14.47-64.38.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" + ], + "4.14.94-89.73.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b2f86c3d627782b8505f2441d75336d0f9f5c6173dc27c6c65bb46ed8e0dffad/kernel-4.14.94-89.73.amzn2.x86_64.rpm" + ], + "4.14.158-129.185.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bd642125e672ee511af79510b4fd1b3834b965f9b07d54600bc6dfe9261ba1f1/kernel-4.14.158-129.185.amzn2.x86_64.rpm" + ], + "4.14.33-59.34.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/3e6e8fd644a0a6d742c5f0aa2edc926d89e886deb8159ec99e3eeccf1032baea/kernel-4.14.33-59.34.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" + ], + "4.14.203-156.332.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b7bec3c3098fea48d53b22b2cc2d4defe7209864f569199bc0c620f4a30ad032/kernel-4.14.203-156.332.amzn2.x86_64.rpm" + ], + "4.14.262-200.489.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ab11f893a17b2a2ba3379afb1cf05c8d8b6955c589a6a75ba33251d1af2ccfe5/kernel-4.14.262-200.489.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" + ], + "4.14.128-112.105.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/79255f3bc601f7f3b2d5bc0de98937826cc973f9f15fd5c2c4a9d6b10974d156/kernel-4.14.128-112.105.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" + ], + "4.14.152-124.171.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ebfe07b67e5153b3dbf78a8217d1bd5763858049dad35097a249baea5d0d4860/kernel-4.14.152-124.171.amzn2.x86_64.rpm" + ], + "4.14.232-176.381.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/606a48710b2ed02a79bcb03be75bdbd45f9a4784dfd3b292d9284a8a3e622ea7/kernel-4.14.232-176.381.amzn2.x86_64.rpm" + ], + "4.14.173-137.229.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/25b40f07b213686f653c30e8c6fd6d714ff5d9c9354eb28826ab328438836256/kernel-4.14.173-137.229.amzn2.x86_64.rpm" + ], + "4.9.81-44.57.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8e391a8337cf519c0917a500f6514a4937cf2c4d5f3a28c0690ac837151ddf29/kernel-4.9.81-44.57.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" + ], + "4.14.173-137.228.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f15b02afc0b8e3ddd9bd2ad2025c16e9d92fda0efe063646df2c4b93c792e418/kernel-4.14.173-137.228.amzn2.x86_64.rpm" + ], + "4.9.77-41.59.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/db0c201d34471c2269ec0f2ba62e9d632c78aa624c9ba053e018dec29e1b925a/kernel-4.9.77-41.59.amzn2.x86_64.rpm" + ], + "4.14.177-139.253.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cf851b3268123e1198549fe15de2102a1d121b7f269c42844693247fd814e46d/kernel-4.14.177-139.253.amzn2.x86_64.rpm" + ], + "4.14.62-70.117.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ccccf09f9aea9193d2d79688689446bd70698dd328d621d710a022033c97c1b0/kernel-4.14.62-70.117.amzn2.x86_64.rpm" + ], + "4.14.248-189.473.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fe85db2ea466f85c9292ea3fb175f331b97be5f73b861088b34ec71b2d20f54a/kernel-4.14.248-189.473.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" + ], + "4.14.252-195.481.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/08261230667b3daec90f04496820434023025d667a0362c12d1dd72e4f02d4fb/kernel-4.14.252-195.481.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" + ], + "4.14.238-182.421.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5fd72b7148fc9b980f182b29b1dd32a13c4a9b4c6be7f574bdb04cdee29f277c/kernel-4.14.238-182.421.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" + ], + "5.10.68-62.173.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/4ee26d16e9fcc21db0f6c86a983a7e28afc37a78b2702facdeef45b4bf89c96b/kernel-5.10.68-62.173.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" + ], + "5.10.50-44.132.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/32f45930877a45bb2ec8b49485557c4964af82a490614e9a9b69929a0fb9d494/kernel-5.10.50-44.132.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" + ], + "5.10.102-99.473.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/8d4c2963a205530bb3c2855c17dcfec38be4b1077eeed185a81865f52d302700/kernel-5.10.102-99.473.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" + ], + "5.10.29-27.126.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/dc6cab3de983e79bfc603f29c57af5ba8ee043476110b962ce686f0718417da9/kernel-5.10.29-27.126.amzn2.x86_64.rpm" + ], + "5.10.50-44.131.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/843d5be39a2377e814d11fda4eddf27bb38adc44776a6b4051ad754fd63ab9b5/kernel-5.10.50-44.131.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" + ], + "5.10.29-27.128.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/9f7a2da752c13a6b0ae98ba06cc7655dbbe09441eab4660d26cee2fc475fca8b/kernel-5.10.29-27.128.amzn2.x86_64.rpm" + ], + "5.10.96-90.460.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/6edf4603d8111626790e26e1918f17875764b802dbfb48ad535908318da325fa/kernel-5.10.96-90.460.amzn2.x86_64.rpm" + ], + "5.10.82-83.359.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/07adb2960f53ea65ca7411f68f26886836b8475d422b57aca9effb5201162389/kernel-5.10.82-83.359.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" + ], + "5.10.106-102.504.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/90f0ed9caf0cafa7d585d13a689b70cca36fecc1e0d11c754c547785d9289cca/kernel-5.10.106-102.504.amzn2.x86_64.rpm" + ], + "5.10.62-55.141.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/2fa6fa7fed103638aa4f3fe57e889078cb8df77e7615496ef8b5d9d1fa23089c/kernel-5.10.62-55.141.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" + ], + "5.10.35-31.135.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/4db89b6c6888462e03c2066d1244a2cfb964973476836fc80faeb0181a69f828/kernel-5.10.35-31.135.amzn2.x86_64.rpm" + ], + "5.10.47-39.130.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/55571c55c399bf33b3629823b0d1e710be7f128de88fc92c9c24ee6614630b7c/kernel-5.10.47-39.130.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" + ], + "5.10.93-87.444.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/8e7220f0c978db2fc968585e207d00ec104de924927ec7626df983ccf5d849db/kernel-5.10.93-87.444.amzn2.x86_64.rpm" + ], + "5.10.75-79.358.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/20d36598b2bc8e534ed0b5448e4b9d029ac7e05296e079fe1aee99422c9cc3ab/kernel-5.10.75-79.358.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" + ], + "5.10.59-52.142.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/417f0770993f9822c803f581e382aaf28b68c67ad963d8be4df5cbc6571cc25a/kernel-5.10.59-52.142.amzn2.x86_64.rpm" + ], + "5.4.144-69.257.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/0b9f2c2ee88463e69952add62387431ed4c15369ce30c6c5dd1deadf14c3b170/kernel-5.4.144-69.257.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" + ], + "5.4.74-36.135.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/a9d4f1a975086ac6a0b685897cdb7058999f25979fcc3f6722b41dcc24e5a09d/kernel-5.4.74-36.135.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" + ], + "5.4.181-99.354.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/44d3764ccbba2c440496a0e013d223742059c57517e67a8b2fc084cdf4b62b0c/kernel-5.4.181-99.354.amzn2.x86_64.rpm" + ], + "5.4.149-73.259.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/ffcad56ef43151a80fd67431aee6e3658209640b5e4e6dc96edbb0ecd646fc13/kernel-5.4.149-73.259.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" + ], + "5.4.58-32.125.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/0af4abdd696da7d8c7f8a9841a7b3f7bea2e69169a30b238e49aa5fd19d6c6f3/kernel-5.4.58-32.125.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" + ], + "5.4.129-63.229.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/da7ee27cc75d71d491bc7fc303b8342e16ad8fd8ee61aa9082509c78664d9aaa/kernel-5.4.129-63.229.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" + ], + "5.4.105-48.177.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/2fb7dedc373212a9e5258511e729e040a054d8f32a80fe9cc122acefd3807b93/kernel-5.4.105-48.177.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" + ], + "5.4.95-42.163.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/3bc6899a9b3c0af9d3ad06984e08ed4420bee7942707bc8813a5883a184c5eca/kernel-5.4.95-42.163.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" + ], + "5.4.91-41.139.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8740c967bcaa937343602de4725bf2bbd792bd01a051aa1599ec4bbbeb4fb8e5/kernel-5.4.91-41.139.amzn2.x86_64.rpm" + ], + "5.4.117-58.216.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/7d82d21a61fa03af4b3afd5fcf2309d5b6a1f5a01909a1b6190e8ddae8a67b89/kernel-5.4.117-58.216.amzn2.x86_64.rpm" + ], + "5.4.162-86.275.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/42cebcdc6f5e4cc37413f3cf47d65cf8f7ceb1a0a1ff79e434a57dcafc374301/kernel-5.4.162-86.275.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" + ], + "5.4.50-25.83.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d3c779030bbbec864afeb8679095c9b207dacd52e81fab015dfe3d47ae42265c/kernel-5.4.50-25.83.amzn2.x86_64.rpm" + ], + "5.4.58-27.104.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/5d45107c31da11d8e9f18e2998f0945e741eea7442fa0f42e403e8225b1bf8c2/kernel-5.4.58-27.104.amzn2.x86_64.rpm" + ], + "5.4.176-91.338.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/09cc8426d137980283238010449f3979f3d7436bda2a96226007a3fc059b46d7/kernel-5.4.176-91.338.amzn2.x86_64.rpm" + ], + "5.4.38-17.76.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/26bae91f033ca8e8957581c1ded33d16516aa5273fa9574d39c2603cd7c1b6ea/kernel-5.4.38-17.76.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" + ], + "5.4.141-67.229.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/921f6950900750341f2c208937d07eeb13f16831d6c9bc2f0a8613d1b53ce937/kernel-5.4.141-67.229.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" + ], + "5.4.156-83.273.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/0e8ad89ee07bbc13d9c29387c570eb4f9b696c2ddfb26ac61072fdd89cc03090/kernel-5.4.156-83.273.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" + ], + "5.4.46-19.75.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/31e08799d7b945c616d397399b2f0eb202259de4163f7f0e1809b8fd03642893/kernel-5.4.46-19.75.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" + ], + "5.4.110-54.182.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/54e9071fbf42d33ed9d122c1b3a0a6fcfd48cc4313c98c13bce5f71b0990a06b/kernel-5.4.110-54.182.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" + ], + "5.4.46-23.77.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/66f13abb905f411a0347a9e02fe9fd60ffed7696ef659f028fb01448900ceec2/kernel-5.4.46-23.77.amzn2.x86_64.rpm" + ], + "5.4.129-62.227.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/6f2b05083bc357370ad4ff081162a21e07ba21b4961eb3dc6ccd667a12a7c9a9/kernel-5.4.129-62.227.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" + ], + "5.4.68-34.125.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/20110ab1563cb70866a32a0021824266476b6be68465e5b5ba0008065da70518/kernel-5.4.68-34.125.amzn2.x86_64.rpm" + ], + "5.4.20-12.75.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/1d8db357d4639b835c6492e81e686f61f8c1e32847b9430dfacf55148e1998b7/kernel-5.4.20-12.75.amzn2.x86_64.rpm" + ], + "5.4.186-102.354.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/46f6ca4a31f0f6f674d12218e5a028362dbf838b58846ac136dc8ec18a91cb6a/kernel-5.4.186-102.354.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" + ], + "5.4.110-54.189.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/98d8f51f141e79d42c8e607e992c0d41fddabfb9e30bc322b3ea93c18561e8f6/kernel-5.4.110-54.189.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" + ], + "5.4.172-90.336.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c296099d9bee443a258a099b9306f06e8d3a40a2ede5bcb0a9722f3b6fc57bce/kernel-5.4.172-90.336.amzn2.x86_64.rpm" + ], + "5.4.80-40.140.amzn2.x86_64": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm", + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/b4532b952f208f19625e502193e0a0e97ad648b2f2d570ee1512e870f48dad94/kernel-5.4.80-40.140.amzn2.x86_64.rpm" + ] + }, + "CentOS": { + "3.10.0-1160.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/os/x86_64/Packages/kernel-3.10.0-1160.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/os/x86_64/Packages/kernel-3.10.0-1160.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" + ], + "3.10.0-1160.11.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.11.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.11.1.el7.x86_64.rpm" + ], + "3.10.0-1160.15.2.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.15.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.15.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + ], + "3.10.0-1160.2.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.2.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.2.1.el7.x86_64.rpm" + ], + "3.10.0-1160.2.2.el7.x86_64": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.2.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.2.2.el7.x86_64.rpm" + ], + "3.10.0-1160.21.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.21.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.21.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" + ], + "3.10.0-1160.24.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.24.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.24.1.el7.x86_64.rpm" + ], + "3.10.0-1160.25.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.25.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.25.1.el7.x86_64.rpm" + ], + "3.10.0-1160.31.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.31.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.31.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" + ], + "3.10.0-1160.36.2.el7.x86_64": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.36.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.36.2.el7.x86_64.rpm" + ], + "3.10.0-1160.41.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.41.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.41.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" + ], + "3.10.0-1160.42.2.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.42.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.42.2.el7.x86_64.rpm" + ], + "3.10.0-1160.45.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.45.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.45.1.el7.x86_64.rpm" + ], + "3.10.0-1160.49.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.49.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.49.1.el7.x86_64.rpm" + ], + "3.10.0-1160.53.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.53.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.53.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" + ], + "3.10.0-1160.59.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.59.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.59.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" + ], + "3.10.0-1160.6.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.6.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.6.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" + ], + "3.10.0-1160.62.1.el7.x86_64": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.62.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm", + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.62.1.el7.x86_64.rpm" + ], + "2.6.32-71.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/os/x86_64/Packages/kernel-devel-2.6.32-71.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.0/os/x86_64/Packages/kernel-2.6.32-71.el6.x86_64.rpm" + ], + "2.6.32-131.0.15.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/os/x86_64/Packages/kernel-devel-2.6.32-131.0.15.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.1/os/x86_64/Packages/kernel-2.6.32-131.0.15.el6.x86_64.rpm" + ], + "2.6.32-754.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/os/x86_64/Packages/kernel-devel-2.6.32-754.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/os/x86_64/Packages/kernel-2.6.32-754.el6.x86_64.rpm" + ], + "2.6.32-220.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/os/x86_64/Packages/kernel-2.6.32-220.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.2/os/x86_64/Packages/kernel-devel-2.6.32-220.el6.x86_64.rpm" + ], + "2.6.32-279.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/os/x86_64/Packages/kernel-2.6.32-279.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/os/x86_64/Packages/kernel-devel-2.6.32-279.el6.x86_64.rpm" + ], + "2.6.32-358.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/os/x86_64/Packages/kernel-2.6.32-358.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.4/os/x86_64/Packages/kernel-devel-2.6.32-358.el6.x86_64.rpm" + ], + "2.6.32-431.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/os/x86_64/Packages/kernel-devel-2.6.32-431.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/os/x86_64/Packages/kernel-2.6.32-431.el6.x86_64.rpm" + ], + "2.6.32-504.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/os/x86_64/Packages/kernel-2.6.32-504.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.6/os/x86_64/Packages/kernel-devel-2.6.32-504.el6.x86_64.rpm" + ], + "2.6.32-573.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/os/x86_64/Packages/kernel-2.6.32-573.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.7/os/x86_64/Packages/kernel-devel-2.6.32-573.el6.x86_64.rpm" + ], + "2.6.32-642.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/os/x86_64/Packages/kernel-2.6.32-642.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/os/x86_64/Packages/kernel-devel-2.6.32-642.el6.x86_64.rpm" + ], + "2.6.32-696.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/os/x86_64/Packages/kernel-2.6.32-696.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/os/x86_64/Packages/kernel-devel-2.6.32-696.el6.x86_64.rpm" + ], + "3.10.0-123.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/os/x86_64/Packages/kernel-devel-3.10.0-123.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/os/x86_64/Packages/kernel-3.10.0-123.el7.x86_64.rpm" + ], + "3.10.0-229.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/os/x86_64/Packages/kernel-3.10.0-229.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/os/x86_64/Packages/kernel-devel-3.10.0-229.el7.x86_64.rpm" + ], + "3.10.0-327.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/os/x86_64/Packages/kernel-devel-3.10.0-327.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/os/x86_64/Packages/kernel-3.10.0-327.el7.x86_64.rpm" + ], + "3.10.0-514.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/os/x86_64/Packages/kernel-3.10.0-514.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/os/x86_64/Packages/kernel-devel-3.10.0-514.el7.x86_64.rpm" + ], + "3.10.0-693.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/os/x86_64/Packages/kernel-devel-3.10.0-693.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/os/x86_64/Packages/kernel-3.10.0-693.el7.x86_64.rpm" + ], + "3.10.0-862.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/os/x86_64/Packages/kernel-devel-3.10.0-862.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/os/x86_64/Packages/kernel-3.10.0-862.el7.x86_64.rpm" + ], + "3.10.0-957.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/os/x86_64/Packages/kernel-devel-3.10.0-957.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/os/x86_64/Packages/kernel-3.10.0-957.el7.x86_64.rpm" + ], + "3.10.0-1062.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/os/x86_64/Packages/kernel-3.10.0-1062.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/os/x86_64/Packages/kernel-devel-3.10.0-1062.el7.x86_64.rpm" + ], + "3.10.0-1127.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/os/x86_64/Packages/kernel-devel-3.10.0-1127.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/os/x86_64/Packages/kernel-3.10.0-1127.el7.x86_64.rpm" + ], + "2.6.32-71.29.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.29.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.29.1.el6.x86_64.rpm" + ], + "2.6.32-71.24.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.24.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.24.1.el6.x86_64.rpm" + ], + "2.6.32-71.18.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.18.1.el6.x86_64.rpm" + ], + "2.6.32-71.14.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.14.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.14.1.el6.x86_64.rpm" + ], + "2.6.32-71.7.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.7.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.7.1.el6.x86_64.rpm" + ], + "2.6.32-71.18.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.18.2.el6.x86_64.rpm" + ], + "2.6.32-131.6.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.6.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.6.1.el6.x86_64.rpm" + ], + "2.6.32-131.17.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.17.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.17.1.el6.x86_64.rpm" + ], + "2.6.32-131.2.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.2.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.2.1.el6.x86_64.rpm" + ], + "2.6.32-131.12.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.12.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.12.1.el6.x86_64.rpm" + ], + "2.6.32-131.4.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.4.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.4.1.el6.x86_64.rpm" + ], + "2.6.32-131.21.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.21.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.21.1.el6.x86_64.rpm" + ], + "2.6.32-754.10.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.10.1.el6.x86_64.rpm" + ], + "2.6.32-754.11.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.11.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm" + ], + "2.6.32-754.12.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.12.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" + ], + "2.6.32-754.14.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.14.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm" + ], + "2.6.32-754.15.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.15.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" + ], + "2.6.32-754.17.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.17.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" + ], + "2.6.32-754.18.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.18.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm" + ], + "2.6.32-754.2.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.2.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" + ], + "2.6.32-754.22.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.22.1.el6.x86_64.rpm" + ], + "2.6.32-754.23.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.23.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm" + ], + "2.6.32-754.24.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.24.2.el6.x86_64.rpm" + ], + "2.6.32-754.24.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.24.3.el6.x86_64.rpm" + ], + "2.6.32-754.25.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.25.1.el6.x86_64.rpm" + ], + "2.6.32-754.27.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.27.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm" + ], + "2.6.32-754.28.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.28.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" + ], + "2.6.32-754.29.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.29.1.el6.x86_64.rpm" + ], + "2.6.32-754.29.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.29.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm" + ], + "2.6.32-754.3.5.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.3.5.el6.x86_64.rpm" + ], + "2.6.32-754.30.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.30.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" + ], + "2.6.32-754.31.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.31.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm" + ], + "2.6.32-754.33.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.33.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm" + ], + "2.6.32-754.35.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.35.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm" + ], + "2.6.32-754.6.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.6.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" + ], + "2.6.32-754.9.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.9.1.el6.x86_64.rpm" + ], + "2.6.32-220.23.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.23.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.23.1.el6.x86_64.rpm" + ], + "2.6.32-220.13.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.13.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.13.1.el6.x86_64.rpm" + ], + "2.6.32-220.4.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.4.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.2.el6.x86_64.rpm" + ], + "2.6.32-220.7.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.7.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.7.1.el6.x86_64.rpm" + ], + "2.6.32-220.4.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.4.1.el6.x86_64.rpm" + ], + "2.6.32-220.17.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.17.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.17.1.el6.x86_64.rpm" + ], + "2.6.32-220.2.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.2.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.2.1.el6.x86_64.rpm" + ], + "2.6.32-279.11.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.11.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.11.1.el6.x86_64.rpm" + ], + "2.6.32-279.5.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.5.1.el6.x86_64.rpm" + ], + "2.6.32-279.22.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.22.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.22.1.el6.x86_64.rpm" + ], + "2.6.32-279.5.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.5.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.2.el6.x86_64.rpm" + ], + "2.6.32-279.19.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.19.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.19.1.el6.x86_64.rpm" + ], + "2.6.32-279.14.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.14.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.14.1.el6.x86_64.rpm" + ], + "2.6.32-279.1.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.1.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.1.1.el6.x86_64.rpm" + ], + "2.6.32-279.9.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.9.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.9.1.el6.x86_64.rpm" + ], + "2.6.32-279.2.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.2.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.2.1.el6.x86_64.rpm" + ], + "2.6.32-358.2.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.2.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.2.1.el6.x86_64.rpm" + ], + "2.6.32-358.18.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.18.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.18.1.el6.x86_64.rpm" + ], + "2.6.32-358.0.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.0.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.0.1.el6.x86_64.rpm" + ], + "2.6.32-358.23.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.23.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.23.2.el6.x86_64.rpm" + ], + "2.6.32-358.6.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.6.1.el6.x86_64.rpm" + ], + "2.6.32-358.11.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.11.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.11.1.el6.x86_64.rpm" + ], + "2.6.32-358.14.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.14.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.14.1.el6.x86_64.rpm" + ], + "2.6.32-358.6.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.6.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.2.el6.x86_64.rpm" + ], + "2.6.32-431.5.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.5.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.5.1.el6.x86_64.rpm" + ], + "2.6.32-431.20.5.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.5.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.20.5.el6.x86_64.rpm" + ], + "2.6.32-431.3.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.3.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.3.1.el6.x86_64.rpm" + ], + "2.6.32-431.23.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.23.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.23.3.el6.x86_64.rpm" + ], + "2.6.32-431.17.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.17.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.17.1.el6.x86_64.rpm" + ], + "2.6.32-431.20.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.20.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.3.el6.x86_64.rpm" + ], + "2.6.32-431.11.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.11.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.11.2.el6.x86_64.rpm" + ], + "2.6.32-431.29.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.29.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.29.2.el6.x86_64.rpm" + ], + "2.6.32-431.1.2.0.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.1.2.0.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.1.2.0.1.el6.x86_64.rpm" + ], + "2.6.32-504.1.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.1.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.1.3.el6.x86_64.rpm" + ], + "2.6.32-504.12.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.12.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.12.2.el6.x86_64.rpm" + ], + "2.6.32-504.16.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.16.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.16.2.el6.x86_64.rpm" + ], + "2.6.32-504.23.4.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.23.4.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.23.4.el6.x86_64.rpm" + ], + "2.6.32-504.3.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.3.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.3.3.el6.x86_64.rpm" + ], + "2.6.32-504.30.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.30.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.30.3.el6.x86_64.rpm" + ], + "2.6.32-504.8.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.8.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.8.1.el6.x86_64.rpm" + ], + "2.6.32-573.1.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.1.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.1.1.el6.x86_64.rpm" + ], + "2.6.32-573.12.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.12.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.12.1.el6.x86_64.rpm" + ], + "2.6.32-573.18.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.18.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.18.1.el6.x86_64.rpm" + ], + "2.6.32-573.22.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.22.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.22.1.el6.x86_64.rpm" + ], + "2.6.32-573.26.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.26.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.26.1.el6.x86_64.rpm" + ], + "2.6.32-573.3.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.3.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.3.1.el6.x86_64.rpm" + ], + "2.6.32-573.7.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.7.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.7.1.el6.x86_64.rpm" + ], + "2.6.32-573.8.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.8.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.8.1.el6.x86_64.rpm" + ], + "2.6.32-642.1.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.1.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.1.1.el6.x86_64.rpm" + ], + "2.6.32-642.11.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.11.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.11.1.el6.x86_64.rpm" + ], + "2.6.32-642.13.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.13.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.1.el6.x86_64.rpm" + ], + "2.6.32-642.13.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.13.2.el6.x86_64.rpm" + ], + "2.6.32-642.15.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.15.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.15.1.el6.x86_64.rpm" + ], + "2.6.32-642.3.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.3.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.3.1.el6.x86_64.rpm" + ], + "2.6.32-642.4.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.4.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.4.2.el6.x86_64.rpm" + ], + "2.6.32-642.6.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.6.1.el6.x86_64.rpm" + ], + "2.6.32-642.6.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.6.2.el6.x86_64.rpm" + ], + "2.6.32-696.1.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.1.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.1.1.el6.x86_64.rpm" + ], + "2.6.32-696.10.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.10.1.el6.x86_64.rpm" + ], + "2.6.32-696.10.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.10.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.2.el6.x86_64.rpm" + ], + "2.6.32-696.10.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.10.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.3.el6.x86_64.rpm" + ], + "2.6.32-696.13.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.13.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.13.2.el6.x86_64.rpm" + ], + "2.6.32-696.16.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.16.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.16.1.el6.x86_64.rpm" + ], + "2.6.32-696.18.7.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.18.7.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.18.7.el6.x86_64.rpm" + ], + "2.6.32-696.20.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.20.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.20.1.el6.x86_64.rpm" + ], + "2.6.32-696.23.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.23.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" + ], + "2.6.32-696.28.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.28.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" + ], + "2.6.32-696.3.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.3.1.el6.x86_64.rpm" + ], + "2.6.32-696.3.2.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.2.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.3.2.el6.x86_64.rpm" + ], + "2.6.32-696.30.1.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.30.1.el6.x86_64.rpm" + ], + "2.6.32-696.6.3.el6.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.6.3.el6.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.6.3.el6.x86_64.rpm" + ], + "3.10.0-123.13.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.13.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.1.el7.x86_64.rpm" + ], + "3.10.0-123.6.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.6.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.6.3.el7.x86_64.rpm" + ], + "3.10.0-123.4.4.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.4.4.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.4.el7.x86_64.rpm" + ], + "3.10.0-123.13.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.13.2.el7.x86_64.rpm" + ], + "3.10.0-123.20.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.20.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.20.1.el7.x86_64.rpm" + ], + "3.10.0-123.4.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.4.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.2.el7.x86_64.rpm" + ], + "3.10.0-123.8.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.8.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.8.1.el7.x86_64.rpm" + ], + "3.10.0-123.9.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.9.2.el7.x86_64.rpm" + ], + "3.10.0-123.9.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.9.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.3.el7.x86_64.rpm" + ], + "3.10.0-123.1.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.1.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.1.2.el7.x86_64.rpm" + ], + "3.10.0-229.1.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.1.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.1.2.el7.x86_64.rpm" + ], + "3.10.0-229.11.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.11.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.11.1.el7.x86_64.rpm" + ], + "3.10.0-229.14.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.14.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.14.1.el7.x86_64.rpm" + ], + "3.10.0-229.20.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.20.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.20.1.el7.x86_64.rpm" + ], + "3.10.0-229.4.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.4.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.4.2.el7.x86_64.rpm" + ], + "3.10.0-229.7.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.7.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.7.2.el7.x86_64.rpm" + ], + "3.10.0-327.10.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.10.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.10.1.el7.x86_64.rpm" + ], + "3.10.0-327.13.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.13.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.13.1.el7.x86_64.rpm" + ], + "3.10.0-327.18.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.18.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.18.2.el7.x86_64.rpm" + ], + "3.10.0-327.22.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.22.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.22.2.el7.x86_64.rpm" + ], + "3.10.0-327.28.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.28.2.el7.x86_64.rpm" + ], + "3.10.0-327.28.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.28.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.3.el7.x86_64.rpm" + ], + "3.10.0-327.3.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.3.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.3.1.el7.x86_64.rpm" + ], + "3.10.0-327.36.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.36.1.el7.x86_64.rpm" + ], + "3.10.0-327.36.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.36.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.2.el7.x86_64.rpm" + ], + "3.10.0-327.36.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.36.3.el7.x86_64.rpm" + ], + "3.10.0-327.4.4.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.4.4.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.4.el7.x86_64.rpm" + ], + "3.10.0-327.4.5.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.4.5.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.5.el7.x86_64.rpm" + ], + "3.10.0-514.10.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.10.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.10.2.el7.x86_64.rpm" + ], + "3.10.0-514.16.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.16.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.16.1.el7.x86_64.rpm" + ], + "3.10.0-514.2.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.2.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.2.2.el7.x86_64.rpm" + ], + "3.10.0-514.21.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.21.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.1.el7.x86_64.rpm" + ], + "3.10.0-514.21.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.21.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.2.el7.x86_64.rpm" + ], + "3.10.0-514.26.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.26.1.el7.x86_64.rpm" + ], + "3.10.0-514.26.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.26.2.el7.x86_64.rpm" + ], + "3.10.0-514.6.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.6.1.el7.x86_64.rpm" + ], + "3.10.0-514.6.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.6.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.2.el7.x86_64.rpm" + ], + "3.10.0-693.1.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.1.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.1.1.el7.x86_64.rpm" + ], + "3.10.0-693.11.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.11.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.1.el7.x86_64.rpm" + ], + "3.10.0-693.11.6.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.6.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.11.6.el7.x86_64.rpm" + ], + "3.10.0-693.17.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.17.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.17.1.el7.x86_64.rpm" + ], + "3.10.0-693.2.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.2.1.el7.x86_64.rpm" + ], + "3.10.0-693.2.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.2.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.2.el7.x86_64.rpm" + ], + "3.10.0-693.21.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.21.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.21.1.el7.x86_64.rpm" + ], + "3.10.0-693.5.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.5.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.5.2.el7.x86_64.rpm" + ], + "3.10.0-862.11.6.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.11.6.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.11.6.el7.x86_64.rpm" + ], + "3.10.0-862.14.4.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.14.4.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.14.4.el7.x86_64.rpm" + ], + "3.10.0-862.2.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.2.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.2.3.el7.x86_64.rpm" + ], + "3.10.0-862.3.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.3.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.2.el7.x86_64.rpm" + ], + "3.10.0-862.3.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.3.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.3.el7.x86_64.rpm" + ], + "3.10.0-862.6.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.6.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.6.3.el7.x86_64.rpm" + ], + "3.10.0-862.9.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.9.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.9.1.el7.x86_64.rpm" + ], + "3.10.0-957.1.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.1.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.1.3.el7.x86_64.rpm" + ], + "3.10.0-957.10.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.10.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" + ], + "3.10.0-957.12.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.12.1.el7.x86_64.rpm" + ], + "3.10.0-957.12.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.12.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" + ], + "3.10.0-957.21.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.21.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm" + ], + "3.10.0-957.21.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.21.3.el7.x86_64.rpm" + ], + "3.10.0-957.27.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.27.2.el7.x86_64.rpm" + ], + "3.10.0-957.5.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.5.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.5.1.el7.x86_64.rpm" + ], + "3.10.0-1062.1.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.1.1.el7.x86_64.rpm" + ], + "3.10.0-1062.1.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.1.2.el7.x86_64.rpm" + ], + "3.10.0-1062.12.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.12.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm" + ], + "3.10.0-1062.18.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.18.1.el7.x86_64.rpm" + ], + "3.10.0-1062.4.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.4.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" + ], + "3.10.0-1062.4.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.4.2.el7.x86_64.rpm" + ], + "3.10.0-1062.4.3.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.4.3.el7.x86_64.rpm" + ], + "3.10.0-1062.7.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.7.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm" + ], + "3.10.0-1062.9.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.9.1.el7.x86_64.rpm" + ], + "3.10.0-1127.10.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.10.1.el7.x86_64.rpm" + ], + "3.10.0-1127.13.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.13.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" + ], + "3.10.0-1127.18.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.18.2.el7.x86_64.rpm" + ], + "3.10.0-1127.19.1.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.19.1.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm" + ], + "3.10.0-1127.8.2.el7.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.8.2.el7.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" + ], + "4.18.0-80.1.2.el8_0.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.1.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.1.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.1.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm" + ], + "4.18.0-80.11.1.el8_0.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.11.1.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.11.1.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.11.1.el8_0.x86_64.rpm" + ], + "4.18.0-80.11.2.el8_0.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.11.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.11.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.11.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" + ], + "4.18.0-80.4.2.el8_0.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.4.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.4.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.4.2.el8_0.x86_64.rpm" + ], + "4.18.0-80.7.1.el8_0.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.7.1.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.7.1.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.7.1.el8_0.x86_64.rpm" + ], + "4.18.0-80.7.2.el8_0.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.7.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.7.2.el8_0.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.7.2.el8_0.x86_64.rpm" + ], + "4.18.0-80.el8.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.el8.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.el8.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.el8.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.el8.x86_64.rpm" + ], + "4.18.0-147.8.1.el8_1.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-4.18.0-147.8.1.el8_1.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-147.8.1.el8_1.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-147.8.1.el8_1.x86_64.rpm" + ], + "4.18.0-193.28.1.el8_2.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-193.28.1.el8_2.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-193.28.1.el8_2.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-4.18.0-193.28.1.el8_2.x86_64.rpm" + ], + "4.18.0-240.22.1.el8_3.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-240.22.1.el8_3.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-4.18.0-240.22.1.el8_3.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-240.22.1.el8_3.x86_64.rpm" + ], + "4.18.0-305.10.2.el8_4.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.10.2.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.10.2.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.10.2.el8_4.x86_64.rpm" + ], + "4.18.0-305.12.1.el8_4.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.12.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.12.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.12.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.17.1.el8_4.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.17.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.17.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.17.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.19.1.el8_4.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.19.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.19.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.19.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.25.1.el8_4.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.25.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.25.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.25.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.3.1.el8.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.3.1.el8.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.3.1.el8.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.3.1.el8.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.x86_64.rpm" + ], + "4.18.0-305.7.1.el8_4.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.7.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.7.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.7.1.el8_4.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm" + ], + "4.18.0-348.2.1.el8_5.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-4.18.0-348.2.1.el8_5.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-348.2.1.el8_5.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-348.2.1.el8_5.x86_64.rpm" + ], + "4.18.0-348.7.1.el8_5.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-4.18.0-348.7.1.el8_5.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-348.7.1.el8_5.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-348.7.1.el8_5.x86_64.rpm" + ], + "4.18.0-348.el8.x86_64": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-4.18.0-348.el8.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.el8.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-348.el8.x86_64.rpm", + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-348.el8.x86_64.rpm" + ] + }, + "Fedora": { + "5.6.6-300.fc32.x86_64": [ + "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-core-5.6.6-300.fc32.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-5.6.6-300.fc32.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-modules-5.6.6-300.fc32.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-devel-5.6.6-300.fc32.x86_64.rpm" + ], + "5.8.15-301.fc33.x86_64": [ + "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-modules-5.8.15-301.fc33.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-devel-5.8.15-301.fc33.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-5.8.15-301.fc33.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-core-5.8.15-301.fc33.x86_64.rpm" + ], + "5.11.12-300.fc34.x86_64": [ + "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-core-5.11.12-300.fc34.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-5.11.12-300.fc34.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-modules-5.11.12-300.fc34.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-devel-5.11.12-300.fc34.x86_64.rpm" + ], + "5.14.10-300.fc35.x86_64": [ + "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-5.14.10-300.fc35.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-modules-5.14.10-300.fc35.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-devel-5.14.10-300.fc35.x86_64.rpm", + "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-core-5.14.10-300.fc35.x86_64.rpm" + ], + "5.11.22-100.fc32.x86_64": [ + "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-5.11.22-100.fc32.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-devel-5.11.22-100.fc32.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-core-5.11.22-100.fc32.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-modules-5.11.22-100.fc32.x86_64.rpm" + ], + "5.14.18-100.fc33.x86_64": [ + "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-devel-5.14.18-100.fc33.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-5.14.18-100.fc33.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-core-5.14.18-100.fc33.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-modules-5.14.18-100.fc33.x86_64.rpm" + ], + "5.16.18-100.fc34.x86_64": [ + "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-core-5.16.18-100.fc34.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.16.18-100.fc34.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-5.16.18-100.fc34.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-modules-5.16.18-100.fc34.x86_64.rpm" + ], + "5.16.18-200.fc35.x86_64": [ + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-modules-5.16.18-200.fc35.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-core-5.16.18-200.fc35.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-5.16.18-200.fc35.x86_64.rpm", + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.16.18-200.fc35.x86_64.rpm" + ] + }, + "Oracle6": { + "2.6.32-696.23.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-696.23.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" + ], + "2.6.32-696.28.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-696.28.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" + ], + "2.6.32-696.30.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-696.30.1.el6.x86_64.rpm" + ], + "2.6.32-696.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-696.el6.x86_64.rpm" + ], + "2.6.32-754.10.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.10.1.el6.x86_64.rpm" + ], + "2.6.32-754.11.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.11.1.el6.x86_64.rpm" + ], + "2.6.32-754.12.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.12.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" + ], + "2.6.32-754.14.2.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.14.2.el6.x86_64.rpm" + ], + "2.6.32-754.15.3.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.15.3.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" + ], + "2.6.32-754.17.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.17.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" + ], + "2.6.32-754.18.2.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.18.2.el6.x86_64.rpm" + ], + "2.6.32-754.2.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.2.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" + ], + "2.6.32-754.22.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.22.1.el6.x86_64.rpm" + ], + "2.6.32-754.23.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.23.1.el6.x86_64.rpm" + ], + "2.6.32-754.24.2.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.24.2.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm" + ], + "2.6.32-754.24.3.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.24.3.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm" + ], + "2.6.32-754.25.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.25.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm" + ], + "2.6.32-754.27.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.27.1.el6.x86_64.rpm" + ], + "2.6.32-754.28.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.28.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" + ], + "2.6.32-754.29.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.29.1.el6.x86_64.rpm" + ], + "2.6.32-754.29.2.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.29.2.el6.x86_64.rpm" + ], + "2.6.32-754.3.5.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.3.5.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm" + ], + "2.6.32-754.30.2.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.30.2.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" + ], + "2.6.32-754.31.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.31.1.el6.x86_64.rpm" + ], + "2.6.32-754.33.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.33.1.el6.x86_64.rpm" + ], + "2.6.32-754.6.3.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.6.3.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" + ], + "2.6.32-754.9.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.9.1.el6.x86_64.rpm" + ], + "2.6.32-754.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.el6.x86_64.rpm" + ], + "2.6.32-754.35.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.35.1.el6.x86_64.rpm" + ], + "2.6.32-696.1.1.0.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-696.1.1.0.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-2.6.32-696.1.1.0.1.el6.x86_64.rpm" + ], + "2.6.32-754.33.1.0.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.33.1.0.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-2.6.32-754.33.1.0.1.el6.x86_64.rpm" + ], + "2.6.32-754.35.1.0.1.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.0.1.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-2.6.32-754.35.1.0.1.el6.x86_64.rpm" + ], + "2.6.32-754.35.1.0.2.el6.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-2.6.32-754.35.1.0.2.el6.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.0.2.el6.x86_64.rpm" + ], + "4.1.12-124.42.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.42.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.42.3.el6uek.x86_64.rpm" + ], + "4.1.12-124.43.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.43.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.43.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.43.4.el6uek.x86_64.rpm" + ], + "4.1.12-124.42.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.42.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.42.4.el6uek.x86_64.rpm" + ], + "4.1.12-124.44.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.44.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.44.4.el6uek.x86_64.rpm" + ], + "4.1.12-124.44.4.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.44.4.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.44.4.1.el6uek.noarch.rpm" + ], + "4.1.12-124.45.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.45.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.45.2.el6uek.x86_64.rpm" + ], + "4.1.12-124.45.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.45.6.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.45.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.6.el6uek.x86_64.rpm" + ], + "4.1.12-124.46.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.46.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.46.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.3.el6uek.x86_64.rpm" + ], + "4.1.12-124.46.4.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.4.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.46.4.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.46.4.1.el6uek.x86_64.rpm" + ], + "4.1.12-124.47.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.47.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.47.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.47.3.el6uek.noarch.rpm" + ], + "4.1.12-124.48.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.2.el6uek.noarch.rpm" + ], + "4.1.12-124.48.3.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.3.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.3.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.3.1.el6uek.x86_64.rpm" + ], + "4.1.12-124.48.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.5.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.5.el6uek.x86_64.rpm" + ], + "4.1.12-124.48.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.6.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.6.el6uek.x86_64.rpm" + ], + "3.8.13-118.10.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.10.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.10.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.10.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.11.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.11.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.11.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.11.2.el6uek.noarch.rpm" + ], + "3.8.13-118.13.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.13.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.13.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.13.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.13.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.13.3.el6uek.x86_64.rpm" + ], + "3.8.13-118.14.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.14.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.14.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.14.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.14.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.14.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.15.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.15.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.15.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.15.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.16.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.16.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.16.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.16.3.el6uek.x86_64.rpm" + ], + "3.8.13-118.16.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.16.4.el6uek.x86_64.rpm" + ], + "3.8.13-118.17.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.17.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.17.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.4.el6uek.x86_64.rpm" + ], + "3.8.13-118.17.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.17.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.17.5.el6uek.noarch.rpm" + ], + "3.8.13-118.18.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.18.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.18.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.18.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.3.el6uek.noarch.rpm" + ], + "3.8.13-118.18.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.18.4.el6uek.x86_64.rpm" + ], + "3.8.13-118.19.10.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.10.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.10.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.10.el6uek.x86_64.rpm" + ], + "3.8.13-118.19.12.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.12.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.12.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.12.el6uek.x86_64.rpm" + ], + "3.8.13-118.19.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.19.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.3.el6uek.x86_64.rpm" + ], + "3.8.13-118.19.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.4.el6uek.x86_64.rpm" + ], + "3.8.13-118.19.7.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.7.el6uek.noarch.rpm" + ], + "3.8.13-118.2.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.2.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.1.el6uek.noarch.rpm" + ], + "3.8.13-118.2.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.2.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.2.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.2.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.4.el6uek.x86_64.rpm" + ], + "3.8.13-118.2.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.2.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.5.el6uek.noarch.rpm" + ], + "3.8.13-118.20.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.20.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.20.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.3.el6uek.noarch.rpm" + ], + "3.8.13-118.20.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.6.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.6.el6uek.x86_64.rpm" + ], + "3.8.13-118.20.7.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.7.el6uek.noarch.rpm" + ], + "3.8.13-118.21.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.21.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.21.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.21.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.21.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.21.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.4.el6uek.x86_64.rpm" + ], + "3.8.13-118.22.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.22.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.22.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.22.1.el6uek.noarch.rpm" + ], + "3.8.13-118.23.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.23.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.23.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.23.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.24.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.24.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.1.el6uek.noarch.rpm" + ], + "3.8.13-118.24.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.24.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.2.el6uek.noarch.rpm" + ], + "3.8.13-118.24.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.24.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.3.el6uek.x86_64.rpm" + ], + "3.8.13-118.25.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.25.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.25.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.25.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.26.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.26.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.26.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.26.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.27.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.27.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.27.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.27.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.28.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.28.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.28.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.28.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.29.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.29.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.29.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.29.1.el6uek.noarch.rpm" + ], + "3.8.13-118.3.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.3.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.3.1.el6uek.noarch.rpm" + ], + "3.8.13-118.3.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.3.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.3.2.el6uek.noarch.rpm" + ], + "3.8.13-118.30.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.30.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.30.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.30.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.31.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.31.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.31.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.31.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.32.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.32.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.32.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.32.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.33.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.33.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.33.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.33.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.34.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.34.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.34.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.34.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.35.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.35.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.35.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.35.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.35.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.35.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.36.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.36.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.36.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.36.1.el6uek.noarch.rpm" + ], + "3.8.13-118.37.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.37.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.37.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.37.1.el6uek.noarch.rpm" + ], + "3.8.13-118.38.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.38.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.38.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.38.1.el6uek.noarch.rpm" + ], + "3.8.13-118.39.1.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.39.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.39.1.1.el6uek.noarch.rpm" + ], + "3.8.13-118.39.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.39.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.39.1.el6uek.noarch.rpm" + ], + "3.8.13-118.4.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.4.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.4.1.el6uek.noarch.rpm" + ], + "3.8.13-118.4.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.4.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.4.2.el6uek.noarch.rpm" + ], + "3.8.13-118.40.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.40.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.40.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.40.1.el6uek.noarch.rpm" + ], + "3.8.13-118.41.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.41.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.41.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.41.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.42.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.42.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.42.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.42.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.43.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.43.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.43.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.43.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.44.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.44.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.44.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.44.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.45.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.45.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.45.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.45.1.el6uek.noarch.rpm" + ], + "3.8.13-118.46.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.46.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.46.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.46.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.47.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.47.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.47.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.47.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.47.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.47.2.el6uek.noarch.rpm" + ], + "3.8.13-118.48.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.48.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.48.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.48.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.6.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.6.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.6.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.6.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.6.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.6.2.el6uek.noarch.rpm" + ], + "3.8.13-118.7.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.7.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.7.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.7.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.8.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.8.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.8.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.8.1.el6uek.noarch.rpm" + ], + "3.8.13-118.9.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.9.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.9.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.9.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.9.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.9.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.el6uek.noarch.rpm" + ], + "3.8.13-16.1.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.1.1.el6uek.noarch.rpm" + ], + "3.8.13-16.2.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.2.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.2.1.el6uek.noarch.rpm" + ], + "3.8.13-16.2.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.2.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.2.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.2.el6uek.x86_64.rpm" + ], + "3.8.13-16.2.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.2.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.2.3.el6uek.noarch.rpm" + ], + "3.8.13-16.3.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.3.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.3.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.3.1.el6uek.x86_64.rpm" + ], + "3.8.13-16.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.el6uek.noarch.rpm" + ], + "3.8.13-26.1.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.1.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.1.1.el6uek.x86_64.rpm" + ], + "3.8.13-26.2.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.2.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.2.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.1.el6uek.x86_64.rpm" + ], + "3.8.13-26.2.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.2.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.2.2.el6uek.x86_64.rpm" + ], + "3.8.13-26.2.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.2.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.2.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.3.el6uek.x86_64.rpm" + ], + "3.8.13-26.2.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.2.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.2.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.4.el6uek.x86_64.rpm" + ], + "3.8.13-26.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.el6uek.x86_64.rpm" + ], + "3.8.13-35.1.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.1.1.el6uek.noarch.rpm" + ], + "3.8.13-35.1.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.1.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.1.2.el6uek.noarch.rpm" + ], + "3.8.13-35.1.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.1.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.1.3.el6uek.x86_64.rpm" + ], + "3.8.13-35.3.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.3.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.2.el6uek.x86_64.rpm" + ], + "3.8.13-35.3.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.3.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.3.el6uek.noarch.rpm" + ], + "3.8.13-35.3.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.3.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.4.el6uek.x86_64.rpm" + ], + "3.8.13-35.3.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.5.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.3.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.5.el6uek.x86_64.rpm" + ], + "3.8.13-35.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.el6uek.x86_64.rpm" + ], + "3.8.13-44.1.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.1.el6uek.noarch.rpm" + ], + "3.8.13-44.1.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.1.3.el6uek.x86_64.rpm" + ], + "3.8.13-44.1.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.1.4.el6uek.x86_64.rpm" + ], + "3.8.13-44.1.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.1.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.5.el6uek.noarch.rpm" + ], + "3.8.13-44.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.el6uek.noarch.rpm" + ], + "3.8.13-55.1.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.1.1.el6uek.x86_64.rpm" + ], + "3.8.13-55.1.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.1.2.el6uek.x86_64.rpm" + ], + "3.8.13-55.1.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.5.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.1.5.el6uek.x86_64.rpm" + ], + "3.8.13-55.1.8.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.1.8.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.8.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.8.el6uek.x86_64.rpm" + ], + "3.8.13-55.2.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.2.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.2.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.2.1.el6uek.x86_64.rpm" + ], + "3.8.13-55.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.el6uek.x86_64.rpm" + ], + "3.8.13-68.1.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.1.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.1.2.el6uek.noarch.rpm" + ], + "3.8.13-68.1.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.1.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.1.3.el6uek.x86_64.rpm" + ], + "3.8.13-68.2.2.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.2.el6uek.noarch.rpm" + ], + "3.8.13-68.2.2.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.3.el6uek.x86_64.rpm" + ], + "3.8.13-68.2.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.el6uek.x86_64.rpm" + ], + "3.8.13-68.3.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.1.el6uek.x86_64.rpm" + ], + "3.8.13-68.3.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.2.el6uek.x86_64.rpm" + ], + "3.8.13-68.3.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.3.el6uek.x86_64.rpm" + ], + "3.8.13-68.3.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.4.el6uek.x86_64.rpm" + ], + "3.8.13-68.3.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.5.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.5.el6uek.x86_64.rpm" + ], + "3.8.13-68.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.el6uek.noarch.rpm" + ], + "3.8.13-98.1.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.1.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.1.el6uek.x86_64.rpm" + ], + "3.8.13-98.1.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.1.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.1.2.el6uek.x86_64.rpm" + ], + "3.8.13-98.2.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.2.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.2.1.el6uek.noarch.rpm" + ], + "3.8.13-98.2.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.2.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.2.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.2.el6uek.x86_64.rpm" + ], + "3.8.13-98.4.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.4.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.4.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.4.1.el6uek.x86_64.rpm" + ], + "3.8.13-98.5.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.5.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.5.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.5.2.el6uek.x86_64.rpm" + ], + "3.8.13-98.6.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.6.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.6.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.6.1.el6uek.x86_64.rpm" + ], + "3.8.13-98.7.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.7.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.7.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.7.1.el6uek.noarch.rpm" + ], + "3.8.13-98.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.el6uek.x86_64.rpm" + ], + "3.8.13-118.49.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.49.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.49.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.49.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.50.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.50.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.50.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.50.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.51.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.51.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.51.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.2.el6uek.x86_64.rpm" + ], + "3.8.13-118.52.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.52.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.52.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.52.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.53.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.53.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.53.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.53.1.el6uek.noarch.rpm" + ], + "3.8.13-118.54.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.54.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.54.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.54.1.el6uek.x86_64.rpm" + ], + "3.8.13-118.51.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.51.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.51.1.el6uek.noarch.rpm" + ], + "3.8.13-118.55.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.55.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.55.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.55.1.el6uek.x86_64.rpm" + ], + "2.6.39-100.10.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-100.10.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-100.10.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.10.1.el6uek.x86_64.rpm" + ], + "2.6.39-100.5.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-100.5.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.5.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-100.5.1.el6uek.noarch.rpm" + ], + "2.6.39-100.6.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.6.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-100.6.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-100.6.1.el6uek.noarch.rpm" + ], + "2.6.39-100.7.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-100.7.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.7.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-100.7.1.el6uek.noarch.rpm" + ], + "2.6.39-200.24.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.24.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.24.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.24.1.el6uek.noarch.rpm" + ], + "2.6.39-200.29.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.29.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.29.1.el6uek.noarch.rpm" + ], + "2.6.39-200.29.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.29.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.29.2.el6uek.x86_64.rpm" + ], + "2.6.39-200.29.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.29.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.29.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.3.el6uek.x86_64.rpm" + ], + "2.6.39-200.31.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.31.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.31.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.31.1.el6uek.noarch.rpm" + ], + "2.6.39-200.32.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.32.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.32.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.32.1.el6uek.x86_64.rpm" + ], + "2.6.39-200.33.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.33.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.33.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.33.1.el6uek.x86_64.rpm" + ], + "2.6.39-200.34.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.34.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.34.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.34.1.el6uek.x86_64.rpm" + ], + "2.6.39-300.17.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.17.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.17.1.el6uek.x86_64.rpm" + ], + "2.6.39-300.17.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.17.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.17.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.2.el6uek.x86_64.rpm" + ], + "2.6.39-300.17.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.17.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.17.3.el6uek.x86_64.rpm" + ], + "2.6.39-300.26.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.26.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.26.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.26.1.el6uek.x86_64.rpm" + ], + "2.6.39-300.28.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.28.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.28.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.28.1.el6uek.x86_64.rpm" + ], + "2.6.39-300.32.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.32.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.32.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.32.4.el6uek.x86_64.rpm" + ], + "2.6.39-400.109.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.1.el6uek.noarch.rpm" + ], + "2.6.39-400.109.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.3.el6uek.x86_64.rpm" + ], + "2.6.39-400.109.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.4.el6uek.x86_64.rpm" + ], + "2.6.39-400.109.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.5.el6uek.noarch.rpm" + ], + "2.6.39-400.109.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.6.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.6.el6uek.x86_64.rpm" + ], + "2.6.39-400.17.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.17.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.17.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.17.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.17.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.17.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.17.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.17.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.209.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.209.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.209.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.209.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.209.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.209.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.209.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.209.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.21.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.21.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.21.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.21.1.el6uek.noarch.rpm" + ], + "2.6.39-400.21.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.21.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.21.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.21.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.210.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.210.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.210.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.210.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.211.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.211.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.211.1.el6uek.noarch.rpm" + ], + "2.6.39-400.211.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.211.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.211.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.211.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.211.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.211.3.el6uek.x86_64.rpm" + ], + "2.6.39-400.212.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.212.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.212.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.212.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.214.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.214.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.3.el6uek.x86_64.rpm" + ], + "2.6.39-400.214.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.4.el6uek.x86_64.rpm" + ], + "2.6.39-400.214.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.5.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.5.el6uek.x86_64.rpm" + ], + "2.6.39-400.214.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.6.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.6.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.10.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.10.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.10.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.10.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.11.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.11.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.11.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.11.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.12.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.12.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.12.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.12.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.13.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.13.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.13.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.13.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.14.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.14.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.14.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.14.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.15.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.15.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.15.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.15.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.3.el6uek.noarch.rpm" + ], + "2.6.39-400.215.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.4.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.6.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.6.el6uek.x86_64.rpm" + ], + "2.6.39-400.215.7.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.7.el6uek.noarch.rpm" + ], + "2.6.39-400.23.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.23.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.23.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.23.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.24.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.24.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.24.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.24.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.245.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.245.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.245.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.245.1.el6uek.noarch.rpm" + ], + "2.6.39-400.246.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.246.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.246.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.246.2.el6uek.noarch.rpm" + ], + "2.6.39-400.247.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.247.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.247.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.247.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.248.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.248.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.248.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.248.3.el6uek.x86_64.rpm" + ], + "2.6.39-400.249.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.249.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.249.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.249.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.249.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.249.3.el6uek.noarch.rpm" + ], + "2.6.39-400.249.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.249.4.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.249.4.el6uek.x86_64.rpm" + ], + "2.6.39-400.250.10.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.10.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.10.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.10.el6uek.noarch.rpm" + ], + "2.6.39-400.250.11.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.11.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.11.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.11.el6uek.x86_64.rpm" + ], + "2.6.39-400.250.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.2.el6uek.noarch.rpm" + ], + "2.6.39-400.250.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.5.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.5.el6uek.x86_64.rpm" + ], + "2.6.39-400.250.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.6.el6uek.noarch.rpm" + ], + "2.6.39-400.250.7.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.7.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.7.el6uek.x86_64.rpm" + ], + "2.6.39-400.250.9.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.9.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.9.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.9.el6uek.noarch.rpm" + ], + "2.6.39-400.264.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.264.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.264.1.el6uek.noarch.rpm" + ], + "2.6.39-400.264.13.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.264.13.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.264.13.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.13.el6uek.x86_64.rpm" + ], + "2.6.39-400.264.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.264.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.264.4.el6uek.noarch.rpm" + ], + "2.6.39-400.264.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.264.5.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.264.5.el6uek.x86_64.rpm" + ], + "2.6.39-400.276.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.276.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.276.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.276.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.277.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.277.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.277.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.277.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.278.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.278.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.278.1.el6uek.noarch.rpm" + ], + "2.6.39-400.278.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.278.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.278.2.el6uek.noarch.rpm" + ], + "2.6.39-400.278.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.278.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.278.3.el6uek.noarch.rpm" + ], + "2.6.39-400.280.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.280.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.280.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.280.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.281.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.281.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.281.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.281.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.282.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.282.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.282.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.282.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.283.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.283.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.283.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.283.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.283.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.283.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.283.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.283.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.284.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.284.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.284.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.284.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.286.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.286.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.286.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.286.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.286.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.286.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.286.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.286.3.el6uek.noarch.rpm" + ], + "2.6.39-400.290.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.290.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.290.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.290.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.290.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.290.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.290.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.290.2.el6uek.noarch.rpm" + ], + "2.6.39-400.293.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.293.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.293.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.293.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.293.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.293.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.293.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.293.2.el6uek.noarch.rpm" + ], + "2.6.39-400.294.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.294.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.294.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.3.el6uek.noarch.rpm" + ], + "2.6.39-400.294.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.6.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.6.el6uek.x86_64.rpm" + ], + "2.6.39-400.294.7.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.7.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.7.el6uek.x86_64.rpm" + ], + "2.6.39-400.295.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.295.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.295.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.295.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.296.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.296.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.296.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.296.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.297.11.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.11.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.11.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.11.el6uek.x86_64.rpm" + ], + "2.6.39-400.297.12.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.12.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.12.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.12.el6uek.noarch.rpm" + ], + "2.6.39-400.297.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.3.el6uek.noarch.rpm" + ], + "2.6.39-400.297.4.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.4.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.4.el6uek.noarch.rpm" + ], + "2.6.39-400.297.5.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.5.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.5.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.5.el6uek.x86_64.rpm" + ], + "2.6.39-400.297.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.6.el6uek.noarch.rpm" + ], + "2.6.39-400.297.8.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.8.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.8.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.8.el6uek.x86_64.rpm" + ], + "2.6.39-400.297.9.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.9.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.9.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.9.el6uek.x86_64.rpm" + ], + "2.6.39-400.298.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.298.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.298.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.3.el6uek.x86_64.rpm" + ], + "2.6.39-400.298.6.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.6.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.6.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.6.el6uek.x86_64.rpm" + ], + "2.6.39-400.298.7.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.7.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.7.el6uek.noarch.rpm" + ], + "2.6.39-400.299.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.299.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.299.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.299.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.299.3.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.299.3.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.299.3.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.299.3.el6uek.x86_64.rpm" + ], + "2.6.39-400.300.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.300.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.300.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.300.2.el6uek.noarch.rpm" + ], + "2.6.39-400.301.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.301.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.301.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.301.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.301.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.301.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.301.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.301.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.302.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.302.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.302.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.302.2.el6uek.noarch.rpm" + ], + "2.6.39-400.303.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.303.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.303.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.303.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.304.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.304.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.304.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.304.1.el6uek.noarch.rpm" + ], + "2.6.39-400.305.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.305.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.305.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.305.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.306.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.306.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.306.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.306.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.307.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.307.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.307.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.307.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.308.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.308.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.308.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.308.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.310.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.310.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.310.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.310.1.el6uek.noarch.rpm" + ], + "2.6.39-400.311.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.311.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.311.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.311.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.312.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.312.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.312.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.312.1.el6uek.noarch.rpm" + ], + "2.6.39-400.312.2.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.312.2.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.312.2.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.312.2.el6uek.x86_64.rpm" + ], + "2.6.39-400.313.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.313.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.313.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.313.1.el6uek.noarch.rpm" + ], + "2.6.39-400.314.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.314.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.314.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.314.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.315.1.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.315.1.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.315.1.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.315.1.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.315.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.315.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.315.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.315.1.el6uek.noarch.rpm" + ], + "2.6.39-400.316.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.316.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.316.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.316.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.317.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.317.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.317.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.317.1.el6uek.noarch.rpm" + ], + "2.6.39-400.318.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.318.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.318.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.318.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.319.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.319.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.319.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.319.1.el6uek.noarch.rpm" + ], + "2.6.39-400.320.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.320.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.320.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.320.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.321.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.321.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.321.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.321.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.322.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.322.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.322.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.322.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.323.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.323.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.323.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.323.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.324.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.324.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.324.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.324.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.325.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.325.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.325.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.325.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.326.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.326.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.326.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.326.1.el6uek.noarch.rpm" + ], + "2.6.39-400.327.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.327.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.327.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.327.1.el6uek.noarch.rpm" + ], + "2.6.39-400.328.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.328.1.el6uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.328.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.328.1.el6uek.x86_64.rpm" + ], + "2.6.39-400.330.1.el6uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.330.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.330.1.el6uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.330.1.el6uek.noarch.rpm" + ] + }, + "Oracle7": { + "3.10.0-1062.1.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.1.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm" + ], + "3.10.0-1062.1.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.1.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm" + ], + "3.10.0-1062.12.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.12.1.el7.x86_64.rpm" + ], + "3.10.0-1062.18.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.18.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm" + ], + "3.10.0-1062.4.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.4.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" + ], + "3.10.0-1062.4.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.4.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm" + ], + "3.10.0-1062.4.3.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.4.3.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm" + ], + "3.10.0-1062.7.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.7.1.el7.x86_64.rpm" + ], + "3.10.0-1062.9.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.9.1.el7.x86_64.rpm" + ], + "3.10.0-1062.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.el7.x86_64.rpm" + ], + "3.10.0-1127.10.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.10.1.el7.x86_64.rpm" + ], + "3.10.0-1127.13.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.13.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" + ], + "3.10.0-1127.18.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.18.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm" + ], + "3.10.0-1127.19.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.19.1.el7.x86_64.rpm" + ], + "3.10.0-1127.8.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.8.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" + ], + "3.10.0-1127.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.el7.x86_64.rpm" + ], + "3.10.0-1160.11.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.11.1.el7.x86_64.rpm" + ], + "3.10.0-1160.15.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.15.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + ], + "3.10.0-1160.2.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.2.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" + ], + "3.10.0-1160.2.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.2.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" + ], + "3.10.0-1160.21.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.21.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" + ], + "3.10.0-1160.24.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.24.1.el7.x86_64.rpm" + ], + "3.10.0-1160.25.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.25.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" + ], + "3.10.0-1160.31.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.31.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" + ], + "3.10.0-1160.36.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.36.2.el7.x86_64.rpm" + ], + "3.10.0-1160.41.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.41.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" + ], + "3.10.0-1160.42.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.42.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" + ], + "3.10.0-1160.45.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.45.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" + ], + "3.10.0-1160.49.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.49.1.el7.x86_64.rpm" + ], + "3.10.0-1160.53.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.53.1.el7.x86_64.rpm" + ], + "3.10.0-1160.59.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.59.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" + ], + "3.10.0-1160.6.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.6.1.el7.x86_64.rpm" + ], + "3.10.0-1160.62.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.62.1.el7.x86_64.rpm" + ], + "3.10.0-1160.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.el7.x86_64.rpm" + ], + "3.10.0-957.10.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.10.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" + ], + "3.10.0-957.12.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.12.1.el7.x86_64.rpm" + ], + "3.10.0-957.12.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.12.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" + ], + "3.10.0-957.21.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.21.2.el7.x86_64.rpm" + ], + "3.10.0-957.21.3.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.21.3.el7.x86_64.rpm" + ], + "3.10.0-957.27.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.27.2.el7.x86_64.rpm" + ], + "3.10.0-1062.0.0.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.0.0.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.0.0.0.1.el7.x86_64.rpm" + ], + "3.10.0-1062.1.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.1.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.1.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1062.1.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.1.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.1.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-1062.12.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.12.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.12.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1062.18.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.18.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.18.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1062.4.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.4.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.4.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1062.4.3.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.4.3.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.4.3.0.1.el7.x86_64.rpm" + ], + "3.10.0-1062.7.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.7.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.7.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1062.9.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.9.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.9.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1127.0.0.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.0.0.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.0.0.0.1.el7.x86_64.rpm" + ], + "3.10.0-1127.10.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.10.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.10.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1127.13.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.13.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.13.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1127.18.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.18.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.18.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-1127.19.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.19.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1127.19.1.0.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.19.1.0.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.0.2.el7.x86_64.rpm" + ], + "3.10.0-1127.8.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.8.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.8.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.11.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.11.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.11.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.15.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.15.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.15.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.2.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.2.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.2.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.2.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.2.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.2.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.21.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.21.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.21.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.24.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.24.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.24.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.25.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.25.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.25.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.31.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.31.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.31.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.36.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.36.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.36.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.41.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.41.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.41.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.42.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.42.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.42.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.45.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.45.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.45.1.0.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.45.1.0.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.0.2.el7.x86_64.rpm" + ], + "3.10.0-1160.49.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.49.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.49.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.53.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.53.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.53.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.59.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.59.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.59.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.6.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.6.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.6.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-1160.62.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.62.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-514.10.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.10.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.10.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-514.16.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.16.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.16.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-514.21.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.21.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.21.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-514.21.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.21.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.21.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-514.26.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.26.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.26.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-514.26.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.26.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.26.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-514.6.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.6.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.6.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-514.6.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.6.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.6.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-693.0.0.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.0.0.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.0.0.0.1.el7.x86_64.rpm" + ], + "3.10.0-693.1.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.1.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.1.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-693.11.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.11.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.11.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-693.11.6.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.11.6.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.11.6.0.1.el7.x86_64.rpm" + ], + "3.10.0-693.17.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.17.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.17.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-693.2.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.2.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.2.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-693.2.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.2.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.2.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-693.21.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.21.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.21.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-693.5.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.5.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.5.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-862.0.0.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.0.0.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.0.0.0.1.el7.x86_64.rpm" + ], + "3.10.0-862.11.6.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.11.6.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.11.6.0.1.el7.x86_64.rpm" + ], + "3.10.0-862.14.4.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.14.4.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.14.4.0.1.el7.x86_64.rpm" + ], + "3.10.0-862.2.3.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.2.3.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.2.3.0.1.el7.x86_64.rpm" + ], + "3.10.0-862.3.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.3.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.3.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-862.3.3.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.3.3.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.3.3.0.1.el7.x86_64.rpm" + ], + "3.10.0-862.6.3.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.6.3.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.6.3.0.1.el7.x86_64.rpm" + ], + "3.10.0-862.9.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.9.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.9.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.0.0.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.0.0.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.0.0.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.0.0.0.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.0.0.0.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.0.0.0.2.el7.x86_64.rpm" + ], + "3.10.0-957.1.3.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.1.3.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.1.3.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.1.3.0.3.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.1.3.0.3.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.1.3.0.3.el7.x86_64.rpm" + ], + "3.10.0-957.10.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.10.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.10.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.12.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.12.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.12.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.12.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.12.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.12.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.21.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.21.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.21.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.21.3.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.21.3.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.21.3.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.27.2.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.27.2.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.27.2.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.5.1.0.1.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.5.1.0.1.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.5.1.0.1.el7.x86_64.rpm" + ], + "3.10.0-957.5.1.0.2.el7.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.5.1.0.2.el7.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.5.1.0.2.el7.x86_64.rpm" + ], + "5.4.17-2011.0.7.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.0.7.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el7uek.x86_64.rpm" + ], + "5.4.17-2011.1.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.1.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el7uek.x86_64.rpm" + ], + "5.4.17-2011.2.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.2.2.el7uek.x86_64.rpm" + ], + "5.4.17-2011.3.2.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.3.2.1.el7uek.x86_64.rpm" + ], + "5.4.17-2011.4.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.4.4.el7uek.x86_64.rpm" + ], + "5.4.17-2011.4.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.4.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el7uek.x86_64.rpm" + ], + "5.4.17-2011.5.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.5.3.el7uek.x86_64.rpm" + ], + "5.4.17-2011.6.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.6.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el7uek.x86_64.rpm" + ], + "5.4.17-2011.7.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.7.4.el7uek.x86_64.rpm" + ], + "5.4.17-2036.100.6.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.100.6.1.el7uek.x86_64.rpm" + ], + "5.4.17-2036.101.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.101.2.el7uek.x86_64.rpm" + ], + "5.4.17-2036.102.0.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.102.0.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el7uek.x86_64.rpm" + ], + "5.4.17-2036.103.3.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.103.3.1.el7uek.x86_64.rpm" + ], + "5.4.17-2036.103.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.103.3.el7uek.x86_64.rpm" + ], + "5.4.17-2036.104.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.104.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el7uek.x86_64.rpm" + ], + "5.4.17-2036.104.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.104.5.el7uek.x86_64.rpm" + ], + "5.4.17-2102.200.13.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.200.13.el7uek.x86_64.rpm" + ], + "5.4.17-2102.201.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.201.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el7uek.x86_64.rpm" + ], + "5.4.17-2102.202.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.202.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el7uek.x86_64.rpm" + ], + "5.4.17-2102.203.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.203.5.el7uek.x86_64.rpm" + ], + "5.4.17-2102.203.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.203.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el7uek.x86_64.rpm" + ], + "5.4.17-2102.204.4.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el7uek.x86_64.rpm" + ], + "5.4.17-2102.204.4.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el7uek.x86_64.rpm" + ], + "5.4.17-2102.204.4.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el7uek.x86_64.rpm" + ], + "5.4.17-2102.205.7.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.205.7.2.el7uek.x86_64.rpm" + ], + "5.4.17-2102.205.7.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.205.7.3.el7uek.x86_64.rpm" + ], + "5.4.17-2102.206.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.206.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el7uek.x86_64.rpm" + ], + "5.4.17-2136.300.7.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.300.7.el7uek.x86_64.rpm" + ], + "5.4.17-2136.301.1.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el7uek.x86_64.rpm" + ], + "5.4.17-2136.301.1.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.3.el7uek.x86_64.rpm" + ], + "5.4.17-2136.301.1.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.4.el7uek.x86_64.rpm" + ], + "5.4.17-2136.302.6.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.6.1.el7uek.x86_64.rpm" + ], + "5.4.17-2136.302.7.2.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el7uek.x86_64.rpm" + ], + "5.4.17-2136.302.7.2.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.2.el7uek.x86_64.rpm" + ], + "5.4.17-2136.302.7.2.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.3.el7uek.x86_64.rpm" + ], + "5.4.17-2136.302.7.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el7uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.1.el7uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el7uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.3.el7uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.4.el7uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el7uek.x86_64.rpm" + ], + "5.4.17-2136.305.5.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el7uek.x86_64.rpm" + ], + "5.4.17-2136.305.5.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el7uek.x86_64.rpm" + ], + "5.4.17-2136.305.5.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.5.el7uek.x86_64.rpm" + ], + "4.14.35-1902.305.4.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.305.4.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.305.4.1.el7uek.x86_64.rpm" + ], + "4.14.35-1902.305.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.305.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.305.4.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.1.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.10.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.10.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.10.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.12.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.12.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.12.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.13.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.13.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.13.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.14.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.14.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.14.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.2.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.4.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.5.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.7.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.7.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.7.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.8.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.8.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.8.el7uek.x86_64.rpm" + ], + "4.14.35-1902.306.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.el7uek.x86_64.rpm" + ], + "4.14.35-2025.400.8.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.400.8.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.8.el7uek.x86_64.rpm" + ], + "4.14.35-2025.400.9.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.400.9.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.9.1.el7uek.x86_64.rpm" + ], + "4.14.35-2025.400.9.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.400.9.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.9.el7uek.x86_64.rpm" + ], + "4.14.35-2025.401.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.401.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.401.4.el7uek.x86_64.rpm" + ], + "4.14.35-2025.402.2.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.402.2.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.402.2.1.el7uek.x86_64.rpm" + ], + "4.14.35-2025.403.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.403.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.403.3.el7uek.x86_64.rpm" + ], + "4.14.35-2025.404.1.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.404.1.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.404.1.1.el7uek.x86_64.rpm" + ], + "4.14.35-2025.404.1.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.404.1.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.404.1.2.el7uek.x86_64.rpm" + ], + "4.14.35-2025.405.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.405.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.405.3.el7uek.x86_64.rpm" + ], + "4.14.35-2047.500.10.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.10.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.500.10.el7uek.x86_64.rpm" + ], + "4.14.35-2047.500.9.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.500.9.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.9.1.el7uek.x86_64.rpm" + ], + "4.14.35-2047.500.9.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.500.9.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.9.3.el7uek.x86_64.rpm" + ], + "4.14.35-2047.501.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.501.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.501.1.el7uek.x86_64.rpm" + ], + "4.14.35-2047.501.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.501.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.501.2.el7uek.x86_64.rpm" + ], + "4.14.35-2047.502.4.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.4.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.502.4.1.el7uek.x86_64.rpm" + ], + "4.14.35-2047.502.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.502.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.4.el7uek.x86_64.rpm" + ], + "4.14.35-2047.502.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.502.5.el7uek.x86_64.rpm" + ], + "4.14.35-2047.503.1.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.503.1.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.503.1.1.el7uek.x86_64.rpm" + ], + "4.14.35-2047.503.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.503.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.503.1.el7uek.x86_64.rpm" + ], + "4.14.35-2047.504.2.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.504.2.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.504.2.3.el7uek.x86_64.rpm" + ], + "4.14.35-2047.504.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.504.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.504.2.el7uek.x86_64.rpm" + ], + "4.14.35-2047.505.4.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.505.4.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.2.el7uek.x86_64.rpm" + ], + "4.14.35-2047.505.4.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.505.4.3.el7uek.x86_64.rpm" + ], + "4.14.35-2047.505.4.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.505.4.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.4.el7uek.x86_64.rpm" + ], + "4.14.35-2047.505.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.505.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.el7uek.x86_64.rpm" + ], + "4.14.35-2047.506.10.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.506.10.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.10.el7uek.x86_64.rpm" + ], + "4.14.35-2047.506.8.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.506.8.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.8.1.el7uek.x86_64.rpm" + ], + "4.14.35-2047.506.8.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.8.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.506.8.el7uek.x86_64.rpm" + ], + "4.14.35-2047.507.7.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.507.7.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.4.el7uek.x86_64.rpm" + ], + "4.14.35-2047.507.7.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.507.7.5.el7uek.x86_64.rpm" + ], + "4.14.35-2047.507.7.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.507.7.6.el7uek.x86_64.rpm" + ], + "4.14.35-2047.508.3.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.508.3.1.el7uek.x86_64.rpm" + ], + "4.14.35-2047.508.3.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.508.3.2.el7uek.x86_64.rpm" + ], + "4.14.35-2047.508.3.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.508.3.3.el7uek.x86_64.rpm" + ], + "4.14.35-2047.508.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.508.3.el7uek.x86_64.rpm" + ], + "4.14.35-2047.509.2.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.509.2.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.509.2.2.el7uek.x86_64.rpm" + ], + "4.14.35-2047.509.2.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.509.2.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.509.2.3.el7uek.x86_64.rpm" + ], + "4.14.35-2047.510.4.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.4.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.4.1.el7uek.x86_64.rpm" + ], + "4.14.35-2047.510.5.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.2.el7uek.x86_64.rpm" + ], + "4.14.35-2047.510.5.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.3.el7uek.x86_64.rpm" + ], + "4.14.35-2047.510.5.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.4.el7uek.x86_64.rpm" + ], + "4.14.35-2047.510.5.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.5.el7uek.x86_64.rpm" + ], + "4.14.35-2047.510.5.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.6.el7uek.x86_64.rpm" + ], + "4.14.35-2047.511.5.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.2.el7uek.x86_64.rpm" + ], + "4.14.35-2047.511.5.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.3.el7uek.x86_64.rpm" + ], + "4.14.35-2047.511.5.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.4.el7uek.x86_64.rpm" + ], + "4.14.35-2047.511.5.5.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.5.1.el7uek.x86_64.rpm" + ], + "4.14.35-2047.511.5.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.5.el7uek.x86_64.rpm" + ], + "4.14.35-2047.511.5.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.6.el7uek.x86_64.rpm" + ], + "4.14.35-2047.511.5.7.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.7.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.7.el7uek.x86_64.rpm" + ], + "4.14.35-2047.511.5.8.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.8.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.8.el7uek.x86_64.rpm" + ], + "4.1.12-124.42.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.42.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.42.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.3.el7uek.x86_64.rpm" + ], + "4.1.12-124.42.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.42.4.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.42.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.4.el7uek.x86_64.rpm" + ], + "4.1.12-124.43.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.43.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.43.4.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.43.4.el7uek.x86_64.rpm" + ], + "4.1.12-124.44.4.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.44.4.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.44.4.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.1.el7uek.x86_64.rpm" + ], + "4.1.12-124.44.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.44.4.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.44.4.el7uek.x86_64.rpm" + ], + "4.1.12-124.45.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.45.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.45.2.el7uek.noarch.rpm" + ], + "4.1.12-124.45.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.45.6.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.45.6.el7uek.x86_64.rpm" + ], + "4.1.12-124.46.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.46.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.46.3.el7uek.x86_64.rpm" + ], + "4.1.12-124.46.4.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.46.4.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.46.4.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.4.1.el7uek.x86_64.rpm" + ], + "4.1.12-124.47.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.47.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.47.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.47.3.el7uek.x86_64.rpm" + ], + "4.1.12-124.48.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.2.el7uek.x86_64.rpm" + ], + "4.1.12-124.48.3.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.3.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.3.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.3.1.el7uek.x86_64.rpm" + ], + "4.1.12-124.48.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.5.el7uek.noarch.rpm" + ], + "4.1.12-124.48.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.6.el7uek.noarch.rpm" + ], + "4.1.12-124.49.3.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.49.3.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.49.3.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.49.3.1.el7uek.x86_64.rpm" + ], + "4.1.12-124.50.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.50.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.50.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.50.2.el7uek.x86_64.rpm" + ], + "4.1.12-124.51.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.51.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.51.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.51.2.el7uek.x86_64.rpm" + ], + "4.1.12-124.52.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.52.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.52.4.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.4.el7uek.x86_64.rpm" + ], + "4.1.12-124.52.5.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.5.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.52.5.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.52.5.1.el7uek.noarch.rpm" + ], + "4.1.12-124.52.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.52.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.52.5.el7uek.noarch.rpm" + ], + "4.1.12-124.53.3.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.3.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.53.3.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.53.3.1.el7uek.noarch.rpm" + ], + "4.1.12-124.53.5.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.53.5.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.53.5.1.el7uek.x86_64.rpm" + ], + "4.1.12-124.53.5.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.53.5.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.53.5.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.2.el7uek.x86_64.rpm" + ], + "4.1.12-124.53.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.53.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.53.5.el7uek.noarch.rpm" + ], + "4.1.12-124.54.6.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.54.6.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.54.6.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.54.6.1.el7uek.noarch.rpm" + ], + "4.1.12-124.54.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.54.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.54.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.54.6.el7uek.noarch.rpm" + ], + "4.1.12-124.56.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.56.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.56.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.56.1.el7uek.noarch.rpm" + ], + "4.1.12-124.57.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.57.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.57.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.57.1.el7uek.noarch.rpm" + ], + "4.1.12-124.58.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.58.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.58.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.58.2.el7uek.x86_64.rpm" + ], + "4.1.12-124.59.1.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.59.1.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.59.1.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.59.1.2.el7uek.x86_64.rpm" + ], + "4.1.12-124.59.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.59.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.59.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.59.1.el7uek.x86_64.rpm" + ], + "4.1.12-124.60.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.60.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.60.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.60.1.el7uek.x86_64.rpm" + ], + "4.1.12-124.61.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.61.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.61.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.61.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.10.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.10.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.10.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.10.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.11.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.11.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.11.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.11.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.13.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.13.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.13.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.13.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.13.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.13.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.3.el7uek.x86_64.rpm" + ], + "3.8.13-118.14.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.14.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.14.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.14.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.14.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.14.2.el7uek.noarch.rpm" + ], + "3.8.13-118.15.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.15.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.15.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.15.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.15.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.15.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.3.el7uek.x86_64.rpm" + ], + "3.8.13-118.16.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.16.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.16.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.16.3.el7uek.x86_64.rpm" + ], + "3.8.13-118.16.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.16.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.4.el7uek.noarch.rpm" + ], + "3.8.13-118.17.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.17.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.17.4.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.4.el7uek.x86_64.rpm" + ], + "3.8.13-118.17.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.17.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.17.5.el7uek.noarch.rpm" + ], + "3.8.13-118.18.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.18.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.18.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.18.3.el7uek.x86_64.rpm" + ], + "3.8.13-118.18.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.18.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.4.el7uek.noarch.rpm" + ], + "3.8.13-118.19.10.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.10.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.10.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.10.el7uek.noarch.rpm" + ], + "3.8.13-118.19.12.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.12.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.12.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.12.el7uek.x86_64.rpm" + ], + "3.8.13-118.19.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.19.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.3.el7uek.x86_64.rpm" + ], + "3.8.13-118.19.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.4.el7uek.noarch.rpm" + ], + "3.8.13-118.19.7.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.7.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.7.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.7.el7uek.noarch.rpm" + ], + "3.8.13-118.2.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.2.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.2.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.2.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.2.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.2.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.4.el7uek.noarch.rpm" + ], + "3.8.13-118.2.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.5.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.2.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.5.el7uek.x86_64.rpm" + ], + "3.8.13-118.20.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.1.el7uek.noarch.rpm" + ], + "3.8.13-118.20.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.20.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.3.el7uek.x86_64.rpm" + ], + "3.8.13-118.20.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.6.el7uek.noarch.rpm" + ], + "3.8.13-118.20.7.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.7.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.7.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.7.el7uek.x86_64.rpm" + ], + "3.8.13-118.21.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.21.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.21.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.21.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.21.4.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.21.4.el7uek.x86_64.rpm" + ], + "3.8.13-118.22.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.22.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.22.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.22.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.23.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.23.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.23.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.23.1.el7uek.noarch.rpm" + ], + "3.8.13-118.24.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.24.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.24.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.24.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.24.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.24.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.3.el7uek.x86_64.rpm" + ], + "3.8.13-118.25.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.25.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.25.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.25.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.26.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.26.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.26.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.26.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.27.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.27.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.27.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.27.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.28.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.28.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.28.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.28.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.29.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.29.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.29.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.29.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.3.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.3.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.3.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.3.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.3.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.3.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.30.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.30.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.30.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.30.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.31.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.31.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.31.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.31.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.32.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.32.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.32.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.32.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.33.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.33.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.33.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.33.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.34.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.34.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.34.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.34.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.35.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.35.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.35.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.35.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.35.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.35.2.el7uek.noarch.rpm" + ], + "3.8.13-118.36.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.36.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.36.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.36.1.el7uek.noarch.rpm" + ], + "3.8.13-118.37.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.37.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.37.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.37.1.el7uek.noarch.rpm" + ], + "3.8.13-118.38.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.38.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.38.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.38.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.39.1.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.39.1.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.39.1.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.39.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.39.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.39.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.4.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.4.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.4.1.el7uek.noarch.rpm" + ], + "3.8.13-118.4.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.4.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.4.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.40.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.40.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.40.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.40.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.41.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.41.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.41.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.41.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.42.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.42.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.42.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.42.1.el7uek.noarch.rpm" + ], + "3.8.13-118.43.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.43.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.43.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.43.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.44.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.44.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.44.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.44.1.el7uek.noarch.rpm" + ], + "3.8.13-118.45.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.45.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.45.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.45.1.el7uek.noarch.rpm" + ], + "3.8.13-118.46.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.46.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.46.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.46.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.47.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.47.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.47.1.el7uek.noarch.rpm" + ], + "3.8.13-118.47.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.47.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.47.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.48.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.48.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.48.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.48.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.6.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.6.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.6.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.6.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.6.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.6.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.7.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.7.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.7.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.7.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.8.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.8.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.8.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.8.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.9.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.9.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.9.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.9.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.9.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.9.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.2.el7uek.x86_64.rpm" + ], + "3.8.13-118.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.el7uek.x86_64.rpm" + ], + "3.8.13-35.3.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.1.el7uek.x86_64.rpm" + ], + "3.8.13-35.3.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.2.el7uek.x86_64.rpm" + ], + "3.8.13-35.3.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.3.el7uek.noarch.rpm" + ], + "3.8.13-35.3.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.4.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.4.el7uek.x86_64.rpm" + ], + "3.8.13-35.3.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.5.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.5.el7uek.x86_64.rpm" + ], + "3.8.13-44.1.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.1.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.1.el7uek.noarch.rpm" + ], + "3.8.13-44.1.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.1.3.el7uek.x86_64.rpm" + ], + "3.8.13-44.1.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.4.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.1.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.4.el7uek.x86_64.rpm" + ], + "3.8.13-44.1.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.5.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.1.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.5.el7uek.x86_64.rpm" + ], + "3.8.13-44.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.el7uek.noarch.rpm" + ], + "3.8.13-55.1.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.1.el7uek.noarch.rpm" + ], + "3.8.13-55.1.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.2.el7uek.noarch.rpm" + ], + "3.8.13-55.1.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.5.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.5.el7uek.x86_64.rpm" + ], + "3.8.13-55.1.6.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.6.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.6.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.6.el7uek.x86_64.rpm" + ], + "3.8.13-55.1.8.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.8.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.8.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.8.el7uek.x86_64.rpm" + ], + "3.8.13-55.2.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.2.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.2.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.2.1.el7uek.x86_64.rpm" + ], + "3.8.13-55.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.el7uek.x86_64.rpm" + ], + "3.8.13-68.1.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.1.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.1.2.el7uek.noarch.rpm" + ], + "3.8.13-68.1.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.1.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.1.3.el7uek.noarch.rpm" + ], + "3.8.13-68.2.2.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.2.el7uek.x86_64.rpm" + ], + "3.8.13-68.2.2.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.3.el7uek.x86_64.rpm" + ], + "3.8.13-68.2.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.el7uek.x86_64.rpm" + ], + "3.8.13-68.3.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.1.el7uek.x86_64.rpm" + ], + "3.8.13-68.3.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.2.el7uek.x86_64.rpm" + ], + "3.8.13-68.3.3.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.3.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.3.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.3.el7uek.x86_64.rpm" + ], + "3.8.13-68.3.4.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.4.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.4.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.4.el7uek.x86_64.rpm" + ], + "3.8.13-68.3.5.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.5.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.5.el7uek.noarch.rpm" + ], + "3.8.13-68.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.el7uek.x86_64.rpm" + ], + "3.8.13-98.1.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.1.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.1.1.el7uek.noarch.rpm" + ], + "3.8.13-98.1.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.1.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.1.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.2.el7uek.x86_64.rpm" + ], + "3.8.13-98.2.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.2.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.2.1.el7uek.noarch.rpm" + ], + "3.8.13-98.2.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.2.2.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.2.2.el7uek.x86_64.rpm" + ], + "3.8.13-98.4.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.4.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.4.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.4.1.el7uek.x86_64.rpm" + ], + "3.8.13-98.5.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.5.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.5.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.5.2.el7uek.noarch.rpm" + ], + "3.8.13-98.6.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.6.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.6.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.6.1.el7uek.noarch.rpm" + ], + "3.8.13-98.7.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.7.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.7.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.7.1.el7uek.noarch.rpm" + ], + "3.8.13-98.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.el7uek.x86_64.rpm" + ], + "3.8.13-118.49.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.49.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.49.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.49.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.50.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.50.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.50.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.50.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.51.2.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.51.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.2.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.51.2.el7uek.noarch.rpm" + ], + "3.8.13-118.52.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.52.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.52.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.52.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.53.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.53.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.53.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.53.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.54.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.54.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.54.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.54.1.el7uek.x86_64.rpm" + ], + "3.8.13-118.55.1.el7uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.55.1.el7uek.noarch.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.55.1.el7uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.55.1.el7uek.x86_64.rpm" + ] + }, + "Oracle8": { + "4.18.0-147.0.2.el8_1.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.0.2.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.0.2.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.0.2.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.0.2.el8_1.x86_64.rpm" + ], + "4.18.0-147.0.3.el8_1.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.0.3.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.0.3.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.0.3.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.0.3.el8_1.x86_64.rpm" + ], + "4.18.0-147.3.1.el8_1.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.3.1.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.3.1.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.3.1.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.3.1.el8_1.x86_64.rpm" + ], + "4.18.0-147.5.1.el8_1.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.5.1.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.5.1.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.5.1.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.5.1.el8_1.x86_64.rpm" + ], + "4.18.0-147.8.1.el8_1.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.8.1.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.8.1.el8_1.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.8.1.el8_1.x86_64.rpm" + ], + "4.18.0-147.el8.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.el8.x86_64.rpm" + ], + "4.18.0-193.1.2.el8_2.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.1.2.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.1.2.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.1.2.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.1.2.el8_2.x86_64.rpm" + ], + "4.18.0-193.13.2.el8_2.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.13.2.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.13.2.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.13.2.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.13.2.el8_2.x86_64.rpm" + ], + "4.18.0-193.14.3.el8_2.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.14.3.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.14.3.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.14.3.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.14.3.el8_2.x86_64.rpm" + ], + "4.18.0-193.19.1.el8_2.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.19.1.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.19.1.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.19.1.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.19.1.el8_2.x86_64.rpm" + ], + "4.18.0-193.28.1.el8_2.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.28.1.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.28.1.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.28.1.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm" + ], + "4.18.0-193.6.3.el8_2.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.6.3.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.6.3.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.6.3.el8_2.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.6.3.el8_2.x86_64.rpm" + ], + "4.18.0-193.el8.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.el8.x86_64.rpm" + ], + "4.18.0-240.1.1.el8_3.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.1.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.1.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.1.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.1.1.el8_3.x86_64.rpm" + ], + "4.18.0-240.10.1.el8_3.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.10.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.10.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.10.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.10.1.el8_3.x86_64.rpm" + ], + "4.18.0-240.15.1.el8_3.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.15.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.15.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.15.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.15.1.el8_3.x86_64.rpm" + ], + "4.18.0-240.22.1.el8_3.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.22.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.22.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.22.1.el8_3.x86_64.rpm" + ], + "4.18.0-240.8.1.el8_3.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.8.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.8.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.8.1.el8_3.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.8.1.el8_3.x86_64.rpm" + ], + "4.18.0-240.el8.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.el8.x86_64.rpm" + ], + "4.18.0-305.10.2.el8_4.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.10.2.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.10.2.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.10.2.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm" + ], + "4.18.0-305.12.1.el8_4.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.12.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.12.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.12.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.17.1.el8_4.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.17.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.17.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.17.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.19.1.el8_4.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.19.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.19.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.19.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.25.1.el8_4.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.25.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.25.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.25.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.3.1.el8_4.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.3.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.3.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.3.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.3.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.7.1.el8_4.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.7.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.7.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.7.1.el8_4.x86_64.rpm" + ], + "4.18.0-305.el8.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.el8.x86_64.rpm" + ], + "4.18.0-348.12.2.el8_5.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.12.2.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.12.2.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.12.2.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.12.2.el8_5.x86_64.rpm" + ], + "4.18.0-348.2.1.el8_5.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.2.1.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.2.1.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.2.1.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm" + ], + "4.18.0-348.20.1.el8_5.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.20.1.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.20.1.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.20.1.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.20.1.el8_5.x86_64.rpm" + ], + "4.18.0-348.7.1.el8_5.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.7.1.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.7.1.el8_5.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.7.1.el8_5.x86_64.rpm" + ], + "4.18.0-348.el8.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.el8.x86_64.rpm" + ], + "4.18.0-80.1.2.el8_0.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.1.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.1.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.1.2.el8_0.x86_64.rpm" + ], + "4.18.0-80.11.1.el8_0.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.11.1.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.11.1.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.11.1.el8_0.x86_64.rpm" + ], + "4.18.0-80.11.2.el8_0.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.11.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.11.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.11.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" + ], + "4.18.0-80.4.2.el8_0.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.4.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.4.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.4.2.el8_0.x86_64.rpm" + ], + "4.18.0-80.7.1.el8_0.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.7.1.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.7.1.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.7.1.el8_0.x86_64.rpm" + ], + "4.18.0-80.7.2.el8_0.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.7.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.7.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.7.2.el8_0.x86_64.rpm" + ], + "4.18.0-80.el8.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.el8.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.el8.x86_64.rpm" + ], + "5.4.17-2011.0.7.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.0.7.el8uek.x86_64.rpm" + ], + "5.4.17-2011.1.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.1.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el8uek.x86_64.rpm" + ], + "5.4.17-2011.2.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.2.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el8uek.x86_64.rpm" + ], + "5.4.17-2011.3.2.1.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.3.2.1.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el8uek.x86_64.rpm" + ], + "5.4.17-2011.4.4.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.4.4.el8uek.x86_64.rpm" + ], + "5.4.17-2011.4.6.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.4.6.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el8uek.x86_64.rpm" + ], + "5.4.17-2011.5.3.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.5.3.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el8uek.x86_64.rpm" + ], + "5.4.17-2011.6.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.6.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el8uek.x86_64.rpm" + ], + "5.4.17-2011.7.4.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.7.4.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el8uek.x86_64.rpm" + ], + "5.4.17-2036.100.6.1.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.100.6.1.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el8uek.x86_64.rpm" + ], + "5.4.17-2036.101.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.101.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el8uek.x86_64.rpm" + ], + "5.4.17-2036.102.0.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.102.0.2.el8uek.x86_64.rpm" + ], + "5.4.17-2036.103.3.1.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.103.3.1.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el8uek.x86_64.rpm" + ], + "5.4.17-2036.103.3.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.103.3.el8uek.x86_64.rpm" + ], + "5.4.17-2036.104.4.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.104.4.el8uek.x86_64.rpm" + ], + "5.4.17-2036.104.5.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.104.5.el8uek.x86_64.rpm" + ], + "5.4.17-2102.200.13.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.200.13.el8uek.x86_64.rpm" + ], + "5.4.17-2102.201.3.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.201.3.el8uek.x86_64.rpm" + ], + "5.4.17-2102.202.5.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.202.5.el8uek.x86_64.rpm" + ], + "5.4.17-2102.203.5.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.203.5.el8uek.x86_64.rpm" + ], + "5.4.17-2102.203.6.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.203.6.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el8uek.x86_64.rpm" + ], + "5.4.17-2102.204.4.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.2.el8uek.x86_64.rpm" + ], + "5.4.17-2102.204.4.3.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.3.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el8uek.x86_64.rpm" + ], + "5.4.17-2102.204.4.4.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.4.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el8uek.x86_64.rpm" + ], + "5.4.17-2102.205.7.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.205.7.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el8uek.x86_64.rpm" + ], + "5.4.17-2102.205.7.3.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.205.7.3.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el8uek.x86_64.rpm" + ], + "5.4.17-2102.206.1.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.206.1.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el8uek.x86_64.rpm" + ], + "5.4.17-2136.300.7.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.300.7.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el8uek.x86_64.rpm" + ], + "5.4.17-2136.301.1.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.2.el8uek.x86_64.rpm" + ], + "5.4.17-2136.301.1.3.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.3.el8uek.x86_64.rpm" + ], + "5.4.17-2136.301.1.4.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.4.el8uek.x86_64.rpm" + ], + "5.4.17-2136.302.6.1.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.6.1.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el8uek.x86_64.rpm" + ], + "5.4.17-2136.302.7.2.1.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.1.el8uek.x86_64.rpm" + ], + "5.4.17-2136.302.7.2.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.2.el8uek.x86_64.rpm" + ], + "5.4.17-2136.302.7.2.3.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.3.el8uek.x86_64.rpm" + ], + "5.4.17-2136.302.7.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el8uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.1.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.1.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el8uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.2.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.2.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el8uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.3.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.3.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el8uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.4.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.4.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el8uek.x86_64.rpm" + ], + "5.4.17-2136.304.4.5.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.5.el8uek.x86_64.rpm" + ], + "5.4.17-2136.305.5.3.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.3.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el8uek.x86_64.rpm" + ], + "5.4.17-2136.305.5.4.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.4.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el8uek.x86_64.rpm" + ], + "5.4.17-2136.305.5.5.el8uek.x86_64": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el8uek.x86_64.rpm", + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.5.el8uek.x86_64.rpm" + ] + }, + "PhotonOS": { + "1.3.0-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/Linux-PAM-devel-1.3.0-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/Linux-PAM-1.3.0-1.ph3.x86_64.rpm" + ], + "4.19.15-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-devel-4.19.15-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.15-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.15-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-4.19.15-2.ph3.x86_64.rpm" + ], + "4.19.15-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-4.19.15-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-aws-4.19.15-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" + ], + "4.19.104-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.104-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.104-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.104-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.104-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-1.ph3.x86_64.rpm" + ], + "4.19.104-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.104-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.104-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.104-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.104-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-3.ph3.x86_64.rpm" + ], + "4.19.112-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.112-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.112-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.112-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.112-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.112-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.112-1.ph3.x86_64.rpm" + ], + "4.19.115-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-1.ph3.x86_64.rpm" + ], + "4.19.115-10.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-10.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-10.ph3.x86_64.rpm" + ], + "4.19.115-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-2.ph3.x86_64.rpm" + ], + "4.19.115-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-3.ph3.x86_64.rpm" + ], + "4.19.115-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-5.ph3.x86_64.rpm" + ], + "4.19.115-6.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-6.ph3.x86_64.rpm" + ], + "4.19.115-7.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-7.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-7.ph3.x86_64.rpm" + ], + "4.19.115-9.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-9.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-9.ph3.x86_64.rpm" + ], + "4.19.124-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.124-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.124-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.124-1.ph3.x86_64.rpm" + ], + "4.19.124-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.124-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.124-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.124-2.ph3.x86_64.rpm" + ], + "4.19.126-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.126-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.126-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.126-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.126-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.126-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" + ], + "4.19.126-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.126-2.ph3.x86_64.rpm" + ], + "4.19.129-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.129-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.129-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.129-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.129-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.129-1.ph3.x86_64.rpm" + ], + "4.19.129-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.129-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-2.ph3.x86_64.rpm" + ], + "4.19.129-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.129-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-3.ph3.x86_64.rpm" + ], + "4.19.132-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.132-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-1.ph3.x86_64.rpm" + ], + "4.19.132-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.132-2.ph3.x86_64.rpm" + ], + "4.19.132-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.132-3.ph3.x86_64.rpm" + ], + "4.19.132-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" + ], + "4.19.132-6.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-6.ph3.x86_64.rpm" + ], + "4.19.138-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.138-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.138-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.138-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.138-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.138-1.ph3.x86_64.rpm" + ], + "4.19.138-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.138-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.138-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.138-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.138-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.138-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-2.ph3.x86_64.rpm" + ], + "4.19.138-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.138-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-4.ph3.x86_64.rpm" + ], + "4.19.145-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.145-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.145-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.145-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.145-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-1.ph3.x86_64.rpm" + ], + "4.19.145-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.145-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.145-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.145-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.145-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-2.ph3.x86_64.rpm" + ], + "4.19.145-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.145-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.145-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.145-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.145-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-4.ph3.x86_64.rpm" + ], + "4.19.148-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.148-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.148-1.ph3.x86_64.rpm" + ], + "4.19.148-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.148-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" + ], + "4.19.148-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.148-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.148-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-3.ph3.x86_64.rpm" + ], + "4.19.148-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.148-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.148-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-4.ph3.x86_64.rpm" + ], + "4.19.148-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.148-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-5.ph3.x86_64.rpm" + ], + "4.19.15-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.15-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.15-3.ph3.x86_64.rpm" + ], + "4.19.150-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.150-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.150-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.150-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.150-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.150-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.150-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.150-1.ph3.x86_64.rpm" + ], + "4.19.154-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.154-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.154-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.154-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-1.ph3.x86_64.rpm" + ], + "4.19.154-10.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-10.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-10.ph3.x86_64.rpm" + ], + "4.19.154-11.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-11.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-11.ph3.x86_64.rpm" + ], + "4.19.154-8.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-8.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-8.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.154-8.ph3.x86_64.rpm" + ], + "4.19.154-9.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-9.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-9.ph3.x86_64.rpm" + ], + "4.19.160-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.160-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.160-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.160-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-2.ph3.x86_64.rpm" + ], + "4.19.160-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.160-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.160-4.ph3.x86_64.rpm" + ], + "4.19.160-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.160-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-5.ph3.x86_64.rpm" + ], + "4.19.160-6.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.160-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-6.ph3.x86_64.rpm" + ], + "4.19.164-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.164-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.164-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.164-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.164-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.164-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.164-1.ph3.x86_64.rpm" + ], + "4.19.164-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.164-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.164-2.ph3.x86_64.rpm" + ], + "4.19.174-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.174-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.174-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.174-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.174-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-2.ph3.x86_64.rpm" + ], + "4.19.174-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.174-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.174-4.ph3.x86_64.rpm" + ], + "4.19.174-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.174-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-5.ph3.x86_64.rpm" + ], + "4.19.177-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.177-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.177-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.177-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.177-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.177-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.177-1.ph3.x86_64.rpm" + ], + "4.19.177-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.177-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.177-2.ph3.x86_64.rpm" + ], + "4.19.182-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.182-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.182-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.182-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.182-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.182-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-1.ph3.x86_64.rpm" + ], + "4.19.182-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.182-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.182-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.182-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.182-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.182-2.ph3.x86_64.rpm" + ], + "4.19.186-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.186-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.186-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.186-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.186-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-1.ph3.x86_64.rpm" + ], + "4.19.186-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.186-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.186-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.186-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.186-2.ph3.x86_64.rpm" + ], + "4.19.186-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.186-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.186-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.186-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.186-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-3.ph3.x86_64.rpm" + ], + "4.19.186-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.186-4.ph3.x86_64.rpm" + ], + "4.19.189-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.189-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.189-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.189-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.189-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" + ], + "4.19.189-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.189-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.189-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.189-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.189-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-3.ph3.x86_64.rpm" + ], + "4.19.189-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.189-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.189-4.ph3.x86_64.rpm" + ], + "4.19.189-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.189-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-5.ph3.x86_64.rpm" + ], + "4.19.190-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.190-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.190-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.190-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.190-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.190-1.ph3.x86_64.rpm" + ], + "4.19.190-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.190-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" + ], + "4.19.190-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.190-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-3.ph3.x86_64.rpm" + ], + "4.19.191-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.191-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.191-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-1.ph3.x86_64.rpm" + ], + "4.19.191-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.191-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.191-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.191-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-2.ph3.x86_64.rpm" + ], + "4.19.191-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.191-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.191-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.191-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-3.ph3.x86_64.rpm" + ], + "4.19.198-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.198-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.198-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.198-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.198-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.198-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.198-1.ph3.x86_64.rpm" + ], + "4.19.198-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.198-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.198-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.198-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.198-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-2.ph3.x86_64.rpm" + ], + "4.19.198-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.198-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.198-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-3.ph3.x86_64.rpm" + ], + "4.19.198-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.198-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.198-4.ph3.x86_64.rpm" + ], + "4.19.205-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.205-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.205-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.205-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.205-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.205-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.205-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.205-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.205-1.ph3.x86_64.rpm" + ], + "4.19.208-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.208-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.208-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.208-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.208-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.208-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.208-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.208-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.208-1.ph3.x86_64.rpm" + ], + "4.19.214-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.214-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.214-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" + ], + "4.19.214-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.214-4.ph3.x86_64.rpm" + ], + "4.19.217-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.217-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.217-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.217-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.217-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.217-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.217-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" + ], + "4.19.219-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.219-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.219-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.219-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.219-1.ph3.x86_64.rpm" + ], + "4.19.219-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.219-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.219-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.219-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.219-3.ph3.x86_64.rpm" + ], + "4.19.219-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.219-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.219-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.219-4.ph3.x86_64.rpm" + ], + "4.19.219-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.219-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.219-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.219-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-5.ph3.x86_64.rpm" + ], + "4.19.224-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.224-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.224-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.224-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.224-1.ph3.x86_64.rpm" + ], + "4.19.224-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.224-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.224-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.224-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.224-2.ph3.x86_64.rpm" + ], + "4.19.225-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.225-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.225-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.225-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.225-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-3.ph3.x86_64.rpm" + ], + "4.19.225-6.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.225-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-6.ph3.x86_64.rpm" + ], + "4.19.229-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.229-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.229-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.229-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.229-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.229-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-1.ph3.x86_64.rpm" + ], + "4.19.229-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.229-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.229-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.229-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-2.ph3.x86_64.rpm" + ], + "4.19.229-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.229-3.ph3.x86_64.rpm" + ], + "4.19.232-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.232-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.232-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.232-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.232-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-1.ph3.x86_64.rpm" + ], + "4.19.232-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.232-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.232-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.232-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.232-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-2.ph3.x86_64.rpm" + ], + "4.19.232-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.232-3.ph3.x86_64.rpm" + ], + "4.19.232-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.232-4.ph3.x86_64.rpm" + ], + "4.19.29-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.29-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.29-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.29-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.29-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.29-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.29-1.ph3.x86_64.rpm" + ], + "4.19.32-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.32-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.32-3.ph3.x86_64.rpm" + ], + "4.19.40-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.40-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.40-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.40-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-2.ph3.x86_64.rpm" + ], + "4.19.40-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.40-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.40-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.40-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-3.ph3.x86_64.rpm" + ], + "4.19.52-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.52-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.52-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.52-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.52-1.ph3.x86_64.rpm" + ], + "4.19.52-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.52-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-2.ph3.x86_64.rpm" + ], + "4.19.65-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.65-2.ph3.x86_64.rpm" + ], + "4.19.65-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.65-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-3.ph3.x86_64.rpm" + ], + "4.19.69-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.69-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.69-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.69-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.69-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.69-1.ph3.x86_64.rpm" + ], + "4.19.72-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.72-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.72-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.72-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-1.ph3.x86_64.rpm" + ], + "4.19.72-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.72-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.72-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.72-2.ph3.x86_64.rpm" + ], + "4.19.76-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.76-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.76-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.76-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-1.ph3.x86_64.rpm" + ], + "4.19.76-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.76-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-5.ph3.x86_64.rpm" + ], + "4.19.79-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.79-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.79-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.79-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.79-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.79-1.ph3.x86_64.rpm" + ], + "4.19.79-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.79-2.ph3.x86_64.rpm" + ], + "4.19.82-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.82-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.82-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.82-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.82-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.82-1.ph3.x86_64.rpm" + ], + "4.19.84-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.84-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.84-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.84-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.84-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.84-1.ph3.x86_64.rpm" + ], + "4.19.84-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.84-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-2.ph3.x86_64.rpm" + ], + "4.19.87-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.87-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.87-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.87-1.ph3.x86_64.rpm" + ], + "4.19.87-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.87-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.87-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" + ], + "4.19.87-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.87-5.ph3.x86_64.rpm" + ], + "4.19.97-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-1.ph3.x86_64.rpm" + ], + "4.19.97-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-2.ph3.x86_64.rpm" + ], + "4.19.97-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-3.ph3.x86_64.rpm" + ], + "4.19.97-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-4.ph3.x86_64.rpm" + ], + "4.19.97-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-5.ph3.x86_64.rpm" + ], + "4.19.97-6.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-6.ph3.x86_64.rpm" + ], + "4.19.115-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-4.ph3.x86_64.rpm" + ], + "4.19.154-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.154-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.154-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-5.ph3.x86_64.rpm" + ], + "4.19.154-6.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.154-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-6.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.154-6.ph3.x86_64.rpm" + ], + "4.19.160-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.160-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.160-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.160-1.ph3.x86_64.rpm" + ], + "4.19.174-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.174-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.174-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.174-1.ph3.x86_64.rpm" + ], + "4.19.214-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.214-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.214-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.214-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.214-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.214-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-2.ph3.x86_64.rpm" + ], + "4.19.219-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.219-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-2.ph3.x86_64.rpm" + ], + "4.19.225-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.225-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.225-5.ph3.x86_64.rpm" + ], + "4.19.32-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.32-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.32-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.32-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.32-2.ph3.x86_64.rpm" + ], + "4.19.65-1.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.65-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.65-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.65-1.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.65-1.ph3.x86_64.rpm" + ], + "4.19.76-2.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.76-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.76-2.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-2.ph3.x86_64.rpm" + ], + "4.19.87-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.87-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.87-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-3.ph3.x86_64.rpm" + ], + "4.19.132-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-4.ph3.x86_64.rpm" + ], + "4.19.160-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.160-3.ph3.x86_64.rpm" + ], + "4.19.174-3.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.174-3.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-3.ph3.x86_64.rpm" + ], + "4.19.190-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-4.ph3.x86_64.rpm" + ], + "4.19.190-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-5.ph3.x86_64.rpm" + ], + "4.19.191-4.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.191-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-4.ph3.x86_64.rpm" + ], + "4.19.191-5.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.191-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-5.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-5.ph3.x86_64.rpm" + ], + "4.19.225-7.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-7.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.225-7.ph3.x86_64.rpm" + ], + "4.19.154-7.ph3.x86_64": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.154-7.ph3.x86_64.rpm", + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-7.ph3.x86_64.rpm" + ], + "1.4.0-3.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-1.4.0-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-3.ph4.x86_64.rpm" + ], + "1.4.0-4.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-1.4.0-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/Linux-PAM-1.4.0-4.ph4.x86_64.rpm" + ], + "5.10.103-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.103-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.103-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.103-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.103-1.ph4.x86_64.rpm" + ], + "5.10.103-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.103-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.103-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.103-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.103-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-2.ph4.x86_64.rpm" + ], + "5.10.103-3.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.103-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.103-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.103-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.103-3.ph4.x86_64.rpm" + ], + "5.10.103-4.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-aws-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-secure-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-rt-5.10.103-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" + ], + "5.10.25-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-1.ph4.x86_64.rpm" + ], + "5.10.25-10.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-10.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-10.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-10.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-10.ph4.x86_64.rpm" + ], + "5.10.25-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-2.ph4.x86_64.rpm" + ], + "5.10.25-3.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-3.ph4.x86_64.rpm" + ], + "5.10.25-5.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-5.ph4.x86_64.rpm" + ], + "5.10.25-6.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-6.ph4.x86_64.rpm" + ], + "5.10.25-7.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-7.ph4.x86_64.rpm" + ], + "5.10.25-9.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-9.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-9.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-9.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-9.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-9.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-9.ph4.x86_64.rpm" + ], + "5.10.35-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.35-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.35-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.35-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.35-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.35-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" + ], + "5.10.35-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.35-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.35-2.ph4.x86_64.rpm" + ], + "5.10.35-3.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.35-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.35-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-3.ph4.x86_64.rpm" + ], + "5.10.35-4.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.35-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-4.ph4.x86_64.rpm" + ], + "5.10.4-17.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.4-17.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.4-17.ph4.x86_64.rpm" + ], + "5.10.42-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.42-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.42-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.42-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.42-1.ph4.x86_64.rpm" + ], + "5.10.42-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.42-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.42-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.42-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.42-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-2.ph4.x86_64.rpm" + ], + "5.10.42-3.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.42-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.42-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.42-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-3.ph4.x86_64.rpm" + ], + "5.10.46-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.46-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.46-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.46-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.46-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-1.ph4.x86_64.rpm" + ], + "5.10.46-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.46-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.46-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.46-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.46-2.ph4.x86_64.rpm" + ], + "5.10.52-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.52-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.52-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.52-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.52-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.52-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.52-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.52-1.ph4.x86_64.rpm" + ], + "5.10.52-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.52-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.52-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.52-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-2.ph4.x86_64.rpm" + ], + "5.10.61-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.61-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.61-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.61-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.61-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-1.ph4.x86_64.rpm" + ], + "5.10.61-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.61-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.61-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.61-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.61-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-2.ph4.x86_64.rpm" + ], + "5.10.75-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.75-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.75-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.75-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.75-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.75-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.75-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.75-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.75-1.ph4.x86_64.rpm" + ], + "5.10.78-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.78-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.78-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.78-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.78-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.78-1.ph4.x86_64.rpm" + ], + "5.10.78-4.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.78-4.ph4.x86_64.rpm" + ], + "5.10.78-5.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.78-5.ph4.x86_64.rpm" + ], + "5.10.83-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.83-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-2.ph4.x86_64.rpm" + ], + "5.10.83-3.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.83-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-3.ph4.x86_64.rpm" + ], + "5.10.83-4.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.83-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-4.ph4.x86_64.rpm" + ], + "5.10.83-5.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.83-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-5.ph4.x86_64.rpm" + ], + "5.10.83-6.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-6.ph4.x86_64.rpm" + ], + "5.10.83-7.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-7.ph4.x86_64.rpm" + ], + "5.10.93-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.93-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.93-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.93-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.93-1.ph4.x86_64.rpm" + ], + "5.10.93-3.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.93-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.93-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.93-3.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.93-3.ph4.x86_64.rpm" + ], + "5.10.93-4.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.93-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.93-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.93-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.93-4.ph4.x86_64.rpm" + ], + "5.10.93-5.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.93-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.93-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.93-5.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.93-5.ph4.x86_64.rpm" + ], + "5.10.25-4.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-4.ph4.x86_64.rpm" + ], + "5.10.78-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.78-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.78-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.78-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-2.ph4.x86_64.rpm" + ], + "5.10.4-10.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.4-10.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-10.ph4.x86_64.rpm" + ], + "5.10.42-4.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.42-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.42-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" + ], + "5.10.78-6.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.78-6.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-6.ph4.x86_64.rpm" + ], + "5.10.78-7.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.78-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-7.ph4.x86_64.rpm" + ], + "5.10.25-8.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-8.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-8.ph4.x86_64.rpm" + ], + "5.10.4-8.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.4-8.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.4-8.ph4.x86_64.rpm" + ], + "5.10.83-1.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-1.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-1.ph4.x86_64.rpm" + ], + "1.4.0-2.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-2.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/Linux-PAM-1.4.0-2.ph4.x86_64.rpm" + ], + "5.10.4-16.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-5.10.4-16.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-devel-5.10.4-16.ph4.x86_64.rpm" + ], + "5.10.4-4.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-aws-5.10.4-4.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-aws-devel-5.10.4-4.ph4.x86_64.rpm" + ], + "5.10.4-9.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-rt-5.10.4-9.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-9.ph4.x86_64.rpm" + ], + "5.10.4-7.ph4.x86_64": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-secure-devel-5.10.4-7.ph4.x86_64.rpm", + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-secure-5.10.4-7.ph4.x86_64.rpm" + ] + }, + "Debian": { + "5.16.18-1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-common-rt_5.16.18-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-rt-amd64_5.16.18-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-6-rt-amd64_5.16.18-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-6-amd64_5.16.18-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.18-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-amd64_5.16.18-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-common_5.16.18-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-6-cloud-amd64_5.16.18-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-cloud-amd64_5.16.18-1_amd64.deb" + ], + "5.14.9-2~bpo11+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.14_5.14.9-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb" + ], + "5.15.5-2~bpo11+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.2-rt-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.15_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb" + ], + "5.15.15-2~bpo11+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.15_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.3-cloud-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb" + ], + "5.16.11-1~bpo11+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.3-rt-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.18-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb" + ], + "5.16.12-1~bpo11+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.18-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb" + ], + "5.10.84-1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-10-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb" + ], + "5.10.106-1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-13-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" + ], + "5.10.92-1~bpo10+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb" + ], + "5.10.103-1~bpo10+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb" + ], + "5.10.70-1~bpo10+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.9-rt-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.9-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb" + ], + "4.19.208-1": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-18-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" + ], + "4.19.235-1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-20-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" + ], + "5.17.1-1~exp1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.17.0-trunk-cloud-amd64_5.17.1-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-common-rt_5.17.1-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-rt-amd64_5.17.1-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.17.0-trunk-rt-amd64_5.17.1-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-amd64_5.17.1-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-cloud-amd64_5.17.1-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-common_5.17.1-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.17.0-trunk-amd64_5.17.1-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.17_5.17.1-1~exp1_amd64.deb" + ], + "3.16.56-1+deb8u1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-image-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb" + ], + "4.19.118-2+deb10u1~bpo9+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" + ], + "4.9.65-2+grsecunoff1~bpo9+1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-image-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-common-grsec_4.9.65-2+grsecunoff1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb" + ], + "4.9.228-1": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-image-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-image-4.9.0-13-amd64_4.9.228-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb" + ], + "5.10.103-1": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-5.10.0-12-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb" + ], + "4.19.232-1": [ + "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-4.19.0-19-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" + ], + "3.16.81-1": [ + "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-image-3.16.0-10-amd64_3.16.81-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb" + ], + "3.16.84-1": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-image-3.16.0-11-amd64_3.16.84-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-common_3.16.84-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-amd64_3.16.84-1_amd64.deb" + ], + "4.9.189-3+deb9u2~deb8u1": [ + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-image-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-image-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb" + ], + "4.9.210-1+deb9u1~deb8u1": [ + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-image-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-image-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" + ], + "4.9.303-1": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-image-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-image-4.9.0-18-amd64_4.9.303-1_amd64.deb" + ], + "4.19.232-1~deb9u1": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-image-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-image-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-image-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb" + ] + }, + "Ubuntu": { + "4.15.0-1087/95": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb" + ], + "4.15.0-1088/96": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" + ], + "4.15.0-1092/101": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" + ], + "4.15.0-1103/105": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" + ], + "4.15.0-1104/106": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb" + ], + "4.15.0-1104/115": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" + ], + "4.15.0-1107/109": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" + ], + "4.15.0-1110/113": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb" + ], + "4.15.0-1111/114": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" + ], + "4.15.0-1113/120": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" + ], + "4.15.0-1113/127": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb" + ], + "4.15.0-1113/116": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" + ], + "4.15.0-1116/123": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" + ], + "4.15.0-1116/130": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" + ], + "4.15.0-1117/124": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" + ], + "4.15.0-1117/131": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb" + ], + "4.15.0-1120/128": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb" + ], + "4.15.0-1121/129": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" + ], + "4.15.0-1121/135": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb" + ], + "4.15.0-1124/133": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" + ], + "4.15.0-1125/134": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + ], + "4.15.0-1127/136": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" + ], + "4.15.0-1130/143": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" + ], + "4.15.0-1131/144": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" + ], + "4.15.0-1134/147": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb" + ], + "4.15.0-1135/148": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb" + ], + "4.15.0-167/175": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb" + ], + "4.15.0-168/176": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-168-generic_4.15.0-168.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-168-generic_4.15.0-168.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb" + ], + "4.15.0-169/177": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" + ], + "4.15.0-170/178": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb" + ], + "4.15.0-172/181": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-172-generic_4.15.0-172.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-172-generic_4.15.0-172.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb" + ], + "4.15.0-173/182": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-173-generic_4.15.0-173.182_amd64.deb" + ], + "4.15.0-174/183": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-174-generic_4.15.0-174.183_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-174-generic_4.15.0-174.183_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" + ], + "4.15.0-176/185": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-176-generic_4.15.0-176.185_amd64.deb" + ], + "5.0.0-1028/31": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" + ], + "5.4.0-100/113~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb" + ], + "5.4.0-1032/33~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + ], + "5.4.0-1034/35~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + ], + "5.4.0-105/119~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" + ], + "5.4.0-1056/60~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" + ], + "5.4.0-1058/62~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + ], + "5.4.0-106/120~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" + ], + "5.4.0-1060/63~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb" + ], + "5.4.0-1061/64~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" + ], + "5.4.0-1062/66~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + ], + "5.4.0-1063/67~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" + ], + "5.4.0-1063/66~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" + ], + "5.4.0-1064/67~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + ], + "5.4.0-1064/68~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" + ], + "5.4.0-1065/69~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" + ], + "5.4.0-1066/69~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb" + ], + "5.4.0-1067/72~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" + ], + "5.4.0-1068/71~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb" + ], + "5.4.0-1068/73~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" + ], + "5.4.0-1069/73~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" + ], + "5.4.0-1069/72~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb" + ], + "5.4.0-1070/74~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" + ], + "5.4.0-1070/73~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" + ], + "5.4.0-1070/76~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" + ], + "5.4.0-1071/74~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb" + ], + "5.4.0-1072/77~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + ], + "5.4.0-108/122~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb" + ], + "5.4.0-91/102~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb" + ], + "5.4.0-97/110~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" + ], + "5.4.0-99/112~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb" + ], + "4.15.0-1006/9": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" + ], + "4.15.0-1008/8": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb" + ], + "4.15.0-1008/11": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" + ], + "4.15.0-1008/10": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb" + ], + "4.15.0-1009/9": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" + ], + "4.15.0-1009/12": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" + ], + "4.15.0-1009/11": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" + ], + "4.15.0-101/102": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb" + ], + "4.15.0-1010/10": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb" + ], + "4.15.0-1010/12": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" + ], + "4.15.0-1011/11": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb" + ], + "4.15.0-1012/12": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" + ], + "4.15.0-1012/15": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" + ], + "4.15.0-1013/13": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" + ], + "4.15.0-1013/16": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" + ], + "4.15.0-1013/15": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" + ], + "4.15.0-1014/14": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" + ], + "4.15.0-1014/16": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" + ], + "4.15.0-1015/15": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb" + ], + "4.15.0-1015/18": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" + ], + "4.15.0-1015/17": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" + ], + "4.15.0-1016/16": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" + ], + "4.15.0-1017/17": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" + ], + "4.15.0-1017/18": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" + ], + "4.15.0-1017/20": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" + ], + "4.15.0-1017/19": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" + ], + "4.15.0-1018/18": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb" + ], + "4.15.0-1018/19": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb" + ], + "4.15.0-1018/21": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" + ], + "4.15.0-1018/20": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb" + ], + "4.15.0-1019/19": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" + ], + "4.15.0-1019/20": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" + ], + "4.15.0-1020/20": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb" + ], + "4.15.0-1021/21": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + ], + "4.15.0-1021/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" + ], + "4.15.0-1021/24": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" + ], + "4.15.0-1021/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb" + ], + "4.15.0-1022/23": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" + ], + "4.15.0-1022/25": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb" + ], + "4.15.0-1023/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" + ], + "4.15.0-1023/24": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb" + ], + "4.15.0-1023/26": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb" + ], + "4.15.0-1024/25": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" + ], + "4.15.0-1025/26": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" + ], + "4.15.0-1025/28": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" + ], + "4.15.0-1026/27": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" + ], + "4.15.0-1026/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" + ], + "4.15.0-1026/31": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" + ], + "4.15.0-1026/29": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" + ], + "4.15.0-1027/27": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + ], + "4.15.0-1027/28": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" + ], + "4.15.0-1027/30": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb" + ], + "4.15.0-1028/29": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb" + ], + "4.15.0-1028/28": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" + ], + "4.15.0-1028/33": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" + ], + "4.15.0-1029/30": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" + ], + "4.15.0-1029/31": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" + ], + "4.15.0-1029/29": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" + ], + "4.15.0-1029/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" + ], + "4.15.0-1030/30": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" + ], + "4.15.0-1030/35": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" + ], + "4.15.0-1030/33": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" + ], + "4.15.0-1031/33": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" + ], + "4.15.0-1031/32": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" + ], + "4.15.0-1031/31": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb" + ], + "4.15.0-1031/34": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" + ], + "4.15.0-1032/34": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb" + ], + "4.15.0-1032/33": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" + ], + "4.15.0-1033/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" + ], + "4.15.0-1033/38": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" + ], + "4.15.0-1033/36": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" + ], + "4.15.0-1034/36": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" + ], + "4.15.0-1034/34": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb" + ], + "4.15.0-1034/39": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" + ], + "4.15.0-1035/37": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" + ], + "4.15.0-1035/36": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb" + ], + "4.15.0-1035/35": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" + ], + "4.15.0-1035/40": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" + ], + "4.15.0-1035/39": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb" + ], + "4.15.0-1036/38": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" + ], + "4.15.0-1036/36": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" + ], + "4.15.0-1037/39": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + ], + "4.15.0-1037/41": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb" + ], + "4.15.0-1038/38": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb" + ], + "4.15.0-1038/43": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" + ], + "4.15.0-1038/42": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" + ], + "4.15.0-1039/41": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" + ], + "4.15.0-1039/39": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" + ], + "4.15.0-1039/44": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" + ], + "4.15.0-1039/43": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" + ], + "4.15.0-1040/42": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" + ], + "4.15.0-1041/43": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" + ], + "4.15.0-1042/45": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" + ], + "4.15.0-1042/44": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + ], + "4.15.0-1042/42": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" + ], + "4.15.0-1043/45": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb" + ], + "4.15.0-1043/43": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" + ], + "4.15.0-1043/48": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb" + ], + "4.15.0-1044/46": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + ], + "4.15.0-1044/70": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" + ], + "4.15.0-1044/44": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" + ], + "4.15.0-1045/47": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" + ], + "4.15.0-1045/48": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" + ], + "4.15.0-1045/50": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb" + ], + "4.15.0-1045/49": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" + ], + "4.15.0-1046/49": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" + ], + "4.15.0-1046/46": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" + ], + "4.15.0-1047/49": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" + ], + "4.15.0-1047/47": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" + ], + "4.15.0-1047/51": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" + ], + "4.15.0-1048/50": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb" + ], + "4.15.0-1048/51": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" + ], + "4.15.0-1048/48": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" + ], + "4.15.0-1048/52": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" + ], + "4.15.0-1049/52": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" + ], + "4.15.0-1050/52": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" + ], + "4.15.0-1050/53": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + ], + "4.15.0-1050/50": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" + ], + "4.15.0-1050/57": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb" + ], + "4.15.0-1050/54": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb" + ], + "4.15.0-1051/53": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb" + ], + "4.15.0-1051/51": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" + ], + "4.15.0-1051/55": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" + ], + "4.15.0-1052/54": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" + ], + "4.15.0-1052/55": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb" + ], + "4.15.0-1052/52": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" + ], + "4.15.0-1053/53": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" + ], + "4.15.0-1053/57": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" + ], + "4.15.0-1054/56": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + ], + "4.15.0-1054/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb" + ], + "4.15.0-1055/58": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" + ], + "4.15.0-1056/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb" + ], + "4.15.0-1056/57": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" + ], + "4.15.0-1056/65": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" + ], + "4.15.0-1057/59": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" + ], + "4.15.0-1057/60": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" + ], + "4.15.0-1057/66": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" + ], + "4.15.0-1057/62": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" + ], + "4.15.0-1058/60": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb" + ], + "4.15.0-1058/61": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" + ], + "4.15.0-1058/59": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" + ], + "4.15.0-1058/64": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" + ], + "4.15.0-1059/62": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb" + ], + "4.15.0-1059/60": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" + ], + "4.15.0-1059/68": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" + ], + "4.15.0-106/107": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" + ], + "4.15.0-1060/62": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" + ], + "4.15.0-1060/61": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" + ], + "4.15.0-1061/67": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb" + ], + "4.15.0-1062/68": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb" + ], + "4.15.0-1063/67": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb" + ], + "4.15.0-1063/66": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" + ], + "4.15.0-1063/72": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb" + ], + "4.15.0-1063/70": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" + ], + "4.15.0-1064/67": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" + ], + "4.15.0-1064/73": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" + ], + "4.15.0-1064/71": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" + ], + "4.15.0-1065/69": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" + ], + "4.15.0-1065/75": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" + ], + "4.15.0-1065/73": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" + ], + "4.15.0-1066/70": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + ], + "4.15.0-1066/69": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" + ], + "4.15.0-1066/76": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" + ], + "4.15.0-1066/74": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" + ], + "4.15.0-1067/71": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" + ], + "4.15.0-1067/70": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb" + ], + "4.15.0-1067/68": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" + ], + "4.15.0-1067/77": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb" + ], + "4.15.0-1067/75": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" + ], + "4.15.0-1068/76": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" + ], + "4.15.0-1069/72": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" + ], + "4.15.0-1069/70": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb" + ], + "4.15.0-1069/79": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" + ], + "4.15.0-1069/77": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb" + ], + "4.15.0-1070/73": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" + ], + "4.15.0-1070/78": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" + ], + "4.15.0-1071/72": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" + ], + "4.15.0-1071/79": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" + ], + "4.15.0-1072/76": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb" + ], + "4.15.0-1072/73": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" + ], + "4.15.0-1072/80": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" + ], + "4.15.0-1073/77": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" + ], + "4.15.0-1073/78": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb" + ], + "4.15.0-1073/83": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb" + ], + "4.15.0-1074/75": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" + ], + "4.15.0-1075/76": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb" + ], + "4.15.0-1075/83": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" + ], + "4.15.0-1076/80": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" + ], + "4.15.0-1076/81": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" + ], + "4.15.0-1076/86": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" + ], + "4.15.0-1077/81": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb" + ], + "4.15.0-1077/82": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" + ], + "4.15.0-1077/79": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb" + ], + "4.15.0-1078/83": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" + ], + "4.15.0-1078/86": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" + ], + "4.15.0-1079/83": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" + ], + "4.15.0-1079/84": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb" + ], + "4.15.0-1079/89": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" + ], + "4.15.0-1079/87": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb" + ], + "4.15.0-108/109": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-108-generic_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-108-generic_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" + ], + "4.15.0-1080/84": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" + ], + "4.15.0-1080/90": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" + ], + "4.15.0-1080/88": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb" + ], + "4.15.0-1081/83": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" + ], + "4.15.0-1081/91": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" + ], + "4.15.0-1081/89": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb" + ], + "4.15.0-1082/86": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" + ], + "4.15.0-1082/92": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb" + ], + "4.15.0-1082/84": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb" + ], + "4.15.0-1082/90": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" + ], + "4.15.0-1083/87": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" + ], + "4.15.0-1083/93": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" + ], + "4.15.0-1083/91": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb" + ], + "4.15.0-1084/86": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" + ], + "4.15.0-1084/92": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" + ], + "4.15.0-1085/87": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb" + ], + "4.15.0-1085/93": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" + ], + "4.15.0-1086/91": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb" + ], + "4.15.0-1086/88": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" + ], + "4.15.0-1086/94": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" + ], + "4.15.0-1087/92": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb" + ], + "4.15.0-1087/89": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" + ], + "4.15.0-1087/97": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb" + ], + "4.15.0-1088/90": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" + ], + "4.15.0-1089/99": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb" + ], + "4.15.0-1089/91": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" + ], + "4.15.0-1089/98": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" + ], + "4.15.0-109/110": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" + ], + "4.15.0-1090/95": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb" + ], + "4.15.0-1090/92": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" + ], + "4.15.0-1090/100": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb" + ], + "4.15.0-1090/99": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb" + ], + "4.15.0-1091/96": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb" + ], + "4.15.0-1091/101": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb" + ], + "4.15.0-1091/93": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" + ], + "4.15.0-1091/100": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" + ], + "4.15.0-1092/98": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb" + ], + "4.15.0-1092/102": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" + ], + "4.15.0-1092/94": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" + ], + "4.15.0-1093/99": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb" + ], + "4.15.0-1093/103": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb" + ], + "4.15.0-1093/106": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb" + ], + "4.15.0-1094/101": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" + ], + "4.15.0-1094/107": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb" + ], + "4.15.0-1094/96": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" + ], + "4.15.0-1094/104": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb" + ], + "4.15.0-1095/102": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" + ], + "4.15.0-1095/105": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" + ], + "4.15.0-1095/108": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb" + ], + "4.15.0-1096/103": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" + ], + "4.15.0-1096/106": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" + ], + "4.15.0-1096/109": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" + ], + "4.15.0-1097/104": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" + ], + "4.15.0-1097/110": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" + ], + "4.15.0-1097/99": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" + ], + "4.15.0-1097/107": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" + ], + "4.15.0-1098/105": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" + ], + "4.15.0-1098/111": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb" + ], + "4.15.0-1098/100": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb" + ], + "4.15.0-1099/106": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + ], + "4.15.0-1099/110": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb" + ], + "4.15.0-1099/112": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" + ], + "4.15.0-1099/101": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" + ], + "4.15.0-1099/109": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" + ], + "4.15.0-1100/113": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" + ], + "4.15.0-1100/102": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" + ], + "4.15.0-1100/110": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" + ], + "4.15.0-1101/108": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb" + ], + "4.15.0-1101/103": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" + ], + "4.15.0-1101/112": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" + ], + "4.15.0-1102/109": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" + ], + "4.15.0-1102/113": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb" + ], + "4.15.0-1102/104": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" + ], + "4.15.0-1103/110": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" + ], + "4.15.0-1103/114": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb" + ], + "4.15.0-1103/116": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" + ], + "4.15.0-1104/116": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" + ], + "4.15.0-1105/107": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" + ], + "4.15.0-1106/113": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" + ], + "4.15.0-1106/118": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" + ], + "4.15.0-1106/120": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" + ], + "4.15.0-1106/108": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb" + ], + "4.15.0-1107/121": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" + ], + "4.15.0-1108/120": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" + ], + "4.15.0-1108/122": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb" + ], + "4.15.0-1109/116": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + ], + "4.15.0-1109/121": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" + ], + "4.15.0-1109/123": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" + ], + "4.15.0-1109/112": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" + ], + "4.15.0-111/112": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-111-generic_4.15.0-111.112_amd64.deb" + ], + "4.15.0-1110/117": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" + ], + "4.15.0-1110/122": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" + ], + "4.15.0-1110/124": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" + ], + "4.15.0-1111/118": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" + ], + "4.15.0-1111/123": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" + ], + "4.15.0-1111/125": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" + ], + "4.15.0-1112/119": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb" + ], + "4.15.0-1112/125": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" + ], + "4.15.0-1112/126": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" + ], + "4.15.0-1112/115": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" + ], + "4.15.0-1113/126": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" + ], + "4.15.0-1114/121": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + ], + "4.15.0-1114/127": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" + ], + "4.15.0-1114/128": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" + ], + "4.15.0-1115/122": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" + ], + "4.15.0-1115/128": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb" + ], + "4.15.0-1115/129": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" + ], + "4.15.0-1118/125": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb" + ], + "4.15.0-1118/131": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" + ], + "4.15.0-1118/132": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" + ], + "4.15.0-1119/127": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" + ], + "4.15.0-1119/133": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" + ], + "4.15.0-112/113": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-112-generic_4.15.0-112.113_amd64.deb" + ], + "4.15.0-1120/134": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" + ], + "4.15.0-1121/134": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" + ], + "4.15.0-1122/135": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb" + ], + "4.15.0-1123/132": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" + ], + "4.15.0-1123/136": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb" + ], + "4.15.0-1124/137": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" + ], + "4.15.0-1125/138": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" + ], + "4.15.0-1126/135": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" + ], + "4.15.0-1126/139": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" + ], + "4.15.0-1127/140": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" + ], + "4.15.0-1129/142": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb" + ], + "4.15.0-1133/146": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" + ], + "4.15.0-1136/149": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" + ], + "4.15.0-115/116": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb" + ], + "4.15.0-117/118": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" + ], + "4.15.0-118/119": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-118-generic_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-118-generic_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" + ], + "4.15.0-121/123": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" + ], + "4.15.0-122/124": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" + ], + "4.15.0-123/126": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + ], + "4.15.0-128/131": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb" + ], + "4.15.0-129/132": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb" + ], + "4.15.0-130/134": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-130-generic_4.15.0-130.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-130-generic_4.15.0-130.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb" + ], + "4.15.0-132/136": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" + ], + "4.15.0-135/139": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb" + ], + "4.15.0-136/140": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" + ], + "4.15.0-137/141": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" + ], + "4.15.0-139/143": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" + ], + "4.15.0-140/144": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" + ], + "4.15.0-141/145": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb" + ], + "4.15.0-142/146": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-142-generic_4.15.0-142.146_amd64.deb" + ], + "4.15.0-143/147": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb" + ], + "4.15.0-144/148": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" + ], + "4.15.0-147/151": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb" + ], + "4.15.0-151/157": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb" + ], + "4.15.0-153/160": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-153-generic_4.15.0-153.160_amd64.deb" + ], + "4.15.0-154/161": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb" + ], + "4.15.0-156/163": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb" + ], + "4.15.0-158/166": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-158-generic_4.15.0-158.166_amd64.deb" + ], + "4.15.0-159/167": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-159-generic_4.15.0-159.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-159-generic_4.15.0-159.167_amd64.deb" + ], + "4.15.0-161/169": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" + ], + "4.15.0-162/170": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb" + ], + "4.15.0-163/171": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" + ], + "4.15.0-166/174": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb" + ], + "4.15.0-171/180": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb" + ], + "4.15.0-175/184": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" + ], + "4.15.0-22/24": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb" + ], + "4.15.0-23/25": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-23-generic_4.15.0-23.25_amd64.deb" + ], + "4.15.0-24/26": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb" + ], + "4.15.0-29/31": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb" + ], + "4.15.0-30/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb" + ], + "4.15.0-32/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" + ], + "4.15.0-33/36": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-33-generic_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-33-generic_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" + ], + "4.15.0-34/37": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb" + ], + "4.15.0-36/39": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" + ], + "4.15.0-39/42": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" + ], + "4.15.0-42/45": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-42-generic_4.15.0-42.45_amd64.deb" + ], + "4.15.0-43/46": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb" + ], + "4.15.0-44/47": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" + ], + "4.15.0-45/48": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-45-generic_4.15.0-45.48_amd64.deb" + ], + "4.15.0-46/49": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb" + ], + "4.15.0-47/50": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb" + ], + "4.15.0-50/54": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-50-generic_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-50-generic_4.15.0-50.54_amd64.deb" + ], + "4.15.0-51/55": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb" + ], + "4.15.0-52/56": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" + ], + "4.15.0-54/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" + ], + "4.15.0-55/60": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb" + ], + "4.15.0-58/64": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" + ], + "4.15.0-60/67": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-60-generic_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-60-generic_4.15.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb" + ], + "4.15.0-62/69": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" + ], + "4.15.0-64/73": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb" + ], + "4.15.0-65/74": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb" + ], + "4.15.0-66/75": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-66-generic_4.15.0-66.75_amd64.deb" + ], + "4.15.0-69/78": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-69-generic_4.15.0-69.78_amd64.deb" + ], + "4.15.0-70/79": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb" + ], + "4.15.0-72/81": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-72-generic_4.15.0-72.81_amd64.deb" + ], + "4.15.0-74/84": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb" + ], + "4.15.0-76/86": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" + ], + "4.15.0-88/88": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" + ], + "4.15.0-91/92": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb" + ], + "4.15.0-96/97": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb" + ], + "4.15.0-99/100": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb" + ], + "4.18.0-1004/5~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" + ], + "4.18.0-1005/6~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" + ], + "4.18.0-1006/6~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb" + ], + "4.18.0-1006/7~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" + ], + "4.18.0-1007/7~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" + ], + "4.18.0-1007/8~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb" + ], + "4.18.0-1008/8~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb" + ], + "4.18.0-1008/9~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb" + ], + "4.18.0-1011/11~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" + ], + "4.18.0-1011/12~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" + ], + "4.18.0-1012/13~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" + ], + "4.18.0-1013/13~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" + ], + "4.18.0-1013/14~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" + ], + "4.18.0-1014/14~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" + ], + "4.18.0-1015/16~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb" + ], + "4.18.0-1018/18~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb" + ], + "4.18.0-1019/19~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" + ], + "4.18.0-1020/20~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" + ], + "4.18.0-1023/24~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" + ], + "4.18.0-1024/25~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" + ], + "4.18.0-1025/27~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb" + ], + "4.18.0-13/14~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb" + ], + "4.18.0-14/15~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" + ], + "4.18.0-15/16~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" + ], + "4.18.0-16/17~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" + ], + "4.18.0-17/18~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb" + ], + "4.18.0-20/21~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" + ], + "4.18.0-21/22~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb" + ], + "4.18.0-22/23~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb" + ], + "4.18.0-24/25~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb" + ], + "4.18.0-25/26~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb" + ], + "5.0.0-1007/12~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" + ], + "5.0.0-1008/13~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb" + ], + "5.0.0-1009/14~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" + ], + "5.0.0-1010/15~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" + ], + "5.0.0-1011/11~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" + ], + "5.0.0-1011/16": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" + ], + "5.0.0-1012/12~18.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-modules-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-modules-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb" + ], + "5.0.0-1013/13~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb" + ], + "5.0.0-1013/18": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb" + ], + "5.0.0-1014/14~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" + ], + "5.0.0-1014/19": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" + ], + "5.0.0-1016/17~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb" + ], + "5.0.0-1018/19~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" + ], + "5.0.0-1020/21~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb" + ], + "5.0.0-1020/20~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb" + ], + "5.0.0-1021/24~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" + ], + "5.0.0-1021/21~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" + ], + "5.0.0-1022/25~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb" + ], + "5.0.0-1022/23~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb" + ], + "5.0.0-1023/26~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb" + ], + "5.0.0-1023/24~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" + ], + "5.0.0-1024/27~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" + ], + "5.0.0-1025/28": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + ], + "5.0.0-1025/27~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" + ], + "5.0.0-1025/26~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb" + ], + "5.0.0-1026/27~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb" + ], + "5.0.0-1027/30": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" + ], + "5.0.0-1027/29~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" + ], + "5.0.0-1028/30~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" + ], + "5.0.0-1028/29~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" + ], + "5.0.0-1029/31~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb" + ], + "5.0.0-1029/30~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" + ], + "5.0.0-1031/33": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" + ], + "5.0.0-1031/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" + ], + "5.0.0-1032/34": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb" + ], + "5.0.0-1033/34": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" + ], + "5.0.0-1034/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" + ], + "5.0.0-1035/37": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" + ], + "5.0.0-1036/38": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb" + ], + "5.0.0-15/16~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb" + ], + "5.0.0-16/17~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb" + ], + "5.0.0-17/18~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" + ], + "5.0.0-19/20~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb" + ], + "5.0.0-20/21~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" + ], + "5.0.0-23/24~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" + ], + "5.0.0-25/26~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb" + ], + "5.0.0-27/28~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb" + ], + "5.0.0-29/31~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb" + ], + "5.0.0-31/33~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" + ], + "5.0.0-32/34~18.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" + ], + "5.0.0-35/38~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb" + ], + "5.0.0-36/39~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb" + ], + "5.0.0-37/40~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb" + ], + "5.0.0-52/56~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" + ], + "5.0.0-61/65": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb" + ], + "5.0.0-62/67": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" + ], + "5.0.0-63/69": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-63-generic_5.0.0-63.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-63-generic_5.0.0-63.69_amd64.deb" + ], + "5.0.0-65/71": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" + ], + "5.3.0-1007/8~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" + ], + "5.3.0-1008/9~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" + ], + "5.3.0-1009/10~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" + ], + "5.3.0-1010/11~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" + ], + "5.3.0-1011/12~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" + ], + "5.3.0-1012/13~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" + ], + "5.3.0-1013/14~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" + ], + "5.3.0-1014/15~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb" + ], + "5.3.0-1016/17~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" + ], + "5.3.0-1016/18~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" + ], + "5.3.0-1017/18~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" + ], + "5.3.0-1018/19~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" + ], + "5.3.0-1018/20~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" + ], + "5.3.0-1019/21~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb" + ], + "5.3.0-1019/20~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" + ], + "5.3.0-1020/21~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" + ], + "5.3.0-1020/22~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" + ], + "5.3.0-1022/23~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" + ], + "5.3.0-1023/25~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb" + ], + "5.3.0-1024/26~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" + ], + "5.3.0-1026/28~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" + ], + "5.3.0-1027/29~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" + ], + "5.3.0-1028/30~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" + ], + "5.3.0-1028/29~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" + ], + "5.3.0-1029/31~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb" + ], + "5.3.0-1030/32~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb" + ], + "5.3.0-1031/32~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" + ], + "5.3.0-1032/34~18.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" + ], + "5.3.0-1032/33~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" + ], + "5.3.0-1032/34~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" + ], + "5.3.0-1033/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + ], + "5.3.0-1034/36": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + ], + "5.3.0-1034/35~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" + ], + "5.3.0-1035/37": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" + ], + "5.3.0-1035/36": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb" + ], + "5.3.0-19/20~18.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" + ], + "5.3.0-22/24~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb" + ], + "5.3.0-23/25~18.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" + ], + "5.3.0-24/26~18.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" + ], + "5.3.0-26/28~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb" + ], + "5.3.0-28/30~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" + ], + "5.3.0-40/32~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" + ], + "5.3.0-42/34~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" + ], + "5.3.0-45/37~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb" + ], + "5.3.0-46/38~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb" + ], + "5.3.0-51/44~18.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" + ], + "5.3.0-53/47~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb" + ], + "5.3.0-59/53~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" + ], + "5.3.0-61/55~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb" + ], + "5.3.0-62/56~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" + ], + "5.3.0-64/58~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" + ], + "5.3.0-65/59": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb" + ], + "5.3.0-66/60": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb" + ], + "5.3.0-67/61": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" + ], + "5.3.0-68/63": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-68-generic_5.3.0-68.63_amd64.deb" + ], + "5.3.0-69/65": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-69-generic_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-69-generic_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" + ], + "5.3.0-70/66": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" + ], + "5.3.0-72/68": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-72-generic_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-72-generic_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb" + ], + "5.3.0-73/69": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" + ], + "5.3.0-74/70": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb" + ], + "5.3.0-75/71": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb" + ], + "5.3.0-76/72": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-76-generic_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-76-generic_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb" + ], + "5.4.0-1003/3": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" + ], + "5.4.0-1004/5": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" + ], + "5.4.0-1007/8~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" + ], + "5.4.0-1008/9~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" + ], + "5.4.0-1009/10~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" + ], + "5.4.0-1010/11~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" + ], + "5.4.0-1011/12~18.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb" + ], + "5.4.0-1012/13~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb" + ], + "5.4.0-1013/14~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb" + ], + "5.4.0-1014/15~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" + ], + "5.4.0-1015/16~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" + ], + "5.4.0-1016/17~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" + ], + "5.4.0-1018/19~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" + ], + "5.4.0-1020/20~18.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" + ], + "5.4.0-1021/21~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" + ], + "5.4.0-1021/22~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" + ], + "5.4.0-1022/22~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" + ], + "5.4.0-1022/23~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" + ], + "5.4.0-1023/23~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" + ], + "5.4.0-1023/24~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" + ], + "5.4.0-1024/24~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" + ], + "5.4.0-1024/25~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb" + ], + "5.4.0-1025/25~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb" + ], + "5.4.0-1025/26~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" + ], + "5.4.0-1026/26~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" + ], + "5.4.0-1026/27~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" + ], + "5.4.0-1027/28~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb" + ], + "5.4.0-1028/29~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" + ], + "5.4.0-1029/30~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" + ], + "5.4.0-1029/31~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" + ], + "5.4.0-1029/30~18.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb" + ], + "5.4.0-1031/32~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" + ], + "5.4.0-1032/34~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" + ], + "5.4.0-1033/35~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" + ], + "5.4.0-1033/34~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb" + ], + "5.4.0-1033/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" + ], + "5.4.0-1034/37~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" + ], + "5.4.0-1034/36~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" + ], + "5.4.0-1035/37~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" + ], + "5.4.0-1035/36~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" + ], + "5.4.0-1035/38~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" + ], + "5.4.0-1036/38~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" + ], + "5.4.0-1036/39~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb" + ], + "5.4.0-1036/37~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" + ], + "5.4.0-1037/39~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" + ], + "5.4.0-1037/40~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" + ], + "5.4.0-1037/38~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb" + ], + "5.4.0-1038/40~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb" + ], + "5.4.0-1038/41~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" + ], + "5.4.0-1038/39~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" + ], + "5.4.0-1039/41~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" + ], + "5.4.0-1039/42~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" + ], + "5.4.0-104/118~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" + ], + "5.4.0-1040/42~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" + ], + "5.4.0-1040/43~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb" + ], + "5.4.0-1041/43~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb" + ], + "5.4.0-1041/44~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" + ], + "5.4.0-1042/45~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" + ], + "5.4.0-1042/44~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" + ], + "5.4.0-1043/45~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" + ], + "5.4.0-1043/46~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" + ], + "5.4.0-1044/46~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" + ], + "5.4.0-1044/47~18.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb" + ], + "5.4.0-1044/47~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" + ], + "5.4.0-1045/47~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" + ], + "5.4.0-1046/48~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" + ], + "5.4.0-1046/49~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" + ], + "5.4.0-1046/50~18.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" + ], + "5.4.0-1047/49~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" + ], + "5.4.0-1048/50~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" + ], + "5.4.0-1048/52~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb" + ], + "5.4.0-1049/51~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" + ], + "5.4.0-1049/53~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb" + ], + "5.4.0-1049/52~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" + ], + "5.4.0-1051/53~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" + ], + "5.4.0-1051/55~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb" + ], + "5.4.0-1051/54~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb" + ], + "5.4.0-1052/56~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" + ], + "5.4.0-1052/55~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb" + ], + "5.4.0-1053/57~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" + ], + "5.4.0-1053/56~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" + ], + "5.4.0-1054/57~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" + ], + "5.4.0-1054/58~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" + ], + "5.4.0-1055/58~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb" + ], + "5.4.0-1055/57~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" + ], + "5.4.0-1055/59~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" + ], + "5.4.0-1056/59~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" + ], + "5.4.0-1056/58~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" + ], + "5.4.0-1057/60~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" + ], + "5.4.0-1057/61~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" + ], + "5.4.0-1058/61~18.04.3": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb" + ], + "5.4.0-1058/60~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb" + ], + "5.4.0-1059/62~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" + ], + "5.4.0-1059/63~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" + ], + "5.4.0-1060/64~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb" + ], + "5.4.0-1061/65~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" + ], + "5.4.0-1062/65~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" + ], + "5.4.0-1065/68~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" + ], + "5.4.0-1066/71~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" + ], + "5.4.0-1067/70~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb" + ], + "5.4.0-1067/71~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" + ], + "5.4.0-1068/72~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" + ], + "5.4.0-1069/75~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" + ], + "5.4.0-107/121~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb" + ], + "5.4.0-1071/76~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb" + ], + "5.4.0-1072/75~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb" + ], + "5.4.0-1073/76~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" + ], + "5.4.0-1074/77~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" + ], + "5.4.0-37/41~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + ], + "5.4.0-39/43~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" + ], + "5.4.0-40/44~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" + ], + "5.4.0-42/46~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb" + ], + "5.4.0-45/49~18.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb" + ], + "5.4.0-47/51~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb" + ], + "5.4.0-48/52~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" + ], + "5.4.0-51/56~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" + ], + "5.4.0-52/57~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" + ], + "5.4.0-53/59~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb" + ], + "5.4.0-58/64~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" + ], + "5.4.0-59/65~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" + ], + "5.4.0-60/67~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb" + ], + "5.4.0-62/70~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" + ], + "5.4.0-65/73~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb" + ], + "5.4.0-66/74~18.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" + ], + "5.4.0-67/75~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" + ], + "5.4.0-70/78~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" + ], + "5.4.0-71/79~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb" + ], + "5.4.0-72/80~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" + ], + "5.4.0-73/82~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" + ], + "5.4.0-74/83~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb" + ], + "5.4.0-77/86~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb" + ], + "5.4.0-80/90~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" + ], + "5.4.0-81/91~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" + ], + "5.4.0-84/94~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" + ], + "5.4.0-86/97~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb" + ], + "5.4.0-87/98~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" + ], + "5.4.0-89/100~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" + ], + "5.4.0-90/101~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" + ], + "5.4.0-92/103~18.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" + ], + "5.4.0-94/106~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" + ], + "5.4.0-96/109~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb" + ], + "4.15.0-1007/9": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb" + ], + "4.15.0-1011/13": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" + ], + "4.15.0-1024/29": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" + ], + "4.15.0-1025/25": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" + ], + "4.15.0-1030/31": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb" + ], + "4.15.0-1030/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" + ], + "4.15.0-1032/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" + ], + "4.15.0-1036/41": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" + ], + "4.15.0-124/127": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-124-generic_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-124-generic_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" + ], + "4.15.0-134/138": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb" + ], + "4.15.0-38/41": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" + ], + "4.15.0-48/51": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb" + ], + "4.18.0-1009/10~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" + ], + "4.18.0-18/19~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" + ], + "5.0.0-41/45~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb" + ], + "5.0.0-43/47~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" + ], + "5.0.0-44/48~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" + ], + "5.0.0-47/51~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb" + ], + "5.0.0-48/52~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" + ], + "5.0.0-53/57~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" + ], + "5.0.0-58/62~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb" + ], + "5.0.0-60/64~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" + ], + "5.4.0-1001/1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" + ], + "5.4.0-1018/18~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" + ], + "5.4.0-1019/19~18.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb" + ], + "5.4.0-1019/19~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb" + ], + "5.4.0-1020/20~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" + ], + "5.4.0-54/60~18.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb" + ], + "5.4.0-64/72~18.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb" + ], + "4.15.0-1004/5": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb" + ], + "4.15.0-1006/6": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" + ], + "4.15.0-1007/7": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" + ], + "4.15.0-20/21": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" + ], + "5.15.0-1001/1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1001_5.15.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gke/linux-image-5.15.0-1001-gke_5.15.0-1001.1+2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1001_5.15.0-1001.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gke/linux-image-5.15.0-1001-gke_5.15.0-1001.1+2_amd64.deb" + ], + "5.15.0-1002/2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gke/linux-image-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gke/linux-image-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" + ], + "5.15.0-1003/5": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-modules-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-iotg/linux-image-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-iotg/linux-image-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-modules-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb" + ], + "5.15.0-1004/4": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb" + ], + "5.15.0-24/24": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-modules-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-modules-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" + ], + "5.15.0-1002/4": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" + ], + "5.15.0-1003/4": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" + ], + "5.15.0-1003/6": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb" + ], + "5.15.0-1004/6": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb" + ], + "5.15.0-23/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-modules-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-modules-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-23_5.15.0-23.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-23_5.15.0-23.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb" + ], + "5.15.0-25/25": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" + ], + "5.17.0-1003/3": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-modules-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.17/linux-image-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-modules-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.17/linux-image-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb" + ], + "5.10.0-1047/49": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb" + ], + "5.10.0-1058/62": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb" + ], + "5.11.0-1022/23~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" + ], + "5.11.0-1028/31~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" + ], + "5.11.0-1029/32~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" + ], + "5.11.0-1029/32~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" + ], + "5.11.0-1029/33~20.04.3": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" + ], + "5.11.0-1030/34~20.04.3": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" + ], + "5.11.0-40/44~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb" + ], + "5.11.0-41/45~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb" + ], + "5.11.0-42/46~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb" + ], + "5.11.0-43/47~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb" + ], + "5.11.0-60/60": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb" + ], + "5.11.0-61/61": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb" + ], + "5.13.0-1014/15~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb" + ], + "5.13.0-1014/16~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" + ], + "5.13.0-1015/18~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" + ], + "5.13.0-1016/20": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" + ], + "5.13.0-1018/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb" + ], + "5.13.0-1018/22~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb" + ], + "5.13.0-1019/21~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" + ], + "5.13.0-1020/22~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" + ], + "5.13.0-1020/24": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" + ], + "5.13.0-1022/24~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb" + ], + "5.13.0-1022/26~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" + ], + "5.13.0-1022/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" + ], + "5.13.0-1023/28~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb" + ], + "5.13.0-1026/31~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" + ], + "5.13.0-19/19~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb" + ], + "5.13.0-21/21~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb" + ], + "5.13.0-22/22~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb" + ], + "5.13.0-28/31~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" + ], + "5.13.0-29/32~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" + ], + "5.13.0-30/33~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb" + ], + "5.13.0-32/35~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb" + ], + "5.13.0-36/41~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" + ], + "5.13.0-37/42~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" + ], + "5.13.0-40/45~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" + ], + "5.14.0-1006/6": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb" + ], + "5.14.0-1007/7": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" + ], + "5.14.0-1008/8": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" + ], + "5.14.0-1009/9": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" + ], + "5.14.0-1011/11": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb" + ], + "5.14.0-1012/12": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb" + ], + "5.14.0-1013/13": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb" + ], + "5.14.0-1021/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" + ], + "5.14.0-1022/24": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb" + ], + "5.14.0-1023/25": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb" + ], + "5.14.0-1024/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb" + ], + "5.14.0-1028/31": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb" + ], + "5.14.0-1029/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" + ], + "5.14.0-1030/33": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb" + ], + "5.14.0-1032/35": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" + ], + "5.14.0-1033/36": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" + ], + "5.15.0-1002/4~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-iotg-5.15/linux-image-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-modules-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-modules-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-iotg-5.15/linux-image-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" + ], + "5.15.0-18/18~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-18_5.15.0-18.18~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-18_5.15.0-18.18~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb" + ], + "5.15.0-22/22~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-22_5.15.0-22.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-22_5.15.0-22.22~20.04.1_all.deb" + ], + "5.15.0-23/23~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-23_5.15.0-23.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-23_5.15.0-23.23~20.04.1_all.deb" + ], + "5.15.0-25/25~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb" + ], + "5.4.0-100/113": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb" + ], + "5.4.0-1013/14": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb" + ], + "5.4.0-1015/16": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + ], + "5.4.0-102/115": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb" + ], + "5.4.0-1020/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" + ], + "5.4.0-1032/33": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" + ], + "5.4.0-1034/35": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" + ], + "5.4.0-1035/36": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + ], + "5.4.0-1039/40": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + ], + "5.4.0-105/119": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb" + ], + "5.4.0-1050/52": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" + ], + "5.4.0-1054/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb" + ], + "5.4.0-1054/56": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" + ], + "5.4.0-1055/59": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" + ], + "5.4.0-1056/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" + ], + "5.4.0-1057/61": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" + ], + "5.4.0-1058/62": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" + ], + "5.4.0-1059/62": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + ], + "5.4.0-106/120": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-106-generic_5.4.0-106.120_amd64.deb" + ], + "5.4.0-1060/63": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + ], + "5.4.0-1061/64": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb" + ], + "5.4.0-1062/65": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" + ], + "5.4.0-1062/66": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb" + ], + "5.4.0-1063/66": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" + ], + "5.4.0-1063/66+cvm3": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" + ], + "5.4.0-1063/67": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" + ], + "5.4.0-1064/67": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" + ], + "5.4.0-1064/68": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" + ], + "5.4.0-1065/69": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" + ], + "5.4.0-1066/69": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" + ], + "5.4.0-1067/72": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb" + ], + "5.4.0-1068/71": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb" + ], + "5.4.0-1068/71+cvm1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb" + ], + "5.4.0-1068/73": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" + ], + "5.4.0-1069/73": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb" + ], + "5.4.0-1069/72": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" + ], + "5.4.0-107/121": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-107-generic_5.4.0-107.121_amd64.deb" + ], + "5.4.0-1070/74": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" + ], + "5.4.0-1070/73": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" + ], + "5.4.0-1070/73+cvm1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" + ], + "5.4.0-1070/76": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + ], + "5.4.0-1071/74": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" + ], + "5.4.0-1072/77": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" + ], + "5.4.0-1073/76": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb" + ], + "5.4.0-1073/76+cvm1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" + ], + "5.4.0-1074/77": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" + ], + "5.4.0-1075/78": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + ], + "5.4.0-108/122": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb" + ], + "5.4.0-97/110": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" + ], + "5.4.0-98/111": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb" + ], + "5.4.0-99/112": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb" + ], + "5.8.0-1033/35~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" + ], + "5.8.0-1036/38~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb" + ], + "5.8.0-67/75": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb" + ], + "5.10.0-1013/14": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" + ], + "5.10.0-1014/15": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb" + ], + "5.10.0-1016/17": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb" + ], + "5.10.0-1017/18": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb" + ], + "5.10.0-1019/20": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb" + ], + "5.10.0-1021/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb" + ], + "5.10.0-1022/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" + ], + "5.10.0-1023/24": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb" + ], + "5.10.0-1025/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" + ], + "5.10.0-1026/27": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" + ], + "5.10.0-1029/30": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb" + ], + "5.10.0-1033/34": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb" + ], + "5.10.0-1038/40": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb" + ], + "5.10.0-1044/46": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb" + ], + "5.10.0-1045/47": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" + ], + "5.10.0-1049/51": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" + ], + "5.10.0-1050/52": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" + ], + "5.10.0-1051/53": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" + ], + "5.10.0-1053/55": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" + ], + "5.10.0-1055/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" + ], + "5.10.0-1057/61": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" + ], + "5.11.0-1012/13~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb" + ], + "5.11.0-1013/14~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + ], + "5.11.0-1014/15~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb" + ], + "5.11.0-1014/16~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" + ], + "5.11.0-1015/16~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb" + ], + "5.11.0-1016/17~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + ], + "5.11.0-1017/18~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" + ], + "5.11.0-1017/19~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb" + ], + "5.11.0-1018/20~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" + ], + "5.11.0-1019/20~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + ], + "5.11.0-1020/21~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" + ], + "5.11.0-1020/21~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" + ], + "5.11.0-1020/22~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" + ], + "5.11.0-1021/22~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" + ], + "5.11.0-1021/22~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" + ], + "5.11.0-1021/23~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" + ], + "5.11.0-1022/24~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" + ], + "5.11.0-1023/24~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" + ], + "5.11.0-1023/25~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" + ], + "5.11.0-1024/26~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" + ], + "5.11.0-1025/27~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" + ], + "5.11.0-1026/29~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" + ], + "5.11.0-1027/30~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb" + ], + "5.11.0-1028/31~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" + ], + "5.11.0-1028/32~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" + ], + "5.11.0-22/23~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb" + ], + "5.11.0-25/27~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb" + ], + "5.11.0-27/29~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" + ], + "5.11.0-34/36~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" + ], + "5.11.0-36/40~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" + ], + "5.11.0-37/41~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb" + ], + "5.11.0-38/42~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb" + ], + "5.11.0-44/48~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb" + ], + "5.11.0-46/51~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" + ], + "5.13.0-1008/9~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" + ], + "5.13.0-1008/9~20.04.3": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" + ], + "5.13.0-1008/8": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" + ], + "5.13.0-1009/10~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" + ], + "5.13.0-1009/9": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb" + ], + "5.13.0-1009/10": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" + ], + "5.13.0-1010/10": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" + ], + "5.13.0-1010/11": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" + ], + "5.13.0-1011/12~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb" + ], + "5.13.0-1011/13~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" + ], + "5.13.0-1012/13~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb" + ], + "5.13.0-1012/14~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" + ], + "5.13.0-1012/15~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" + ], + "5.13.0-1012/16": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" + ], + "5.13.0-1013/16~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" + ], + "5.13.0-1014/18": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" + ], + "5.13.0-1015/19~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" + ], + "5.13.0-1016/20~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" + ], + "5.13.0-1017/19~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" + ], + "5.13.0-1017/21": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" + ], + "5.13.0-1019/23~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb" + ], + "5.13.0-1019/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" + ], + "5.13.0-1021/23~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb" + ], + "5.13.0-1021/24~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" + ], + "5.13.0-1021/25~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" + ], + "5.13.0-1021/26~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" + ], + "5.13.0-1025/30~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb" + ], + "5.13.0-1026/32": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" + ], + "5.13.0-1028/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" + ], + "5.13.0-1029/36": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" + ], + "5.13.0-23/23~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb" + ], + "5.13.0-25/26~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" + ], + "5.13.0-27/29~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" + ], + "5.13.0-35/40~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" + ], + "5.13.0-39/44~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" + ], + "5.14.0-1004/4": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" + ], + "5.14.0-1005/5": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" + ], + "5.14.0-1018/19": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb" + ], + "5.14.0-1020/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb" + ], + "5.14.0-1027/30": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" + ], + "5.14.0-1031/34": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" + ], + "5.15.0-1003/5~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-modules-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-iotg-5.15/linux-image-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-modules-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-iotg-5.15/linux-image-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" + ], + "5.4.0-1005/6": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" + ], + "5.4.0-1006/7": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" + ], + "5.4.0-1007/8": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" + ], + "5.4.0-1008/9": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb" + ], + "5.4.0-1009/10": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" + ], + "5.4.0-1010/11": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb" + ], + "5.4.0-1011/11": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + ], + "5.4.0-1011/12": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" + ], + "5.4.0-1012/12": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb" + ], + "5.4.0-1012/13": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + ], + "5.4.0-1014/15": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb" + ], + "5.4.0-1015/15": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + ], + "5.4.0-1016/16": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb" + ], + "5.4.0-1016/17": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" + ], + "5.4.0-1017/17": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" + ], + "5.4.0-1017/19": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" + ], + "5.4.0-1018/18": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" + ], + "5.4.0-1018/19": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" + ], + "5.4.0-1018/20": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" + ], + "5.4.0-1019/19": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" + ], + "5.4.0-1019/21": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" + ], + "5.4.0-1020/20": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" + ], + "5.4.0-1021/21": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" + ], + "5.4.0-1021/22": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb" + ], + "5.4.0-1022/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" + ], + "5.4.0-1022/23": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb" + ], + "5.4.0-1023/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb" + ], + "5.4.0-1023/24": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" + ], + "5.4.0-1024/24": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + ], + "5.4.0-1024/25": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" + ], + "5.4.0-1025/25": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + ], + "5.4.0-1025/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb" + ], + "5.4.0-1026/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" + ], + "5.4.0-1026/27": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" + ], + "5.4.0-1027/28": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" + ], + "5.4.0-1028/29": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" + ], + "5.4.0-1029/30": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb" + ], + "5.4.0-1029/31": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb" + ], + "5.4.0-1030/31": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb" + ], + "5.4.0-1031/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb" + ], + "5.4.0-1032/34": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" + ], + "5.4.0-1033/34": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" + ], + "5.4.0-1034/37": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" + ], + "5.4.0-1034/36": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" + ], + "5.4.0-1035/37": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" + ], + "5.4.0-1035/38": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" + ], + "5.4.0-1036/38": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb" + ], + "5.4.0-1036/39": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" + ], + "5.4.0-1036/37": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + ], + "5.4.0-1037/39": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" + ], + "5.4.0-1037/40": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" + ], + "5.4.0-1037/38": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + ], + "5.4.0-1038/40": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb" + ], + "5.4.0-1038/41": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb" + ], + "5.4.0-1038/39": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb" + ], + "5.4.0-1039/41": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" + ], + "5.4.0-1039/42": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" + ], + "5.4.0-104/118": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb" + ], + "5.4.0-1040/42": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" + ], + "5.4.0-1040/43": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" + ], + "5.4.0-1040/41": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" + ], + "5.4.0-1041/43": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" + ], + "5.4.0-1041/44": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" + ], + "5.4.0-1041/42": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb" + ], + "5.4.0-1042/45": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" + ], + "5.4.0-1042/44": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" + ], + "5.4.0-1043/45": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb" + ], + "5.4.0-1043/46": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" + ], + "5.4.0-1044/46": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" + ], + "5.4.0-1044/47": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" + ], + "5.4.0-1045/47": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + ], + "5.4.0-1045/49": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" + ], + "5.4.0-1046/48": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb" + ], + "5.4.0-1046/49": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb" + ], + "5.4.0-1046/50": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb" + ], + "5.4.0-1047/49": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + ], + "5.4.0-1048/50": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" + ], + "5.4.0-1048/52": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb" + ], + "5.4.0-1049/51": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb" + ], + "5.4.0-1049/53": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" + ], + "5.4.0-1049/52": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" + ], + "5.4.0-1051/53": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" + ], + "5.4.0-1051/55": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb" + ], + "5.4.0-1051/54": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" + ], + "5.4.0-1052/56": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb" + ], + "5.4.0-1052/55": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" + ], + "5.4.0-1053/57": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb" + ], + "5.4.0-1053/56": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb" + ], + "5.4.0-1053/55": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" + ], + "5.4.0-1054/57": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb" + ], + "5.4.0-1055/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + ], + "5.4.0-1055/57": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + ], + "5.4.0-1056/59": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" + ], + "5.4.0-1056/60": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb" + ], + "5.4.0-1057/60": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb" + ], + "5.4.0-1058/61": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb" + ], + "5.4.0-1058/60": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" + ], + "5.4.0-1059/63": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" + ], + "5.4.0-1060/64": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb" + ], + "5.4.0-1061/65": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" + ], + "5.4.0-1065/68": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" + ], + "5.4.0-1066/71": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" + ], + "5.4.0-1067/70": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" + ], + "5.4.0-1067/70+cvm1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" + ], + "5.4.0-1067/71": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb" + ], + "5.4.0-1068/72": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + ], + "5.4.0-1069/75": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" + ], + "5.4.0-1071/76": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + ], + "5.4.0-1072/75": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" + ], + "5.4.0-1072/75+cvm1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" + ], + "5.4.0-28/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" + ], + "5.4.0-29/33": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-29-generic_5.4.0-29.33_amd64.deb" + ], + "5.4.0-31/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" + ], + "5.4.0-33/37": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" + ], + "5.4.0-37/41": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" + ], + "5.4.0-39/43": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" + ], + "5.4.0-40/44": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" + ], + "5.4.0-42/46": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-42-generic_5.4.0-42.46_amd64.deb" + ], + "5.4.0-45/49": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-45-generic_5.4.0-45.49_amd64.deb" + ], + "5.4.0-47/51": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb" + ], + "5.4.0-48/52": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" + ], + "5.4.0-51/56": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" + ], + "5.4.0-52/57": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" + ], + "5.4.0-53/59": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" + ], + "5.4.0-58/64": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb" + ], + "5.4.0-59/65": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb" + ], + "5.4.0-60/67": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-60-generic_5.4.0-60.67_amd64.deb" + ], + "5.4.0-62/70": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-62-generic_5.4.0-62.70_amd64.deb" + ], + "5.4.0-65/73": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-65-generic_5.4.0-65.73_amd64.deb" + ], + "5.4.0-66/74": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-66-generic_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-66-generic_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" + ], + "5.4.0-67/75": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb" + ], + "5.4.0-70/78": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb" + ], + "5.4.0-71/79": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" + ], + "5.4.0-72/80": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-72-generic_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-72-generic_5.4.0-72.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" + ], + "5.4.0-73/82": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" + ], + "5.4.0-74/83": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb" + ], + "5.4.0-77/86": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb" + ], + "5.4.0-80/90": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" + ], + "5.4.0-81/91": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb" + ], + "5.4.0-84/94": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb" + ], + "5.4.0-86/97": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-86-generic_5.4.0-86.97_amd64.deb" + ], + "5.4.0-88/99": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" + ], + "5.4.0-89/100": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" + ], + "5.4.0-90/101": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" + ], + "5.4.0-91/102": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-91-generic_5.4.0-91.102_amd64.deb" + ], + "5.4.0-92/103": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" + ], + "5.4.0-94/106": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb" + ], + "5.4.0-96/109": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb" + ], + "5.6.0-1008/8": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" + ], + "5.6.0-1010/10": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" + ], + "5.6.0-1011/11": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" + ], + "5.6.0-1013/13": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb" + ], + "5.6.0-1017/17": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb" + ], + "5.6.0-1018/18": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb" + ], + "5.6.0-1020/20": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb" + ], + "5.6.0-1023/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" + ], + "5.6.0-1026/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" + ], + "5.6.0-1028/28": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb" + ], + "5.6.0-1031/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb" + ], + "5.6.0-1032/33": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" + ], + "5.6.0-1033/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" + ], + "5.6.0-1039/43": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" + ], + "5.6.0-1042/46": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" + ], + "5.6.0-1047/51": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" + ], + "5.6.0-1048/52": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" + ], + "5.6.0-1050/54": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" + ], + "5.6.0-1052/56": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" + ], + "5.6.0-1053/57": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" + ], + "5.6.0-1054/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" + ], + "5.6.0-1055/59": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" + ], + "5.6.0-1056/60": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" + ], + "5.8.0-1031/32~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb" + ], + "5.8.0-1032/34~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" + ], + "5.8.0-1033/34~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" + ], + "5.8.0-1035/37~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" + ], + "5.8.0-1037/38~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb" + ], + "5.8.0-1038/40~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" + ], + "5.8.0-1038/39~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" + ], + "5.8.0-1039/42~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" + ], + "5.8.0-1039/41": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb" + ], + "5.8.0-1040/43~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" + ], + "5.8.0-1041/43~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" + ], + "5.8.0-1041/44~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" + ], + "5.8.0-1042/44~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" + ], + "5.8.0-1043/46~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" + ], + "5.8.0-33/36~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" + ], + "5.8.0-34/37~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" + ], + "5.8.0-36/40~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb" + ], + "5.8.0-38/43~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb" + ], + "5.8.0-41/46~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" + ], + "5.8.0-43/49~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb" + ], + "5.8.0-44/50~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" + ], + "5.8.0-45/51~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb" + ], + "5.8.0-48/54~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" + ], + "5.8.0-49/55~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb" + ], + "5.8.0-50/56~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" + ], + "5.8.0-53/60~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb" + ], + "5.8.0-55/62~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + ], + "5.8.0-59/66~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" + ], + "5.8.0-63/71~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" + ], + "5.10.0-1011/12": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" + ], + "5.10.0-1032/33": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" + ], + "5.10.0-1034/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" + ], + "5.10.0-1052/54": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" + ], + "5.11.0-1007/7~20.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" + ], + "5.11.0-1008/8~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb" + ], + "5.11.0-1009/9~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" + ], + "5.11.0-1009/10~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" + ], + "5.13.0-1007/7": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" + ], + "5.13.0-1013/15~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" + ], + "5.13.0-1021/25": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" + ], + "5.14.0-1010/10": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" + ], + "5.4.0-1064/67+cvm1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" + ], + "5.4.0-1065/68+cvm2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" + ], + "5.4.0-1069/72+cvm1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" + ], + "5.4.0-1074/77+cvm1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" + ], + "5.4.0-54/60": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" + ], + "5.4.0-64/72": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" + ], + "5.6.0-1021/21": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb" + ], + "5.6.0-1027/27": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" + ], + "5.6.0-1034/36": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" + ], + "5.6.0-1035/37": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" + ], + "5.6.0-1036/39": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" + ], + "5.8.0-1034/35~20.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" + ], + "5.8.0-1042/45~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" + ], + "5.8.0-23/24~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" + ], + "5.8.0-25/26~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb" + ], + "5.8.0-28/30~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" + ], + "5.8.0-29/31~20.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb" + ], + "5.8.0-40/45~20.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb" + ], + "5.4.0-1009/9": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + ], + "5.4.0-1010/10": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" + ], + "5.4.0-26/30": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb" + ], + "5.6.0-1007/7": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb" + ], + "5.11.0-1020/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb" + ], + "5.11.0-1021/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb" + ], + "5.11.0-1022/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" + ], + "5.11.0-1024/27": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb" + ], + "5.11.0-1027/30": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb" + ], + "5.11.0-1028/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb" + ], + "5.11.0-49/55": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb" + ], + "5.11.0-1004/4": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" + ], + "5.11.0-1005/5": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" + ], + "5.11.0-1006/6": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" + ], + "5.11.0-16/17": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" + ], + "5.13.0-1005/5": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb" + ], + "5.13.0-1006/7": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + ], + "5.13.0-1006/6": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" + ], + "5.13.0-1007/8": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" + ], + "5.13.0-1008/9": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" + ], + "5.13.0-1010/12": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + ], + "5.13.0-1011/12": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" + ], + "5.13.0-1012/13": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" + ], + "5.13.0-1013/14": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" + ], + "5.13.0-1013/16": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb" + ], + "5.13.0-1014/15": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" + ], + "5.13.0-1014/16": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" + ], + "5.13.0-1014/17": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb" + ], + "5.13.0-1015/18": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" + ], + "5.13.0-1017/18": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb" + ], + "5.13.0-1018/20": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + ], + "5.13.0-1018/19": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" + ], + "5.13.0-1019/21": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb" + ], + "5.13.0-1019/20": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb" + ], + "5.13.0-1020/22": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb" + ], + "5.13.0-1021/22": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" + ], + "5.13.0-1022/24": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb" + ], + "5.13.0-1022/27": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" + ], + "5.13.0-1023/28": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb" + ], + "5.13.0-1024/29": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" + ], + "5.13.0-1026/31": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb" + ], + "5.13.0-28/31": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-28-generic_5.13.0-28.31_amd64.deb" + ], + "5.13.0-29/32": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb" + ], + "5.13.0-30/33": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-30-generic_5.13.0-30.33_amd64.deb" + ], + "5.13.0-32/35": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb" + ], + "5.13.0-36/41": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb" + ], + "5.13.0-37/42": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-37-generic_5.13.0-37.42_amd64.deb" + ], + "5.13.0-38/43": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb" + ], + "5.13.0-40/45": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb" + ], + "5.13.0-1009/11": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" + ], + "5.13.0-1011/13": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" + ], + "5.13.0-1012/14": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" + ], + "5.13.0-1012/15": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" + ], + "5.13.0-1015/19": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb" + ], + "5.13.0-1016/17": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb" + ], + "5.13.0-1017/19": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" + ], + "5.13.0-1020/21": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb" + ], + "5.13.0-1021/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb" + ], + "5.13.0-1021/24": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" + ], + "5.13.0-1021/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + ], + "5.13.0-1025/30": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" + ], + "5.13.0-21/21": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-21-generic_5.13.0-21.21_amd64.deb" + ], + "5.13.0-22/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb" + ], + "5.13.0-23/23": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb" + ], + "5.13.0-25/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-25-generic_5.13.0-25.26_amd64.deb" + ], + "5.13.0-27/29": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-27-generic_5.13.0-27.29_amd64.deb" + ], + "5.13.0-35/40": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb" + ], + "5.13.0-39/44": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb" + ], + "5.13.0-1013/15": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb" + ], + "5.13.0-20/20": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" + ], + "5.13.0-1004/4": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" + ], + "5.13.0-1005/6": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb" + ], + "5.13.0-1008/10": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" + ], + "5.13.0-19/19": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb" + ], + "4.15.0-1043/47~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" + ], + "3.13.0-100/147": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" + ], + "3.13.0-101/148": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" + ], + "3.13.0-103/150": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" + ], + "3.13.0-105/152": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" + ], + "3.13.0-106/153": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb" + ], + "3.13.0-107/154": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb" + ], + "3.13.0-108/155": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-108-generic_3.13.0-108.155_amd64.deb" + ], + "3.13.0-109/156": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" + ], + "3.13.0-110/157": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" + ], + "3.13.0-112/159": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-112-generic_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-112-generic_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb" + ], + "3.13.0-115/162": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb" + ], + "3.13.0-116/163": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + ], + "3.13.0-117/164": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb" + ], + "3.13.0-119/166": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" + ], + "3.13.0-121/170": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb" + ], + "3.13.0-123/172": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" + ], + "3.13.0-125/174": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb" + ], + "3.13.0-126/175": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-126-generic_3.13.0-126.175_amd64.deb" + ], + "3.13.0-128/177": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-128-generic_3.13.0-128.177_amd64.deb" + ], + "3.13.0-129/178": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" + ], + "3.13.0-132/181": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-132-generic_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-132-generic_3.13.0-132.181_amd64.deb" + ], + "3.13.0-133/182": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" + ], + "3.13.0-135/184": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb" + ], + "3.13.0-137/186": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" + ], + "3.13.0-139/188": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb" + ], + "3.13.0-141/190": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-141-generic_3.13.0-141.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-141-generic_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" + ], + "3.13.0-142/191": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" + ], + "3.13.0-143/192": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb" + ], + "3.13.0-144/193": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb" + ], + "3.13.0-147/196": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb" + ], + "3.13.0-149/199": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb" + ], + "3.13.0-151/201": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb" + ], + "3.13.0-153/203": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" + ], + "3.13.0-155/205": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-155-generic_3.13.0-155.205_amd64.deb" + ], + "3.13.0-156/206": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" + ], + "3.13.0-157/207": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb" + ], + "3.13.0-160/210": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-160-generic_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-160-generic_3.13.0-160.210_amd64.deb" + ], + "3.13.0-161/211": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" + ], + "3.13.0-162/212": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-162-generic_3.13.0-162.212_amd64.deb" + ], + "3.13.0-164/214": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" + ], + "3.13.0-165/215": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" + ], + "3.13.0-166/216": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb" + ], + "3.13.0-167/217": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" + ], + "3.13.0-168/218": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-168-generic_3.13.0-168.218_amd64.deb" + ], + "3.13.0-170/220": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb" + ], + "3.13.0-24/47": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb" + ], + "3.13.0-27/50": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-27-generic_3.13.0-27.50_amd64.deb" + ], + "3.13.0-29/53": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb" + ], + "3.13.0-30/55": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb" + ], + "3.13.0-32/57": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" + ], + "3.13.0-33/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-33-generic_3.13.0-33.58_amd64.deb" + ], + "3.13.0-34/60": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" + ], + "3.13.0-35/62": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb" + ], + "3.13.0-36/63": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb" + ], + "3.13.0-37/64": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb" + ], + "3.13.0-39/66": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-39-generic_3.13.0-39.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-39-generic_3.13.0-39.66_amd64.deb" + ], + "3.13.0-40/69": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-40-generic_3.13.0-40.69_amd64.deb" + ], + "3.13.0-41/70": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" + ], + "3.13.0-43/72": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" + ], + "3.13.0-44/73": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" + ], + "3.13.0-46/79": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb" + ], + "3.13.0-48/80": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-48-generic_3.13.0-48.80_amd64.deb" + ], + "3.13.0-49/83": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" + ], + "3.13.0-51/84": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" + ], + "3.13.0-52/86": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb" + ], + "3.13.0-53/89": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-53-generic_3.13.0-53.89_amd64.deb" + ], + "3.13.0-54/91": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" + ], + "3.13.0-55/94": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-55-generic_3.13.0-55.94_amd64.deb" + ], + "3.13.0-57/95": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-57-generic_3.13.0-57.95_amd64.deb" + ], + "3.13.0-58/97": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" + ], + "3.13.0-59/98": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-59-generic_3.13.0-59.98_amd64.deb" + ], + "3.13.0-61/100": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb" + ], + "3.13.0-62/102": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-62-generic_3.13.0-62.102_amd64.deb" + ], + "3.13.0-63/103": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb" + ], + "3.13.0-65/106": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" + ], + "3.13.0-66/108": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" + ], + "3.13.0-67/110": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" + ], + "3.13.0-68/111": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-68-generic_3.13.0-68.111_amd64.deb" + ], + "3.13.0-70/113": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" + ], + "3.13.0-71/114": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-71-generic_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-71-generic_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb" + ], + "3.13.0-73/116": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb" + ], + "3.13.0-74/118": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-74-generic_3.13.0-74.118_amd64.deb" + ], + "3.13.0-76/120": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" + ], + "3.13.0-77/121": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb" + ], + "3.13.0-79/123": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" + ], + "3.13.0-83/127": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb" + ], + "3.13.0-85/129": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" + ], + "3.13.0-86/131": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb" + ], + "3.13.0-87/133": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb" + ], + "3.13.0-88/135": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" + ], + "3.13.0-91/138": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb" + ], + "3.13.0-92/139": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-92-generic_3.13.0-92.139_amd64.deb" + ], + "3.13.0-93/140": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb" + ], + "3.13.0-95/142": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" + ], + "3.13.0-96/143": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb" + ], + "3.13.0-98/145": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb" + ], + "3.16.0-25/33~14.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb" + ], + "3.16.0-26/35~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb" + ], + "3.16.0-28/38~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" + ], + "3.16.0-29/39~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" + ], + "3.16.0-31/43~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" + ], + "3.16.0-33/44~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" + ], + "3.16.0-34/47~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb" + ], + "3.16.0-36/48~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb" + ], + "3.16.0-37/51~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb" + ], + "3.16.0-38/52~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" + ], + "3.16.0-39/53~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" + ], + "3.16.0-41/57~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb" + ], + "3.16.0-43/58~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb" + ], + "3.16.0-44/59~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" + ], + "3.16.0-45/60~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb" + ], + "3.16.0-46/62~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb" + ], + "3.16.0-48/64~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb" + ], + "3.16.0-49/65~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb" + ], + "3.16.0-50/67~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb" + ], + "3.16.0-51/69~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb" + ], + "3.16.0-52/71~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb" + ], + "3.16.0-53/72~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb" + ], + "3.16.0-55/74~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" + ], + "3.16.0-56/75~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" + ], + "3.16.0-57/77~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" + ], + "3.16.0-59/79~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb" + ], + "3.16.0-60/80~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb" + ], + "3.16.0-62/83~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb" + ], + "3.16.0-67/87~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb" + ], + "3.16.0-69/89~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb" + ], + "3.16.0-70/90~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" + ], + "3.16.0-71/92~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb" + ], + "3.16.0-73/95~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb" + ], + "3.16.0-76/98~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb" + ], + "3.16.0-77/99~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" + ], + "3.19.0-20/20~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" + ], + "3.19.0-21/21~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb" + ], + "3.19.0-22/22~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb" + ], + "3.19.0-23/24~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb" + ], + "3.19.0-25/26~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" + ], + "3.19.0-26/28~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" + ], + "3.19.0-28/30~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb" + ], + "3.19.0-30/34~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" + ], + "3.19.0-31/36~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" + ], + "3.19.0-32/37~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb" + ], + "3.19.0-33/38~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb" + ], + "3.19.0-37/42~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" + ], + "3.19.0-39/44~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb" + ], + "3.19.0-41/46~14.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" + ], + "3.19.0-42/48~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" + ], + "3.19.0-43/49~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" + ], + "3.19.0-47/53~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" + ], + "3.19.0-49/55~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" + ], + "3.19.0-51/58~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb" + ], + "3.19.0-56/62~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" + ], + "3.19.0-58/64~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb" + ], + "3.19.0-59/66~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" + ], + "3.19.0-61/69~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + ], + "3.19.0-64/72~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb" + ], + "3.19.0-65/73~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" + ], + "3.19.0-66/74~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" + ], + "3.19.0-68/76~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" + ], + "3.19.0-69/77~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" + ], + "3.19.0-71/79~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb" + ], + "3.19.0-73/81~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb" + ], + "3.19.0-74/82~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" + ], + "3.19.0-75/83~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" + ], + "3.19.0-77/85~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" + ], + "3.19.0-78/86~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb" + ], + "3.19.0-79/87~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" + ], + "3.19.0-80/88~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb" + ], + "4.15.0-1023/24~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb" + ], + "4.15.0-1031/32~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" + ], + "4.15.0-1032/33~14.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb" + ], + "4.15.0-1035/36~14.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" + ], + "4.15.0-1036/38~14.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" + ], + "4.15.0-1037/39~14.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" + ], + "4.15.0-1039/41~14.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" + ], + "4.15.0-1040/44~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" + ], + "4.15.0-1041/45~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" + ], + "4.15.0-1045/49~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" + ], + "4.2.0-18/22~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb" + ], + "4.2.0-19/23~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" + ], + "4.2.0-21/25~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" + ], + "4.2.0-22/27~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" + ], + "4.2.0-23/28~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" + ], + "4.2.0-25/30~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb" + ], + "4.2.0-27/32~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb" + ], + "4.2.0-30/36~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" + ], + "4.2.0-34/39~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb" + ], + "4.2.0-35/40~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" + ], + "4.2.0-36/42~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" + ], + "4.2.0-38/45~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" + ], + "4.2.0-41/48~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" + ], + "4.2.0-42/49~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb" + ], + "4.4.0-101/124~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" + ], + "4.4.0-103/126~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb" + ], + "4.4.0-104/127~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb" + ], + "4.4.0-108/131~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" + ], + "4.4.0-109/132~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" + ], + "4.4.0-111/134~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb" + ], + "4.4.0-112/135~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" + ], + "4.4.0-116/140~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" + ], + "4.4.0-119/143~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb" + ], + "4.4.0-121/145~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" + ], + "4.4.0-124/148~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb" + ], + "4.4.0-127/153~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" + ], + "4.4.0-128/154~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb" + ], + "4.4.0-130/156~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb" + ], + "4.4.0-133/159~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" + ], + "4.4.0-134/160~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb" + ], + "4.4.0-137/163~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb" + ], + "4.4.0-138/164~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb" + ], + "4.4.0-139/165~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" + ], + "4.4.0-141/167~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb" + ], + "4.4.0-142/168~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb" + ], + "4.4.0-143/169~14.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb" + ], + "4.4.0-144/170~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" + ], + "4.4.0-148/174~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb" + ], + "4.4.0-21/37~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" + ], + "4.4.0-22/40~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" + ], + "4.4.0-24/43~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + ], + "4.4.0-28/47~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb" + ], + "4.4.0-31/50~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb" + ], + "4.4.0-34/53~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" + ], + "4.4.0-36/55~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" + ], + "4.4.0-38/57~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" + ], + "4.4.0-42/62~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" + ], + "4.4.0-45/66~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb" + ], + "4.4.0-47/68~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb" + ], + "4.4.0-51/72~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" + ], + "4.4.0-53/74~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" + ], + "4.4.0-57/78~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb" + ], + "4.4.0-59/80~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb" + ], + "4.4.0-62/83~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" + ], + "4.4.0-63/84~14.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb" + ], + "4.4.0-64/85~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" + ], + "4.4.0-66/87~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb" + ], + "4.4.0-67/88~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" + ], + "4.4.0-70/91~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb" + ], + "4.4.0-71/92~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb" + ], + "4.4.0-72/93~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" + ], + "4.4.0-75/96~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" + ], + "4.4.0-78/99~14.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb" + ], + "4.4.0-79/100~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + ], + "4.4.0-81/104~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb" + ], + "4.4.0-83/106~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb" + ], + "4.4.0-87/110~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" + ], + "4.4.0-89/112~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" + ], + "4.4.0-91/114~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb" + ], + "4.4.0-92/115~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" + ], + "4.4.0-93/116~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb" + ], + "4.4.0-96/119~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" + ], + "4.4.0-97/120~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb" + ], + "4.4.0-98/121~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" + ], + "3.13.0-113/160": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" + ], + "3.13.0-145/194": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" + ], + "3.13.0-158/208": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb" + ], + "3.13.0-163/213": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" + ], + "3.13.0-169/219": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb" + ], + "3.13.0-45/74": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-45-generic_3.13.0-45.74_amd64.deb" + ], + "3.16.0-30/40~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb" + ], + "3.16.0-40/54~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" + ], + "3.19.0-18/18~14.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" + ], + "4.15.0-1030/31~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" + ], + "4.15.0-1042/46~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb" + ], + "4.4.0-131/157~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb" + ], + "4.4.0-135/161~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" + ], + "4.4.0-140/166~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb" + ], + "4.4.0-146/172~14.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" + ], + "3.13.0-24/46": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb" + ], + "4.15.0-1066/74~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb" + ], + "4.15.0-1067/75~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb" + ], + "4.15.0-1095/102~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" + ], + "4.15.0-1095/108~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb" + ], + "4.15.0-1096/103~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb" + ], + "4.15.0-1110/122~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" + ], + "4.4.0-1125/139": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" + ], + "4.4.0-206/238": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" + ], + "4.4.0-207/239": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb" + ], + "4.10.0-14/16~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb" + ], + "4.10.0-19/21~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" + ], + "4.10.0-20/22~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb" + ], + "4.10.0-21/23~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb" + ], + "4.10.0-22/24~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" + ], + "4.10.0-24/28~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" + ], + "4.10.0-26/30~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb" + ], + "4.10.0-27/30~16.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb" + ], + "4.10.0-28/32~16.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb" + ], + "4.10.0-30/34~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" + ], + "4.10.0-32/36~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb" + ], + "4.10.0-33/37~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb" + ], + "4.10.0-35/39~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb" + ], + "4.10.0-37/41~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" + ], + "4.10.0-38/42~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb" + ], + "4.10.0-40/44~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" + ], + "4.10.0-42/46~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb" + ], + "4.11.0-1015/15": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb" + ], + "4.11.0-1016/16": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" + ], + "4.11.0-13/19~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" + ], + "4.11.0-14/20~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb" + ], + "4.13.0-1005/7": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" + ], + "4.13.0-1006/8": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" + ], + "4.13.0-1007/9": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" + ], + "4.13.0-1011/14": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb" + ], + "4.13.0-1014/17": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" + ], + "4.13.0-1016/19": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" + ], + "4.13.0-1018/21": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb" + ], + "4.13.0-16/19~16.04.3": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb" + ], + "4.13.0-17/20~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" + ], + "4.13.0-19/22~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" + ], + "4.13.0-21/24~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" + ], + "4.13.0-25/29~16.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" + ], + "4.13.0-26/29~16.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" + ], + "4.13.0-31/34~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb" + ], + "4.13.0-32/35~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb" + ], + "4.13.0-36/40~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" + ], + "4.13.0-37/42~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb" + ], + "4.13.0-38/43~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb" + ], + "4.13.0-39/44~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" + ], + "4.13.0-41/46~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb" + ], + "4.13.0-43/48~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" + ], + "4.13.0-45/50~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" + ], + "4.15.0-1008/10~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb" + ], + "4.15.0-1009/11~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb" + ], + "4.15.0-101/102~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" + ], + "4.15.0-1010/12~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" + ], + "4.15.0-1013/13~16.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb" + ], + "4.15.0-1013/15~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" + ], + "4.15.0-1014/14~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" + ], + "4.15.0-1014/16~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb" + ], + "4.15.0-1015/17~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb" + ], + "4.15.0-1017/18~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" + ], + "4.15.0-1017/19~16.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" + ], + "4.15.0-1018/18~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb" + ], + "4.15.0-1018/19~16.04.2": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb" + ], + "4.15.0-1018/20~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" + ], + "4.15.0-1019/19~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" + ], + "4.15.0-1019/20~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" + ], + "4.15.0-1021/21~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb" + ], + "4.15.0-1021/22~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb" + ], + "4.15.0-1021/23~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" + ], + "4.15.0-1022/22~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" + ], + "4.15.0-1022/25~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" + ], + "4.15.0-1023/24~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" + ], + "4.15.0-1023/26~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb" + ], + "4.15.0-1024/25~16.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb" + ], + "4.15.0-1025/26~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" + ], + "4.15.0-1025/28~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" + ], + "4.15.0-1026/27~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb" + ], + "4.15.0-1026/29~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" + ], + "4.15.0-1027/28~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" + ], + "4.15.0-1027/30~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" + ], + "4.15.0-1028/29~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" + ], + "4.15.0-1029/31~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" + ], + "4.15.0-1029/32~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" + ], + "4.15.0-1030/33~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" + ], + "4.15.0-1031/32~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" + ], + "4.15.0-1031/34~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" + ], + "4.15.0-1032/33~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" + ], + "4.15.0-1032/34~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb" + ], + "4.15.0-1033/35~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" + ], + "4.15.0-1033/36~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" + ], + "4.15.0-1034/36~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" + ], + "4.15.0-1035/36~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" + ], + "4.15.0-1035/38~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" + ], + "4.15.0-1036/38~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" + ], + "4.15.0-1037/39~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" + ], + "4.15.0-1037/41~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" + ], + "4.15.0-1038/42~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" + ], + "4.15.0-1039/43~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" + ], + "4.15.0-1040/44": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb" + ], + "4.15.0-1040/42~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb" + ], + "4.15.0-1041/45": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb" + ], + "4.15.0-1045/49~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" + ], + "4.15.0-1046/50": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" + ], + "4.15.0-1046/50~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" + ], + "4.15.0-1047/50": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb" + ], + "4.15.0-1049/54": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" + ], + "4.15.0-1050/55": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" + ], + "4.15.0-1050/54~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" + ], + "4.15.0-1051/56": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" + ], + "4.15.0-1051/55~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb" + ], + "4.15.0-1052/57": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" + ], + "4.15.0-1052/56": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" + ], + "4.15.0-1053/57~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" + ], + "4.15.0-1054/58~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" + ], + "4.15.0-1055/60": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" + ], + "4.15.0-1055/59": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" + ], + "4.15.0-1056/61": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" + ], + "4.15.0-1056/61~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb" + ], + "4.15.0-1058/62": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" + ], + "4.15.0-1058/64~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" + ], + "4.15.0-1059/64": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" + ], + "4.15.0-106/107~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb" + ], + "4.15.0-1060/65": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" + ], + "4.15.0-1060/64": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" + ], + "4.15.0-1061/66": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" + ], + "4.15.0-1061/65": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb" + ], + "4.15.0-1061/67~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" + ], + "4.15.0-1062/68~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" + ], + "4.15.0-1063/68": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb" + ], + "4.15.0-1064/69": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" + ], + "4.15.0-1064/71~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb" + ], + "4.15.0-1065/73~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" + ], + "4.15.0-1066/71": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" + ], + "4.15.0-1067/72": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" + ], + "4.15.0-1068/76~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" + ], + "4.15.0-1069/74": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb" + ], + "4.15.0-1069/77~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb" + ], + "4.15.0-107/108~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb" + ], + "4.15.0-1070/78~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb" + ], + "4.15.0-1071/76": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb" + ], + "4.15.0-1071/81~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" + ], + "4.15.0-1075/80": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" + ], + "4.15.0-1077/87~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb" + ], + "4.15.0-1078/88~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb" + ], + "4.15.0-1080/90~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb" + ], + "4.15.0-1081/92~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb" + ], + "4.15.0-1082/92~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb" + ], + "4.15.0-1083/93~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb" + ], + "4.15.0-1083/94~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb" + ], + "4.15.0-1084/95~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" + ], + "4.15.0-1086/98~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" + ], + "4.15.0-1087/100~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb" + ], + "4.15.0-1089/99~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb" + ], + "4.15.0-1090/103~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb" + ], + "4.15.0-1091/101~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" + ], + "4.15.0-1091/104~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" + ], + "4.15.0-1092/102~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" + ], + "4.15.0-1092/105~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" + ], + "4.15.0-1093/99~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" + ], + "4.15.0-1093/103~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb" + ], + "4.15.0-1093/106~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" + ], + "4.15.0-1094/101~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" + ], + "4.15.0-1094/107~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" + ], + "4.15.0-1095/105~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" + ], + "4.15.0-1096/106~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" + ], + "4.15.0-1096/109~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" + ], + "4.15.0-1097/104~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" + ], + "4.15.0-1097/110~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" + ], + "4.15.0-1098/105~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb" + ], + "4.15.0-1098/109~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" + ], + "4.15.0-1098/111~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" + ], + "4.15.0-1099/106~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" + ], + "4.15.0-1102/113~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" + ], + "4.15.0-1103/114~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" + ], + "4.15.0-1106/118~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb" + ], + "4.15.0-1108/120~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" + ], + "4.15.0-1109/121~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" + ], + "4.15.0-1111/123~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" + ], + "4.15.0-1112/124~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" + ], + "4.15.0-1113/126~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb" + ], + "4.15.0-112/113~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb" + ], + "4.15.0-115/116~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" + ], + "4.15.0-117/118~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + ], + "4.15.0-118/119~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb" + ], + "4.15.0-120/122~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" + ], + "4.15.0-122/124~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" + ], + "4.15.0-123/126~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" + ], + "4.15.0-128/131~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" + ], + "4.15.0-129/132~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb" + ], + "4.15.0-13/14~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb" + ], + "4.15.0-132/136~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" + ], + "4.15.0-133/137~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb" + ], + "4.15.0-136/140~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb" + ], + "4.15.0-137/141~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" + ], + "4.15.0-139/143~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" + ], + "4.15.0-140/144~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" + ], + "4.15.0-142/146~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" + ], + "4.15.0-15/16~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" + ], + "4.15.0-20/21~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" + ], + "4.15.0-22/24~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb" + ], + "4.15.0-23/25~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" + ], + "4.15.0-24/26~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb" + ], + "4.15.0-29/31~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" + ], + "4.15.0-30/32~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb" + ], + "4.15.0-32/35~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb" + ], + "4.15.0-33/36~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" + ], + "4.15.0-34/37~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb" + ], + "4.15.0-36/39~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb" + ], + "4.15.0-39/42~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb" + ], + "4.15.0-42/45~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" + ], + "4.15.0-43/46~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb" + ], + "4.15.0-45/48~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb" + ], + "4.15.0-46/49~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" + ], + "4.15.0-47/50~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" + ], + "4.15.0-50/54~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" + ], + "4.15.0-51/55~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb" + ], + "4.15.0-52/56~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb" + ], + "4.15.0-54/58~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" + ], + "4.15.0-55/60~16.04.2": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + ], + "4.15.0-58/64~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb" + ], + "4.15.0-60/67~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" + ], + "4.15.0-62/69~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" + ], + "4.15.0-64/73~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb" + ], + "4.15.0-65/74~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" + ], + "4.15.0-66/75~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" + ], + "4.15.0-69/78~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb" + ], + "4.15.0-70/79~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" + ], + "4.15.0-72/81~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb" + ], + "4.15.0-74/83~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb" + ], + "4.15.0-76/86~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" + ], + "4.15.0-88/88~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" + ], + "4.15.0-91/92~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" + ], + "4.15.0-96/97~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb" + ], + "4.15.0-99/100~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" + ], + "4.4.0-1007/12": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" + ], + "4.4.0-1008/13": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" + ], + "4.4.0-1009/14": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" + ], + "4.4.0-101/124": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" + ], + "4.4.0-1010/15": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" + ], + "4.4.0-1012/17": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" + ], + "4.4.0-1013/22": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" + ], + "4.4.0-1013/18": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" + ], + "4.4.0-1015/20": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" + ], + "4.4.0-1016/25": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" + ], + "4.4.0-1017/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" + ], + "4.4.0-1017/22": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" + ], + "4.4.0-1018/27": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb" + ], + "4.4.0-1019/24": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb" + ], + "4.4.0-1020/29": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" + ], + "4.4.0-1020/25": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb" + ], + "4.4.0-1021/26": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb" + ], + "4.4.0-1022/31": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb" + ], + "4.4.0-1023/28": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" + ], + "4.4.0-1026/35": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" + ], + "4.4.0-1026/31": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb" + ], + "4.4.0-1027/32": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" + ], + "4.4.0-1028/37": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb" + ], + "4.4.0-1029/34": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" + ], + "4.4.0-103/126": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-103-generic_4.4.0-103.126_amd64.deb" + ], + "4.4.0-1030/39": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" + ], + "4.4.0-1031/40": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" + ], + "4.4.0-1031/37": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" + ], + "4.4.0-1032/41": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb" + ], + "4.4.0-1032/38": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb" + ], + "4.4.0-1035/44": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb" + ], + "4.4.0-1035/41": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" + ], + "4.4.0-1036/42": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" + ], + "4.4.0-1037/43": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb" + ], + "4.4.0-1038/47": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" + ], + "4.4.0-1039/48": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb" + ], + "4.4.0-1039/45": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" + ], + "4.4.0-104/127": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" + ], + "4.4.0-1040/46": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" + ], + "4.4.0-1041/50": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" + ], + "4.4.0-1041/47": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb" + ], + "4.4.0-1043/52": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" + ], + "4.4.0-1043/49": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" + ], + "4.4.0-1044/53": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" + ], + "4.4.0-1046/52": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb" + ], + "4.4.0-1047/56": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" + ], + "4.4.0-1047/53": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" + ], + "4.4.0-1048/57": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb" + ], + "4.4.0-1048/55": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb" + ], + "4.4.0-1049/58": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" + ], + "4.4.0-1051/58": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" + ], + "4.4.0-1052/61": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" + ], + "4.4.0-1052/59": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" + ], + "4.4.0-1054/63": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" + ], + "4.4.0-1054/61": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb" + ], + "4.4.0-1055/64": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" + ], + "4.4.0-1056/63": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb" + ], + "4.4.0-1057/66": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb" + ], + "4.4.0-1058/65": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" + ], + "4.4.0-1059/66": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb" + ], + "4.4.0-1060/69": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb" + ], + "4.4.0-1060/67": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb" + ], + "4.4.0-1061/70": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" + ], + "4.4.0-1062/71": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" + ], + "4.4.0-1062/69": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" + ], + "4.4.0-1063/70": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" + ], + "4.4.0-1064/71": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" + ], + "4.4.0-1065/75": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb" + ], + "4.4.0-1065/72": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb" + ], + "4.4.0-1066/76": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb" + ], + "4.4.0-1066/73": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb" + ], + "4.4.0-1068/75": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" + ], + "4.4.0-1069/79": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb" + ], + "4.4.0-1069/76": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" + ], + "4.4.0-1070/80": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" + ], + "4.4.0-1070/77": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb" + ], + "4.4.0-1071/78": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb" + ], + "4.4.0-1072/82": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" + ], + "4.4.0-1074/84": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" + ], + "4.4.0-1075/85": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb" + ], + "4.4.0-1075/82": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" + ], + "4.4.0-1076/83": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb" + ], + "4.4.0-1077/87": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" + ], + "4.4.0-1077/84": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb" + ], + "4.4.0-1078/85": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb" + ], + "4.4.0-1079/89": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" + ], + "4.4.0-1079/86": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" + ], + "4.4.0-108/131": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" + ], + "4.4.0-1080/87": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" + ], + "4.4.0-1082/91": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" + ], + "4.4.0-1083/93": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" + ], + "4.4.0-1084/94": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" + ], + "4.4.0-1084/93": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" + ], + "4.4.0-1085/96": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" + ], + "4.4.0-1085/94": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" + ], + "4.4.0-1087/98": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb" + ], + "4.4.0-1087/96": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" + ], + "4.4.0-1088/99": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb" + ], + "4.4.0-1088/97": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb" + ], + "4.4.0-1089/98": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" + ], + "4.4.0-109/132": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb" + ], + "4.4.0-1090/101": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb" + ], + "4.4.0-1090/99": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" + ], + "4.4.0-1091/100": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" + ], + "4.4.0-1092/103": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" + ], + "4.4.0-1092/101": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" + ], + "4.4.0-1093/102": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" + ], + "4.4.0-1094/105": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" + ], + "4.4.0-1095/106": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" + ], + "4.4.0-1096/107": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb" + ], + "4.4.0-1098/109": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" + ], + "4.4.0-1099/110": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" + ], + "4.4.0-1100/111": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" + ], + "4.4.0-1101/112": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" + ], + "4.4.0-1102/113": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" + ], + "4.4.0-1104/115": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" + ], + "4.4.0-1105/116": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" + ], + "4.4.0-1106/117": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb" + ], + "4.4.0-1107/118": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" + ], + "4.4.0-1109/120": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" + ], + "4.4.0-1110/121": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb" + ], + "4.4.0-1111/123": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" + ], + "4.4.0-1112/124": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" + ], + "4.4.0-1113/126": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" + ], + "4.4.0-1114/127": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" + ], + "4.4.0-1117/131": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb" + ], + "4.4.0-1118/132": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" + ], + "4.4.0-1119/133": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb" + ], + "4.4.0-112/135": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb" + ], + "4.4.0-1121/135": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb" + ], + "4.4.0-1122/136": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" + ], + "4.4.0-1123/137": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb" + ], + "4.4.0-1124/138": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" + ], + "4.4.0-1126/140": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" + ], + "4.4.0-1127/141": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" + ], + "4.4.0-1128/142": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb" + ], + "4.4.0-116/140": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" + ], + "4.4.0-119/143": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" + ], + "4.4.0-121/145": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-121-generic_4.4.0-121.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-121-generic_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb" + ], + "4.4.0-124/148": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-124-generic_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-124-generic_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb" + ], + "4.4.0-127/153": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-127-generic_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-127-generic_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" + ], + "4.4.0-128/154": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" + ], + "4.4.0-130/156": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" + ], + "4.4.0-133/159": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" + ], + "4.4.0-134/160": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb" + ], + "4.4.0-137/163": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-137-generic_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-137-generic_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb" + ], + "4.4.0-138/164": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" + ], + "4.4.0-139/165": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" + ], + "4.4.0-141/167": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb" + ], + "4.4.0-142/168": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb" + ], + "4.4.0-143/169": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" + ], + "4.4.0-145/171": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb" + ], + "4.4.0-148/174": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" + ], + "4.4.0-150/176": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb" + ], + "4.4.0-151/178": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb" + ], + "4.4.0-154/181": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb" + ], + "4.4.0-157/185": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb" + ], + "4.4.0-159/187": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-159-generic_4.4.0-159.187_amd64.deb" + ], + "4.4.0-161/189": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" + ], + "4.4.0-164/192": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb" + ], + "4.4.0-165/193": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb" + ], + "4.4.0-166/195": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" + ], + "4.4.0-168/197": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb" + ], + "4.4.0-169/198": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" + ], + "4.4.0-170/199": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb" + ], + "4.4.0-171/200": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-171-generic_4.4.0-171.200_amd64.deb" + ], + "4.4.0-173/203": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb" + ], + "4.4.0-174/204": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-174-generic_4.4.0-174.204_amd64.deb" + ], + "4.4.0-176/206": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb" + ], + "4.4.0-177/207": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" + ], + "4.4.0-178/208": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb" + ], + "4.4.0-179/209": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" + ], + "4.4.0-184/214": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" + ], + "4.4.0-185/215": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb" + ], + "4.4.0-186/216": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" + ], + "4.4.0-187/217": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb" + ], + "4.4.0-189/219": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb" + ], + "4.4.0-190/220": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" + ], + "4.4.0-193/224": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb" + ], + "4.4.0-194/226": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-194-generic_4.4.0-194.226_amd64.deb" + ], + "4.4.0-197/229": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" + ], + "4.4.0-198/230": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" + ], + "4.4.0-200/232": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb" + ], + "4.4.0-201/233": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-201-generic_4.4.0-201.233_amd64.deb" + ], + "4.4.0-203/235": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" + ], + "4.4.0-204/236": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" + ], + "4.4.0-208/240": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb" + ], + "4.4.0-209/241": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" + ], + "4.4.0-210/242": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-210-generic_4.4.0-210.242_amd64.deb" + ], + "4.4.0-22/40": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb" + ], + "4.4.0-24/43": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb" + ], + "4.4.0-28/47": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb" + ], + "4.4.0-31/50": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb" + ], + "4.4.0-34/53": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" + ], + "4.4.0-36/55": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" + ], + "4.4.0-38/57": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-38-generic_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-38-generic_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb" + ], + "4.4.0-42/62": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb" + ], + "4.4.0-45/66": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-45-generic_4.4.0-45.66_amd64.deb" + ], + "4.4.0-47/68": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" + ], + "4.4.0-51/72": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb" + ], + "4.4.0-53/74": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" + ], + "4.4.0-57/78": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb" + ], + "4.4.0-59/80": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb" + ], + "4.4.0-62/83": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-62-generic_4.4.0-62.83_amd64.deb" + ], + "4.4.0-63/84": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb" + ], + "4.4.0-64/85": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb" + ], + "4.4.0-66/87": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" + ], + "4.4.0-67/88": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb" + ], + "4.4.0-70/91": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb" + ], + "4.4.0-71/92": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" + ], + "4.4.0-72/93": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" + ], + "4.4.0-75/96": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb" + ], + "4.4.0-78/99": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb" + ], + "4.4.0-79/100": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-79-generic_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-79-generic_4.4.0-79.100_amd64.deb" + ], + "4.4.0-81/104": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" + ], + "4.4.0-83/106": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-83-generic_4.4.0-83.106_amd64.deb" + ], + "4.4.0-87/110": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-87-generic_4.4.0-87.110_amd64.deb" + ], + "4.4.0-89/112": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb" + ], + "4.4.0-91/114": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-91-generic_4.4.0-91.114_amd64.deb" + ], + "4.4.0-92/115": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-92-generic_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-92-generic_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb" + ], + "4.4.0-93/116": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-93-generic_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-93-generic_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb" + ], + "4.4.0-96/119": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-96-generic_4.4.0-96.119_amd64.deb" + ], + "4.4.0-97/120": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-97-generic_4.4.0-97.120_amd64.deb" + ], + "4.4.0-98/121": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb" + ], + "4.8.0-34/36~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" + ], + "4.8.0-36/36~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" + ], + "4.8.0-39/42~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" + ], + "4.8.0-41/44~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb" + ], + "4.8.0-45/48~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" + ], + "4.8.0-46/49~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" + ], + "4.8.0-49/52~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb" + ], + "4.8.0-52/55~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb" + ], + "4.8.0-54/57~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb" + ], + "4.8.0-56/61~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb" + ], + "4.8.0-58/63~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" + ], + "4.11.0-1009/9": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb" + ], + "4.11.0-1011/11": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" + ], + "4.11.0-1013/13": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb" + ], + "4.11.0-1014/14": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" + ], + "4.13.0-1009/12": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" + ], + "4.13.0-1012/15": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb" + ], + "4.15.0-1007/9~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" + ], + "4.15.0-1011/13~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb" + ], + "4.15.0-1030/31~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb" + ], + "4.15.0-1030/32~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" + ], + "4.15.0-1042/46": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" + ], + "4.15.0-38/41~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb" + ], + "4.15.0-48/51~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb" + ], + "4.4.0-1033/39": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb" + ], + "4.4.0-1037/46": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" + ], + "4.4.0-1038/44": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb" + ], + "4.4.0-1044/50": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" + ], + "4.4.0-1050/59": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" + ], + "4.4.0-1063/72": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" + ], + "4.4.0-1067/77": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" + ], + "4.4.0-1073/83": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" + ], + "4.4.0-1081/91": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" + ], + "4.4.0-122/146": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" + ], + "4.4.0-131/157": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb" + ], + "4.4.0-135/161": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-135-generic_4.4.0-135.161_amd64.deb" + ], + "4.4.0-140/166": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" + ], + "4.4.0-146/172": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" + ], + "4.4.0-43/63": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-43-generic_4.4.0-43.63_amd64.deb" + ], + "4.4.0-77/98": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb" + ], + "4.8.0-42/45~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb" + ], + "4.8.0-44/47~16.04.1": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb" + ], + "4.8.0-51/54~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" + ], + "4.8.0-53/56~16.04.1": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" + ], + "4.4.0-21/37": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb" + ] + }, + "Flatcar": { + "1688.5.3": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1688.5.3/flatcar_developer_container.bin.bz2" + ], + "1745.3.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.3.1/flatcar_developer_container.bin.bz2" + ], + "1745.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.4.0/flatcar_developer_container.bin.bz2" + ], + "1745.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.5.0/flatcar_developer_container.bin.bz2" + ], + "1745.6.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.6.0/flatcar_developer_container.bin.bz2" + ], + "1745.7.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.7.0/flatcar_developer_container.bin.bz2" + ], + "1800.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1800.4.0/flatcar_developer_container.bin.bz2" + ], + "1800.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1800.5.0/flatcar_developer_container.bin.bz2" + ], + "1800.6.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1800.6.0/flatcar_developer_container.bin.bz2" + ], + "1800.7.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1800.7.0/flatcar_developer_container.bin.bz2" + ], + "1855.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1855.4.0/flatcar_developer_container.bin.bz2" + ], + "1855.4.2": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1855.4.2/flatcar_developer_container.bin.bz2" + ], + "1855.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1855.5.0/flatcar_developer_container.bin.bz2" + ], + "1911.3.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1911.3.0/flatcar_developer_container.bin.bz2" + ], + "1911.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1911.4.0/flatcar_developer_container.bin.bz2" + ], + "1911.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1911.5.0/flatcar_developer_container.bin.bz2" + ], + "1967.3.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.3.0/flatcar_developer_container.bin.bz2" + ], + "1967.3.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.3.1/flatcar_developer_container.bin.bz2" + ], + "1967.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.4.0/flatcar_developer_container.bin.bz2" + ], + "1967.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.5.0/flatcar_developer_container.bin.bz2" + ], + "1967.6.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.6.0/flatcar_developer_container.bin.bz2" + ], + "2023.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2023.4.0/flatcar_developer_container.bin.bz2" + ], + "2023.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2023.5.0/flatcar_developer_container.bin.bz2" + ], + "2079.3.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.0/flatcar_developer_container.bin.bz2" + ], + "2079.3.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.1/flatcar_developer_container.bin.bz2" + ], + "2079.3.2": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.2/flatcar_developer_container.bin.bz2" + ], + "2079.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.4.0/flatcar_developer_container.bin.bz2" + ], + "2079.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.5.0/flatcar_developer_container.bin.bz2" + ], + "2079.6.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.6.0/flatcar_developer_container.bin.bz2" + ], + "2135.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2135.4.0/flatcar_developer_container.bin.bz2" + ], + "2135.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2135.5.0/flatcar_developer_container.bin.bz2" + ], + "2135.6.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2135.6.0/flatcar_developer_container.bin.bz2" + ], + "2191.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2191.4.0/flatcar_developer_container.bin.bz2" + ], + "2191.4.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2191.4.1/flatcar_developer_container.bin.bz2" + ], + "2191.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2191.5.0/flatcar_developer_container.bin.bz2" + ], + "2247.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2247.5.0/flatcar_developer_container.bin.bz2" + ], + "2247.6.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2247.6.0/flatcar_developer_container.bin.bz2" + ], + "2247.7.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2247.7.0/flatcar_developer_container.bin.bz2" + ], + "2303.3.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2303.3.0/flatcar_developer_container.bin.bz2" + ], + "2303.3.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2303.3.1/flatcar_developer_container.bin.bz2" + ], + "2303.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2303.4.0/flatcar_developer_container.bin.bz2" + ], + "2345.3.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2345.3.0/flatcar_developer_container.bin.bz2" + ], + "2345.3.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2345.3.1/flatcar_developer_container.bin.bz2" + ], + "2512.2.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.2.0/flatcar_developer_container.bin.bz2" + ], + "2512.2.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.2.1/flatcar_developer_container.bin.bz2" + ], + "2512.3.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.3.0/flatcar_developer_container.bin.bz2" + ], + "2512.4.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.4.0/flatcar_developer_container.bin.bz2" + ], + "2512.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.5.0/flatcar_developer_container.bin.bz2" + ], + "2605.10.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.10.0/flatcar_developer_container.bin.bz2" + ], + "2605.11.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.11.0/flatcar_developer_container.bin.bz2" + ], + "2605.12.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.12.0/flatcar_developer_container.bin.bz2" + ], + "2605.5.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.5.0/flatcar_developer_container.bin.bz2" + ], + "2605.6.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.6.0/flatcar_developer_container.bin.bz2" + ], + "2605.7.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.7.0/flatcar_developer_container.bin.bz2" + ], + "2605.8.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.8.0/flatcar_developer_container.bin.bz2" + ], + "2605.9.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.9.0/flatcar_developer_container.bin.bz2" + ], + "2765.2.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.0/flatcar_developer_container.bin.bz2" + ], + "2765.2.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.1/flatcar_developer_container.bin.bz2" + ], + "2765.2.2": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.2/flatcar_developer_container.bin.bz2" + ], + "2765.2.3": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.3/flatcar_developer_container.bin.bz2" + ], + "2765.2.4": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.4/flatcar_developer_container.bin.bz2" + ], + "2765.2.5": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.5/flatcar_developer_container.bin.bz2" + ], + "2765.2.6": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.6/flatcar_developer_container.bin.bz2" + ], + "2905.2.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.0/flatcar_developer_container.bin.bz2" + ], + "2905.2.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.1/flatcar_developer_container.bin.bz2" + ], + "2905.2.2": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.2/flatcar_developer_container.bin.bz2" + ], + "2905.2.3": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.3/flatcar_developer_container.bin.bz2" + ], + "2905.2.4": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.4/flatcar_developer_container.bin.bz2" + ], + "2905.2.5": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.5/flatcar_developer_container.bin.bz2" + ], + "2905.2.6": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.6/flatcar_developer_container.bin.bz2" + ], + "2983.2.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2983.2.0/flatcar_developer_container.bin.bz2" + ], + "2983.2.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2983.2.1/flatcar_developer_container.bin.bz2" + ], + "3033.2.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.0/flatcar_developer_container.bin.bz2" + ], + "3033.2.1": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.1/flatcar_developer_container.bin.bz2" + ], + "3033.2.2": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.2/flatcar_developer_container.bin.bz2" + ], + "3033.2.3": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.3/flatcar_developer_container.bin.bz2" + ], + "3033.2.4": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.4/flatcar_developer_container.bin.bz2" + ], + "3139.2.0": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.0/flatcar_developer_container.bin.bz2" + ], + "1722.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1722.2.0/flatcar_developer_container.bin.bz2" + ], + "1745.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1745.1.0/flatcar_developer_container.bin.bz2" + ], + "1745.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1745.2.0/flatcar_developer_container.bin.bz2" + ], + "1772.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1772.1.1/flatcar_developer_container.bin.bz2" + ], + "1772.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1772.2.0/flatcar_developer_container.bin.bz2" + ], + "1772.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1772.3.0/flatcar_developer_container.bin.bz2" + ], + "1772.4.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1772.4.0/flatcar_developer_container.bin.bz2" + ], + "1800.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1800.2.0/flatcar_developer_container.bin.bz2" + ], + "1800.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1800.3.0/flatcar_developer_container.bin.bz2" + ], + "1828.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1828.1.0/flatcar_developer_container.bin.bz2" + ], + "1828.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1828.2.0/flatcar_developer_container.bin.bz2" + ], + "1828.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1828.3.0/flatcar_developer_container.bin.bz2" + ], + "1855.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1855.2.0/flatcar_developer_container.bin.bz2" + ], + "1855.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1855.3.0/flatcar_developer_container.bin.bz2" + ], + "1883.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1883.1.0/flatcar_developer_container.bin.bz2" + ], + "1911.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1911.1.1/flatcar_developer_container.bin.bz2" + ], + "1911.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1911.2.0/flatcar_developer_container.bin.bz2" + ], + "1939.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1939.1.0/flatcar_developer_container.bin.bz2" + ], + "1939.2.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1939.2.1/flatcar_developer_container.bin.bz2" + ], + "1967.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1967.1.0/flatcar_developer_container.bin.bz2" + ], + "1967.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1967.2.0/flatcar_developer_container.bin.bz2" + ], + "1995.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1995.1.0/flatcar_developer_container.bin.bz2" + ], + "2023.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2023.1.0/flatcar_developer_container.bin.bz2" + ], + "2023.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2023.2.0/flatcar_developer_container.bin.bz2" + ], + "2023.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2023.3.0/flatcar_developer_container.bin.bz2" + ], + "2051.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2051.1.0/flatcar_developer_container.bin.bz2" + ], + "2051.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2051.2.0/flatcar_developer_container.bin.bz2" + ], + "2079.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2079.1.0/flatcar_developer_container.bin.bz2" + ], + "2079.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2079.2.0/flatcar_developer_container.bin.bz2" + ], + "2107.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2107.1.0/flatcar_developer_container.bin.bz2" + ], + "2107.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2107.2.0/flatcar_developer_container.bin.bz2" + ], + "2107.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2107.3.0/flatcar_developer_container.bin.bz2" + ], + "2135.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2135.2.0/flatcar_developer_container.bin.bz2" + ], + "2135.3.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2135.3.1/flatcar_developer_container.bin.bz2" + ], + "2163.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2163.3.0/flatcar_developer_container.bin.bz2" + ], + "2163.4.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2163.4.0/flatcar_developer_container.bin.bz2" + ], + "2191.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2191.1.0/flatcar_developer_container.bin.bz2" + ], + "2191.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2191.2.0/flatcar_developer_container.bin.bz2" + ], + "2191.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2191.3.0/flatcar_developer_container.bin.bz2" + ], + "2219.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2219.2.0/flatcar_developer_container.bin.bz2" + ], + "2219.2.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2219.2.1/flatcar_developer_container.bin.bz2" + ], + "2219.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2219.3.0/flatcar_developer_container.bin.bz2" + ], + "2247.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2247.2.0/flatcar_developer_container.bin.bz2" + ], + "2247.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2247.3.0/flatcar_developer_container.bin.bz2" + ], + "2247.4.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2247.4.0/flatcar_developer_container.bin.bz2" + ], + "2275.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2275.2.0/flatcar_developer_container.bin.bz2" + ], + "2303.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2303.1.1/flatcar_developer_container.bin.bz2" + ], + "2303.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2303.2.0/flatcar_developer_container.bin.bz2" + ], + "2331.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2331.1.0/flatcar_developer_container.bin.bz2" + ], + "2331.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2331.1.1/flatcar_developer_container.bin.bz2" + ], + "2345.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2345.1.0/flatcar_developer_container.bin.bz2" + ], + "2345.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2345.2.0/flatcar_developer_container.bin.bz2" + ], + "2411.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2411.1.0/flatcar_developer_container.bin.bz2" + ], + "2411.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2411.1.1/flatcar_developer_container.bin.bz2" + ], + "2512.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2512.1.0/flatcar_developer_container.bin.bz2" + ], + "2512.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2512.1.1/flatcar_developer_container.bin.bz2" + ], + "2513.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2513.2.0/flatcar_developer_container.bin.bz2" + ], + "2513.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2513.3.0/flatcar_developer_container.bin.bz2" + ], + "2605.2.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2605.2.0/flatcar_developer_container.bin.bz2" + ], + "2605.3.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2605.3.0/flatcar_developer_container.bin.bz2" + ], + "2605.4.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2605.4.0/flatcar_developer_container.bin.bz2" + ], + "2632.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2632.1.0/flatcar_developer_container.bin.bz2" + ], + "2643.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2643.1.0/flatcar_developer_container.bin.bz2" + ], + "2643.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2643.1.1/flatcar_developer_container.bin.bz2" + ], + "2705.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.0/flatcar_developer_container.bin.bz2" + ], + "2705.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.1/flatcar_developer_container.bin.bz2" + ], + "2705.1.2": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.2/flatcar_developer_container.bin.bz2" + ], + "2765.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2765.1.0/flatcar_developer_container.bin.bz2" + ], + "2801.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2801.1.0/flatcar_developer_container.bin.bz2" + ], + "2823.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.0/flatcar_developer_container.bin.bz2" + ], + "2823.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.1/flatcar_developer_container.bin.bz2" + ], + "2823.1.2": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.2/flatcar_developer_container.bin.bz2" + ], + "2823.1.3": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.3/flatcar_developer_container.bin.bz2" + ], + "2905.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2905.1.0/flatcar_developer_container.bin.bz2" + ], + "2920.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2920.1.0/flatcar_developer_container.bin.bz2" + ], + "2942.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.0/flatcar_developer_container.bin.bz2" + ], + "2942.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.1/flatcar_developer_container.bin.bz2" + ], + "2942.1.2": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.2/flatcar_developer_container.bin.bz2" + ], + "2983.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.0/flatcar_developer_container.bin.bz2" + ], + "2983.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.1/flatcar_developer_container.bin.bz2" + ], + "2983.1.2": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.2/flatcar_developer_container.bin.bz2" + ], + "3033.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3033.1.0/flatcar_developer_container.bin.bz2" + ], + "3033.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3033.1.1/flatcar_developer_container.bin.bz2" + ], + "3066.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.0/flatcar_developer_container.bin.bz2" + ], + "3066.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.1/flatcar_developer_container.bin.bz2" + ], + "3066.1.2": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.2/flatcar_developer_container.bin.bz2" + ], + "3139.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3139.1.0/flatcar_developer_container.bin.bz2" + ], + "3139.1.1": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3139.1.1/flatcar_developer_container.bin.bz2" + ], + "3185.1.0": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3185.1.0/flatcar_developer_container.bin.bz2" + ], + "1745.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1745.0.0/flatcar_developer_container.bin.bz2" + ], + "1758.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1758.0.0/flatcar_developer_container.bin.bz2" + ], + "1772.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1772.0.0/flatcar_developer_container.bin.bz2" + ], + "1786.0.1": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1786.0.1/flatcar_developer_container.bin.bz2" + ], + "1786.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1786.1.0/flatcar_developer_container.bin.bz2" + ], + "1786.2.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1786.2.0/flatcar_developer_container.bin.bz2" + ], + "1800.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1800.0.0/flatcar_developer_container.bin.bz2" + ], + "1800.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1800.1.0/flatcar_developer_container.bin.bz2" + ], + "1814.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1814.0.0/flatcar_developer_container.bin.bz2" + ], + "1828.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1828.0.0/flatcar_developer_container.bin.bz2" + ], + "1849.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1849.0.0/flatcar_developer_container.bin.bz2" + ], + "1855.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1855.0.0/flatcar_developer_container.bin.bz2" + ], + "1855.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1855.1.0/flatcar_developer_container.bin.bz2" + ], + "1871.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1871.0.0/flatcar_developer_container.bin.bz2" + ], + "1883.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1883.0.0/flatcar_developer_container.bin.bz2" + ], + "1897.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1897.0.0/flatcar_developer_container.bin.bz2" + ], + "1911.0.2": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1911.0.2/flatcar_developer_container.bin.bz2" + ], + "1925.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1925.0.0/flatcar_developer_container.bin.bz2" + ], + "1939.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1939.0.0/flatcar_developer_container.bin.bz2" + ], + "1953.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1953.0.0/flatcar_developer_container.bin.bz2" + ], + "1967.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1967.0.0/flatcar_developer_container.bin.bz2" + ], + "1981.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1981.0.0/flatcar_developer_container.bin.bz2" + ], + "1995.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1995.0.0/flatcar_developer_container.bin.bz2" + ], + "2016.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2016.0.0/flatcar_developer_container.bin.bz2" + ], + "2023.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2023.0.0/flatcar_developer_container.bin.bz2" + ], + "2037.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2037.0.0/flatcar_developer_container.bin.bz2" + ], + "2051.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2051.0.0/flatcar_developer_container.bin.bz2" + ], + "2065.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2065.0.0/flatcar_developer_container.bin.bz2" + ], + "2079.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2079.0.0/flatcar_developer_container.bin.bz2" + ], + "2093.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2093.0.0/flatcar_developer_container.bin.bz2" + ], + "2107.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2107.0.0/flatcar_developer_container.bin.bz2" + ], + "2121.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2121.0.0/flatcar_developer_container.bin.bz2" + ], + "2135.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2135.0.0/flatcar_developer_container.bin.bz2" + ], + "2135.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2135.1.0/flatcar_developer_container.bin.bz2" + ], + "2149.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2149.0.0/flatcar_developer_container.bin.bz2" + ], + "2163.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2163.0.0/flatcar_developer_container.bin.bz2" + ], + "2163.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2163.1.0/flatcar_developer_container.bin.bz2" + ], + "2163.2.1": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2163.2.1/flatcar_developer_container.bin.bz2" + ], + "2184.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2184.0.0/flatcar_developer_container.bin.bz2" + ], + "2191.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2191.0.0/flatcar_developer_container.bin.bz2" + ], + "2205.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2205.0.0/flatcar_developer_container.bin.bz2" + ], + "2219.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2219.0.0/flatcar_developer_container.bin.bz2" + ], + "2219.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2219.1.0/flatcar_developer_container.bin.bz2" + ], + "2234.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2234.0.0/flatcar_developer_container.bin.bz2" + ], + "2247.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2247.0.0/flatcar_developer_container.bin.bz2" + ], + "2247.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2247.1.0/flatcar_developer_container.bin.bz2" + ], + "2261.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2261.0.0/flatcar_developer_container.bin.bz2" + ], + "2275.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2275.0.0/flatcar_developer_container.bin.bz2" + ], + "2275.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2275.1.0/flatcar_developer_container.bin.bz2" + ], + "2296.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2296.0.0/flatcar_developer_container.bin.bz2" + ], + "2303.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2303.0.0/flatcar_developer_container.bin.bz2" + ], + "2317.0.1": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2317.0.1/flatcar_developer_container.bin.bz2" + ], + "2331.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2331.0.0/flatcar_developer_container.bin.bz2" + ], + "2345.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.0/flatcar_developer_container.bin.bz2" + ], + "2345.0.1": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.1/flatcar_developer_container.bin.bz2" + ], + "2345.0.2": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.2/flatcar_developer_container.bin.bz2" + ], + "2387.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2387.0.0/flatcar_developer_container.bin.bz2" + ], + "2411.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2411.0.0/flatcar_developer_container.bin.bz2" + ], + "2430.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2430.0.0/flatcar_developer_container.bin.bz2" + ], + "2466.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2466.0.0/flatcar_developer_container.bin.bz2" + ], + "2492.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2492.0.0/flatcar_developer_container.bin.bz2" + ], + "2513.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2513.0.0/flatcar_developer_container.bin.bz2" + ], + "2513.0.1": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2513.0.1/flatcar_developer_container.bin.bz2" + ], + "2513.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2513.1.0/flatcar_developer_container.bin.bz2" + ], + "2592.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2592.0.0/flatcar_developer_container.bin.bz2" + ], + "2605.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2605.0.0/flatcar_developer_container.bin.bz2" + ], + "2605.1.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2605.1.0/flatcar_developer_container.bin.bz2" + ], + "2632.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2632.0.0/flatcar_developer_container.bin.bz2" + ], + "2643.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2643.0.0/flatcar_developer_container.bin.bz2" + ], + "2661.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2661.0.0/flatcar_developer_container.bin.bz2" + ], + "2671.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2671.0.0/flatcar_developer_container.bin.bz2" + ], + "2697.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2697.0.0/flatcar_developer_container.bin.bz2" + ], + "2705.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2705.0.0/flatcar_developer_container.bin.bz2" + ], + "2723.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2723.0.0/flatcar_developer_container.bin.bz2" + ], + "2748.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2748.0.0/flatcar_developer_container.bin.bz2" + ], + "2765.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2765.0.0/flatcar_developer_container.bin.bz2" + ], + "2783.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2783.0.0/flatcar_developer_container.bin.bz2" + ], + "2801.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2801.0.0/flatcar_developer_container.bin.bz2" + ], + "2801.0.1": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2801.0.1/flatcar_developer_container.bin.bz2" + ], + "2823.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2823.0.0/flatcar_developer_container.bin.bz2" + ], + "2857.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2857.0.0/flatcar_developer_container.bin.bz2" + ], + "2879.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2879.0.0/flatcar_developer_container.bin.bz2" + ], + "2879.0.1": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2879.0.1/flatcar_developer_container.bin.bz2" + ], + "2905.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2905.0.0/flatcar_developer_container.bin.bz2" + ], + "2920.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2920.0.0/flatcar_developer_container.bin.bz2" + ], + "2942.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2942.0.0/flatcar_developer_container.bin.bz2" + ], + "2955.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2955.0.0/flatcar_developer_container.bin.bz2" + ], + "2969.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2969.0.0/flatcar_developer_container.bin.bz2" + ], + "2983.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2983.0.0/flatcar_developer_container.bin.bz2" + ], + "3005.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3005.0.0/flatcar_developer_container.bin.bz2" + ], + "3005.0.1": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3005.0.1/flatcar_developer_container.bin.bz2" + ], + "3033.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3033.0.0/flatcar_developer_container.bin.bz2" + ], + "3046.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3046.0.0/flatcar_developer_container.bin.bz2" + ], + "3066.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3066.0.0/flatcar_developer_container.bin.bz2" + ], + "3115.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3115.0.0/flatcar_developer_container.bin.bz2" + ], + "3127.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3127.0.0/flatcar_developer_container.bin.bz2" + ], + "3139.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3139.0.0/flatcar_developer_container.bin.bz2" + ], + "3165.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3165.0.0/flatcar_developer_container.bin.bz2" + ], + "3185.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3185.0.0/flatcar_developer_container.bin.bz2" + ], + "3200.0.0": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3200.0.0/flatcar_developer_container.bin.bz2" + ] + } +} From 842e705b93b1157783783b5b06dc07392b35c840 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 13 Apr 2022 09:34:40 +0200 Subject: [PATCH 087/259] new: added driverkit config json output. Signed-off-by: Federico Di Pierro --- .gitignore | 2 ++ __init__.py | 12 +++++++---- kernel_crawler/.gitignore | 1 + kernel_crawler/__init__.py | 19 +++++++++++++++--- .../__pycache__/__init__.cpython-310.pyc | Bin 1062 -> 1308 bytes .../__pycache__/amazonlinux.cpython-310.pyc | Bin 2693 -> 3032 bytes .../__pycache__/centos.cpython-310.pyc | Bin 1227 -> 1422 bytes .../__pycache__/deb.cpython-310.pyc | Bin 8255 -> 8255 bytes .../__pycache__/debian.cpython-310.pyc | Bin 1621 -> 1852 bytes .../__pycache__/fedora.cpython-310.pyc | Bin 1024 -> 1219 bytes .../__pycache__/flatcar.cpython-310.pyc | Bin 2505 -> 2698 bytes .../__pycache__/oracle.cpython-310.pyc | Bin 3466 -> 3899 bytes .../__pycache__/photon_os.cpython-310.pyc | Bin 1566 -> 1765 bytes .../__pycache__/repo.cpython-310.pyc | Bin 2291 -> 2629 bytes .../__pycache__/rpm.cpython-310.pyc | Bin 5132 -> 5132 bytes .../__pycache__/ubuntu.cpython-310.pyc | Bin 795 -> 1168 bytes kernel_crawler/amazonlinux.py | 6 ++++++ kernel_crawler/centos.py | 5 ++++- kernel_crawler/debian.py | 4 ++++ kernel_crawler/fedora.py | 3 ++- kernel_crawler/flatcar.py | 3 +++ kernel_crawler/oracle.py | 9 +++++++++ kernel_crawler/photon_os.py | 3 +++ kernel_crawler/repo.py | 6 +++++- kernel_crawler/ubuntu.py | 14 +++++++++++++ kernel_crawler/utils/.gitignore | 1 + .../__pycache__/__init__.cpython-310.pyc | Bin 159 -> 159 bytes .../__pycache__/download.cpython-310.pyc | Bin 854 -> 854 bytes .../utils/__pycache__/py23.cpython-310.pyc | Bin 435 -> 435 bytes 29 files changed, 78 insertions(+), 10 deletions(-) create mode 100644 .gitignore create mode 100644 kernel_crawler/.gitignore create mode 100644 kernel_crawler/utils/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dffca67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +kernel_crawler.egg-info/ +__pycache__/ diff --git a/__init__.py b/__init__.py index 80b1929..414418c 100644 --- a/__init__.py +++ b/__init__.py @@ -32,17 +32,21 @@ def default(self, obj): @click.argument('version', required=False, default='') @click.argument('arch', required=False, default='') @click.argument('json_fmt', required=False, default=False) -def crawl(distro, version='', arch='', json_fmt=False): - kernels = crawl_kernels(distro, version, arch) +@click.argument('driverkit_config', required=False, default=False) +def crawl(distro, version='', arch='', json_fmt=False, driverkit_config=False): + res = crawl_kernels(distro, version, arch, driverkit_config) if not json_fmt: - for dist, ks in kernels.items(): + for dist, ks in res.items(): print('=== {} ==='.format(dist)) for release, packages in ks.items(): print('=== {} ==='.format(release)) for pkg in packages: print(' {}'.format(pkg)) else: - json_object = json.dumps(kernels, indent=4, cls=SetEncoder) + if driverkit_config: + json_object = json.dumps(res, indent=2, default=vars) + else: + json_object = json.dumps(res, indent=2, cls=SetEncoder) print(json_object) cli.add_command(crawl, 'crawl') diff --git a/kernel_crawler/.gitignore b/kernel_crawler/.gitignore new file mode 100644 index 0000000..c18dd8d --- /dev/null +++ b/kernel_crawler/.gitignore @@ -0,0 +1 @@ +__pycache__/ diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 22d44dc..9d8b5c6 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -26,12 +26,25 @@ } -def crawl_kernels(distro, version='', arch=''): +def to_driverkit_config(d, res): + dk_configs = [] + for ver, deps in res.items(): + dk_configs.append(d.to_driverkit_config(ver, deps)) + return dk_configs + +def crawl_kernels(distro, version='', arch='', to_driverkit=False): ret = {} + for distname, dist in DISTROS.items(): if distname == distro or distro == "*": if arch: - ret[distname] = dist(arch).get_package_tree(version) + d = dist(arch) else: - ret[distname] = dist().get_package_tree(version) + d = dist() + res = d.get_package_tree(version) + if to_driverkit: + ret[distname] = to_driverkit_config(d, res) + else: + ret[distname] = res + return ret diff --git a/kernel_crawler/__pycache__/__init__.cpython-310.pyc b/kernel_crawler/__pycache__/__init__.cpython-310.pyc index e93a02622f219d0dd8de35c04c751a2fd2c2e26a..18305234362fd1b2d2b15fe66068aba8ba8592c6 100644 GIT binary patch delta 629 zcmYjOO>fgc5Zzg?KWcF5q@fg4IM9;OJq55!rFz)S^-jV z;y~pqLdgY*BR>Lu#QqNsaAIr<>PY+M?RdPi@9h`oliQkko=Y&^y?^rjz&va1!soNz zhpR5XbV|Z5Z}S%4JcaNI_lG3teEZRdMNI1-&cnoP#bro;xc(9WSSJCc$U3L#(}AU zYeR}WbZ_$Xyqbpwc7=?KdH$8i4o?3)sJ_!%)lYhTAvbYCQtBnc^5K~~U+2vCGsTFO);rFlmY4k?xUippyWWh|kzGecQRQrgN!k+6o+ zQ4bB-D-2~TXGs-P=AhQ>{AUc+(_;;{1E%f6d&9?%9t@?2qeFiziqSlZ(`YP4g%qN> za`wsIfxKj=OBO) zqI(?C9jpJXe@Hqgt9Om3hYt;!cizmoP4GYy#Wz8tKI-D%ZtAo=`*TmBN}&! zn=Vkr7P?Qpo4y+nIwXCzo&9D?z|fSAVF{WD-C;;KCE2tP)n#6SRZb7_{XsG7GjX}# Z4{S(I3gC^JJ7^c0<^~ua2BcTAqW&vVnApXn) zBuW?-FxD`pFfL>Q>R|G_#hsX&Se2iblbKgqv686>q&|w@r6{v3wa7cO#5q4NEi-*3 zbCDQO{1$srYEEimaVpRasRhMF+(0o10W$cOa7liAN>QdKP-k{#NqjO`t2R*PGZT>D zVXRVf1Y6|;vdYjmv#2P)NDrb1MaxRYA_1TVO^(S*Y{pDQ7L$Y64ER97#KFM9$j8mW zD!?(hk4=S(PelNc=~i*P71nrt@Xuw-PkpIpE>gVAy_CzrK)kug|*kqMA0 xG6fN4Ai@$vh=2$q5Me&~9hZc-1(2x&#Kmw+*acXNEGEly*8nY;!)?td1pqfjDkT5_ diff --git a/kernel_crawler/__pycache__/centos.cpython-310.pyc b/kernel_crawler/__pycache__/centos.cpython-310.pyc index b04c18764304769d25187eb2aafabbb1b94320d2..d6f41fce6d79be79df4ecdbdcfafbe69e8f1363d 100644 GIT binary patch delta 289 zcmX@j*~iVB&&$ij00df%p-D$J^8RAfQ3LW)8KM|d7^0X`*xDJ=7*m*1m|Hlbm{V9% zSX&sPSlSs_7@}B%88q29YcpMAtWRbJnE(YKHVY6t1934AkSJkTz*xhW!nlwLsDsJx z7F%*^UP*qjCQ}g;Q1%wTOHpQ7YLRzliF1BlT4uT?bCD!SoV_SDCpED+^%hG?YC&-k zCr}JRfSh|vxFkP51*|bU)2<{w8LU+vC{qkFl!viO!5M6eZ)Q0|u(UIzF{Uu3Ft>0*lKrRP^7~^DZ)?@(dEEAgm diff --git a/kernel_crawler/__pycache__/deb.cpython-310.pyc b/kernel_crawler/__pycache__/deb.cpython-310.pyc index 7e912eed86240829d2362bed28f8b849b918c53a..4021fcbcc721f259424cb7e4705a0d9351840161 100644 GIT binary patch delta 20 acmdn*u-}0@pO=@50SJ`MeKvBNC;$L8o&-|> delta 20 acmdn*u-}0@pO=@50SFF$^4`d8q5uFsO$Dm} diff --git a/kernel_crawler/__pycache__/debian.cpython-310.pyc b/kernel_crawler/__pycache__/debian.cpython-310.pyc index da977479e885028f1ed81b2676432172d5e02ca9..c3ae817409da08bba12e9a9a88175a028b5d2022 100644 GIT binary patch delta 344 zcmZuqyGjF55WRCB$?hhb1hllUQnrby{DGtsZN%mx1e4jwB_SK`E*7#ugoPBA`vVF1 z10q=Y7b3!bg|(G)7fT1`9A?g$GoS7EPMCyYz^KgQ)#T$PG;lhgDP|gwX^#Ge%>X%y z!q)-=RM;p$OKhT7Fs(LBGTpdjQS0>?zQn^+xU9cY#IA?b=>b6wTZXWMYrYn1nZcIl z0(mZXf)d2V51dpDj3?%18Hq}ztA)udr@N{C8*3BW|HmGIZIhX3-%+!C XQhjdw<(nF`-6M~3f>y6reyjKw9ZFJ^ delta 114 zcmdnPca?`XpO=@50SH{TcqQ3w7*m*1m|Hlbm{T}X zSX0fMhPzRIW zEw;4Ol>DMZO{O9ypzJMvm!izF)FSW966gH9w9Ir(<{}Z0ID1iQPHJLt>MfR()Pmw7 zkRu@kH%L~vBtJd{tT8*&t|UGgtW^{!Qw%bchp|e*4Qz{VW>Haoksgw2m|{)FB0iu} fO}5GY%s{uuPA+9O;9>)ca4_&O3UE$d%Nz^c_+1Qp+$GAJ&&$ij00i~*p-D{}d9N~y*#UW}3{i|J3{gz!3@MC@7^9d|xF`Q$mJv$f zOyO!_h+=PNU}1>j2xida*(}F$howH58Ds<$fY>ZR>6*+%ASV@xfh1W{QVWWUxIug{ z0W$EGa7liA3RqKiW=VXq4Op8oP^Op(NboRLDY`+d@XahL$}iGGRSvO)u}A@^R+Dow hGp90Bk?Uk-P6Gju;T#McjC@QSY#h7-Y?Bi?GXSBMLplHe delta 102 zcmeAYJt@qa&&$ij00g%`c_)c)Go&ysVvJ%=;hg+~S%#~f zfrTN8J(xk0YqJ{59TrYa#v%ovYE6#GdpVUSKjqZr1DVCaz`@AJ#K9)OJ6VY<0|2GP B6xIL$ diff --git a/kernel_crawler/__pycache__/oracle.cpython-310.pyc b/kernel_crawler/__pycache__/oracle.cpython-310.pyc index 255d9dd54014148a04821e7c3c57e42fe51a1050..cb9042845493022c4e4d01d99c278a57bf3d4d7d 100644 GIT binary patch delta 738 zcmeB@-Yv(M&&$ij00h#Fp-C=W8~JLO#LR%)RE8+V6ox3K6vh;$7KSM16t2k&m_&q9 zI8r!)T())w7KSMHU50EHfSio4rn8LV_38;g~ zFN!_CC^0!F)odkG5ff1Q7QahTW?5>HcV>xmeqLH;`by>^VURd`QEEnRFq$&hfoezy^^s= z6sUG3M-eBGDgp&W5jThs0TI$5LK8$7PVQ$j-~&l>FmN#PadNN(Py%_b{yDl+O!cIIqiG@5*jGlbD_vNV?x?!YP12AYTzAm&9nAlvjn1gd9? z41r=MAaNrg0rQzTZl4tygA{{xOkTt$A_~_|a&A7xw3bV_2V6?*McN?abSBqwONfJZ-I zEGMh-HZj^yUcno}XgB#UFREGkKy!>x%whwYr9b&Jp9vet9w5_!Nqn*lzYMdmm zlrSt{tYJ)HT*w5}!Q>akQIL^elAq@vtjSaaQhbZwr6{v3wa7cO#5q4NEi+w{xkv&e z&R&$7lbTqZdW$6`wV=3&6(|NF*g>+wCHe6wV2w`MnI-YbV6E~%nPMg&!NXXk6acZO z*f+DND8EP#t{$OWld(t`s92L@assOyQ<3K6YE}b2Q1Eata4_<5aIgxnP2SF$4gknh BN#pd?FhsEhGiY*bp22jSiBprYNEoPDlYO!Ro7`k)HeDVLAeV!I OgOQIzfOT>mTRH$zK^37nlBxs*0!WQg3y)@=Hrvu z+d3X7eJ{?o`^jFs{}nL0>mW=I`4-wXT1vTw_K-zv2#7GW5G~1en5No+J@KC?ov0q> zOyhonw4HOUda9GE3C}uuUuA)#ix{sP1oH%Q=7XqRkD@qkCxITf|Wtn&9U{UdXBVwW8i=Q-8|jcV7`SnXR|Dz zwqV}aU1%ED`2kDjm$Qm~t1v+SRpBAxw?cDn5#wl}R3Hc@K-gtlFJkVudh?Nm+Eu+?6#X~FRlL>tLav~93GMWEDM7{2qy=8+MbX}2cBmCTrH}r%HEL+W`@4@- jH`6xBw9~vhP4nijwRtaAY89j delta 494 zcmX|-%}OId5XYxx#-5tVj3y9`@q_gPl|fy-3X3OE@TedX(1zHv5HT4o6Y*~DGW5mE zUOkFeAHa85a`OcQ@dd03VnhG=*RQI&tNXS3SxNFFi5y;!ulvoQNM_-;2-l#`Hi|29M5AM}Ed#c+y{(=>|g-?2h zL5egdd|qT&u^?_yM5Y?3?6#YA49QigPoX4I5h-q{c8e${DhU}%EKZ77?QXcwGZ*3P z@rJ-*W{ur4@9#f}q3n~eG;Bm#|Lt{qlxa<_G|Y*}I0Kb8&$F{Gc|v5Y;lpT+UtXIZ b;GcGGdKcL?aOQfHC3et7D0_%yRjqshy~ABx diff --git a/kernel_crawler/__pycache__/rpm.cpython-310.pyc b/kernel_crawler/__pycache__/rpm.cpython-310.pyc index 3d7ae1a548bfa2cbafb9fc7541d8417ff54ae837..eba777dac7fd5366228b16ed725b3a7b09eb08a9 100644 GIT binary patch delta 26 gcmeCt=+WTL=jG*M0D|oep&Pklg&A*6&JZWe4_PTvNtst=z;Zqng(#dt&IDbn&c0!P7!0lkX+Efp zIy%)RX+@%Wmwo+^4gCd02SZt_P}LS)p|noczfN*1+ewP1db?dYHp#6vCrN(POWR2& zRHj;r^^CsO%}iT~x}RCurJ9ght(!MZN9R`HNcSzES)qYHSgl6a@?MN{)ozlm(;+Pu+mZ2dT%lzfw$t;sV# P@Ll2+$*=m8Pk#0bSge9G delta 94 zcmbQhIh&0ypO=@50SNTBcqLt8oXA(FA_wH9GDI<^Fhnt>u(UIzF{Uu3Ft>0x*RM(E(e1c<76imKLD7t5=j66 diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index 44c5a43..9e7c71a 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -40,6 +40,9 @@ def list_repos(self): repo_urls.add(get_al_repo("http://repo.us-east-1.amazonaws.com/", r, self.arch)) return [rpm.RpmRepository(url) for url in sorted(repo_urls)] + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "amazonlinux") + class AmazonLinux2Mirror(repo.Distro): AL2_REPOS = [ @@ -61,3 +64,6 @@ def list_repos(self): for r in repos: repo_urls.add(get_al_repo("http://amazonlinux.us-east-1.amazonaws.com/2/", r + '/' + self.arch)) return [rpm.RpmRepository(url) for url in sorted(repo_urls)] + + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "amazonlinux2") \ No newline at end of file diff --git a/kernel_crawler/centos.py b/kernel_crawler/centos.py index 4df1111..0044d9d 100644 --- a/kernel_crawler/centos.py +++ b/kernel_crawler/centos.py @@ -18,7 +18,7 @@ def __init__(self, arch='x86_64'): if arch=='arm': arch='aarch64' mirrors = [ - rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/' + arch + '/', v7_only), + rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/' + arch + '/', v7_only), rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/' + arch + '/', v7_only), # CentOS 8 reached end-of-life at the end of 2021, so no point looking for it # rpm.RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), @@ -27,3 +27,6 @@ def __init__(self, arch='x86_64'): rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'BaseOS/' + arch + '/os/', v8_only), ] super(CentosMirror, self).__init__(mirrors, arch) + + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "centos") \ No newline at end of file diff --git a/kernel_crawler/debian.py b/kernel_crawler/debian.py index 2c03750..06f939c 100644 --- a/kernel_crawler/debian.py +++ b/kernel_crawler/debian.py @@ -35,3 +35,7 @@ def get_package_tree(self, version=''): for release, dependencies in deb.DebRepository.build_package_tree(all_packages, all_kernel_packages).items(): packages.setdefault(release, set()).update(dependencies) return packages + + def to_driverkit_config(self, release, deps): + krel, kver = release.split("/") + return repo.DriverKitConfig(krel, "debian", kver) diff --git a/kernel_crawler/fedora.py b/kernel_crawler/fedora.py index b5cdb9c..3d22097 100644 --- a/kernel_crawler/fedora.py +++ b/kernel_crawler/fedora.py @@ -18,4 +18,5 @@ def __init__(self, arch='x86_64'): ] super(FedoraMirror, self).__init__(mirrors, arch) - + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "fedora") diff --git a/kernel_crawler/flatcar.py b/kernel_crawler/flatcar.py index 2146f21..c36a755 100644 --- a/kernel_crawler/flatcar.py +++ b/kernel_crawler/flatcar.py @@ -47,3 +47,6 @@ def list_repos(self): for repo in self.mirrors: repos.extend(self.scan_repo(repo)) return repos + + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "flatcar") diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index 60e645a..5a9e85a 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -26,6 +26,9 @@ def __init__(self, arch='x86_64'): def list_repos(self): return [OracleRepository(url) for url in self.repos()] + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "oracle6") + class Oracle7Mirror(repo.Distro): def repos(self): @@ -46,6 +49,9 @@ def __init__(self, arch='x86_64'): def list_repos(self): return [OracleRepository(url) for url in self.repos()] + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "oracle7") + class Oracle8Mirror(repo.Distro): def repos(self): @@ -61,3 +67,6 @@ def __init__(self, arch='x86_64'): def list_repos(self): return [OracleRepository(url) for url in self.repos()] + + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "oracle8") \ No newline at end of file diff --git a/kernel_crawler/photon_os.py b/kernel_crawler/photon_os.py index 7231e49..369d37f 100644 --- a/kernel_crawler/photon_os.py +++ b/kernel_crawler/photon_os.py @@ -27,3 +27,6 @@ def list_repos(self): PhotonOsRepository('https://packages.vmware.com/photon/{v}/photon{r}_{v}_{a}/'.format( v=version, r=repo_tag, a=self.arch)) for version, repo_tag in self.PHOTON_OS_VERSIONS] + + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "photonOS") diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index 5449603..c7dc18e 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -3,7 +3,6 @@ import click import sys - class Repository(object): def get_package_tree(self, version=''): raise NotImplementedError @@ -11,6 +10,11 @@ def get_package_tree(self, version=''): def __str__(self): raise NotImplementedError +class DriverKitConfig(object): + def __init__(self, kernelrelease, target, kernelversion=1): + self.kernelversion = kernelversion + self.kernelrelease = kernelrelease + self.target = target def to_s(s): if s is None: diff --git a/kernel_crawler/ubuntu.py b/kernel_crawler/ubuntu.py index b302a9c..22ad8a8 100644 --- a/kernel_crawler/ubuntu.py +++ b/kernel_crawler/ubuntu.py @@ -11,3 +11,17 @@ def __init__(self, arch='amd64'): deb.DebMirror('http://ports.ubuntu.com/ubuntu-ports/', arch), ] super(UbuntuMirror, self).__init__(mirrors, arch) + + def to_driverkit_config(self, release, deps): + krel, kver = release.split("/") + target = "ubuntu-generic" + for dep in deps: + # We only support ubuntu-aws specific builder in driverkit + d = dep.find("aws") + if d != -1: + target = "ubuntu-aws" + krel += "-aws" + else: + krel += "-generic" + break + return repo.DriverKitConfig(krel, target, kver) \ No newline at end of file diff --git a/kernel_crawler/utils/.gitignore b/kernel_crawler/utils/.gitignore new file mode 100644 index 0000000..c18dd8d --- /dev/null +++ b/kernel_crawler/utils/.gitignore @@ -0,0 +1 @@ +__pycache__/ diff --git a/kernel_crawler/utils/__pycache__/__init__.cpython-310.pyc b/kernel_crawler/utils/__pycache__/__init__.cpython-310.pyc index 5f1730a8d4d55aea92258e1aefa8e9aa7e4be21c..5d76b487d3e587e3ff25c8df089585b77acd587e 100644 GIT binary patch delta 19 ZcmbQwIG>R_pO=@50SJ`MeI{~G0RSXz1GNAE delta 19 ZcmbQwIG>R_pO=@50SLZ)^q$B)1pqAZ1wQ}) diff --git a/kernel_crawler/utils/__pycache__/download.cpython-310.pyc b/kernel_crawler/utils/__pycache__/download.cpython-310.pyc index bb118607f1d26282c6422d36612bad40dc64427e..c6f66507322c3a361199c4b6d4820752093112d5 100644 GIT binary patch delta 20 acmcb{c8!fYpO=@50SJ`MeKvA?GXnrH@dO6| delta 20 acmcb{c8!fYpO=@50SFSlcyHwPW(EK^1qA>A diff --git a/kernel_crawler/utils/__pycache__/py23.cpython-310.pyc b/kernel_crawler/utils/__pycache__/py23.cpython-310.pyc index 3b655c5e4b7e0105dccbb894a889e55a54650be0..482f1921daadee14174ceb2ae439f485650f2b8f 100644 GIT binary patch delta 20 acmdnYyqTFhpO=@50SJ`MeKvBhU<3dx3j`Jb delta 20 acmdnYyqTFhpO=@50SJ0ON^Im_!3Y2{Nd*P~ From 693adba27f27c79953d365904e080ef67cbf9641 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 13 Apr 2022 09:35:44 +0200 Subject: [PATCH 088/259] chore: removed useless pycache folders. Signed-off-by: Federico Di Pierro --- .../__pycache__/__init__.cpython-310.pyc | Bin 1308 -> 0 bytes .../__pycache__/amazonlinux.cpython-310.pyc | Bin 3032 -> 0 bytes .../__pycache__/centos.cpython-310.pyc | Bin 1422 -> 0 bytes kernel_crawler/__pycache__/deb.cpython-310.pyc | Bin 8255 -> 0 bytes .../__pycache__/debian.cpython-310.pyc | Bin 1852 -> 0 bytes .../__pycache__/fedora.cpython-310.pyc | Bin 1219 -> 0 bytes .../__pycache__/flatcar.cpython-310.pyc | Bin 2698 -> 0 bytes .../__pycache__/oracle.cpython-310.pyc | Bin 3899 -> 0 bytes .../__pycache__/photon_os.cpython-310.pyc | Bin 1765 -> 0 bytes kernel_crawler/__pycache__/repo.cpython-310.pyc | Bin 2629 -> 0 bytes kernel_crawler/__pycache__/rpm.cpython-310.pyc | Bin 5132 -> 0 bytes .../__pycache__/ubuntu.cpython-310.pyc | Bin 1168 -> 0 bytes .../utils/__pycache__/__init__.cpython-310.pyc | Bin 159 -> 0 bytes .../utils/__pycache__/download.cpython-310.pyc | Bin 854 -> 0 bytes .../utils/__pycache__/py23.cpython-310.pyc | Bin 435 -> 0 bytes 15 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 kernel_crawler/__pycache__/__init__.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/amazonlinux.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/centos.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/deb.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/debian.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/fedora.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/flatcar.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/oracle.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/photon_os.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/repo.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/rpm.cpython-310.pyc delete mode 100644 kernel_crawler/__pycache__/ubuntu.cpython-310.pyc delete mode 100644 kernel_crawler/utils/__pycache__/__init__.cpython-310.pyc delete mode 100644 kernel_crawler/utils/__pycache__/download.cpython-310.pyc delete mode 100644 kernel_crawler/utils/__pycache__/py23.cpython-310.pyc diff --git a/kernel_crawler/__pycache__/__init__.cpython-310.pyc b/kernel_crawler/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 18305234362fd1b2d2b15fe66068aba8ba8592c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1308 zcmY*Z&u`;I6rLG7V<&M^H!UlW;KV8Xir53YhibKGt4c_)MU)lN6UcHr)7FZAglA_L zRuc))6@LXn?U8@US5BO{apKJ+E$Kw_{CzLunfJao&-G|DU^IUH?Zx~_kFmcj*&Pv) zr!<>C$S9_G!AcIi6d<_eqVP%|e22ZFS4xl$`$bTO5SD%Dmjf6$U#}RJ5kwBlVpNV{ z>~K)*l`+H)hsAz5feB}tYoUEDb*TG#pd&rjv7V^@??X6H12ufZ;85+WvD$mX;Vl)P zvFYS*PC-sZH~G9wU)R-_dA0iK)30*G8t?fYZhTYTMbC8A*3JL?M5`LpE%&<7DW+MW zKih7yrH}5@$9J!fzrL*7x;ow2@L13Dw7Odny_m16c6G-`Cq>$3DQ+D@81BRl(GGbC z(gu5a267W51l!~iO@+_eFjAru@nG3cShF`NA zcFcYleJ|GD+Bf2w8+I*>XZ#y+!#Vp=8bP}A=Tooi<*hE8PNvJHu2gr>)``OWrN%|x zCRtsb=NHpn$5rQ{ZeXAmTW13vEdpQZW%DP)2_63L(d@D=_3T_Ljd@njzN>LDTVg%e zAJ12LLEhOyW2K8E!}L`_G)eM`&PhI5{)~IH#d|i9kc`h`e#m|9yd68qd~)87J^{;J z+KNEV)_%*bxl4OWY4_IB^bA{wW@6~_F9gnvz;_HKe#O^8{pR!xM|3j87rITBX|_l&bkd^MF5+pw zlPYgoth<0@YVx}3{1mfGh;{|GqP7s)l~r2m&Uf#`v@h;kV^!Ul147-%$(C$1Y~CkV z^EMgMO2nkqfJ-r;XUsz(e(?pqOMg<0@sOU*oJ=3UFm+8<*d{}Jnb0ExGIJe;R#%Wz zLTV?p_X{K;>LrwRt-Wn%3k3b8>zSl((AEQ_avg*Ay99FO+69M}1m~MxLHkj{2iDkH uyYO~Wbji9r!=tiRt3p4q-vxKCV;1pB=_NulbYDXoI4sFotjcm^=o>&=X} zgw=AWK+37Adg&Q@+keT|o_gk%L(})h%f~JdbyoBI_RZIu_ulVk$CXNvK%4&cr{zB_ zLjJ}-Cz}C(9z&M`1S5=w#L1r2p-f|Xs71P?Qv$jHy5Sh06P62ek?EL9H^Y2nITq+c z%wmOI>J+{utjJ2cgq66yUfj{05?IQt0+ve8Qf73CREPh8bIIaA6l9gAhTzQ@p1Np8 z@W`+7#BGTX)KcVaa91WGXso8h*Kt{|<=~0;n1?PWL3Bumj=^2V$hMx4j=n>;jf8fL zJ#8QEafR&AJ)P+tZ6EG5M!<{QV!Lcdfe^8%g#jFb?z9Uxmp#cn;jg`+cGVDgjxa%_ zMcE94Bn%o{rg?BV^n6~;IR*6I6>*$6qTBWZh#-HSGDF=TEcL7 zp^ImiVMmG1mZ?R@si=VJL+@)CHEahnAUJ`H6GvNx$o)kfofTe_70PsG>=qn@<(Rok zoE*zD3!dg{2)UDo*cH=}C(4bd=*HCdDvDLBJrsHgmx| ziGwo~YZka$GZ;N$v@DYd(WpqOmCeyZQ zLZCXxjt9pra^+iYbMC9Z>%-qa$RZnxW)#O49!v?A4xyZTszhYei^_+};E03{(i z1RSU9T8FIbj3&l;d0X$$Ju4|dvFk7ofVfX7c{%bNE@;4S z2Y}tMriiR=f*pT9LuZieU6PbKbcZegSRl#f;+sqJYuw)e^xeSnl0g!SfXgn#B=nYf zm>MfV$kU-9;gKuX;!Ss@)$rRl*OH|9(6(_+ttBS_4#~t+Eh}7aQ`Y=Aviq)znL?y3 zK|dG;0XZQr@|dMP3fZB5XfL&;3^H9!U}T)ivu5<{(5o%ThgO?Rbs&x`{)jG>gtRz| z@P;#+b5-0Q4;v-zsWb9`6BUwVZ8nU3FO+kj9IY;=y5vck^TWX3NJ{|IRlu@b_C#8E z@^s35_RWt!EWw;DnVK>I>yC9j58!N$TS67!nUd+hPV7w^@-MZsiZkyd(G z^?4W`;#JklWt^gri)bH#F7Z`r0d|Kd$g$odN26`|vEX*S zHrXyIE#t=aW&SD=p6t>5#NFDo-5a?wI5IWa8&Ux{m+QoP=nHyZ)x|~BAECf%5tmS? zYaRha4ctTfRSVY1$gbz|khp={swjPk8oodVDq4I3wy)8C3q&8I97gUKv1c=i z_!O6ah62e6d8D54h(KtF+b9roVgf}C1-{l5hX@-r{Q4Pm3~PNB`YDPSKZ_zxJ9{og zh&!+=(1KGw5#zeJi$357#h@dIw*|C60MUo=!$Z$NxOfPYtCsi@7veRc zWif{~l_VvO0gNS&;W-9yUI7^GRVwoMsAMr#(MLlTX!Ulv-v8BAYb8M_Yb@Sugt5oe zXQ6ZD%sI`i`W^MfsPg2P3;1mrE8@s-c;Su0cg74;Ew G^!k4v%**Zo diff --git a/kernel_crawler/__pycache__/centos.cpython-310.pyc b/kernel_crawler/__pycache__/centos.cpython-310.pyc deleted file mode 100644 index d6f41fce6d79be79df4ecdbdcfafbe69e8f1363d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1422 zcmZ`(ON$#v5bnolW+ZDjekgVf0UI9-6Y$Q(XcuFG@tWiivH_bA(50E3Zmq^U(u}J| zvMuC8@PZ+~Vs+gAkzdhQpM1_KKBcN9vFjw;(A727Rn=d;rrO%-FkIjL{_EkN0b?KO zfnS8q;BaD&p<~y#Ck8cMP8-9RdAfvP#u~Fhtr}&X?kp6VoH@m_PWH++)SFv z?$mExG}~3xq{j{A#6&}rHGNDLcr%?3h;AJ~v< zq2);%OB(1FmGlD(u%MX!$aVL9wtg-EDsbVOy}s%{%;}xYqS8^QblN|VEV$;!0zxg` z@rIppYM2GT#dPZyYs6BnW#NBh(FHxZ){FGH-nlIHwr%tmEag$_ooHH3xM1(aX|xav zzN9u~h`)2-WCmjwWf|n7{=@m*QPb3q(sb1UqK<7ut4#@KXz ze{EA1lj$2<4I4Cr$xc36+dPR;rj3jZ%qpfi>mO1%%i|E1(ufpsiG1X4Wco-fQp;8j}Ni9ZAds-V;6E zlel^C_s#bF>x<>v**uaHvdto%dSf5ArFNzIPz{%2HGttNONjs~yZh=H6gYoB70rG% z85T#0gxe&Kz?23v-~w%G`|qK+(Ns!%!($9H_m+3)Me^C@^SfUF{U7Co1I3txl&eWL zHcGjUQsYWbOX9mqy_#m_>c-~?BnZNU~*1wqq*{BQaLJw!9tg9g<7V ze(=t$B#vfV!&DIgMNl-zQ_+WIfuhw*ANvOs{VV37FDVKLXn{U9ZX)-0&g_z0N)Fmx z%$@r+ckVs+oZtDKJKa*r)$lua@y6tgEce`%mZUniuQ+M!;DXk#icIz%bZwG~Tv0iMK>Lo7cf^vJRKGm+& zE2HtJ>(jn9obiwCiTZJWdh>*IWd4_;KKq^~U0Haj$$~$(Yt&DoT$Cl0OTN2#3N@!u zQQ3Z`X@T=$gdx|TkjOBaCH-Es(WKWM{?YJn;R=gL ze622|1|bSeO;2C^ai`gB_X0oim%Zkex9;C)h0*oPT z(Nx~O07dDqF7$R3O>d6oNy~9GQ*g~Q%h}hDU!&W>a-{xHgH9OI#NG5QX-WH`wkztk zpBp+dhyBcR&Oy#adtSQSUO>Jei<~bae^yS(%0q!CODIjt8Ez@dWAZpgo{}fzEbbMw z&B>G8HZ5O}r{$T4qCO)_5bKL+>6*WK6T2CSnr+HF_#;OQ}w?8{wEqez?8>a?Op;{}vhkhX9| zJUcO;g>k1QsmAz6`TdE}UL@KkU1AQCQpZrCjw5+26m8Pc7v~xcC}X4XO|*qHOi{!q zj=q(9G^us`%OgV&YBABJeo7ly zi9Xb&v99gu13NMjdsm>vJOz15>y#$#zcCUcu`cnr+criqNfp%hx9#{CN*0;-p8lym z$PJt%C*8Z6dM|NMU)U1^=eE`r~-0JAJ?5WVNdexB`hSjxJ;8y_{T_mz~w&+o`E&3)vn5QdyO?_#)2htyffS&@RM7m<7^s&~+3;$?ow-D3Sh zwdN?=qSOW=sa7vFfJmtkB5}jWQ&D)Y6>X$e*b7>y`p66V{&l6gDzzB!YWdV?24QOB zY2Rztr<#4Gd;sBSEvYkJRB8sTj-Q$|&3X=C#!E1^{GHUgOT!*jx>DHmI^%J|Z()+* zH6*5G3TOXc6t->)n8EK&OBb%L3td#u>I(DoBJL z_vaU0eRKYk@67-3&Zi4}du@D=U-|6(WX-rG>;GEq(}nX3uhk}ufeeG-fsNq@$dCmN zMIxZECldihN3N);lTuH_UDQdK3Exe+_s&QQcUWu9UW(0mxw;;gGQbY!{ri#f;$k-K zu-jKnzivg{ZV-+uw-}uPF|!|Dzqxe%Mq~NvJ0D(s?>g=)E2zN+`krcTqz-Kh?RiaC z-^MIc16y@;Yo=RaV+8Y~?Y)VvAz@ZgcZL3yt?N&1L;t;P>c68a{>G%hpLzbdq9SpH zGe~}+tqCdM1RO$+UGi?m(gePdbS+$jWZ`Kf>yYoA{6IX?h5%v67*hQ!eH%WT7gH1J zyXXZcsV{s-y@4#CkJg(lmEqRC6u@1Q2fgwsS{V3FYw-^zmjX+Ue04+|;lib$+w_9) z3NqtCvKNoUYC^1G_OkEOYx#|{&mXKle*26bf9wD9_9aDl-?Wj8e-l{zkEl&Rsrs6- zfyY(?x`lix(KiIpnMIZWfu%U50V(ao23}tp>gI#psr(1XZMg}>4r`ZDhkqb=i zwXSM=Q7xbCd<}JVr?<7vlqfA8ejv31|E?dTR?};4_*pOBK~f!ck&;Pgt$v8Q&u}qv zIXZ!sEoP7co@@dz7vI)d)>!_Oj&KMk1?-R&f|4h)0YQ2iI9`Y%xCdIrjzbO4mb2q^PQaXE7g z8@>mA9?q*X5L;ZyD#tG5!C>62)kdH&kMi6k#D||e7~Hw+qG9ytc)SOLXP}s@l%e<} zG7QBIK`}3F5{Sp3_&sz?#nxkrq%s(zyj;CUEa zE2JhUN2t!x`*Psnf!FlakEmpOJt8Hk9dy^%eJ~v9ulCnLh9Z^fy0nlKk zOctQX^3tgz;z|V`QGVcq=GRLs?NNjkj*BA+)(crHOFmmK8Fc0oCQOHx^$<-ViOU3Z zz}X@#<37V_1z=+8XJJf^;iA?R4){?8{D-a?;}4k_J1TM<;~$|5nHZzXpCS_<2V+Oj zfD0Hd5j-3!p=Mo&f{PKaHa5+jYR0Tv0I83GL*Uf{>>Fk=z!*cD9P>a2%g?dVmcY~v z7%siRB%Y7)5#ob|BO=I%PjPX1M3NWo$MK=kdc4AfS6#t8L23yV4SDsnv@7b_j5ztxZcDrH!;PRJ_x#Q3Kd(^ zg|PPk=~n+9{h5ytF)h;;JuRD{rC+(&o=S##)o0asa*zq!D_}&rcvAvw7X?%i0AGSb zMhxjd9sCi{P%T0zt_2Q_YOPHKH4-?r=|uTWSDL>x|MDZkOW@{*AOj+y;0hNUzqVNz z784uW1ZS__24W#B8kQ)`;ydDP3eMs){H{FSRZc8~Y4#ZRhEs_hRdx}=4X3f?Gcx7Ro$XQhMYDB}j_@&h-P3O4e8|Lq*AQCAd0h*WdsrX+Kc>Kqo-B;kNtm0h z9?oodVh>o1bcJ zD@$>4tPvR&j?s#&higv0O$Q-3xvB0Gh@C2;Bmc1h7U8XeMVNp#KP{8CHNuVVJw7(# zpe?o@3>F^@I9_`~q&9x#>xQcWjj9g@7plFxmjTM>mbwQo1jRvfzax)yI=SlODZkoN z{SIb$fu0Cy*6+p{Ld}mLX(gWX)_}gx_N>jS_c1T^V@e1&)rXYaKmv9Yw3=IK0S7|s z$`8X;PXRu6I6Q>wQHl^HHKT4LOizpgk(<|VT)%qjdgJHI*RHNyPc0BKgdx_t>h^o; z1M2T08kPQ<*AF6w-qh~*5FPvKD!rJQ9AZnL^a{$g!Xaid-l_&S6HBX`ASctHYJaHs}=kk~t4x{$%n|Ae|FjV+960-Q_GZWQH7ado;`B940apTI!S9MnH;VEU(qQfv?V5sbD=-L z;ix+TH>U46Amzo>j;Rv8rcB8cB}5q%g>Y%18F*oc!;p=x%m7+feww3*4ECcIspBdo z6v`bi)J!jUX}m~UpK4QbuoliSsi63h2vK+*iK98XW9sBOUxjO>ST={t07pLsS6Xn+ z=~J#Ke_PR0O7&K-}&%jD+i zx`m5R60;-Yr4^PDj+;f}khIvlIhO*jy(+ycPv{xKCR5{ZG@I=Hx#MBll|4{1Q-=;a z>7+X?uvg904ChMy9&mxSe58RYLOwO=EJF2>1tH8g8mtJ7(Uf@G=#hWN71H+xn~e!P zN5nJx(%YZV1Unrsob83w7A_7_$gD!}+tn#lA6Y#sGz%lJpM ziALww{0lO4^qB=`5!0sx==jq>Y(jqOd+@*3(2PKmcHzYkN>fyUXaS0&{W(H% z^!Wx3LvwT(N`bkw;KQzgRyh)0TD_Urh+@XMJgFJ^XLv%Fyf~tom*GLh_A!bN?wmji zd^Kj`FqJDHm!Csm9~B`Mc=}y}4LSz>fC-qpRL|Ya811`p@g3MeO=?K;!gjlv$+e*cq3y2*g=jZFM}gGykPntd$trRSu%cHi0ygS-K)wayZW?mFjgW zzDvoQl-#3)%n_t-4!6{l@CB(wY8KY>6qXWTgzBf%@m20Y6{!JjJhIDao=*bl(f>k6 z4&4c!iCdQe-~`#n0djx@z_$Kd$C*W&DdJ-X+OR*ugxZlVkfxFWhh%w=pmwzX0}+9@ z?Gs^R4~>bwX+m4D^J4(thY-YdLqvvz4P6>@Peg^yVpQ5JOB=lI z647hy^y>pFF5yUg3g=-JnS(YU0;azJx9YgyVPbQ7XL-!2I^v#osJ}DWfBWL7|Hiog z_QmILv~Yr>&EW0F_O$3YzPJ&Ycb8(Db}C$)5EK~^u>|r`>{dB?d;#%-7;0n)bdU$S zhg_KDu!vC(CKT#eAdB{$yh)$rq8`euL+4P*7=xouil!!R`~$Xt3%XhCx)4%3XqC^v$*Je zg5#_6Z*3@l?ea?t3yUw+?ksXCF5JS=HxV@OJN3tyLF{CrqTqX+8ygcGDS3n1iOg<( zMvM3+lC+|{7C;w-4_|M*sE-c@&2A@x!75V2)Lm2EHlPddNv-=mFWOLd=wUjw%9ve) za(_YzZHe+IS)=50N^T;-xp7xTK7wXG!w;FU)oixJdY-4ssBdu=hsoWh8qmWmYxcq{ zaFTWE9!O6ok-vdT4q;(}MKCGTF=2igyV7xXR)*>6U+MaO?zd;3R*LcQ=WRy@@Xptg zjciGOLDMLW{7usbb{uwt_i5s+72C-D8!q-fj#k#4oMTjG6xG*Wpl_*b{iv_-Eme_1 zt1cxhO_Fe$qZ0;*UHyzoW^lh9@Rl$xW+eHA$dg{3y zdpmD@Hv`T*I@RqSf2~RLh){3v=|(1q_o=b8to$h2S*8!zaK=RE)BOHd;*4OsHwjMp zgC~P+YG+=bS9}OX_jy(7T*{7?u3#s%@FgTg9pnn<5rm>ey{K2RFEx5mRE!x@`?J{( F{uj6YzZ?Jn diff --git a/kernel_crawler/__pycache__/debian.cpython-310.pyc b/kernel_crawler/__pycache__/debian.cpython-310.pyc deleted file mode 100644 index c3ae817409da08bba12e9a9a88175a028b5d2022..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1852 zcmZuy&5s*36t`zQA4w+JWeZE83o4gF4kUmO5*0#7UC{%u2N0?l6^$liCp(+TOlmt_ zb~QPmU8yI;zmObz&4HGAv7Gy?aN|APec47x;m$Sl+UAwZFagY0#B=+tT9`Nvz@KDeb|H6#} z&VC^M)-wvs`qVHf<`t|i7o%seMUFB&**2tI824bP1DH6i$zxh|xznsQS%K^|jR<*_wmZC^9nVuH#3F-pZ!Tij0(1K)~7h1>w)pTGwpb|mNU|eg6 zB{uaDOoGIeli1;{CuB^y!`;gkAlSCpQNYk57kf_#Be4(mbxhP)^Ia}wC5@NP_-CJH zC~(^lEO4R)O??7{CMyb{QSGcyTjqk z3Q_~XCt}b*FsS5YWB%~`*5;lP*+S;}Y_P!v@AQ3%+Qco;xl!0+Vm!5&3n@ErX2K-N z%UmZ(-!)8$Vr*C{vttu%1V5#wl_Xh_DwQPGSF#1~WDlkYhC=s6PDI&1`|SLUtLO~2 ztPQz_5X!|@Hl+RlA}32{LY6M9fX0ff$kxMz-FyI;GUyjBC1vH_-i+FAA11i1GeI?L9wU9;6r-O{@k1Wv-bZMogAF?qm0yWc|eLU`Yvr`a@}2nG0g zMLH6NVGxSK^l~j`i8`)MlkuX=`mdRG0Z$SPR%N`b$g`>GK!{JIP->J)9er+;xi+~AVP@c6i zZri1i-9`E(gPm6&2T~LwRl-DE%)tOrX1P#J#9_49urt@}Mg8A|BlRv!jA9SzO&B3< z(+Ilr_rbq!2m7#p{?4_?yowrf$uLj0%>x35jZZ9jHH8vK*A(KyT{2Bq5G_#t*xI$R z@SF~f&zm9#L7?VEt{eaD9LgN<`zF`-s&br9`kn<<-T|gi|HNFyYzlV64A)+@^#*vK zTLx1|(9CjpA6_b~VLjTT=eMsJ^*`79RAQ3C@;WX7rhA#rM3R_xlFTZ;D3Fel@>ySOXVv7N0G!9z~LeQ<<+1<7Er5{?!77iPd@-2LI n3n#44@OOZqg;I*ouK@7USY532l6%IW4_W{bIPG#AceN?jn=6Hg}&ttGf!`x-u(WfHM_gp4DHX~e?I*~F!qiX z*Dc1y_vm(tgJO!;tl>FtL@qc}LPf7w9{s>ntOl=`8fgA3zKHUHN={fhe9v)HDtrvO zGd_Z@DJgPgG#{ZKqT9PTthOCnvo~DvOMbzXSPY)B6BaWk&i6Q@-!Du>C+r1Fxun zjYRSR@%7_J;jKSbbPS*T_U(Z@xL2Z%AB`GF&_g4~I9Vgzg@8nfm)sF+th?s>sNFtt zzKlXF*~Er@>`c5AE^_gjU5Gb>wOI2@QXjQRN5?)Ypz*_^fO39tZ}s)uxz66tvL-ZT zr#+{sfwK*x40Npvt8KR0d5GN4-5iz6R&i!9boc-FFFRGB-Wd?IGzpOX)=yp2a|nR_ zz%Dxtu!|{vBxTiBPD;E4vDNj=$JDJKZhCyn{g#wvU05q+xB#$&``{K1q?V;&#ACjP zD#m}^iC4F;gP&fNFNyM%(VQAQL=OdsEYZId$W0vkq`xw$020i9b_5mDcwD(d)6S~1 zG=e>f4>!1ctaNAl?&wB^7X2+}qzW4sc)&93yiISUnq$72eA4KDB&Qs1U}~BWrM76a zlzv;v#;9dY^Rbk_E{nQ<5{SU(nD2Ktz)D@$SI|OR`}nlSN9>8Cr3*M>H~7u1pvN)3 njD3Y4AqY6Jv6B4c+^52t=zUzB>Kz|#dM!##{Bm1BECkKr6M4s-mirE3{hgjFU~)yUy$y zf@2G*i3EM5DZYmhmSCyX9KTtUq0Lj?v70utge{!Z>9|d|<25~IePsz(csrKxq`Pf5 zD`;1QkG3y8w0*%ISoN8gSk+ptGwrOFo%AI`tIl=x2ieVwq|DV5?cGg^QsprXJX~xv z7V#8UVWdT1np`l!cdVu@W`rZ$9oBS&Co1T1g^%s3`mOtERK}4y*dXSZzgMVE&k~-3 z95Y}8E5vypSTES}3#R>6RLHQWQlNASnYPsoM!m4qF}z-V8LZ|V8MLL4Dv9&pr(CTE zU6r@we5;qF=ndAT%48bGDterv*&f4bbf0KH43jJ=!;n@i2t}3kFC4+!*c+y;Dd-d^ z7mtB{6P40hV56(MqyLtN&@;(>yP<(~Zj2v2(JhBaKtErx3WLtDUtx$?A?G zf9lF3sfr}ebVbQj!kNuEEPt@Dapc&{()iknEW>UTuSY8~ER~ehYeI9H`OIN81}|Mc z>ZRAG#YC;WLUnqKufTc>UVukb1y$w4)R{s1I+#ir;z(h53PVhUJk~#dbnnS1&{`d* z#XO2F`6Uc>H4Hns=%rMj4a1FIl#aisIokXznR8@_P=^d1TM<-(SCH{7pH=PIis_Bf zF;$2TREh<YpZtH< z+6F^QR)VwJd;~r|w{|&%1(B({%i4}q2V1BPwm2M2$`o>p3CaajRuImIGeZc%8uFJm z{Eh$4H#nBz{l;opc8i-quoVv*6ACsaM4wNSthd?7WEpHl!}(sJ0;D;MHH)B7UOQKv zs6-EMeA2AMt5Jqbh9)?XidPR&wt6dtWW{->yYLR+7@}OT`q!s?xSz(2TWKCgX|aIH z-n6=-{iUz(EHB^t_JMYb9#T(T#8QSMb$iUsYv|CGj)_PC7&BoQr%_Raq56=<8paT* z$R}gQAYV?iGpv8+%}}NyM^W34+#(vKHG(sZitrKNMFI`@nvIA#BX=AtXox-XNNa}N z#Fh(t#~*NtES&Ew_pbyb^Fb>YPl6!&Im^pyi>peuZ(nXSg3I-XfoUBHFDar4?|oEE zc;6ke0ULoEyG%jVMvQh!Z2q_BT>Pv5(R3J!ILbnWo9~U3sAylwjh-yZLfcR`T~kqly9lg=C`Dzj zz&Rk#IESK?(ABoeI|MRY(e5S*^hATl>g*C?EG6=I4B3D;nme#4 zsK>Idw8s}V;=YK_`ovw8;70oTq#>4R3VArVTF6gh zp&)so%g02UxO$xXo1K2YQ^MSnfU>0yNGU<*?-wDNC_ TZ@vXm@4bEaEUWPvKYijq_Huc= diff --git a/kernel_crawler/__pycache__/oracle.cpython-310.pyc b/kernel_crawler/__pycache__/oracle.cpython-310.pyc deleted file mode 100644 index cb9042845493022c4e4d01d99c278a57bf3d4d7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3899 zcmcgv-EY%Y6u;MY94AeoYgs{K)54~$WGnHYT^bN$Oa!s15TsUUQl!apeQ(=Prw-Q+ zqgMAYwGz+!56WZyCBN=z&wXRkv~#X=aY8@VfV3O=_}=4t&OM*M*umsvk-)h8`;)Z> z%>Km1@GxL;7p{;2VT4hibZCoGoNF-GS{fw}2-BIdPnf~Ar~01WGJum~CU8tnpXPvL z0w>Qb;8+7r9ykS71Ws|lvDm~asg(Yra8!jRhTz=*?z-r9JYbCs9aeYY3NHcSq(vEN zXeA@bXX1 z^3}O5F1EQpH(wsit}*_6WZmOiLr-Bf*ik9}&}@`l;cb?`E6=^C*PPnoT&0h`>7E~o z92_Xg>s$6_(BbwvXI!+s!2UT9TXt6jYy8?;uk8cZPOWe};r{BwGLUXnyF1B+!IQ4* zZMhrVdDi1%$3%xTAchuy@pcHR$4N9Rxx{iDblY)~qT_S|*7I>*azLl+51veTz8i)e z9&H9pSjvOU7m-IE#uD8N(GZJh^cm?E!*Ddb*h6*ctOX;g0)jq9=5l8FYLz;Yqsx3JdEtu)Q%U%5PS5v zvGU`+Wjnq;hR~Dy%PWg^Tpv?pK^Ym>#*yi#|h0?}ryz{6=EX?gFG1M-SA0IZ;<^yY|&a&;9&E&u_i$S)?k zxl8xxAKEi*HHD6T+E;xo(W>7hdQbRo$G&*mZ-)_-XZH?zaEQ7uka&L7a@^y{*jI1+ zf#>?+9hfLVI0dZ`X#ElWndnDK|1^y+ouuExSg3(>ga8>EtdEEsP|WKqa1emFl@BD) z)gVD=cyhiW+RwRIZb$cm?e+FXUzdqX@`C%^4S8ZP-W`Hg2}j9H6gW%@Zb7y^DftPg zlffv__{ylU$Lxj(VD9^tD8NnNpQe~VBIAOA6%{1cfh3cI^6|Lus}ho6k7uR;iRFj# zA!@RSMb8zi+>|cM(gW7WP#`HLft|tK(g|>f)rtWP9|CzFxMTSt=rbW9);Q3&q|iZ} z2Rp_9za{$}z;DS$@T-l3m#N6N; zkQ;)aB_X3!MU~R@%ziv(5&7tZ0uy!AF<>GVaI=)iG-cR;`NF7W*ie+%fc&#!L;VD7 z&_Rd91}ue>uweti*J#E!&-^w}x7PrCgK)Iv&)y{ULHC~CBsVcA`0tBNV*I0;W8mw% zHOCUDJH0u+#~s7Xq0amNn&Up2Fx(ub9#36;=f}hVl4mw diff --git a/kernel_crawler/__pycache__/photon_os.cpython-310.pyc b/kernel_crawler/__pycache__/photon_os.cpython-310.pyc deleted file mode 100644 index 1c951de6e6568767363c31537781a103cbf5bba7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1765 zcmZ`)QBNC35Z>K8pAQE^N}{CcORcDs+yi!{BGgs{wSp)`Y3&HoRyws>9k**ZeCNCD zo(ULus6a|z`p|!n_KiQ#AG5E0>R*V|rZa0>KuA~G@!st0?94acj`MoGMqoVt`Md2u z9YX%XkITb_k1t_r6oLqvl8lCw;+nylg^ZHNL^#4dBf^z*&pCBM7c>>&fyR?;uL2rR zRJTar|4qS7K#ik{41QcCi#!I^l>u>#?tC8>l7v){kV!{S!OqAj4PD`YFW1aH-ObCq z-_e`kMJHvh4rBB`8Mwx|22*1qg2Fl09&S8%(2p|Nc-UA-lm6gfq0!lFSj{&ZPachx zi}OP6%XEGrXnfUPA8ofg&l)3>d8rRz>)a+2r&?9OzZI_^ws!MOwz^VCmBe}Lhg|hq zh03?(;`Sg(LEGv{)t4!cRrDf-&%)-xbKNWs&F%4K5yib|NAl+bsSZ6%fq`(@aN&B| z&3Bz?2NmOUj(KrzYMf`e7^JwK=HN9-$2<G}1bgvAyq{k;)gkE48GGJ;3ZUDug5K$>LS}cJDlvuq7J8BlhWPKA&y@St|`SMbX zKu(4Q6+V!3`aXzbDrk=>Pp}hOl9C>iQ}&AOfc|%&x*!mq(>6||GEzD zzcFkZI(o3!;w$lgA$w#U-ii(O${{qyBHx0kKL!Drk)LLNgltb(3Hj~OV|vWM0Tc9B z=al}&o-=$l!_Rlivd~|&T4QGF=6?1fQnDH6*_gtuqy3Zd@<^R<_~J*=Nel3y`-Un* zqrkDOFNn&=WPELK0j1g1fF z#B;oVed@jO-V7Jt0uIfAG0-2HD`_4_sa}P}#0RvXxu;)uo^{&1v&FxEw7Ip>X>Tc{ z!RS)E!YY~Cg(r;J7OO^G$NOh^?|<)%5$(yqH9n3tm^Sc|yaKER@Cxy5hkh~YXIns8 zG&ZyADgjWQB;{J(?P_|{TOfaB)ZbRI=>?x5>U2*Cu;*^u`*r?HbeJ;%P?p8GiyuJE2R;Yn}T?fIDdBEUSb^FXvj_>}cp zSZ|96>ycd#F<%fJ%sVo~e{JF1XYt~5oW^2qmc}X@mC0Z-O3SPmt);Ynyt$a%LD#QC zNY>+m!KRjQg!`2DV3F`~swVEXWS7TxUYQ%d za(Z7%b~la2jUNgLWhx*+x(>K%)0ph6MF%6(N)lbFBq1EAC5WAi#}1o)L>v@FCH762 zB%}UNCW(oXWLStvPUB9JJeu_L`ioj5U0o9M!|aGoRFpHaN|Oj##5=BCdvS8FV&hSA z{dsbc)WBT0r!r*W%dEUxj0V}pbMikWYnw)63M3_0ldj6GSi&j}$twpEFuq@hDt66c zouOG~o2iny>}zR)vagVW*sG&?9qQCeB(9N|`)h-XU}dAMOcDyL^*7)FkND2@Q%0{e z8`om4$VBMBND42JxJ=?@5_A3YcwWH=int~}L$<^ft(<|yQ3Oa^1p-gtvEcUs^@{D{ z9Xo4vlDTmK3DA%0V+UG?ys}6%*;FTwdpzXoH98LcM58RWdHtL?-w;BYvIX=8^FPQ=2$A(4>qTudmY0*r`+U2DY5C+XjyUs7Vpxf1y6- zDC}pV^#T&93ul#^D9?165Ro;7qGr+Z?1cF@8{89~5iLV>3(N|Gj7529UVU`wA)@8s*>yRqP+@N~{n2B5qvtzxT8rJao$gogBpYqqm=z*@;2J;guglzc zgDjV3DJ$hL(VN9%Ta@DkbpvJ_Kh3jr+bp2cZ78YrdS3xUPqYbiiJGS@L~L0wK55V< z(h^?={YhS8rz}k{8H;`?<5rzS%CiX@GmLMeYdm_H){Kk2j*w$H5^|Jg@-$TKX=I!x ziV{w*+J2Qght6Si=y~0LJa6aPEKR4Y>Y7@{Z*g!g3rTHVKuXU2te6r=6Hou2%%T2($AX9D8 z`DCh#(hTF@;=c_x1IUJL#QSY~k+^;G706M2iX56K#vgWDLrOUKq% zXoq(_MQd@?!>v4+loN$pSy8d8y(V8xP^@psw6vG4y(4N`5;E=I$DBL5T}=2%eaU}H W6;acr-eI8w2c2#!47$PP<^KTlVhnx& diff --git a/kernel_crawler/__pycache__/rpm.cpython-310.pyc b/kernel_crawler/__pycache__/rpm.cpython-310.pyc deleted file mode 100644 index eba777dac7fd5366228b16ed725b3a7b09eb08a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5132 zcmai2%WoUU8Q+}iKiJ^EjzGVPT-8b z7lMNR?gp-~gdNSaia}9-bE4T+DJU_c?`V#>VD7%rK4Tej{@^+@=!gD7bf$$b%=p4+ zvpwSzL%3q*sUc=$acAL)8JtB=QOu%e7CnpTIVbpr;g`O_ZVjJh^Ig?!C$&beT~C^w zcGc&ZEfXbWW^E^}=o^-^SxR<0U@vURq}EdrNGs~M!a7ZJ^0M%919!ZMMj8PV22{WV ze`-Jlrm*m|q%CaWJT;!MzyVzluBHp1&*|+ld~x+#Nz6T^w;3@n&R}d291G&?Qx?pM zMF?^}n_KU;*0H;|nRL`aonzhcMKs+X7w4x~+2e zAaiTAX1kfxYUgQT+Ch=^Uz^xxdCXEL4UaFP>81^T>!3-E9c)(7-qkFcXH3lzP5aB6 zGoZ3UtrjP$R=a?gZ)rV;^?xwEp5~~V_&UC95VVTc&kBgd7_gKL*`b-5J3Q5fBcuJ* z6!xF^p_N*~c^w<_3)TL`?Ih`bP^m=Cc5lBddb_eLMX%D5Nhrc3tkgTLR;S&6=M`+^ zSpB6}F?CzMnK}8Cing4Y(6!HkVmoZfxEt1GthBG1iX_a64b^Eu;%0j*v-i7UvhCZM zS&!n(O5}c$S#rOtGA1)K>eQ#zxj*AGFtZa27RVp$FS+mo*(%jbg&z4$=aiy zR0r?UhRG2u-d~#Bphk#2Bvsv>MdVhriYS|M8xTyvhE30efyHv-QC)i2i~pqJD+(Y zIb!er?bY>F@5@6iaQ|1{N7b9&%6QJJ-gWQJ`YB5+jn-K5z~TeWoJL2r!bEwH!#A}G z(btR;sj{Muf32};wJzuouN^Z`e8dC~7JR^ZVR4r&nA09GJ!m4_C{-M(^%`DIhTDJ- z4Fs4mFjGEczvqYcp#!yBsSTAEQfpwRh13~xW`K5v6okAQ{tG^Tf9>vVZ+-RSd+Qr( zpRam}3fsWK=3`kCvKx;zHdeCleYD}N6uqhI%fpwt?p4?BRA1^H*>-A`^2jb&MRguG zg^bI&O*jVIF`mk?R;{kCd!ODxR4DnV*Hkk0?rp49Kk-&5S}u8wDBOxKc>oXc zpQF`}tna^S+9?6NJI5=HwhjlHVmeJG-+Prt03;#h*4nm`jVT{LA?MUuUM~iAt>jwt zKRgo0FJy)IQPfQ2`$3`JX}4uP0W$Vf+)?TxoJuXB2?}yw)_aKz+=fi*+hG*>uJ-+) zK!{rto9Z3n;~{A0`t{W;O%hBjxf;~n(1VnV%Jm<`D`M*m=m-XM6 zgqw*`6M#5@GPHa`>5d6@0foUKGW7sRBlwU5anPUg3*_`>wSSKGpmPinEm7WYMg8lQ z3cY=hcjYwkJh+h@bmi40)H$tC9YFAv_Mi&@^)@JUP^t}_e8ylF zrihxcE`O%MVxEwn_{1hv6RQ{(Q z03OVQr6zP^p%Of6842GpcdUcA@@g=#2^JVeIH(3Uj6EYM4BVmd=gWt7Y7b^oYsdf| z_Mk{ym~l3>cS^|i{HF2n+@X^?0G-02oASY2T1e)f7(+fd1I;g_?gijJGakKvAGMQ( z-xCuv0R4Yq#Or(bLccF)R`ls&#XqYkZ)lZfE`_j+lQ=8N{krT@FvQuydfvM_?#gBm z0(H5GJeJMmWhvM*H<7I_@LC3oRfN8{i`R~VDQ}@Kv-cE2A+sA%FWy!@*32wIh^!dP zM94U5n=Qo zQhw~9S{A*)614cDF=PUWsBWZt1GoAy8f4bHS|d2-u-XaT=wjQw5{0cz5ncZ7BDT0CVXGQXsLI?43Uo}4{DPLL7C7tuCu zZ4{aa5{_!TC-SdlBL%V@WNgOyrx- zS>-vq9^n6pr0YAGE88O8YbM)({3KL~rt`2N9MCbjNEfeAX2OE>Gt>x$Ww5n(kyI0zb~7~$rWMIx_G0a)Wjs|$aoJrRbmMIN;PZ0rlV_^X z|2lLkd*D0DW@+j@+216ur@2(h*3o#JCzGV$+^2?VnGOt#RD5n~YlgSj)H#pSNNdh- z(fv_yo{eQNkV2{?&VnzQ8U?w^`m)oXCMj5hRXRLY(M1Z|HS_#Z)!_#nSh@}1VTK!| zfg70p-g9Qpw%gO)kcw?HHsXO|uOGwGp8!g{fcaYDuVhZ=4BF(Bq=(M-=5FcQb}jL| zR@MX?QME4|IHkgUjplU1K&x2|qk=4GNlT|>OA77sPVR9qYp*zWhH_%F3~6+s@BVDd6Yr6~ D60R`D diff --git a/kernel_crawler/utils/__pycache__/__init__.cpython-310.pyc b/kernel_crawler/utils/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 5d76b487d3e587e3ff25c8df089585b77acd587e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmd1j<>g`k0%dcbBoO@=L?8o3AjbiSi&=m~3PUi1CZpd6-gsx`%~f4^aFID`}jT?C_$zi!c$MZptz^oR%+#Z5L{BJr~9r$1a3* zeI2JpOlC??jE(KwxKQNWEK+;vf>Nea*Wn^jS)qk7u9c|Viri|?#xWm}IyTqR1?Vq+ z5#2+_pSRJa%0x61T`s+b=Z zOV`5cCK$Pm0nH;+9SETVJ(O-OO{)6{|JP*S;2o5@$tQTQIO<#9V)CARe!8M%%R)tO z;fzph_y{Lr$?^cm3I|(;6Aw4a7$5~;Q1FUNxQ)7{R z`}igig-umnmop4pfL?5)jE$X$n?!f94#)h-H)pH%Jl6FTXQ{?}YW4(?nrDbSDe~+= zAHr|+KA?IZeZx?DX4=1G?Rjozu=61+l(xrOEA86TIJxqsscWhKdyuqFUuO)Yp+tfK22_C%8|u=bf~9J5E<{aom2***sv{o)V?T%` zE1%Gf1?(WCF8Ji~)ocq8aF zBE?UCCU>9xj(vN|uxhU1jqBdk7)IcMQ{|BYIcsRbBj=W|(Zf}vaI^kZPghOMB5SZZ zymgM^uyA-!WND)+m2ZGr{O8voc(Ex4Gc-tXWP`D#d9WZGVm~b6gtNgMDZ^wE(R7(G zEnJ-B!J<6BI9rreJDtvP5|$2gX?QC;(5l17SNfawnf^N!Nd?JXq*;T~EP0Y^2uOdw tAZw@&YNebf$(|)aB1IjBVNcgWHQ6bvKd5W{>(rVe!GS2|BH=@)^#gP1R%-wN From 364867d289eefa774c854158f70168a66932df73 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 13 Apr 2022 10:07:20 +0200 Subject: [PATCH 089/259] update: improved click interface for crawl program. Signed-off-by: Federico Di Pierro --- .gitignore | 1 + __init__.py | 38 +++++++++++++++++++------------------- 2 files changed, 20 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index dffca67..29eaf19 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ kernel_crawler.egg-info/ __pycache__/ +.idea/ diff --git a/__init__.py b/__init__.py index 414418c..12a8d30 100644 --- a/__init__.py +++ b/__init__.py @@ -28,26 +28,26 @@ def default(self, obj): return json.JSONEncoder.default(self, obj) @click.command() -@click.argument('distro', type=click.Choice(sorted(DISTROS.keys()) + ['*'])) -@click.argument('version', required=False, default='') -@click.argument('arch', required=False, default='') -@click.argument('json_fmt', required=False, default=False) -@click.argument('driverkit_config', required=False, default=False) -def crawl(distro, version='', arch='', json_fmt=False, driverkit_config=False): - res = crawl_kernels(distro, version, arch, driverkit_config) - if not json_fmt: - for dist, ks in res.items(): - print('=== {} ==='.format(dist)) - for release, packages in ks.items(): - print('=== {} ==='.format(release)) - for pkg in packages: - print(' {}'.format(pkg)) - else: - if driverkit_config: - json_object = json.dumps(res, indent=2, default=vars) - else: +@click.option('--distro', type=click.Choice(sorted(DISTROS.keys()) + ['*'], case_sensitive=False)) +@click.option('--version', required=False, default='') +@click.option('--arch', required=False, default='') +@click.option('--out_fmt', required=False, type=click.Choice(['plain', 'json', 'driverkit'], case_sensitive=False), default='plain') +def crawl(distro, version='', arch='', out_fmt=0): + res = crawl_kernels(distro, version, arch, out_fmt == 'driverkit') + match out_fmt: + case 'plain': + for dist, ks in res.items(): + print('=== {} ==='.format(dist)) + for release, packages in ks.items(): + print('=== {} ==='.format(release)) + for pkg in packages: + print(' {}'.format(pkg)) + case 'json': json_object = json.dumps(res, indent=2, cls=SetEncoder) - print(json_object) + print(json_object) + case 'driverkit': + json_object = json.dumps(res, indent=2, default=vars) + print(json_object) cli.add_command(crawl, 'crawl') From bd62a33e12762abd863d8e82321933e2d9fefab5 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 13 Apr 2022 10:19:41 +0200 Subject: [PATCH 090/259] chore: use 'x86_64' and 'aarch64' naming by default. Ubuntu/debian/flatcar will fix it up for themselves. Updated github action. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 14 ++++++++------ __init__.py | 2 +- kernel_crawler/__init__.py | 7 ++----- kernel_crawler/amazonlinux.py | 8 ++------ kernel_crawler/centos.py | 4 +--- kernel_crawler/debian.py | 9 ++++++++- kernel_crawler/fedora.py | 4 +--- kernel_crawler/flatcar.py | 6 +++--- kernel_crawler/oracle.py | 12 +++--------- kernel_crawler/photon_os.py | 4 +--- kernel_crawler/ubuntu.py | 6 +++--- 11 files changed, 33 insertions(+), 43 deletions(-) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index 94998e5..343a801 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -7,31 +7,33 @@ on: jobs: crawler: runs-on: ubuntu-latest + defaults: + run: + working-directory: ./crawler steps: - name: Install deps run: | sudo apt-get update && sudo apt-get -y install bash gawk grep curl dpkg rpm2cpio git jq multipath-tools python3 python3-pip python3-lxml python3-requests python3-click sed fdisk wget docker - name: Checkout crawler - uses: actions/checkout@v2 + uses: actions/checkout@v2 with: - path: crawler + path: ./crawler - name: Setup py project run: | - cd "$GITHUB_WORKSPACE/crawler" && /usr/bin/pip install -e . + /usr/bin/pip install -e . - name: Run crawler for x86_64 run: | - cd "$GITHUB_WORKSPACE/crawler" && python __init__.py crawl '*' "" "" true > kernels/x86_64/list.json + python __init__.py crawl --distro=* --out_fmt=driverkit > kernels/x86_64/list.json - name: Run crawler for aarch64 run: | - cd "$GITHUB_WORKSPACE/crawler" && python __init__.py crawl '*' "" "arm" true > kernels/aarch64/list.json + python __init__.py crawl --distro=* --out_fmt=driverkit --arch=arm > kernels/aarch64/list.json - name: Push updated list run: | - cd "$GITHUB_WORKSPACE/crawler" git config user.name github-actions git config user.email github-actions@github.com git add kernels/x86_64/list.json kernels/aarch64/list.json diff --git a/__init__.py b/__init__.py index 12a8d30..7ea7547 100644 --- a/__init__.py +++ b/__init__.py @@ -30,7 +30,7 @@ def default(self, obj): @click.command() @click.option('--distro', type=click.Choice(sorted(DISTROS.keys()) + ['*'], case_sensitive=False)) @click.option('--version', required=False, default='') -@click.option('--arch', required=False, default='') +@click.option('--arch', required=False, type=click.Choice(['x86_64', 'aarch64'], case_sensitive=False), default='x86_64') @click.option('--out_fmt', required=False, type=click.Choice(['plain', 'json', 'driverkit'], case_sensitive=False), default='plain') def crawl(distro, version='', arch='', out_fmt=0): res = crawl_kernels(distro, version, arch, out_fmt == 'driverkit') diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 9d8b5c6..f934fae 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -32,15 +32,12 @@ def to_driverkit_config(d, res): dk_configs.append(d.to_driverkit_config(ver, deps)) return dk_configs -def crawl_kernels(distro, version='', arch='', to_driverkit=False): +def crawl_kernels(distro, version, arch, to_driverkit): ret = {} for distname, dist in DISTROS.items(): if distname == distro or distro == "*": - if arch: - d = dist(arch) - else: - d = dist() + d = dist(arch) res = d.get_package_tree(version) if to_driverkit: ret[distname] = to_driverkit_config(d, res) diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index 9e7c71a..1bfb639 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -27,9 +27,7 @@ class AmazonLinux1Mirror(repo.Distro): '2018.03/main', ] - def __init__(self, arch='x86_64'): - if arch=='arm': - arch='aarch64' + def __init__(self, arch): super(AmazonLinux1Mirror, self).__init__([], arch) def list_repos(self): @@ -52,9 +50,7 @@ class AmazonLinux2Mirror(repo.Distro): 'extras/kernel-5.10/latest', ] - def __init__(self, arch='x86_64'): - if arch=='arm': - arch='aarch64' + def __init__(self, arch): super(AmazonLinux2Mirror, self).__init__([], arch) def list_repos(self): diff --git a/kernel_crawler/centos.py b/kernel_crawler/centos.py index 0044d9d..2f06a2c 100644 --- a/kernel_crawler/centos.py +++ b/kernel_crawler/centos.py @@ -14,9 +14,7 @@ def v6_or_v7(ver): return ver.startswith('6') or ver.startswith('7') class CentosMirror(repo.Distro): - def __init__(self, arch='x86_64'): - if arch=='arm': - arch='aarch64' + def __init__(self, arch): mirrors = [ rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/' + arch + '/', v7_only), rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/' + arch + '/', v7_only), diff --git a/kernel_crawler/debian.py b/kernel_crawler/debian.py index 06f939c..52f1dbb 100644 --- a/kernel_crawler/debian.py +++ b/kernel_crawler/debian.py @@ -7,9 +7,16 @@ def repo_filter(dist): return 'stable' not in dist and 'testing' not in dist and not dist.startswith('Debian') +def fixup_deb_arch(arch): + match arch: + case 'x86_64': + return 'amd64' + case 'aarch64': + return 'arm64' class DebianMirror(repo.Distro): - def __init__(self, arch='amd64'): + def __init__(self, arch): + arch = fixup_deb_arch(arch) mirrors = [ deb.DebMirror('http://mirrors.edge.kernel.org/debian/', arch, repo_filter), deb.DebMirror('http://security.debian.org/', arch, repo_filter), diff --git a/kernel_crawler/fedora.py b/kernel_crawler/fedora.py index 3d22097..1400b60 100644 --- a/kernel_crawler/fedora.py +++ b/kernel_crawler/fedora.py @@ -9,9 +9,7 @@ def repo_filter(version): class FedoraMirror(repo.Distro): - def __init__(self, arch='x86_64'): - if arch=='arm': - arch='aarch64' + def __init__(self, arch): mirrors = [ rpm.RpmMirror('https://mirrors.kernel.org/fedora/releases/', 'Everything/' + arch + '/os/', repo_filter), rpm.RpmMirror('https://mirrors.kernel.org/fedora/updates/', 'Everything/' + arch + '/', repo_filter), diff --git a/kernel_crawler/flatcar.py b/kernel_crawler/flatcar.py index c36a755..cefebe2 100644 --- a/kernel_crawler/flatcar.py +++ b/kernel_crawler/flatcar.py @@ -4,6 +4,7 @@ from lxml import html from .repo import Repository, Distro +from .debian import fixup_deb_arch class FlatcarRepository(Repository): def __init__(self, base_url): @@ -23,9 +24,8 @@ def __str__(self): class FlatcarMirror(Distro): CHANNELS = ['stable', 'beta', 'alpha'] - def __init__(self, arch='amd64'): - if arch=='arm': - arch='arm64' + def __init__(self, arch): + arch = fixup_deb_arch(arch) mirrors = ['https://{c}.release.flatcar-linux.net/{a}-usr/'.format(c=channel, a=arch) for channel in self.CHANNELS] super(FlatcarMirror, self).__init__(mirrors, arch) diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index 5a9e85a..a2d460c 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -18,9 +18,7 @@ def repos(self): 'http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/' + self.arch + '/', ] - def __init__(self, arch='x86_64'): - if arch=='arm': - arch='aarch64' + def __init__(self, arch): super(Oracle6Mirror, self).__init__([], arch) def list_repos(self): @@ -41,9 +39,7 @@ def repos(self): 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/' + self.arch + '/', ] - def __init__(self, arch='x86_64'): - if arch=='arm': - arch='aarch64' + def __init__(self, arch): super(Oracle7Mirror, self).__init__([], arch) def list_repos(self): @@ -60,9 +56,7 @@ def repos(self): 'http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/' + self.arch + '/', ] - def __init__(self, arch='x86_64'): - if arch=='arm': - arch='aarch64' + def __init__(self, arch): super(Oracle8Mirror, self).__init__([], arch) def list_repos(self): diff --git a/kernel_crawler/photon_os.py b/kernel_crawler/photon_os.py index 369d37f..3f0b56c 100644 --- a/kernel_crawler/photon_os.py +++ b/kernel_crawler/photon_os.py @@ -17,9 +17,7 @@ class PhotonOsMirror(repo.Distro): ('4.0', '_updates'), ] - def __init__(self, arch='x86_64'): - if arch=='arm': - arch='aarch64' + def __init__(self, arch): super(PhotonOsMirror, self).__init__([], arch) def list_repos(self): diff --git a/kernel_crawler/ubuntu.py b/kernel_crawler/ubuntu.py index 22ad8a8..f06657f 100644 --- a/kernel_crawler/ubuntu.py +++ b/kernel_crawler/ubuntu.py @@ -1,10 +1,10 @@ from . import deb from . import repo +from .debian import fixup_deb_arch class UbuntuMirror(repo.Distro): - def __init__(self, arch='amd64'): - if arch=='arm': - arch='arm64' + def __init__(self, arch): + arch = fixup_deb_arch(arch) mirrors = [ deb.DebMirror('http://mirrors.edge.kernel.org/ubuntu/', arch), deb.DebMirror('http://security.ubuntu.com/ubuntu/', arch), From 7d9d3ebfa7c65f70d61c331e6ae227b2aecd2351 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 13 Apr 2022 11:38:57 +0200 Subject: [PATCH 091/259] fix: driverkit config for debian requires "-$arch" for kernelrelease. Signed-off-by: Federico Di Pierro --- kernel_crawler/debian.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kernel_crawler/debian.py b/kernel_crawler/debian.py index 52f1dbb..fa4c88c 100644 --- a/kernel_crawler/debian.py +++ b/kernel_crawler/debian.py @@ -44,5 +44,4 @@ def get_package_tree(self, version=''): return packages def to_driverkit_config(self, release, deps): - krel, kver = release.split("/") - return repo.DriverKitConfig(krel, "debian", kver) + return repo.DriverKitConfig(release + "-" + self.arch, "debian") From ad0ffdc5a0ba1ea53f86f945eb0703fd061f9efc Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Sun, 17 Apr 2022 21:17:07 +0200 Subject: [PATCH 092/259] update: checkout before installing deps to avoid failing CI. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index 343a801..dd3b525 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -11,15 +11,15 @@ jobs: run: working-directory: ./crawler steps: - - name: Install deps - run: | - sudo apt-get update && sudo apt-get -y install bash gawk grep curl dpkg rpm2cpio git jq multipath-tools python3 python3-pip python3-lxml python3-requests python3-click sed fdisk wget docker - - name: Checkout crawler uses: actions/checkout@v2 with: path: ./crawler + - name: Install deps + run: | + sudo apt-get update && sudo apt-get -y install bash gawk grep curl dpkg rpm2cpio git jq multipath-tools python3 python3-pip python3-lxml python3-requests python3-click sed fdisk wget docker + - name: Setup py project run: | /usr/bin/pip install -e . From 68f8ec059b859c496d5594cab1100a50bea63804 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 19 Apr 2022 09:30:03 +0200 Subject: [PATCH 093/259] update: updated github workflow to fix CI. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 13 ++++-------- __init__.py | 30 +++++++++++++-------------- kernel_crawler/debian.py | 9 ++++---- 3 files changed, 23 insertions(+), 29 deletions(-) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index dd3b525..3844f1e 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -1,20 +1,15 @@ name: Update list of kernels weekly on: - schedule: - - cron: '0 0 * * 0' # every sunday at midnight + schedule: + - cron: '0 0 * * 0' # every sunday at midnight jobs: crawler: runs-on: ubuntu-latest - defaults: - run: - working-directory: ./crawler steps: - name: Checkout crawler - uses: actions/checkout@v2 - with: - path: ./crawler + uses: actions/checkout@v3 - name: Install deps run: | @@ -30,7 +25,7 @@ jobs: - name: Run crawler for aarch64 run: | - python __init__.py crawl --distro=* --out_fmt=driverkit --arch=arm > kernels/aarch64/list.json + python __init__.py crawl --distro=* --out_fmt=driverkit --arch=aarch64 > kernels/aarch64/list.json - name: Push updated list run: | diff --git a/__init__.py b/__init__.py index 7ea7547..3b28fdc 100644 --- a/__init__.py +++ b/__init__.py @@ -32,22 +32,22 @@ def default(self, obj): @click.option('--version', required=False, default='') @click.option('--arch', required=False, type=click.Choice(['x86_64', 'aarch64'], case_sensitive=False), default='x86_64') @click.option('--out_fmt', required=False, type=click.Choice(['plain', 'json', 'driverkit'], case_sensitive=False), default='plain') -def crawl(distro, version='', arch='', out_fmt=0): +def crawl(distro, version='', arch='', out_fmt=''): res = crawl_kernels(distro, version, arch, out_fmt == 'driverkit') - match out_fmt: - case 'plain': - for dist, ks in res.items(): - print('=== {} ==='.format(dist)) - for release, packages in ks.items(): - print('=== {} ==='.format(release)) - for pkg in packages: - print(' {}'.format(pkg)) - case 'json': - json_object = json.dumps(res, indent=2, cls=SetEncoder) - print(json_object) - case 'driverkit': - json_object = json.dumps(res, indent=2, default=vars) - print(json_object) + out_fmt = str.lower(out_fmt) + if out_fmt == 'plain': + for dist, ks in res.items(): + print('=== {} ==='.format(dist)) + for release, packages in ks.items(): + print('=== {} ==='.format(release)) + for pkg in packages: + print(' {}'.format(pkg)) + elif out_fmt == 'json': + json_object = json.dumps(res, indent=2, cls=SetEncoder) + print(json_object) + elif out_fmt == 'driverkit': + json_object = json.dumps(res, indent=2, default=vars) + print(json_object) cli.add_command(crawl, 'crawl') diff --git a/kernel_crawler/debian.py b/kernel_crawler/debian.py index fa4c88c..effeea6 100644 --- a/kernel_crawler/debian.py +++ b/kernel_crawler/debian.py @@ -8,11 +8,10 @@ def repo_filter(dist): return 'stable' not in dist and 'testing' not in dist and not dist.startswith('Debian') def fixup_deb_arch(arch): - match arch: - case 'x86_64': - return 'amd64' - case 'aarch64': - return 'arm64' + if arch == 'x86_64': + return 'amd64' + elif arch == 'aarch64': + return 'arm64' class DebianMirror(repo.Distro): def __init__(self, arch): From bfbb7dd19a623a9202929e0a330816d7459ac858 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 19 Apr 2022 10:07:22 +0200 Subject: [PATCH 094/259] update: merged back some amazonlinux improvements from origin. Fixed flatcar importing repo. Signed-off-by: Federico Di Pierro --- kernel_crawler/__init__.py | 3 ++- kernel_crawler/amazonlinux.py | 28 +++++++++++++++++++++++++++- kernel_crawler/centos.py | 1 - kernel_crawler/debian.py | 1 - kernel_crawler/flatcar.py | 1 + kernel_crawler/oracle.py | 1 - kernel_crawler/photon_os.py | 1 - 7 files changed, 30 insertions(+), 6 deletions(-) diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index f934fae..7c3ad5b 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -1,4 +1,4 @@ -from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror +from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror from .centos import CentosMirror from .fedora import FedoraMirror from .oracle import Oracle6Mirror, Oracle7Mirror, Oracle8Mirror @@ -12,6 +12,7 @@ DISTROS = { 'AmazonLinux': AmazonLinux1Mirror, 'AmazonLinux2': AmazonLinux2Mirror, + 'AmazonLinux2022': AmazonLinux2022Mirror, 'CentOS': CentosMirror, 'Fedora': FedoraMirror, 'Oracle6': Oracle6Mirror, diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index 1bfb639..3a38b23 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -12,7 +12,8 @@ def get_al_repo(repo_root, repo_release, repo_arch = ''): repo_pointer = repo_root + repo_release + "/mirror.list" resp = get_url(repo_pointer) - return make_string(resp.splitlines()[0]).replace('$basearch', repo_arch) + '/' + # Some distributions have a trailing slash (like AmazonLinux2022), some don't. + return make_string(resp.splitlines()[0]).replace('$basearch', repo_arch).rstrip('/') + '/' class AmazonLinux1Mirror(repo.Distro): @@ -61,5 +62,30 @@ def list_repos(self): repo_urls.add(get_al_repo("http://amazonlinux.us-east-1.amazonaws.com/2/", r + '/' + self.arch)) return [rpm.RpmRepository(url) for url in sorted(repo_urls)] + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "amazonlinux2") + +class AmazonLinux2022Mirror(repo.Distro): + # This was obtained by running + # docker run -it --rm amazonlinux:2022 python3 -c 'import dnf, json; db = dnf.dnf.Base(); print(json.dumps(db.conf.substitutions, indent=2))' + AL2022_REPOS = [ + '2022.0.20220202', + '2022.0.20220315', + ] + + def __init__(self, arch): + super(AmazonLinux2022Mirror, self).__init__([], arch) + + def list_repos(self): + repo_urls = set() + with click.progressbar( + self.AL2022_REPOS, label='Checking repositories', file=sys.stderr, item_show_func=repo.to_s) as repos: + # This was obtained by running: + # cat /etc/yum.repos.d/amazonlinux.repo + # https://al2022-repos-$awsregion-9761ab97.s3.dualstack.$awsregion.$awsdomain/core/mirrors/$releasever/$basearch/mirror.list + for r in repos: + repo_urls.add(get_al_repo("https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/mirrors/", r + '/' + self.arch)) + return [rpm.RpmRepository(url) for url in sorted(repo_urls)] + def to_driverkit_config(self, release, deps): return repo.DriverKitConfig(release, "amazonlinux2") \ No newline at end of file diff --git a/kernel_crawler/centos.py b/kernel_crawler/centos.py index 2f06a2c..d2ae4d8 100644 --- a/kernel_crawler/centos.py +++ b/kernel_crawler/centos.py @@ -1,7 +1,6 @@ from . import repo from . import rpm - def v7_only(ver): return ver.startswith('7') diff --git a/kernel_crawler/debian.py b/kernel_crawler/debian.py index effeea6..0e086b1 100644 --- a/kernel_crawler/debian.py +++ b/kernel_crawler/debian.py @@ -3,7 +3,6 @@ import click import sys - def repo_filter(dist): return 'stable' not in dist and 'testing' not in dist and not dist.startswith('Debian') diff --git a/kernel_crawler/flatcar.py b/kernel_crawler/flatcar.py index cefebe2..892d6c5 100644 --- a/kernel_crawler/flatcar.py +++ b/kernel_crawler/flatcar.py @@ -3,6 +3,7 @@ import requests from lxml import html +from . import repo from .repo import Repository, Distro from .debian import fixup_deb_arch diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index a2d460c..2d0ba02 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -1,7 +1,6 @@ from . import repo from . import rpm - class OracleRepository(rpm.RpmRepository): @classmethod def kernel_package_query(cls): diff --git a/kernel_crawler/photon_os.py b/kernel_crawler/photon_os.py index 3f0b56c..f7fb806 100644 --- a/kernel_crawler/photon_os.py +++ b/kernel_crawler/photon_os.py @@ -1,7 +1,6 @@ from . import rpm from . import repo - class PhotonOsRepository(rpm.RpmRepository): @classmethod def kernel_package_query(cls): From b5039de4be3bd97b21b02b4c5a87a39c9c07a74d Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 19 Apr 2022 08:52:37 +0000 Subject: [PATCH 095/259] [CI] updated kernel json lists. --- kernels/aarch64/list.json | 15822 ++++++------ kernels/x86_64/list.json | 49659 ++++++++++++++---------------------- 2 files changed, 27077 insertions(+), 38404 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 51ddcc0..2055de0 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -1,7941 +1,7887 @@ { - "AmazonLinux": {}, - "AmazonLinux2": { - "4.14.152-127.182.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/3ff58e60282902afcb02f1f2d4261190781629b807dc6bba5ad72a85cba392b9/kernel-4.14.152-127.182.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" - ], - "4.14.181-142.260.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/085be1f91563524edb6f3193ff6c472e1d755eb57206b1eef017445120bdef22/kernel-4.14.181-142.260.amzn2.aarch64.rpm" - ], - "4.14.121-109.96.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/be7e277ee1de11f7b66d0854085593673c58ea7d4e10bfbb2e22cf3861e48bf8/kernel-4.14.121-109.96.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" - ], - "4.14.101-91.76.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/88d9539119db87902970e50748d3e6424d48e46afe3881fca3feeb2e33a6dde3/kernel-4.14.101-91.76.amzn2.aarch64.rpm" - ], - "4.14.165-133.209.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/22bc6eb5b155a7b0a21f739a7e5713fa1beab4f78107a6532a4fdea33204830e/kernel-4.14.165-133.209.amzn2.aarch64.rpm" - ], - "4.14.177-139.253.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d07f55b5a8555ffdb5b520bbea8359e7e5667b68a9b55ad0073c365f48be6548/kernel-4.14.177-139.253.amzn2.aarch64.rpm" - ], - "4.14.231-173.361.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1fc003dfef271ceb0a3c8ab0151f5e6d3b2baca30c1994bb1c7426a21779f5ad/kernel-4.14.231-173.361.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" - ], - "4.14.154-128.181.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/09e2fadd8c9a3f7b00135f8c9e105bdfbe354cbd73857d816e1467dcbc10f43e/kernel-4.14.154-128.181.amzn2.aarch64.rpm" - ], - "4.14.241-184.433.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4f5ce44b2c027fc5f3f53434d6eadc4bb3c37e2dc3e93f7d24c96914131cbeff/kernel-4.14.241-184.433.amzn2.aarch64.rpm" - ], - "4.14.209-160.339.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5f4a8c593cb185b1d03f7a42cfb4bb44eef350cfcb2d7f78e4ef57fc963214f8/kernel-4.14.209-160.339.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" - ], - "4.14.219-164.354.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/95cc215dcd067f28023eb29ec2b536cb26b3a9cdcdfef6a163d023837fca2cd7/kernel-4.14.219-164.354.amzn2.aarch64.rpm" - ], - "4.14.203-156.332.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/45657494a7c1c632bbdf5b13d99f4f87c08c12935ee6b05fad5224276152c5ff/kernel-4.14.203-156.332.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" - ], - "4.14.225-169.362.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9a0e9a24776228633d7a534179217ed9161d1ee3ac0c70b875fb2df659d100f7/kernel-4.14.225-169.362.amzn2.aarch64.rpm" - ], - "4.14.97-90.72.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2a95d844378e0ffb1a071348862ee0423faedeabf1559d9632bcaa7d39579535/kernel-4.14.97-90.72.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" - ], - "4.14.273-207.502.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/99a534a83aa0576d45625d9a579fb00ae914cca43aea4666a297a497f4fb7808/kernel-4.14.273-207.502.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" - ], - "4.14.232-176.381.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/710f09347b372154aa822600774700ce8ba8c517d634fdb1e3a3e2f26abba77f/kernel-4.14.232-176.381.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" - ], - "4.14.200-155.322.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b9799ea4f98550dbcf0f4d4b2f43efae9f9e2e99b1577ae8c37b38793310a6df/kernel-4.14.200-155.322.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" - ], - "4.14.232-177.418.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8ddbfb322250e1b781f2189d1d729d4bb390c98c4b18f8c99cd6a9b3aa81b808/kernel-4.14.232-177.418.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" - ], - "4.14.128-112.105.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bd4dff89bd177c77c34f48d571c8f34901e13f4a5c83ab82994da6ad4e3be33e/kernel-4.14.128-112.105.amzn2.aarch64.rpm" - ], - "4.14.158-129.185.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c111d0224dd743ad343f26465d93a5a817818d7d88521d8c05d539615dabe0ff/kernel-4.14.158-129.185.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" - ], - "4.14.219-161.340.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cb6178888004881d1be9213b7462b675457535489bbd1c84af25f4f529cec533/kernel-4.14.219-161.340.amzn2.aarch64.rpm" - ], - "4.14.243-185.433.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a432c87c0c9acb5ae542cc247f39343555213fa25f917572c9135b1ecd5e7a96/kernel-4.14.243-185.433.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" - ], - "4.14.146-120.181.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8a23697b93589f90844fd5c5d96e2ca6cdba4cffcf36ae73f42806f786776331/kernel-4.14.146-120.181.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" - ], - "4.14.106-97.85.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/269a16058b3044a3104aac95959635b80129adce6f5a41eb6c9272e72b8c730e/kernel-4.14.106-97.85.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" - ], - "4.14.77-80.57.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/af2865d851beebdd2a7178a249b5aef5bf83328b59b4145d288bd132d9d91f67/kernel-4.14.77-80.57.amzn2.aarch64.rpm" - ], - "4.14.88-88.73.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/15d0a42f7aead56a288b5e488bc9e33f4ffc37a1c69d347376b0499725745253/kernel-4.14.88-88.73.amzn2.aarch64.rpm" - ], - "4.14.248-189.473.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/34512ab2fd7ff3051af5cd5516a5a28d704dad28fad312f8ca36d3f48b5e9bbe/kernel-4.14.248-189.473.amzn2.aarch64.rpm" - ], - "4.14.114-103.97.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fe57f7a44fac0c706527f43c3f368ad6625456ea18ce958d2747116035239091/kernel-4.14.114-103.97.amzn2.aarch64.rpm" - ], - "4.14.171-136.231.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a27af0f944a3f18eb0ac0d4ed8b78dc3d69d9b407c9ddcf44265a5a54ffb52b2/kernel-4.14.171-136.231.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" - ], - "4.14.123-111.109.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2f444c5296812fbae92ec6a6fe147a23f9a661f3de8f4628d81c53558805d7bf/kernel-4.14.123-111.109.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" - ], - "4.14.173-137.229.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a2ae3e462602eedbec2ed3d7bb144793eaa582f3966dc993e429bc265fe26d6a/kernel-4.14.173-137.229.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" - ], - "4.14.94-89.73.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cd1eb09ac77738dbd6963c0909070cad9887912b41cf872e8d501c7d0dfffb56/kernel-4.14.94-89.73.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" - ], - "4.14.193-149.317.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/96dbd7583e9a14196525ad3627afa81c703f04fcff41f6c8e4ad542b48133202/kernel-4.14.193-149.317.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" - ], - "4.14.256-197.484.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1ceb131f91c2c9cb59cbfc56a53f468c88a34266b4fc1fbc52f58e6aa7a5f802/kernel-4.14.256-197.484.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" - ], - "4.14.114-105.126.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/154d6d67e57a60fdae389871931259ae0138596cc9dda145186e9d95682476d7/kernel-4.14.114-105.126.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" - ], - "4.14.262-200.489.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1d5e9081d75b8cf4246dded8ba67621fe6c41f87ca5d63243c82467d6dac27e1/kernel-4.14.262-200.489.amzn2.aarch64.rpm" - ], - "4.14.246-187.474.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/617e217e6f904e5853c3357151304b3c1cd25e105d0adee3e683916aedee17bf/kernel-4.14.246-187.474.amzn2.aarch64.rpm" - ], - "4.14.165-131.185.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a53547dde3884ac57819a36acfae0aabf6eefb1531b3dcfba36aeb2bfedd37df/kernel-4.14.165-131.185.amzn2.aarch64.rpm" - ], - "4.14.252-195.483.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b4a805f248eb5605b2c3cdf7bde8398c9b1efe5794a90fef5c0835c44e6cc6f3/kernel-4.14.252-195.483.amzn2.aarch64.rpm" - ], - "4.14.198-152.320.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9ac6a81718ae2acd09165e3e152bcd4858161f7972a86b66e6f87ea9e7e74005/kernel-4.14.198-152.320.amzn2.aarch64.rpm" - ], - "4.14.173-137.228.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/24056f30573ab2edfa17c7fcb59312b2c41a33839c0aa01ba11e8cb0e525d958/kernel-4.14.173-137.228.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" - ], - "4.14.138-114.102.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4c4c2e20a85ecab710e3a9c64b470891547bbe2da1899b3f2dac7360608a639f/kernel-4.14.138-114.102.amzn2.aarch64.rpm" - ], - "4.14.181-140.257.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/56569a5c3733a613254a1ae8ecdbd75012976309cc9f5ebf625fad5c90525cc0/kernel-4.14.181-140.257.amzn2.aarch64.rpm" - ], - "4.14.252-195.481.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2499209c64edc66df4b76dfe8e72c0d4814e6edc1809ff34d29a53f489cf1834/kernel-4.14.252-195.481.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" - ], - "4.14.152-124.171.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1d4638611126d484bb9b921282f393c045b345a60e02162406b535ea5b0fe34d/kernel-4.14.152-124.171.amzn2.aarch64.rpm" - ], - "4.14.143-118.123.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/483c5a72e1444cd76f27aeb620c862452031302346a2f44546f31d29cf11aca0/kernel-4.14.143-118.123.amzn2.aarch64.rpm" - ], - "4.14.268-205.500.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7c09f053939c226a83a9e70ebbc69c424ff66210d6bffa062466f245ce3c3f82/kernel-4.14.268-205.500.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" - ], - "4.14.104-95.84.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/014ce4c0e16c56b62a4e14467a62ee3ce71cd6dc61f8b02e912ea0434e7f3f05/kernel-4.14.104-95.84.amzn2.aarch64.rpm" - ], - "4.14.133-113.112.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c07a542a57c72cd69babb26b281b9a00751f2fbbd56389acd14cc2274bdfe42c/kernel-4.14.133-113.112.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" - ], - "4.14.109-99.92.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fcebb45ec19f3d47e7aac64826f9c90ec3dfa1adbcad8386af4487e1a7bc9bf1/kernel-4.14.109-99.92.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" - ], - "4.14.177-139.254.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a38d3b188dfa230a95cb6227a8d27202748f4f43d2420bc58609c6b01b8eec52/kernel-4.14.177-139.254.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" - ], - "4.14.146-119.123.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/344b5cb3f2621317c56ad7ba1d681f844aaf9d056448439d0d0e345df149bf7f/kernel-4.14.146-119.123.amzn2.aarch64.rpm" - ], - "4.14.192-147.314.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c4257953aa1b0af00bb9cd310be11dbe271f20ae77e439d0f4792a638164cc78/kernel-4.14.192-147.314.amzn2.aarch64.rpm" - ], - "4.14.238-182.422.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/12cb0374008eaae8e3b61e975cba69e225729fc1020a439003a00339032aacf0/kernel-4.14.238-182.422.amzn2.aarch64.rpm" - ], - "4.14.209-160.335.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f310ec2822e76d622c35ef178ebbc4d0b8395b92d5470903d1c3dd2d0de17cd2/kernel-4.14.209-160.335.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" - ], - "4.14.133-113.105.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f504fa38deaf4f4892bae5bd56138391876e9232c05b780e11ae88a494178f2d/kernel-4.14.133-113.105.amzn2.aarch64.rpm" - ], - "4.14.77-86.82.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/eb0abdb57be9ab5517a859955f15c091093f4a133bbe4111213b99537cbb7f37/kernel-4.14.77-86.82.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" - ], - "4.14.238-182.421.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cde07e727752b280a3223d4ca654867cf9c91dfc5c934bf6f47fc4e8d135d883/kernel-4.14.238-182.421.amzn2.aarch64.rpm" - ], - "4.14.88-88.76.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a586e43134054829329dd3e7ec2184c8e29f54521756fc9ce06264dee04591ff/kernel-4.14.88-88.76.amzn2.aarch64.rpm" - ], - "4.14.186-146.268.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7c101ca6bb562e5d5e3d4f0b471a83afe4f45b4b8437c9df59d98f9379e35fcf/kernel-4.14.186-146.268.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" - ], - "4.14.77-81.59.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/3fd8a523808359312cada0170b715a0eeb1437403e388e2c3449fba96d0d6130/kernel-4.14.77-81.59.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" - ], - "4.14.231-173.360.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ba68f466a24ccae2a30cfd6d1841d765e26bb4c8a56c59ad687d1a02915e2ec6/kernel-4.14.231-173.360.amzn2.aarch64.rpm" - ], - "4.14.214-160.339.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/283b26a21e092b5d781901fb34864ed83e4f9764ffe41fd9de3a3f9890c155c0/kernel-4.14.214-160.339.amzn2.aarch64.rpm" - ], - "4.14.225-168.357.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/59a01c40852e49796566e6b9ac28c430680e2f7e9f25b7b23d35cae6be9bc10b/kernel-4.14.225-168.357.amzn2.aarch64.rpm" - ], - "5.10.50-44.131.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/9b69ce102d67c87b15621cbcbb7d1a048f49f391ae6c5eda3b99cbb4d922bc91/kernel-5.10.50-44.131.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" - ], - "5.10.50-44.132.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/53a1e1236e6cee9715fe13847d8d183ae0a3223404bb45ae9af36d45be96a858/kernel-5.10.50-44.132.amzn2.aarch64.rpm" - ], - "5.10.59-52.142.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/13b5d9207f0dd8b7bf37dc54ee139635b6b2131164e45ca885dd12c0c5eb8d46/kernel-5.10.59-52.142.amzn2.aarch64.rpm" - ], - "5.10.75-79.358.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/3e2b78ea1c53268a52cd0c940e8ac2b1240e7131832bce8cb6e1de4491e55bf6/kernel-5.10.75-79.358.amzn2.aarch64.rpm" - ], - "5.10.93-87.444.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/aebb2d4a995d1f6e4807ab63e9646bea86c94d1c60ab3e9f39e8010a6e42a3bc/kernel-5.10.93-87.444.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" - ], - "5.10.35-31.135.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/bea125eae2832e4507cb2af64821f933bbdb95b17a6b69f7ea6ba27ba01ddb8f/kernel-5.10.35-31.135.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" - ], - "5.10.106-102.504.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/c82c315fefc54dbe231c6f0b0daa39f479c591f805e698b2dcaeb73714052dbd/kernel-5.10.106-102.504.amzn2.aarch64.rpm" - ], - "5.10.102-99.473.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/e8e37c290b0b022018cde2a9ee36560a2be06a83877ecd655a3b3aee9045b3f3/kernel-5.10.102-99.473.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" - ], - "5.10.62-55.141.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/7482bd0ebc2da61a418989eff361730659b6fc8c5cf2986e347b43b33d39fac2/kernel-5.10.62-55.141.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" - ], - "5.10.82-83.359.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/cd2bc861ff3a945e1ae653d64309bce25c059f32f67c27fc4b60397845fbac01/kernel-5.10.82-83.359.amzn2.aarch64.rpm" - ], - "5.10.68-62.173.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/00c714339ecb98914efc4816c925c8749b07a3551ceb159bda12b15883c8e84a/kernel-5.10.68-62.173.amzn2.aarch64.rpm" - ], - "5.10.47-39.130.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/0ca9fd45666253f06b7716faf073fb293f523cbd5c0ccdd7370bdcd43295410c/kernel-5.10.47-39.130.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" - ], - "5.10.29-27.128.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/f1d598ff87d955715cab341147e6ed86632d41e380e597928be38f2ed168f167/kernel-5.10.29-27.128.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" - ], - "5.10.96-90.460.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/52921aac35a345d28379fadf0de08f5d3255b5b6a2736e25db5acddd65e9f8a0/kernel-5.10.96-90.460.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" - ], - "5.10.29-27.126.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/40b6f9f771984b87143293982f0f737d3a1ee99d3f671d3dac1ce2cadbe9a3b3/kernel-5.10.29-27.126.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" - ], - "5.4.58-32.125.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/f86f7a86a429e62850162483bfdfe62a80c3c725fb70d6a806c3419ecd07a8f8/kernel-5.4.58-32.125.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" - ], - "5.4.110-54.189.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/822316d3e272622f3ce1c502698e243b5337788d6f628a5b2ffda1f1f41ab870/kernel-5.4.110-54.189.amzn2.aarch64.rpm" - ], - "5.4.129-63.229.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/cba73c39a767f83e952042a2c1f6ed4caaed755ff40c47361f865a0484417cf9/kernel-5.4.129-63.229.amzn2.aarch64.rpm" - ], - "5.4.129-62.227.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/526cf686fd79159f315755dfb836a7b97ef9060fd7c286f5779a52cb8d3ed542/kernel-5.4.129-62.227.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" - ], - "5.4.144-69.257.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/1864310eed0d8a0904bda90ccad74f2fcf5b98e738b635a5a62227e90314b942/kernel-5.4.144-69.257.amzn2.aarch64.rpm" - ], - "5.4.46-23.77.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/7c77a16ecd0f6d9daefa3364b5ecd6747e9f33a7b8dbcca1510f2df5baaf2fef/kernel-5.4.46-23.77.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" - ], - "5.4.46-19.75.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/86eed216a644973f24a0717ca1207922f4128597bb4c1afa2a7cb08d999f0e75/kernel-5.4.46-19.75.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" - ], - "5.4.91-41.139.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/a1b0062105a948adc30d3a55418b0cd49a206fde59a2c4f2e6e2b979b5bc64c8/kernel-5.4.91-41.139.amzn2.aarch64.rpm" - ], - "5.4.117-58.216.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c2dc7308d9dd95e4ae858272a5d26ca5fc513d9c3d183d5f42adcdbb1ba793b9/kernel-5.4.117-58.216.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" - ], - "5.4.172-90.336.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/cf4c6010974cc5fa0979aa58d2b1e5685417ae3a3eef8bdfcb579f4ac6460949/kernel-5.4.172-90.336.amzn2.aarch64.rpm" - ], - "5.4.156-83.273.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/a4ae6db38eebc08016cafbf466fa14c3ecbe9f93d38a17c15a7b136afc81a07a/kernel-5.4.156-83.273.amzn2.aarch64.rpm" - ], - "5.4.110-54.182.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c44b8c9eae9a9b03eefab7176acb96b9c52a631ee188599563d54bb93bbe8f36/kernel-5.4.110-54.182.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" - ], - "5.4.186-102.354.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/9a6da1f77626946b623d06b98bf5f62889ea7284bf788f90d6af2cffa4175368/kernel-5.4.186-102.354.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" - ], - "5.4.50-25.83.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/e25bb679d01dd70d0a1ed7442b005d7b1b9a5b9810db3d83ad128c5ed2ef7b2e/kernel-5.4.50-25.83.amzn2.aarch64.rpm" - ], - "5.4.80-40.140.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/e4cfce14821fa2939c13732426c8fc30276b379662b953a9c485fe9106455584/kernel-5.4.80-40.140.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" - ], - "5.4.38-17.76.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/cd086421a891f11659a7a24bf999fdc3c9a5ccc4483f3efcbf968c8eaaba712b/kernel-5.4.38-17.76.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" - ], - "5.4.105-48.177.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d62d9b6be6e8567e98b69b3c2fbdef2f787a15013620a81492b87906834c19aa/kernel-5.4.105-48.177.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" - ], - "5.4.20-12.75.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/53261ab083b5305bb0f4ffbfb838e479dd2c5d5d862fda7a05747b93041f278b/kernel-5.4.20-12.75.amzn2.aarch64.rpm" - ], - "5.4.149-73.259.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/224dfe2c036bb3ce653c355d56a906405c53596992ee6d031e96a6ee26c43e0e/kernel-5.4.149-73.259.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" - ], - "5.4.176-91.338.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/9b2ac1eaadfb9b8ec028098504589c5a570b9b425cfdeb66e211cff80d3a4a27/kernel-5.4.176-91.338.amzn2.aarch64.rpm" - ], - "5.4.181-99.354.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/173b7cca93bdb115f8fc11e7fd0e67e87044d31cc45d64a329f0f3510654b580/kernel-5.4.181-99.354.amzn2.aarch64.rpm" - ], - "5.4.74-36.135.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/a6b6b08a87351bfd2cc510916dd919afe518f8f7c1d651bc57d7d71bc3e7f229/kernel-5.4.74-36.135.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" - ], - "5.4.68-34.125.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/853af3c2cd14c5e8ba4c22bda96431b1a31864a542d189523176b121fdce2bbb/kernel-5.4.68-34.125.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" - ], - "5.4.95-42.163.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/282637e0fe096952528ebbacf9eec438434a1c39dc1f2cb60e2c9f0866191d56/kernel-5.4.95-42.163.amzn2.aarch64.rpm" - ], - "5.4.141-67.229.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8f350cc7fadb25ad4ccde13a431329f2f864d9e421449fb232d01f09cfd1ab2a/kernel-5.4.141-67.229.amzn2.aarch64.rpm" - ], - "5.4.162-86.275.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8a16cf6650664a44c6af2658619b58d30ce8145ba49f3bad4f157361bddebd3e/kernel-5.4.162-86.275.amzn2.aarch64.rpm" - ], - "5.4.58-27.104.amzn2.aarch64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/25e337ee790a8ae9afd4f961d5b83660b47bf88fa7142a060af1b0a5ddfd4719/kernel-5.4.58-27.104.amzn2.aarch64.rpm" - ] - }, - "CentOS": { - "4.18.0-80.1.2.el8_0.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.1.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.1.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.1.2.el8_0.aarch64.rpm" - ], - "4.18.0-80.11.1.el8_0.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.11.1.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.11.1.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.11.1.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.aarch64.rpm" - ], - "4.18.0-80.11.2.el8_0.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.11.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.11.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.11.2.el8_0.aarch64.rpm" - ], - "4.18.0-80.4.2.el8_0.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.4.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.4.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.4.2.el8_0.aarch64.rpm" - ], - "4.18.0-80.7.1.el8_0.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.7.1.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.7.1.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.7.1.el8_0.aarch64.rpm" - ], - "4.18.0-80.7.2.el8_0.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.7.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.7.2.el8_0.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.7.2.el8_0.aarch64.rpm" - ], - "4.18.0-80.el8.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-80.el8.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-80.el8.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.el8.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-4.18.0-80.el8.aarch64.rpm" - ], - "4.18.0-147.8.1.el8_1.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-4.18.0-147.8.1.el8_1.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-147.8.1.el8_1.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-147.8.1.el8_1.aarch64.rpm" - ], - "4.18.0-193.28.1.el8_2.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-193.28.1.el8_2.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-193.28.1.el8_2.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-4.18.0-193.28.1.el8_2.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.aarch64.rpm" - ], - "4.18.0-240.22.1.el8_3.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-240.22.1.el8_3.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-240.22.1.el8_3.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-4.18.0-240.22.1.el8_3.aarch64.rpm" - ], - "4.18.0-305.10.2.el8_4.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.10.2.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.10.2.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.10.2.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.aarch64.rpm" - ], - "4.18.0-305.12.1.el8_4.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.12.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.12.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.12.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.aarch64.rpm" - ], - "4.18.0-305.17.1.el8_4.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.17.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.17.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.17.1.el8_4.aarch64.rpm" - ], - "4.18.0-305.19.1.el8_4.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.19.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.19.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.19.1.el8_4.aarch64.rpm" - ], - "4.18.0-305.25.1.el8_4.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.25.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.25.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.25.1.el8_4.aarch64.rpm" - ], - "4.18.0-305.3.1.el8.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.3.1.el8.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.3.1.el8.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.3.1.el8.aarch64.rpm" - ], - "4.18.0-305.7.1.el8_4.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.7.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.7.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.7.1.el8_4.aarch64.rpm" - ], - "4.18.0-348.2.1.el8_5.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-348.2.1.el8_5.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-4.18.0-348.2.1.el8_5.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-348.2.1.el8_5.aarch64.rpm" - ], - "4.18.0-348.7.1.el8_5.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-348.7.1.el8_5.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-348.7.1.el8_5.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-4.18.0-348.7.1.el8_5.aarch64.rpm" - ], - "4.18.0-348.el8.aarch64": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-348.el8.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-348.el8.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-4.18.0-348.el8.aarch64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.el8.aarch64.rpm" - ] - }, - "Fedora": { - "5.6.6-300.fc32.aarch64": [ - "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-modules-5.6.6-300.fc32.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-devel-5.6.6-300.fc32.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-5.6.6-300.fc32.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-core-5.6.6-300.fc32.aarch64.rpm" - ], - "5.8.15-301.fc33.aarch64": [ - "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-core-5.8.15-301.fc33.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-modules-5.8.15-301.fc33.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-devel-5.8.15-301.fc33.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-5.8.15-301.fc33.aarch64.rpm" - ], - "5.11.12-300.fc34.aarch64": [ - "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-devel-5.11.12-300.fc34.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-5.11.12-300.fc34.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-core-5.11.12-300.fc34.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-modules-5.11.12-300.fc34.aarch64.rpm" - ], - "5.14.10-300.fc35.aarch64": [ - "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-modules-5.14.10-300.fc35.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-5.14.10-300.fc35.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-devel-5.14.10-300.fc35.aarch64.rpm", - "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-core-5.14.10-300.fc35.aarch64.rpm" - ], - "5.11.22-100.fc32.aarch64": [ - "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-modules-5.11.22-100.fc32.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-core-5.11.22-100.fc32.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-devel-5.11.22-100.fc32.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-5.11.22-100.fc32.aarch64.rpm" - ], - "5.14.18-100.fc33.aarch64": [ - "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-core-5.14.18-100.fc33.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-5.14.18-100.fc33.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-devel-5.14.18-100.fc33.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-modules-5.14.18-100.fc33.aarch64.rpm" - ], - "5.16.18-100.fc34.aarch64": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-modules-5.16.18-100.fc34.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.16.18-100.fc34.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-core-5.16.18-100.fc34.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-5.16.18-100.fc34.aarch64.rpm" - ], - "5.16.18-200.fc35.aarch64": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-modules-5.16.18-200.fc35.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.16.18-200.fc35.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-5.16.18-200.fc35.aarch64.rpm", - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-core-5.16.18-200.fc35.aarch64.rpm" - ] - }, - "Oracle6": {}, - "Oracle7": {}, - "Oracle8": {}, - "PhotonOS": { - "1.3.0-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/Linux-PAM-1.3.0-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/Linux-PAM-devel-1.3.0-1.ph3.aarch64.rpm" - ], - "4.19.15-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/linux-4.19.15-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/linux-devel-4.19.15-2.ph3.aarch64.rpm" - ], - "4.19.104-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.104-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.104-1.ph3.aarch64.rpm" - ], - "4.19.104-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.104-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.104-3.ph3.aarch64.rpm" - ], - "4.19.112-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.112-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.112-1.ph3.aarch64.rpm" - ], - "4.19.115-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-1.ph3.aarch64.rpm" - ], - "4.19.115-10.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-10.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-10.ph3.aarch64.rpm" - ], - "4.19.115-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-2.ph3.aarch64.rpm" - ], - "4.19.115-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-3.ph3.aarch64.rpm" - ], - "4.19.115-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-5.ph3.aarch64.rpm" - ], - "4.19.115-6.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-6.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-6.ph3.aarch64.rpm" - ], - "4.19.115-7.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-7.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-7.ph3.aarch64.rpm" - ], - "4.19.115-9.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-9.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.115-9.ph3.aarch64.rpm" - ], - "4.19.124-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.124-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.124-1.ph3.aarch64.rpm" - ], - "4.19.124-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.124-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.124-2.ph3.aarch64.rpm" - ], - "4.19.126-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.126-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.126-1.ph3.aarch64.rpm" - ], - "4.19.126-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.126-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.126-2.ph3.aarch64.rpm" - ], - "4.19.129-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.129-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-1.ph3.aarch64.rpm" - ], - "4.19.129-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.129-2.ph3.aarch64.rpm" - ], - "4.19.129-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.129-3.ph3.aarch64.rpm" - ], - "4.19.132-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-1.ph3.aarch64.rpm" - ], - "4.19.132-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-2.ph3.aarch64.rpm" - ], - "4.19.132-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-3.ph3.aarch64.rpm" - ], - "4.19.132-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-5.ph3.aarch64.rpm" - ], - "4.19.132-6.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-6.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.132-6.ph3.aarch64.rpm" - ], - "4.19.138-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.138-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-1.ph3.aarch64.rpm" - ], - "4.19.138-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.138-2.ph3.aarch64.rpm" - ], - "4.19.138-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.138-4.ph3.aarch64.rpm" - ], - "4.19.145-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.145-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-1.ph3.aarch64.rpm" - ], - "4.19.145-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.145-2.ph3.aarch64.rpm" - ], - "4.19.145-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.145-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-4.ph3.aarch64.rpm" - ], - "4.19.148-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-1.ph3.aarch64.rpm" - ], - "4.19.148-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-2.ph3.aarch64.rpm" - ], - "4.19.148-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-3.ph3.aarch64.rpm" - ], - "4.19.148-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-4.ph3.aarch64.rpm" - ], - "4.19.148-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.148-5.ph3.aarch64.rpm" - ], - "4.19.15-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.15-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.15-3.ph3.aarch64.rpm" - ], - "4.19.150-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.150-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.150-1.ph3.aarch64.rpm" - ], - "4.19.154-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-1.ph3.aarch64.rpm" - ], - "4.19.154-10.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-10.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-10.ph3.aarch64.rpm" - ], - "4.19.154-11.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-11.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-11.ph3.aarch64.rpm" - ], - "4.19.154-8.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-8.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-8.ph3.aarch64.rpm" - ], - "4.19.154-9.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-9.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.154-9.ph3.aarch64.rpm" - ], - "4.19.160-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.160-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-3.ph3.aarch64.rpm" - ], - "4.19.160-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.160-4.ph3.aarch64.rpm" - ], - "4.19.160-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.160-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-5.ph3.aarch64.rpm" - ], - "4.19.160-6.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-6.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.160-6.ph3.aarch64.rpm" - ], - "4.19.164-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.164-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.164-1.ph3.aarch64.rpm" - ], - "4.19.164-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.164-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.164-2.ph3.aarch64.rpm" - ], - "4.19.174-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.174-2.ph3.aarch64.rpm" - ], - "4.19.174-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.174-4.ph3.aarch64.rpm" - ], - "4.19.174-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.174-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-5.ph3.aarch64.rpm" - ], - "4.19.177-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.177-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.177-1.ph3.aarch64.rpm" - ], - "4.19.177-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.177-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.177-2.ph3.aarch64.rpm" - ], - "4.19.182-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.182-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.182-1.ph3.aarch64.rpm" - ], - "4.19.182-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.182-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.182-2.ph3.aarch64.rpm" - ], - "4.19.186-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.186-1.ph3.aarch64.rpm" - ], - "4.19.186-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.186-2.ph3.aarch64.rpm" - ], - "4.19.186-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.186-3.ph3.aarch64.rpm" - ], - "4.19.186-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.186-4.ph3.aarch64.rpm" - ], - "4.19.189-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.189-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-2.ph3.aarch64.rpm" - ], - "4.19.189-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.189-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-3.ph3.aarch64.rpm" - ], - "4.19.189-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.189-4.ph3.aarch64.rpm" - ], - "4.19.189-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.189-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-5.ph3.aarch64.rpm" - ], - "4.19.190-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.190-1.ph3.aarch64.rpm" - ], - "4.19.190-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.190-2.ph3.aarch64.rpm" - ], - "4.19.190-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.190-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-3.ph3.aarch64.rpm" - ], - "4.19.191-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.191-1.ph3.aarch64.rpm" - ], - "4.19.191-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.191-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-2.ph3.aarch64.rpm" - ], - "4.19.191-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.191-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-3.ph3.aarch64.rpm" - ], - "4.19.198-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.198-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-1.ph3.aarch64.rpm" - ], - "4.19.198-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.198-2.ph3.aarch64.rpm" - ], - "4.19.198-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.198-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-3.ph3.aarch64.rpm" - ], - "4.19.198-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.198-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-4.ph3.aarch64.rpm" - ], - "4.19.205-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.205-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.205-1.ph3.aarch64.rpm" - ], - "4.19.208-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.208-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.208-1.ph3.aarch64.rpm" - ], - "4.19.214-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.214-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.214-3.ph3.aarch64.rpm" - ], - "4.19.214-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.214-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.214-4.ph3.aarch64.rpm" - ], - "4.19.217-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.217-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.217-1.ph3.aarch64.rpm" - ], - "4.19.219-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.219-1.ph3.aarch64.rpm" - ], - "4.19.219-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.219-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-3.ph3.aarch64.rpm" - ], - "4.19.219-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.219-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-4.ph3.aarch64.rpm" - ], - "4.19.219-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.219-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-5.ph3.aarch64.rpm" - ], - "4.19.224-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.224-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.224-1.ph3.aarch64.rpm" - ], - "4.19.224-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.224-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.224-2.ph3.aarch64.rpm" - ], - "4.19.225-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.225-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.225-3.ph3.aarch64.rpm" - ], - "4.19.229-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.229-1.ph3.aarch64.rpm" - ], - "4.19.229-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.229-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-2.ph3.aarch64.rpm" - ], - "4.19.229-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.229-3.ph3.aarch64.rpm" - ], - "4.19.232-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.232-1.ph3.aarch64.rpm" - ], - "4.19.232-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.232-2.ph3.aarch64.rpm" - ], - "4.19.232-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.232-3.ph3.aarch64.rpm" - ], - "4.19.232-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.232-4.ph3.aarch64.rpm" - ], - "4.19.29-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.29-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.29-1.ph3.aarch64.rpm" - ], - "4.19.32-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.32-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.32-3.ph3.aarch64.rpm" - ], - "4.19.40-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.40-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.40-2.ph3.aarch64.rpm" - ], - "4.19.40-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.40-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.40-3.ph3.aarch64.rpm" - ], - "4.19.52-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.52-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.52-1.ph3.aarch64.rpm" - ], - "4.19.52-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.52-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.52-2.ph3.aarch64.rpm" - ], - "4.19.65-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.65-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.65-2.ph3.aarch64.rpm" - ], - "4.19.65-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.65-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.65-3.ph3.aarch64.rpm" - ], - "4.19.69-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.69-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.69-1.ph3.aarch64.rpm" - ], - "4.19.72-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.72-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.72-1.ph3.aarch64.rpm" - ], - "4.19.72-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.72-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.72-2.ph3.aarch64.rpm" - ], - "4.19.76-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.76-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.76-1.ph3.aarch64.rpm" - ], - "4.19.76-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.76-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.76-5.ph3.aarch64.rpm" - ], - "4.19.79-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.79-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.79-1.ph3.aarch64.rpm" - ], - "4.19.79-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.79-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.79-2.ph3.aarch64.rpm" - ], - "4.19.82-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.82-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.82-1.ph3.aarch64.rpm" - ], - "4.19.84-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.84-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.84-1.ph3.aarch64.rpm" - ], - "4.19.84-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.84-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.84-2.ph3.aarch64.rpm" - ], - "4.19.87-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.87-1.ph3.aarch64.rpm" - ], - "4.19.87-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.87-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-4.ph3.aarch64.rpm" - ], - "4.19.87-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.87-5.ph3.aarch64.rpm" - ], - "4.19.97-1.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-1.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-1.ph3.aarch64.rpm" - ], - "4.19.97-2.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-2.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-2.ph3.aarch64.rpm" - ], - "4.19.97-3.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-3.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-3.ph3.aarch64.rpm" - ], - "4.19.97-4.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-4.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-4.ph3.aarch64.rpm" - ], - "4.19.97-5.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-5.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-5.ph3.aarch64.rpm" - ], - "4.19.97-6.ph3.aarch64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-4.19.97-6.ph3.aarch64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-6.ph3.aarch64.rpm" - ], - "1.4.0-3.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-3.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-1.4.0-3.ph4.aarch64.rpm" - ], - "1.4.0-4.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-1.4.0-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/Linux-PAM-1.4.0-4.ph4.aarch64.rpm" - ], - "5.10.103-1.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-1.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.103-1.ph4.aarch64.rpm" - ], - "5.10.103-2.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.103-2.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-2.ph4.aarch64.rpm" - ], - "5.10.103-3.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-3.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.103-3.ph4.aarch64.rpm" - ], - "5.10.103-4.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-5.10.103-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.103-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.103-4.ph4.aarch64.rpm" - ], - "5.10.25-1.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-1.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-1.ph4.aarch64.rpm" - ], - "5.10.25-10.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-10.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-10.ph4.aarch64.rpm" - ], - "5.10.25-2.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-2.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-2.ph4.aarch64.rpm" - ], - "5.10.25-3.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-3.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-3.ph4.aarch64.rpm" - ], - "5.10.25-5.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-5.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-5.ph4.aarch64.rpm" - ], - "5.10.25-6.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-6.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-6.ph4.aarch64.rpm" - ], - "5.10.25-7.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-7.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-7.ph4.aarch64.rpm" - ], - "5.10.25-9.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-9.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.25-9.ph4.aarch64.rpm" - ], - "5.10.35-1.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-1.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.35-1.ph4.aarch64.rpm" - ], - "5.10.35-2.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-2.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.35-2.ph4.aarch64.rpm" - ], - "5.10.35-3.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.35-3.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-3.ph4.aarch64.rpm" - ], - "5.10.35-4.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.35-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-4.ph4.aarch64.rpm" - ], - "5.10.4-17.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.4-17.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.4-17.ph4.aarch64.rpm" - ], - "5.10.42-1.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.42-1.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-1.ph4.aarch64.rpm" - ], - "5.10.42-2.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-2.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.42-2.ph4.aarch64.rpm" - ], - "5.10.42-3.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.42-3.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-3.ph4.aarch64.rpm" - ], - "5.10.46-2.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.46-2.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.46-2.ph4.aarch64.rpm" - ], - "5.10.52-1.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.52-1.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.52-1.ph4.aarch64.rpm" - ], - "5.10.52-2.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.52-2.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.52-2.ph4.aarch64.rpm" - ], - "5.10.61-1.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.61-1.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.61-1.ph4.aarch64.rpm" - ], - "5.10.61-2.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.61-2.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.61-2.ph4.aarch64.rpm" - ], - "5.10.75-1.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.75-1.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.75-1.ph4.aarch64.rpm" - ], - "5.10.78-1.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-1.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.78-1.ph4.aarch64.rpm" - ], - "5.10.78-4.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.78-4.ph4.aarch64.rpm" - ], - "5.10.78-5.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.78-5.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-5.ph4.aarch64.rpm" - ], - "5.10.83-2.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-2.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-2.ph4.aarch64.rpm" - ], - "5.10.83-3.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-3.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-3.ph4.aarch64.rpm" - ], - "5.10.83-4.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-4.ph4.aarch64.rpm" - ], - "5.10.83-5.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-5.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-5.ph4.aarch64.rpm" - ], - "5.10.83-6.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-6.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-6.ph4.aarch64.rpm" - ], - "5.10.83-7.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.83-7.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-7.ph4.aarch64.rpm" - ], - "5.10.93-1.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-1.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.93-1.ph4.aarch64.rpm" - ], - "5.10.93-3.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.93-3.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-3.ph4.aarch64.rpm" - ], - "5.10.93-4.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.93-4.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-4.ph4.aarch64.rpm" - ], - "5.10.93-5.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-5.10.93-5.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-5.ph4.aarch64.rpm" - ], - "1.4.0-2.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/Linux-PAM-1.4.0-2.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-2.ph4.aarch64.rpm" - ], - "5.10.4-16.ph4.aarch64": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/linux-5.10.4-16.ph4.aarch64.rpm", - "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/linux-devel-5.10.4-16.ph4.aarch64.rpm" - ] - }, - "Debian": {}, - "Ubuntu": { - "4.15.0-1113/120": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" - ], - "4.15.0-1116/123": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb" - ], - "4.15.0-1117/124": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb" - ], - "4.15.0-1119/128": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb" - ], - "4.15.0-1120/128": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb" - ], - "4.15.0-1120/129": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" - ], - "4.15.0-1121/129": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" - ], - "4.15.0-1121/130": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb" - ], - "4.15.0-1123/132": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" - ], - "4.15.0-1124/133": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" - ], - "4.15.0-1125/134": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" - ], - "4.15.0-1126/135": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" - ], - "4.15.0-1127/136": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" - ], - "4.15.0-167/175": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-167-generic_4.15.0-167.175_arm64.deb" - ], - "4.15.0-168/176": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-168-generic_4.15.0-168.176_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_arm64.deb" - ], - "4.15.0-169/177": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-169-generic_4.15.0-169.177_arm64.deb" - ], - "4.15.0-170/178": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-170-generic_4.15.0-170.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_arm64.deb" - ], - "4.15.0-172/181": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-172-generic_4.15.0-172.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb" - ], - "4.15.0-173/182": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-173-generic_4.15.0-173.182_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" - ], - "4.15.0-174/183": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-174-generic_4.15.0-174.183_arm64.deb" - ], - "4.15.0-176/185": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-176-generic_4.15.0-176.185_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" - ], - "5.0.0-1028/31": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb" - ], - "5.4.0-100/113~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" - ], - "5.4.0-105/119~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb" - ], - "5.4.0-1058/62~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" - ], - "5.4.0-106/120~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb" - ], - "5.4.0-1062/66~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" - ], - "5.4.0-1064/67~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" - ], - "5.4.0-1064/68~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" - ], - "5.4.0-1066/69~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb" - ], - "5.4.0-1067/72~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" - ], - "5.4.0-1068/73~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb" - ], - "5.4.0-1069/73~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" - ], - "5.4.0-1070/74~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb" - ], - "5.4.0-1070/76~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb" - ], - "5.4.0-1072/77~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" - ], - "5.4.0-108/122~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb" - ], - "5.4.0-91/102~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb" - ], - "5.4.0-97/110~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb" - ], - "5.4.0-99/112~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" - ], - "4.15.0-101/102": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-101-generic_4.15.0-101.102_arm64.deb" - ], - "4.15.0-1029/30": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb" - ], - "4.15.0-1030/32": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-modules-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb" - ], - "4.15.0-1031/33": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-modules-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" - ], - "4.15.0-1032/34": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb" - ], - "4.15.0-1033/35": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" - ], - "4.15.0-1034/36": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb" - ], - "4.15.0-1035/37": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" - ], - "4.15.0-1039/41": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb" - ], - "4.15.0-1040/42": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb" - ], - "4.15.0-1041/43": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb" - ], - "4.15.0-1043/45": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" - ], - "4.15.0-1044/46": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" - ], - "4.15.0-1045/47": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb" - ], - "4.15.0-1047/49": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb" - ], - "4.15.0-1048/50": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb" - ], - "4.15.0-1050/52": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" - ], - "4.15.0-1051/53": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" - ], - "4.15.0-1052/54": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb" - ], - "4.15.0-1053/57": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb" - ], - "4.15.0-1054/56": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb" - ], - "4.15.0-1054/58": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb" - ], - "4.15.0-1055/59": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb" - ], - "4.15.0-1056/58": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" - ], - "4.15.0-1057/59": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb" - ], - "4.15.0-1057/62": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" - ], - "4.15.0-1058/60": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" - ], - "4.15.0-1058/64": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb" - ], - "4.15.0-106/107": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-106-generic_4.15.0-106.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb" - ], - "4.15.0-1060/62": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb" - ], - "4.15.0-1060/66": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb" - ], - "4.15.0-1062/69": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb" - ], - "4.15.0-1063/67": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" - ], - "4.15.0-1064/71": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" - ], - "4.15.0-1065/69": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" - ], - "4.15.0-1065/72": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb" - ], - "4.15.0-1066/70": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" - ], - "4.15.0-1066/73": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb" - ], - "4.15.0-1067/71": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb" - ], - "4.15.0-1067/74": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb" - ], - "4.15.0-1069/76": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" - ], - "4.15.0-1070/77": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb" - ], - "4.15.0-1071/78": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb" - ], - "4.15.0-1072/79": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb" - ], - "4.15.0-1073/77": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" - ], - "4.15.0-1074/81": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb" - ], - "4.15.0-1076/80": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb" - ], - "4.15.0-1076/83": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" - ], - "4.15.0-1077/81": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb" - ], - "4.15.0-1077/84": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" - ], - "4.15.0-1079/83": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" - ], - "4.15.0-1079/86": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb" - ], - "4.15.0-108/109": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-108-generic_4.15.0-108.109_arm64.deb" - ], - "4.15.0-1080/84": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb" - ], - "4.15.0-1080/87": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb" - ], - "4.15.0-1081/88": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb" - ], - "4.15.0-1082/86": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" - ], - "4.15.0-1083/87": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb" - ], - "4.15.0-1083/91": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb" - ], - "4.15.0-1084/92": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb" - ], - "4.15.0-1086/91": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb" - ], - "4.15.0-1086/94": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb" - ], - "4.15.0-1087/92": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb" - ], - "4.15.0-1087/95": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" - ], - "4.15.0-1089/98": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb" - ], - "4.15.0-109/110": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-109-generic_4.15.0-109.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" - ], - "4.15.0-1090/95": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb" - ], - "4.15.0-1090/99": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb" - ], - "4.15.0-1091/96": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb" - ], - "4.15.0-1092/98": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb" - ], - "4.15.0-1093/99": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb" - ], - "4.15.0-1093/102": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb" - ], - "4.15.0-1094/101": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" - ], - "4.15.0-1094/103": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb" - ], - "4.15.0-1095/102": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb" - ], - "4.15.0-1095/104": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" - ], - "4.15.0-1096/103": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb" - ], - "4.15.0-1096/105": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb" - ], - "4.15.0-1097/104": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" - ], - "4.15.0-1097/106": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb" - ], - "4.15.0-1098/105": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" - ], - "4.15.0-1098/107": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb" - ], - "4.15.0-1099/106": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb" - ], - "4.15.0-1099/108": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb" - ], - "4.15.0-1100/109": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb" - ], - "4.15.0-1101/108": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb" - ], - "4.15.0-1101/110": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb" - ], - "4.15.0-1102/109": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb" - ], - "4.15.0-1102/111": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb" - ], - "4.15.0-1103/110": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb" - ], - "4.15.0-1103/112": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb" - ], - "4.15.0-1106/113": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" - ], - "4.15.0-1106/115": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" - ], - "4.15.0-1109/116": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" - ], - "4.15.0-1109/118": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb" - ], - "4.15.0-111/112": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-111-generic_4.15.0-111.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" - ], - "4.15.0-1110/117": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb" - ], - "4.15.0-1110/119": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" - ], - "4.15.0-1111/118": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" - ], - "4.15.0-1111/120": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb" - ], - "4.15.0-1112/119": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" - ], - "4.15.0-1112/121": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb" - ], - "4.15.0-1113/122": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb" - ], - "4.15.0-1114/121": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" - ], - "4.15.0-1114/123": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb" - ], - "4.15.0-1115/122": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb" - ], - "4.15.0-1115/124": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb" - ], - "4.15.0-1116/125": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb" - ], - "4.15.0-1118/125": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" - ], - "4.15.0-1118/127": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb" - ], - "4.15.0-1119/127": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb" - ], - "4.15.0-112/113": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-112-generic_4.15.0-112.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" - ], - "4.15.0-1122/131": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-modules-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb" - ], - "4.15.0-115/116": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-115-generic_4.15.0-115.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb" - ], - "4.15.0-117/118": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-117-generic_4.15.0-117.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb" - ], - "4.15.0-118/119": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-118-generic_4.15.0-118.119_arm64.deb" - ], - "4.15.0-121/123": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-121-generic_4.15.0-121.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb" - ], - "4.15.0-122/124": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-122-generic_4.15.0-122.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" - ], - "4.15.0-123/126": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-123-generic_4.15.0-123.126_arm64.deb" - ], - "4.15.0-128/131": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-128-generic_4.15.0-128.131_arm64.deb" - ], - "4.15.0-129/132": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-129-generic_4.15.0-129.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" - ], - "4.15.0-130/134": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-130-generic_4.15.0-130.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" - ], - "4.15.0-132/136": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-132-generic_4.15.0-132.136_arm64.deb" - ], - "4.15.0-135/139": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-135-generic_4.15.0-135.139_arm64.deb" - ], - "4.15.0-136/140": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-136-generic_4.15.0-136.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb" - ], - "4.15.0-137/141": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-137-generic_4.15.0-137.141_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" - ], - "4.15.0-139/143": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-139-generic_4.15.0-139.143_arm64.deb" - ], - "4.15.0-140/144": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-140-generic_4.15.0-140.144_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb" - ], - "4.15.0-141/145": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-141-generic_4.15.0-141.145_arm64.deb" - ], - "4.15.0-142/146": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-142-generic_4.15.0-142.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" - ], - "4.15.0-143/147": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-143-generic_4.15.0-143.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" - ], - "4.15.0-144/148": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-144-generic_4.15.0-144.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" - ], - "4.15.0-147/151": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-147-generic_4.15.0-147.151_arm64.deb" - ], - "4.15.0-151/157": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-151-generic_4.15.0-151.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" - ], - "4.15.0-153/160": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-153-generic_4.15.0-153.160_arm64.deb" - ], - "4.15.0-154/161": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-154-generic_4.15.0-154.161_arm64.deb" - ], - "4.15.0-156/163": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-156-generic_4.15.0-156.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" - ], - "4.15.0-158/166": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-158-generic_4.15.0-158.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" - ], - "4.15.0-159/167": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-159-generic_4.15.0-159.167_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb" - ], - "4.15.0-161/169": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-161-generic_4.15.0-161.169_arm64.deb" - ], - "4.15.0-162/170": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-162-generic_4.15.0-162.170_arm64.deb" - ], - "4.15.0-163/171": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-163-generic_4.15.0-163.171_arm64.deb" - ], - "4.15.0-166/174": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-166-generic_4.15.0-166.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" - ], - "4.15.0-171/180": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-171-generic_4.15.0-171.180_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_arm64.deb" - ], - "4.15.0-175/184": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-175-generic_4.15.0-175.184_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" - ], - "4.15.0-22/24": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-22-generic_4.15.0-22.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb" - ], - "4.15.0-23/25": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-23-generic_4.15.0-23.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb" - ], - "4.15.0-24/26": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-24-generic_4.15.0-24.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb" - ], - "4.15.0-29/31": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-29-generic_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb" - ], - "4.15.0-30/32": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-30-generic_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" - ], - "4.15.0-32/35": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-32-generic_4.15.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" - ], - "4.15.0-33/36": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-33-generic_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb" - ], - "4.15.0-34/37": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-34-generic_4.15.0-34.37_arm64.deb" - ], - "4.15.0-36/39": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-36-generic_4.15.0-36.39_arm64.deb" - ], - "4.15.0-39/42": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-39-generic_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb" - ], - "4.15.0-42/45": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-42-generic_4.15.0-42.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb" - ], - "4.15.0-43/46": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-43-generic_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb" - ], - "4.15.0-44/47": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-44-generic_4.15.0-44.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" - ], - "4.15.0-45/48": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-45-generic_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb" - ], - "4.15.0-46/49": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-46-generic_4.15.0-46.49_arm64.deb" - ], - "4.15.0-47/50": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-47-generic_4.15.0-47.50_arm64.deb" - ], - "4.15.0-50/54": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-50-generic_4.15.0-50.54_arm64.deb" - ], - "4.15.0-51/55": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-51-generic_4.15.0-51.55_arm64.deb" - ], - "4.15.0-52/56": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-52-generic_4.15.0-52.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" - ], - "4.15.0-54/58": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-54-generic_4.15.0-54.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb" - ], - "4.15.0-55/60": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-55-generic_4.15.0-55.60_arm64.deb" - ], - "4.15.0-58/64": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-58-generic_4.15.0-58.64_arm64.deb" - ], - "4.15.0-60/67": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-60-generic_4.15.0-60.67_arm64.deb" - ], - "4.15.0-62/69": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-62-generic_4.15.0-62.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" - ], - "4.15.0-64/73": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-64-generic_4.15.0-64.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb" - ], - "4.15.0-65/74": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-65-generic_4.15.0-65.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" - ], - "4.15.0-66/75": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-66-generic_4.15.0-66.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_arm64.deb" - ], - "4.15.0-69/78": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-69-generic_4.15.0-69.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" - ], - "4.15.0-70/79": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-70-generic_4.15.0-70.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" - ], - "4.15.0-72/81": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-72-generic_4.15.0-72.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" - ], - "4.15.0-74/84": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-74-generic_4.15.0-74.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" - ], - "4.15.0-76/86": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-76-generic_4.15.0-76.86_arm64.deb" - ], - "4.15.0-88/88": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-88-generic_4.15.0-88.88_arm64.deb" - ], - "4.15.0-91/92": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-91-generic_4.15.0-91.92_arm64.deb" - ], - "4.15.0-96/97": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-96-generic_4.15.0-96.97_arm64.deb" - ], - "4.15.0-99/100": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-99-generic_4.15.0-99.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" - ], - "4.18.0-13/14~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb" - ], - "4.18.0-14/15~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb" - ], - "4.18.0-15/16~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" - ], - "4.18.0-16/17~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" - ], - "4.18.0-17/18~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb" - ], - "4.18.0-20/21~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" - ], - "4.18.0-21/22~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb" - ], - "4.18.0-22/23~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb" - ], - "4.18.0-24/25~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" - ], - "4.18.0-25/26~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb" - ], - "5.0.0-1021/24~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb" - ], - "5.0.0-1022/25~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb" - ], - "5.0.0-1023/26~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_arm64.deb" - ], - "5.0.0-1024/27~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" - ], - "5.0.0-1025/28": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" - ], - "5.0.0-1027/30": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" - ], - "5.0.0-15/16~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb" - ], - "5.0.0-16/17~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" - ], - "5.0.0-17/18~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb" - ], - "5.0.0-19/20~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" - ], - "5.0.0-20/21~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb" - ], - "5.0.0-23/24~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" - ], - "5.0.0-25/26~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb" - ], - "5.0.0-27/28~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb" - ], - "5.0.0-29/31~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb" - ], - "5.0.0-31/33~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" - ], - "5.0.0-32/34~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" - ], - "5.0.0-35/38~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" - ], - "5.0.0-36/39~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" - ], - "5.0.0-37/40~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb" - ], - "5.0.0-52/56~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb" - ], - "5.0.0-61/65": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-61-generic_5.0.0-61.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" - ], - "5.0.0-62/67": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-62-generic_5.0.0-62.67_arm64.deb" - ], - "5.0.0-63/69": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-63-generic_5.0.0-63.69_arm64.deb" - ], - "5.0.0-65/71": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-65-generic_5.0.0-65.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" - ], - "5.3.0-1017/18~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" - ], - "5.3.0-1019/21~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb" - ], - "5.3.0-1023/25~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" - ], - "5.3.0-1028/30~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb" - ], - "5.3.0-1030/32~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" - ], - "5.3.0-1032/34~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" - ], - "5.3.0-1033/35": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" - ], - "5.3.0-1034/36": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" - ], - "5.3.0-1035/37": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb" - ], - "5.3.0-19/20~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb" - ], - "5.3.0-22/24~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb" - ], - "5.3.0-23/25~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" - ], - "5.3.0-24/26~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" - ], - "5.3.0-26/28~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" - ], - "5.3.0-28/30~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" - ], - "5.3.0-40/32~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb" - ], - "5.3.0-42/34~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb" - ], - "5.3.0-45/37~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" - ], - "5.3.0-46/38~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" - ], - "5.3.0-51/44~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" - ], - "5.3.0-53/47~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb" - ], - "5.3.0-59/53~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb" - ], - "5.3.0-61/55~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb" - ], - "5.3.0-62/56~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb" - ], - "5.3.0-64/58~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb" - ], - "5.4.0-1020/20~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" - ], - "5.4.0-1022/22~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb" - ], - "5.4.0-1024/24~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb" - ], - "5.4.0-1025/25~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb" - ], - "5.4.0-1028/29~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb" - ], - "5.4.0-1029/30~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" - ], - "5.4.0-1032/33~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" - ], - "5.4.0-1034/35~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" - ], - "5.4.0-1035/37~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb" - ], - "5.4.0-1037/39~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" - ], - "5.4.0-1038/40~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb" - ], - "5.4.0-1039/41~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb" - ], - "5.4.0-104/118~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" - ], - "5.4.0-1041/43~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb" - ], - "5.4.0-1043/45~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb" - ], - "5.4.0-1045/47~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb" - ], - "5.4.0-1046/50~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb" - ], - "5.4.0-1047/49~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb" - ], - "5.4.0-1048/50~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb" - ], - "5.4.0-1048/52~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" - ], - "5.4.0-1049/51~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb" - ], - "5.4.0-1051/53~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb" - ], - "5.4.0-1052/56~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb" - ], - "5.4.0-1053/57~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" - ], - "5.4.0-1054/57~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" - ], - "5.4.0-1054/58~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb" - ], - "5.4.0-1055/58~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb" - ], - "5.4.0-1055/59~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb" - ], - "5.4.0-1056/59~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb" - ], - "5.4.0-1056/60~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb" - ], - "5.4.0-1057/60~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb" - ], - "5.4.0-1057/61~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb" - ], - "5.4.0-1058/61~18.04.3": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" - ], - "5.4.0-1059/62~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" - ], - "5.4.0-1059/63~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb" - ], - "5.4.0-1060/63~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" - ], - "5.4.0-1061/64~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" - ], - "5.4.0-1061/65~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb" - ], - "5.4.0-1063/66~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" - ], - "5.4.0-1063/67~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" - ], - "5.4.0-1065/68~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb" - ], - "5.4.0-1066/71~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb" - ], - "5.4.0-1068/72~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_arm64.deb" - ], - "5.4.0-1069/75~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb" - ], - "5.4.0-107/121~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb" - ], - "5.4.0-1071/76~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" - ], - "5.4.0-37/41~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" - ], - "5.4.0-39/43~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb" - ], - "5.4.0-40/44~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb" - ], - "5.4.0-42/46~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" - ], - "5.4.0-45/49~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" - ], - "5.4.0-47/51~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" - ], - "5.4.0-48/52~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" - ], - "5.4.0-51/56~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" - ], - "5.4.0-52/57~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" - ], - "5.4.0-53/59~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" - ], - "5.4.0-58/64~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb" - ], - "5.4.0-59/65~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb" - ], - "5.4.0-60/67~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb" - ], - "5.4.0-62/70~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb" - ], - "5.4.0-65/73~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb" - ], - "5.4.0-66/74~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" - ], - "5.4.0-67/75~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb" - ], - "5.4.0-70/78~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb" - ], - "5.4.0-71/79~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb" - ], - "5.4.0-72/80~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb" - ], - "5.4.0-73/82~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" - ], - "5.4.0-74/83~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb" - ], - "5.4.0-77/86~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" - ], - "5.4.0-80/90~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb" - ], - "5.4.0-81/91~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb" - ], - "5.4.0-84/94~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb" - ], - "5.4.0-86/97~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb" - ], - "5.4.0-87/98~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" - ], - "5.4.0-89/100~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb" - ], - "5.4.0-90/101~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb" - ], - "5.4.0-92/103~18.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" - ], - "5.4.0-94/106~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" - ], - "5.4.0-96/109~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" - ], - "4.15.0-1037/39": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb" - ], - "4.15.0-124/127": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-124-generic_4.15.0-124.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" - ], - "4.15.0-134/138": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-134-generic_4.15.0-134.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" - ], - "4.15.0-38/41": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-38-generic_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb" - ], - "4.15.0-48/51": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-48-generic_4.15.0-48.51_arm64.deb" - ], - "4.18.0-18/19~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" - ], - "5.0.0-41/45~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb" - ], - "5.0.0-43/47~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" - ], - "5.0.0-44/48~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" - ], - "5.0.0-47/51~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" - ], - "5.0.0-48/52~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" - ], - "5.0.0-53/57~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" - ], - "5.0.0-58/62~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb" - ], - "5.0.0-60/64~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb" - ], - "5.3.0-1016/17~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" - ], - "5.4.0-1018/18~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" - ], - "5.4.0-1049/53~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb" - ], - "5.4.0-54/60~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" - ], - "5.4.0-64/72~18.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" - ], - "4.15.0-20/21": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-20-generic_4.15.0-20.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb" - ], - "5.15.0-1005/5": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb" - ], - "5.15.0-24/24": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-modules-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-modules-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb" - ], - "5.15.0-1002/4": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb" - ], - "5.15.0-1003/4": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb" - ], - "5.15.0-1003/6": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-modules-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-gcp/linux-image-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb" - ], - "5.15.0-1004/6": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb" - ], - "5.15.0-1004/4": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.15.0-1004-raspi_5.15.0-1004.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1004_5.15.0-1004.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.15.0-1004-raspi_5.15.0-1004.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1004-raspi_5.15.0-1004.4_arm64.deb" - ], - "5.15.0-23/23": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-23-lowlatency_5.15.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-23-lowlatency-64k_5.15.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-modules-5.15.0-23-lowlatency_5.15.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-23_5.15.0-23.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-23-lowlatency-64k_5.15.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-modules-5.15.0-23-lowlatency-64k_5.15.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-23-lowlatency_5.15.0-23.23_arm64.deb" - ], - "5.15.0-25/25": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.15.0-25-generic_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.15.0-25-generic_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb" - ], - "5.11.0-1022/23~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb" - ], - "5.11.0-1028/31~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb" - ], - "5.11.0-1029/32~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" - ], - "5.11.0-1029/32~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb" - ], - "5.11.0-40/44~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb" - ], - "5.11.0-41/45~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" - ], - "5.11.0-42/46~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb" - ], - "5.11.0-43/47~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb" - ], - "5.11.0-60/60": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-generic_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-generic_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb" - ], - "5.11.0-61/61": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-generic_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-generic_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb" - ], - "5.13.0-1014/15~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" - ], - "5.13.0-1014/16~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb" - ], - "5.13.0-1018/22~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb" - ], - "5.13.0-1019/21~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" - ], - "5.13.0-1020/22~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb" - ], - "5.13.0-1022/24~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb" - ], - "5.13.0-1022/26~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb" - ], - "5.13.0-1023/28~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb" - ], - "5.13.0-1026/31~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb" - ], - "5.13.0-19/19~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb" - ], - "5.13.0-21/21~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb" - ], - "5.13.0-22/22~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb" - ], - "5.13.0-28/31~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" - ], - "5.13.0-29/32~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb" - ], - "5.13.0-30/33~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb" - ], - "5.13.0-32/35~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb" - ], - "5.13.0-36/41~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb" - ], - "5.13.0-37/42~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb" - ], - "5.13.0-40/45~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" - ], - "5.15.0-18/18~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-generic-64k_5.15.0-18.18~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-generic_5.15.0-18.18~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-generic-64k_5.15.0-18.18~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-generic_5.15.0-18.18~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-generic-64k_5.15.0-18.18~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-generic_5.15.0-18.18~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-18_5.15.0-18.18~20.04.2_all.deb" - ], - "5.15.0-22/22~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-22-generic_5.15.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-22-generic-64k_5.15.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-22_5.15.0-22.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-22-generic-64k_5.15.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-22-generic-64k_5.15.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-22-generic_5.15.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-22-generic_5.15.0-22.22~20.04.1_arm64.deb" - ], - "5.15.0-23/23~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-23-generic_5.15.0-23.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-23-generic-64k_5.15.0-23.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-23-generic-64k_5.15.0-23.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-23-generic-64k_5.15.0-23.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-23_5.15.0-23.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-23-generic_5.15.0-23.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-23-generic_5.15.0-23.23~20.04.1_arm64.deb" - ], - "5.15.0-25/25~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-25-generic_5.15.0-25.25~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-25-generic_5.15.0-25.25~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-25-generic-64k_5.15.0-25.25~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-25-generic-64k_5.15.0-25.25~20.04.1_arm64.deb" - ], - "5.4.0-100/113": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-100-generic_5.4.0-100.113_arm64.deb" - ], - "5.4.0-102/115": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-102-generic_5.4.0-102.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_arm64.deb" - ], - "5.4.0-1026/29": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb" - ], - "5.4.0-1027/30": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1027_5.4.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb" - ], - "5.4.0-1028/31": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb" - ], - "5.4.0-1031/34": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1031_5.4.0-1031.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb" - ], - "5.4.0-1046/50": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" - ], - "5.4.0-105/119": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-105-generic_5.4.0-105.119_arm64.deb" - ], - "5.4.0-1051/57": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb" - ], - "5.4.0-1052/58": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" - ], - "5.4.0-1053/60": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" - ], - "5.4.0-1056/63": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb" - ], - "5.4.0-1057/61": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb" - ], - "5.4.0-1058/62": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb" - ], - "5.4.0-106/120": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-106-generic_5.4.0-106.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" - ], - "5.4.0-1062/66": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb" - ], - "5.4.0-1064/67": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" - ], - "5.4.0-1064/68": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" - ], - "5.4.0-1066/69": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb" - ], - "5.4.0-1067/72": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb" - ], - "5.4.0-1068/73": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb" - ], - "5.4.0-1069/73": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" - ], - "5.4.0-107/121": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-107-generic_5.4.0-107.121_arm64.deb" - ], - "5.4.0-1070/74": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb" - ], - "5.4.0-1070/76": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb" - ], - "5.4.0-1072/77": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" - ], - "5.4.0-1075/78": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" - ], - "5.4.0-108/122": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-108-generic_5.4.0-108.122_arm64.deb" - ], - "5.4.0-97/110": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-97-generic_5.4.0-97.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" - ], - "5.4.0-98/111": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-98-generic_5.4.0-98.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb" - ], - "5.4.0-99/112": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-99-generic_5.4.0-99.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" - ], - "5.8.0-67/75": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-generic_5.8.0-67.75_arm64.deb" - ], - "5.11.0-1014/15~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" - ], - "5.11.0-1016/17~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb" - ], - "5.11.0-1017/18~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" - ], - "5.11.0-1019/20~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" - ], - "5.11.0-1020/21~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" - ], - "5.11.0-1020/21~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" - ], - "5.11.0-1021/22~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb" - ], - "5.11.0-1021/22~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" - ], - "5.11.0-1023/24~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" - ], - "5.11.0-1025/27~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb" - ], - "5.11.0-1027/30~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" - ], - "5.11.0-1028/31~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb" - ], - "5.11.0-22/23~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb" - ], - "5.11.0-25/27~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb" - ], - "5.11.0-27/29~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" - ], - "5.11.0-34/36~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb" - ], - "5.11.0-36/40~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb" - ], - "5.11.0-37/41~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" - ], - "5.11.0-38/42~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" - ], - "5.11.0-44/48~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" - ], - "5.11.0-46/51~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb" - ], - "5.13.0-1008/9~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb" - ], - "5.13.0-1011/12~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb" - ], - "5.13.0-1011/13~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb" - ], - "5.13.0-1012/13~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" - ], - "5.13.0-1015/19~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb" - ], - "5.13.0-1016/20~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" - ], - "5.13.0-1017/19~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb" - ], - "5.13.0-1021/23~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" - ], - "5.13.0-1021/24~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb" - ], - "5.13.0-1021/26~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" - ], - "5.13.0-1025/30~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" - ], - "5.13.0-23/23~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb" - ], - "5.13.0-25/26~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" - ], - "5.13.0-27/29~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb" - ], - "5.13.0-35/40~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" - ], - "5.13.0-39/44~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" - ], - "5.4.0-1011/11": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" - ], - "5.4.0-1011/14": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb" - ], - "5.4.0-1012/15": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb" - ], - "5.4.0-1012/12": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" - ], - "5.4.0-1013/16": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb" - ], - "5.4.0-1013/13": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb" - ], - "5.4.0-1015/15": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" - ], - "5.4.0-1016/19": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb" - ], - "5.4.0-1016/17": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb" - ], - "5.4.0-1017/17": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb" - ], - "5.4.0-1018/18": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" - ], - "5.4.0-1018/20": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" - ], - "5.4.0-1019/22": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1019_5.4.0-1019.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb" - ], - "5.4.0-1019/21": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb" - ], - "5.4.0-1020/20": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb" - ], - "5.4.0-1020/23": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" - ], - "5.4.0-1021/21": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb" - ], - "5.4.0-1021/24": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb" - ], - "5.4.0-1022/22": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1022-aws_5.4.0-1022.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" - ], - "5.4.0-1022/25": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb" - ], - "5.4.0-1023/26": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb" - ], - "5.4.0-1024/24": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb" - ], - "5.4.0-1025/25": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb" - ], - "5.4.0-1025/28": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" - ], - "5.4.0-1028/29": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" - ], - "5.4.0-1029/30": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb" - ], - "5.4.0-1029/32": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb" - ], - "5.4.0-1030/33": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" - ], - "5.4.0-1032/33": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1032-aws_5.4.0-1032.33_arm64.deb" - ], - "5.4.0-1032/35": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" - ], - "5.4.0-1033/36": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" - ], - "5.4.0-1034/35": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" - ], - "5.4.0-1034/37": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" - ], - "5.4.0-1035/37": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" - ], - "5.4.0-1035/38": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb" - ], - "5.4.0-1036/39": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" - ], - "5.4.0-1037/39": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb" - ], - "5.4.0-1038/40": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb" - ], - "5.4.0-1038/41": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" - ], - "5.4.0-1039/41": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" - ], - "5.4.0-104/118": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-104-generic_5.4.0-104.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" - ], - "5.4.0-1041/43": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb" - ], - "5.4.0-1041/45": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb" - ], - "5.4.0-1042/46": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb" - ], - "5.4.0-1043/45": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" - ], - "5.4.0-1043/47": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb" - ], - "5.4.0-1044/48": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb" - ], - "5.4.0-1045/47": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb" - ], - "5.4.0-1045/49": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" - ], - "5.4.0-1047/49": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" - ], - "5.4.0-1047/52": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb" - ], - "5.4.0-1048/50": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb" - ], - "5.4.0-1048/52": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb" - ], - "5.4.0-1048/53": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" - ], - "5.4.0-1049/51": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb" - ], - "5.4.0-1050/56": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb" - ], - "5.4.0-1051/53": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb" - ], - "5.4.0-1052/56": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb" - ], - "5.4.0-1053/57": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb" - ], - "5.4.0-1054/57": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" - ], - "5.4.0-1054/58": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb" - ], - "5.4.0-1055/58": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb" - ], - "5.4.0-1055/59": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" - ], - "5.4.0-1055/62": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb" - ], - "5.4.0-1056/59": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" - ], - "5.4.0-1056/60": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60_arm64.deb" - ], - "5.4.0-1057/60": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb" - ], - "5.4.0-1058/61": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb" - ], - "5.4.0-1058/65": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb" - ], - "5.4.0-1059/62": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb" - ], - "5.4.0-1059/63": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb" - ], - "5.4.0-1060/63": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" - ], - "5.4.0-1061/64": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" - ], - "5.4.0-1061/65": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb" - ], - "5.4.0-1063/66": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb" - ], - "5.4.0-1063/67": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb" - ], - "5.4.0-1065/68": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb" - ], - "5.4.0-1066/71": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb" - ], - "5.4.0-1068/72": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb" - ], - "5.4.0-1069/75": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb" - ], - "5.4.0-1071/76": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" - ], - "5.4.0-28/32": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-28-generic_5.4.0-28.32_arm64.deb" - ], - "5.4.0-29/33": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-29-generic_5.4.0-29.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" - ], - "5.4.0-31/35": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-31-generic_5.4.0-31.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" - ], - "5.4.0-33/37": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-33-generic_5.4.0-33.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" - ], - "5.4.0-37/41": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-37-generic_5.4.0-37.41_arm64.deb" - ], - "5.4.0-39/43": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-39-generic_5.4.0-39.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb" - ], - "5.4.0-40/44": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-40-generic_5.4.0-40.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_arm64.deb" - ], - "5.4.0-42/46": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-42-generic_5.4.0-42.46_arm64.deb" - ], - "5.4.0-45/49": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-45-generic_5.4.0-45.49_arm64.deb" - ], - "5.4.0-47/51": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-47-generic_5.4.0-47.51_arm64.deb" - ], - "5.4.0-48/52": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-48-generic_5.4.0-48.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb" - ], - "5.4.0-51/56": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-51-generic_5.4.0-51.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb" - ], - "5.4.0-52/57": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-52-generic_5.4.0-52.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb" - ], - "5.4.0-53/59": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-53-generic_5.4.0-53.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb" - ], - "5.4.0-58/64": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-58-generic_5.4.0-58.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb" - ], - "5.4.0-59/65": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-59-generic_5.4.0-59.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" - ], - "5.4.0-60/67": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-60-generic_5.4.0-60.67_arm64.deb" - ], - "5.4.0-62/70": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-62-generic_5.4.0-62.70_arm64.deb" - ], - "5.4.0-65/73": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-65-generic_5.4.0-65.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb" - ], - "5.4.0-66/74": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-66-generic_5.4.0-66.74_arm64.deb" - ], - "5.4.0-67/75": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-67-generic_5.4.0-67.75_arm64.deb" - ], - "5.4.0-70/78": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-70-generic_5.4.0-70.78_arm64.deb" - ], - "5.4.0-71/79": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-71-generic_5.4.0-71.79_arm64.deb" - ], - "5.4.0-72/80": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-72-generic_5.4.0-72.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb" - ], - "5.4.0-73/82": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-73-generic_5.4.0-73.82_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_arm64.deb" - ], - "5.4.0-74/83": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-74-generic_5.4.0-74.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" - ], - "5.4.0-77/86": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-77-generic_5.4.0-77.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" - ], - "5.4.0-80/90": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-80-generic_5.4.0-80.90_arm64.deb" - ], - "5.4.0-81/91": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-81-generic_5.4.0-81.91_arm64.deb" - ], - "5.4.0-84/94": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-84-generic_5.4.0-84.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb" - ], - "5.4.0-86/97": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-86-generic_5.4.0-86.97_arm64.deb" - ], - "5.4.0-88/99": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-88-generic_5.4.0-88.99_arm64.deb" - ], - "5.4.0-89/100": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-89-generic_5.4.0-89.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" - ], - "5.4.0-90/101": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-90-generic_5.4.0-90.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" - ], - "5.4.0-91/102": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-91-generic_5.4.0-91.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" - ], - "5.4.0-92/103": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-92-generic_5.4.0-92.103_arm64.deb" - ], - "5.4.0-94/106": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-94-generic_5.4.0-94.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb" - ], - "5.4.0-96/109": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-96-generic_5.4.0-96.109_arm64.deb" - ], - "5.8.0-1031/32~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb" - ], - "5.8.0-1033/34~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" - ], - "5.8.0-1035/37~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb" - ], - "5.8.0-1037/38~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" - ], - "5.8.0-1038/40~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb" - ], - "5.8.0-1038/39~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb" - ], - "5.8.0-1041/43~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" - ], - "5.8.0-1042/44~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" - ], - "5.8.0-33/36~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb" - ], - "5.8.0-34/37~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" - ], - "5.8.0-36/40~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb" - ], - "5.8.0-38/43~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb" - ], - "5.8.0-41/46~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb" - ], - "5.8.0-43/49~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb" - ], - "5.8.0-44/50~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb" - ], - "5.8.0-45/51~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb" - ], - "5.8.0-48/54~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" - ], - "5.8.0-49/55~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb" - ], - "5.8.0-50/56~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" - ], - "5.8.0-53/60~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb" - ], - "5.8.0-55/62~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" - ], - "5.8.0-59/66~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" - ], - "5.8.0-63/71~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb" - ], - "5.11.0-1009/9~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb" - ], - "5.4.0-1007/10": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-modules-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb" - ], - "5.4.0-1049/53": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb" - ], - "5.4.0-54/60": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-54-generic_5.4.0-54.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" - ], - "5.4.0-64/72": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-64-generic_5.4.0-64.72_arm64.deb" - ], - "5.8.0-1034/35~20.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" - ], - "5.8.0-23/24~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb" - ], - "5.8.0-25/26~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" - ], - "5.8.0-28/30~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" - ], - "5.8.0-29/31~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb" - ], - "5.8.0-40/45~20.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb" - ], - "5.4.0-1008/8": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb" - ], - "5.4.0-1009/9": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb" - ], - "5.4.0-26/30": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.4.0-26-generic_5.4.0-26.30_arm64.deb" - ], - "5.11.0-1021/22": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb" - ], - "5.11.0-1022/23": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb" - ], - "5.11.0-1027/30": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" - ], - "5.11.0-49/55": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.11.0-49-generic_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.11.0-49-generic_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" - ], - "5.11.0-1006/6": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb" - ], - "5.11.0-1007/7": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb" - ], - "5.11.0-16/17": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.11.0-16-generic_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.11.0-16-generic_5.11.0-16.17_arm64.deb" - ], - "5.13.0-1007/8": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb" - ], - "5.13.0-1010/12": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" - ], - "5.13.0-1013/14": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" - ], - "5.13.0-1014/15": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb" - ], - "5.13.0-1014/16": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb" - ], - "5.13.0-1016/20": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb" - ], - "5.13.0-1017/21": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" - ], - "5.13.0-1017/19": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" - ], - "5.13.0-1018/20": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb" - ], - "5.13.0-1018/22": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb" - ], - "5.13.0-1019/21": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb" - ], - "5.13.0-1020/22": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" - ], - "5.13.0-1021/23": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" - ], - "5.13.0-1022/24": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-aws/linux-image-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" - ], - "5.13.0-1022/26": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb" - ], - "5.13.0-1022/27": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb" - ], - "5.13.0-1023/28": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb" - ], - "5.13.0-1023/25": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" - ], - "5.13.0-1024/29": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb" - ], - "5.13.0-1025/27": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" - ], - "5.13.0-1026/31": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb" - ], - "5.13.0-28/31": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-28-generic_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-28-generic_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" - ], - "5.13.0-29/32": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-29-generic_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-29-generic_5.13.0-29.32_arm64.deb" - ], - "5.13.0-30/33": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-30-generic_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-30-generic_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb" - ], - "5.13.0-32/35": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-32-generic_5.13.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-32-generic_5.13.0-32.35_arm64.deb" - ], - "5.13.0-36/41": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-36-generic_5.13.0-36.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-36-generic_5.13.0-36.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb" - ], - "5.13.0-37/42": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-37-generic_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-37-generic_5.13.0-37.42_arm64.deb" - ], - "5.13.0-38/43": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-38-generic_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-38-generic_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb" - ], - "5.13.0-40/45": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-40-generic_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-40-generic_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" - ], - "5.13.0-1006/7": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb" - ], - "5.13.0-1008/9": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb" - ], - "5.13.0-1009/10": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb" - ], - "5.13.0-1009/11": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb" - ], - "5.13.0-1011/12": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" - ], - "5.13.0-1011/13": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" - ], - "5.13.0-1012/13": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb" - ], - "5.13.0-1012/14": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" - ], - "5.13.0-1013/16": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb" - ], - "5.13.0-1013/15": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb" - ], - "5.13.0-1015/19": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" - ], - "5.13.0-1015/17": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb" - ], - "5.13.0-1016/18": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb" - ], - "5.13.0-1021/24": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-modules-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-azure/linux-image-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb" - ], - "5.13.0-1021/26": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" - ], - "5.13.0-1024/26": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-image-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-modules-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb" - ], - "5.13.0-1025/30": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb" - ], - "5.13.0-21/21": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-21-generic_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-21-generic_5.13.0-21.21_arm64.deb" - ], - "5.13.0-22/22": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-22-generic_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-22-generic_5.13.0-22.22_arm64.deb" - ], - "5.13.0-23/23": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-23-generic_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-23-generic_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb" - ], - "5.13.0-25/26": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-25-generic_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-25-generic_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb" - ], - "5.13.0-27/29": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-27-generic_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-27-generic_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb" - ], - "5.13.0-35/40": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-35-generic_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-35-generic_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" - ], - "5.13.0-39/44": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-39-generic_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-39-generic_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb" - ], - "5.13.0-20/20": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-20-generic_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-20-generic_5.13.0-20.20_arm64.deb" - ], - "5.13.0-1005/6": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-modules-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-image-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb" - ], - "5.13.0-1008/10": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-modules-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" - ], - "5.13.0-19/19": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-signed/linux-image-5.13.0-19-generic_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-5.13.0-19-generic_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb" - ], - "3.13.0-100/147": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-100-generic_3.13.0-100.147_arm64.deb" - ], - "3.13.0-101/148": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-101-generic_3.13.0-101.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" - ], - "3.13.0-103/150": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-103-generic_3.13.0-103.150_arm64.deb" - ], - "3.13.0-105/152": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-105-generic_3.13.0-105.152_arm64.deb" - ], - "3.13.0-106/153": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-106-generic_3.13.0-106.153_arm64.deb" - ], - "3.13.0-107/154": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-107-generic_3.13.0-107.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" - ], - "3.13.0-108/155": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-108-generic_3.13.0-108.155_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" - ], - "3.13.0-109/156": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-109-generic_3.13.0-109.156_arm64.deb" - ], - "3.13.0-110/157": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-110-generic_3.13.0-110.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb" - ], - "3.13.0-112/159": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-112-generic_3.13.0-112.159_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb" - ], - "3.13.0-115/162": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-115-generic_3.13.0-115.162_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" - ], - "3.13.0-116/163": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-116-generic_3.13.0-116.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" - ], - "3.13.0-117/164": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-117-generic_3.13.0-117.164_arm64.deb" - ], - "3.13.0-119/166": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-119-generic_3.13.0-119.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" - ], - "3.13.0-121/170": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-121-generic_3.13.0-121.170_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" - ], - "3.13.0-123/172": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-123-generic_3.13.0-123.172_arm64.deb" - ], - "3.13.0-125/174": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-125-generic_3.13.0-125.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" - ], - "3.13.0-126/175": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-126-generic_3.13.0-126.175_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" - ], - "3.13.0-128/177": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-128-generic_3.13.0-128.177_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" - ], - "3.13.0-129/178": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-129-generic_3.13.0-129.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" - ], - "3.13.0-132/181": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-132-generic_3.13.0-132.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb" - ], - "3.13.0-133/182": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-133-generic_3.13.0-133.182_arm64.deb" - ], - "3.13.0-135/184": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-135-generic_3.13.0-135.184_arm64.deb" - ], - "3.13.0-137/186": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-137-generic_3.13.0-137.186_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" - ], - "3.13.0-139/188": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-139-generic_3.13.0-139.188_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" - ], - "3.13.0-141/190": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-141-generic_3.13.0-141.190_arm64.deb" - ], - "3.13.0-142/191": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-142-generic_3.13.0-142.191_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb" - ], - "3.13.0-143/192": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-143-generic_3.13.0-143.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" - ], - "3.13.0-144/193": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-144-generic_3.13.0-144.193_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb" - ], - "3.13.0-147/196": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-147-generic_3.13.0-147.196_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" - ], - "3.13.0-149/199": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-149-generic_3.13.0-149.199_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_arm64.deb" - ], - "3.13.0-151/201": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-151-generic_3.13.0-151.201_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb" - ], - "3.13.0-153/203": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-153-generic_3.13.0-153.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" - ], - "3.13.0-155/205": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-155-generic_3.13.0-155.205_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" - ], - "3.13.0-156/206": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-156-generic_3.13.0-156.206_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" - ], - "3.13.0-157/207": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-157-generic_3.13.0-157.207_arm64.deb" - ], - "3.13.0-160/210": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-160-generic_3.13.0-160.210_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" - ], - "3.13.0-161/211": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-161-generic_3.13.0-161.211_arm64.deb" - ], - "3.13.0-162/212": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-162-generic_3.13.0-162.212_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" - ], - "3.13.0-164/214": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-164-generic_3.13.0-164.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" - ], - "3.13.0-165/215": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-165-generic_3.13.0-165.215_arm64.deb" - ], - "3.13.0-166/216": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-166-generic_3.13.0-166.216_arm64.deb" - ], - "3.13.0-167/217": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-167-generic_3.13.0-167.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" - ], - "3.13.0-168/218": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-168-generic_3.13.0-168.218_arm64.deb" - ], - "3.13.0-170/220": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-170-generic_3.13.0-170.220_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb" - ], - "3.13.0-24/47": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb" - ], - "3.13.0-27/50": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-27-generic_3.13.0-27.50_arm64.deb" - ], - "3.13.0-29/53": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-29-generic_3.13.0-29.53_arm64.deb" - ], - "3.13.0-30/55": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-30-generic_3.13.0-30.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" - ], - "3.13.0-32/57": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-32-generic_3.13.0-32.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" - ], - "3.13.0-33/58": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-33-generic_3.13.0-33.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb" - ], - "3.13.0-34/60": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-34-generic_3.13.0-34.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" - ], - "3.13.0-35/62": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-35-generic_3.13.0-35.62_arm64.deb" - ], - "3.13.0-36/63": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-36-generic_3.13.0-36.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" - ], - "3.13.0-37/64": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-37-generic_3.13.0-37.64_arm64.deb" - ], - "3.13.0-39/66": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-39-generic_3.13.0-39.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb" - ], - "3.13.0-40/69": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-40-generic_3.13.0-40.69_arm64.deb" - ], - "3.13.0-41/70": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-41-generic_3.13.0-41.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb" - ], - "3.13.0-43/72": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-43-generic_3.13.0-43.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb" - ], - "3.13.0-44/73": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-44-generic_3.13.0-44.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb" - ], - "3.13.0-46/79": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-46-generic_3.13.0-46.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_arm64.deb" - ], - "3.13.0-48/80": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-48-generic_3.13.0-48.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_arm64.deb" - ], - "3.13.0-49/83": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-49-generic_3.13.0-49.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb" - ], - "3.13.0-51/84": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-51-generic_3.13.0-51.84_arm64.deb" - ], - "3.13.0-52/86": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-52-generic_3.13.0-52.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" - ], - "3.13.0-53/89": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-53-generic_3.13.0-53.89_arm64.deb" - ], - "3.13.0-54/91": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-54-generic_3.13.0-54.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb" - ], - "3.13.0-55/94": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-55-generic_3.13.0-55.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb" - ], - "3.13.0-57/95": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-57-generic_3.13.0-57.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" - ], - "3.13.0-58/97": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-58-generic_3.13.0-58.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" - ], - "3.13.0-59/98": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-59-generic_3.13.0-59.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb" - ], - "3.13.0-61/100": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-61-generic_3.13.0-61.100_arm64.deb" - ], - "3.13.0-62/102": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-62-generic_3.13.0-62.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" - ], - "3.13.0-63/103": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-63-generic_3.13.0-63.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb" - ], - "3.13.0-65/106": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-65-generic_3.13.0-65.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" - ], - "3.13.0-66/108": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-66-generic_3.13.0-66.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" - ], - "3.13.0-67/110": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-67-generic_3.13.0-67.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" - ], - "3.13.0-68/111": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-68-generic_3.13.0-68.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" - ], - "3.13.0-70/113": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-70-generic_3.13.0-70.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" - ], - "3.13.0-71/114": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-71-generic_3.13.0-71.114_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb" - ], - "3.13.0-73/116": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-73-generic_3.13.0-73.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb" - ], - "3.13.0-74/118": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-74-generic_3.13.0-74.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb" - ], - "3.13.0-76/120": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-76-generic_3.13.0-76.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb" - ], - "3.13.0-77/121": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-77-generic_3.13.0-77.121_arm64.deb" - ], - "3.13.0-79/123": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-79-generic_3.13.0-79.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb" - ], - "3.13.0-83/127": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-83-generic_3.13.0-83.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb" - ], - "3.13.0-85/129": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-85-generic_3.13.0-85.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb" - ], - "3.13.0-86/131": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-86-generic_3.13.0-86.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb" - ], - "3.13.0-87/133": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-87-generic_3.13.0-87.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" - ], - "3.13.0-88/135": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-88-generic_3.13.0-88.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" - ], - "3.13.0-91/138": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-91-generic_3.13.0-91.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" - ], - "3.13.0-92/139": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-92-generic_3.13.0-92.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" - ], - "3.13.0-93/140": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-93-generic_3.13.0-93.140_arm64.deb" - ], - "3.13.0-95/142": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-95-generic_3.13.0-95.142_arm64.deb" - ], - "3.13.0-96/143": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-96-generic_3.13.0-96.143_arm64.deb" - ], - "3.13.0-98/145": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-98-generic_3.13.0-98.145_arm64.deb" - ], - "3.16.0-25/33~14.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb" - ], - "3.16.0-26/35~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb" - ], - "3.16.0-28/38~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" - ], - "3.16.0-29/39~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" - ], - "3.16.0-31/43~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb" - ], - "3.16.0-33/44~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" - ], - "3.16.0-34/47~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb" - ], - "3.16.0-36/48~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" - ], - "3.16.0-37/51~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" - ], - "3.16.0-38/52~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" - ], - "3.16.0-39/53~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb" - ], - "3.16.0-41/57~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb" - ], - "3.16.0-43/58~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" - ], - "3.16.0-44/59~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb" - ], - "3.16.0-45/60~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb" - ], - "3.16.0-46/62~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb" - ], - "3.16.0-48/64~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" - ], - "3.16.0-49/65~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb" - ], - "3.16.0-50/67~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" - ], - "3.16.0-51/69~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb" - ], - "3.16.0-52/71~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" - ], - "3.16.0-53/72~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" - ], - "3.16.0-55/74~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" - ], - "3.16.0-56/75~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb" - ], - "3.16.0-57/77~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb" - ], - "3.16.0-59/79~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb" - ], - "3.16.0-60/80~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" - ], - "3.16.0-62/83~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb" - ], - "3.16.0-67/87~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb" - ], - "3.16.0-69/89~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" - ], - "3.16.0-70/90~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb" - ], - "3.16.0-71/92~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb" - ], - "3.16.0-73/95~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb" - ], - "3.16.0-76/98~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" - ], - "3.16.0-77/99~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb" - ], - "3.19.0-20/20~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb" - ], - "3.19.0-21/21~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb" - ], - "3.19.0-22/22~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb" - ], - "3.19.0-23/24~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb" - ], - "3.19.0-25/26~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" - ], - "3.19.0-26/28~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb" - ], - "3.19.0-28/30~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb" - ], - "3.19.0-30/34~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb" - ], - "3.19.0-31/36~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" - ], - "3.19.0-32/37~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" - ], - "3.19.0-33/38~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" - ], - "3.19.0-37/42~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb" - ], - "3.19.0-39/44~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" - ], - "3.19.0-41/46~14.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb" - ], - "3.19.0-42/48~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb" - ], - "3.19.0-43/49~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" - ], - "3.19.0-47/53~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb" - ], - "3.19.0-49/55~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb" - ], - "3.19.0-51/58~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb" - ], - "3.19.0-56/62~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" - ], - "3.19.0-58/64~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb" - ], - "3.19.0-59/66~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" - ], - "3.19.0-61/69~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" - ], - "3.19.0-64/72~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb" - ], - "3.19.0-65/73~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb" - ], - "3.19.0-66/74~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb" - ], - "3.19.0-68/76~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" - ], - "3.19.0-69/77~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" - ], - "3.19.0-71/79~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb" - ], - "3.19.0-73/81~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" - ], - "3.19.0-74/82~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb" - ], - "3.19.0-75/83~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" - ], - "3.19.0-77/85~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb" - ], - "3.19.0-78/86~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb" - ], - "3.19.0-79/87~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb" - ], - "3.19.0-80/88~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb" - ], - "4.2.0-18/22~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb" - ], - "4.2.0-19/23~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" - ], - "4.2.0-21/25~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" - ], - "4.2.0-22/27~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" - ], - "4.2.0-23/28~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" - ], - "4.2.0-25/30~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb" - ], - "4.2.0-27/32~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" - ], - "4.2.0-30/36~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb" - ], - "4.2.0-34/39~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" - ], - "4.2.0-35/40~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-generic_4.2.0-35.40~14.04.1_arm64.deb" - ], - "4.2.0-36/42~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" - ], - "4.2.0-38/45~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" - ], - "4.2.0-41/48~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" - ], - "4.2.0-42/49~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" - ], - "4.4.0-101/124~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb" - ], - "4.4.0-103/126~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" - ], - "4.4.0-104/127~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb" - ], - "4.4.0-108/131~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb" - ], - "4.4.0-109/132~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb" - ], - "4.4.0-111/134~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" - ], - "4.4.0-112/135~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb" - ], - "4.4.0-116/140~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb" - ], - "4.4.0-119/143~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb" - ], - "4.4.0-121/145~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb" - ], - "4.4.0-124/148~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" - ], - "4.4.0-127/153~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb" - ], - "4.4.0-128/154~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb" - ], - "4.4.0-130/156~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb" - ], - "4.4.0-133/159~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb" - ], - "4.4.0-134/160~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" - ], - "4.4.0-137/163~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" - ], - "4.4.0-138/164~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" - ], - "4.4.0-139/165~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb" - ], - "4.4.0-141/167~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" - ], - "4.4.0-142/168~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb" - ], - "4.4.0-143/169~14.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" - ], - "4.4.0-144/170~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb" - ], - "4.4.0-148/174~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" - ], - "4.4.0-21/37~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb" - ], - "4.4.0-22/40~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb" - ], - "4.4.0-24/43~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" - ], - "4.4.0-28/47~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" - ], - "4.4.0-31/50~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-generic_4.4.0-31.50~14.04.1_arm64.deb" - ], - "4.4.0-34/53~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" - ], - "4.4.0-36/55~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" - ], - "4.4.0-38/57~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb" - ], - "4.4.0-42/62~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb" - ], - "4.4.0-45/66~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb" - ], - "4.4.0-47/68~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb" - ], - "4.4.0-51/72~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb" - ], - "4.4.0-53/74~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb" - ], - "4.4.0-57/78~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb" - ], - "4.4.0-59/80~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb" - ], - "4.4.0-62/83~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb" - ], - "4.4.0-63/84~14.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" - ], - "4.4.0-64/85~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb" - ], - "4.4.0-66/87~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb" - ], - "4.4.0-67/88~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" - ], - "4.4.0-70/91~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb" - ], - "4.4.0-71/92~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" - ], - "4.4.0-72/93~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" - ], - "4.4.0-75/96~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb" - ], - "4.4.0-78/99~14.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb" - ], - "4.4.0-79/100~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" - ], - "4.4.0-81/104~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" - ], - "4.4.0-83/106~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" - ], - "4.4.0-87/110~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" - ], - "4.4.0-89/112~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" - ], - "4.4.0-91/114~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" - ], - "4.4.0-92/115~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" - ], - "4.4.0-93/116~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb" - ], - "4.4.0-96/119~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" - ], - "4.4.0-97/120~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" - ], - "4.4.0-98/121~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb" - ], - "3.13.0-113/160": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-113-generic_3.13.0-113.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb" - ], - "3.13.0-145/194": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-145-generic_3.13.0-145.194_arm64.deb" - ], - "3.13.0-158/208": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-158-generic_3.13.0-158.208_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb" - ], - "3.13.0-163/213": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-163-generic_3.13.0-163.213_arm64.deb" - ], - "3.13.0-169/219": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-3.13.0-169-generic_3.13.0-169.219_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" - ], - "3.13.0-45/74": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-45-generic_3.13.0-45.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" - ], - "3.16.0-30/40~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb" - ], - "3.16.0-40/54~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" - ], - "3.19.0-18/18~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb" - ], - "4.4.0-131/157~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" - ], - "4.4.0-135/161~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" - ], - "4.4.0-140/166~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb" - ], - "4.4.0-146/172~14.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" - ], - "3.13.0-24/46": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.46_arm64.deb" - ], - "4.15.0-1095/102~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb" - ], - "4.15.0-1096/103~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb" - ], - "4.4.0-206/238": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-206-generic_4.4.0-206.238_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" - ], - "4.4.0-207/239": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-207-generic_4.4.0-207.239_arm64.deb" - ], - "4.10.0-14/16~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb" - ], - "4.10.0-19/21~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb" - ], - "4.10.0-20/22~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" - ], - "4.10.0-21/23~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb" - ], - "4.10.0-22/24~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" - ], - "4.10.0-24/28~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" - ], - "4.10.0-26/30~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb" - ], - "4.10.0-27/30~16.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb" - ], - "4.10.0-28/32~16.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb" - ], - "4.10.0-30/34~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" - ], - "4.10.0-32/36~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb" - ], - "4.10.0-33/37~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb" - ], - "4.10.0-35/39~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb" - ], - "4.10.0-37/41~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb" - ], - "4.10.0-38/42~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" - ], - "4.10.0-40/44~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" - ], - "4.10.0-42/46~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb" - ], - "4.11.0-13/19~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb" - ], - "4.11.0-14/20~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" - ], - "4.13.0-16/19~16.04.3": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" - ], - "4.13.0-17/20~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" - ], - "4.13.0-19/22~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb" - ], - "4.13.0-21/24~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb" - ], - "4.13.0-25/29~16.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb" - ], - "4.13.0-26/29~16.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb" - ], - "4.13.0-31/34~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb" - ], - "4.13.0-32/35~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" - ], - "4.13.0-36/40~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb" - ], - "4.13.0-37/42~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb" - ], - "4.13.0-38/43~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" - ], - "4.13.0-39/44~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb" - ], - "4.13.0-41/46~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" - ], - "4.13.0-43/48~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" - ], - "4.13.0-45/50~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb" - ], - "4.15.0-101/102~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" - ], - "4.15.0-106/107~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb" - ], - "4.15.0-107/108~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb" - ], - "4.15.0-1093/99~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" - ], - "4.15.0-1094/101~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" - ], - "4.15.0-1097/104~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb" - ], - "4.15.0-1098/105~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb" - ], - "4.15.0-1099/106~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" - ], - "4.15.0-112/113~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb" - ], - "4.15.0-115/116~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" - ], - "4.15.0-117/118~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" - ], - "4.15.0-118/119~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" - ], - "4.15.0-120/122~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb" - ], - "4.15.0-122/124~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" - ], - "4.15.0-123/126~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" - ], - "4.15.0-128/131~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb" - ], - "4.15.0-129/132~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb" - ], - "4.15.0-13/14~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" - ], - "4.15.0-132/136~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb" - ], - "4.15.0-133/137~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" - ], - "4.15.0-136/140~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" - ], - "4.15.0-137/141~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb" - ], - "4.15.0-139/143~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" - ], - "4.15.0-140/144~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb" - ], - "4.15.0-142/146~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" - ], - "4.15.0-15/16~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb" - ], - "4.15.0-20/21~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" - ], - "4.15.0-22/24~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb" - ], - "4.15.0-23/25~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" - ], - "4.15.0-24/26~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" - ], - "4.15.0-29/31~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb" - ], - "4.15.0-30/32~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb" - ], - "4.15.0-32/35~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" - ], - "4.15.0-33/36~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" - ], - "4.15.0-34/37~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb" - ], - "4.15.0-36/39~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb" - ], - "4.15.0-39/42~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" - ], - "4.15.0-42/45~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb" - ], - "4.15.0-43/46~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" - ], - "4.15.0-45/48~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb" - ], - "4.15.0-46/49~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" - ], - "4.15.0-47/50~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb" - ], - "4.15.0-50/54~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" - ], - "4.15.0-51/55~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" - ], - "4.15.0-52/56~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb" - ], - "4.15.0-54/58~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb" - ], - "4.15.0-55/60~16.04.2": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" - ], - "4.15.0-58/64~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb" - ], - "4.15.0-60/67~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb" - ], - "4.15.0-62/69~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb" - ], - "4.15.0-64/73~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" - ], - "4.15.0-65/74~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" - ], - "4.15.0-66/75~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb" - ], - "4.15.0-69/78~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb" - ], - "4.15.0-70/79~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb" - ], - "4.15.0-72/81~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" - ], - "4.15.0-74/83~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" - ], - "4.15.0-76/86~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" - ], - "4.15.0-88/88~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" - ], - "4.15.0-91/92~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" - ], - "4.15.0-96/97~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb" - ], - "4.15.0-99/100~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" - ], - "4.4.0-101/124": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-101-generic_4.4.0-101.124_arm64.deb" - ], - "4.4.0-103/126": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-103-generic_4.4.0-103.126_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" - ], - "4.4.0-104/127": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-104-generic_4.4.0-104.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" - ], - "4.4.0-108/131": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-108-generic_4.4.0-108.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb" - ], - "4.4.0-109/132": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-109-generic_4.4.0-109.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb" - ], - "4.4.0-112/135": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-112-generic_4.4.0-112.135_arm64.deb" - ], - "4.4.0-116/140": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-116-generic_4.4.0-116.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" - ], - "4.4.0-119/143": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-119-generic_4.4.0-119.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_arm64.deb" - ], - "4.4.0-121/145": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-121-generic_4.4.0-121.145_arm64.deb" - ], - "4.4.0-124/148": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-124-generic_4.4.0-124.148_arm64.deb" - ], - "4.4.0-127/153": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-127-generic_4.4.0-127.153_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb" - ], - "4.4.0-128/154": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-128-generic_4.4.0-128.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" - ], - "4.4.0-130/156": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-130-generic_4.4.0-130.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" - ], - "4.4.0-133/159": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-133-generic_4.4.0-133.159_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" - ], - "4.4.0-134/160": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-134-generic_4.4.0-134.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" - ], - "4.4.0-137/163": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-137-generic_4.4.0-137.163_arm64.deb" - ], - "4.4.0-138/164": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-138-generic_4.4.0-138.164_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" - ], - "4.4.0-139/165": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-139-generic_4.4.0-139.165_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb" - ], - "4.4.0-141/167": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-141-generic_4.4.0-141.167_arm64.deb" - ], - "4.4.0-142/168": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-142-generic_4.4.0-142.168_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb" - ], - "4.4.0-143/169": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-143-generic_4.4.0-143.169_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb" - ], - "4.4.0-145/171": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-145-generic_4.4.0-145.171_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" - ], - "4.4.0-148/174": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-148-generic_4.4.0-148.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" - ], - "4.4.0-150/176": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-150-generic_4.4.0-150.176_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" - ], - "4.4.0-151/178": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-151-generic_4.4.0-151.178_arm64.deb" - ], - "4.4.0-154/181": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-154-generic_4.4.0-154.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb" - ], - "4.4.0-157/185": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-157-generic_4.4.0-157.185_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb" - ], - "4.4.0-159/187": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-159-generic_4.4.0-159.187_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb" - ], - "4.4.0-161/189": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-161-generic_4.4.0-161.189_arm64.deb" - ], - "4.4.0-164/192": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-164-generic_4.4.0-164.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb" - ], - "4.4.0-165/193": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-165-generic_4.4.0-165.193_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" - ], - "4.4.0-166/195": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-166-generic_4.4.0-166.195_arm64.deb" - ], - "4.4.0-168/197": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-168-generic_4.4.0-168.197_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" - ], - "4.4.0-169/198": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-169-generic_4.4.0-169.198_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" - ], - "4.4.0-170/199": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-170-generic_4.4.0-170.199_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb" - ], - "4.4.0-171/200": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-171-generic_4.4.0-171.200_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" - ], - "4.4.0-173/203": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-173-generic_4.4.0-173.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" - ], - "4.4.0-174/204": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-174-generic_4.4.0-174.204_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" - ], - "4.4.0-176/206": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-176-generic_4.4.0-176.206_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" - ], - "4.4.0-177/207": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-177-generic_4.4.0-177.207_arm64.deb" - ], - "4.4.0-178/208": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-178-generic_4.4.0-178.208_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" - ], - "4.4.0-179/209": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-179-generic_4.4.0-179.209_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb" - ], - "4.4.0-184/214": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-184-generic_4.4.0-184.214_arm64.deb" - ], - "4.4.0-185/215": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-185-generic_4.4.0-185.215_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_arm64.deb" - ], - "4.4.0-186/216": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-186-generic_4.4.0-186.216_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb" - ], - "4.4.0-187/217": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-187-generic_4.4.0-187.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" - ], - "4.4.0-189/219": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-189-generic_4.4.0-189.219_arm64.deb" - ], - "4.4.0-190/220": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-190-generic_4.4.0-190.220_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" - ], - "4.4.0-193/224": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-193-generic_4.4.0-193.224_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" - ], - "4.4.0-194/226": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-194-generic_4.4.0-194.226_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb" - ], - "4.4.0-197/229": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-197-generic_4.4.0-197.229_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" - ], - "4.4.0-198/230": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-198-generic_4.4.0-198.230_arm64.deb" - ], - "4.4.0-200/232": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-200-generic_4.4.0-200.232_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" - ], - "4.4.0-201/233": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-201-generic_4.4.0-201.233_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" - ], - "4.4.0-203/235": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-203-generic_4.4.0-203.235_arm64.deb" - ], - "4.4.0-204/236": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-204-generic_4.4.0-204.236_arm64.deb" - ], - "4.4.0-208/240": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-208-generic_4.4.0-208.240_arm64.deb" - ], - "4.4.0-209/241": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-209-generic_4.4.0-209.241_arm64.deb" - ], - "4.4.0-210/242": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-210-generic_4.4.0-210.242_arm64.deb" - ], - "4.4.0-22/40": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-22-generic_4.4.0-22.40_arm64.deb" - ], - "4.4.0-24/43": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-24-generic_4.4.0-24.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb" - ], - "4.4.0-28/47": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-28-generic_4.4.0-28.47_arm64.deb" - ], - "4.4.0-31/50": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-31-generic_4.4.0-31.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb" - ], - "4.4.0-34/53": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-34-generic_4.4.0-34.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" - ], - "4.4.0-36/55": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-36-generic_4.4.0-36.55_arm64.deb" - ], - "4.4.0-38/57": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-38-generic_4.4.0-38.57_arm64.deb" - ], - "4.4.0-42/62": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-42-generic_4.4.0-42.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" - ], - "4.4.0-45/66": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-45-generic_4.4.0-45.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" - ], - "4.4.0-47/68": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-47-generic_4.4.0-47.68_arm64.deb" - ], - "4.4.0-51/72": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-51-generic_4.4.0-51.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb" - ], - "4.4.0-53/74": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-53-generic_4.4.0-53.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" - ], - "4.4.0-57/78": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-57-generic_4.4.0-57.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" - ], - "4.4.0-59/80": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-59-generic_4.4.0-59.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_arm64.deb" - ], - "4.4.0-62/83": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-62-generic_4.4.0-62.83_arm64.deb" - ], - "4.4.0-63/84": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-63-generic_4.4.0-63.84_arm64.deb" - ], - "4.4.0-64/85": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-64-generic_4.4.0-64.85_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" - ], - "4.4.0-66/87": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-66-generic_4.4.0-66.87_arm64.deb" - ], - "4.4.0-67/88": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-67-generic_4.4.0-67.88_arm64.deb" - ], - "4.4.0-70/91": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-70-generic_4.4.0-70.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb" - ], - "4.4.0-71/92": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-71-generic_4.4.0-71.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" - ], - "4.4.0-72/93": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-72-generic_4.4.0-72.93_arm64.deb" - ], - "4.4.0-75/96": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-75-generic_4.4.0-75.96_arm64.deb" - ], - "4.4.0-78/99": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-78-generic_4.4.0-78.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" - ], - "4.4.0-79/100": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-79-generic_4.4.0-79.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" - ], - "4.4.0-81/104": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-81-generic_4.4.0-81.104_arm64.deb" - ], - "4.4.0-83/106": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-83-generic_4.4.0-83.106_arm64.deb" - ], - "4.4.0-87/110": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-87-generic_4.4.0-87.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb" - ], - "4.4.0-89/112": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-89-generic_4.4.0-89.112_arm64.deb" - ], - "4.4.0-91/114": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-91-generic_4.4.0-91.114_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb" - ], - "4.4.0-92/115": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-92-generic_4.4.0-92.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" - ], - "4.4.0-93/116": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-93-generic_4.4.0-93.116_arm64.deb" - ], - "4.4.0-96/119": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-96-generic_4.4.0-96.119_arm64.deb" - ], - "4.4.0-97/120": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-97-generic_4.4.0-97.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" - ], - "4.4.0-98/121": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-98-generic_4.4.0-98.121_arm64.deb" - ], - "4.8.0-34/36~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb" - ], - "4.8.0-36/36~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" - ], - "4.8.0-39/42~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb" - ], - "4.8.0-41/44~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" - ], - "4.8.0-45/48~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" - ], - "4.8.0-46/49~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb" - ], - "4.8.0-49/52~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" - ], - "4.8.0-52/55~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb" - ], - "4.8.0-54/57~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" - ], - "4.8.0-56/61~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" - ], - "4.8.0-58/63~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb" - ], - "4.15.0-38/41~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb" - ], - "4.15.0-48/51~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-modules-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" - ], - "4.4.0-122/146": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-122-generic_4.4.0-122.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" - ], - "4.4.0-131/157": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-131-generic_4.4.0-131.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb" - ], - "4.4.0-135/161": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-135-generic_4.4.0-135.161_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb" - ], - "4.4.0-140/166": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-140-generic_4.4.0-140.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" - ], - "4.4.0-146/172": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-modules-4.4.0-146-generic_4.4.0-146.172_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" - ], - "4.4.0-43/63": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-43-generic_4.4.0-43.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" - ], - "4.4.0-77/98": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-77-generic_4.4.0-77.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb" - ], - "4.8.0-42/45~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" - ], - "4.8.0-44/47~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb" - ], - "4.8.0-51/54~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" - ], - "4.8.0-53/56~16.04.1": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-image-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" - ], - "4.4.0-21/37": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-image-4.4.0-21-generic_4.4.0-21.37_arm64.deb" - ] - }, - "Flatcar": { - "3033.2.0": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.0/flatcar_developer_container.bin.bz2" - ], - "3033.2.1": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.1/flatcar_developer_container.bin.bz2" - ], - "3033.2.2": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.2/flatcar_developer_container.bin.bz2" - ], - "3033.2.3": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.3/flatcar_developer_container.bin.bz2" - ], - "3033.2.4": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.4/flatcar_developer_container.bin.bz2" - ], - "3139.2.0": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.0/flatcar_developer_container.bin.bz2" - ], - "3033.1.0": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3033.1.0/flatcar_developer_container.bin.bz2" - ], - "3033.1.1": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3033.1.1/flatcar_developer_container.bin.bz2" - ], - "3066.1.0": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.0/flatcar_developer_container.bin.bz2" - ], - "3066.1.1": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.1/flatcar_developer_container.bin.bz2" - ], - "3066.1.2": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.2/flatcar_developer_container.bin.bz2" - ], - "3139.1.0": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3139.1.0/flatcar_developer_container.bin.bz2" - ], - "3139.1.1": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3139.1.1/flatcar_developer_container.bin.bz2" - ], - "3185.1.0": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3185.1.0/flatcar_developer_container.bin.bz2" - ], - "2345.0.1": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2345.0.1/flatcar_developer_container.bin.bz2" - ], - "2345.0.2": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2345.0.2/flatcar_developer_container.bin.bz2" - ], - "2387.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2387.0.0/flatcar_developer_container.bin.bz2" - ], - "2411.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2411.0.0/flatcar_developer_container.bin.bz2" - ], - "2430.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2430.0.0/flatcar_developer_container.bin.bz2" - ], - "2466.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2466.0.0/flatcar_developer_container.bin.bz2" - ], - "2492.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2492.0.0/flatcar_developer_container.bin.bz2" - ], - "2513.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2513.0.0/flatcar_developer_container.bin.bz2" - ], - "2513.0.1": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2513.0.1/flatcar_developer_container.bin.bz2" - ], - "2513.1.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2513.1.0/flatcar_developer_container.bin.bz2" - ], - "2592.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2592.0.0/flatcar_developer_container.bin.bz2" - ], - "2605.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2605.0.0/flatcar_developer_container.bin.bz2" - ], - "2605.1.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2605.1.0/flatcar_developer_container.bin.bz2" - ], - "2632.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2632.0.0/flatcar_developer_container.bin.bz2" - ], - "2661.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2661.0.0/flatcar_developer_container.bin.bz2" - ], - "2671.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2671.0.0/flatcar_developer_container.bin.bz2" - ], - "2697.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2697.0.0/flatcar_developer_container.bin.bz2" - ], - "2705.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2705.0.0/flatcar_developer_container.bin.bz2" - ], - "2723.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2723.0.0/flatcar_developer_container.bin.bz2" - ], - "2748.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2748.0.0/flatcar_developer_container.bin.bz2" - ], - "2783.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2783.0.0/flatcar_developer_container.bin.bz2" - ], - "2801.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2801.0.0/flatcar_developer_container.bin.bz2" - ], - "2801.0.1": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2801.0.1/flatcar_developer_container.bin.bz2" - ], - "2823.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2823.0.0/flatcar_developer_container.bin.bz2" - ], - "2857.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2857.0.0/flatcar_developer_container.bin.bz2" - ], - "2879.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2879.0.0/flatcar_developer_container.bin.bz2" - ], - "2879.0.1": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2879.0.1/flatcar_developer_container.bin.bz2" - ], - "2905.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2905.0.0/flatcar_developer_container.bin.bz2" - ], - "2920.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2920.0.0/flatcar_developer_container.bin.bz2" - ], - "2942.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2942.0.0/flatcar_developer_container.bin.bz2" - ], - "2955.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2955.0.0/flatcar_developer_container.bin.bz2" - ], - "2969.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2969.0.0/flatcar_developer_container.bin.bz2" - ], - "2983.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2983.0.0/flatcar_developer_container.bin.bz2" - ], - "3005.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3005.0.0/flatcar_developer_container.bin.bz2" - ], - "3005.0.1": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3005.0.1/flatcar_developer_container.bin.bz2" - ], - "3033.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3033.0.0/flatcar_developer_container.bin.bz2" - ], - "3046.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3046.0.0/flatcar_developer_container.bin.bz2" - ], - "3066.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3066.0.0/flatcar_developer_container.bin.bz2" - ], - "3115.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3115.0.0/flatcar_developer_container.bin.bz2" - ], - "3127.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3127.0.0/flatcar_developer_container.bin.bz2" - ], - "3139.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3139.0.0/flatcar_developer_container.bin.bz2" - ], - "3165.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3165.0.0/flatcar_developer_container.bin.bz2" - ], - "3185.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3185.0.0/flatcar_developer_container.bin.bz2" - ], - "3200.0.0": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3200.0.0/flatcar_developer_container.bin.bz2" - ] + "AmazonLinux": [], + "AmazonLinux2": [ + { + "kernelversion": 1, + "kernelrelease": "4.14.152-127.182.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.181-142.260.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.121-109.96.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.101-91.76.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.165-133.209.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.177-139.253.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.231-173.361.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.154-128.181.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.241-184.433.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.209-160.339.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.219-164.354.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.203-156.332.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.225-169.362.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.97-90.72.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.273-207.502.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.232-176.381.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.200-155.322.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.232-177.418.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.128-112.105.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.158-129.185.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.219-161.340.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.243-185.433.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.146-120.181.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.106-97.85.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.77-80.57.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.88-88.73.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.248-189.473.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.114-103.97.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.171-136.231.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.123-111.109.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.173-137.229.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.94-89.73.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.193-149.317.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.256-197.484.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.114-105.126.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.262-200.489.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.246-187.474.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.165-131.185.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.252-195.483.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.198-152.320.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.173-137.228.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.138-114.102.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.181-140.257.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.252-195.481.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.152-124.171.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.143-118.123.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.268-205.500.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.104-95.84.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.133-113.112.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.109-99.92.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.177-139.254.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.146-119.123.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.192-147.314.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.238-182.422.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.209-160.335.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.133-113.105.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.77-86.82.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.238-182.421.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.88-88.76.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.186-146.268.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.77-81.59.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.231-173.360.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.214-160.339.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.225-168.357.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.50-44.131.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.50-44.132.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.59-52.142.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.75-79.358.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-87.444.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-31.135.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.106-102.504.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.102-99.473.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.62-55.141.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.82-83.359.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.68-62.173.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.47-39.130.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.29-27.128.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.96-90.460.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.29-27.126.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.58-32.125.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.110-54.189.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.129-63.229.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.129-62.227.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.144-69.257.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.46-23.77.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.46-19.75.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.91-41.139.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.117-58.216.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.172-90.336.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.156-83.273.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.110-54.182.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.186-102.354.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.50-25.83.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.80-40.140.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.38-17.76.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.105-48.177.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.20-12.75.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.149-73.259.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.176-91.338.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.181-99.354.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.74-36.135.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.68-34.125.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.95-42.163.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.141-67.229.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.162-86.275.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.58-27.104.amzn2.aarch64", + "target": "amazonlinux2" + } + ], + "AmazonLinux2022": [ + { + "kernelversion": 1, + "kernelrelease": "5.10.96-90.460.amzn2022.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.75-82.359.amzn2022.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.24-13.97.amzn2022.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.23-11.98.amzn2022.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.25-14.106.amzn2022.aarch64", + "target": "amazonlinux2" + } + ], + "CentOS": [ + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.1.2.el8_0.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.11.1.el8_0.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.11.2.el8_0.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.4.2.el8_0.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.7.1.el8_0.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.7.2.el8_0.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.el8.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.8.1.el8_1.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.28.1.el8_2.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.22.1.el8_3.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.10.2.el8_4.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.12.1.el8_4.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.17.1.el8_4.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.19.1.el8_4.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.25.1.el8_4.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.3.1.el8.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.7.1.el8_4.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.2.1.el8_5.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.7.1.el8_5.aarch64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.el8.aarch64", + "target": "centos" + } + ], + "Fedora": [ + { + "kernelversion": 1, + "kernelrelease": "5.6.6-300.fc32.aarch64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.8.15-301.fc33.aarch64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.11.12-300.fc34.aarch64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.10-300.fc35.aarch64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.11.22-100.fc32.aarch64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.18-100.fc33.aarch64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.16.20-100.fc34.aarch64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.16.20-200.fc35.aarch64", + "target": "fedora" + } + ], + "Oracle6": [], + "Oracle7": [], + "Oracle8": [], + "PhotonOS": [ + { + "kernelversion": 1, + "kernelrelease": "1.3.0-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.15-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.104-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.104-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.112-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-10.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-6.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-7.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-9.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.124-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.124-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.126-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.126-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.129-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.129-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.129-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-6.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.138-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.138-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.138-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.145-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.145-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.145-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.15-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.150-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-10.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-11.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-8.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-9.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-6.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.164-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.164-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.177-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.177-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.182-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.182-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.205-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.208-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.214-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.214-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.217-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.224-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.224-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.225-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.229-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.229-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.229-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.29-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.32-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.40-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.40-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.52-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.52-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.65-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.65-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.69-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.72-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.72-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.76-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.76-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.79-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.79-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.82-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.84-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.84-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-1.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-2.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-3.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-4.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-5.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-6.ph3.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "1.4.0-3.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "1.4.0-4.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-1.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-2.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-3.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-4.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-1.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-10.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-2.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-3.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-5.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-6.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-7.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-9.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-1.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-2.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-3.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-4.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-17.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-1.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-2.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-3.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.46-2.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.52-1.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.52-2.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.61-1.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.61-2.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.75-1.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-1.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-4.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-5.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-2.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-3.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-4.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-5.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-6.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-7.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-1.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-3.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-4.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-5.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "1.4.0-2.ph4.aarch64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-16.ph4.aarch64", + "target": "photonOS" + } + ], + "Debian": [ + { + "kernelversion": 1, + "kernelrelease": "5.16.18-1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.9-2~bpo11+1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.5-2~bpo11+1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.15-2~bpo11+1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.16.11-1~bpo11+1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.16.12-1~bpo11+1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.84-1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.106-1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.92-1~bpo10+1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-1~bpo10+1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.70-1~bpo10+1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.208-1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.235-1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.17.1-1~exp1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.228-1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.303-1-arm64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-1~deb9u1-arm64", + "target": "debian" + } + ], + "Ubuntu": [ + { + "kernelversion": "120", + "kernelrelease": "4.15.0-1113-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "123", + "kernelrelease": "4.15.0-1116-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "124", + "kernelrelease": "4.15.0-1117-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "128", + "kernelrelease": "4.15.0-1119-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "128", + "kernelrelease": "4.15.0-1120-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "129", + "kernelrelease": "4.15.0-1120-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "129", + "kernelrelease": "4.15.0-1121-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "130", + "kernelrelease": "4.15.0-1121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132", + "kernelrelease": "4.15.0-1123-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "133", + "kernelrelease": "4.15.0-1124-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "134", + "kernelrelease": "4.15.0-1125-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "135", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "175", + "kernelrelease": "4.15.0-167-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "176", + "kernelrelease": "4.15.0-168-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "177", + "kernelrelease": "4.15.0-169-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "178", + "kernelrelease": "4.15.0-170-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "181", + "kernelrelease": "4.15.0-172-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "182", + "kernelrelease": "4.15.0-173-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "183", + "kernelrelease": "4.15.0-174-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "185", + "kernelrelease": "4.15.0-176-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.0.0-1028-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "113~18.04.1", + "kernelrelease": "5.4.0-100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119~18.04.1", + "kernelrelease": "5.4.0-105-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120~18.04.1", + "kernelrelease": "5.4.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1066-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1069-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "74~18.04.1", + "kernelrelease": "5.4.0-1070-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "76~18.04.1", + "kernelrelease": "5.4.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-1076-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1077-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122~18.04.1", + "kernelrelease": "5.4.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123~18.04.1", + "kernelrelease": "5.4.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102~18.04.1", + "kernelrelease": "5.4.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110~18.04.1", + "kernelrelease": "5.4.0-97-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112~18.04.1", + "kernelrelease": "5.4.0-99-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "4.15.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "4.15.0-1029-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "4.15.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "37", + "kernelrelease": "4.15.0-1035-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "41", + "kernelrelease": "4.15.0-1039-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "45", + "kernelrelease": "4.15.0-1043-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "46", + "kernelrelease": "4.15.0-1044-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "47", + "kernelrelease": "4.15.0-1045-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1047-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "50", + "kernelrelease": "4.15.0-1048-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "52", + "kernelrelease": "4.15.0-1050-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "53", + "kernelrelease": "4.15.0-1051-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "54", + "kernelrelease": "4.15.0-1052-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "57", + "kernelrelease": "4.15.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "4.15.0-1054-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "58", + "kernelrelease": "4.15.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "4.15.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "4.15.0-1056-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "59", + "kernelrelease": "4.15.0-1057-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "62", + "kernelrelease": "4.15.0-1057-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "4.15.0-1058-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "64", + "kernelrelease": "4.15.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "107", + "kernelrelease": "4.15.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "4.15.0-1060-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "66", + "kernelrelease": "4.15.0-1060-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "4.15.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "4.15.0-1063-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "71", + "kernelrelease": "4.15.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "4.15.0-1065-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "72", + "kernelrelease": "4.15.0-1065-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "4.15.0-1066-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "73", + "kernelrelease": "4.15.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "4.15.0-1067-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "74", + "kernelrelease": "4.15.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "4.15.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77", + "kernelrelease": "4.15.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "4.15.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "4.15.0-1072-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77", + "kernelrelease": "4.15.0-1073-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "81", + "kernelrelease": "4.15.0-1074-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "4.15.0-1076-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "83", + "kernelrelease": "4.15.0-1076-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "81", + "kernelrelease": "4.15.0-1077-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "84", + "kernelrelease": "4.15.0-1077-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "4.15.0-1079-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "86", + "kernelrelease": "4.15.0-1079-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "4.15.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84", + "kernelrelease": "4.15.0-1080-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "87", + "kernelrelease": "4.15.0-1080-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88", + "kernelrelease": "4.15.0-1081-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "4.15.0-1082-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "87", + "kernelrelease": "4.15.0-1083-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "91", + "kernelrelease": "4.15.0-1083-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92", + "kernelrelease": "4.15.0-1084-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "4.15.0-1086-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "94", + "kernelrelease": "4.15.0-1086-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92", + "kernelrelease": "4.15.0-1087-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "95", + "kernelrelease": "4.15.0-1087-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98", + "kernelrelease": "4.15.0-1089-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "4.15.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "95", + "kernelrelease": "4.15.0-1090-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "99", + "kernelrelease": "4.15.0-1090-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "96", + "kernelrelease": "4.15.0-1091-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "98", + "kernelrelease": "4.15.0-1092-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "99", + "kernelrelease": "4.15.0-1093-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "102", + "kernelrelease": "4.15.0-1093-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101", + "kernelrelease": "4.15.0-1094-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "103", + "kernelrelease": "4.15.0-1094-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "4.15.0-1095-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "104", + "kernelrelease": "4.15.0-1095-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103", + "kernelrelease": "4.15.0-1096-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "105", + "kernelrelease": "4.15.0-1096-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104", + "kernelrelease": "4.15.0-1097-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "106", + "kernelrelease": "4.15.0-1097-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "105", + "kernelrelease": "4.15.0-1098-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "107", + "kernelrelease": "4.15.0-1098-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "4.15.0-1099-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "108", + "kernelrelease": "4.15.0-1099-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "4.15.0-1100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "108", + "kernelrelease": "4.15.0-1101-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "110", + "kernelrelease": "4.15.0-1101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "4.15.0-1102-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "111", + "kernelrelease": "4.15.0-1102-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "4.15.0-1103-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "112", + "kernelrelease": "4.15.0-1103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1106-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "115", + "kernelrelease": "4.15.0-1106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "4.15.0-1109-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "118", + "kernelrelease": "4.15.0-1109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112", + "kernelrelease": "4.15.0-111-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "117", + "kernelrelease": "4.15.0-1110-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "119", + "kernelrelease": "4.15.0-1110-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118", + "kernelrelease": "4.15.0-1111-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "120", + "kernelrelease": "4.15.0-1111-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119", + "kernelrelease": "4.15.0-1112-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "121", + "kernelrelease": "4.15.0-1112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122", + "kernelrelease": "4.15.0-1113-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121", + "kernelrelease": "4.15.0-1114-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "123", + "kernelrelease": "4.15.0-1114-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122", + "kernelrelease": "4.15.0-1115-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "124", + "kernelrelease": "4.15.0-1115-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "125", + "kernelrelease": "4.15.0-1116-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "125", + "kernelrelease": "4.15.0-1118-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "127", + "kernelrelease": "4.15.0-1118-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "127", + "kernelrelease": "4.15.0-1119-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131", + "kernelrelease": "4.15.0-1122-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "4.15.0-115-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118", + "kernelrelease": "4.15.0-117-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119", + "kernelrelease": "4.15.0-118-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123", + "kernelrelease": "4.15.0-121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124", + "kernelrelease": "4.15.0-122-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126", + "kernelrelease": "4.15.0-123-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131", + "kernelrelease": "4.15.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132", + "kernelrelease": "4.15.0-129-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "134", + "kernelrelease": "4.15.0-130-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-132-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "139", + "kernelrelease": "4.15.0-135-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140", + "kernelrelease": "4.15.0-136-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "141", + "kernelrelease": "4.15.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143", + "kernelrelease": "4.15.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "144", + "kernelrelease": "4.15.0-140-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "145", + "kernelrelease": "4.15.0-141-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "146", + "kernelrelease": "4.15.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "147", + "kernelrelease": "4.15.0-143-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "148", + "kernelrelease": "4.15.0-144-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "151", + "kernelrelease": "4.15.0-147-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "157", + "kernelrelease": "4.15.0-151-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "160", + "kernelrelease": "4.15.0-153-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "161", + "kernelrelease": "4.15.0-154-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "163", + "kernelrelease": "4.15.0-156-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "166", + "kernelrelease": "4.15.0-158-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "167", + "kernelrelease": "4.15.0-159-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "169", + "kernelrelease": "4.15.0-161-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "170", + "kernelrelease": "4.15.0-162-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "171", + "kernelrelease": "4.15.0-163-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "174", + "kernelrelease": "4.15.0-166-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "180", + "kernelrelease": "4.15.0-171-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "184", + "kernelrelease": "4.15.0-175-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "4.15.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "4.15.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "4.15.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "4.15.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "4.15.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "4.15.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45", + "kernelrelease": "4.15.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "4.15.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "4.15.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48", + "kernelrelease": "4.15.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.15.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54", + "kernelrelease": "4.15.0-50-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "4.15.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "4.15.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "4.15.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "4.15.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "4.15.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "4.15.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "4.15.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "4.15.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "4.15.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "4.15.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "4.15.0-69-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "4.15.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "81", + "kernelrelease": "4.15.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84", + "kernelrelease": "4.15.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "4.15.0-76-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88", + "kernelrelease": "4.15.0-88-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92", + "kernelrelease": "4.15.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97", + "kernelrelease": "4.15.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "4.15.0-99-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "4.18.0-13-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~18.04.1", + "kernelrelease": "4.18.0-14-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~18.04.1", + "kernelrelease": "4.18.0-15-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "4.18.0-16-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "4.18.0-17-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "4.18.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "4.18.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~18.04.1", + "kernelrelease": "4.18.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "4.18.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "4.18.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.0.0-1021-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.0.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "5.0.0-1023-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "27~18.04.1", + "kernelrelease": "5.0.0-1024-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "28", + "kernelrelease": "5.0.0-1025-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "30", + "kernelrelease": "5.0.0-1027-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "16~18.04.1", + "kernelrelease": "5.0.0-15-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.0.0-16-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "5.0.0-17-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~18.04.1", + "kernelrelease": "5.0.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "5.0.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.0.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "5.0.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~18.04.1", + "kernelrelease": "5.0.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.0.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~18.04.1", + "kernelrelease": "5.0.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~18.04.2", + "kernelrelease": "5.0.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.0.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~18.04.1", + "kernelrelease": "5.0.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~18.04.1", + "kernelrelease": "5.0.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.0.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65", + "kernelrelease": "5.0.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "5.0.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "5.0.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "5.0.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "5.3.0-1017-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "5.3.0-1019-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.3.0-1023-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.3.0-1028-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1030-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "34~18.04.2", + "kernelrelease": "5.3.0-1032-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "35", + "kernelrelease": "5.3.0-1033-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "36", + "kernelrelease": "5.3.0-1034-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "37", + "kernelrelease": "5.3.0-1035-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "20~18.04.2", + "kernelrelease": "5.3.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.3.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~18.04.2", + "kernelrelease": "5.3.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.2", + "kernelrelease": "5.3.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~18.04.1", + "kernelrelease": "5.3.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.3.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~18.04.1", + "kernelrelease": "5.3.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~18.04.1", + "kernelrelease": "5.3.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.3.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~18.04.2", + "kernelrelease": "5.3.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~18.04.1", + "kernelrelease": "5.3.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.3.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~18.04.1", + "kernelrelease": "5.3.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.3.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~18.04.1", + "kernelrelease": "5.3.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~18.04.2", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.4.0-1029-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "33~18.04.1", + "kernelrelease": "5.4.0-1032-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "37~18.04.1", + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "39~18.04.1", + "kernelrelease": "5.4.0-1037-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "40~18.04.1", + "kernelrelease": "5.4.0-1038-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1039-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "118~18.04.1", + "kernelrelease": "5.4.0-104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-1041-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1043-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "47~18.04.1", + "kernelrelease": "5.4.0-1045-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "50~18.04.2", + "kernelrelease": "5.4.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1047-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "50~18.04.1", + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "52~18.04.1", + "kernelrelease": "5.4.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.4.0-1049-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1051-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.4.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1054-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "58~18.04.1", + "kernelrelease": "5.4.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~18.04.1", + "kernelrelease": "5.4.0-1055-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1056-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1057-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "61~18.04.1", + "kernelrelease": "5.4.0-1057-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61~18.04.3", + "kernelrelease": "5.4.0-1058-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1060-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "65~18.04.1", + "kernelrelease": "5.4.0-1061-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1065-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "71~18.04.1", + "kernelrelease": "5.4.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1068-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "75~18.04.1", + "kernelrelease": "5.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121~18.04.1", + "kernelrelease": "5.4.0-107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76~18.04.1", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~18.04.2", + "kernelrelease": "5.4.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.4.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52~18.04.1", + "kernelrelease": "5.4.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.4.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65~18.04.1", + "kernelrelease": "5.4.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70~18.04.1", + "kernelrelease": "5.4.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~18.04.2", + "kernelrelease": "5.4.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75~18.04.1", + "kernelrelease": "5.4.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "82~18.04.1", + "kernelrelease": "5.4.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~18.04.1", + "kernelrelease": "5.4.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86~18.04.1", + "kernelrelease": "5.4.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "90~18.04.1", + "kernelrelease": "5.4.0-80-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-81-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "94~18.04.1", + "kernelrelease": "5.4.0-84-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97~18.04.1", + "kernelrelease": "5.4.0-86-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98~18.04.1", + "kernelrelease": "5.4.0-87-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100~18.04.1", + "kernelrelease": "5.4.0-89-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101~18.04.1", + "kernelrelease": "5.4.0-90-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103~18.04.2", + "kernelrelease": "5.4.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106~18.04.1", + "kernelrelease": "5.4.0-94-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109~18.04.1", + "kernelrelease": "5.4.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "127", + "kernelrelease": "4.15.0-124-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "138", + "kernelrelease": "4.15.0-134-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "4.15.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51", + "kernelrelease": "4.15.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "4.18.0-18-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.0.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~18.04.1", + "kernelrelease": "5.0.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~18.04.1", + "kernelrelease": "5.0.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.0.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52~18.04.1", + "kernelrelease": "5.0.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.0.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.0.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~18.04.1", + "kernelrelease": "5.0.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.3.0-1016-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "4.15.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "5.15.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "4", + "kernelrelease": "5.15.0-1002-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "4", + "kernelrelease": "5.15.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.15.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "5.15.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.11.0-1029-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "32~20.04.2", + "kernelrelease": "5.11.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~20.04.2", + "kernelrelease": "5.11.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~20.04.1", + "kernelrelease": "5.11.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~20.04.1", + "kernelrelease": "5.11.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~20.04.2", + "kernelrelease": "5.11.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.11.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61", + "kernelrelease": "5.11.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~20.04.1", + "kernelrelease": "5.13.0-1014-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "16~20.04.1", + "kernelrelease": "5.13.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.13.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.13.0-1019-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.13.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~20.04.1", + "kernelrelease": "5.13.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~20.04.2", + "kernelrelease": "5.13.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.13.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.13.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.13.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~20.04.1", + "kernelrelease": "5.13.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~20.04.1", + "kernelrelease": "5.13.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~20.04.1", + "kernelrelease": "5.13.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~20.04.1", + "kernelrelease": "5.13.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~20.04.2", + "kernelrelease": "5.15.0-18-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.15.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.15.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~20.04.2", + "kernelrelease": "5.15.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113", + "kernelrelease": "5.4.0-100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "115", + "kernelrelease": "5.4.0-102-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "5.4.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.4.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "5.4.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119", + "kernelrelease": "5.4.0-105-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61", + "kernelrelease": "5.4.0-1057-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120", + "kernelrelease": "5.4.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1064-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1066-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "121", + "kernelrelease": "5.4.0-107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "5.4.0-1070-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1075-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1076-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1077-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122", + "kernelrelease": "5.4.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123", + "kernelrelease": "5.4.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "5.4.0-97-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "111", + "kernelrelease": "5.4.0-98-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112", + "kernelrelease": "5.4.0-99-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "5.8.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~20.04.1", + "kernelrelease": "5.11.0-1014-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~20.04.2", + "kernelrelease": "5.11.0-1020-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.11.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~20.04.2", + "kernelrelease": "5.11.0-1021-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~20.04.2", + "kernelrelease": "5.11.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.11.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~20.04.1", + "kernelrelease": "5.11.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.11.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~20.04.2", + "kernelrelease": "5.11.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~20.04.1", + "kernelrelease": "5.11.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~20.04.2", + "kernelrelease": "5.11.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~20.04.1", + "kernelrelease": "5.11.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9~20.04.2", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "12~20.04.1", + "kernelrelease": "5.13.0-1011-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "13~20.04.2", + "kernelrelease": "5.13.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~20.04.1", + "kernelrelease": "5.13.0-1012-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.13.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.2", + "kernelrelease": "5.13.0-1021-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.13.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.2", + "kernelrelease": "5.13.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.13.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~20.04.1", + "kernelrelease": "5.13.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "14", + "kernelrelease": "5.4.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "5.4.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "5.4.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "5.4.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "19", + "kernelrelease": "5.4.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.4.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.4.0-1017-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.4.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "23", + "kernelrelease": "5.4.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.4.0-1021-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.4.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "28", + "kernelrelease": "5.4.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "30", + "kernelrelease": "5.4.0-1029-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "32", + "kernelrelease": "5.4.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1037-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "40", + "kernelrelease": "5.4.0-1038-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1039-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "118", + "kernelrelease": "5.4.0-104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1041-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1043-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1043-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48", + "kernelrelease": "5.4.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1045-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1045-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "52", + "kernelrelease": "5.4.0-1047-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "52", + "kernelrelease": "5.4.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "56", + "kernelrelease": "5.4.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "56", + "kernelrelease": "5.4.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-1056-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1057-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "61", + "kernelrelease": "5.4.0-1058-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1060-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1061-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "71", + "kernelrelease": "5.4.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1068-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "75", + "kernelrelease": "5.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.4.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "5.4.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51", + "kernelrelease": "5.4.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "5.4.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "5.4.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "5.4.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "5.4.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "5.4.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "82", + "kernelrelease": "5.4.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "5.4.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "5.4.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "90", + "kernelrelease": "5.4.0-80-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "5.4.0-81-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "94", + "kernelrelease": "5.4.0-84-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97", + "kernelrelease": "5.4.0-86-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99", + "kernelrelease": "5.4.0-88-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "5.4.0-89-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101", + "kernelrelease": "5.4.0-90-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "5.4.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103", + "kernelrelease": "5.4.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "5.4.0-94-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "5.4.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.2", + "kernelrelease": "5.8.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.8.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~20.04.1", + "kernelrelease": "5.8.0-1035-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-1038-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "39~20.04.1", + "kernelrelease": "5.8.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-1041-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "44~20.04.1", + "kernelrelease": "5.8.0-1042-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "36~20.04.1", + "kernelrelease": "5.8.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~20.04.2", + "kernelrelease": "5.8.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~20.04.1", + "kernelrelease": "5.8.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~20.04.1", + "kernelrelease": "5.8.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~20.04.1", + "kernelrelease": "5.8.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~20.04.1", + "kernelrelease": "5.8.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~20.04.1", + "kernelrelease": "5.8.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~20.04.1", + "kernelrelease": "5.8.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~20.04.1", + "kernelrelease": "5.8.0-50-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~20.04.1", + "kernelrelease": "5.8.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~20.04.1", + "kernelrelease": "5.8.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~20.04.1", + "kernelrelease": "5.8.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71~20.04.1", + "kernelrelease": "5.8.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9~20.04.2", + "kernelrelease": "5.11.0-1009-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "10", + "kernelrelease": "5.4.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~20.04.2", + "kernelrelease": "5.8.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.8.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.8.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.8.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.8.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~20.04.1", + "kernelrelease": "5.8.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8", + "kernelrelease": "5.4.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "30", + "kernelrelease": "5.4.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.11.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.11.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "55", + "kernelrelease": "5.11.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.11.0-1006-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "7", + "kernelrelease": "5.11.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.11.0-16-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1007-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14", + "kernelrelease": "5.13.0-1013-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "15", + "kernelrelease": "5.13.0-1014-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.13.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.13.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27", + "kernelrelease": "5.13.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "5.13.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27", + "kernelrelease": "5.13.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.13.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.13.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "5.13.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "5.13.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "5.13.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45", + "kernelrelease": "5.13.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1006-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1011-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "13", + "kernelrelease": "5.13.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "5.13.0-1012-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "14", + "kernelrelease": "5.13.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "5.13.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.13.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "5.13.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40", + "kernelrelease": "5.13.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "5.13.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.13.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.13.0-1005-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "147", + "kernelrelease": "3.13.0-100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "148", + "kernelrelease": "3.13.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "150", + "kernelrelease": "3.13.0-103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "152", + "kernelrelease": "3.13.0-105-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "153", + "kernelrelease": "3.13.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "154", + "kernelrelease": "3.13.0-107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "155", + "kernelrelease": "3.13.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "156", + "kernelrelease": "3.13.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "157", + "kernelrelease": "3.13.0-110-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "159", + "kernelrelease": "3.13.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "162", + "kernelrelease": "3.13.0-115-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "163", + "kernelrelease": "3.13.0-116-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "164", + "kernelrelease": "3.13.0-117-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "166", + "kernelrelease": "3.13.0-119-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "170", + "kernelrelease": "3.13.0-121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "172", + "kernelrelease": "3.13.0-123-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "174", + "kernelrelease": "3.13.0-125-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "175", + "kernelrelease": "3.13.0-126-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "177", + "kernelrelease": "3.13.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "178", + "kernelrelease": "3.13.0-129-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "181", + "kernelrelease": "3.13.0-132-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "182", + "kernelrelease": "3.13.0-133-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "184", + "kernelrelease": "3.13.0-135-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "186", + "kernelrelease": "3.13.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "188", + "kernelrelease": "3.13.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "190", + "kernelrelease": "3.13.0-141-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "191", + "kernelrelease": "3.13.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "192", + "kernelrelease": "3.13.0-143-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "193", + "kernelrelease": "3.13.0-144-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "196", + "kernelrelease": "3.13.0-147-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "199", + "kernelrelease": "3.13.0-149-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "201", + "kernelrelease": "3.13.0-151-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "203", + "kernelrelease": "3.13.0-153-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "205", + "kernelrelease": "3.13.0-155-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "206", + "kernelrelease": "3.13.0-156-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "207", + "kernelrelease": "3.13.0-157-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "210", + "kernelrelease": "3.13.0-160-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "211", + "kernelrelease": "3.13.0-161-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "212", + "kernelrelease": "3.13.0-162-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "214", + "kernelrelease": "3.13.0-164-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "215", + "kernelrelease": "3.13.0-165-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "216", + "kernelrelease": "3.13.0-166-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "217", + "kernelrelease": "3.13.0-167-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "218", + "kernelrelease": "3.13.0-168-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "220", + "kernelrelease": "3.13.0-170-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "3.13.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "3.13.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "3.13.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "3.13.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "3.13.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "3.13.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "3.13.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "3.13.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "3.13.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "3.13.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "3.13.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "3.13.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "3.13.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "3.13.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "3.13.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "3.13.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "3.13.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "3.13.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84", + "kernelrelease": "3.13.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "3.13.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "89", + "kernelrelease": "3.13.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "3.13.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "94", + "kernelrelease": "3.13.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "95", + "kernelrelease": "3.13.0-57-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97", + "kernelrelease": "3.13.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98", + "kernelrelease": "3.13.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "3.13.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "3.13.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103", + "kernelrelease": "3.13.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "3.13.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "108", + "kernelrelease": "3.13.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "3.13.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "111", + "kernelrelease": "3.13.0-68-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113", + "kernelrelease": "3.13.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "114", + "kernelrelease": "3.13.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "3.13.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118", + "kernelrelease": "3.13.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120", + "kernelrelease": "3.13.0-76-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121", + "kernelrelease": "3.13.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123", + "kernelrelease": "3.13.0-79-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "127", + "kernelrelease": "3.13.0-83-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "129", + "kernelrelease": "3.13.0-85-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131", + "kernelrelease": "3.13.0-86-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "133", + "kernelrelease": "3.13.0-87-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "135", + "kernelrelease": "3.13.0-88-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "138", + "kernelrelease": "3.13.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "139", + "kernelrelease": "3.13.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140", + "kernelrelease": "3.13.0-93-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "142", + "kernelrelease": "3.13.0-95-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143", + "kernelrelease": "3.13.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "145", + "kernelrelease": "3.13.0-98-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~14.04.2", + "kernelrelease": "3.16.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~14.04.1", + "kernelrelease": "3.16.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~14.04.1", + "kernelrelease": "3.16.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~14.04.1", + "kernelrelease": "3.16.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~14.04.1", + "kernelrelease": "3.16.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~14.04.1", + "kernelrelease": "3.16.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~14.04.1", + "kernelrelease": "3.16.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~14.04.1", + "kernelrelease": "3.16.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~14.04.1", + "kernelrelease": "3.16.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52~14.04.1", + "kernelrelease": "3.16.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~14.04.1", + "kernelrelease": "3.16.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~14.04.1", + "kernelrelease": "3.16.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~14.04.1", + "kernelrelease": "3.16.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59~14.04.1", + "kernelrelease": "3.16.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~14.04.1", + "kernelrelease": "3.16.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~14.04.1", + "kernelrelease": "3.16.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~14.04.1", + "kernelrelease": "3.16.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65~14.04.1", + "kernelrelease": "3.16.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67~14.04.1", + "kernelrelease": "3.16.0-50-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69~14.04.1", + "kernelrelease": "3.16.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71~14.04.1", + "kernelrelease": "3.16.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~14.04.1", + "kernelrelease": "3.16.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~14.04.1", + "kernelrelease": "3.16.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75~14.04.1", + "kernelrelease": "3.16.0-56-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77~14.04.1", + "kernelrelease": "3.16.0-57-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79~14.04.1", + "kernelrelease": "3.16.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80~14.04.1", + "kernelrelease": "3.16.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~14.04.1", + "kernelrelease": "3.16.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87~14.04.1", + "kernelrelease": "3.16.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "89~14.04.1", + "kernelrelease": "3.16.0-69-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "90~14.04.1", + "kernelrelease": "3.16.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92~14.04.1", + "kernelrelease": "3.16.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "95~14.04.1", + "kernelrelease": "3.16.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98~14.04.1", + "kernelrelease": "3.16.0-76-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99~14.04.1", + "kernelrelease": "3.16.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~14.04.1", + "kernelrelease": "3.19.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~14.04.1", + "kernelrelease": "3.19.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~14.04.1", + "kernelrelease": "3.19.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~14.04.1", + "kernelrelease": "3.19.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~14.04.1", + "kernelrelease": "3.19.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~14.04.1", + "kernelrelease": "3.19.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~14.04.1", + "kernelrelease": "3.19.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~14.04.1", + "kernelrelease": "3.19.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~14.04.1", + "kernelrelease": "3.19.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~14.04.1", + "kernelrelease": "3.19.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~14.04.1", + "kernelrelease": "3.19.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~14.04.1", + "kernelrelease": "3.19.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~14.04.1", + "kernelrelease": "3.19.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~14.04.2", + "kernelrelease": "3.19.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~14.04.1", + "kernelrelease": "3.19.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~14.04.1", + "kernelrelease": "3.19.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~14.04.1", + "kernelrelease": "3.19.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~14.04.1", + "kernelrelease": "3.19.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~14.04.1", + "kernelrelease": "3.19.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~14.04.1", + "kernelrelease": "3.19.0-56-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~14.04.1", + "kernelrelease": "3.19.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~14.04.1", + "kernelrelease": "3.19.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69~14.04.1", + "kernelrelease": "3.19.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~14.04.1", + "kernelrelease": "3.19.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~14.04.1", + "kernelrelease": "3.19.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~14.04.1", + "kernelrelease": "3.19.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76~14.04.1", + "kernelrelease": "3.19.0-68-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77~14.04.1", + "kernelrelease": "3.19.0-69-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79~14.04.1", + "kernelrelease": "3.19.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "81~14.04.1", + "kernelrelease": "3.19.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "82~14.04.1", + "kernelrelease": "3.19.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~14.04.1", + "kernelrelease": "3.19.0-75-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "85~14.04.1", + "kernelrelease": "3.19.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86~14.04.1", + "kernelrelease": "3.19.0-78-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87~14.04.1", + "kernelrelease": "3.19.0-79-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88~14.04.1", + "kernelrelease": "3.19.0-80-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~14.04.1", + "kernelrelease": "4.2.0-18-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~14.04.1", + "kernelrelease": "4.2.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~14.04.1", + "kernelrelease": "4.2.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~14.04.1", + "kernelrelease": "4.2.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~14.04.1", + "kernelrelease": "4.2.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~14.04.1", + "kernelrelease": "4.2.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~14.04.1", + "kernelrelease": "4.2.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~14.04.1", + "kernelrelease": "4.2.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~14.04.1", + "kernelrelease": "4.2.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~14.04.1", + "kernelrelease": "4.2.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~14.04.1", + "kernelrelease": "4.2.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~14.04.1", + "kernelrelease": "4.2.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~14.04.1", + "kernelrelease": "4.2.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~14.04.1", + "kernelrelease": "4.2.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124~14.04.1", + "kernelrelease": "4.4.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126~14.04.1", + "kernelrelease": "4.4.0-103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "127~14.04.1", + "kernelrelease": "4.4.0-104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131~14.04.1", + "kernelrelease": "4.4.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132~14.04.1", + "kernelrelease": "4.4.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "134~14.04.1", + "kernelrelease": "4.4.0-111-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "135~14.04.1", + "kernelrelease": "4.4.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140~14.04.1", + "kernelrelease": "4.4.0-116-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143~14.04.1", + "kernelrelease": "4.4.0-119-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "145~14.04.1", + "kernelrelease": "4.4.0-121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "148~14.04.1", + "kernelrelease": "4.4.0-124-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "153~14.04.1", + "kernelrelease": "4.4.0-127-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "154~14.04.1", + "kernelrelease": "4.4.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "156~14.04.1", + "kernelrelease": "4.4.0-130-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "159~14.04.1", + "kernelrelease": "4.4.0-133-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "160~14.04.1", + "kernelrelease": "4.4.0-134-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "163~14.04.1", + "kernelrelease": "4.4.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "164~14.04.1", + "kernelrelease": "4.4.0-138-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "165~14.04.1", + "kernelrelease": "4.4.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "167~14.04.1", + "kernelrelease": "4.4.0-141-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "168~14.04.1", + "kernelrelease": "4.4.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "169~14.04.2", + "kernelrelease": "4.4.0-143-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "170~14.04.1", + "kernelrelease": "4.4.0-144-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "174~14.04.1", + "kernelrelease": "4.4.0-148-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~14.04.1", + "kernelrelease": "4.4.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~14.04.1", + "kernelrelease": "4.4.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~14.04.1", + "kernelrelease": "4.4.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~14.04.1", + "kernelrelease": "4.4.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~14.04.1", + "kernelrelease": "4.4.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~14.04.1", + "kernelrelease": "4.4.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~14.04.1", + "kernelrelease": "4.4.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~14.04.1", + "kernelrelease": "4.4.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~14.04.1", + "kernelrelease": "4.4.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~14.04.1", + "kernelrelease": "4.4.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68~14.04.1", + "kernelrelease": "4.4.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~14.04.1", + "kernelrelease": "4.4.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~14.04.1", + "kernelrelease": "4.4.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78~14.04.1", + "kernelrelease": "4.4.0-57-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80~14.04.1", + "kernelrelease": "4.4.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~14.04.1", + "kernelrelease": "4.4.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84~14.04.2", + "kernelrelease": "4.4.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "85~14.04.1", + "kernelrelease": "4.4.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87~14.04.1", + "kernelrelease": "4.4.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88~14.04.1", + "kernelrelease": "4.4.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91~14.04.1", + "kernelrelease": "4.4.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92~14.04.1", + "kernelrelease": "4.4.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "93~14.04.1", + "kernelrelease": "4.4.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "96~14.04.1", + "kernelrelease": "4.4.0-75-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99~14.04.2", + "kernelrelease": "4.4.0-78-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100~14.04.1", + "kernelrelease": "4.4.0-79-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104~14.04.1", + "kernelrelease": "4.4.0-81-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106~14.04.1", + "kernelrelease": "4.4.0-83-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110~14.04.1", + "kernelrelease": "4.4.0-87-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112~14.04.1", + "kernelrelease": "4.4.0-89-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "114~14.04.1", + "kernelrelease": "4.4.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "115~14.04.1", + "kernelrelease": "4.4.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116~14.04.1", + "kernelrelease": "4.4.0-93-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119~14.04.1", + "kernelrelease": "4.4.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120~14.04.1", + "kernelrelease": "4.4.0-97-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121~14.04.1", + "kernelrelease": "4.4.0-98-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "160", + "kernelrelease": "3.13.0-113-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "194", + "kernelrelease": "3.13.0-145-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "208", + "kernelrelease": "3.13.0-158-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "213", + "kernelrelease": "3.13.0-163-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "219", + "kernelrelease": "3.13.0-169-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "3.13.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~14.04.1", + "kernelrelease": "3.16.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~14.04.1", + "kernelrelease": "3.16.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~14.04.1", + "kernelrelease": "3.19.0-18-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "157~14.04.1", + "kernelrelease": "4.4.0-131-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "161~14.04.1", + "kernelrelease": "4.4.0-135-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "166~14.04.1", + "kernelrelease": "4.4.0-140-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "172~14.04.1", + "kernelrelease": "4.4.0-146-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "3.13.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102~16.04.1", + "kernelrelease": "4.15.0-1095-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "103~16.04.1", + "kernelrelease": "4.15.0-1096-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "238", + "kernelrelease": "4.4.0-206-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "239", + "kernelrelease": "4.4.0-207-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~16.04.1", + "kernelrelease": "4.10.0-14-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~16.04.1", + "kernelrelease": "4.10.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~16.04.1", + "kernelrelease": "4.10.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~16.04.1", + "kernelrelease": "4.10.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~16.04.1", + "kernelrelease": "4.10.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~16.04.1", + "kernelrelease": "4.10.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~16.04.1", + "kernelrelease": "4.10.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~16.04.2", + "kernelrelease": "4.10.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~16.04.2", + "kernelrelease": "4.10.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~16.04.1", + "kernelrelease": "4.10.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.10.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~16.04.1", + "kernelrelease": "4.10.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~16.04.1", + "kernelrelease": "4.10.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~16.04.1", + "kernelrelease": "4.10.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.10.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~16.04.1", + "kernelrelease": "4.10.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~16.04.1", + "kernelrelease": "4.10.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~16.04.1", + "kernelrelease": "4.11.0-13-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~16.04.1", + "kernelrelease": "4.11.0-14-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~16.04.3", + "kernelrelease": "4.13.0-16-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~16.04.1", + "kernelrelease": "4.13.0-17-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~16.04.1", + "kernelrelease": "4.13.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~16.04.1", + "kernelrelease": "4.13.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~16.04.2", + "kernelrelease": "4.13.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~16.04.2", + "kernelrelease": "4.13.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~16.04.1", + "kernelrelease": "4.13.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~16.04.1", + "kernelrelease": "4.13.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~16.04.1", + "kernelrelease": "4.13.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.13.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~16.04.1", + "kernelrelease": "4.13.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~16.04.1", + "kernelrelease": "4.13.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~16.04.1", + "kernelrelease": "4.13.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~16.04.1", + "kernelrelease": "4.13.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~16.04.1", + "kernelrelease": "4.13.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102~16.04.1", + "kernelrelease": "4.15.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "107~16.04.1", + "kernelrelease": "4.15.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "108~16.04.1", + "kernelrelease": "4.15.0-107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99~16.04.1", + "kernelrelease": "4.15.0-1093-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "101~16.04.1", + "kernelrelease": "4.15.0-1094-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "104~16.04.1", + "kernelrelease": "4.15.0-1097-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "105~16.04.1", + "kernelrelease": "4.15.0-1098-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "106~16.04.1", + "kernelrelease": "4.15.0-1099-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "113~16.04.1", + "kernelrelease": "4.15.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116~16.04.1", + "kernelrelease": "4.15.0-115-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118~16.04.1", + "kernelrelease": "4.15.0-117-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119~16.04.1", + "kernelrelease": "4.15.0-118-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122~16.04.1", + "kernelrelease": "4.15.0-120-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124~16.04.1", + "kernelrelease": "4.15.0-122-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126~16.04.1", + "kernelrelease": "4.15.0-123-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131~16.04.1", + "kernelrelease": "4.15.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132~16.04.1", + "kernelrelease": "4.15.0-129-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~16.04.1", + "kernelrelease": "4.15.0-13-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "136~16.04.1", + "kernelrelease": "4.15.0-132-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "137~16.04.1", + "kernelrelease": "4.15.0-133-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140~16.04.1", + "kernelrelease": "4.15.0-136-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "141~16.04.1", + "kernelrelease": "4.15.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143~16.04.1", + "kernelrelease": "4.15.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "144~16.04.1", + "kernelrelease": "4.15.0-140-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "146~16.04.1", + "kernelrelease": "4.15.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~16.04.1", + "kernelrelease": "4.15.0-15-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~16.04.1", + "kernelrelease": "4.15.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~16.04.1", + "kernelrelease": "4.15.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~16.04.1", + "kernelrelease": "4.15.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~16.04.1", + "kernelrelease": "4.15.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~16.04.1", + "kernelrelease": "4.15.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~16.04.1", + "kernelrelease": "4.15.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~16.04.1", + "kernelrelease": "4.15.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.15.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~16.04.1", + "kernelrelease": "4.15.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~16.04.1", + "kernelrelease": "4.15.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.15.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~16.04.1", + "kernelrelease": "4.15.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~16.04.1", + "kernelrelease": "4.15.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~16.04.1", + "kernelrelease": "4.15.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~16.04.1", + "kernelrelease": "4.15.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~16.04.1", + "kernelrelease": "4.15.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~16.04.1", + "kernelrelease": "4.15.0-50-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~16.04.1", + "kernelrelease": "4.15.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~16.04.1", + "kernelrelease": "4.15.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~16.04.1", + "kernelrelease": "4.15.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~16.04.2", + "kernelrelease": "4.15.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~16.04.1", + "kernelrelease": "4.15.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67~16.04.1", + "kernelrelease": "4.15.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69~16.04.1", + "kernelrelease": "4.15.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~16.04.1", + "kernelrelease": "4.15.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~16.04.1", + "kernelrelease": "4.15.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75~16.04.1", + "kernelrelease": "4.15.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78~16.04.1", + "kernelrelease": "4.15.0-69-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79~16.04.1", + "kernelrelease": "4.15.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "81~16.04.1", + "kernelrelease": "4.15.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~16.04.1", + "kernelrelease": "4.15.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86~16.04.1", + "kernelrelease": "4.15.0-76-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88~16.04.1", + "kernelrelease": "4.15.0-88-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92~16.04.1", + "kernelrelease": "4.15.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97~16.04.1", + "kernelrelease": "4.15.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100~16.04.1", + "kernelrelease": "4.15.0-99-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124", + "kernelrelease": "4.4.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126", + "kernelrelease": "4.4.0-103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "127", + "kernelrelease": "4.4.0-104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131", + "kernelrelease": "4.4.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132", + "kernelrelease": "4.4.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "135", + "kernelrelease": "4.4.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140", + "kernelrelease": "4.4.0-116-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143", + "kernelrelease": "4.4.0-119-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "145", + "kernelrelease": "4.4.0-121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "148", + "kernelrelease": "4.4.0-124-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "153", + "kernelrelease": "4.4.0-127-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "154", + "kernelrelease": "4.4.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "156", + "kernelrelease": "4.4.0-130-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "159", + "kernelrelease": "4.4.0-133-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "160", + "kernelrelease": "4.4.0-134-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "163", + "kernelrelease": "4.4.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "164", + "kernelrelease": "4.4.0-138-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "165", + "kernelrelease": "4.4.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "167", + "kernelrelease": "4.4.0-141-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "168", + "kernelrelease": "4.4.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "169", + "kernelrelease": "4.4.0-143-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "171", + "kernelrelease": "4.4.0-145-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "174", + "kernelrelease": "4.4.0-148-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "176", + "kernelrelease": "4.4.0-150-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "178", + "kernelrelease": "4.4.0-151-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "181", + "kernelrelease": "4.4.0-154-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "185", + "kernelrelease": "4.4.0-157-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "187", + "kernelrelease": "4.4.0-159-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "189", + "kernelrelease": "4.4.0-161-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "192", + "kernelrelease": "4.4.0-164-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "193", + "kernelrelease": "4.4.0-165-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "195", + "kernelrelease": "4.4.0-166-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "197", + "kernelrelease": "4.4.0-168-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "198", + "kernelrelease": "4.4.0-169-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "199", + "kernelrelease": "4.4.0-170-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "200", + "kernelrelease": "4.4.0-171-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "203", + "kernelrelease": "4.4.0-173-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "204", + "kernelrelease": "4.4.0-174-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "206", + "kernelrelease": "4.4.0-176-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "207", + "kernelrelease": "4.4.0-177-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "208", + "kernelrelease": "4.4.0-178-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "209", + "kernelrelease": "4.4.0-179-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "214", + "kernelrelease": "4.4.0-184-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "215", + "kernelrelease": "4.4.0-185-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "216", + "kernelrelease": "4.4.0-186-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "217", + "kernelrelease": "4.4.0-187-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "219", + "kernelrelease": "4.4.0-189-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "220", + "kernelrelease": "4.4.0-190-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "224", + "kernelrelease": "4.4.0-193-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "226", + "kernelrelease": "4.4.0-194-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "229", + "kernelrelease": "4.4.0-197-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "230", + "kernelrelease": "4.4.0-198-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "232", + "kernelrelease": "4.4.0-200-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "233", + "kernelrelease": "4.4.0-201-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "235", + "kernelrelease": "4.4.0-203-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "236", + "kernelrelease": "4.4.0-204-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "240", + "kernelrelease": "4.4.0-208-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "241", + "kernelrelease": "4.4.0-209-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "242", + "kernelrelease": "4.4.0-210-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40", + "kernelrelease": "4.4.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "4.4.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "4.4.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.4.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "4.4.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "4.4.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "4.4.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "4.4.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "4.4.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "4.4.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "4.4.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "4.4.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "4.4.0-57-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "4.4.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "4.4.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84", + "kernelrelease": "4.4.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "85", + "kernelrelease": "4.4.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87", + "kernelrelease": "4.4.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88", + "kernelrelease": "4.4.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "4.4.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92", + "kernelrelease": "4.4.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "93", + "kernelrelease": "4.4.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "96", + "kernelrelease": "4.4.0-75-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99", + "kernelrelease": "4.4.0-78-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "4.4.0-79-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104", + "kernelrelease": "4.4.0-81-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "4.4.0-83-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "4.4.0-87-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112", + "kernelrelease": "4.4.0-89-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "114", + "kernelrelease": "4.4.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "115", + "kernelrelease": "4.4.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "4.4.0-93-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119", + "kernelrelease": "4.4.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120", + "kernelrelease": "4.4.0-97-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121", + "kernelrelease": "4.4.0-98-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.8.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.8.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.8.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~16.04.1", + "kernelrelease": "4.8.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~16.04.1", + "kernelrelease": "4.8.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~16.04.1", + "kernelrelease": "4.8.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52~16.04.1", + "kernelrelease": "4.8.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~16.04.1", + "kernelrelease": "4.8.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~16.04.1", + "kernelrelease": "4.8.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61~16.04.1", + "kernelrelease": "4.8.0-56-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63~16.04.1", + "kernelrelease": "4.8.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~16.04.1", + "kernelrelease": "4.15.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~16.04.1", + "kernelrelease": "4.15.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "146", + "kernelrelease": "4.4.0-122-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "157", + "kernelrelease": "4.4.0-131-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "161", + "kernelrelease": "4.4.0-135-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "166", + "kernelrelease": "4.4.0-140-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "172", + "kernelrelease": "4.4.0-146-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "4.4.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98", + "kernelrelease": "4.4.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~16.04.1", + "kernelrelease": "4.8.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~16.04.1", + "kernelrelease": "4.8.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~16.04.1", + "kernelrelease": "4.8.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~16.04.1", + "kernelrelease": "4.8.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "4.4.0-21-generic", + "target": "ubuntu-generic" + } + ], + "Flatcar": [ + { + "kernelversion": 1, + "kernelrelease": "3033.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.2.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.2.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.2.3", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.2.4", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3139.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3066.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3066.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3066.1.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3139.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3139.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3185.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2345.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2345.0.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2387.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2411.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2430.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2466.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2492.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2513.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2513.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2513.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2592.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2632.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2661.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2671.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2697.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2705.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2723.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2748.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2783.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2801.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2801.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2823.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2857.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2879.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2879.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2920.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2942.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2955.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2969.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2983.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3005.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3005.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3046.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3066.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3115.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3127.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3139.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3165.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3185.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3200.0.0", + "target": "flatcar" } + ] } diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index fd4af95..c1eac47 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -1,30469 +1,19196 @@ { - "AmazonLinux": { - "4.9.17-8.31.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/main/201703c0ffee/x86_64/Packages/kernel-devel-4.9.17-8.31.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/main/201703c0ffee/x86_64/Packages/kernel-4.9.17-8.31.amzn1.x86_64.rpm" - ], - "4.9.32-15.41.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.32-15.41.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.32-15.41.amzn1.x86_64.rpm" - ], - "4.9.38-16.33.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.38-16.33.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.38-16.33.amzn1.x86_64.rpm" - ], - "4.9.27-14.31.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.27-14.31.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.27-14.31.amzn1.x86_64.rpm" - ], - "4.9.43-17.38.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.43-17.38.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.43-17.38.amzn1.x86_64.rpm" - ], - "4.9.27-14.33.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.27-14.33.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.27-14.33.amzn1.x86_64.rpm" - ], - "4.9.20-11.31.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.20-11.31.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.20-11.31.amzn1.x86_64.rpm" - ], - "4.9.38-16.35.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.38-16.35.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.38-16.35.amzn1.x86_64.rpm" - ], - "4.9.43-17.39.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.43-17.39.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.43-17.39.amzn1.x86_64.rpm" - ], - "4.9.20-10.30.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-4.9.20-10.30.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.20-10.30.amzn1.x86_64.rpm" - ], - "4.9.51-10.52.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/main/154a6dd467e2/x86_64/Packages/kernel-devel-4.9.51-10.52.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/main/154a6dd467e2/x86_64/Packages/kernel-4.9.51-10.52.amzn1.x86_64.rpm" - ], - "4.9.91-40.57.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.91-40.57.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.91-40.57.amzn1.x86_64.rpm" - ], - "4.9.76-3.78.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.76-3.78.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.76-3.78.amzn1.x86_64.rpm" - ], - "4.9.75-25.55.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.75-25.55.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.75-25.55.amzn1.x86_64.rpm" - ], - "4.9.93-41.60.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.93-41.60.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.93-41.60.amzn1.x86_64.rpm" - ], - "4.9.58-18.51.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.58-18.51.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.58-18.51.amzn1.x86_64.rpm" - ], - "4.9.70-22.55.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.70-22.55.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.70-22.55.amzn1.x86_64.rpm" - ], - "4.9.62-21.56.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.62-21.56.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.62-21.56.amzn1.x86_64.rpm" - ], - "4.9.85-38.58.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.85-38.58.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.85-38.58.amzn1.x86_64.rpm" - ], - "4.9.116-43.59.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.116-43.59.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.116-43.59.amzn1.x86_64.rpm" - ], - "4.9.77-31.58.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.77-31.58.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.77-31.58.amzn1.x86_64.rpm" - ], - "4.9.70-25.242.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.70-25.242.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.70-25.242.amzn1.x86_64.rpm" - ], - "4.9.85-37.55.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.85-37.55.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.85-37.55.amzn1.x86_64.rpm" - ], - "4.9.81-35.56.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.81-35.56.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.81-35.56.amzn1.x86_64.rpm" - ], - "4.9.119-44.140.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.119-44.140.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.119-44.140.amzn1.x86_64.rpm" - ], - "4.9.58-18.55.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-4.9.58-18.55.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.58-18.55.amzn1.x86_64.rpm" - ], - "4.14.26-46.32.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/main/c31535f74c6e/x86_64/Packages/kernel-4.14.26-46.32.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/main/c31535f74c6e/x86_64/Packages/kernel-devel-4.14.26-46.32.amzn1.x86_64.rpm" - ], - "4.14.152-98.182.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.152-98.182.amzn1.x86_64.rpm" - ], - "4.14.88-72.76.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.88-72.76.amzn1.x86_64.rpm" - ], - "4.14.209-117.337.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.209-117.337.amzn1.x86_64.rpm" - ], - "4.14.165-103.209.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.165-103.209.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" - ], - "4.14.232-123.381.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.232-123.381.amzn1.x86_64.rpm" - ], - "4.14.154-99.181.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.154-99.181.amzn1.x86_64.rpm" - ], - "4.14.238-125.422.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.238-125.422.amzn1.x86_64.rpm" - ], - "4.14.121-85.96.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.121-85.96.amzn1.x86_64.rpm" - ], - "4.14.186-110.268.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.186-110.268.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" - ], - "4.14.225-121.357.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.225-121.357.amzn1.x86_64.rpm" - ], - "4.14.77-69.57.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.77-69.57.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" - ], - "4.14.181-108.257.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.181-108.257.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" - ], - "4.14.33-51.34.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.33-51.34.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" - ], - "4.14.262-135.489.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.262-135.489.amzn1.x86_64.rpm" - ], - "4.14.123-86.109.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.123-86.109.amzn1.x86_64.rpm" - ], - "4.14.114-83.126.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.114-83.126.amzn1.x86_64.rpm" - ], - "4.14.173-106.229.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.173-106.229.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" - ], - "4.14.88-72.73.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.88-72.73.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" - ], - "4.14.97-74.72.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.97-74.72.amzn1.x86_64.rpm" - ], - "4.14.42-52.37.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.42-52.37.amzn1.x86_64.rpm" - ], - "4.14.165-102.185.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.165-102.185.amzn1.x86_64.rpm" - ], - "4.14.143-91.122.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.143-91.122.amzn1.x86_64.rpm" - ], - "4.14.128-87.105.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.128-87.105.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" - ], - "4.14.114-82.97.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.114-82.97.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" - ], - "4.14.62-65.117.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.62-65.117.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" - ], - "4.14.177-107.254.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.177-107.254.amzn1.x86_64.rpm" - ], - "4.14.133-88.112.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.133-88.112.amzn1.x86_64.rpm" - ], - "4.14.104-78.84.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.104-78.84.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" - ], - "4.14.219-119.340.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.219-119.340.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" - ], - "4.14.51-60.38.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.51-60.38.amzn1.x86_64.rpm" - ], - "4.14.225-121.362.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.225-121.362.amzn1.x86_64.rpm" - ], - "4.14.94-73.73.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.94-73.73.amzn1.x86_64.rpm" - ], - "4.14.138-89.102.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.138-89.102.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" - ], - "4.14.171-105.231.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.171-105.231.amzn1.x86_64.rpm" - ], - "4.14.268-139.500.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.268-139.500.amzn1.x86_64.rpm" - ], - "4.14.101-75.76.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.101-75.76.amzn1.x86_64.rpm" - ], - "4.14.106-79.86.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.106-79.86.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" - ], - "4.14.158-101.185.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.158-101.185.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" - ], - "4.14.67-66.56.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.67-66.56.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" - ], - "4.14.133-88.105.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.133-88.105.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" - ], - "4.14.262-135.486.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.262-135.486.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" - ], - "4.14.55-62.37.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.55-62.37.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" - ], - "4.14.248-129.473.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.248-129.473.amzn1.x86_64.rpm" - ], - "4.14.72-68.55.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.72-68.55.amzn1.x86_64.rpm" - ], - "4.14.146-93.123.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.146-93.123.amzn1.x86_64.rpm" - ], - "4.14.47-56.37.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.47-56.37.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" - ], - "4.14.33-51.37.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.33-51.37.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" - ], - "4.14.70-67.55.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.70-67.55.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" - ], - "4.14.238-125.421.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.238-125.421.amzn1.x86_64.rpm" - ], - "4.14.273-140.502.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.273-140.502.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" - ], - "4.14.200-116.320.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.200-116.320.amzn1.x86_64.rpm" - ], - "4.14.77-70.59.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.77-70.59.amzn1.x86_64.rpm" - ], - "4.14.77-70.82.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.77-70.82.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" - ], - "4.14.203-116.332.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.203-116.332.amzn1.x86_64.rpm" - ], - "4.14.252-131.483.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.252-131.483.amzn1.x86_64.rpm" - ], - "4.14.109-80.92.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.109-80.92.amzn1.x86_64.rpm" - ], - "4.14.193-113.317.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.193-113.317.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" - ], - "4.14.59-64.43.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.59-64.43.amzn1.x86_64.rpm" - ], - "4.14.214-118.339.amzn1.x86_64": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-4.14.214-118.339.amzn1.x86_64.rpm", - "http://packages.us-east-1.amazonaws.com/2018.03/updates/3744c52db1ff/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" - ] - }, - "AmazonLinux2": { - "4.14.51-66.38.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8c7f0f9fafbfd310843ab5fab25a83dbb9ea03dd7cc9a0cb7aeea4edc7ba86bd/kernel-4.14.51-66.38.amzn2.x86_64.rpm" - ], - "4.14.209-160.339.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/008b5c46fc5e20ef8e17b21f70cef27876cfd7347f61f21032eb69863f980288/kernel-4.14.209-160.339.amzn2.x86_64.rpm" - ], - "4.9.76-38.79.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0d4c311ab0040ef613d3b56d01618e1c229928ad92e2ec86cee1588f9cb17943/kernel-4.9.76-38.79.amzn2.x86_64.rpm" - ], - "4.14.72-73.55.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/372b017cd34cd2baca3554c98f0889d993d7d5ecc4af281d3959663022af869a/kernel-4.14.72-73.55.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" - ], - "4.14.146-120.181.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e683bb49e282d8a4adc265f851665fdc469e790ff02a2a9099286a07a6f1ca45/kernel-4.14.146-120.181.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" - ], - "4.14.225-168.357.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c3260daf386439efdb928fc0736e452e0469133acc125c3f1c2f5df57f948c11/kernel-4.14.225-168.357.amzn2.x86_64.rpm" - ], - "4.14.152-127.182.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6cae21fc73c7a043e1a635c7efc3afb5e8a1ad0a1a91565655d08df36ec7114f/kernel-4.14.152-127.182.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" - ], - "4.14.181-142.260.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/632bc5eb727b1538ad17d60ffd76e3f08a6034b007caec48f74a0c4bb8f65b03/kernel-4.14.181-142.260.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" - ], - "4.14.273-207.502.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ca410d11ea07cce13a20f5ae390970c121045d4dabe2abd1b5dbe44f364273db/kernel-4.14.273-207.502.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" - ], - "4.14.252-195.483.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/186c1da4e5fc99cbff604e35fbdc7f5fcee6e87c6fe92e54f2f1c2af6db1a676/kernel-4.14.252-195.483.amzn2.x86_64.rpm" - ], - "4.9.75-1.56.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/dfca174f9ba13ef67e4e532c6819df9736f9337588962d05b337cfcbfcef76f8/kernel-4.9.75-1.56.amzn2.x86_64.rpm" - ], - "4.14.165-131.185.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b70379e880c9de2f316f0ba0425ae6137b8a70a519c2c7118464340f07b6036e/kernel-4.14.165-131.185.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" - ], - "4.14.26-54.32.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/273cc5022a976cea6cadfceedead5f463419194954ea7b9cbadaf13699bf57fd/kernel-4.14.26-54.32.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" - ], - "4.14.192-147.314.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/308af1ccbf8eb01beb5e0c3f5a37bab7d65423d71c590cae1cb58053dbf9b5b1/kernel-4.14.192-147.314.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" - ], - "4.14.186-146.268.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f55e0b38b9b854b74c7c9b3613ca74d1d91f174db30f4371e6e44901091b4a86/kernel-4.14.186-146.268.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" - ], - "4.14.55-68.37.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4bfd9b8ccb6a453079e934d2355e752508cc12cc8aea30076290f3c879d6a852/kernel-4.14.55-68.37.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" - ], - "4.14.133-113.105.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2a2e5852b45e2874cefef210d1f9d8096b19d79bc38a7a21ce9801bfc58bab6e/kernel-4.14.133-113.105.amzn2.x86_64.rpm" - ], - "4.9.62-10.57.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/65303ab3ce6c24c65a52df467ff5b685aa3fedd713f88b7a266c2042f05b432a/kernel-4.9.62-10.57.amzn2.x86_64.rpm" - ], - "4.14.88-88.76.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/99e2195cee7700336b32d9e5eebcd4d6baa20fa28ce0920af5bce012b8090da8/kernel-4.14.88-88.76.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" - ], - "4.14.225-169.362.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9d70b5ef17b3429672c98e1a68a614fbc7d7c3cf10c2add7adf293de61656b1c/kernel-4.14.225-169.362.amzn2.x86_64.rpm" - ], - "4.14.114-103.97.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f1c577510be0f0666b866bd1730b7385d3231221f4008cca786cefae1622d632/kernel-4.14.114-103.97.amzn2.x86_64.rpm" - ], - "4.14.42-61.37.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/61fe08e946c5e09d71643c30b1f4144550f26949e8ec89a3aac0dcc3f8135a85/kernel-4.14.42-61.37.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" - ], - "4.14.232-177.418.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/10bc7c9ac40b1b78e5c50349ab5efb3ec0f7b310521e01e06018dcbb3566b8fe/kernel-4.14.232-177.418.amzn2.x86_64.rpm" - ], - "4.14.193-149.317.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5b3f2826e8af28d7f82c3a3d9600bf7b163b119d204b8c610bb526527a46c786/kernel-4.14.193-149.317.amzn2.x86_64.rpm" - ], - "4.14.101-91.76.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/463b80bc15f21845388392ae4f25d0db86d0c19e4c6505ebc0598ca43cccfe73/kernel-4.14.101-91.76.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" - ], - "4.14.33-59.37.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c5f241b39577e68367ffb0466ea218455c35c787d7b143ae84df927982ad8155/kernel-4.14.33-59.37.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" - ], - "4.14.47-63.37.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/63c787287ed30810d4da1a65a8427ab51f5a8579ebbdffb5fb05c5697876a852/kernel-4.14.47-63.37.amzn2.x86_64.rpm" - ], - "4.14.109-99.92.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4247d24c27a4daea1b5fb3b5f795e131a284e0a22be50a20b077fc7a47fb750d/kernel-4.14.109-99.92.amzn2.x86_64.rpm" - ], - "4.14.59-68.43.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6ca4937fcc692040e38c0c49d63028ed55246f513fc9eccec61b349da465bb60/kernel-4.14.59-68.43.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" - ], - "4.14.214-160.339.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/07c45b5b4f5bd182cc89a75a1a94d35e7023259f023359e101a16e76b37c2a7a/kernel-4.14.214-160.339.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" - ], - "4.14.171-136.231.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/2401407e2b5e1961a9e8ffc7922e23a74b4e820453e33c37da0b9e3436ab4030/kernel-4.14.171-136.231.amzn2.x86_64.rpm" - ], - "4.14.77-86.82.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f6c94dd0d90a39747969bd90a7dd8bd6d1cb4cc15d4899354eee4befaa0d886f/kernel-4.14.77-86.82.amzn2.x86_64.rpm" - ], - "4.14.231-173.361.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6ff4cd3a6c5814f9c0728a87c238357dfa9db20b4ebf648f0f215a8dd67d5ee0/kernel-4.14.231-173.361.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" - ], - "4.14.123-111.109.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f9bb448e80062bb0a4b784684c7f15d7457c7efbbf46576ae32d62c708e0acf6/kernel-4.14.123-111.109.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" - ], - "4.14.243-185.433.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d820d928058a36c200aeec6ef4ab52cdbeb2e061bffa5c7f43b62332212957f1/kernel-4.14.243-185.433.amzn2.x86_64.rpm" - ], - "4.14.219-161.340.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e8fa40ea8dff8e9b30625bc7b4c9361f9b1976a0ee17c9546c48389b7cfe46ce/kernel-4.14.219-161.340.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" - ], - "4.14.268-205.500.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/731fa3d4fcc1cabc6ee37ede943f9c484a1218ad72d1ef1a5b0d49862a79277d/kernel-4.14.268-205.500.amzn2.x86_64.rpm" - ], - "4.14.219-164.354.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f2f4b68853d103b9b9219913e6cc1bca287b05c049874e8e3dc22e80c598272e/kernel-4.14.219-164.354.amzn2.x86_64.rpm" - ], - "4.14.138-114.102.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1de1db3610f2d619c5bc1dc55c4ce33a2cbddbcd90d770d705037b4a20698755/kernel-4.14.138-114.102.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" - ], - "4.14.77-80.57.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5e302394d55f190fb4f0c2a1439cd287f8600aea28cd8c4a2c7cc81f1a508722/kernel-4.14.77-80.57.amzn2.x86_64.rpm" - ], - "4.14.70-72.55.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0937ec17bb2eafa9baeb8e67887567eeb3354cd0f3389cc472a1c55c2c773d77/kernel-4.14.70-72.55.amzn2.x86_64.rpm" - ], - "4.14.88-88.73.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8f93b7a88c6baa55459bfd633ddd8f6e65067d4bc8bc04ca727ef82c904b109a/kernel-4.14.88-88.73.amzn2.x86_64.rpm" - ], - "4.14.146-119.123.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/11bc84bbb759d63b7d5d8b0b05e6094d245a97f26f32b76e126052be8557041a/kernel-4.14.146-119.123.amzn2.x86_64.rpm" - ], - "4.9.85-46.56.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1ace4e5b7c5bb854bf32706520702ee5f963d972987d6e93b9fd5ad31428a1e8/kernel-4.9.85-46.56.amzn2.x86_64.rpm" - ], - "4.14.143-118.123.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/d2d50b3403ce331785529b989dec28d43cb9a72e938e2ad9c22dc08b0191dfa8/kernel-4.14.143-118.123.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" - ], - "4.14.106-97.85.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/6a6f8afa9d6143e87771b81c26cfd4395bf4bcf3619fb61824f875b70dd0f499/kernel-4.14.106-97.85.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" - ], - "4.14.181-140.257.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b81bc0a4d4a58731e8b734de30c62a39afe010871a758283494e312df39a0c90/kernel-4.14.181-140.257.amzn2.x86_64.rpm" - ], - "4.14.256-197.484.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a20488f95461dba5c381064a333554b81d5feac5d026b49f4b7708feaa31f52e/kernel-4.14.256-197.484.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" - ], - "4.14.67-71.56.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a01ce1cd0b2528665f49dede6e797548c3ce7e94d973ec755a9dcb8fd3507a65/kernel-4.14.67-71.56.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" - ], - "4.14.246-187.474.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8bd8b469421bc1cff8845de9b526274cda82b0f7cd513fb407dfaffc733ee0a1/kernel-4.14.246-187.474.amzn2.x86_64.rpm" - ], - "4.14.241-184.433.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b7545f14edfdf02ef6d1f20dbe906e95bb48303dc73d29f97ec650dd4c0fba1d/kernel-4.14.241-184.433.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" - ], - "4.9.85-47.59.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b14b81b3fbe31a8ea3563de30ad49af2c50cf80d55dd4aebb25c904050925b36/kernel-4.9.85-47.59.amzn2.x86_64.rpm" - ], - "4.14.133-113.112.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/430e83f79f26ba39380f0dbc9a8be86e25ae4108b3e5921be3e8afb04d6c74e9/kernel-4.14.133-113.112.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" - ], - "4.14.200-155.322.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8da3427740802e1466366393c81e3e7552450f31057708aecacf63e901b52d07/kernel-4.14.200-155.322.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" - ], - "4.14.209-160.335.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/dcb2f3b00c27fa8b6ddeb9416ca8e01a93aadecb43a1f127a34cd0b24e920122/kernel-4.14.209-160.335.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" - ], - "4.14.177-139.254.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/0512593a7864c0bccd240b5deacc316ee908898598fdc6e6b58b23b40fc90268/kernel-4.14.177-139.254.amzn2.x86_64.rpm" - ], - "4.14.198-152.320.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e3fee2c9dc382e5300dab5cc673cd57ab49768cb894ada1e39d83d11471b2524/kernel-4.14.198-152.320.amzn2.x86_64.rpm" - ], - "4.14.77-81.59.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bff4796f8e261ecc85d9c7cb7b10c75dbd26ee2f99a7ac70ca25241cf7c6eb75/kernel-4.14.77-81.59.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" - ], - "4.14.238-182.422.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/60cec016cc93fcf66079166a5d2e848649fff931456bfdab4f7b46a5abc7d21b/kernel-4.14.238-182.422.amzn2.x86_64.rpm" - ], - "4.14.154-128.181.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/38e8982f4cb792e7ba3cac78950596bc8b17bd32ad21ffc8f68f4d7e73e7bce4/kernel-4.14.154-128.181.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" - ], - "4.14.114-105.126.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b68df43c87ddf2e9741bb217f3c6ef4c036cc5f63e830d636fb4a49a1d789136/kernel-4.14.114-105.126.amzn2.x86_64.rpm" - ], - "4.9.70-2.243.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/48d108446f48b0fbe5dd3697b1914d7fee4f1cc32b0760c428da3466e9295daf/kernel-4.9.70-2.243.amzn2.x86_64.rpm" - ], - "4.14.231-173.360.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f3e63192f79dd8287f62f5b11716116174a69c6c768c4a6e34bc2272b95e5f44/kernel-4.14.231-173.360.amzn2.x86_64.rpm" - ], - "4.14.104-95.84.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/332cfd723a2d59e9733cfd913ef2353337470d34f2bde61fa9504a559df24a8f/kernel-4.14.104-95.84.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" - ], - "4.14.97-90.72.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/86b2a8219a7b09f9dae7610d24e900feb82d9b92ad9d8af3aaa19d8ae851166f/kernel-4.14.97-90.72.amzn2.x86_64.rpm" - ], - "4.14.165-133.209.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5482281c6474fb1e2e26161f8ce2632205b6effbd3fe180d82f65e74f92bb093/kernel-4.14.165-133.209.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" - ], - "4.14.121-109.96.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a7d89ec33e9b710836a08ce2cb5ab1d6d9938d970740676364d1fb0ea06509c8/kernel-4.14.121-109.96.amzn2.x86_64.rpm" - ], - "4.14.47-64.38.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a8b380be1e33c0444815eea13cc7c283b7691afc373ca6e3c5f1aeb874b2e673/kernel-4.14.47-64.38.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" - ], - "4.14.94-89.73.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b2f86c3d627782b8505f2441d75336d0f9f5c6173dc27c6c65bb46ed8e0dffad/kernel-4.14.94-89.73.amzn2.x86_64.rpm" - ], - "4.14.158-129.185.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/bd642125e672ee511af79510b4fd1b3834b965f9b07d54600bc6dfe9261ba1f1/kernel-4.14.158-129.185.amzn2.x86_64.rpm" - ], - "4.14.33-59.34.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/3e6e8fd644a0a6d742c5f0aa2edc926d89e886deb8159ec99e3eeccf1032baea/kernel-4.14.33-59.34.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" - ], - "4.14.203-156.332.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b7bec3c3098fea48d53b22b2cc2d4defe7209864f569199bc0c620f4a30ad032/kernel-4.14.203-156.332.amzn2.x86_64.rpm" - ], - "4.14.262-200.489.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ab11f893a17b2a2ba3379afb1cf05c8d8b6955c589a6a75ba33251d1af2ccfe5/kernel-4.14.262-200.489.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" - ], - "4.14.128-112.105.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/79255f3bc601f7f3b2d5bc0de98937826cc973f9f15fd5c2c4a9d6b10974d156/kernel-4.14.128-112.105.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" - ], - "4.14.152-124.171.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ebfe07b67e5153b3dbf78a8217d1bd5763858049dad35097a249baea5d0d4860/kernel-4.14.152-124.171.amzn2.x86_64.rpm" - ], - "4.14.232-176.381.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/606a48710b2ed02a79bcb03be75bdbd45f9a4784dfd3b292d9284a8a3e622ea7/kernel-4.14.232-176.381.amzn2.x86_64.rpm" - ], - "4.14.173-137.229.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/25b40f07b213686f653c30e8c6fd6d714ff5d9c9354eb28826ab328438836256/kernel-4.14.173-137.229.amzn2.x86_64.rpm" - ], - "4.9.81-44.57.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/8e391a8337cf519c0917a500f6514a4937cf2c4d5f3a28c0690ac837151ddf29/kernel-4.9.81-44.57.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" - ], - "4.14.173-137.228.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/f15b02afc0b8e3ddd9bd2ad2025c16e9d92fda0efe063646df2c4b93c792e418/kernel-4.14.173-137.228.amzn2.x86_64.rpm" - ], - "4.9.77-41.59.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/db0c201d34471c2269ec0f2ba62e9d632c78aa624c9ba053e018dec29e1b925a/kernel-4.9.77-41.59.amzn2.x86_64.rpm" - ], - "4.14.177-139.253.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/cf851b3268123e1198549fe15de2102a1d121b7f269c42844693247fd814e46d/kernel-4.14.177-139.253.amzn2.x86_64.rpm" - ], - "4.14.62-70.117.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/ccccf09f9aea9193d2d79688689446bd70698dd328d621d710a022033c97c1b0/kernel-4.14.62-70.117.amzn2.x86_64.rpm" - ], - "4.14.248-189.473.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fe85db2ea466f85c9292ea3fb175f331b97be5f73b861088b34ec71b2d20f54a/kernel-4.14.248-189.473.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" - ], - "4.14.252-195.481.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/08261230667b3daec90f04496820434023025d667a0362c12d1dd72e4f02d4fb/kernel-4.14.252-195.481.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" - ], - "4.14.238-182.421.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/5fd72b7148fc9b980f182b29b1dd32a13c4a9b4c6be7f574bdb04cdee29f277c/kernel-4.14.238-182.421.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/37eaca2854cfb48e16ced2e2a46fb7e92869f36c054be627be581970bc437a42/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" - ], - "5.10.68-62.173.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/4ee26d16e9fcc21db0f6c86a983a7e28afc37a78b2702facdeef45b4bf89c96b/kernel-5.10.68-62.173.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" - ], - "5.10.50-44.132.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/32f45930877a45bb2ec8b49485557c4964af82a490614e9a9b69929a0fb9d494/kernel-5.10.50-44.132.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" - ], - "5.10.102-99.473.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/8d4c2963a205530bb3c2855c17dcfec38be4b1077eeed185a81865f52d302700/kernel-5.10.102-99.473.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" - ], - "5.10.29-27.126.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/dc6cab3de983e79bfc603f29c57af5ba8ee043476110b962ce686f0718417da9/kernel-5.10.29-27.126.amzn2.x86_64.rpm" - ], - "5.10.50-44.131.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/843d5be39a2377e814d11fda4eddf27bb38adc44776a6b4051ad754fd63ab9b5/kernel-5.10.50-44.131.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" - ], - "5.10.29-27.128.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/9f7a2da752c13a6b0ae98ba06cc7655dbbe09441eab4660d26cee2fc475fca8b/kernel-5.10.29-27.128.amzn2.x86_64.rpm" - ], - "5.10.96-90.460.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/6edf4603d8111626790e26e1918f17875764b802dbfb48ad535908318da325fa/kernel-5.10.96-90.460.amzn2.x86_64.rpm" - ], - "5.10.82-83.359.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/07adb2960f53ea65ca7411f68f26886836b8475d422b57aca9effb5201162389/kernel-5.10.82-83.359.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" - ], - "5.10.106-102.504.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/90f0ed9caf0cafa7d585d13a689b70cca36fecc1e0d11c754c547785d9289cca/kernel-5.10.106-102.504.amzn2.x86_64.rpm" - ], - "5.10.62-55.141.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/2fa6fa7fed103638aa4f3fe57e889078cb8df77e7615496ef8b5d9d1fa23089c/kernel-5.10.62-55.141.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" - ], - "5.10.35-31.135.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/4db89b6c6888462e03c2066d1244a2cfb964973476836fc80faeb0181a69f828/kernel-5.10.35-31.135.amzn2.x86_64.rpm" - ], - "5.10.47-39.130.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/55571c55c399bf33b3629823b0d1e710be7f128de88fc92c9c24ee6614630b7c/kernel-5.10.47-39.130.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" - ], - "5.10.93-87.444.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/8e7220f0c978db2fc968585e207d00ec104de924927ec7626df983ccf5d849db/kernel-5.10.93-87.444.amzn2.x86_64.rpm" - ], - "5.10.75-79.358.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/20d36598b2bc8e534ed0b5448e4b9d029ac7e05296e079fe1aee99422c9cc3ab/kernel-5.10.75-79.358.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" - ], - "5.10.59-52.142.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/9a21e4e4e7cf061749e68321f206e7b4f1cf5a1228cabae27608c868fe11ff4c/../../../../../../blobstore/417f0770993f9822c803f581e382aaf28b68c67ad963d8be4df5cbc6571cc25a/kernel-5.10.59-52.142.amzn2.x86_64.rpm" - ], - "5.4.144-69.257.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/0b9f2c2ee88463e69952add62387431ed4c15369ce30c6c5dd1deadf14c3b170/kernel-5.4.144-69.257.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" - ], - "5.4.74-36.135.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/a9d4f1a975086ac6a0b685897cdb7058999f25979fcc3f6722b41dcc24e5a09d/kernel-5.4.74-36.135.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" - ], - "5.4.181-99.354.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/44d3764ccbba2c440496a0e013d223742059c57517e67a8b2fc084cdf4b62b0c/kernel-5.4.181-99.354.amzn2.x86_64.rpm" - ], - "5.4.149-73.259.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/ffcad56ef43151a80fd67431aee6e3658209640b5e4e6dc96edbb0ecd646fc13/kernel-5.4.149-73.259.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" - ], - "5.4.58-32.125.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/0af4abdd696da7d8c7f8a9841a7b3f7bea2e69169a30b238e49aa5fd19d6c6f3/kernel-5.4.58-32.125.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" - ], - "5.4.129-63.229.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/da7ee27cc75d71d491bc7fc303b8342e16ad8fd8ee61aa9082509c78664d9aaa/kernel-5.4.129-63.229.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" - ], - "5.4.105-48.177.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/2fb7dedc373212a9e5258511e729e040a054d8f32a80fe9cc122acefd3807b93/kernel-5.4.105-48.177.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" - ], - "5.4.95-42.163.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/3bc6899a9b3c0af9d3ad06984e08ed4420bee7942707bc8813a5883a184c5eca/kernel-5.4.95-42.163.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" - ], - "5.4.91-41.139.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/8740c967bcaa937343602de4725bf2bbd792bd01a051aa1599ec4bbbeb4fb8e5/kernel-5.4.91-41.139.amzn2.x86_64.rpm" - ], - "5.4.117-58.216.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/7d82d21a61fa03af4b3afd5fcf2309d5b6a1f5a01909a1b6190e8ddae8a67b89/kernel-5.4.117-58.216.amzn2.x86_64.rpm" - ], - "5.4.162-86.275.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/42cebcdc6f5e4cc37413f3cf47d65cf8f7ceb1a0a1ff79e434a57dcafc374301/kernel-5.4.162-86.275.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" - ], - "5.4.50-25.83.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d3c779030bbbec864afeb8679095c9b207dacd52e81fab015dfe3d47ae42265c/kernel-5.4.50-25.83.amzn2.x86_64.rpm" - ], - "5.4.58-27.104.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/5d45107c31da11d8e9f18e2998f0945e741eea7442fa0f42e403e8225b1bf8c2/kernel-5.4.58-27.104.amzn2.x86_64.rpm" - ], - "5.4.176-91.338.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/09cc8426d137980283238010449f3979f3d7436bda2a96226007a3fc059b46d7/kernel-5.4.176-91.338.amzn2.x86_64.rpm" - ], - "5.4.38-17.76.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/26bae91f033ca8e8957581c1ded33d16516aa5273fa9574d39c2603cd7c1b6ea/kernel-5.4.38-17.76.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" - ], - "5.4.141-67.229.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/921f6950900750341f2c208937d07eeb13f16831d6c9bc2f0a8613d1b53ce937/kernel-5.4.141-67.229.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" - ], - "5.4.156-83.273.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/0e8ad89ee07bbc13d9c29387c570eb4f9b696c2ddfb26ac61072fdd89cc03090/kernel-5.4.156-83.273.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" - ], - "5.4.46-19.75.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/31e08799d7b945c616d397399b2f0eb202259de4163f7f0e1809b8fd03642893/kernel-5.4.46-19.75.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" - ], - "5.4.110-54.182.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/54e9071fbf42d33ed9d122c1b3a0a6fcfd48cc4313c98c13bce5f71b0990a06b/kernel-5.4.110-54.182.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" - ], - "5.4.46-23.77.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/66f13abb905f411a0347a9e02fe9fd60ffed7696ef659f028fb01448900ceec2/kernel-5.4.46-23.77.amzn2.x86_64.rpm" - ], - "5.4.129-62.227.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/6f2b05083bc357370ad4ff081162a21e07ba21b4961eb3dc6ccd667a12a7c9a9/kernel-5.4.129-62.227.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" - ], - "5.4.68-34.125.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/20110ab1563cb70866a32a0021824266476b6be68465e5b5ba0008065da70518/kernel-5.4.68-34.125.amzn2.x86_64.rpm" - ], - "5.4.20-12.75.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/1d8db357d4639b835c6492e81e686f61f8c1e32847b9430dfacf55148e1998b7/kernel-5.4.20-12.75.amzn2.x86_64.rpm" - ], - "5.4.186-102.354.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/46f6ca4a31f0f6f674d12218e5a028362dbf838b58846ac136dc8ec18a91cb6a/kernel-5.4.186-102.354.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" - ], - "5.4.110-54.189.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/98d8f51f141e79d42c8e607e992c0d41fddabfb9e30bc322b3ea93c18561e8f6/kernel-5.4.110-54.189.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" - ], - "5.4.172-90.336.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/c296099d9bee443a258a099b9306f06e8d3a40a2ede5bcb0a9722f3b6fc57bce/kernel-5.4.172-90.336.amzn2.x86_64.rpm" - ], - "5.4.80-40.140.amzn2.x86_64": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm", - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/c51585df56223dd8516ddbaec57f226983e32e42f99b5779b479ab88bf2c7095/../../../../../../blobstore/b4532b952f208f19625e502193e0a0e97ad648b2f2d570ee1512e870f48dad94/kernel-5.4.80-40.140.amzn2.x86_64.rpm" - ] - }, - "CentOS": { - "3.10.0-1160.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/os/x86_64/Packages/kernel-3.10.0-1160.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/os/x86_64/Packages/kernel-3.10.0-1160.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" - ], - "3.10.0-1160.11.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.11.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.11.1.el7.x86_64.rpm" - ], - "3.10.0-1160.15.2.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.15.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.15.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" - ], - "3.10.0-1160.2.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.2.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.2.1.el7.x86_64.rpm" - ], - "3.10.0-1160.2.2.el7.x86_64": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.2.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.2.2.el7.x86_64.rpm" - ], - "3.10.0-1160.21.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.21.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.21.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" - ], - "3.10.0-1160.24.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.24.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.24.1.el7.x86_64.rpm" - ], - "3.10.0-1160.25.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.25.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.25.1.el7.x86_64.rpm" - ], - "3.10.0-1160.31.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.31.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.31.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" - ], - "3.10.0-1160.36.2.el7.x86_64": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.36.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.36.2.el7.x86_64.rpm" - ], - "3.10.0-1160.41.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.41.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.41.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" - ], - "3.10.0-1160.42.2.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.42.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.42.2.el7.x86_64.rpm" - ], - "3.10.0-1160.45.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.45.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.45.1.el7.x86_64.rpm" - ], - "3.10.0-1160.49.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.49.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.49.1.el7.x86_64.rpm" - ], - "3.10.0-1160.53.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.53.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.53.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" - ], - "3.10.0-1160.59.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.59.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.59.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" - ], - "3.10.0-1160.6.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.6.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.6.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" - ], - "3.10.0-1160.62.1.el7.x86_64": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-3.10.0-1160.62.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm", - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-3.10.0-1160.62.1.el7.x86_64.rpm" - ], - "2.6.32-71.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/os/x86_64/Packages/kernel-devel-2.6.32-71.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.0/os/x86_64/Packages/kernel-2.6.32-71.el6.x86_64.rpm" - ], - "2.6.32-131.0.15.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/os/x86_64/Packages/kernel-devel-2.6.32-131.0.15.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.1/os/x86_64/Packages/kernel-2.6.32-131.0.15.el6.x86_64.rpm" - ], - "2.6.32-754.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/os/x86_64/Packages/kernel-devel-2.6.32-754.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/os/x86_64/Packages/kernel-2.6.32-754.el6.x86_64.rpm" - ], - "2.6.32-220.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/os/x86_64/Packages/kernel-2.6.32-220.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.2/os/x86_64/Packages/kernel-devel-2.6.32-220.el6.x86_64.rpm" - ], - "2.6.32-279.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/os/x86_64/Packages/kernel-2.6.32-279.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/os/x86_64/Packages/kernel-devel-2.6.32-279.el6.x86_64.rpm" - ], - "2.6.32-358.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/os/x86_64/Packages/kernel-2.6.32-358.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.4/os/x86_64/Packages/kernel-devel-2.6.32-358.el6.x86_64.rpm" - ], - "2.6.32-431.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/os/x86_64/Packages/kernel-devel-2.6.32-431.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/os/x86_64/Packages/kernel-2.6.32-431.el6.x86_64.rpm" - ], - "2.6.32-504.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/os/x86_64/Packages/kernel-2.6.32-504.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.6/os/x86_64/Packages/kernel-devel-2.6.32-504.el6.x86_64.rpm" - ], - "2.6.32-573.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/os/x86_64/Packages/kernel-2.6.32-573.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.7/os/x86_64/Packages/kernel-devel-2.6.32-573.el6.x86_64.rpm" - ], - "2.6.32-642.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/os/x86_64/Packages/kernel-2.6.32-642.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/os/x86_64/Packages/kernel-devel-2.6.32-642.el6.x86_64.rpm" - ], - "2.6.32-696.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/os/x86_64/Packages/kernel-2.6.32-696.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/os/x86_64/Packages/kernel-devel-2.6.32-696.el6.x86_64.rpm" - ], - "3.10.0-123.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/os/x86_64/Packages/kernel-devel-3.10.0-123.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/os/x86_64/Packages/kernel-3.10.0-123.el7.x86_64.rpm" - ], - "3.10.0-229.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/os/x86_64/Packages/kernel-3.10.0-229.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/os/x86_64/Packages/kernel-devel-3.10.0-229.el7.x86_64.rpm" - ], - "3.10.0-327.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/os/x86_64/Packages/kernel-devel-3.10.0-327.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/os/x86_64/Packages/kernel-3.10.0-327.el7.x86_64.rpm" - ], - "3.10.0-514.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/os/x86_64/Packages/kernel-3.10.0-514.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/os/x86_64/Packages/kernel-devel-3.10.0-514.el7.x86_64.rpm" - ], - "3.10.0-693.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/os/x86_64/Packages/kernel-devel-3.10.0-693.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/os/x86_64/Packages/kernel-3.10.0-693.el7.x86_64.rpm" - ], - "3.10.0-862.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/os/x86_64/Packages/kernel-devel-3.10.0-862.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/os/x86_64/Packages/kernel-3.10.0-862.el7.x86_64.rpm" - ], - "3.10.0-957.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/os/x86_64/Packages/kernel-devel-3.10.0-957.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/os/x86_64/Packages/kernel-3.10.0-957.el7.x86_64.rpm" - ], - "3.10.0-1062.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/os/x86_64/Packages/kernel-3.10.0-1062.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/os/x86_64/Packages/kernel-devel-3.10.0-1062.el7.x86_64.rpm" - ], - "3.10.0-1127.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/os/x86_64/Packages/kernel-devel-3.10.0-1127.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/os/x86_64/Packages/kernel-3.10.0-1127.el7.x86_64.rpm" - ], - "2.6.32-71.29.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.29.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.29.1.el6.x86_64.rpm" - ], - "2.6.32-71.24.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.24.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.24.1.el6.x86_64.rpm" - ], - "2.6.32-71.18.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.18.1.el6.x86_64.rpm" - ], - "2.6.32-71.14.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.14.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.14.1.el6.x86_64.rpm" - ], - "2.6.32-71.7.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.7.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.7.1.el6.x86_64.rpm" - ], - "2.6.32-71.18.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-2.6.32-71.18.2.el6.x86_64.rpm" - ], - "2.6.32-131.6.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.6.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.6.1.el6.x86_64.rpm" - ], - "2.6.32-131.17.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.17.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.17.1.el6.x86_64.rpm" - ], - "2.6.32-131.2.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.2.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.2.1.el6.x86_64.rpm" - ], - "2.6.32-131.12.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.12.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.12.1.el6.x86_64.rpm" - ], - "2.6.32-131.4.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.4.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.4.1.el6.x86_64.rpm" - ], - "2.6.32-131.21.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-2.6.32-131.21.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.21.1.el6.x86_64.rpm" - ], - "2.6.32-754.10.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.10.1.el6.x86_64.rpm" - ], - "2.6.32-754.11.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.11.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm" - ], - "2.6.32-754.12.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.12.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" - ], - "2.6.32-754.14.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.14.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm" - ], - "2.6.32-754.15.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.15.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" - ], - "2.6.32-754.17.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.17.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" - ], - "2.6.32-754.18.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.18.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm" - ], - "2.6.32-754.2.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.2.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" - ], - "2.6.32-754.22.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.22.1.el6.x86_64.rpm" - ], - "2.6.32-754.23.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.23.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm" - ], - "2.6.32-754.24.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.24.2.el6.x86_64.rpm" - ], - "2.6.32-754.24.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.24.3.el6.x86_64.rpm" - ], - "2.6.32-754.25.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.25.1.el6.x86_64.rpm" - ], - "2.6.32-754.27.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.27.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm" - ], - "2.6.32-754.28.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.28.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" - ], - "2.6.32-754.29.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.29.1.el6.x86_64.rpm" - ], - "2.6.32-754.29.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.29.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm" - ], - "2.6.32-754.3.5.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.3.5.el6.x86_64.rpm" - ], - "2.6.32-754.30.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.30.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" - ], - "2.6.32-754.31.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.31.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm" - ], - "2.6.32-754.33.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.33.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm" - ], - "2.6.32-754.35.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.35.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm" - ], - "2.6.32-754.6.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.6.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" - ], - "2.6.32-754.9.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-2.6.32-754.9.1.el6.x86_64.rpm" - ], - "2.6.32-220.23.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.23.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.23.1.el6.x86_64.rpm" - ], - "2.6.32-220.13.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.13.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.13.1.el6.x86_64.rpm" - ], - "2.6.32-220.4.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.4.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.2.el6.x86_64.rpm" - ], - "2.6.32-220.7.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.7.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.7.1.el6.x86_64.rpm" - ], - "2.6.32-220.4.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.4.1.el6.x86_64.rpm" - ], - "2.6.32-220.17.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.17.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.17.1.el6.x86_64.rpm" - ], - "2.6.32-220.2.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.2.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-2.6.32-220.2.1.el6.x86_64.rpm" - ], - "2.6.32-279.11.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.11.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.11.1.el6.x86_64.rpm" - ], - "2.6.32-279.5.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.5.1.el6.x86_64.rpm" - ], - "2.6.32-279.22.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.22.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.22.1.el6.x86_64.rpm" - ], - "2.6.32-279.5.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.5.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.2.el6.x86_64.rpm" - ], - "2.6.32-279.19.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.19.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.19.1.el6.x86_64.rpm" - ], - "2.6.32-279.14.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.14.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.14.1.el6.x86_64.rpm" - ], - "2.6.32-279.1.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.1.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.1.1.el6.x86_64.rpm" - ], - "2.6.32-279.9.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.9.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.9.1.el6.x86_64.rpm" - ], - "2.6.32-279.2.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-2.6.32-279.2.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.2.1.el6.x86_64.rpm" - ], - "2.6.32-358.2.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.2.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.2.1.el6.x86_64.rpm" - ], - "2.6.32-358.18.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.18.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.18.1.el6.x86_64.rpm" - ], - "2.6.32-358.0.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.0.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.0.1.el6.x86_64.rpm" - ], - "2.6.32-358.23.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.23.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.23.2.el6.x86_64.rpm" - ], - "2.6.32-358.6.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.6.1.el6.x86_64.rpm" - ], - "2.6.32-358.11.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.11.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.11.1.el6.x86_64.rpm" - ], - "2.6.32-358.14.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.14.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.14.1.el6.x86_64.rpm" - ], - "2.6.32-358.6.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-2.6.32-358.6.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.2.el6.x86_64.rpm" - ], - "2.6.32-431.5.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.5.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.5.1.el6.x86_64.rpm" - ], - "2.6.32-431.20.5.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.5.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.20.5.el6.x86_64.rpm" - ], - "2.6.32-431.3.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.3.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.3.1.el6.x86_64.rpm" - ], - "2.6.32-431.23.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.23.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.23.3.el6.x86_64.rpm" - ], - "2.6.32-431.17.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.17.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.17.1.el6.x86_64.rpm" - ], - "2.6.32-431.20.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.20.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.3.el6.x86_64.rpm" - ], - "2.6.32-431.11.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.11.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.11.2.el6.x86_64.rpm" - ], - "2.6.32-431.29.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.29.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.29.2.el6.x86_64.rpm" - ], - "2.6.32-431.1.2.0.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.1.2.0.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-2.6.32-431.1.2.0.1.el6.x86_64.rpm" - ], - "2.6.32-504.1.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.1.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.1.3.el6.x86_64.rpm" - ], - "2.6.32-504.12.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.12.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.12.2.el6.x86_64.rpm" - ], - "2.6.32-504.16.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.16.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.16.2.el6.x86_64.rpm" - ], - "2.6.32-504.23.4.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.23.4.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.23.4.el6.x86_64.rpm" - ], - "2.6.32-504.3.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.3.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.3.3.el6.x86_64.rpm" - ], - "2.6.32-504.30.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.30.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.30.3.el6.x86_64.rpm" - ], - "2.6.32-504.8.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-2.6.32-504.8.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.8.1.el6.x86_64.rpm" - ], - "2.6.32-573.1.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.1.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.1.1.el6.x86_64.rpm" - ], - "2.6.32-573.12.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.12.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.12.1.el6.x86_64.rpm" - ], - "2.6.32-573.18.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.18.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.18.1.el6.x86_64.rpm" - ], - "2.6.32-573.22.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.22.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.22.1.el6.x86_64.rpm" - ], - "2.6.32-573.26.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.26.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.26.1.el6.x86_64.rpm" - ], - "2.6.32-573.3.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.3.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.3.1.el6.x86_64.rpm" - ], - "2.6.32-573.7.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.7.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.7.1.el6.x86_64.rpm" - ], - "2.6.32-573.8.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-2.6.32-573.8.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.8.1.el6.x86_64.rpm" - ], - "2.6.32-642.1.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.1.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.1.1.el6.x86_64.rpm" - ], - "2.6.32-642.11.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.11.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.11.1.el6.x86_64.rpm" - ], - "2.6.32-642.13.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.13.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.1.el6.x86_64.rpm" - ], - "2.6.32-642.13.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.13.2.el6.x86_64.rpm" - ], - "2.6.32-642.15.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.15.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.15.1.el6.x86_64.rpm" - ], - "2.6.32-642.3.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.3.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.3.1.el6.x86_64.rpm" - ], - "2.6.32-642.4.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.4.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.4.2.el6.x86_64.rpm" - ], - "2.6.32-642.6.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.6.1.el6.x86_64.rpm" - ], - "2.6.32-642.6.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-2.6.32-642.6.2.el6.x86_64.rpm" - ], - "2.6.32-696.1.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.1.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.1.1.el6.x86_64.rpm" - ], - "2.6.32-696.10.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.10.1.el6.x86_64.rpm" - ], - "2.6.32-696.10.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.10.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.2.el6.x86_64.rpm" - ], - "2.6.32-696.10.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.10.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.3.el6.x86_64.rpm" - ], - "2.6.32-696.13.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.13.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.13.2.el6.x86_64.rpm" - ], - "2.6.32-696.16.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.16.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.16.1.el6.x86_64.rpm" - ], - "2.6.32-696.18.7.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.18.7.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.18.7.el6.x86_64.rpm" - ], - "2.6.32-696.20.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.20.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.20.1.el6.x86_64.rpm" - ], - "2.6.32-696.23.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.23.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" - ], - "2.6.32-696.28.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.28.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" - ], - "2.6.32-696.3.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.3.1.el6.x86_64.rpm" - ], - "2.6.32-696.3.2.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.2.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.3.2.el6.x86_64.rpm" - ], - "2.6.32-696.30.1.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.30.1.el6.x86_64.rpm" - ], - "2.6.32-696.6.3.el6.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.6.3.el6.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-2.6.32-696.6.3.el6.x86_64.rpm" - ], - "3.10.0-123.13.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.13.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.1.el7.x86_64.rpm" - ], - "3.10.0-123.6.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.6.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.6.3.el7.x86_64.rpm" - ], - "3.10.0-123.4.4.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.4.4.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.4.el7.x86_64.rpm" - ], - "3.10.0-123.13.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.13.2.el7.x86_64.rpm" - ], - "3.10.0-123.20.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.20.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.20.1.el7.x86_64.rpm" - ], - "3.10.0-123.4.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.4.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.2.el7.x86_64.rpm" - ], - "3.10.0-123.8.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.8.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.8.1.el7.x86_64.rpm" - ], - "3.10.0-123.9.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.9.2.el7.x86_64.rpm" - ], - "3.10.0-123.9.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.9.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.3.el7.x86_64.rpm" - ], - "3.10.0-123.1.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.1.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-3.10.0-123.1.2.el7.x86_64.rpm" - ], - "3.10.0-229.1.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.1.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.1.2.el7.x86_64.rpm" - ], - "3.10.0-229.11.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.11.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.11.1.el7.x86_64.rpm" - ], - "3.10.0-229.14.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.14.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.14.1.el7.x86_64.rpm" - ], - "3.10.0-229.20.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.20.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.20.1.el7.x86_64.rpm" - ], - "3.10.0-229.4.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.4.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.4.2.el7.x86_64.rpm" - ], - "3.10.0-229.7.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.7.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-3.10.0-229.7.2.el7.x86_64.rpm" - ], - "3.10.0-327.10.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.10.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.10.1.el7.x86_64.rpm" - ], - "3.10.0-327.13.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.13.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.13.1.el7.x86_64.rpm" - ], - "3.10.0-327.18.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.18.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.18.2.el7.x86_64.rpm" - ], - "3.10.0-327.22.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.22.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.22.2.el7.x86_64.rpm" - ], - "3.10.0-327.28.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.28.2.el7.x86_64.rpm" - ], - "3.10.0-327.28.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.28.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.3.el7.x86_64.rpm" - ], - "3.10.0-327.3.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.3.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.3.1.el7.x86_64.rpm" - ], - "3.10.0-327.36.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.36.1.el7.x86_64.rpm" - ], - "3.10.0-327.36.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.36.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.2.el7.x86_64.rpm" - ], - "3.10.0-327.36.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.36.3.el7.x86_64.rpm" - ], - "3.10.0-327.4.4.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.4.4.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.4.el7.x86_64.rpm" - ], - "3.10.0-327.4.5.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-3.10.0-327.4.5.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.5.el7.x86_64.rpm" - ], - "3.10.0-514.10.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.10.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.10.2.el7.x86_64.rpm" - ], - "3.10.0-514.16.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.16.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.16.1.el7.x86_64.rpm" - ], - "3.10.0-514.2.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.2.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.2.2.el7.x86_64.rpm" - ], - "3.10.0-514.21.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.21.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.1.el7.x86_64.rpm" - ], - "3.10.0-514.21.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.21.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.2.el7.x86_64.rpm" - ], - "3.10.0-514.26.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.26.1.el7.x86_64.rpm" - ], - "3.10.0-514.26.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.26.2.el7.x86_64.rpm" - ], - "3.10.0-514.6.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.6.1.el7.x86_64.rpm" - ], - "3.10.0-514.6.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-3.10.0-514.6.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.2.el7.x86_64.rpm" - ], - "3.10.0-693.1.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.1.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.1.1.el7.x86_64.rpm" - ], - "3.10.0-693.11.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.11.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.1.el7.x86_64.rpm" - ], - "3.10.0-693.11.6.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.6.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.11.6.el7.x86_64.rpm" - ], - "3.10.0-693.17.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.17.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.17.1.el7.x86_64.rpm" - ], - "3.10.0-693.2.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.2.1.el7.x86_64.rpm" - ], - "3.10.0-693.2.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.2.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.2.el7.x86_64.rpm" - ], - "3.10.0-693.21.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.21.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.21.1.el7.x86_64.rpm" - ], - "3.10.0-693.5.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-3.10.0-693.5.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.5.2.el7.x86_64.rpm" - ], - "3.10.0-862.11.6.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.11.6.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.11.6.el7.x86_64.rpm" - ], - "3.10.0-862.14.4.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.14.4.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.14.4.el7.x86_64.rpm" - ], - "3.10.0-862.2.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.2.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.2.3.el7.x86_64.rpm" - ], - "3.10.0-862.3.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.3.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.2.el7.x86_64.rpm" - ], - "3.10.0-862.3.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.3.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.3.el7.x86_64.rpm" - ], - "3.10.0-862.6.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.6.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.6.3.el7.x86_64.rpm" - ], - "3.10.0-862.9.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.9.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-3.10.0-862.9.1.el7.x86_64.rpm" - ], - "3.10.0-957.1.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.1.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.1.3.el7.x86_64.rpm" - ], - "3.10.0-957.10.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.10.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" - ], - "3.10.0-957.12.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.12.1.el7.x86_64.rpm" - ], - "3.10.0-957.12.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.12.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" - ], - "3.10.0-957.21.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.21.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm" - ], - "3.10.0-957.21.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.21.3.el7.x86_64.rpm" - ], - "3.10.0-957.27.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.27.2.el7.x86_64.rpm" - ], - "3.10.0-957.5.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.5.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-3.10.0-957.5.1.el7.x86_64.rpm" - ], - "3.10.0-1062.1.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.1.1.el7.x86_64.rpm" - ], - "3.10.0-1062.1.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.1.2.el7.x86_64.rpm" - ], - "3.10.0-1062.12.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.12.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm" - ], - "3.10.0-1062.18.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.18.1.el7.x86_64.rpm" - ], - "3.10.0-1062.4.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.4.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" - ], - "3.10.0-1062.4.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.4.2.el7.x86_64.rpm" - ], - "3.10.0-1062.4.3.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.4.3.el7.x86_64.rpm" - ], - "3.10.0-1062.7.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.7.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm" - ], - "3.10.0-1062.9.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-3.10.0-1062.9.1.el7.x86_64.rpm" - ], - "3.10.0-1127.10.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.10.1.el7.x86_64.rpm" - ], - "3.10.0-1127.13.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.13.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" - ], - "3.10.0-1127.18.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.18.2.el7.x86_64.rpm" - ], - "3.10.0-1127.19.1.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.19.1.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm" - ], - "3.10.0-1127.8.2.el7.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-3.10.0-1127.8.2.el7.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" - ], - "4.18.0-80.1.2.el8_0.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.1.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.1.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.1.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm" - ], - "4.18.0-80.11.1.el8_0.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.11.1.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.11.1.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.11.1.el8_0.x86_64.rpm" - ], - "4.18.0-80.11.2.el8_0.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.11.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.11.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.11.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" - ], - "4.18.0-80.4.2.el8_0.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.4.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.4.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.4.2.el8_0.x86_64.rpm" - ], - "4.18.0-80.7.1.el8_0.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.7.1.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.7.1.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.7.1.el8_0.x86_64.rpm" - ], - "4.18.0-80.7.2.el8_0.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.7.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.7.2.el8_0.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.7.2.el8_0.x86_64.rpm" - ], - "4.18.0-80.el8.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-80.el8.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-4.18.0-80.el8.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.el8.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-80.el8.x86_64.rpm" - ], - "4.18.0-147.8.1.el8_1.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-4.18.0-147.8.1.el8_1.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-147.8.1.el8_1.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-147.8.1.el8_1.x86_64.rpm" - ], - "4.18.0-193.28.1.el8_2.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-193.28.1.el8_2.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-193.28.1.el8_2.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-4.18.0-193.28.1.el8_2.x86_64.rpm" - ], - "4.18.0-240.22.1.el8_3.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-240.22.1.el8_3.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-4.18.0-240.22.1.el8_3.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-240.22.1.el8_3.x86_64.rpm" - ], - "4.18.0-305.10.2.el8_4.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.10.2.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.10.2.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.10.2.el8_4.x86_64.rpm" - ], - "4.18.0-305.12.1.el8_4.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.12.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.12.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.12.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.17.1.el8_4.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.17.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.17.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.17.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.19.1.el8_4.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.19.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.19.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.19.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.25.1.el8_4.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.25.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.25.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.25.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.3.1.el8.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.3.1.el8.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.3.1.el8.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.3.1.el8.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.x86_64.rpm" - ], - "4.18.0-305.7.1.el8_4.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-4.18.0-305.7.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-305.7.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-305.7.1.el8_4.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm" - ], - "4.18.0-348.2.1.el8_5.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-4.18.0-348.2.1.el8_5.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-348.2.1.el8_5.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-348.2.1.el8_5.x86_64.rpm" - ], - "4.18.0-348.7.1.el8_5.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-4.18.0-348.7.1.el8_5.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-348.7.1.el8_5.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-348.7.1.el8_5.x86_64.rpm" - ], - "4.18.0-348.el8.x86_64": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-4.18.0-348.el8.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.el8.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-348.el8.x86_64.rpm", - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-348.el8.x86_64.rpm" - ] - }, - "Fedora": { - "5.6.6-300.fc32.x86_64": [ - "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-core-5.6.6-300.fc32.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-5.6.6-300.fc32.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-modules-5.6.6-300.fc32.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-devel-5.6.6-300.fc32.x86_64.rpm" - ], - "5.8.15-301.fc33.x86_64": [ - "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-modules-5.8.15-301.fc33.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-devel-5.8.15-301.fc33.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-5.8.15-301.fc33.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-core-5.8.15-301.fc33.x86_64.rpm" - ], - "5.11.12-300.fc34.x86_64": [ - "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-core-5.11.12-300.fc34.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-5.11.12-300.fc34.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-modules-5.11.12-300.fc34.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-devel-5.11.12-300.fc34.x86_64.rpm" - ], - "5.14.10-300.fc35.x86_64": [ - "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-5.14.10-300.fc35.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-modules-5.14.10-300.fc35.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-devel-5.14.10-300.fc35.x86_64.rpm", - "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-core-5.14.10-300.fc35.x86_64.rpm" - ], - "5.11.22-100.fc32.x86_64": [ - "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-5.11.22-100.fc32.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-devel-5.11.22-100.fc32.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-core-5.11.22-100.fc32.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-modules-5.11.22-100.fc32.x86_64.rpm" - ], - "5.14.18-100.fc33.x86_64": [ - "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-devel-5.14.18-100.fc33.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-5.14.18-100.fc33.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-core-5.14.18-100.fc33.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-modules-5.14.18-100.fc33.x86_64.rpm" - ], - "5.16.18-100.fc34.x86_64": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-core-5.16.18-100.fc34.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.16.18-100.fc34.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-5.16.18-100.fc34.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-modules-5.16.18-100.fc34.x86_64.rpm" - ], - "5.16.18-200.fc35.x86_64": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-modules-5.16.18-200.fc35.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-core-5.16.18-200.fc35.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-5.16.18-200.fc35.x86_64.rpm", - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.16.18-200.fc35.x86_64.rpm" - ] - }, - "Oracle6": { - "2.6.32-696.23.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-696.23.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" - ], - "2.6.32-696.28.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-696.28.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" - ], - "2.6.32-696.30.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-696.30.1.el6.x86_64.rpm" - ], - "2.6.32-696.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-696.el6.x86_64.rpm" - ], - "2.6.32-754.10.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.10.1.el6.x86_64.rpm" - ], - "2.6.32-754.11.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.11.1.el6.x86_64.rpm" - ], - "2.6.32-754.12.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.12.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" - ], - "2.6.32-754.14.2.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.14.2.el6.x86_64.rpm" - ], - "2.6.32-754.15.3.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.15.3.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" - ], - "2.6.32-754.17.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.17.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" - ], - "2.6.32-754.18.2.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.18.2.el6.x86_64.rpm" - ], - "2.6.32-754.2.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.2.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" - ], - "2.6.32-754.22.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.22.1.el6.x86_64.rpm" - ], - "2.6.32-754.23.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.23.1.el6.x86_64.rpm" - ], - "2.6.32-754.24.2.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.24.2.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm" - ], - "2.6.32-754.24.3.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.24.3.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm" - ], - "2.6.32-754.25.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.25.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm" - ], - "2.6.32-754.27.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.27.1.el6.x86_64.rpm" - ], - "2.6.32-754.28.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.28.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" - ], - "2.6.32-754.29.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.29.1.el6.x86_64.rpm" - ], - "2.6.32-754.29.2.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.29.2.el6.x86_64.rpm" - ], - "2.6.32-754.3.5.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.3.5.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm" - ], - "2.6.32-754.30.2.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.30.2.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" - ], - "2.6.32-754.31.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.31.1.el6.x86_64.rpm" - ], - "2.6.32-754.33.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.33.1.el6.x86_64.rpm" - ], - "2.6.32-754.6.3.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.6.3.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" - ], - "2.6.32-754.9.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.9.1.el6.x86_64.rpm" - ], - "2.6.32-754.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.el6.x86_64.rpm" - ], - "2.6.32-754.35.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-2.6.32-754.35.1.el6.x86_64.rpm" - ], - "2.6.32-696.1.1.0.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-696.1.1.0.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-2.6.32-696.1.1.0.1.el6.x86_64.rpm" - ], - "2.6.32-754.33.1.0.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.33.1.0.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-2.6.32-754.33.1.0.1.el6.x86_64.rpm" - ], - "2.6.32-754.35.1.0.1.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.0.1.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-2.6.32-754.35.1.0.1.el6.x86_64.rpm" - ], - "2.6.32-754.35.1.0.2.el6.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-2.6.32-754.35.1.0.2.el6.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.0.2.el6.x86_64.rpm" - ], - "4.1.12-124.42.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.42.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.42.3.el6uek.x86_64.rpm" - ], - "4.1.12-124.43.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.43.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.43.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.43.4.el6uek.x86_64.rpm" - ], - "4.1.12-124.42.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.42.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.42.4.el6uek.x86_64.rpm" - ], - "4.1.12-124.44.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.44.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.44.4.el6uek.x86_64.rpm" - ], - "4.1.12-124.44.4.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.44.4.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.44.4.1.el6uek.noarch.rpm" - ], - "4.1.12-124.45.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.45.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.45.2.el6uek.x86_64.rpm" - ], - "4.1.12-124.45.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.45.6.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.45.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.6.el6uek.x86_64.rpm" - ], - "4.1.12-124.46.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.46.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.46.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.3.el6uek.x86_64.rpm" - ], - "4.1.12-124.46.4.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.4.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.46.4.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.46.4.1.el6uek.x86_64.rpm" - ], - "4.1.12-124.47.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.47.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.47.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.47.3.el6uek.noarch.rpm" - ], - "4.1.12-124.48.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.2.el6uek.noarch.rpm" - ], - "4.1.12-124.48.3.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.3.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.3.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.3.1.el6uek.x86_64.rpm" - ], - "4.1.12-124.48.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.5.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.5.el6uek.x86_64.rpm" - ], - "4.1.12-124.48.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.6.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.6.el6uek.x86_64.rpm" - ], - "3.8.13-118.10.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.10.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.10.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.10.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.11.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.11.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.11.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.11.2.el6uek.noarch.rpm" - ], - "3.8.13-118.13.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.13.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.13.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.13.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.13.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.13.3.el6uek.x86_64.rpm" - ], - "3.8.13-118.14.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.14.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.14.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.14.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.14.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.14.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.15.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.15.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.15.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.15.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.16.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.16.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.16.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.16.3.el6uek.x86_64.rpm" - ], - "3.8.13-118.16.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.16.4.el6uek.x86_64.rpm" - ], - "3.8.13-118.17.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.17.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.17.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.4.el6uek.x86_64.rpm" - ], - "3.8.13-118.17.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.17.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.17.5.el6uek.noarch.rpm" - ], - "3.8.13-118.18.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.18.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.18.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.18.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.3.el6uek.noarch.rpm" - ], - "3.8.13-118.18.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.18.4.el6uek.x86_64.rpm" - ], - "3.8.13-118.19.10.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.10.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.10.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.10.el6uek.x86_64.rpm" - ], - "3.8.13-118.19.12.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.12.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.12.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.12.el6uek.x86_64.rpm" - ], - "3.8.13-118.19.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.19.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.3.el6uek.x86_64.rpm" - ], - "3.8.13-118.19.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.4.el6uek.x86_64.rpm" - ], - "3.8.13-118.19.7.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.19.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.7.el6uek.noarch.rpm" - ], - "3.8.13-118.2.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.2.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.1.el6uek.noarch.rpm" - ], - "3.8.13-118.2.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.2.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.2.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.2.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.4.el6uek.x86_64.rpm" - ], - "3.8.13-118.2.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.2.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.5.el6uek.noarch.rpm" - ], - "3.8.13-118.20.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.20.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.20.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.3.el6uek.noarch.rpm" - ], - "3.8.13-118.20.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.6.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.6.el6uek.x86_64.rpm" - ], - "3.8.13-118.20.7.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.20.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.7.el6uek.noarch.rpm" - ], - "3.8.13-118.21.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.21.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.21.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.21.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.21.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.21.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.4.el6uek.x86_64.rpm" - ], - "3.8.13-118.22.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.22.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.22.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.22.1.el6uek.noarch.rpm" - ], - "3.8.13-118.23.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.23.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.23.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.23.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.24.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.24.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.1.el6uek.noarch.rpm" - ], - "3.8.13-118.24.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.24.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.2.el6uek.noarch.rpm" - ], - "3.8.13-118.24.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.24.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.3.el6uek.x86_64.rpm" - ], - "3.8.13-118.25.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.25.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.25.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.25.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.26.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.26.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.26.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.26.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.27.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.27.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.27.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.27.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.28.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.28.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.28.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.28.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.29.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.29.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.29.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.29.1.el6uek.noarch.rpm" - ], - "3.8.13-118.3.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.3.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.3.1.el6uek.noarch.rpm" - ], - "3.8.13-118.3.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.3.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.3.2.el6uek.noarch.rpm" - ], - "3.8.13-118.30.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.30.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.30.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.30.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.31.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.31.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.31.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.31.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.32.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.32.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.32.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.32.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.33.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.33.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.33.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.33.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.34.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.34.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.34.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.34.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.35.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.35.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.35.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.35.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.35.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.35.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.36.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.36.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.36.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.36.1.el6uek.noarch.rpm" - ], - "3.8.13-118.37.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.37.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.37.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.37.1.el6uek.noarch.rpm" - ], - "3.8.13-118.38.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.38.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.38.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.38.1.el6uek.noarch.rpm" - ], - "3.8.13-118.39.1.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.39.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.39.1.1.el6uek.noarch.rpm" - ], - "3.8.13-118.39.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.39.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.39.1.el6uek.noarch.rpm" - ], - "3.8.13-118.4.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.4.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.4.1.el6uek.noarch.rpm" - ], - "3.8.13-118.4.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.4.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.4.2.el6uek.noarch.rpm" - ], - "3.8.13-118.40.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.40.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.40.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.40.1.el6uek.noarch.rpm" - ], - "3.8.13-118.41.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.41.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.41.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.41.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.42.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.42.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.42.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.42.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.43.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.43.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.43.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.43.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.44.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.44.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.44.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.44.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.45.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.45.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.45.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.45.1.el6uek.noarch.rpm" - ], - "3.8.13-118.46.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.46.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.46.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.46.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.47.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.47.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.47.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.47.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.47.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.47.2.el6uek.noarch.rpm" - ], - "3.8.13-118.48.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.48.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.48.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.48.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.6.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.6.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.6.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.6.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.6.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.6.2.el6uek.noarch.rpm" - ], - "3.8.13-118.7.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.7.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.7.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.7.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.8.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.8.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.8.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.8.1.el6uek.noarch.rpm" - ], - "3.8.13-118.9.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.9.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.9.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.9.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.9.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.9.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.el6uek.noarch.rpm" - ], - "3.8.13-16.1.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.1.1.el6uek.noarch.rpm" - ], - "3.8.13-16.2.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.2.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.2.1.el6uek.noarch.rpm" - ], - "3.8.13-16.2.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.2.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.2.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.2.el6uek.x86_64.rpm" - ], - "3.8.13-16.2.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.2.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.2.3.el6uek.noarch.rpm" - ], - "3.8.13-16.3.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.3.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.3.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.3.1.el6uek.x86_64.rpm" - ], - "3.8.13-16.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-16.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-16.el6uek.noarch.rpm" - ], - "3.8.13-26.1.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.1.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.1.1.el6uek.x86_64.rpm" - ], - "3.8.13-26.2.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.2.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.2.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.1.el6uek.x86_64.rpm" - ], - "3.8.13-26.2.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.2.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.2.2.el6uek.x86_64.rpm" - ], - "3.8.13-26.2.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.2.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.2.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.3.el6uek.x86_64.rpm" - ], - "3.8.13-26.2.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.2.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.2.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.4.el6uek.x86_64.rpm" - ], - "3.8.13-26.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-26.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-26.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.el6uek.x86_64.rpm" - ], - "3.8.13-35.1.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.1.1.el6uek.noarch.rpm" - ], - "3.8.13-35.1.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.1.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.1.2.el6uek.noarch.rpm" - ], - "3.8.13-35.1.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.1.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.1.3.el6uek.x86_64.rpm" - ], - "3.8.13-35.3.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.3.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.2.el6uek.x86_64.rpm" - ], - "3.8.13-35.3.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.3.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.3.el6uek.noarch.rpm" - ], - "3.8.13-35.3.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.3.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.4.el6uek.x86_64.rpm" - ], - "3.8.13-35.3.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.5.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.3.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.5.el6uek.x86_64.rpm" - ], - "3.8.13-35.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-35.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.el6uek.x86_64.rpm" - ], - "3.8.13-44.1.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.1.el6uek.noarch.rpm" - ], - "3.8.13-44.1.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.1.3.el6uek.x86_64.rpm" - ], - "3.8.13-44.1.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.1.4.el6uek.x86_64.rpm" - ], - "3.8.13-44.1.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.1.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.5.el6uek.noarch.rpm" - ], - "3.8.13-44.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-44.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.el6uek.noarch.rpm" - ], - "3.8.13-55.1.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.1.1.el6uek.x86_64.rpm" - ], - "3.8.13-55.1.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.1.2.el6uek.x86_64.rpm" - ], - "3.8.13-55.1.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.5.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.1.5.el6uek.x86_64.rpm" - ], - "3.8.13-55.1.8.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.1.8.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.8.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.8.el6uek.x86_64.rpm" - ], - "3.8.13-55.2.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.2.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.2.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.2.1.el6uek.x86_64.rpm" - ], - "3.8.13-55.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-55.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.el6uek.x86_64.rpm" - ], - "3.8.13-68.1.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.1.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.1.2.el6uek.noarch.rpm" - ], - "3.8.13-68.1.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.1.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.1.3.el6uek.x86_64.rpm" - ], - "3.8.13-68.2.2.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.2.el6uek.noarch.rpm" - ], - "3.8.13-68.2.2.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.3.el6uek.x86_64.rpm" - ], - "3.8.13-68.2.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.el6uek.x86_64.rpm" - ], - "3.8.13-68.3.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.1.el6uek.x86_64.rpm" - ], - "3.8.13-68.3.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.2.el6uek.x86_64.rpm" - ], - "3.8.13-68.3.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.3.el6uek.x86_64.rpm" - ], - "3.8.13-68.3.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.4.el6uek.x86_64.rpm" - ], - "3.8.13-68.3.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.5.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.3.5.el6uek.x86_64.rpm" - ], - "3.8.13-68.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-68.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.el6uek.noarch.rpm" - ], - "3.8.13-98.1.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.1.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.1.el6uek.x86_64.rpm" - ], - "3.8.13-98.1.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.1.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.1.2.el6uek.x86_64.rpm" - ], - "3.8.13-98.2.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.2.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.2.1.el6uek.noarch.rpm" - ], - "3.8.13-98.2.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.2.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.2.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.2.el6uek.x86_64.rpm" - ], - "3.8.13-98.4.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.4.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.4.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.4.1.el6uek.x86_64.rpm" - ], - "3.8.13-98.5.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.5.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.5.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.5.2.el6uek.x86_64.rpm" - ], - "3.8.13-98.6.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.6.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.6.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.6.1.el6uek.x86_64.rpm" - ], - "3.8.13-98.7.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.7.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.7.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.7.1.el6uek.noarch.rpm" - ], - "3.8.13-98.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-98.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.el6uek.x86_64.rpm" - ], - "3.8.13-118.49.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.49.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.49.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.49.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.50.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.50.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.50.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.50.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.51.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.51.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.51.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.2.el6uek.x86_64.rpm" - ], - "3.8.13-118.52.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.52.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.52.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.52.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.53.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.53.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.53.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.53.1.el6uek.noarch.rpm" - ], - "3.8.13-118.54.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.54.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.54.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.54.1.el6uek.x86_64.rpm" - ], - "3.8.13-118.51.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.51.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.51.1.el6uek.noarch.rpm" - ], - "3.8.13-118.55.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-3.8.13-118.55.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.55.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.55.1.el6uek.x86_64.rpm" - ], - "2.6.39-100.10.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-100.10.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-100.10.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.10.1.el6uek.x86_64.rpm" - ], - "2.6.39-100.5.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-100.5.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.5.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-100.5.1.el6uek.noarch.rpm" - ], - "2.6.39-100.6.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.6.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-100.6.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-100.6.1.el6uek.noarch.rpm" - ], - "2.6.39-100.7.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-100.7.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.7.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-100.7.1.el6uek.noarch.rpm" - ], - "2.6.39-200.24.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.24.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.24.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.24.1.el6uek.noarch.rpm" - ], - "2.6.39-200.29.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.29.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.29.1.el6uek.noarch.rpm" - ], - "2.6.39-200.29.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.29.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.29.2.el6uek.x86_64.rpm" - ], - "2.6.39-200.29.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.29.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.29.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.3.el6uek.x86_64.rpm" - ], - "2.6.39-200.31.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.31.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.31.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.31.1.el6uek.noarch.rpm" - ], - "2.6.39-200.32.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.32.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.32.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.32.1.el6uek.x86_64.rpm" - ], - "2.6.39-200.33.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.33.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.33.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.33.1.el6uek.x86_64.rpm" - ], - "2.6.39-200.34.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.34.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-200.34.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-200.34.1.el6uek.x86_64.rpm" - ], - "2.6.39-300.17.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.17.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.17.1.el6uek.x86_64.rpm" - ], - "2.6.39-300.17.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.17.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.17.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.2.el6uek.x86_64.rpm" - ], - "2.6.39-300.17.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.17.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.17.3.el6uek.x86_64.rpm" - ], - "2.6.39-300.26.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.26.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.26.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.26.1.el6uek.x86_64.rpm" - ], - "2.6.39-300.28.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.28.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.28.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.28.1.el6uek.x86_64.rpm" - ], - "2.6.39-300.32.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-300.32.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.32.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-300.32.4.el6uek.x86_64.rpm" - ], - "2.6.39-400.109.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.1.el6uek.noarch.rpm" - ], - "2.6.39-400.109.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.3.el6uek.x86_64.rpm" - ], - "2.6.39-400.109.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.4.el6uek.x86_64.rpm" - ], - "2.6.39-400.109.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.5.el6uek.noarch.rpm" - ], - "2.6.39-400.109.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.109.6.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.109.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.6.el6uek.x86_64.rpm" - ], - "2.6.39-400.17.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.17.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.17.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.17.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.17.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.17.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.17.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.17.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.209.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.209.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.209.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.209.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.209.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.209.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.209.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.209.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.21.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.21.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.21.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.21.1.el6uek.noarch.rpm" - ], - "2.6.39-400.21.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.21.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.21.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.21.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.210.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.210.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.210.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.210.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.211.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.211.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.211.1.el6uek.noarch.rpm" - ], - "2.6.39-400.211.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.211.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.211.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.211.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.211.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.211.3.el6uek.x86_64.rpm" - ], - "2.6.39-400.212.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.212.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.212.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.212.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.214.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.214.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.3.el6uek.x86_64.rpm" - ], - "2.6.39-400.214.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.4.el6uek.x86_64.rpm" - ], - "2.6.39-400.214.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.5.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.5.el6uek.x86_64.rpm" - ], - "2.6.39-400.214.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.214.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.214.6.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.6.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.10.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.10.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.10.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.10.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.11.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.11.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.11.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.11.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.12.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.12.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.12.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.12.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.13.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.13.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.13.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.13.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.14.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.14.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.14.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.14.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.15.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.15.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.15.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.15.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.3.el6uek.noarch.rpm" - ], - "2.6.39-400.215.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.4.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.6.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.6.el6uek.x86_64.rpm" - ], - "2.6.39-400.215.7.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.215.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.215.7.el6uek.noarch.rpm" - ], - "2.6.39-400.23.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.23.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.23.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.23.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.24.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.24.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.24.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.24.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.245.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.245.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.245.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.245.1.el6uek.noarch.rpm" - ], - "2.6.39-400.246.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.246.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.246.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.246.2.el6uek.noarch.rpm" - ], - "2.6.39-400.247.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.247.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.247.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.247.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.248.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.248.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.248.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.248.3.el6uek.x86_64.rpm" - ], - "2.6.39-400.249.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.249.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.249.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.249.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.249.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.249.3.el6uek.noarch.rpm" - ], - "2.6.39-400.249.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.249.4.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.249.4.el6uek.x86_64.rpm" - ], - "2.6.39-400.250.10.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.10.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.10.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.10.el6uek.noarch.rpm" - ], - "2.6.39-400.250.11.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.11.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.11.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.11.el6uek.x86_64.rpm" - ], - "2.6.39-400.250.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.2.el6uek.noarch.rpm" - ], - "2.6.39-400.250.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.5.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.5.el6uek.x86_64.rpm" - ], - "2.6.39-400.250.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.6.el6uek.noarch.rpm" - ], - "2.6.39-400.250.7.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.7.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.7.el6uek.x86_64.rpm" - ], - "2.6.39-400.250.9.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.250.9.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.9.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.250.9.el6uek.noarch.rpm" - ], - "2.6.39-400.264.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.264.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.264.1.el6uek.noarch.rpm" - ], - "2.6.39-400.264.13.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.264.13.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.264.13.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.13.el6uek.x86_64.rpm" - ], - "2.6.39-400.264.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.264.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.264.4.el6uek.noarch.rpm" - ], - "2.6.39-400.264.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.264.5.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.264.5.el6uek.x86_64.rpm" - ], - "2.6.39-400.276.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.276.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.276.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.276.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.277.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.277.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.277.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.277.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.278.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.278.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.278.1.el6uek.noarch.rpm" - ], - "2.6.39-400.278.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.278.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.278.2.el6uek.noarch.rpm" - ], - "2.6.39-400.278.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.278.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.278.3.el6uek.noarch.rpm" - ], - "2.6.39-400.280.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.280.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.280.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.280.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.281.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.281.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.281.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.281.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.282.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.282.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.282.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.282.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.283.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.283.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.283.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.283.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.283.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.283.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.283.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.283.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.284.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.284.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.284.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.284.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.286.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.286.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.286.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.286.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.286.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.286.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.286.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.286.3.el6uek.noarch.rpm" - ], - "2.6.39-400.290.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.290.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.290.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.290.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.290.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.290.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.290.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.290.2.el6uek.noarch.rpm" - ], - "2.6.39-400.293.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.293.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.293.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.293.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.293.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.293.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.293.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.293.2.el6uek.noarch.rpm" - ], - "2.6.39-400.294.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.294.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.294.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.3.el6uek.noarch.rpm" - ], - "2.6.39-400.294.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.6.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.6.el6uek.x86_64.rpm" - ], - "2.6.39-400.294.7.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.294.7.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.294.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.7.el6uek.x86_64.rpm" - ], - "2.6.39-400.295.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.295.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.295.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.295.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.296.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.296.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.296.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.296.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.297.11.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.11.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.11.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.11.el6uek.x86_64.rpm" - ], - "2.6.39-400.297.12.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.12.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.12.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.12.el6uek.noarch.rpm" - ], - "2.6.39-400.297.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.3.el6uek.noarch.rpm" - ], - "2.6.39-400.297.4.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.4.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.4.el6uek.noarch.rpm" - ], - "2.6.39-400.297.5.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.5.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.5.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.5.el6uek.x86_64.rpm" - ], - "2.6.39-400.297.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.6.el6uek.noarch.rpm" - ], - "2.6.39-400.297.8.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.8.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.8.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.8.el6uek.x86_64.rpm" - ], - "2.6.39-400.297.9.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.297.9.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.297.9.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.9.el6uek.x86_64.rpm" - ], - "2.6.39-400.298.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.298.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.298.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.3.el6uek.x86_64.rpm" - ], - "2.6.39-400.298.6.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.6.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.6.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.6.el6uek.x86_64.rpm" - ], - "2.6.39-400.298.7.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.298.7.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.298.7.el6uek.noarch.rpm" - ], - "2.6.39-400.299.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.299.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.299.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.299.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.299.3.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.299.3.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.299.3.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.299.3.el6uek.x86_64.rpm" - ], - "2.6.39-400.300.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.300.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.300.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.300.2.el6uek.noarch.rpm" - ], - "2.6.39-400.301.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.301.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.301.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.301.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.301.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.301.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.301.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.301.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.302.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.302.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.302.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.302.2.el6uek.noarch.rpm" - ], - "2.6.39-400.303.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.303.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.303.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.303.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.304.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.304.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.304.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.304.1.el6uek.noarch.rpm" - ], - "2.6.39-400.305.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.305.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.305.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.305.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.306.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.306.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.306.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.306.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.307.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.307.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.307.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.307.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.308.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.308.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.308.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.308.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.310.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.310.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.310.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.310.1.el6uek.noarch.rpm" - ], - "2.6.39-400.311.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.311.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.311.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.311.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.312.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.312.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.312.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.312.1.el6uek.noarch.rpm" - ], - "2.6.39-400.312.2.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.312.2.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.312.2.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.312.2.el6uek.x86_64.rpm" - ], - "2.6.39-400.313.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.313.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.313.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.313.1.el6uek.noarch.rpm" - ], - "2.6.39-400.314.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.314.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.314.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.314.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.315.1.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.315.1.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.315.1.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.315.1.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.315.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.315.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.315.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.315.1.el6uek.noarch.rpm" - ], - "2.6.39-400.316.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.316.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.316.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.316.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.317.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.317.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.317.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.317.1.el6uek.noarch.rpm" - ], - "2.6.39-400.318.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.318.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.318.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.318.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.319.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.319.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.319.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.319.1.el6uek.noarch.rpm" - ], - "2.6.39-400.320.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.320.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.320.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.320.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.321.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.321.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.321.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.321.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.322.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.322.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.322.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.322.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.323.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.323.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.323.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.323.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.324.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.324.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.324.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.324.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.325.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.325.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.325.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.325.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.326.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.326.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.326.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.326.1.el6uek.noarch.rpm" - ], - "2.6.39-400.327.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.327.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.327.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.327.1.el6uek.noarch.rpm" - ], - "2.6.39-400.328.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.328.1.el6uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.328.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.328.1.el6uek.x86_64.rpm" - ], - "2.6.39-400.330.1.el6uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.330.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.330.1.el6uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.330.1.el6uek.noarch.rpm" - ] - }, - "Oracle7": { - "3.10.0-1062.1.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.1.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm" - ], - "3.10.0-1062.1.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.1.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm" - ], - "3.10.0-1062.12.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.12.1.el7.x86_64.rpm" - ], - "3.10.0-1062.18.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.18.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm" - ], - "3.10.0-1062.4.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.4.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" - ], - "3.10.0-1062.4.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.4.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm" - ], - "3.10.0-1062.4.3.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.4.3.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm" - ], - "3.10.0-1062.7.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.7.1.el7.x86_64.rpm" - ], - "3.10.0-1062.9.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.9.1.el7.x86_64.rpm" - ], - "3.10.0-1062.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1062.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.el7.x86_64.rpm" - ], - "3.10.0-1127.10.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.10.1.el7.x86_64.rpm" - ], - "3.10.0-1127.13.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.13.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" - ], - "3.10.0-1127.18.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.18.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm" - ], - "3.10.0-1127.19.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.19.1.el7.x86_64.rpm" - ], - "3.10.0-1127.8.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.8.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" - ], - "3.10.0-1127.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1127.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.el7.x86_64.rpm" - ], - "3.10.0-1160.11.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.11.1.el7.x86_64.rpm" - ], - "3.10.0-1160.15.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.15.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" - ], - "3.10.0-1160.2.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.2.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" - ], - "3.10.0-1160.2.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.2.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" - ], - "3.10.0-1160.21.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.21.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" - ], - "3.10.0-1160.24.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.24.1.el7.x86_64.rpm" - ], - "3.10.0-1160.25.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.25.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" - ], - "3.10.0-1160.31.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.31.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" - ], - "3.10.0-1160.36.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.36.2.el7.x86_64.rpm" - ], - "3.10.0-1160.41.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.41.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" - ], - "3.10.0-1160.42.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.42.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" - ], - "3.10.0-1160.45.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.45.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" - ], - "3.10.0-1160.49.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.49.1.el7.x86_64.rpm" - ], - "3.10.0-1160.53.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.53.1.el7.x86_64.rpm" - ], - "3.10.0-1160.59.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.59.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" - ], - "3.10.0-1160.6.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.6.1.el7.x86_64.rpm" - ], - "3.10.0-1160.62.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.62.1.el7.x86_64.rpm" - ], - "3.10.0-1160.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-1160.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.el7.x86_64.rpm" - ], - "3.10.0-957.10.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.10.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" - ], - "3.10.0-957.12.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.12.1.el7.x86_64.rpm" - ], - "3.10.0-957.12.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.12.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" - ], - "3.10.0-957.21.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.21.2.el7.x86_64.rpm" - ], - "3.10.0-957.21.3.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.21.3.el7.x86_64.rpm" - ], - "3.10.0-957.27.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-3.10.0-957.27.2.el7.x86_64.rpm" - ], - "3.10.0-1062.0.0.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.0.0.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.0.0.0.1.el7.x86_64.rpm" - ], - "3.10.0-1062.1.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.1.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.1.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1062.1.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.1.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.1.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-1062.12.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.12.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.12.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1062.18.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.18.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.18.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1062.4.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.4.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.4.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1062.4.3.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.4.3.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.4.3.0.1.el7.x86_64.rpm" - ], - "3.10.0-1062.7.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.7.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.7.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1062.9.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.9.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1062.9.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1127.0.0.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.0.0.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.0.0.0.1.el7.x86_64.rpm" - ], - "3.10.0-1127.10.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.10.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.10.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1127.13.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.13.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.13.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1127.18.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.18.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.18.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-1127.19.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.19.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1127.19.1.0.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.19.1.0.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.0.2.el7.x86_64.rpm" - ], - "3.10.0-1127.8.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.8.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1127.8.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.11.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.11.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.11.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.15.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.15.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.15.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.2.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.2.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.2.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.2.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.2.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.2.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.21.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.21.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.21.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.24.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.24.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.24.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.25.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.25.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.25.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.31.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.31.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.31.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.36.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.36.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.36.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.41.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.41.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.41.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.42.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.42.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.42.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.45.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.45.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.45.1.0.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.45.1.0.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.0.2.el7.x86_64.rpm" - ], - "3.10.0-1160.49.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.49.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.49.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.53.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.53.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.53.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.59.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.59.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.59.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.6.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.6.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.6.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-1160.62.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-1160.62.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-514.10.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.10.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.10.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-514.16.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.16.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.16.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-514.21.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.21.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.21.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-514.21.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.21.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.21.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-514.26.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.26.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.26.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-514.26.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.26.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.26.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-514.6.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.6.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.6.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-514.6.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.6.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-514.6.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-693.0.0.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.0.0.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.0.0.0.1.el7.x86_64.rpm" - ], - "3.10.0-693.1.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.1.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.1.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-693.11.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.11.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.11.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-693.11.6.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.11.6.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.11.6.0.1.el7.x86_64.rpm" - ], - "3.10.0-693.17.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.17.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.17.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-693.2.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.2.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.2.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-693.2.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.2.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.2.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-693.21.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.21.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.21.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-693.5.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-693.5.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.5.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-862.0.0.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.0.0.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.0.0.0.1.el7.x86_64.rpm" - ], - "3.10.0-862.11.6.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.11.6.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.11.6.0.1.el7.x86_64.rpm" - ], - "3.10.0-862.14.4.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.14.4.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.14.4.0.1.el7.x86_64.rpm" - ], - "3.10.0-862.2.3.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.2.3.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.2.3.0.1.el7.x86_64.rpm" - ], - "3.10.0-862.3.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.3.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.3.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-862.3.3.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.3.3.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.3.3.0.1.el7.x86_64.rpm" - ], - "3.10.0-862.6.3.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.6.3.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.6.3.0.1.el7.x86_64.rpm" - ], - "3.10.0-862.9.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.9.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-862.9.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.0.0.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.0.0.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.0.0.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.0.0.0.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.0.0.0.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.0.0.0.2.el7.x86_64.rpm" - ], - "3.10.0-957.1.3.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.1.3.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.1.3.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.1.3.0.3.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.1.3.0.3.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.1.3.0.3.el7.x86_64.rpm" - ], - "3.10.0-957.10.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.10.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.10.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.12.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.12.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.12.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.12.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.12.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.12.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.21.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.21.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.21.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.21.3.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.21.3.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.21.3.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.27.2.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.27.2.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.27.2.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.5.1.0.1.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.5.1.0.1.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.5.1.0.1.el7.x86_64.rpm" - ], - "3.10.0-957.5.1.0.2.el7.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-3.10.0-957.5.1.0.2.el7.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.5.1.0.2.el7.x86_64.rpm" - ], - "5.4.17-2011.0.7.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.0.7.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el7uek.x86_64.rpm" - ], - "5.4.17-2011.1.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.1.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el7uek.x86_64.rpm" - ], - "5.4.17-2011.2.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.2.2.el7uek.x86_64.rpm" - ], - "5.4.17-2011.3.2.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.3.2.1.el7uek.x86_64.rpm" - ], - "5.4.17-2011.4.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.4.4.el7uek.x86_64.rpm" - ], - "5.4.17-2011.4.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.4.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el7uek.x86_64.rpm" - ], - "5.4.17-2011.5.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.5.3.el7uek.x86_64.rpm" - ], - "5.4.17-2011.6.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.6.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el7uek.x86_64.rpm" - ], - "5.4.17-2011.7.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.7.4.el7uek.x86_64.rpm" - ], - "5.4.17-2036.100.6.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.100.6.1.el7uek.x86_64.rpm" - ], - "5.4.17-2036.101.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.101.2.el7uek.x86_64.rpm" - ], - "5.4.17-2036.102.0.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.102.0.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el7uek.x86_64.rpm" - ], - "5.4.17-2036.103.3.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.103.3.1.el7uek.x86_64.rpm" - ], - "5.4.17-2036.103.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.103.3.el7uek.x86_64.rpm" - ], - "5.4.17-2036.104.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.104.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el7uek.x86_64.rpm" - ], - "5.4.17-2036.104.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.104.5.el7uek.x86_64.rpm" - ], - "5.4.17-2102.200.13.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.200.13.el7uek.x86_64.rpm" - ], - "5.4.17-2102.201.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.201.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el7uek.x86_64.rpm" - ], - "5.4.17-2102.202.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.202.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el7uek.x86_64.rpm" - ], - "5.4.17-2102.203.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.203.5.el7uek.x86_64.rpm" - ], - "5.4.17-2102.203.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.203.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el7uek.x86_64.rpm" - ], - "5.4.17-2102.204.4.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el7uek.x86_64.rpm" - ], - "5.4.17-2102.204.4.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el7uek.x86_64.rpm" - ], - "5.4.17-2102.204.4.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el7uek.x86_64.rpm" - ], - "5.4.17-2102.205.7.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.205.7.2.el7uek.x86_64.rpm" - ], - "5.4.17-2102.205.7.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.205.7.3.el7uek.x86_64.rpm" - ], - "5.4.17-2102.206.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.206.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el7uek.x86_64.rpm" - ], - "5.4.17-2136.300.7.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.300.7.el7uek.x86_64.rpm" - ], - "5.4.17-2136.301.1.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el7uek.x86_64.rpm" - ], - "5.4.17-2136.301.1.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.3.el7uek.x86_64.rpm" - ], - "5.4.17-2136.301.1.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.4.el7uek.x86_64.rpm" - ], - "5.4.17-2136.302.6.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.6.1.el7uek.x86_64.rpm" - ], - "5.4.17-2136.302.7.2.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el7uek.x86_64.rpm" - ], - "5.4.17-2136.302.7.2.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.2.el7uek.x86_64.rpm" - ], - "5.4.17-2136.302.7.2.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.3.el7uek.x86_64.rpm" - ], - "5.4.17-2136.302.7.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el7uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.1.el7uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el7uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.3.el7uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.4.el7uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el7uek.x86_64.rpm" - ], - "5.4.17-2136.305.5.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el7uek.x86_64.rpm" - ], - "5.4.17-2136.305.5.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el7uek.x86_64.rpm" - ], - "5.4.17-2136.305.5.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.5.el7uek.x86_64.rpm" - ], - "4.14.35-1902.305.4.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.305.4.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.305.4.1.el7uek.x86_64.rpm" - ], - "4.14.35-1902.305.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.305.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.305.4.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.1.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.10.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.10.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.10.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.12.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.12.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.12.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.13.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.13.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.13.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.14.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.14.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.14.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.2.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.4.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.5.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.7.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.7.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.7.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.8.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.8.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.8.el7uek.x86_64.rpm" - ], - "4.14.35-1902.306.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-1902.306.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.el7uek.x86_64.rpm" - ], - "4.14.35-2025.400.8.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.400.8.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.8.el7uek.x86_64.rpm" - ], - "4.14.35-2025.400.9.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.400.9.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.9.1.el7uek.x86_64.rpm" - ], - "4.14.35-2025.400.9.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.400.9.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.9.el7uek.x86_64.rpm" - ], - "4.14.35-2025.401.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.401.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.401.4.el7uek.x86_64.rpm" - ], - "4.14.35-2025.402.2.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.402.2.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.402.2.1.el7uek.x86_64.rpm" - ], - "4.14.35-2025.403.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.403.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.403.3.el7uek.x86_64.rpm" - ], - "4.14.35-2025.404.1.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.404.1.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.404.1.1.el7uek.x86_64.rpm" - ], - "4.14.35-2025.404.1.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.404.1.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.404.1.2.el7uek.x86_64.rpm" - ], - "4.14.35-2025.405.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.405.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2025.405.3.el7uek.x86_64.rpm" - ], - "4.14.35-2047.500.10.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.10.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.500.10.el7uek.x86_64.rpm" - ], - "4.14.35-2047.500.9.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.500.9.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.9.1.el7uek.x86_64.rpm" - ], - "4.14.35-2047.500.9.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.500.9.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.9.3.el7uek.x86_64.rpm" - ], - "4.14.35-2047.501.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.501.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.501.1.el7uek.x86_64.rpm" - ], - "4.14.35-2047.501.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.501.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.501.2.el7uek.x86_64.rpm" - ], - "4.14.35-2047.502.4.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.4.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.502.4.1.el7uek.x86_64.rpm" - ], - "4.14.35-2047.502.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.502.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.4.el7uek.x86_64.rpm" - ], - "4.14.35-2047.502.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.502.5.el7uek.x86_64.rpm" - ], - "4.14.35-2047.503.1.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.503.1.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.503.1.1.el7uek.x86_64.rpm" - ], - "4.14.35-2047.503.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.503.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.503.1.el7uek.x86_64.rpm" - ], - "4.14.35-2047.504.2.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.504.2.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.504.2.3.el7uek.x86_64.rpm" - ], - "4.14.35-2047.504.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.504.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.504.2.el7uek.x86_64.rpm" - ], - "4.14.35-2047.505.4.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.505.4.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.2.el7uek.x86_64.rpm" - ], - "4.14.35-2047.505.4.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.505.4.3.el7uek.x86_64.rpm" - ], - "4.14.35-2047.505.4.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.505.4.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.4.el7uek.x86_64.rpm" - ], - "4.14.35-2047.505.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.505.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.el7uek.x86_64.rpm" - ], - "4.14.35-2047.506.10.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.506.10.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.10.el7uek.x86_64.rpm" - ], - "4.14.35-2047.506.8.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.506.8.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.8.1.el7uek.x86_64.rpm" - ], - "4.14.35-2047.506.8.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.8.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.506.8.el7uek.x86_64.rpm" - ], - "4.14.35-2047.507.7.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.507.7.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.4.el7uek.x86_64.rpm" - ], - "4.14.35-2047.507.7.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.507.7.5.el7uek.x86_64.rpm" - ], - "4.14.35-2047.507.7.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.507.7.6.el7uek.x86_64.rpm" - ], - "4.14.35-2047.508.3.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.508.3.1.el7uek.x86_64.rpm" - ], - "4.14.35-2047.508.3.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.508.3.2.el7uek.x86_64.rpm" - ], - "4.14.35-2047.508.3.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.508.3.3.el7uek.x86_64.rpm" - ], - "4.14.35-2047.508.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.508.3.el7uek.x86_64.rpm" - ], - "4.14.35-2047.509.2.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.509.2.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.509.2.2.el7uek.x86_64.rpm" - ], - "4.14.35-2047.509.2.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.509.2.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.509.2.3.el7uek.x86_64.rpm" - ], - "4.14.35-2047.510.4.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.4.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.4.1.el7uek.x86_64.rpm" - ], - "4.14.35-2047.510.5.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.2.el7uek.x86_64.rpm" - ], - "4.14.35-2047.510.5.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.3.el7uek.x86_64.rpm" - ], - "4.14.35-2047.510.5.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.4.el7uek.x86_64.rpm" - ], - "4.14.35-2047.510.5.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.5.el7uek.x86_64.rpm" - ], - "4.14.35-2047.510.5.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.510.5.6.el7uek.x86_64.rpm" - ], - "4.14.35-2047.511.5.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.2.el7uek.x86_64.rpm" - ], - "4.14.35-2047.511.5.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.3.el7uek.x86_64.rpm" - ], - "4.14.35-2047.511.5.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.4.el7uek.x86_64.rpm" - ], - "4.14.35-2047.511.5.5.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.5.1.el7uek.x86_64.rpm" - ], - "4.14.35-2047.511.5.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.5.el7uek.x86_64.rpm" - ], - "4.14.35-2047.511.5.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.6.el7uek.x86_64.rpm" - ], - "4.14.35-2047.511.5.7.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.7.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.7.el7uek.x86_64.rpm" - ], - "4.14.35-2047.511.5.8.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.8.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-4.14.35-2047.511.5.8.el7uek.x86_64.rpm" - ], - "4.1.12-124.42.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.42.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.42.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.3.el7uek.x86_64.rpm" - ], - "4.1.12-124.42.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.42.4.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.42.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.4.el7uek.x86_64.rpm" - ], - "4.1.12-124.43.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.43.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.43.4.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.43.4.el7uek.x86_64.rpm" - ], - "4.1.12-124.44.4.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.44.4.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.44.4.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.1.el7uek.x86_64.rpm" - ], - "4.1.12-124.44.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.44.4.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.44.4.el7uek.x86_64.rpm" - ], - "4.1.12-124.45.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.45.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.45.2.el7uek.noarch.rpm" - ], - "4.1.12-124.45.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.45.6.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.45.6.el7uek.x86_64.rpm" - ], - "4.1.12-124.46.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.46.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.46.3.el7uek.x86_64.rpm" - ], - "4.1.12-124.46.4.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.46.4.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.46.4.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.4.1.el7uek.x86_64.rpm" - ], - "4.1.12-124.47.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.47.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.47.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.47.3.el7uek.x86_64.rpm" - ], - "4.1.12-124.48.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.2.el7uek.x86_64.rpm" - ], - "4.1.12-124.48.3.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.3.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.3.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.3.1.el7uek.x86_64.rpm" - ], - "4.1.12-124.48.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.5.el7uek.noarch.rpm" - ], - "4.1.12-124.48.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.48.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.48.6.el7uek.noarch.rpm" - ], - "4.1.12-124.49.3.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.49.3.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.49.3.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.49.3.1.el7uek.x86_64.rpm" - ], - "4.1.12-124.50.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.50.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.50.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.50.2.el7uek.x86_64.rpm" - ], - "4.1.12-124.51.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.51.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.51.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.51.2.el7uek.x86_64.rpm" - ], - "4.1.12-124.52.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.52.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.52.4.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.4.el7uek.x86_64.rpm" - ], - "4.1.12-124.52.5.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.5.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.52.5.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.52.5.1.el7uek.noarch.rpm" - ], - "4.1.12-124.52.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.52.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.52.5.el7uek.noarch.rpm" - ], - "4.1.12-124.53.3.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.3.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.53.3.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.53.3.1.el7uek.noarch.rpm" - ], - "4.1.12-124.53.5.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.53.5.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.53.5.1.el7uek.x86_64.rpm" - ], - "4.1.12-124.53.5.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.53.5.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.53.5.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.2.el7uek.x86_64.rpm" - ], - "4.1.12-124.53.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.53.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.53.5.el7uek.noarch.rpm" - ], - "4.1.12-124.54.6.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.54.6.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.54.6.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.54.6.1.el7uek.noarch.rpm" - ], - "4.1.12-124.54.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.54.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.54.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.54.6.el7uek.noarch.rpm" - ], - "4.1.12-124.56.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.56.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.56.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.56.1.el7uek.noarch.rpm" - ], - "4.1.12-124.57.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.57.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.57.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.57.1.el7uek.noarch.rpm" - ], - "4.1.12-124.58.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.58.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.58.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.58.2.el7uek.x86_64.rpm" - ], - "4.1.12-124.59.1.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.59.1.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.59.1.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.59.1.2.el7uek.x86_64.rpm" - ], - "4.1.12-124.59.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.59.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.59.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.59.1.el7uek.x86_64.rpm" - ], - "4.1.12-124.60.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.60.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.60.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.60.1.el7uek.x86_64.rpm" - ], - "4.1.12-124.61.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-firmware-4.1.12-124.61.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-4.1.12-124.61.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.61.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.10.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.10.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.10.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.10.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.11.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.11.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.11.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.11.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.13.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.13.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.13.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.13.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.13.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.13.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.3.el7uek.x86_64.rpm" - ], - "3.8.13-118.14.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.14.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.14.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.14.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.14.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.14.2.el7uek.noarch.rpm" - ], - "3.8.13-118.15.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.15.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.15.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.15.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.15.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.15.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.15.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.3.el7uek.x86_64.rpm" - ], - "3.8.13-118.16.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.16.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.16.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.16.3.el7uek.x86_64.rpm" - ], - "3.8.13-118.16.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.16.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.16.4.el7uek.noarch.rpm" - ], - "3.8.13-118.17.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.17.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.17.4.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.4.el7uek.x86_64.rpm" - ], - "3.8.13-118.17.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.17.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.17.5.el7uek.noarch.rpm" - ], - "3.8.13-118.18.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.18.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.18.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.18.3.el7uek.x86_64.rpm" - ], - "3.8.13-118.18.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.18.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.18.4.el7uek.noarch.rpm" - ], - "3.8.13-118.19.10.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.10.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.10.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.10.el7uek.noarch.rpm" - ], - "3.8.13-118.19.12.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.12.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.12.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.12.el7uek.x86_64.rpm" - ], - "3.8.13-118.19.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.19.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.3.el7uek.x86_64.rpm" - ], - "3.8.13-118.19.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.4.el7uek.noarch.rpm" - ], - "3.8.13-118.19.7.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.7.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.19.7.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.19.7.el7uek.noarch.rpm" - ], - "3.8.13-118.2.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.2.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.2.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.2.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.2.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.2.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.4.el7uek.noarch.rpm" - ], - "3.8.13-118.2.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.2.5.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.2.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.5.el7uek.x86_64.rpm" - ], - "3.8.13-118.20.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.1.el7uek.noarch.rpm" - ], - "3.8.13-118.20.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.20.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.3.el7uek.x86_64.rpm" - ], - "3.8.13-118.20.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.6.el7uek.noarch.rpm" - ], - "3.8.13-118.20.7.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.20.7.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.20.7.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.7.el7uek.x86_64.rpm" - ], - "3.8.13-118.21.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.21.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.21.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.21.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.21.4.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.21.4.el7uek.x86_64.rpm" - ], - "3.8.13-118.22.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.22.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.22.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.22.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.23.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.23.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.23.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.23.1.el7uek.noarch.rpm" - ], - "3.8.13-118.24.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.24.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.24.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.24.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.24.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.24.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.24.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.3.el7uek.x86_64.rpm" - ], - "3.8.13-118.25.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.25.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.25.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.25.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.26.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.26.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.26.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.26.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.27.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.27.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.27.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.27.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.28.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.28.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.28.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.28.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.29.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.29.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.29.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.29.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.3.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.3.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.3.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.3.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.3.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.3.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.30.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.30.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.30.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.30.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.31.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.31.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.31.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.31.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.32.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.32.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.32.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.32.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.33.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.33.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.33.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.33.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.34.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.34.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.34.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.34.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.35.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.35.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.35.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.35.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.35.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.35.2.el7uek.noarch.rpm" - ], - "3.8.13-118.36.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.36.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.36.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.36.1.el7uek.noarch.rpm" - ], - "3.8.13-118.37.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.37.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.37.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.37.1.el7uek.noarch.rpm" - ], - "3.8.13-118.38.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.38.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.38.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.38.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.39.1.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.39.1.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.39.1.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.39.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.39.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.39.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.4.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.4.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.4.1.el7uek.noarch.rpm" - ], - "3.8.13-118.4.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.4.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.4.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.40.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.40.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.40.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.40.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.41.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.41.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.41.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.41.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.42.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.42.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.42.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.42.1.el7uek.noarch.rpm" - ], - "3.8.13-118.43.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.43.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.43.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.43.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.44.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.44.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.44.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.44.1.el7uek.noarch.rpm" - ], - "3.8.13-118.45.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.45.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.45.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.45.1.el7uek.noarch.rpm" - ], - "3.8.13-118.46.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.46.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.46.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.46.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.47.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.47.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.47.1.el7uek.noarch.rpm" - ], - "3.8.13-118.47.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.47.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.47.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.48.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.48.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.48.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.48.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.6.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.6.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.6.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.6.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.6.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.6.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.7.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.7.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.7.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.7.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.8.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.8.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.8.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.8.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.9.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.9.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.9.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.9.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.9.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.9.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.2.el7uek.x86_64.rpm" - ], - "3.8.13-118.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.el7uek.x86_64.rpm" - ], - "3.8.13-35.3.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.1.el7uek.x86_64.rpm" - ], - "3.8.13-35.3.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.2.el7uek.x86_64.rpm" - ], - "3.8.13-35.3.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.3.el7uek.noarch.rpm" - ], - "3.8.13-35.3.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.4.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.4.el7uek.x86_64.rpm" - ], - "3.8.13-35.3.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-35.3.5.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-35.3.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.5.el7uek.x86_64.rpm" - ], - "3.8.13-44.1.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.1.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.1.el7uek.noarch.rpm" - ], - "3.8.13-44.1.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.1.3.el7uek.x86_64.rpm" - ], - "3.8.13-44.1.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.4.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.1.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.4.el7uek.x86_64.rpm" - ], - "3.8.13-44.1.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.1.5.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.1.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.5.el7uek.x86_64.rpm" - ], - "3.8.13-44.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-44.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-44.el7uek.noarch.rpm" - ], - "3.8.13-55.1.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.1.el7uek.noarch.rpm" - ], - "3.8.13-55.1.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.2.el7uek.noarch.rpm" - ], - "3.8.13-55.1.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.5.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.5.el7uek.x86_64.rpm" - ], - "3.8.13-55.1.6.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.6.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.6.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.6.el7uek.x86_64.rpm" - ], - "3.8.13-55.1.8.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.1.8.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.1.8.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.8.el7uek.x86_64.rpm" - ], - "3.8.13-55.2.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.2.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.2.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.2.1.el7uek.x86_64.rpm" - ], - "3.8.13-55.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-55.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-55.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.el7uek.x86_64.rpm" - ], - "3.8.13-68.1.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.1.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.1.2.el7uek.noarch.rpm" - ], - "3.8.13-68.1.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.1.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.1.3.el7uek.noarch.rpm" - ], - "3.8.13-68.2.2.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.2.el7uek.x86_64.rpm" - ], - "3.8.13-68.2.2.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.3.el7uek.x86_64.rpm" - ], - "3.8.13-68.2.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.2.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.2.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.el7uek.x86_64.rpm" - ], - "3.8.13-68.3.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.1.el7uek.x86_64.rpm" - ], - "3.8.13-68.3.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.2.el7uek.x86_64.rpm" - ], - "3.8.13-68.3.3.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.3.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.3.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.3.el7uek.x86_64.rpm" - ], - "3.8.13-68.3.4.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.4.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.4.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.4.el7uek.x86_64.rpm" - ], - "3.8.13-68.3.5.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.3.5.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.3.5.el7uek.noarch.rpm" - ], - "3.8.13-68.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-68.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-68.el7uek.x86_64.rpm" - ], - "3.8.13-98.1.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.1.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.1.1.el7uek.noarch.rpm" - ], - "3.8.13-98.1.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.1.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.1.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.2.el7uek.x86_64.rpm" - ], - "3.8.13-98.2.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.2.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.2.1.el7uek.noarch.rpm" - ], - "3.8.13-98.2.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.2.2.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.2.2.el7uek.x86_64.rpm" - ], - "3.8.13-98.4.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.4.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.4.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.4.1.el7uek.x86_64.rpm" - ], - "3.8.13-98.5.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.5.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.5.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.5.2.el7uek.noarch.rpm" - ], - "3.8.13-98.6.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.6.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.6.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.6.1.el7uek.noarch.rpm" - ], - "3.8.13-98.7.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.7.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.7.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.7.1.el7uek.noarch.rpm" - ], - "3.8.13-98.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-98.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-98.el7uek.x86_64.rpm" - ], - "3.8.13-118.49.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.49.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.49.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.49.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.50.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.50.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.50.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.50.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.51.2.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.51.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.2.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.51.2.el7uek.noarch.rpm" - ], - "3.8.13-118.52.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.52.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.52.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.52.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.53.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.53.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.53.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.53.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.54.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.54.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.54.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.54.1.el7uek.x86_64.rpm" - ], - "3.8.13-118.55.1.el7uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-firmware-3.8.13-118.55.1.el7uek.noarch.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.55.1.el7uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-3.8.13-118.55.1.el7uek.x86_64.rpm" - ] - }, - "Oracle8": { - "4.18.0-147.0.2.el8_1.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.0.2.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.0.2.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.0.2.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.0.2.el8_1.x86_64.rpm" - ], - "4.18.0-147.0.3.el8_1.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.0.3.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.0.3.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.0.3.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.0.3.el8_1.x86_64.rpm" - ], - "4.18.0-147.3.1.el8_1.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.3.1.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.3.1.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.3.1.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.3.1.el8_1.x86_64.rpm" - ], - "4.18.0-147.5.1.el8_1.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.5.1.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.5.1.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.5.1.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.5.1.el8_1.x86_64.rpm" - ], - "4.18.0-147.8.1.el8_1.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.8.1.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.8.1.el8_1.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.8.1.el8_1.x86_64.rpm" - ], - "4.18.0-147.el8.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-147.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-147.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-147.el8.x86_64.rpm" - ], - "4.18.0-193.1.2.el8_2.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.1.2.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.1.2.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.1.2.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.1.2.el8_2.x86_64.rpm" - ], - "4.18.0-193.13.2.el8_2.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.13.2.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.13.2.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.13.2.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.13.2.el8_2.x86_64.rpm" - ], - "4.18.0-193.14.3.el8_2.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.14.3.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.14.3.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.14.3.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.14.3.el8_2.x86_64.rpm" - ], - "4.18.0-193.19.1.el8_2.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.19.1.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.19.1.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.19.1.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.19.1.el8_2.x86_64.rpm" - ], - "4.18.0-193.28.1.el8_2.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.28.1.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.28.1.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.28.1.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm" - ], - "4.18.0-193.6.3.el8_2.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.6.3.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.6.3.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.6.3.el8_2.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.6.3.el8_2.x86_64.rpm" - ], - "4.18.0-193.el8.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-193.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-193.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-193.el8.x86_64.rpm" - ], - "4.18.0-240.1.1.el8_3.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.1.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.1.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.1.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.1.1.el8_3.x86_64.rpm" - ], - "4.18.0-240.10.1.el8_3.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.10.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.10.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.10.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.10.1.el8_3.x86_64.rpm" - ], - "4.18.0-240.15.1.el8_3.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.15.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.15.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.15.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.15.1.el8_3.x86_64.rpm" - ], - "4.18.0-240.22.1.el8_3.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.22.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.22.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.22.1.el8_3.x86_64.rpm" - ], - "4.18.0-240.8.1.el8_3.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.8.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.8.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.8.1.el8_3.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.8.1.el8_3.x86_64.rpm" - ], - "4.18.0-240.el8.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-240.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-240.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-240.el8.x86_64.rpm" - ], - "4.18.0-305.10.2.el8_4.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.10.2.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.10.2.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.10.2.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm" - ], - "4.18.0-305.12.1.el8_4.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.12.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.12.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.12.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.17.1.el8_4.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.17.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.17.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.17.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.19.1.el8_4.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.19.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.19.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.19.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.25.1.el8_4.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.25.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.25.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.25.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.3.1.el8_4.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.3.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.3.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.3.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.3.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.7.1.el8_4.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.7.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.7.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.7.1.el8_4.x86_64.rpm" - ], - "4.18.0-305.el8.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-305.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-305.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-305.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.el8.x86_64.rpm" - ], - "4.18.0-348.12.2.el8_5.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.12.2.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.12.2.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.12.2.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.12.2.el8_5.x86_64.rpm" - ], - "4.18.0-348.2.1.el8_5.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.2.1.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.2.1.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.2.1.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm" - ], - "4.18.0-348.20.1.el8_5.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.20.1.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.20.1.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.20.1.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.20.1.el8_5.x86_64.rpm" - ], - "4.18.0-348.7.1.el8_5.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.7.1.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.7.1.el8_5.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.7.1.el8_5.x86_64.rpm" - ], - "4.18.0-348.el8.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-348.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-348.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-348.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.el8.x86_64.rpm" - ], - "4.18.0-80.1.2.el8_0.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.1.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.1.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.1.2.el8_0.x86_64.rpm" - ], - "4.18.0-80.11.1.el8_0.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.11.1.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.11.1.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.11.1.el8_0.x86_64.rpm" - ], - "4.18.0-80.11.2.el8_0.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.11.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.11.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.11.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" - ], - "4.18.0-80.4.2.el8_0.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.4.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.4.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.4.2.el8_0.x86_64.rpm" - ], - "4.18.0-80.7.1.el8_0.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.7.1.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.7.1.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.7.1.el8_0.x86_64.rpm" - ], - "4.18.0-80.7.2.el8_0.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.7.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.7.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.7.2.el8_0.x86_64.rpm" - ], - "4.18.0-80.el8.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-core-4.18.0-80.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-4.18.0-80.el8.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-modules-4.18.0-80.el8.x86_64.rpm" - ], - "5.4.17-2011.0.7.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.0.7.el8uek.x86_64.rpm" - ], - "5.4.17-2011.1.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.1.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el8uek.x86_64.rpm" - ], - "5.4.17-2011.2.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.2.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el8uek.x86_64.rpm" - ], - "5.4.17-2011.3.2.1.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.3.2.1.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el8uek.x86_64.rpm" - ], - "5.4.17-2011.4.4.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.4.4.el8uek.x86_64.rpm" - ], - "5.4.17-2011.4.6.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.4.6.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el8uek.x86_64.rpm" - ], - "5.4.17-2011.5.3.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.5.3.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el8uek.x86_64.rpm" - ], - "5.4.17-2011.6.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.6.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el8uek.x86_64.rpm" - ], - "5.4.17-2011.7.4.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2011.7.4.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el8uek.x86_64.rpm" - ], - "5.4.17-2036.100.6.1.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.100.6.1.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el8uek.x86_64.rpm" - ], - "5.4.17-2036.101.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.101.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el8uek.x86_64.rpm" - ], - "5.4.17-2036.102.0.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.102.0.2.el8uek.x86_64.rpm" - ], - "5.4.17-2036.103.3.1.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.103.3.1.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el8uek.x86_64.rpm" - ], - "5.4.17-2036.103.3.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.103.3.el8uek.x86_64.rpm" - ], - "5.4.17-2036.104.4.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.104.4.el8uek.x86_64.rpm" - ], - "5.4.17-2036.104.5.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2036.104.5.el8uek.x86_64.rpm" - ], - "5.4.17-2102.200.13.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.200.13.el8uek.x86_64.rpm" - ], - "5.4.17-2102.201.3.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.201.3.el8uek.x86_64.rpm" - ], - "5.4.17-2102.202.5.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.202.5.el8uek.x86_64.rpm" - ], - "5.4.17-2102.203.5.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.203.5.el8uek.x86_64.rpm" - ], - "5.4.17-2102.203.6.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.203.6.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el8uek.x86_64.rpm" - ], - "5.4.17-2102.204.4.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.2.el8uek.x86_64.rpm" - ], - "5.4.17-2102.204.4.3.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.3.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el8uek.x86_64.rpm" - ], - "5.4.17-2102.204.4.4.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.204.4.4.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el8uek.x86_64.rpm" - ], - "5.4.17-2102.205.7.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.205.7.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el8uek.x86_64.rpm" - ], - "5.4.17-2102.205.7.3.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.205.7.3.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el8uek.x86_64.rpm" - ], - "5.4.17-2102.206.1.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2102.206.1.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el8uek.x86_64.rpm" - ], - "5.4.17-2136.300.7.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.300.7.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el8uek.x86_64.rpm" - ], - "5.4.17-2136.301.1.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.2.el8uek.x86_64.rpm" - ], - "5.4.17-2136.301.1.3.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.3.el8uek.x86_64.rpm" - ], - "5.4.17-2136.301.1.4.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.301.1.4.el8uek.x86_64.rpm" - ], - "5.4.17-2136.302.6.1.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.6.1.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el8uek.x86_64.rpm" - ], - "5.4.17-2136.302.7.2.1.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.1.el8uek.x86_64.rpm" - ], - "5.4.17-2136.302.7.2.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.2.el8uek.x86_64.rpm" - ], - "5.4.17-2136.302.7.2.3.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.3.el8uek.x86_64.rpm" - ], - "5.4.17-2136.302.7.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.302.7.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el8uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.1.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.1.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el8uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.2.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.2.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el8uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.3.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.3.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el8uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.4.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.4.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el8uek.x86_64.rpm" - ], - "5.4.17-2136.304.4.5.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.304.4.5.el8uek.x86_64.rpm" - ], - "5.4.17-2136.305.5.3.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.3.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el8uek.x86_64.rpm" - ], - "5.4.17-2136.305.5.4.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.4.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el8uek.x86_64.rpm" - ], - "5.4.17-2136.305.5.5.el8uek.x86_64": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el8uek.x86_64.rpm", - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-5.4.17-2136.305.5.5.el8uek.x86_64.rpm" - ] - }, - "PhotonOS": { - "1.3.0-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/Linux-PAM-devel-1.3.0-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/Linux-PAM-1.3.0-1.ph3.x86_64.rpm" - ], - "4.19.15-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-devel-4.19.15-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.15-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.15-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-4.19.15-2.ph3.x86_64.rpm" - ], - "4.19.15-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-4.19.15-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-aws-4.19.15-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" - ], - "4.19.104-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.104-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.104-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.104-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.104-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-1.ph3.x86_64.rpm" - ], - "4.19.104-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.104-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.104-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.104-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.104-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-3.ph3.x86_64.rpm" - ], - "4.19.112-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.112-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.112-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.112-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.112-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.112-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.112-1.ph3.x86_64.rpm" - ], - "4.19.115-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-1.ph3.x86_64.rpm" - ], - "4.19.115-10.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-10.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-10.ph3.x86_64.rpm" - ], - "4.19.115-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-2.ph3.x86_64.rpm" - ], - "4.19.115-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-3.ph3.x86_64.rpm" - ], - "4.19.115-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-5.ph3.x86_64.rpm" - ], - "4.19.115-6.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-6.ph3.x86_64.rpm" - ], - "4.19.115-7.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-7.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-7.ph3.x86_64.rpm" - ], - "4.19.115-9.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-9.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.115-9.ph3.x86_64.rpm" - ], - "4.19.124-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.124-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.124-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.124-1.ph3.x86_64.rpm" - ], - "4.19.124-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.124-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.124-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.124-2.ph3.x86_64.rpm" - ], - "4.19.126-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.126-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.126-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.126-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.126-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.126-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" - ], - "4.19.126-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.126-2.ph3.x86_64.rpm" - ], - "4.19.129-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.129-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.129-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.129-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.129-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.129-1.ph3.x86_64.rpm" - ], - "4.19.129-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.129-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-2.ph3.x86_64.rpm" - ], - "4.19.129-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.129-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-3.ph3.x86_64.rpm" - ], - "4.19.132-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.132-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-1.ph3.x86_64.rpm" - ], - "4.19.132-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.132-2.ph3.x86_64.rpm" - ], - "4.19.132-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.132-3.ph3.x86_64.rpm" - ], - "4.19.132-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" - ], - "4.19.132-6.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.132-6.ph3.x86_64.rpm" - ], - "4.19.138-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.138-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.138-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.138-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.138-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.138-1.ph3.x86_64.rpm" - ], - "4.19.138-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.138-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.138-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.138-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.138-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.138-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-2.ph3.x86_64.rpm" - ], - "4.19.138-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.138-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-4.ph3.x86_64.rpm" - ], - "4.19.145-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.145-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.145-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.145-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.145-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-1.ph3.x86_64.rpm" - ], - "4.19.145-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.145-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.145-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.145-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.145-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-2.ph3.x86_64.rpm" - ], - "4.19.145-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.145-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.145-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.145-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.145-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-4.ph3.x86_64.rpm" - ], - "4.19.148-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.148-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.148-1.ph3.x86_64.rpm" - ], - "4.19.148-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.148-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" - ], - "4.19.148-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.148-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.148-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-3.ph3.x86_64.rpm" - ], - "4.19.148-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.148-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.148-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-4.ph3.x86_64.rpm" - ], - "4.19.148-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.148-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.148-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.148-5.ph3.x86_64.rpm" - ], - "4.19.15-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.15-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.15-3.ph3.x86_64.rpm" - ], - "4.19.150-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.150-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.150-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.150-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.150-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.150-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.150-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.150-1.ph3.x86_64.rpm" - ], - "4.19.154-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.154-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.154-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.154-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-1.ph3.x86_64.rpm" - ], - "4.19.154-10.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-10.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-10.ph3.x86_64.rpm" - ], - "4.19.154-11.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-11.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-11.ph3.x86_64.rpm" - ], - "4.19.154-8.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-8.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-8.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.154-8.ph3.x86_64.rpm" - ], - "4.19.154-9.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.154-9.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-9.ph3.x86_64.rpm" - ], - "4.19.160-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.160-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.160-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.160-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-2.ph3.x86_64.rpm" - ], - "4.19.160-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.160-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.160-4.ph3.x86_64.rpm" - ], - "4.19.160-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.160-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-5.ph3.x86_64.rpm" - ], - "4.19.160-6.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.160-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-6.ph3.x86_64.rpm" - ], - "4.19.164-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.164-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.164-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.164-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.164-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.164-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.164-1.ph3.x86_64.rpm" - ], - "4.19.164-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.164-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.164-2.ph3.x86_64.rpm" - ], - "4.19.174-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.174-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.174-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.174-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.174-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-2.ph3.x86_64.rpm" - ], - "4.19.174-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.174-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.174-4.ph3.x86_64.rpm" - ], - "4.19.174-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.174-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-5.ph3.x86_64.rpm" - ], - "4.19.177-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.177-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.177-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.177-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.177-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.177-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.177-1.ph3.x86_64.rpm" - ], - "4.19.177-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.177-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.177-2.ph3.x86_64.rpm" - ], - "4.19.182-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.182-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.182-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.182-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.182-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.182-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-1.ph3.x86_64.rpm" - ], - "4.19.182-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.182-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.182-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.182-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.182-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.182-2.ph3.x86_64.rpm" - ], - "4.19.186-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.186-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.186-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.186-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.186-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-1.ph3.x86_64.rpm" - ], - "4.19.186-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.186-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.186-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.186-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.186-2.ph3.x86_64.rpm" - ], - "4.19.186-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.186-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.186-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.186-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.186-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-3.ph3.x86_64.rpm" - ], - "4.19.186-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.186-4.ph3.x86_64.rpm" - ], - "4.19.189-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.189-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.189-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.189-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.189-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" - ], - "4.19.189-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.189-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.189-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.189-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.189-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-3.ph3.x86_64.rpm" - ], - "4.19.189-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.189-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.189-4.ph3.x86_64.rpm" - ], - "4.19.189-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.189-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-5.ph3.x86_64.rpm" - ], - "4.19.190-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.190-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.190-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.190-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.190-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.190-1.ph3.x86_64.rpm" - ], - "4.19.190-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.190-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" - ], - "4.19.190-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.190-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-3.ph3.x86_64.rpm" - ], - "4.19.191-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.191-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.191-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-1.ph3.x86_64.rpm" - ], - "4.19.191-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.191-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.191-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.191-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-2.ph3.x86_64.rpm" - ], - "4.19.191-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.191-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.191-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.191-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-3.ph3.x86_64.rpm" - ], - "4.19.198-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.198-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.198-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.198-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.198-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.198-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.198-1.ph3.x86_64.rpm" - ], - "4.19.198-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.198-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.198-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.198-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.198-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-2.ph3.x86_64.rpm" - ], - "4.19.198-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.198-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.198-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-3.ph3.x86_64.rpm" - ], - "4.19.198-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.198-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.198-4.ph3.x86_64.rpm" - ], - "4.19.205-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.205-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.205-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.205-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.205-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.205-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.205-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.205-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.205-1.ph3.x86_64.rpm" - ], - "4.19.208-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.208-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.208-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.208-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.208-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.208-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.208-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.208-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.208-1.ph3.x86_64.rpm" - ], - "4.19.214-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.214-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.214-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" - ], - "4.19.214-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.214-4.ph3.x86_64.rpm" - ], - "4.19.217-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.217-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.217-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.217-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.217-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.217-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.217-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" - ], - "4.19.219-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.219-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.219-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.219-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.219-1.ph3.x86_64.rpm" - ], - "4.19.219-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.219-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.219-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.219-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.219-3.ph3.x86_64.rpm" - ], - "4.19.219-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.219-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.219-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.219-4.ph3.x86_64.rpm" - ], - "4.19.219-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.219-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.219-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.219-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-5.ph3.x86_64.rpm" - ], - "4.19.224-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.224-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.224-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.224-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.224-1.ph3.x86_64.rpm" - ], - "4.19.224-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.224-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.224-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.224-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.224-2.ph3.x86_64.rpm" - ], - "4.19.225-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.225-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.225-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.225-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.225-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-3.ph3.x86_64.rpm" - ], - "4.19.225-6.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.225-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-6.ph3.x86_64.rpm" - ], - "4.19.229-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.229-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.229-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.229-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.229-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.229-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-1.ph3.x86_64.rpm" - ], - "4.19.229-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.229-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.229-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.229-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-2.ph3.x86_64.rpm" - ], - "4.19.229-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.229-3.ph3.x86_64.rpm" - ], - "4.19.232-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.232-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.232-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.232-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.232-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-1.ph3.x86_64.rpm" - ], - "4.19.232-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.232-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.232-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.232-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.232-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-2.ph3.x86_64.rpm" - ], - "4.19.232-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.232-3.ph3.x86_64.rpm" - ], - "4.19.232-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.232-4.ph3.x86_64.rpm" - ], - "4.19.29-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.29-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.29-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.29-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.29-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.29-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.29-1.ph3.x86_64.rpm" - ], - "4.19.32-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.32-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.32-3.ph3.x86_64.rpm" - ], - "4.19.40-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.40-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.40-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.40-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-2.ph3.x86_64.rpm" - ], - "4.19.40-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.40-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.40-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.40-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-3.ph3.x86_64.rpm" - ], - "4.19.52-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.52-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.52-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.52-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.52-1.ph3.x86_64.rpm" - ], - "4.19.52-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.52-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-2.ph3.x86_64.rpm" - ], - "4.19.65-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.65-2.ph3.x86_64.rpm" - ], - "4.19.65-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.65-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-3.ph3.x86_64.rpm" - ], - "4.19.69-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.69-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.69-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.69-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.69-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.69-1.ph3.x86_64.rpm" - ], - "4.19.72-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.72-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.72-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.72-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-1.ph3.x86_64.rpm" - ], - "4.19.72-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.72-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.72-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.72-2.ph3.x86_64.rpm" - ], - "4.19.76-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.76-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.76-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.76-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-1.ph3.x86_64.rpm" - ], - "4.19.76-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.76-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-5.ph3.x86_64.rpm" - ], - "4.19.79-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.79-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.79-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.79-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.79-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.79-1.ph3.x86_64.rpm" - ], - "4.19.79-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.79-2.ph3.x86_64.rpm" - ], - "4.19.82-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.82-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.82-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.82-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.82-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.82-1.ph3.x86_64.rpm" - ], - "4.19.84-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.84-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.84-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.84-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.84-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.84-1.ph3.x86_64.rpm" - ], - "4.19.84-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.84-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-2.ph3.x86_64.rpm" - ], - "4.19.87-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.87-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.87-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.87-1.ph3.x86_64.rpm" - ], - "4.19.87-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.87-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.87-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" - ], - "4.19.87-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.87-5.ph3.x86_64.rpm" - ], - "4.19.97-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-1.ph3.x86_64.rpm" - ], - "4.19.97-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-2.ph3.x86_64.rpm" - ], - "4.19.97-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-3.ph3.x86_64.rpm" - ], - "4.19.97-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-4.ph3.x86_64.rpm" - ], - "4.19.97-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.97-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.97-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-5.ph3.x86_64.rpm" - ], - "4.19.97-6.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-4.19.97-6.ph3.x86_64.rpm" - ], - "4.19.115-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.115-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.115-4.ph3.x86_64.rpm" - ], - "4.19.154-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.154-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.154-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-5.ph3.x86_64.rpm" - ], - "4.19.154-6.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.154-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-6.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.154-6.ph3.x86_64.rpm" - ], - "4.19.160-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.160-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.160-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.160-1.ph3.x86_64.rpm" - ], - "4.19.174-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.174-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.174-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.174-1.ph3.x86_64.rpm" - ], - "4.19.214-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.214-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.214-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.214-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.214-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.214-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-2.ph3.x86_64.rpm" - ], - "4.19.219-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.219-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-2.ph3.x86_64.rpm" - ], - "4.19.225-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.225-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.225-5.ph3.x86_64.rpm" - ], - "4.19.32-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.32-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.32-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.32-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.32-2.ph3.x86_64.rpm" - ], - "4.19.65-1.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.65-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.65-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.65-1.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.65-1.ph3.x86_64.rpm" - ], - "4.19.76-2.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.76-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.76-2.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-2.ph3.x86_64.rpm" - ], - "4.19.87-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.87-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-4.19.87-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-3.ph3.x86_64.rpm" - ], - "4.19.132-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.132-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.132-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-4.ph3.x86_64.rpm" - ], - "4.19.160-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.160-3.ph3.x86_64.rpm" - ], - "4.19.174-3.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.174-3.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-3.ph3.x86_64.rpm" - ], - "4.19.190-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-4.ph3.x86_64.rpm" - ], - "4.19.190-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.190-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-5.ph3.x86_64.rpm" - ], - "4.19.191-4.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.191-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-4.ph3.x86_64.rpm" - ], - "4.19.191-5.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.191-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.191-5.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-5.ph3.x86_64.rpm" - ], - "4.19.225-7.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-7.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-4.19.225-7.ph3.x86_64.rpm" - ], - "4.19.154-7.ph3.x86_64": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-4.19.154-7.ph3.x86_64.rpm", - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-7.ph3.x86_64.rpm" - ], - "1.4.0-3.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-1.4.0-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-3.ph4.x86_64.rpm" - ], - "1.4.0-4.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-1.4.0-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/Linux-PAM-1.4.0-4.ph4.x86_64.rpm" - ], - "5.10.103-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.103-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.103-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.103-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.103-1.ph4.x86_64.rpm" - ], - "5.10.103-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.103-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.103-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.103-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.103-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-2.ph4.x86_64.rpm" - ], - "5.10.103-3.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.103-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.103-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.103-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.103-3.ph4.x86_64.rpm" - ], - "5.10.103-4.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-aws-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-secure-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-rt-5.10.103-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" - ], - "5.10.25-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-1.ph4.x86_64.rpm" - ], - "5.10.25-10.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-10.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-10.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-10.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-10.ph4.x86_64.rpm" - ], - "5.10.25-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-2.ph4.x86_64.rpm" - ], - "5.10.25-3.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-3.ph4.x86_64.rpm" - ], - "5.10.25-5.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-5.ph4.x86_64.rpm" - ], - "5.10.25-6.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-6.ph4.x86_64.rpm" - ], - "5.10.25-7.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-7.ph4.x86_64.rpm" - ], - "5.10.25-9.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-9.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-9.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-9.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-9.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.25-9.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.25-9.ph4.x86_64.rpm" - ], - "5.10.35-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.35-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.35-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.35-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.35-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.35-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" - ], - "5.10.35-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.35-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.35-2.ph4.x86_64.rpm" - ], - "5.10.35-3.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.35-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.35-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-3.ph4.x86_64.rpm" - ], - "5.10.35-4.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.35-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-4.ph4.x86_64.rpm" - ], - "5.10.4-17.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.4-17.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.4-17.ph4.x86_64.rpm" - ], - "5.10.42-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.42-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.42-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.42-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.42-1.ph4.x86_64.rpm" - ], - "5.10.42-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.42-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.42-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.42-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.42-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-2.ph4.x86_64.rpm" - ], - "5.10.42-3.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.42-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.42-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.42-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-3.ph4.x86_64.rpm" - ], - "5.10.46-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.46-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.46-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.46-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.46-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-1.ph4.x86_64.rpm" - ], - "5.10.46-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.46-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.46-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.46-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.46-2.ph4.x86_64.rpm" - ], - "5.10.52-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.52-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.52-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.52-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.52-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.52-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.52-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.52-1.ph4.x86_64.rpm" - ], - "5.10.52-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.52-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.52-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.52-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-2.ph4.x86_64.rpm" - ], - "5.10.61-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.61-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.61-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.61-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.61-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-1.ph4.x86_64.rpm" - ], - "5.10.61-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.61-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.61-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.61-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.61-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-2.ph4.x86_64.rpm" - ], - "5.10.75-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.75-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.75-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.75-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.75-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.75-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.75-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.75-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.75-1.ph4.x86_64.rpm" - ], - "5.10.78-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.78-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.78-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.78-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.78-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.78-1.ph4.x86_64.rpm" - ], - "5.10.78-4.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.78-4.ph4.x86_64.rpm" - ], - "5.10.78-5.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.78-5.ph4.x86_64.rpm" - ], - "5.10.83-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.83-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-2.ph4.x86_64.rpm" - ], - "5.10.83-3.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.83-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-3.ph4.x86_64.rpm" - ], - "5.10.83-4.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.83-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-4.ph4.x86_64.rpm" - ], - "5.10.83-5.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.83-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-5.ph4.x86_64.rpm" - ], - "5.10.83-6.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-6.ph4.x86_64.rpm" - ], - "5.10.83-7.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.83-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.83-7.ph4.x86_64.rpm" - ], - "5.10.93-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.93-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.93-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.93-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.93-1.ph4.x86_64.rpm" - ], - "5.10.93-3.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.93-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.93-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.93-3.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.93-3.ph4.x86_64.rpm" - ], - "5.10.93-4.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.93-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.93-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.93-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.93-4.ph4.x86_64.rpm" - ], - "5.10.93-5.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-5.10.93-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.93-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.93-5.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.93-5.ph4.x86_64.rpm" - ], - "5.10.25-4.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.25-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-4.ph4.x86_64.rpm" - ], - "5.10.78-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.78-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.78-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-5.10.78-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-2.ph4.x86_64.rpm" - ], - "5.10.4-10.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.4-10.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-10.ph4.x86_64.rpm" - ], - "5.10.42-4.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.42-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.42-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" - ], - "5.10.78-6.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.78-6.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-6.ph4.x86_64.rpm" - ], - "5.10.78-7.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-5.10.78-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-7.ph4.x86_64.rpm" - ], - "5.10.25-8.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-8.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.25-8.ph4.x86_64.rpm" - ], - "5.10.4-8.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.4-8.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.4-8.ph4.x86_64.rpm" - ], - "5.10.83-1.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-5.10.83-1.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-1.ph4.x86_64.rpm" - ], - "1.4.0-2.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-2.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/Linux-PAM-1.4.0-2.ph4.x86_64.rpm" - ], - "5.10.4-16.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-5.10.4-16.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-devel-5.10.4-16.ph4.x86_64.rpm" - ], - "5.10.4-4.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-aws-5.10.4-4.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-aws-devel-5.10.4-4.ph4.x86_64.rpm" - ], - "5.10.4-9.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-rt-5.10.4-9.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-9.ph4.x86_64.rpm" - ], - "5.10.4-7.ph4.x86_64": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-secure-devel-5.10.4-7.ph4.x86_64.rpm", - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-secure-5.10.4-7.ph4.x86_64.rpm" - ] - }, - "Debian": { - "5.16.18-1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-common-rt_5.16.18-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-rt-amd64_5.16.18-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-6-rt-amd64_5.16.18-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-6-amd64_5.16.18-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.18-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-amd64_5.16.18-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-common_5.16.18-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-6-cloud-amd64_5.16.18-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-6-cloud-amd64_5.16.18-1_amd64.deb" - ], - "5.14.9-2~bpo11+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.14_5.14.9-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb" - ], - "5.15.5-2~bpo11+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.2-rt-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.15_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb" - ], - "5.15.15-2~bpo11+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.15_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.3-cloud-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb" - ], - "5.16.11-1~bpo11+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.3-rt-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.18-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb" - ], - "5.16.12-1~bpo11+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.18-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb" - ], - "5.10.84-1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-10-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb" - ], - "5.10.106-1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-13-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" - ], - "5.10.92-1~bpo10+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb" - ], - "5.10.103-1~bpo10+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb" - ], - "5.10.70-1~bpo10+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.9-rt-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.9-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb" - ], - "4.19.208-1": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-18-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" - ], - "4.19.235-1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-20-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" - ], - "5.17.1-1~exp1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.17.0-trunk-cloud-amd64_5.17.1-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-common-rt_5.17.1-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-rt-amd64_5.17.1-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.17.0-trunk-rt-amd64_5.17.1-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-amd64_5.17.1-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-cloud-amd64_5.17.1-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-trunk-common_5.17.1-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-5.17.0-trunk-amd64_5.17.1-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.17_5.17.1-1~exp1_amd64.deb" - ], - "3.16.56-1+deb8u1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-image-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb" - ], - "4.19.118-2+deb10u1~bpo9+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" - ], - "4.9.65-2+grsecunoff1~bpo9+1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-image-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-common-grsec_4.9.65-2+grsecunoff1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb" - ], - "4.9.228-1": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-image-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-image-4.9.0-13-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb" - ], - "5.10.103-1": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-5.10.0-12-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.103-1_amd64.deb" - ], - "4.19.232-1": [ - "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-4.19.0-19-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-signed-amd64/linux-image-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" - ], - "3.16.81-1": [ - "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-image-3.16.0-10-amd64_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb" - ], - "3.16.84-1": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-image-3.16.0-11-amd64_3.16.84-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-common_3.16.84-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-amd64_3.16.84-1_amd64.deb" - ], - "4.9.189-3+deb9u2~deb8u1": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-image-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-image-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb" - ], - "4.9.210-1+deb9u1~deb8u1": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-image-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-image-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" - ], - "4.9.303-1": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-image-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-image-4.9.0-18-amd64_4.9.303-1_amd64.deb" - ], - "4.19.232-1~deb9u1": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-image-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-image-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-image-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb" - ] - }, - "Ubuntu": { - "4.15.0-1087/95": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb" - ], - "4.15.0-1088/96": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" - ], - "4.15.0-1092/101": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" - ], - "4.15.0-1103/105": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" - ], - "4.15.0-1104/106": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb" - ], - "4.15.0-1104/115": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" - ], - "4.15.0-1107/109": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" - ], - "4.15.0-1110/113": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb" - ], - "4.15.0-1111/114": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" - ], - "4.15.0-1113/120": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" - ], - "4.15.0-1113/127": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb" - ], - "4.15.0-1113/116": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" - ], - "4.15.0-1116/123": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" - ], - "4.15.0-1116/130": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" - ], - "4.15.0-1117/124": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" - ], - "4.15.0-1117/131": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb" - ], - "4.15.0-1120/128": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb" - ], - "4.15.0-1121/129": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" - ], - "4.15.0-1121/135": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb" - ], - "4.15.0-1124/133": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" - ], - "4.15.0-1125/134": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" - ], - "4.15.0-1127/136": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" - ], - "4.15.0-1130/143": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" - ], - "4.15.0-1131/144": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" - ], - "4.15.0-1134/147": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb" - ], - "4.15.0-1135/148": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb" - ], - "4.15.0-167/175": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb" - ], - "4.15.0-168/176": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb" - ], - "4.15.0-169/177": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" - ], - "4.15.0-170/178": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb" - ], - "4.15.0-172/181": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb" - ], - "4.15.0-173/182": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-173-generic_4.15.0-173.182_amd64.deb" - ], - "4.15.0-174/183": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" - ], - "4.15.0-176/185": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-176-generic_4.15.0-176.185_amd64.deb" - ], - "5.0.0-1028/31": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" - ], - "5.4.0-100/113~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb" - ], - "5.4.0-1032/33~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" - ], - "5.4.0-1034/35~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" - ], - "5.4.0-105/119~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" - ], - "5.4.0-1056/60~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" - ], - "5.4.0-1058/62~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" - ], - "5.4.0-106/120~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" - ], - "5.4.0-1060/63~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb" - ], - "5.4.0-1061/64~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" - ], - "5.4.0-1062/66~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" - ], - "5.4.0-1063/67~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" - ], - "5.4.0-1063/66~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" - ], - "5.4.0-1064/67~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" - ], - "5.4.0-1064/68~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" - ], - "5.4.0-1065/69~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" - ], - "5.4.0-1066/69~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb" - ], - "5.4.0-1067/72~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" - ], - "5.4.0-1068/71~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb" - ], - "5.4.0-1068/73~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" - ], - "5.4.0-1069/73~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" - ], - "5.4.0-1069/72~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb" - ], - "5.4.0-1070/74~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" - ], - "5.4.0-1070/73~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" - ], - "5.4.0-1070/76~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" - ], - "5.4.0-1071/74~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb" - ], - "5.4.0-1072/77~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" - ], - "5.4.0-108/122~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb" - ], - "5.4.0-91/102~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb" - ], - "5.4.0-97/110~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" - ], - "5.4.0-99/112~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb" - ], - "4.15.0-1006/9": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" - ], - "4.15.0-1008/8": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb" - ], - "4.15.0-1008/11": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" - ], - "4.15.0-1008/10": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb" - ], - "4.15.0-1009/9": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" - ], - "4.15.0-1009/12": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" - ], - "4.15.0-1009/11": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" - ], - "4.15.0-101/102": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb" - ], - "4.15.0-1010/10": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb" - ], - "4.15.0-1010/12": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" - ], - "4.15.0-1011/11": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb" - ], - "4.15.0-1012/12": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" - ], - "4.15.0-1012/15": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" - ], - "4.15.0-1013/13": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" - ], - "4.15.0-1013/16": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" - ], - "4.15.0-1013/15": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" - ], - "4.15.0-1014/14": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" - ], - "4.15.0-1014/16": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" - ], - "4.15.0-1015/15": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb" - ], - "4.15.0-1015/18": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" - ], - "4.15.0-1015/17": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" - ], - "4.15.0-1016/16": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" - ], - "4.15.0-1017/17": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" - ], - "4.15.0-1017/18": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" - ], - "4.15.0-1017/20": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" - ], - "4.15.0-1017/19": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" - ], - "4.15.0-1018/18": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb" - ], - "4.15.0-1018/19": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb" - ], - "4.15.0-1018/21": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" - ], - "4.15.0-1018/20": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb" - ], - "4.15.0-1019/19": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" - ], - "4.15.0-1019/20": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" - ], - "4.15.0-1020/20": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb" - ], - "4.15.0-1021/21": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" - ], - "4.15.0-1021/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" - ], - "4.15.0-1021/24": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" - ], - "4.15.0-1021/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb" - ], - "4.15.0-1022/23": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" - ], - "4.15.0-1022/25": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb" - ], - "4.15.0-1023/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" - ], - "4.15.0-1023/24": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb" - ], - "4.15.0-1023/26": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb" - ], - "4.15.0-1024/25": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" - ], - "4.15.0-1025/26": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" - ], - "4.15.0-1025/28": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" - ], - "4.15.0-1026/27": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" - ], - "4.15.0-1026/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" - ], - "4.15.0-1026/31": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" - ], - "4.15.0-1026/29": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" - ], - "4.15.0-1027/27": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" - ], - "4.15.0-1027/28": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" - ], - "4.15.0-1027/30": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb" - ], - "4.15.0-1028/29": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb" - ], - "4.15.0-1028/28": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" - ], - "4.15.0-1028/33": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" - ], - "4.15.0-1029/30": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" - ], - "4.15.0-1029/31": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" - ], - "4.15.0-1029/29": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" - ], - "4.15.0-1029/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" - ], - "4.15.0-1030/30": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" - ], - "4.15.0-1030/35": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" - ], - "4.15.0-1030/33": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" - ], - "4.15.0-1031/33": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" - ], - "4.15.0-1031/32": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" - ], - "4.15.0-1031/31": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb" - ], - "4.15.0-1031/34": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" - ], - "4.15.0-1032/34": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb" - ], - "4.15.0-1032/33": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" - ], - "4.15.0-1033/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" - ], - "4.15.0-1033/38": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" - ], - "4.15.0-1033/36": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" - ], - "4.15.0-1034/36": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" - ], - "4.15.0-1034/34": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb" - ], - "4.15.0-1034/39": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" - ], - "4.15.0-1035/37": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" - ], - "4.15.0-1035/36": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb" - ], - "4.15.0-1035/35": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" - ], - "4.15.0-1035/40": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" - ], - "4.15.0-1035/39": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb" - ], - "4.15.0-1036/38": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" - ], - "4.15.0-1036/36": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" - ], - "4.15.0-1037/39": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" - ], - "4.15.0-1037/41": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb" - ], - "4.15.0-1038/38": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb" - ], - "4.15.0-1038/43": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" - ], - "4.15.0-1038/42": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" - ], - "4.15.0-1039/41": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" - ], - "4.15.0-1039/39": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" - ], - "4.15.0-1039/44": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" - ], - "4.15.0-1039/43": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" - ], - "4.15.0-1040/42": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" - ], - "4.15.0-1041/43": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" - ], - "4.15.0-1042/45": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" - ], - "4.15.0-1042/44": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" - ], - "4.15.0-1042/42": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" - ], - "4.15.0-1043/45": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb" - ], - "4.15.0-1043/43": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" - ], - "4.15.0-1043/48": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb" - ], - "4.15.0-1044/46": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" - ], - "4.15.0-1044/70": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" - ], - "4.15.0-1044/44": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" - ], - "4.15.0-1045/47": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" - ], - "4.15.0-1045/48": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" - ], - "4.15.0-1045/50": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb" - ], - "4.15.0-1045/49": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" - ], - "4.15.0-1046/49": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" - ], - "4.15.0-1046/46": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" - ], - "4.15.0-1047/49": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" - ], - "4.15.0-1047/47": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" - ], - "4.15.0-1047/51": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" - ], - "4.15.0-1048/50": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb" - ], - "4.15.0-1048/51": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" - ], - "4.15.0-1048/48": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" - ], - "4.15.0-1048/52": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" - ], - "4.15.0-1049/52": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" - ], - "4.15.0-1050/52": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" - ], - "4.15.0-1050/53": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" - ], - "4.15.0-1050/50": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" - ], - "4.15.0-1050/57": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb" - ], - "4.15.0-1050/54": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb" - ], - "4.15.0-1051/53": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb" - ], - "4.15.0-1051/51": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" - ], - "4.15.0-1051/55": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" - ], - "4.15.0-1052/54": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" - ], - "4.15.0-1052/55": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb" - ], - "4.15.0-1052/52": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" - ], - "4.15.0-1053/53": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" - ], - "4.15.0-1053/57": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" - ], - "4.15.0-1054/56": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" - ], - "4.15.0-1054/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb" - ], - "4.15.0-1055/58": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" - ], - "4.15.0-1056/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb" - ], - "4.15.0-1056/57": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" - ], - "4.15.0-1056/65": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" - ], - "4.15.0-1057/59": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" - ], - "4.15.0-1057/60": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" - ], - "4.15.0-1057/66": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" - ], - "4.15.0-1057/62": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" - ], - "4.15.0-1058/60": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb" - ], - "4.15.0-1058/61": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" - ], - "4.15.0-1058/59": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" - ], - "4.15.0-1058/64": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" - ], - "4.15.0-1059/62": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb" - ], - "4.15.0-1059/60": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" - ], - "4.15.0-1059/68": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" - ], - "4.15.0-106/107": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" - ], - "4.15.0-1060/62": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" - ], - "4.15.0-1060/61": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" - ], - "4.15.0-1061/67": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb" - ], - "4.15.0-1062/68": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb" - ], - "4.15.0-1063/67": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb" - ], - "4.15.0-1063/66": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" - ], - "4.15.0-1063/72": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb" - ], - "4.15.0-1063/70": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" - ], - "4.15.0-1064/67": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" - ], - "4.15.0-1064/73": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" - ], - "4.15.0-1064/71": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" - ], - "4.15.0-1065/69": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" - ], - "4.15.0-1065/75": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" - ], - "4.15.0-1065/73": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" - ], - "4.15.0-1066/70": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" - ], - "4.15.0-1066/69": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" - ], - "4.15.0-1066/76": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" - ], - "4.15.0-1066/74": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" - ], - "4.15.0-1067/71": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" - ], - "4.15.0-1067/70": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb" - ], - "4.15.0-1067/68": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" - ], - "4.15.0-1067/77": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb" - ], - "4.15.0-1067/75": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" - ], - "4.15.0-1068/76": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" - ], - "4.15.0-1069/72": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" - ], - "4.15.0-1069/70": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb" - ], - "4.15.0-1069/79": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" - ], - "4.15.0-1069/77": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb" - ], - "4.15.0-1070/73": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" - ], - "4.15.0-1070/78": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" - ], - "4.15.0-1071/72": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" - ], - "4.15.0-1071/79": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" - ], - "4.15.0-1072/76": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb" - ], - "4.15.0-1072/73": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" - ], - "4.15.0-1072/80": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" - ], - "4.15.0-1073/77": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" - ], - "4.15.0-1073/78": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb" - ], - "4.15.0-1073/83": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb" - ], - "4.15.0-1074/75": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" - ], - "4.15.0-1075/76": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb" - ], - "4.15.0-1075/83": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" - ], - "4.15.0-1076/80": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" - ], - "4.15.0-1076/81": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" - ], - "4.15.0-1076/86": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" - ], - "4.15.0-1077/81": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb" - ], - "4.15.0-1077/82": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" - ], - "4.15.0-1077/79": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb" - ], - "4.15.0-1078/83": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" - ], - "4.15.0-1078/86": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" - ], - "4.15.0-1079/83": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" - ], - "4.15.0-1079/84": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb" - ], - "4.15.0-1079/89": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" - ], - "4.15.0-1079/87": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb" - ], - "4.15.0-108/109": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" - ], - "4.15.0-1080/84": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" - ], - "4.15.0-1080/90": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" - ], - "4.15.0-1080/88": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb" - ], - "4.15.0-1081/83": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" - ], - "4.15.0-1081/91": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" - ], - "4.15.0-1081/89": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb" - ], - "4.15.0-1082/86": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" - ], - "4.15.0-1082/92": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb" - ], - "4.15.0-1082/84": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb" - ], - "4.15.0-1082/90": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" - ], - "4.15.0-1083/87": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" - ], - "4.15.0-1083/93": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" - ], - "4.15.0-1083/91": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb" - ], - "4.15.0-1084/86": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" - ], - "4.15.0-1084/92": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" - ], - "4.15.0-1085/87": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb" - ], - "4.15.0-1085/93": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" - ], - "4.15.0-1086/91": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb" - ], - "4.15.0-1086/88": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" - ], - "4.15.0-1086/94": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" - ], - "4.15.0-1087/92": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb" - ], - "4.15.0-1087/89": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" - ], - "4.15.0-1087/97": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb" - ], - "4.15.0-1088/90": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" - ], - "4.15.0-1089/99": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb" - ], - "4.15.0-1089/91": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" - ], - "4.15.0-1089/98": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" - ], - "4.15.0-109/110": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" - ], - "4.15.0-1090/95": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb" - ], - "4.15.0-1090/92": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" - ], - "4.15.0-1090/100": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb" - ], - "4.15.0-1090/99": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb" - ], - "4.15.0-1091/96": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb" - ], - "4.15.0-1091/101": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb" - ], - "4.15.0-1091/93": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" - ], - "4.15.0-1091/100": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" - ], - "4.15.0-1092/98": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb" - ], - "4.15.0-1092/102": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" - ], - "4.15.0-1092/94": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" - ], - "4.15.0-1093/99": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb" - ], - "4.15.0-1093/103": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb" - ], - "4.15.0-1093/106": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb" - ], - "4.15.0-1094/101": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" - ], - "4.15.0-1094/107": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb" - ], - "4.15.0-1094/96": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" - ], - "4.15.0-1094/104": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb" - ], - "4.15.0-1095/102": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" - ], - "4.15.0-1095/105": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" - ], - "4.15.0-1095/108": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb" - ], - "4.15.0-1096/103": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" - ], - "4.15.0-1096/106": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" - ], - "4.15.0-1096/109": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" - ], - "4.15.0-1097/104": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" - ], - "4.15.0-1097/110": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" - ], - "4.15.0-1097/99": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" - ], - "4.15.0-1097/107": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" - ], - "4.15.0-1098/105": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" - ], - "4.15.0-1098/111": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb" - ], - "4.15.0-1098/100": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb" - ], - "4.15.0-1099/106": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" - ], - "4.15.0-1099/110": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb" - ], - "4.15.0-1099/112": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" - ], - "4.15.0-1099/101": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" - ], - "4.15.0-1099/109": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" - ], - "4.15.0-1100/113": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" - ], - "4.15.0-1100/102": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" - ], - "4.15.0-1100/110": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" - ], - "4.15.0-1101/108": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb" - ], - "4.15.0-1101/103": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" - ], - "4.15.0-1101/112": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" - ], - "4.15.0-1102/109": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" - ], - "4.15.0-1102/113": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb" - ], - "4.15.0-1102/104": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" - ], - "4.15.0-1103/110": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" - ], - "4.15.0-1103/114": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb" - ], - "4.15.0-1103/116": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" - ], - "4.15.0-1104/116": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" - ], - "4.15.0-1105/107": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" - ], - "4.15.0-1106/113": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" - ], - "4.15.0-1106/118": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" - ], - "4.15.0-1106/120": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" - ], - "4.15.0-1106/108": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb" - ], - "4.15.0-1107/121": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" - ], - "4.15.0-1108/120": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" - ], - "4.15.0-1108/122": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb" - ], - "4.15.0-1109/116": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" - ], - "4.15.0-1109/121": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" - ], - "4.15.0-1109/123": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" - ], - "4.15.0-1109/112": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" - ], - "4.15.0-111/112": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-111-generic_4.15.0-111.112_amd64.deb" - ], - "4.15.0-1110/117": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" - ], - "4.15.0-1110/122": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" - ], - "4.15.0-1110/124": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" - ], - "4.15.0-1111/118": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" - ], - "4.15.0-1111/123": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" - ], - "4.15.0-1111/125": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" - ], - "4.15.0-1112/119": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb" - ], - "4.15.0-1112/125": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" - ], - "4.15.0-1112/126": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" - ], - "4.15.0-1112/115": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" - ], - "4.15.0-1113/126": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" - ], - "4.15.0-1114/121": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" - ], - "4.15.0-1114/127": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" - ], - "4.15.0-1114/128": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" - ], - "4.15.0-1115/122": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" - ], - "4.15.0-1115/128": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb" - ], - "4.15.0-1115/129": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" - ], - "4.15.0-1118/125": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb" - ], - "4.15.0-1118/131": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" - ], - "4.15.0-1118/132": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" - ], - "4.15.0-1119/127": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" - ], - "4.15.0-1119/133": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" - ], - "4.15.0-112/113": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-112-generic_4.15.0-112.113_amd64.deb" - ], - "4.15.0-1120/134": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-modules-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" - ], - "4.15.0-1121/134": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" - ], - "4.15.0-1122/135": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb" - ], - "4.15.0-1123/132": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" - ], - "4.15.0-1123/136": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb" - ], - "4.15.0-1124/137": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" - ], - "4.15.0-1125/138": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" - ], - "4.15.0-1126/135": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" - ], - "4.15.0-1126/139": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" - ], - "4.15.0-1127/140": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" - ], - "4.15.0-1129/142": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb" - ], - "4.15.0-1133/146": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" - ], - "4.15.0-1136/149": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-modules-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" - ], - "4.15.0-115/116": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb" - ], - "4.15.0-117/118": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" - ], - "4.15.0-118/119": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" - ], - "4.15.0-121/123": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" - ], - "4.15.0-122/124": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" - ], - "4.15.0-123/126": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" - ], - "4.15.0-128/131": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb" - ], - "4.15.0-129/132": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb" - ], - "4.15.0-130/134": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb" - ], - "4.15.0-132/136": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" - ], - "4.15.0-135/139": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb" - ], - "4.15.0-136/140": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" - ], - "4.15.0-137/141": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" - ], - "4.15.0-139/143": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" - ], - "4.15.0-140/144": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" - ], - "4.15.0-141/145": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb" - ], - "4.15.0-142/146": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-142-generic_4.15.0-142.146_amd64.deb" - ], - "4.15.0-143/147": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb" - ], - "4.15.0-144/148": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" - ], - "4.15.0-147/151": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb" - ], - "4.15.0-151/157": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb" - ], - "4.15.0-153/160": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-153-generic_4.15.0-153.160_amd64.deb" - ], - "4.15.0-154/161": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb" - ], - "4.15.0-156/163": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb" - ], - "4.15.0-158/166": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-158-generic_4.15.0-158.166_amd64.deb" - ], - "4.15.0-159/167": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-159-generic_4.15.0-159.167_amd64.deb" - ], - "4.15.0-161/169": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" - ], - "4.15.0-162/170": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb" - ], - "4.15.0-163/171": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" - ], - "4.15.0-166/174": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb" - ], - "4.15.0-171/180": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb" - ], - "4.15.0-175/184": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" - ], - "4.15.0-22/24": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb" - ], - "4.15.0-23/25": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-23-generic_4.15.0-23.25_amd64.deb" - ], - "4.15.0-24/26": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb" - ], - "4.15.0-29/31": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb" - ], - "4.15.0-30/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb" - ], - "4.15.0-32/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" - ], - "4.15.0-33/36": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" - ], - "4.15.0-34/37": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb" - ], - "4.15.0-36/39": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" - ], - "4.15.0-39/42": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" - ], - "4.15.0-42/45": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-42-generic_4.15.0-42.45_amd64.deb" - ], - "4.15.0-43/46": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb" - ], - "4.15.0-44/47": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" - ], - "4.15.0-45/48": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-45-generic_4.15.0-45.48_amd64.deb" - ], - "4.15.0-46/49": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb" - ], - "4.15.0-47/50": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb" - ], - "4.15.0-50/54": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-50-generic_4.15.0-50.54_amd64.deb" - ], - "4.15.0-51/55": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb" - ], - "4.15.0-52/56": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" - ], - "4.15.0-54/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" - ], - "4.15.0-55/60": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb" - ], - "4.15.0-58/64": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" - ], - "4.15.0-60/67": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb" - ], - "4.15.0-62/69": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" - ], - "4.15.0-64/73": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb" - ], - "4.15.0-65/74": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb" - ], - "4.15.0-66/75": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-66-generic_4.15.0-66.75_amd64.deb" - ], - "4.15.0-69/78": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-69-generic_4.15.0-69.78_amd64.deb" - ], - "4.15.0-70/79": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb" - ], - "4.15.0-72/81": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-72-generic_4.15.0-72.81_amd64.deb" - ], - "4.15.0-74/84": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb" - ], - "4.15.0-76/86": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" - ], - "4.15.0-88/88": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" - ], - "4.15.0-91/92": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb" - ], - "4.15.0-96/97": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb" - ], - "4.15.0-99/100": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb" - ], - "4.18.0-1004/5~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" - ], - "4.18.0-1005/6~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" - ], - "4.18.0-1006/6~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb" - ], - "4.18.0-1006/7~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" - ], - "4.18.0-1007/7~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" - ], - "4.18.0-1007/8~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb" - ], - "4.18.0-1008/8~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-modules-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb" - ], - "4.18.0-1008/9~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb" - ], - "4.18.0-1011/11~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" - ], - "4.18.0-1011/12~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" - ], - "4.18.0-1012/13~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" - ], - "4.18.0-1013/13~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" - ], - "4.18.0-1013/14~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" - ], - "4.18.0-1014/14~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" - ], - "4.18.0-1015/16~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb" - ], - "4.18.0-1018/18~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb" - ], - "4.18.0-1019/19~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" - ], - "4.18.0-1020/20~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" - ], - "4.18.0-1023/24~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" - ], - "4.18.0-1024/25~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" - ], - "4.18.0-1025/27~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb" - ], - "4.18.0-13/14~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb" - ], - "4.18.0-14/15~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" - ], - "4.18.0-15/16~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" - ], - "4.18.0-16/17~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" - ], - "4.18.0-17/18~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb" - ], - "4.18.0-20/21~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" - ], - "4.18.0-21/22~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb" - ], - "4.18.0-22/23~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb" - ], - "4.18.0-24/25~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb" - ], - "4.18.0-25/26~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb" - ], - "5.0.0-1007/12~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" - ], - "5.0.0-1008/13~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb" - ], - "5.0.0-1009/14~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" - ], - "5.0.0-1010/15~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" - ], - "5.0.0-1011/11~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" - ], - "5.0.0-1011/16": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" - ], - "5.0.0-1012/12~18.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-modules-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-modules-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb" - ], - "5.0.0-1013/13~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb" - ], - "5.0.0-1013/18": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb" - ], - "5.0.0-1014/14~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" - ], - "5.0.0-1014/19": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-modules-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" - ], - "5.0.0-1016/17~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb" - ], - "5.0.0-1018/19~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" - ], - "5.0.0-1020/21~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb" - ], - "5.0.0-1020/20~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb" - ], - "5.0.0-1021/24~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" - ], - "5.0.0-1021/21~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" - ], - "5.0.0-1022/25~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb" - ], - "5.0.0-1022/23~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb" - ], - "5.0.0-1023/26~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb" - ], - "5.0.0-1023/24~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" - ], - "5.0.0-1024/27~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" - ], - "5.0.0-1025/28": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" - ], - "5.0.0-1025/27~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" - ], - "5.0.0-1025/26~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb" - ], - "5.0.0-1026/27~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb" - ], - "5.0.0-1027/30": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-modules-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" - ], - "5.0.0-1027/29~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" - ], - "5.0.0-1028/30~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" - ], - "5.0.0-1028/29~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" - ], - "5.0.0-1029/31~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb" - ], - "5.0.0-1029/30~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" - ], - "5.0.0-1031/33": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" - ], - "5.0.0-1031/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" - ], - "5.0.0-1032/34": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb" - ], - "5.0.0-1033/34": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" - ], - "5.0.0-1034/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" - ], - "5.0.0-1035/37": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" - ], - "5.0.0-1036/38": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb" - ], - "5.0.0-15/16~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb" - ], - "5.0.0-16/17~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb" - ], - "5.0.0-17/18~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" - ], - "5.0.0-19/20~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb" - ], - "5.0.0-20/21~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" - ], - "5.0.0-23/24~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" - ], - "5.0.0-25/26~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb" - ], - "5.0.0-27/28~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb" - ], - "5.0.0-29/31~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb" - ], - "5.0.0-31/33~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" - ], - "5.0.0-32/34~18.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" - ], - "5.0.0-35/38~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb" - ], - "5.0.0-36/39~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb" - ], - "5.0.0-37/40~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb" - ], - "5.0.0-52/56~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" - ], - "5.0.0-61/65": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb" - ], - "5.0.0-62/67": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" - ], - "5.0.0-63/69": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-63-generic_5.0.0-63.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-63-generic_5.0.0-63.69_amd64.deb" - ], - "5.0.0-65/71": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-65-generic_5.0.0-65.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-65-generic_5.0.0-65.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" - ], - "5.3.0-1007/8~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" - ], - "5.3.0-1008/9~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" - ], - "5.3.0-1009/10~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" - ], - "5.3.0-1010/11~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" - ], - "5.3.0-1011/12~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" - ], - "5.3.0-1012/13~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" - ], - "5.3.0-1013/14~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" - ], - "5.3.0-1014/15~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb" - ], - "5.3.0-1016/17~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" - ], - "5.3.0-1016/18~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" - ], - "5.3.0-1017/18~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" - ], - "5.3.0-1018/19~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" - ], - "5.3.0-1018/20~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" - ], - "5.3.0-1019/21~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb" - ], - "5.3.0-1019/20~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" - ], - "5.3.0-1020/21~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" - ], - "5.3.0-1020/22~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" - ], - "5.3.0-1022/23~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" - ], - "5.3.0-1023/25~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb" - ], - "5.3.0-1024/26~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" - ], - "5.3.0-1026/28~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" - ], - "5.3.0-1027/29~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" - ], - "5.3.0-1028/30~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" - ], - "5.3.0-1028/29~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" - ], - "5.3.0-1029/31~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb" - ], - "5.3.0-1030/32~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-modules-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb" - ], - "5.3.0-1031/32~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" - ], - "5.3.0-1032/34~18.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" - ], - "5.3.0-1032/33~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" - ], - "5.3.0-1032/34~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-modules-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" - ], - "5.3.0-1033/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" - ], - "5.3.0-1034/36": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" - ], - "5.3.0-1034/35~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" - ], - "5.3.0-1035/37": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-modules-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" - ], - "5.3.0-1035/36": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-modules-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb" - ], - "5.3.0-19/20~18.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" - ], - "5.3.0-22/24~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb" - ], - "5.3.0-23/25~18.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" - ], - "5.3.0-24/26~18.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" - ], - "5.3.0-26/28~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb" - ], - "5.3.0-28/30~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" - ], - "5.3.0-40/32~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" - ], - "5.3.0-42/34~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" - ], - "5.3.0-45/37~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb" - ], - "5.3.0-46/38~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb" - ], - "5.3.0-51/44~18.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" - ], - "5.3.0-53/47~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb" - ], - "5.3.0-59/53~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" - ], - "5.3.0-61/55~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb" - ], - "5.3.0-62/56~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" - ], - "5.3.0-64/58~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" - ], - "5.3.0-65/59": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb" - ], - "5.3.0-66/60": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb" - ], - "5.3.0-67/61": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" - ], - "5.3.0-68/63": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-68-generic_5.3.0-68.63_amd64.deb" - ], - "5.3.0-69/65": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" - ], - "5.3.0-70/66": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-70-generic_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-70-generic_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" - ], - "5.3.0-72/68": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb" - ], - "5.3.0-73/69": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" - ], - "5.3.0-74/70": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb" - ], - "5.3.0-75/71": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb" - ], - "5.3.0-76/72": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb" - ], - "5.4.0-1003/3": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" - ], - "5.4.0-1004/5": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" - ], - "5.4.0-1007/8~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" - ], - "5.4.0-1008/9~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" - ], - "5.4.0-1009/10~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" - ], - "5.4.0-1010/11~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" - ], - "5.4.0-1011/12~18.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb" - ], - "5.4.0-1012/13~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb" - ], - "5.4.0-1013/14~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb" - ], - "5.4.0-1014/15~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" - ], - "5.4.0-1015/16~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" - ], - "5.4.0-1016/17~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" - ], - "5.4.0-1018/19~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" - ], - "5.4.0-1020/20~18.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" - ], - "5.4.0-1021/21~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" - ], - "5.4.0-1021/22~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" - ], - "5.4.0-1022/22~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" - ], - "5.4.0-1022/23~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" - ], - "5.4.0-1023/23~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" - ], - "5.4.0-1023/24~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" - ], - "5.4.0-1024/24~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" - ], - "5.4.0-1024/25~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb" - ], - "5.4.0-1025/25~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb" - ], - "5.4.0-1025/26~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" - ], - "5.4.0-1026/26~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" - ], - "5.4.0-1026/27~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" - ], - "5.4.0-1027/28~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb" - ], - "5.4.0-1028/29~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" - ], - "5.4.0-1029/30~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" - ], - "5.4.0-1029/31~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" - ], - "5.4.0-1029/30~18.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb" - ], - "5.4.0-1031/32~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" - ], - "5.4.0-1032/34~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" - ], - "5.4.0-1033/35~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" - ], - "5.4.0-1033/34~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb" - ], - "5.4.0-1033/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" - ], - "5.4.0-1034/37~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" - ], - "5.4.0-1034/36~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" - ], - "5.4.0-1035/37~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" - ], - "5.4.0-1035/36~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" - ], - "5.4.0-1035/38~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" - ], - "5.4.0-1036/38~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" - ], - "5.4.0-1036/39~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb" - ], - "5.4.0-1036/37~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" - ], - "5.4.0-1037/39~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" - ], - "5.4.0-1037/40~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" - ], - "5.4.0-1037/38~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb" - ], - "5.4.0-1038/40~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb" - ], - "5.4.0-1038/41~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" - ], - "5.4.0-1038/39~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" - ], - "5.4.0-1039/41~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" - ], - "5.4.0-1039/42~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" - ], - "5.4.0-104/118~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" - ], - "5.4.0-1040/42~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" - ], - "5.4.0-1040/43~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb" - ], - "5.4.0-1041/43~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb" - ], - "5.4.0-1041/44~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" - ], - "5.4.0-1042/45~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" - ], - "5.4.0-1042/44~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" - ], - "5.4.0-1043/45~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" - ], - "5.4.0-1043/46~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" - ], - "5.4.0-1044/46~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" - ], - "5.4.0-1044/47~18.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb" - ], - "5.4.0-1044/47~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" - ], - "5.4.0-1045/47~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" - ], - "5.4.0-1046/48~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" - ], - "5.4.0-1046/49~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" - ], - "5.4.0-1046/50~18.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" - ], - "5.4.0-1047/49~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" - ], - "5.4.0-1048/50~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" - ], - "5.4.0-1048/52~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb" - ], - "5.4.0-1049/51~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" - ], - "5.4.0-1049/53~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb" - ], - "5.4.0-1049/52~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" - ], - "5.4.0-1051/53~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" - ], - "5.4.0-1051/55~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb" - ], - "5.4.0-1051/54~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb" - ], - "5.4.0-1052/56~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" - ], - "5.4.0-1052/55~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb" - ], - "5.4.0-1053/57~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" - ], - "5.4.0-1053/56~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" - ], - "5.4.0-1054/57~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" - ], - "5.4.0-1054/58~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" - ], - "5.4.0-1055/58~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb" - ], - "5.4.0-1055/57~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" - ], - "5.4.0-1055/59~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" - ], - "5.4.0-1056/59~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" - ], - "5.4.0-1056/58~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" - ], - "5.4.0-1057/60~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" - ], - "5.4.0-1057/61~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" - ], - "5.4.0-1058/61~18.04.3": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb" - ], - "5.4.0-1058/60~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb" - ], - "5.4.0-1059/62~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" - ], - "5.4.0-1059/63~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" - ], - "5.4.0-1060/64~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb" - ], - "5.4.0-1061/65~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" - ], - "5.4.0-1062/65~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" - ], - "5.4.0-1065/68~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" - ], - "5.4.0-1066/71~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" - ], - "5.4.0-1067/70~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-modules-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb" - ], - "5.4.0-1067/71~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" - ], - "5.4.0-1068/72~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" - ], - "5.4.0-1069/75~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" - ], - "5.4.0-107/121~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb" - ], - "5.4.0-1071/76~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb" - ], - "5.4.0-1072/75~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb" - ], - "5.4.0-1073/76~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" - ], - "5.4.0-1074/77~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" - ], - "5.4.0-37/41~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" - ], - "5.4.0-39/43~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" - ], - "5.4.0-40/44~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" - ], - "5.4.0-42/46~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb" - ], - "5.4.0-45/49~18.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb" - ], - "5.4.0-47/51~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb" - ], - "5.4.0-48/52~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" - ], - "5.4.0-51/56~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" - ], - "5.4.0-52/57~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" - ], - "5.4.0-53/59~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb" - ], - "5.4.0-58/64~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" - ], - "5.4.0-59/65~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" - ], - "5.4.0-60/67~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb" - ], - "5.4.0-62/70~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" - ], - "5.4.0-65/73~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb" - ], - "5.4.0-66/74~18.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" - ], - "5.4.0-67/75~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" - ], - "5.4.0-70/78~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" - ], - "5.4.0-71/79~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb" - ], - "5.4.0-72/80~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" - ], - "5.4.0-73/82~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" - ], - "5.4.0-74/83~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb" - ], - "5.4.0-77/86~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb" - ], - "5.4.0-80/90~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" - ], - "5.4.0-81/91~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" - ], - "5.4.0-84/94~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" - ], - "5.4.0-86/97~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb" - ], - "5.4.0-87/98~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" - ], - "5.4.0-89/100~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" - ], - "5.4.0-90/101~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" - ], - "5.4.0-92/103~18.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" - ], - "5.4.0-94/106~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" - ], - "5.4.0-96/109~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb" - ], - "4.15.0-1007/9": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb" - ], - "4.15.0-1011/13": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" - ], - "4.15.0-1024/29": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" - ], - "4.15.0-1025/25": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" - ], - "4.15.0-1030/31": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb" - ], - "4.15.0-1030/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-modules-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" - ], - "4.15.0-1032/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" - ], - "4.15.0-1036/41": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" - ], - "4.15.0-124/127": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" - ], - "4.15.0-134/138": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb" - ], - "4.15.0-38/41": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" - ], - "4.15.0-48/51": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb" - ], - "4.18.0-1009/10~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-modules-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" - ], - "4.18.0-18/19~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" - ], - "5.0.0-41/45~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb" - ], - "5.0.0-43/47~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" - ], - "5.0.0-44/48~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" - ], - "5.0.0-47/51~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb" - ], - "5.0.0-48/52~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" - ], - "5.0.0-53/57~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" - ], - "5.0.0-58/62~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb" - ], - "5.0.0-60/64~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-modules-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" - ], - "5.4.0-1001/1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-modules-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" - ], - "5.4.0-1018/18~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-modules-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" - ], - "5.4.0-1019/19~18.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-modules-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb" - ], - "5.4.0-1019/19~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-modules-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb" - ], - "5.4.0-1020/20~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-modules-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" - ], - "5.4.0-54/60~18.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb" - ], - "5.4.0-64/72~18.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-modules-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb" - ], - "4.15.0-1004/5": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-modules-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb" - ], - "4.15.0-1006/6": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" - ], - "4.15.0-1007/7": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" - ], - "4.15.0-20/21": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" - ], - "5.15.0-1001/1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1001_5.15.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gke/linux-image-5.15.0-1001-gke_5.15.0-1001.1+2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1001_5.15.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.15.0-1001-gke_5.15.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gke/linux-image-5.15.0-1001-gke_5.15.0-1001.1+2_amd64.deb" - ], - "5.15.0-1002/2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gke/linux-image-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gke/linux-image-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.15.0-1002-kvm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" - ], - "5.15.0-1003/5": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-modules-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-iotg/linux-image-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-iotg/linux-image-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-modules-5.15.0-1003-intel-iotg_5.15.0-1003.5_amd64.deb" - ], - "5.15.0-1004/4": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb" - ], - "5.15.0-24/24": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-modules-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-modules-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" - ], - "5.15.0-1002/4": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" - ], - "5.15.0-1003/4": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" - ], - "5.15.0-1003/6": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb" - ], - "5.15.0-1004/6": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb" - ], - "5.15.0-23/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-modules-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-modules-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-23_5.15.0-23.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-23_5.15.0-23.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-lowlatency/linux-image-5.15.0-23-lowlatency_5.15.0-23.23_amd64.deb" - ], - "5.15.0-25/25": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" - ], - "5.17.0-1003/3": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-modules-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.17/linux-image-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-modules-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.17/linux-image-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb" - ], - "5.10.0-1047/49": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb" - ], - "5.10.0-1058/62": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb" - ], - "5.11.0-1022/23~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" - ], - "5.11.0-1028/31~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" - ], - "5.11.0-1029/32~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.11/linux-image-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" - ], - "5.11.0-1029/32~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" - ], - "5.11.0-1029/33~20.04.3": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" - ], - "5.11.0-1030/34~20.04.3": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" - ], - "5.11.0-40/44~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb" - ], - "5.11.0-41/45~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb" - ], - "5.11.0-42/46~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb" - ], - "5.11.0-43/47~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb" - ], - "5.11.0-60/60": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb" - ], - "5.11.0-61/61": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb" - ], - "5.13.0-1014/15~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb" - ], - "5.13.0-1014/16~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" - ], - "5.13.0-1015/18~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" - ], - "5.13.0-1016/20": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" - ], - "5.13.0-1018/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb" - ], - "5.13.0-1018/22~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb" - ], - "5.13.0-1019/21~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" - ], - "5.13.0-1020/22~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" - ], - "5.13.0-1020/24": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" - ], - "5.13.0-1022/24~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb" - ], - "5.13.0-1022/26~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" - ], - "5.13.0-1022/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" - ], - "5.13.0-1023/28~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb" - ], - "5.13.0-1026/31~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" - ], - "5.13.0-19/19~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb" - ], - "5.13.0-21/21~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb" - ], - "5.13.0-22/22~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb" - ], - "5.13.0-28/31~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" - ], - "5.13.0-29/32~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" - ], - "5.13.0-30/33~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb" - ], - "5.13.0-32/35~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb" - ], - "5.13.0-36/41~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" - ], - "5.13.0-37/42~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" - ], - "5.13.0-40/45~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" - ], - "5.14.0-1006/6": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb" - ], - "5.14.0-1007/7": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" - ], - "5.14.0-1008/8": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" - ], - "5.14.0-1009/9": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" - ], - "5.14.0-1011/11": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb" - ], - "5.14.0-1012/12": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb" - ], - "5.14.0-1013/13": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb" - ], - "5.14.0-1021/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" - ], - "5.14.0-1022/24": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb" - ], - "5.14.0-1023/25": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb" - ], - "5.14.0-1024/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb" - ], - "5.14.0-1028/31": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb" - ], - "5.14.0-1029/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" - ], - "5.14.0-1030/33": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb" - ], - "5.14.0-1032/35": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" - ], - "5.14.0-1033/36": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" - ], - "5.15.0-1002/4~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-iotg-5.15/linux-image-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-modules-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-modules-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-iotg-5.15/linux-image-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" - ], - "5.15.0-18/18~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-18_5.15.0-18.18~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-18_5.15.0-18.18~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-lowlatency_5.15.0-18.18~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-18-generic_5.15.0-18.18~20.04.2_amd64.deb" - ], - "5.15.0-22/22~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-22_5.15.0-22.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-22-generic_5.15.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-22_5.15.0-22.22~20.04.1_all.deb" - ], - "5.15.0-23/23~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-23_5.15.0-23.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-23-generic_5.15.0-23.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-23_5.15.0-23.23~20.04.1_all.deb" - ], - "5.15.0-25/25~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.15/linux-image-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-modules-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.1_amd64.deb" - ], - "5.4.0-100/113": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb" - ], - "5.4.0-1013/14": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb" - ], - "5.4.0-1015/16": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" - ], - "5.4.0-102/115": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb" - ], - "5.4.0-1020/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" - ], - "5.4.0-1032/33": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" - ], - "5.4.0-1034/35": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" - ], - "5.4.0-1035/36": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb" - ], - "5.4.0-1039/40": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" - ], - "5.4.0-105/119": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb" - ], - "5.4.0-1050/52": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" - ], - "5.4.0-1054/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb" - ], - "5.4.0-1054/56": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" - ], - "5.4.0-1055/59": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" - ], - "5.4.0-1056/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" - ], - "5.4.0-1057/61": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" - ], - "5.4.0-1058/62": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" - ], - "5.4.0-1059/62": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb" - ], - "5.4.0-106/120": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-106-generic_5.4.0-106.120_amd64.deb" - ], - "5.4.0-1060/63": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb" - ], - "5.4.0-1061/64": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb" - ], - "5.4.0-1062/65": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" - ], - "5.4.0-1062/66": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb" - ], - "5.4.0-1063/66": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" - ], - "5.4.0-1063/66+cvm3": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" - ], - "5.4.0-1063/67": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" - ], - "5.4.0-1064/67": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" - ], - "5.4.0-1064/68": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" - ], - "5.4.0-1065/69": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" - ], - "5.4.0-1066/69": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" - ], - "5.4.0-1067/72": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb" - ], - "5.4.0-1068/71": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb" - ], - "5.4.0-1068/71+cvm1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb" - ], - "5.4.0-1068/73": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" - ], - "5.4.0-1069/73": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb" - ], - "5.4.0-1069/72": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" - ], - "5.4.0-107/121": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-107-generic_5.4.0-107.121_amd64.deb" - ], - "5.4.0-1070/74": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" - ], - "5.4.0-1070/73": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" - ], - "5.4.0-1070/73+cvm1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" - ], - "5.4.0-1070/76": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" - ], - "5.4.0-1071/74": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" - ], - "5.4.0-1072/77": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" - ], - "5.4.0-1073/76": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb" - ], - "5.4.0-1073/76+cvm1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" - ], - "5.4.0-1074/77": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" - ], - "5.4.0-1075/78": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" - ], - "5.4.0-108/122": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-108-generic_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-108-generic_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb" - ], - "5.4.0-97/110": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" - ], - "5.4.0-98/111": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb" - ], - "5.4.0-99/112": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb" - ], - "5.8.0-1033/35~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" - ], - "5.8.0-1036/38~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb" - ], - "5.8.0-67/75": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb" - ], - "5.10.0-1013/14": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" - ], - "5.10.0-1014/15": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb" - ], - "5.10.0-1016/17": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb" - ], - "5.10.0-1017/18": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb" - ], - "5.10.0-1019/20": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb" - ], - "5.10.0-1021/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb" - ], - "5.10.0-1022/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" - ], - "5.10.0-1023/24": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb" - ], - "5.10.0-1025/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" - ], - "5.10.0-1026/27": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" - ], - "5.10.0-1029/30": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb" - ], - "5.10.0-1033/34": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb" - ], - "5.10.0-1038/40": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb" - ], - "5.10.0-1044/46": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb" - ], - "5.10.0-1045/47": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" - ], - "5.10.0-1049/51": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" - ], - "5.10.0-1050/52": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" - ], - "5.10.0-1051/53": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" - ], - "5.10.0-1053/55": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" - ], - "5.10.0-1055/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" - ], - "5.10.0-1057/61": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" - ], - "5.11.0-1012/13~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb" - ], - "5.11.0-1013/14~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" - ], - "5.11.0-1014/15~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb" - ], - "5.11.0-1014/16~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" - ], - "5.11.0-1015/16~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb" - ], - "5.11.0-1016/17~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" - ], - "5.11.0-1017/18~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" - ], - "5.11.0-1017/19~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb" - ], - "5.11.0-1018/20~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" - ], - "5.11.0-1019/20~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" - ], - "5.11.0-1020/21~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" - ], - "5.11.0-1020/21~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" - ], - "5.11.0-1020/22~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" - ], - "5.11.0-1021/22~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" - ], - "5.11.0-1021/22~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" - ], - "5.11.0-1021/23~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" - ], - "5.11.0-1022/24~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" - ], - "5.11.0-1023/24~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" - ], - "5.11.0-1023/25~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" - ], - "5.11.0-1024/26~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" - ], - "5.11.0-1025/27~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" - ], - "5.11.0-1026/29~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" - ], - "5.11.0-1027/30~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb" - ], - "5.11.0-1028/31~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" - ], - "5.11.0-1028/32~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" - ], - "5.11.0-22/23~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb" - ], - "5.11.0-25/27~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb" - ], - "5.11.0-27/29~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" - ], - "5.11.0-34/36~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" - ], - "5.11.0-36/40~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" - ], - "5.11.0-37/41~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb" - ], - "5.11.0-38/42~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb" - ], - "5.11.0-44/48~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb" - ], - "5.11.0-46/51~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.11/linux-image-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-modules-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" - ], - "5.13.0-1008/9~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" - ], - "5.13.0-1008/9~20.04.3": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" - ], - "5.13.0-1008/8": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" - ], - "5.13.0-1009/10~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" - ], - "5.13.0-1009/9": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb" - ], - "5.13.0-1009/10": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" - ], - "5.13.0-1010/10": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" - ], - "5.13.0-1010/11": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" - ], - "5.13.0-1011/12~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-image-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb" - ], - "5.13.0-1011/13~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" - ], - "5.13.0-1012/13~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb" - ], - "5.13.0-1012/14~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" - ], - "5.13.0-1012/15~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" - ], - "5.13.0-1012/16": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" - ], - "5.13.0-1013/16~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" - ], - "5.13.0-1014/18": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" - ], - "5.13.0-1015/19~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" - ], - "5.13.0-1016/20~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" - ], - "5.13.0-1017/19~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" - ], - "5.13.0-1017/21": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" - ], - "5.13.0-1019/23~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb" - ], - "5.13.0-1019/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" - ], - "5.13.0-1021/23~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws-5.13/linux-image-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-modules-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb" - ], - "5.13.0-1021/24~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" - ], - "5.13.0-1021/25~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-modules-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.13/linux-image-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" - ], - "5.13.0-1021/26~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" - ], - "5.13.0-1025/30~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.13/linux-image-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb" - ], - "5.13.0-1026/32": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" - ], - "5.13.0-1028/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" - ], - "5.13.0-1029/36": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" - ], - "5.13.0-23/23~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb" - ], - "5.13.0-25/26~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" - ], - "5.13.0-27/29~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" - ], - "5.13.0-35/40~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" - ], - "5.13.0-39/44~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-hwe-5.13/linux-image-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-modules-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" - ], - "5.14.0-1004/4": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" - ], - "5.14.0-1005/5": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" - ], - "5.14.0-1018/19": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb" - ], - "5.14.0-1020/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb" - ], - "5.14.0-1027/30": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" - ], - "5.14.0-1031/34": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" - ], - "5.15.0-1003/5~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-modules-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-iotg-5.15/linux-image-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-modules-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-iotg-5.15/linux-image-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" - ], - "5.4.0-1005/6": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" - ], - "5.4.0-1006/7": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" - ], - "5.4.0-1007/8": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" - ], - "5.4.0-1008/9": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb" - ], - "5.4.0-1009/10": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" - ], - "5.4.0-1010/11": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb" - ], - "5.4.0-1011/11": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" - ], - "5.4.0-1011/12": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" - ], - "5.4.0-1012/12": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb" - ], - "5.4.0-1012/13": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" - ], - "5.4.0-1014/15": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb" - ], - "5.4.0-1015/15": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" - ], - "5.4.0-1016/16": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb" - ], - "5.4.0-1016/17": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" - ], - "5.4.0-1017/17": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" - ], - "5.4.0-1017/19": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" - ], - "5.4.0-1018/18": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" - ], - "5.4.0-1018/19": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" - ], - "5.4.0-1018/20": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" - ], - "5.4.0-1019/19": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" - ], - "5.4.0-1019/21": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-modules-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" - ], - "5.4.0-1020/20": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" - ], - "5.4.0-1021/21": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" - ], - "5.4.0-1021/22": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb" - ], - "5.4.0-1022/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" - ], - "5.4.0-1022/23": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb" - ], - "5.4.0-1023/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb" - ], - "5.4.0-1023/24": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" - ], - "5.4.0-1024/24": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" - ], - "5.4.0-1024/25": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" - ], - "5.4.0-1025/25": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb" - ], - "5.4.0-1025/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb" - ], - "5.4.0-1026/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" - ], - "5.4.0-1026/27": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" - ], - "5.4.0-1027/28": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" - ], - "5.4.0-1028/29": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" - ], - "5.4.0-1029/30": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb" - ], - "5.4.0-1029/31": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb" - ], - "5.4.0-1030/31": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb" - ], - "5.4.0-1031/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb" - ], - "5.4.0-1032/34": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" - ], - "5.4.0-1033/34": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" - ], - "5.4.0-1034/37": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" - ], - "5.4.0-1034/36": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" - ], - "5.4.0-1035/37": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" - ], - "5.4.0-1035/38": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" - ], - "5.4.0-1036/38": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb" - ], - "5.4.0-1036/39": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" - ], - "5.4.0-1036/37": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" - ], - "5.4.0-1037/39": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" - ], - "5.4.0-1037/40": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" - ], - "5.4.0-1037/38": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" - ], - "5.4.0-1038/40": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb" - ], - "5.4.0-1038/41": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb" - ], - "5.4.0-1038/39": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-modules-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb" - ], - "5.4.0-1039/41": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" - ], - "5.4.0-1039/42": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" - ], - "5.4.0-104/118": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb" - ], - "5.4.0-1040/42": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" - ], - "5.4.0-1040/43": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" - ], - "5.4.0-1040/41": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" - ], - "5.4.0-1041/43": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" - ], - "5.4.0-1041/44": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" - ], - "5.4.0-1041/42": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb" - ], - "5.4.0-1042/45": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" - ], - "5.4.0-1042/44": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" - ], - "5.4.0-1043/45": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb" - ], - "5.4.0-1043/46": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" - ], - "5.4.0-1044/46": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" - ], - "5.4.0-1044/47": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" - ], - "5.4.0-1045/47": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb" - ], - "5.4.0-1045/49": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" - ], - "5.4.0-1046/48": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb" - ], - "5.4.0-1046/49": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb" - ], - "5.4.0-1046/50": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb" - ], - "5.4.0-1047/49": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" - ], - "5.4.0-1048/50": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" - ], - "5.4.0-1048/52": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb" - ], - "5.4.0-1049/51": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb" - ], - "5.4.0-1049/53": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" - ], - "5.4.0-1049/52": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" - ], - "5.4.0-1051/53": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" - ], - "5.4.0-1051/55": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb" - ], - "5.4.0-1051/54": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" - ], - "5.4.0-1052/56": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb" - ], - "5.4.0-1052/55": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" - ], - "5.4.0-1053/57": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb" - ], - "5.4.0-1053/56": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb" - ], - "5.4.0-1053/55": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" - ], - "5.4.0-1054/57": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb" - ], - "5.4.0-1055/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" - ], - "5.4.0-1055/57": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" - ], - "5.4.0-1056/59": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" - ], - "5.4.0-1056/60": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb" - ], - "5.4.0-1057/60": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb" - ], - "5.4.0-1058/61": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb" - ], - "5.4.0-1058/60": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" - ], - "5.4.0-1059/63": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" - ], - "5.4.0-1060/64": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb" - ], - "5.4.0-1061/65": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" - ], - "5.4.0-1065/68": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" - ], - "5.4.0-1066/71": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" - ], - "5.4.0-1067/70": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-modules-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" - ], - "5.4.0-1067/70+cvm1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" - ], - "5.4.0-1067/71": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb" - ], - "5.4.0-1068/72": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" - ], - "5.4.0-1069/75": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" - ], - "5.4.0-1071/76": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" - ], - "5.4.0-1072/75": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" - ], - "5.4.0-1072/75+cvm1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" - ], - "5.4.0-28/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" - ], - "5.4.0-29/33": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-29-generic_5.4.0-29.33_amd64.deb" - ], - "5.4.0-31/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" - ], - "5.4.0-33/37": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" - ], - "5.4.0-37/41": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" - ], - "5.4.0-39/43": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" - ], - "5.4.0-40/44": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" - ], - "5.4.0-42/46": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-42-generic_5.4.0-42.46_amd64.deb" - ], - "5.4.0-45/49": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-45-generic_5.4.0-45.49_amd64.deb" - ], - "5.4.0-47/51": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb" - ], - "5.4.0-48/52": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" - ], - "5.4.0-51/56": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" - ], - "5.4.0-52/57": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" - ], - "5.4.0-53/59": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" - ], - "5.4.0-58/64": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb" - ], - "5.4.0-59/65": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb" - ], - "5.4.0-60/67": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-60-generic_5.4.0-60.67_amd64.deb" - ], - "5.4.0-62/70": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-62-generic_5.4.0-62.70_amd64.deb" - ], - "5.4.0-65/73": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-65-generic_5.4.0-65.73_amd64.deb" - ], - "5.4.0-66/74": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" - ], - "5.4.0-67/75": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb" - ], - "5.4.0-70/78": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb" - ], - "5.4.0-71/79": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" - ], - "5.4.0-72/80": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" - ], - "5.4.0-73/82": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" - ], - "5.4.0-74/83": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb" - ], - "5.4.0-77/86": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb" - ], - "5.4.0-80/90": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" - ], - "5.4.0-81/91": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb" - ], - "5.4.0-84/94": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb" - ], - "5.4.0-86/97": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-86-generic_5.4.0-86.97_amd64.deb" - ], - "5.4.0-88/99": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" - ], - "5.4.0-89/100": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" - ], - "5.4.0-90/101": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" - ], - "5.4.0-91/102": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-91-generic_5.4.0-91.102_amd64.deb" - ], - "5.4.0-92/103": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" - ], - "5.4.0-94/106": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb" - ], - "5.4.0-96/109": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb" - ], - "5.6.0-1008/8": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" - ], - "5.6.0-1010/10": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" - ], - "5.6.0-1011/11": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" - ], - "5.6.0-1013/13": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb" - ], - "5.6.0-1017/17": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb" - ], - "5.6.0-1018/18": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb" - ], - "5.6.0-1020/20": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb" - ], - "5.6.0-1023/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" - ], - "5.6.0-1026/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" - ], - "5.6.0-1028/28": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb" - ], - "5.6.0-1031/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb" - ], - "5.6.0-1032/33": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" - ], - "5.6.0-1033/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" - ], - "5.6.0-1039/43": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" - ], - "5.6.0-1042/46": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" - ], - "5.6.0-1047/51": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" - ], - "5.6.0-1048/52": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" - ], - "5.6.0-1050/54": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" - ], - "5.6.0-1052/56": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" - ], - "5.6.0-1053/57": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" - ], - "5.6.0-1054/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" - ], - "5.6.0-1055/59": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" - ], - "5.6.0-1056/60": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" - ], - "5.8.0-1031/32~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb" - ], - "5.8.0-1032/34~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" - ], - "5.8.0-1033/34~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" - ], - "5.8.0-1035/37~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" - ], - "5.8.0-1037/38~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb" - ], - "5.8.0-1038/40~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" - ], - "5.8.0-1038/39~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" - ], - "5.8.0-1039/42~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" - ], - "5.8.0-1039/41": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-modules-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb" - ], - "5.8.0-1040/43~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" - ], - "5.8.0-1041/43~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" - ], - "5.8.0-1041/44~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" - ], - "5.8.0-1042/44~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-modules-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" - ], - "5.8.0-1043/46~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" - ], - "5.8.0-33/36~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" - ], - "5.8.0-34/37~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" - ], - "5.8.0-36/40~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb" - ], - "5.8.0-38/43~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb" - ], - "5.8.0-41/46~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" - ], - "5.8.0-43/49~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb" - ], - "5.8.0-44/50~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" - ], - "5.8.0-45/51~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb" - ], - "5.8.0-48/54~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" - ], - "5.8.0-49/55~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb" - ], - "5.8.0-50/56~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" - ], - "5.8.0-53/60~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb" - ], - "5.8.0-55/62~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" - ], - "5.8.0-59/66~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" - ], - "5.8.0-63/71~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" - ], - "5.10.0-1011/12": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" - ], - "5.10.0-1032/33": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" - ], - "5.10.0-1034/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" - ], - "5.10.0-1052/54": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-modules-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" - ], - "5.11.0-1007/7~20.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.11/linux-image-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-modules-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" - ], - "5.11.0-1008/8~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle-5.11/linux-image-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-modules-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb" - ], - "5.11.0-1009/9~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-modules-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-image-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" - ], - "5.11.0-1009/10~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp-5.11/linux-image-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-modules-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" - ], - "5.13.0-1007/7": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-intel-5.13/linux-image-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-modules-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" - ], - "5.13.0-1013/15~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure-5.13/linux-image-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-modules-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" - ], - "5.13.0-1021/25": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-modules-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.13/linux-image-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" - ], - "5.14.0-1010/10": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oem-5.14/linux-image-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-modules-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" - ], - "5.4.0-1064/67+cvm1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" - ], - "5.4.0-1065/68+cvm2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" - ], - "5.4.0-1069/72+cvm1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" - ], - "5.4.0-1074/77+cvm1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-modules-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" - ], - "5.4.0-54/60": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" - ], - "5.4.0-64/72": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" - ], - "5.6.0-1021/21": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb" - ], - "5.6.0-1027/27": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" - ], - "5.6.0-1034/36": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" - ], - "5.6.0-1035/37": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" - ], - "5.6.0-1036/39": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" - ], - "5.8.0-1034/35~20.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-modules-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" - ], - "5.8.0-1042/45~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-modules-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" - ], - "5.8.0-23/24~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" - ], - "5.8.0-25/26~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb" - ], - "5.8.0-28/30~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" - ], - "5.8.0-29/31~20.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb" - ], - "5.8.0-40/45~20.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-modules-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb" - ], - "5.4.0-1009/9": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" - ], - "5.4.0-1010/10": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" - ], - "5.4.0-26/30": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb" - ], - "5.6.0-1007/7": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-modules-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb" - ], - "5.11.0-1020/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb" - ], - "5.11.0-1021/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb" - ], - "5.11.0-1022/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" - ], - "5.11.0-1024/27": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb" - ], - "5.11.0-1027/30": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb" - ], - "5.11.0-1028/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb" - ], - "5.11.0-49/55": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb" - ], - "5.11.0-1004/4": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" - ], - "5.11.0-1005/5": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" - ], - "5.11.0-1006/6": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" - ], - "5.11.0-16/17": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" - ], - "5.13.0-1005/5": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb" - ], - "5.13.0-1006/7": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb" - ], - "5.13.0-1006/6": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" - ], - "5.13.0-1007/8": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" - ], - "5.13.0-1008/9": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" - ], - "5.13.0-1010/12": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" - ], - "5.13.0-1011/12": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" - ], - "5.13.0-1012/13": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" - ], - "5.13.0-1013/14": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" - ], - "5.13.0-1013/16": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb" - ], - "5.13.0-1014/15": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" - ], - "5.13.0-1014/16": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" - ], - "5.13.0-1014/17": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb" - ], - "5.13.0-1015/18": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" - ], - "5.13.0-1017/18": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb" - ], - "5.13.0-1018/20": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" - ], - "5.13.0-1018/19": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" - ], - "5.13.0-1019/21": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb" - ], - "5.13.0-1019/20": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb" - ], - "5.13.0-1020/22": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb" - ], - "5.13.0-1021/22": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" - ], - "5.13.0-1022/24": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb" - ], - "5.13.0-1022/27": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" - ], - "5.13.0-1023/28": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb" - ], - "5.13.0-1024/29": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" - ], - "5.13.0-1026/31": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb" - ], - "5.13.0-28/31": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-28-generic_5.13.0-28.31_amd64.deb" - ], - "5.13.0-29/32": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-29-generic_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-29-generic_5.13.0-29.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-29-generic_5.13.0-29.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-29-generic_5.13.0-29.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb" - ], - "5.13.0-30/33": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-30-generic_5.13.0-30.33_amd64.deb" - ], - "5.13.0-32/35": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb" - ], - "5.13.0-36/41": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb" - ], - "5.13.0-37/42": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-37-generic_5.13.0-37.42_amd64.deb" - ], - "5.13.0-38/43": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb" - ], - "5.13.0-40/45": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb" - ], - "5.13.0-1009/11": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" - ], - "5.13.0-1011/13": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" - ], - "5.13.0-1012/14": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" - ], - "5.13.0-1012/15": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" - ], - "5.13.0-1015/19": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb" - ], - "5.13.0-1016/17": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb" - ], - "5.13.0-1017/19": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" - ], - "5.13.0-1020/21": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb" - ], - "5.13.0-1021/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-aws/linux-image-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb" - ], - "5.13.0-1021/24": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" - ], - "5.13.0-1021/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" - ], - "5.13.0-1025/30": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" - ], - "5.13.0-21/21": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-21-generic_5.13.0-21.21_amd64.deb" - ], - "5.13.0-22/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb" - ], - "5.13.0-23/23": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb" - ], - "5.13.0-25/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-25-generic_5.13.0-25.26_amd64.deb" - ], - "5.13.0-27/29": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-27-generic_5.13.0-27.29_amd64.deb" - ], - "5.13.0-35/40": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb" - ], - "5.13.0-39/44": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb" - ], - "5.13.0-1013/15": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-azure/linux-image-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb" - ], - "5.13.0-20/20": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" - ], - "5.13.0-1004/4": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-kvm/linux-image-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" - ], - "5.13.0-1005/6": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-gcp/linux-image-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb" - ], - "5.13.0-1008/10": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed-oracle/linux-image-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" - ], - "5.13.0-19/19": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-signed/linux-image-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb" - ], - "4.15.0-1043/47~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" - ], - "3.13.0-100/147": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" - ], - "3.13.0-101/148": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" - ], - "3.13.0-103/150": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" - ], - "3.13.0-105/152": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" - ], - "3.13.0-106/153": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb" - ], - "3.13.0-107/154": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb" - ], - "3.13.0-108/155": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-108-generic_3.13.0-108.155_amd64.deb" - ], - "3.13.0-109/156": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" - ], - "3.13.0-110/157": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" - ], - "3.13.0-112/159": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb" - ], - "3.13.0-115/162": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb" - ], - "3.13.0-116/163": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" - ], - "3.13.0-117/164": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb" - ], - "3.13.0-119/166": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" - ], - "3.13.0-121/170": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb" - ], - "3.13.0-123/172": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" - ], - "3.13.0-125/174": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb" - ], - "3.13.0-126/175": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-126-generic_3.13.0-126.175_amd64.deb" - ], - "3.13.0-128/177": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-128-generic_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-128-generic_3.13.0-128.177_amd64.deb" - ], - "3.13.0-129/178": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" - ], - "3.13.0-132/181": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-132-generic_3.13.0-132.181_amd64.deb" - ], - "3.13.0-133/182": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" - ], - "3.13.0-135/184": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb" - ], - "3.13.0-137/186": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" - ], - "3.13.0-139/188": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb" - ], - "3.13.0-141/190": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" - ], - "3.13.0-142/191": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-142-generic_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-142-generic_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" - ], - "3.13.0-143/192": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb" - ], - "3.13.0-144/193": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb" - ], - "3.13.0-147/196": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb" - ], - "3.13.0-149/199": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb" - ], - "3.13.0-151/201": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb" - ], - "3.13.0-153/203": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" - ], - "3.13.0-155/205": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-155-generic_3.13.0-155.205_amd64.deb" - ], - "3.13.0-156/206": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" - ], - "3.13.0-157/207": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb" - ], - "3.13.0-160/210": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-160-generic_3.13.0-160.210_amd64.deb" - ], - "3.13.0-161/211": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" - ], - "3.13.0-162/212": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-162-generic_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-162-generic_3.13.0-162.212_amd64.deb" - ], - "3.13.0-164/214": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" - ], - "3.13.0-165/215": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" - ], - "3.13.0-166/216": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb" - ], - "3.13.0-167/217": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" - ], - "3.13.0-168/218": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-168-generic_3.13.0-168.218_amd64.deb" - ], - "3.13.0-170/220": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb" - ], - "3.13.0-24/47": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb" - ], - "3.13.0-27/50": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-27-generic_3.13.0-27.50_amd64.deb" - ], - "3.13.0-29/53": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb" - ], - "3.13.0-30/55": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb" - ], - "3.13.0-32/57": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" - ], - "3.13.0-33/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-33-generic_3.13.0-33.58_amd64.deb" - ], - "3.13.0-34/60": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" - ], - "3.13.0-35/62": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb" - ], - "3.13.0-36/63": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb" - ], - "3.13.0-37/64": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb" - ], - "3.13.0-39/66": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-39-generic_3.13.0-39.66_amd64.deb" - ], - "3.13.0-40/69": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-40-generic_3.13.0-40.69_amd64.deb" - ], - "3.13.0-41/70": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" - ], - "3.13.0-43/72": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" - ], - "3.13.0-44/73": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" - ], - "3.13.0-46/79": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb" - ], - "3.13.0-48/80": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-48-generic_3.13.0-48.80_amd64.deb" - ], - "3.13.0-49/83": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" - ], - "3.13.0-51/84": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" - ], - "3.13.0-52/86": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb" - ], - "3.13.0-53/89": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-53-generic_3.13.0-53.89_amd64.deb" - ], - "3.13.0-54/91": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" - ], - "3.13.0-55/94": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-55-generic_3.13.0-55.94_amd64.deb" - ], - "3.13.0-57/95": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-57-generic_3.13.0-57.95_amd64.deb" - ], - "3.13.0-58/97": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" - ], - "3.13.0-59/98": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-59-generic_3.13.0-59.98_amd64.deb" - ], - "3.13.0-61/100": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb" - ], - "3.13.0-62/102": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-62-generic_3.13.0-62.102_amd64.deb" - ], - "3.13.0-63/103": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb" - ], - "3.13.0-65/106": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" - ], - "3.13.0-66/108": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" - ], - "3.13.0-67/110": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" - ], - "3.13.0-68/111": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-68-generic_3.13.0-68.111_amd64.deb" - ], - "3.13.0-70/113": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" - ], - "3.13.0-71/114": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb" - ], - "3.13.0-73/116": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb" - ], - "3.13.0-74/118": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-74-generic_3.13.0-74.118_amd64.deb" - ], - "3.13.0-76/120": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" - ], - "3.13.0-77/121": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb" - ], - "3.13.0-79/123": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" - ], - "3.13.0-83/127": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb" - ], - "3.13.0-85/129": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" - ], - "3.13.0-86/131": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb" - ], - "3.13.0-87/133": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb" - ], - "3.13.0-88/135": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" - ], - "3.13.0-91/138": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb" - ], - "3.13.0-92/139": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-92-generic_3.13.0-92.139_amd64.deb" - ], - "3.13.0-93/140": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb" - ], - "3.13.0-95/142": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" - ], - "3.13.0-96/143": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb" - ], - "3.13.0-98/145": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb" - ], - "3.16.0-25/33~14.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb" - ], - "3.16.0-26/35~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb" - ], - "3.16.0-28/38~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" - ], - "3.16.0-29/39~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" - ], - "3.16.0-31/43~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" - ], - "3.16.0-33/44~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" - ], - "3.16.0-34/47~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb" - ], - "3.16.0-36/48~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb" - ], - "3.16.0-37/51~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb" - ], - "3.16.0-38/52~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" - ], - "3.16.0-39/53~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" - ], - "3.16.0-41/57~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb" - ], - "3.16.0-43/58~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb" - ], - "3.16.0-44/59~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" - ], - "3.16.0-45/60~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb" - ], - "3.16.0-46/62~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb" - ], - "3.16.0-48/64~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb" - ], - "3.16.0-49/65~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb" - ], - "3.16.0-50/67~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb" - ], - "3.16.0-51/69~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb" - ], - "3.16.0-52/71~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb" - ], - "3.16.0-53/72~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb" - ], - "3.16.0-55/74~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" - ], - "3.16.0-56/75~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" - ], - "3.16.0-57/77~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" - ], - "3.16.0-59/79~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb" - ], - "3.16.0-60/80~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb" - ], - "3.16.0-62/83~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb" - ], - "3.16.0-67/87~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb" - ], - "3.16.0-69/89~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb" - ], - "3.16.0-70/90~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" - ], - "3.16.0-71/92~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb" - ], - "3.16.0-73/95~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb" - ], - "3.16.0-76/98~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb" - ], - "3.16.0-77/99~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" - ], - "3.19.0-20/20~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" - ], - "3.19.0-21/21~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb" - ], - "3.19.0-22/22~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb" - ], - "3.19.0-23/24~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb" - ], - "3.19.0-25/26~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" - ], - "3.19.0-26/28~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" - ], - "3.19.0-28/30~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb" - ], - "3.19.0-30/34~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" - ], - "3.19.0-31/36~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" - ], - "3.19.0-32/37~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb" - ], - "3.19.0-33/38~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb" - ], - "3.19.0-37/42~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" - ], - "3.19.0-39/44~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb" - ], - "3.19.0-41/46~14.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" - ], - "3.19.0-42/48~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" - ], - "3.19.0-43/49~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" - ], - "3.19.0-47/53~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" - ], - "3.19.0-49/55~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" - ], - "3.19.0-51/58~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb" - ], - "3.19.0-56/62~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" - ], - "3.19.0-58/64~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb" - ], - "3.19.0-59/66~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" - ], - "3.19.0-61/69~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" - ], - "3.19.0-64/72~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb" - ], - "3.19.0-65/73~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" - ], - "3.19.0-66/74~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" - ], - "3.19.0-68/76~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" - ], - "3.19.0-69/77~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" - ], - "3.19.0-71/79~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb" - ], - "3.19.0-73/81~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb" - ], - "3.19.0-74/82~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" - ], - "3.19.0-75/83~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" - ], - "3.19.0-77/85~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" - ], - "3.19.0-78/86~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb" - ], - "3.19.0-79/87~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" - ], - "3.19.0-80/88~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb" - ], - "4.15.0-1023/24~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb" - ], - "4.15.0-1031/32~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" - ], - "4.15.0-1032/33~14.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb" - ], - "4.15.0-1035/36~14.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" - ], - "4.15.0-1036/38~14.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" - ], - "4.15.0-1037/39~14.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" - ], - "4.15.0-1039/41~14.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" - ], - "4.15.0-1040/44~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" - ], - "4.15.0-1041/45~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" - ], - "4.15.0-1045/49~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" - ], - "4.2.0-18/22~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb" - ], - "4.2.0-19/23~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" - ], - "4.2.0-21/25~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" - ], - "4.2.0-22/27~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" - ], - "4.2.0-23/28~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" - ], - "4.2.0-25/30~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb" - ], - "4.2.0-27/32~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb" - ], - "4.2.0-30/36~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" - ], - "4.2.0-34/39~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb" - ], - "4.2.0-35/40~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" - ], - "4.2.0-36/42~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" - ], - "4.2.0-38/45~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" - ], - "4.2.0-41/48~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" - ], - "4.2.0-42/49~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb" - ], - "4.4.0-101/124~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" - ], - "4.4.0-103/126~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb" - ], - "4.4.0-104/127~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb" - ], - "4.4.0-108/131~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" - ], - "4.4.0-109/132~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" - ], - "4.4.0-111/134~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb" - ], - "4.4.0-112/135~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" - ], - "4.4.0-116/140~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" - ], - "4.4.0-119/143~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb" - ], - "4.4.0-121/145~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" - ], - "4.4.0-124/148~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb" - ], - "4.4.0-127/153~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" - ], - "4.4.0-128/154~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb" - ], - "4.4.0-130/156~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb" - ], - "4.4.0-133/159~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" - ], - "4.4.0-134/160~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb" - ], - "4.4.0-137/163~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb" - ], - "4.4.0-138/164~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb" - ], - "4.4.0-139/165~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" - ], - "4.4.0-141/167~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb" - ], - "4.4.0-142/168~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb" - ], - "4.4.0-143/169~14.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb" - ], - "4.4.0-144/170~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" - ], - "4.4.0-148/174~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb" - ], - "4.4.0-21/37~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" - ], - "4.4.0-22/40~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" - ], - "4.4.0-24/43~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" - ], - "4.4.0-28/47~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb" - ], - "4.4.0-31/50~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb" - ], - "4.4.0-34/53~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" - ], - "4.4.0-36/55~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" - ], - "4.4.0-38/57~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" - ], - "4.4.0-42/62~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" - ], - "4.4.0-45/66~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb" - ], - "4.4.0-47/68~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb" - ], - "4.4.0-51/72~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" - ], - "4.4.0-53/74~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" - ], - "4.4.0-57/78~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb" - ], - "4.4.0-59/80~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb" - ], - "4.4.0-62/83~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" - ], - "4.4.0-63/84~14.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb" - ], - "4.4.0-64/85~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" - ], - "4.4.0-66/87~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb" - ], - "4.4.0-67/88~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" - ], - "4.4.0-70/91~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb" - ], - "4.4.0-71/92~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb" - ], - "4.4.0-72/93~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" - ], - "4.4.0-75/96~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" - ], - "4.4.0-78/99~14.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb" - ], - "4.4.0-79/100~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" - ], - "4.4.0-81/104~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb" - ], - "4.4.0-83/106~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb" - ], - "4.4.0-87/110~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" - ], - "4.4.0-89/112~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" - ], - "4.4.0-91/114~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb" - ], - "4.4.0-92/115~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" - ], - "4.4.0-93/116~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb" - ], - "4.4.0-96/119~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" - ], - "4.4.0-97/120~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb" - ], - "4.4.0-98/121~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" - ], - "3.13.0-113/160": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" - ], - "3.13.0-145/194": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" - ], - "3.13.0-158/208": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb" - ], - "3.13.0-163/213": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" - ], - "3.13.0-169/219": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb" - ], - "3.13.0-45/74": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-45-generic_3.13.0-45.74_amd64.deb" - ], - "3.16.0-30/40~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb" - ], - "3.16.0-40/54~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" - ], - "3.19.0-18/18~14.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-image-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" - ], - "4.15.0-1030/31~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" - ], - "4.15.0-1042/46~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb" - ], - "4.4.0-131/157~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb" - ], - "4.4.0-135/161~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" - ], - "4.4.0-140/166~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-image-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb" - ], - "4.4.0-146/172~14.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-modules-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" - ], - "3.13.0-24/46": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb" - ], - "4.15.0-1066/74~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb" - ], - "4.15.0-1067/75~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb" - ], - "4.15.0-1095/102~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" - ], - "4.15.0-1095/108~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb" - ], - "4.15.0-1096/103~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb" - ], - "4.15.0-1110/122~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" - ], - "4.4.0-1125/139": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" - ], - "4.4.0-206/238": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" - ], - "4.4.0-207/239": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb" - ], - "4.10.0-14/16~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb" - ], - "4.10.0-19/21~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" - ], - "4.10.0-20/22~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb" - ], - "4.10.0-21/23~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb" - ], - "4.10.0-22/24~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" - ], - "4.10.0-24/28~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" - ], - "4.10.0-26/30~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb" - ], - "4.10.0-27/30~16.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb" - ], - "4.10.0-28/32~16.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb" - ], - "4.10.0-30/34~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" - ], - "4.10.0-32/36~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb" - ], - "4.10.0-33/37~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb" - ], - "4.10.0-35/39~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb" - ], - "4.10.0-37/41~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" - ], - "4.10.0-38/42~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb" - ], - "4.10.0-40/44~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" - ], - "4.10.0-42/46~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb" - ], - "4.11.0-1015/15": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb" - ], - "4.11.0-1016/16": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" - ], - "4.11.0-13/19~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" - ], - "4.11.0-14/20~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb" - ], - "4.13.0-1005/7": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" - ], - "4.13.0-1006/8": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" - ], - "4.13.0-1007/9": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" - ], - "4.13.0-1011/14": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb" - ], - "4.13.0-1014/17": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" - ], - "4.13.0-1016/19": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" - ], - "4.13.0-1018/21": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb" - ], - "4.13.0-16/19~16.04.3": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb" - ], - "4.13.0-17/20~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" - ], - "4.13.0-19/22~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" - ], - "4.13.0-21/24~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" - ], - "4.13.0-25/29~16.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" - ], - "4.13.0-26/29~16.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" - ], - "4.13.0-31/34~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb" - ], - "4.13.0-32/35~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb" - ], - "4.13.0-36/40~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" - ], - "4.13.0-37/42~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb" - ], - "4.13.0-38/43~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb" - ], - "4.13.0-39/44~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" - ], - "4.13.0-41/46~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb" - ], - "4.13.0-43/48~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" - ], - "4.13.0-45/50~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" - ], - "4.15.0-1008/10~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb" - ], - "4.15.0-1009/11~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb" - ], - "4.15.0-101/102~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" - ], - "4.15.0-1010/12~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" - ], - "4.15.0-1013/13~16.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb" - ], - "4.15.0-1013/15~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" - ], - "4.15.0-1014/14~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" - ], - "4.15.0-1014/16~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb" - ], - "4.15.0-1015/17~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb" - ], - "4.15.0-1017/18~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" - ], - "4.15.0-1017/19~16.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" - ], - "4.15.0-1018/18~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb" - ], - "4.15.0-1018/19~16.04.2": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb" - ], - "4.15.0-1018/20~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" - ], - "4.15.0-1019/19~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" - ], - "4.15.0-1019/20~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" - ], - "4.15.0-1021/21~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb" - ], - "4.15.0-1021/22~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb" - ], - "4.15.0-1021/23~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" - ], - "4.15.0-1022/22~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" - ], - "4.15.0-1022/25~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" - ], - "4.15.0-1023/24~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" - ], - "4.15.0-1023/26~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb" - ], - "4.15.0-1024/25~16.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb" - ], - "4.15.0-1025/26~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" - ], - "4.15.0-1025/28~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" - ], - "4.15.0-1026/27~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb" - ], - "4.15.0-1026/29~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" - ], - "4.15.0-1027/28~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" - ], - "4.15.0-1027/30~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" - ], - "4.15.0-1028/29~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" - ], - "4.15.0-1029/31~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" - ], - "4.15.0-1029/32~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" - ], - "4.15.0-1030/33~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" - ], - "4.15.0-1031/32~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" - ], - "4.15.0-1031/34~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" - ], - "4.15.0-1032/33~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" - ], - "4.15.0-1032/34~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb" - ], - "4.15.0-1033/35~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" - ], - "4.15.0-1033/36~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" - ], - "4.15.0-1034/36~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" - ], - "4.15.0-1035/36~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" - ], - "4.15.0-1035/38~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" - ], - "4.15.0-1036/38~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" - ], - "4.15.0-1037/39~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" - ], - "4.15.0-1037/41~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" - ], - "4.15.0-1038/42~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" - ], - "4.15.0-1039/43~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" - ], - "4.15.0-1040/44": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb" - ], - "4.15.0-1040/42~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb" - ], - "4.15.0-1041/45": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb" - ], - "4.15.0-1045/49~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" - ], - "4.15.0-1046/50": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" - ], - "4.15.0-1046/50~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" - ], - "4.15.0-1047/50": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb" - ], - "4.15.0-1049/54": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" - ], - "4.15.0-1050/55": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" - ], - "4.15.0-1050/54~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" - ], - "4.15.0-1051/56": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" - ], - "4.15.0-1051/55~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb" - ], - "4.15.0-1052/57": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" - ], - "4.15.0-1052/56": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" - ], - "4.15.0-1053/57~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" - ], - "4.15.0-1054/58~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" - ], - "4.15.0-1055/60": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" - ], - "4.15.0-1055/59": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" - ], - "4.15.0-1056/61": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" - ], - "4.15.0-1056/61~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb" - ], - "4.15.0-1058/62": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" - ], - "4.15.0-1058/64~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" - ], - "4.15.0-1059/64": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" - ], - "4.15.0-106/107~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb" - ], - "4.15.0-1060/65": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" - ], - "4.15.0-1060/64": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" - ], - "4.15.0-1061/66": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" - ], - "4.15.0-1061/65": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb" - ], - "4.15.0-1061/67~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" - ], - "4.15.0-1062/68~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" - ], - "4.15.0-1063/68": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb" - ], - "4.15.0-1064/69": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" - ], - "4.15.0-1064/71~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb" - ], - "4.15.0-1065/73~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" - ], - "4.15.0-1066/71": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" - ], - "4.15.0-1067/72": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" - ], - "4.15.0-1068/76~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" - ], - "4.15.0-1069/74": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb" - ], - "4.15.0-1069/77~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb" - ], - "4.15.0-107/108~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb" - ], - "4.15.0-1070/78~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb" - ], - "4.15.0-1071/76": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb" - ], - "4.15.0-1071/81~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" - ], - "4.15.0-1075/80": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" - ], - "4.15.0-1077/87~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb" - ], - "4.15.0-1078/88~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb" - ], - "4.15.0-1080/90~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb" - ], - "4.15.0-1081/92~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb" - ], - "4.15.0-1082/92~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb" - ], - "4.15.0-1083/93~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb" - ], - "4.15.0-1083/94~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb" - ], - "4.15.0-1084/95~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" - ], - "4.15.0-1086/98~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" - ], - "4.15.0-1087/100~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb" - ], - "4.15.0-1089/99~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb" - ], - "4.15.0-1090/103~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb" - ], - "4.15.0-1091/101~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" - ], - "4.15.0-1091/104~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" - ], - "4.15.0-1092/102~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" - ], - "4.15.0-1092/105~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" - ], - "4.15.0-1093/99~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" - ], - "4.15.0-1093/103~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb" - ], - "4.15.0-1093/106~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" - ], - "4.15.0-1094/101~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" - ], - "4.15.0-1094/107~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" - ], - "4.15.0-1095/105~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" - ], - "4.15.0-1096/106~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" - ], - "4.15.0-1096/109~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" - ], - "4.15.0-1097/104~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" - ], - "4.15.0-1097/110~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" - ], - "4.15.0-1098/105~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb" - ], - "4.15.0-1098/109~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" - ], - "4.15.0-1098/111~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" - ], - "4.15.0-1099/106~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-modules-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" - ], - "4.15.0-1102/113~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" - ], - "4.15.0-1103/114~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" - ], - "4.15.0-1106/118~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb" - ], - "4.15.0-1108/120~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" - ], - "4.15.0-1109/121~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" - ], - "4.15.0-1111/123~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" - ], - "4.15.0-1112/124~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" - ], - "4.15.0-1113/126~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb" - ], - "4.15.0-112/113~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb" - ], - "4.15.0-115/116~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" - ], - "4.15.0-117/118~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" - ], - "4.15.0-118/119~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb" - ], - "4.15.0-120/122~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" - ], - "4.15.0-122/124~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" - ], - "4.15.0-123/126~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" - ], - "4.15.0-128/131~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" - ], - "4.15.0-129/132~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb" - ], - "4.15.0-13/14~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb" - ], - "4.15.0-132/136~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" - ], - "4.15.0-133/137~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb" - ], - "4.15.0-136/140~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb" - ], - "4.15.0-137/141~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" - ], - "4.15.0-139/143~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" - ], - "4.15.0-140/144~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" - ], - "4.15.0-142/146~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" - ], - "4.15.0-15/16~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" - ], - "4.15.0-20/21~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" - ], - "4.15.0-22/24~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb" - ], - "4.15.0-23/25~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-modules-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" - ], - "4.15.0-24/26~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb" - ], - "4.15.0-29/31~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" - ], - "4.15.0-30/32~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb" - ], - "4.15.0-32/35~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb" - ], - "4.15.0-33/36~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" - ], - "4.15.0-34/37~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb" - ], - "4.15.0-36/39~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb" - ], - "4.15.0-39/42~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb" - ], - "4.15.0-42/45~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" - ], - "4.15.0-43/46~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb" - ], - "4.15.0-45/48~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb" - ], - "4.15.0-46/49~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" - ], - "4.15.0-47/50~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" - ], - "4.15.0-50/54~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" - ], - "4.15.0-51/55~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb" - ], - "4.15.0-52/56~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb" - ], - "4.15.0-54/58~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" - ], - "4.15.0-55/60~16.04.2": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" - ], - "4.15.0-58/64~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb" - ], - "4.15.0-60/67~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" - ], - "4.15.0-62/69~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" - ], - "4.15.0-64/73~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb" - ], - "4.15.0-65/74~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" - ], - "4.15.0-66/75~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" - ], - "4.15.0-69/78~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb" - ], - "4.15.0-70/79~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" - ], - "4.15.0-72/81~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb" - ], - "4.15.0-74/83~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb" - ], - "4.15.0-76/86~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" - ], - "4.15.0-88/88~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" - ], - "4.15.0-91/92~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" - ], - "4.15.0-96/97~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb" - ], - "4.15.0-99/100~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" - ], - "4.4.0-1007/12": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" - ], - "4.4.0-1008/13": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" - ], - "4.4.0-1009/14": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" - ], - "4.4.0-101/124": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" - ], - "4.4.0-1010/15": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" - ], - "4.4.0-1012/17": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" - ], - "4.4.0-1013/22": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" - ], - "4.4.0-1013/18": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" - ], - "4.4.0-1015/20": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" - ], - "4.4.0-1016/25": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" - ], - "4.4.0-1017/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" - ], - "4.4.0-1017/22": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" - ], - "4.4.0-1018/27": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb" - ], - "4.4.0-1019/24": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb" - ], - "4.4.0-1020/29": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" - ], - "4.4.0-1020/25": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb" - ], - "4.4.0-1021/26": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb" - ], - "4.4.0-1022/31": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb" - ], - "4.4.0-1023/28": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" - ], - "4.4.0-1026/35": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" - ], - "4.4.0-1026/31": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb" - ], - "4.4.0-1027/32": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" - ], - "4.4.0-1028/37": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb" - ], - "4.4.0-1029/34": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" - ], - "4.4.0-103/126": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-103-generic_4.4.0-103.126_amd64.deb" - ], - "4.4.0-1030/39": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" - ], - "4.4.0-1031/40": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" - ], - "4.4.0-1031/37": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" - ], - "4.4.0-1032/41": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb" - ], - "4.4.0-1032/38": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb" - ], - "4.4.0-1035/44": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb" - ], - "4.4.0-1035/41": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" - ], - "4.4.0-1036/42": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" - ], - "4.4.0-1037/43": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb" - ], - "4.4.0-1038/47": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" - ], - "4.4.0-1039/48": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb" - ], - "4.4.0-1039/45": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" - ], - "4.4.0-104/127": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" - ], - "4.4.0-1040/46": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" - ], - "4.4.0-1041/50": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" - ], - "4.4.0-1041/47": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb" - ], - "4.4.0-1043/52": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" - ], - "4.4.0-1043/49": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" - ], - "4.4.0-1044/53": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" - ], - "4.4.0-1046/52": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb" - ], - "4.4.0-1047/56": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" - ], - "4.4.0-1047/53": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" - ], - "4.4.0-1048/57": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb" - ], - "4.4.0-1048/55": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb" - ], - "4.4.0-1049/58": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" - ], - "4.4.0-1051/58": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" - ], - "4.4.0-1052/61": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" - ], - "4.4.0-1052/59": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" - ], - "4.4.0-1054/63": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" - ], - "4.4.0-1054/61": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb" - ], - "4.4.0-1055/64": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" - ], - "4.4.0-1056/63": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb" - ], - "4.4.0-1057/66": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb" - ], - "4.4.0-1058/65": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" - ], - "4.4.0-1059/66": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb" - ], - "4.4.0-1060/69": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb" - ], - "4.4.0-1060/67": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb" - ], - "4.4.0-1061/70": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" - ], - "4.4.0-1062/71": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" - ], - "4.4.0-1062/69": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" - ], - "4.4.0-1063/70": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" - ], - "4.4.0-1064/71": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" - ], - "4.4.0-1065/75": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb" - ], - "4.4.0-1065/72": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb" - ], - "4.4.0-1066/76": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb" - ], - "4.4.0-1066/73": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb" - ], - "4.4.0-1068/75": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" - ], - "4.4.0-1069/79": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb" - ], - "4.4.0-1069/76": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" - ], - "4.4.0-1070/80": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" - ], - "4.4.0-1070/77": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb" - ], - "4.4.0-1071/78": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb" - ], - "4.4.0-1072/82": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" - ], - "4.4.0-1074/84": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" - ], - "4.4.0-1075/85": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb" - ], - "4.4.0-1075/82": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" - ], - "4.4.0-1076/83": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb" - ], - "4.4.0-1077/87": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" - ], - "4.4.0-1077/84": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb" - ], - "4.4.0-1078/85": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb" - ], - "4.4.0-1079/89": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" - ], - "4.4.0-1079/86": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" - ], - "4.4.0-108/131": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" - ], - "4.4.0-1080/87": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" - ], - "4.4.0-1082/91": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" - ], - "4.4.0-1083/93": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" - ], - "4.4.0-1084/94": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" - ], - "4.4.0-1084/93": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" - ], - "4.4.0-1085/96": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" - ], - "4.4.0-1085/94": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" - ], - "4.4.0-1087/98": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb" - ], - "4.4.0-1087/96": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" - ], - "4.4.0-1088/99": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb" - ], - "4.4.0-1088/97": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb" - ], - "4.4.0-1089/98": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" - ], - "4.4.0-109/132": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb" - ], - "4.4.0-1090/101": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb" - ], - "4.4.0-1090/99": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" - ], - "4.4.0-1091/100": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" - ], - "4.4.0-1092/103": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" - ], - "4.4.0-1092/101": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" - ], - "4.4.0-1093/102": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" - ], - "4.4.0-1094/105": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" - ], - "4.4.0-1095/106": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" - ], - "4.4.0-1096/107": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb" - ], - "4.4.0-1098/109": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" - ], - "4.4.0-1099/110": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" - ], - "4.4.0-1100/111": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" - ], - "4.4.0-1101/112": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" - ], - "4.4.0-1102/113": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" - ], - "4.4.0-1104/115": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" - ], - "4.4.0-1105/116": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" - ], - "4.4.0-1106/117": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb" - ], - "4.4.0-1107/118": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" - ], - "4.4.0-1109/120": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" - ], - "4.4.0-1110/121": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb" - ], - "4.4.0-1111/123": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" - ], - "4.4.0-1112/124": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" - ], - "4.4.0-1113/126": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" - ], - "4.4.0-1114/127": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" - ], - "4.4.0-1117/131": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb" - ], - "4.4.0-1118/132": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" - ], - "4.4.0-1119/133": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb" - ], - "4.4.0-112/135": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb" - ], - "4.4.0-1121/135": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb" - ], - "4.4.0-1122/136": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" - ], - "4.4.0-1123/137": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb" - ], - "4.4.0-1124/138": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" - ], - "4.4.0-1126/140": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" - ], - "4.4.0-1127/141": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" - ], - "4.4.0-1128/142": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb" - ], - "4.4.0-116/140": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" - ], - "4.4.0-119/143": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" - ], - "4.4.0-121/145": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb" - ], - "4.4.0-124/148": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb" - ], - "4.4.0-127/153": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" - ], - "4.4.0-128/154": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" - ], - "4.4.0-130/156": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" - ], - "4.4.0-133/159": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" - ], - "4.4.0-134/160": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb" - ], - "4.4.0-137/163": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb" - ], - "4.4.0-138/164": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" - ], - "4.4.0-139/165": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" - ], - "4.4.0-141/167": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb" - ], - "4.4.0-142/168": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb" - ], - "4.4.0-143/169": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" - ], - "4.4.0-145/171": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb" - ], - "4.4.0-148/174": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" - ], - "4.4.0-150/176": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb" - ], - "4.4.0-151/178": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb" - ], - "4.4.0-154/181": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb" - ], - "4.4.0-157/185": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb" - ], - "4.4.0-159/187": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-159-generic_4.4.0-159.187_amd64.deb" - ], - "4.4.0-161/189": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" - ], - "4.4.0-164/192": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb" - ], - "4.4.0-165/193": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb" - ], - "4.4.0-166/195": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" - ], - "4.4.0-168/197": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb" - ], - "4.4.0-169/198": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" - ], - "4.4.0-170/199": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb" - ], - "4.4.0-171/200": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-171-generic_4.4.0-171.200_amd64.deb" - ], - "4.4.0-173/203": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb" - ], - "4.4.0-174/204": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-174-generic_4.4.0-174.204_amd64.deb" - ], - "4.4.0-176/206": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb" - ], - "4.4.0-177/207": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" - ], - "4.4.0-178/208": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb" - ], - "4.4.0-179/209": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" - ], - "4.4.0-184/214": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" - ], - "4.4.0-185/215": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb" - ], - "4.4.0-186/216": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" - ], - "4.4.0-187/217": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb" - ], - "4.4.0-189/219": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb" - ], - "4.4.0-190/220": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" - ], - "4.4.0-193/224": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb" - ], - "4.4.0-194/226": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-194-generic_4.4.0-194.226_amd64.deb" - ], - "4.4.0-197/229": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" - ], - "4.4.0-198/230": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" - ], - "4.4.0-200/232": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb" - ], - "4.4.0-201/233": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-201-generic_4.4.0-201.233_amd64.deb" - ], - "4.4.0-203/235": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" - ], - "4.4.0-204/236": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" - ], - "4.4.0-208/240": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb" - ], - "4.4.0-209/241": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" - ], - "4.4.0-210/242": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-210-generic_4.4.0-210.242_amd64.deb" - ], - "4.4.0-22/40": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb" - ], - "4.4.0-24/43": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb" - ], - "4.4.0-28/47": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb" - ], - "4.4.0-31/50": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb" - ], - "4.4.0-34/53": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" - ], - "4.4.0-36/55": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" - ], - "4.4.0-38/57": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb" - ], - "4.4.0-42/62": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb" - ], - "4.4.0-45/66": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-45-generic_4.4.0-45.66_amd64.deb" - ], - "4.4.0-47/68": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" - ], - "4.4.0-51/72": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb" - ], - "4.4.0-53/74": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" - ], - "4.4.0-57/78": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb" - ], - "4.4.0-59/80": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb" - ], - "4.4.0-62/83": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-62-generic_4.4.0-62.83_amd64.deb" - ], - "4.4.0-63/84": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb" - ], - "4.4.0-64/85": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb" - ], - "4.4.0-66/87": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" - ], - "4.4.0-67/88": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-67-generic_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-67-generic_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb" - ], - "4.4.0-70/91": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb" - ], - "4.4.0-71/92": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" - ], - "4.4.0-72/93": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" - ], - "4.4.0-75/96": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb" - ], - "4.4.0-78/99": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb" - ], - "4.4.0-79/100": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-79-generic_4.4.0-79.100_amd64.deb" - ], - "4.4.0-81/104": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" - ], - "4.4.0-83/106": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-83-generic_4.4.0-83.106_amd64.deb" - ], - "4.4.0-87/110": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-87-generic_4.4.0-87.110_amd64.deb" - ], - "4.4.0-89/112": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb" - ], - "4.4.0-91/114": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-91-generic_4.4.0-91.114_amd64.deb" - ], - "4.4.0-92/115": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb" - ], - "4.4.0-93/116": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb" - ], - "4.4.0-96/119": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-96-generic_4.4.0-96.119_amd64.deb" - ], - "4.4.0-97/120": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-97-generic_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-97-generic_4.4.0-97.120_amd64.deb" - ], - "4.4.0-98/121": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb" - ], - "4.8.0-34/36~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-image-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" - ], - "4.8.0-36/36~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" - ], - "4.8.0-39/42~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" - ], - "4.8.0-41/44~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb" - ], - "4.8.0-45/48~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" - ], - "4.8.0-46/49~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" - ], - "4.8.0-49/52~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb" - ], - "4.8.0-52/55~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb" - ], - "4.8.0-54/57~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb" - ], - "4.8.0-56/61~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb" - ], - "4.8.0-58/63~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" - ], - "4.11.0-1009/9": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb" - ], - "4.11.0-1011/11": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" - ], - "4.11.0-1013/13": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb" - ], - "4.11.0-1014/14": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" - ], - "4.13.0-1009/12": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" - ], - "4.13.0-1012/15": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-image-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb" - ], - "4.15.0-1007/9~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" - ], - "4.15.0-1011/13~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-modules-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb" - ], - "4.15.0-1030/31~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb" - ], - "4.15.0-1030/32~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-modules-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" - ], - "4.15.0-1042/46": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-modules-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" - ], - "4.15.0-38/41~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb" - ], - "4.15.0-48/51~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-modules-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb" - ], - "4.4.0-1033/39": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb" - ], - "4.4.0-1037/46": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" - ], - "4.4.0-1038/44": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-image-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb" - ], - "4.4.0-1044/50": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-modules-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" - ], - "4.4.0-1050/59": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" - ], - "4.4.0-1063/72": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" - ], - "4.4.0-1067/77": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" - ], - "4.4.0-1073/83": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-image-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" - ], - "4.4.0-1081/91": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-modules-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" - ], - "4.4.0-122/146": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" - ], - "4.4.0-131/157": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb" - ], - "4.4.0-135/161": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-135-generic_4.4.0-135.161_amd64.deb" - ], - "4.4.0-140/166": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" - ], - "4.4.0-146/172": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-modules-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-modules-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" - ], - "4.4.0-43/63": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-43-generic_4.4.0-43.63_amd64.deb" - ], - "4.4.0-77/98": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb" - ], - "4.8.0-42/45~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb" - ], - "4.8.0-44/47~16.04.1": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb" - ], - "4.8.0-51/54~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" - ], - "4.8.0-53/56~16.04.1": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-image-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" - ], - "4.4.0-21/37": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb" - ] - }, - "Flatcar": { - "1688.5.3": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1688.5.3/flatcar_developer_container.bin.bz2" - ], - "1745.3.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.3.1/flatcar_developer_container.bin.bz2" - ], - "1745.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.4.0/flatcar_developer_container.bin.bz2" - ], - "1745.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.5.0/flatcar_developer_container.bin.bz2" - ], - "1745.6.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.6.0/flatcar_developer_container.bin.bz2" - ], - "1745.7.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.7.0/flatcar_developer_container.bin.bz2" - ], - "1800.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1800.4.0/flatcar_developer_container.bin.bz2" - ], - "1800.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1800.5.0/flatcar_developer_container.bin.bz2" - ], - "1800.6.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1800.6.0/flatcar_developer_container.bin.bz2" - ], - "1800.7.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1800.7.0/flatcar_developer_container.bin.bz2" - ], - "1855.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1855.4.0/flatcar_developer_container.bin.bz2" - ], - "1855.4.2": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1855.4.2/flatcar_developer_container.bin.bz2" - ], - "1855.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1855.5.0/flatcar_developer_container.bin.bz2" - ], - "1911.3.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1911.3.0/flatcar_developer_container.bin.bz2" - ], - "1911.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1911.4.0/flatcar_developer_container.bin.bz2" - ], - "1911.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1911.5.0/flatcar_developer_container.bin.bz2" - ], - "1967.3.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.3.0/flatcar_developer_container.bin.bz2" - ], - "1967.3.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.3.1/flatcar_developer_container.bin.bz2" - ], - "1967.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.4.0/flatcar_developer_container.bin.bz2" - ], - "1967.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.5.0/flatcar_developer_container.bin.bz2" - ], - "1967.6.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.6.0/flatcar_developer_container.bin.bz2" - ], - "2023.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2023.4.0/flatcar_developer_container.bin.bz2" - ], - "2023.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2023.5.0/flatcar_developer_container.bin.bz2" - ], - "2079.3.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.0/flatcar_developer_container.bin.bz2" - ], - "2079.3.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.1/flatcar_developer_container.bin.bz2" - ], - "2079.3.2": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.2/flatcar_developer_container.bin.bz2" - ], - "2079.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.4.0/flatcar_developer_container.bin.bz2" - ], - "2079.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.5.0/flatcar_developer_container.bin.bz2" - ], - "2079.6.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.6.0/flatcar_developer_container.bin.bz2" - ], - "2135.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2135.4.0/flatcar_developer_container.bin.bz2" - ], - "2135.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2135.5.0/flatcar_developer_container.bin.bz2" - ], - "2135.6.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2135.6.0/flatcar_developer_container.bin.bz2" - ], - "2191.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2191.4.0/flatcar_developer_container.bin.bz2" - ], - "2191.4.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2191.4.1/flatcar_developer_container.bin.bz2" - ], - "2191.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2191.5.0/flatcar_developer_container.bin.bz2" - ], - "2247.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2247.5.0/flatcar_developer_container.bin.bz2" - ], - "2247.6.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2247.6.0/flatcar_developer_container.bin.bz2" - ], - "2247.7.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2247.7.0/flatcar_developer_container.bin.bz2" - ], - "2303.3.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2303.3.0/flatcar_developer_container.bin.bz2" - ], - "2303.3.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2303.3.1/flatcar_developer_container.bin.bz2" - ], - "2303.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2303.4.0/flatcar_developer_container.bin.bz2" - ], - "2345.3.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2345.3.0/flatcar_developer_container.bin.bz2" - ], - "2345.3.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2345.3.1/flatcar_developer_container.bin.bz2" - ], - "2512.2.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.2.0/flatcar_developer_container.bin.bz2" - ], - "2512.2.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.2.1/flatcar_developer_container.bin.bz2" - ], - "2512.3.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.3.0/flatcar_developer_container.bin.bz2" - ], - "2512.4.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.4.0/flatcar_developer_container.bin.bz2" - ], - "2512.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.5.0/flatcar_developer_container.bin.bz2" - ], - "2605.10.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.10.0/flatcar_developer_container.bin.bz2" - ], - "2605.11.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.11.0/flatcar_developer_container.bin.bz2" - ], - "2605.12.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.12.0/flatcar_developer_container.bin.bz2" - ], - "2605.5.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.5.0/flatcar_developer_container.bin.bz2" - ], - "2605.6.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.6.0/flatcar_developer_container.bin.bz2" - ], - "2605.7.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.7.0/flatcar_developer_container.bin.bz2" - ], - "2605.8.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.8.0/flatcar_developer_container.bin.bz2" - ], - "2605.9.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.9.0/flatcar_developer_container.bin.bz2" - ], - "2765.2.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.0/flatcar_developer_container.bin.bz2" - ], - "2765.2.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.1/flatcar_developer_container.bin.bz2" - ], - "2765.2.2": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.2/flatcar_developer_container.bin.bz2" - ], - "2765.2.3": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.3/flatcar_developer_container.bin.bz2" - ], - "2765.2.4": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.4/flatcar_developer_container.bin.bz2" - ], - "2765.2.5": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.5/flatcar_developer_container.bin.bz2" - ], - "2765.2.6": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.6/flatcar_developer_container.bin.bz2" - ], - "2905.2.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.0/flatcar_developer_container.bin.bz2" - ], - "2905.2.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.1/flatcar_developer_container.bin.bz2" - ], - "2905.2.2": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.2/flatcar_developer_container.bin.bz2" - ], - "2905.2.3": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.3/flatcar_developer_container.bin.bz2" - ], - "2905.2.4": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.4/flatcar_developer_container.bin.bz2" - ], - "2905.2.5": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.5/flatcar_developer_container.bin.bz2" - ], - "2905.2.6": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.6/flatcar_developer_container.bin.bz2" - ], - "2983.2.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2983.2.0/flatcar_developer_container.bin.bz2" - ], - "2983.2.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2983.2.1/flatcar_developer_container.bin.bz2" - ], - "3033.2.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.0/flatcar_developer_container.bin.bz2" - ], - "3033.2.1": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.1/flatcar_developer_container.bin.bz2" - ], - "3033.2.2": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.2/flatcar_developer_container.bin.bz2" - ], - "3033.2.3": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.3/flatcar_developer_container.bin.bz2" - ], - "3033.2.4": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.4/flatcar_developer_container.bin.bz2" - ], - "3139.2.0": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.0/flatcar_developer_container.bin.bz2" - ], - "1722.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1722.2.0/flatcar_developer_container.bin.bz2" - ], - "1745.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1745.1.0/flatcar_developer_container.bin.bz2" - ], - "1745.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1745.2.0/flatcar_developer_container.bin.bz2" - ], - "1772.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1772.1.1/flatcar_developer_container.bin.bz2" - ], - "1772.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1772.2.0/flatcar_developer_container.bin.bz2" - ], - "1772.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1772.3.0/flatcar_developer_container.bin.bz2" - ], - "1772.4.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1772.4.0/flatcar_developer_container.bin.bz2" - ], - "1800.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1800.2.0/flatcar_developer_container.bin.bz2" - ], - "1800.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1800.3.0/flatcar_developer_container.bin.bz2" - ], - "1828.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1828.1.0/flatcar_developer_container.bin.bz2" - ], - "1828.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1828.2.0/flatcar_developer_container.bin.bz2" - ], - "1828.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1828.3.0/flatcar_developer_container.bin.bz2" - ], - "1855.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1855.2.0/flatcar_developer_container.bin.bz2" - ], - "1855.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1855.3.0/flatcar_developer_container.bin.bz2" - ], - "1883.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1883.1.0/flatcar_developer_container.bin.bz2" - ], - "1911.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1911.1.1/flatcar_developer_container.bin.bz2" - ], - "1911.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1911.2.0/flatcar_developer_container.bin.bz2" - ], - "1939.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1939.1.0/flatcar_developer_container.bin.bz2" - ], - "1939.2.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1939.2.1/flatcar_developer_container.bin.bz2" - ], - "1967.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1967.1.0/flatcar_developer_container.bin.bz2" - ], - "1967.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1967.2.0/flatcar_developer_container.bin.bz2" - ], - "1995.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1995.1.0/flatcar_developer_container.bin.bz2" - ], - "2023.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2023.1.0/flatcar_developer_container.bin.bz2" - ], - "2023.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2023.2.0/flatcar_developer_container.bin.bz2" - ], - "2023.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2023.3.0/flatcar_developer_container.bin.bz2" - ], - "2051.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2051.1.0/flatcar_developer_container.bin.bz2" - ], - "2051.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2051.2.0/flatcar_developer_container.bin.bz2" - ], - "2079.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2079.1.0/flatcar_developer_container.bin.bz2" - ], - "2079.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2079.2.0/flatcar_developer_container.bin.bz2" - ], - "2107.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2107.1.0/flatcar_developer_container.bin.bz2" - ], - "2107.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2107.2.0/flatcar_developer_container.bin.bz2" - ], - "2107.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2107.3.0/flatcar_developer_container.bin.bz2" - ], - "2135.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2135.2.0/flatcar_developer_container.bin.bz2" - ], - "2135.3.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2135.3.1/flatcar_developer_container.bin.bz2" - ], - "2163.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2163.3.0/flatcar_developer_container.bin.bz2" - ], - "2163.4.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2163.4.0/flatcar_developer_container.bin.bz2" - ], - "2191.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2191.1.0/flatcar_developer_container.bin.bz2" - ], - "2191.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2191.2.0/flatcar_developer_container.bin.bz2" - ], - "2191.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2191.3.0/flatcar_developer_container.bin.bz2" - ], - "2219.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2219.2.0/flatcar_developer_container.bin.bz2" - ], - "2219.2.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2219.2.1/flatcar_developer_container.bin.bz2" - ], - "2219.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2219.3.0/flatcar_developer_container.bin.bz2" - ], - "2247.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2247.2.0/flatcar_developer_container.bin.bz2" - ], - "2247.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2247.3.0/flatcar_developer_container.bin.bz2" - ], - "2247.4.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2247.4.0/flatcar_developer_container.bin.bz2" - ], - "2275.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2275.2.0/flatcar_developer_container.bin.bz2" - ], - "2303.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2303.1.1/flatcar_developer_container.bin.bz2" - ], - "2303.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2303.2.0/flatcar_developer_container.bin.bz2" - ], - "2331.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2331.1.0/flatcar_developer_container.bin.bz2" - ], - "2331.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2331.1.1/flatcar_developer_container.bin.bz2" - ], - "2345.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2345.1.0/flatcar_developer_container.bin.bz2" - ], - "2345.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2345.2.0/flatcar_developer_container.bin.bz2" - ], - "2411.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2411.1.0/flatcar_developer_container.bin.bz2" - ], - "2411.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2411.1.1/flatcar_developer_container.bin.bz2" - ], - "2512.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2512.1.0/flatcar_developer_container.bin.bz2" - ], - "2512.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2512.1.1/flatcar_developer_container.bin.bz2" - ], - "2513.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2513.2.0/flatcar_developer_container.bin.bz2" - ], - "2513.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2513.3.0/flatcar_developer_container.bin.bz2" - ], - "2605.2.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2605.2.0/flatcar_developer_container.bin.bz2" - ], - "2605.3.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2605.3.0/flatcar_developer_container.bin.bz2" - ], - "2605.4.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2605.4.0/flatcar_developer_container.bin.bz2" - ], - "2632.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2632.1.0/flatcar_developer_container.bin.bz2" - ], - "2643.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2643.1.0/flatcar_developer_container.bin.bz2" - ], - "2643.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2643.1.1/flatcar_developer_container.bin.bz2" - ], - "2705.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.0/flatcar_developer_container.bin.bz2" - ], - "2705.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.1/flatcar_developer_container.bin.bz2" - ], - "2705.1.2": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.2/flatcar_developer_container.bin.bz2" - ], - "2765.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2765.1.0/flatcar_developer_container.bin.bz2" - ], - "2801.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2801.1.0/flatcar_developer_container.bin.bz2" - ], - "2823.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.0/flatcar_developer_container.bin.bz2" - ], - "2823.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.1/flatcar_developer_container.bin.bz2" - ], - "2823.1.2": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.2/flatcar_developer_container.bin.bz2" - ], - "2823.1.3": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.3/flatcar_developer_container.bin.bz2" - ], - "2905.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2905.1.0/flatcar_developer_container.bin.bz2" - ], - "2920.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2920.1.0/flatcar_developer_container.bin.bz2" - ], - "2942.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.0/flatcar_developer_container.bin.bz2" - ], - "2942.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.1/flatcar_developer_container.bin.bz2" - ], - "2942.1.2": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.2/flatcar_developer_container.bin.bz2" - ], - "2983.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.0/flatcar_developer_container.bin.bz2" - ], - "2983.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.1/flatcar_developer_container.bin.bz2" - ], - "2983.1.2": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.2/flatcar_developer_container.bin.bz2" - ], - "3033.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3033.1.0/flatcar_developer_container.bin.bz2" - ], - "3033.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3033.1.1/flatcar_developer_container.bin.bz2" - ], - "3066.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.0/flatcar_developer_container.bin.bz2" - ], - "3066.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.1/flatcar_developer_container.bin.bz2" - ], - "3066.1.2": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.2/flatcar_developer_container.bin.bz2" - ], - "3139.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3139.1.0/flatcar_developer_container.bin.bz2" - ], - "3139.1.1": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3139.1.1/flatcar_developer_container.bin.bz2" - ], - "3185.1.0": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3185.1.0/flatcar_developer_container.bin.bz2" - ], - "1745.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1745.0.0/flatcar_developer_container.bin.bz2" - ], - "1758.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1758.0.0/flatcar_developer_container.bin.bz2" - ], - "1772.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1772.0.0/flatcar_developer_container.bin.bz2" - ], - "1786.0.1": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1786.0.1/flatcar_developer_container.bin.bz2" - ], - "1786.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1786.1.0/flatcar_developer_container.bin.bz2" - ], - "1786.2.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1786.2.0/flatcar_developer_container.bin.bz2" - ], - "1800.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1800.0.0/flatcar_developer_container.bin.bz2" - ], - "1800.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1800.1.0/flatcar_developer_container.bin.bz2" - ], - "1814.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1814.0.0/flatcar_developer_container.bin.bz2" - ], - "1828.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1828.0.0/flatcar_developer_container.bin.bz2" - ], - "1849.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1849.0.0/flatcar_developer_container.bin.bz2" - ], - "1855.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1855.0.0/flatcar_developer_container.bin.bz2" - ], - "1855.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1855.1.0/flatcar_developer_container.bin.bz2" - ], - "1871.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1871.0.0/flatcar_developer_container.bin.bz2" - ], - "1883.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1883.0.0/flatcar_developer_container.bin.bz2" - ], - "1897.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1897.0.0/flatcar_developer_container.bin.bz2" - ], - "1911.0.2": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1911.0.2/flatcar_developer_container.bin.bz2" - ], - "1925.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1925.0.0/flatcar_developer_container.bin.bz2" - ], - "1939.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1939.0.0/flatcar_developer_container.bin.bz2" - ], - "1953.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1953.0.0/flatcar_developer_container.bin.bz2" - ], - "1967.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1967.0.0/flatcar_developer_container.bin.bz2" - ], - "1981.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1981.0.0/flatcar_developer_container.bin.bz2" - ], - "1995.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1995.0.0/flatcar_developer_container.bin.bz2" - ], - "2016.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2016.0.0/flatcar_developer_container.bin.bz2" - ], - "2023.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2023.0.0/flatcar_developer_container.bin.bz2" - ], - "2037.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2037.0.0/flatcar_developer_container.bin.bz2" - ], - "2051.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2051.0.0/flatcar_developer_container.bin.bz2" - ], - "2065.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2065.0.0/flatcar_developer_container.bin.bz2" - ], - "2079.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2079.0.0/flatcar_developer_container.bin.bz2" - ], - "2093.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2093.0.0/flatcar_developer_container.bin.bz2" - ], - "2107.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2107.0.0/flatcar_developer_container.bin.bz2" - ], - "2121.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2121.0.0/flatcar_developer_container.bin.bz2" - ], - "2135.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2135.0.0/flatcar_developer_container.bin.bz2" - ], - "2135.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2135.1.0/flatcar_developer_container.bin.bz2" - ], - "2149.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2149.0.0/flatcar_developer_container.bin.bz2" - ], - "2163.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2163.0.0/flatcar_developer_container.bin.bz2" - ], - "2163.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2163.1.0/flatcar_developer_container.bin.bz2" - ], - "2163.2.1": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2163.2.1/flatcar_developer_container.bin.bz2" - ], - "2184.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2184.0.0/flatcar_developer_container.bin.bz2" - ], - "2191.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2191.0.0/flatcar_developer_container.bin.bz2" - ], - "2205.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2205.0.0/flatcar_developer_container.bin.bz2" - ], - "2219.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2219.0.0/flatcar_developer_container.bin.bz2" - ], - "2219.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2219.1.0/flatcar_developer_container.bin.bz2" - ], - "2234.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2234.0.0/flatcar_developer_container.bin.bz2" - ], - "2247.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2247.0.0/flatcar_developer_container.bin.bz2" - ], - "2247.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2247.1.0/flatcar_developer_container.bin.bz2" - ], - "2261.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2261.0.0/flatcar_developer_container.bin.bz2" - ], - "2275.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2275.0.0/flatcar_developer_container.bin.bz2" - ], - "2275.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2275.1.0/flatcar_developer_container.bin.bz2" - ], - "2296.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2296.0.0/flatcar_developer_container.bin.bz2" - ], - "2303.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2303.0.0/flatcar_developer_container.bin.bz2" - ], - "2317.0.1": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2317.0.1/flatcar_developer_container.bin.bz2" - ], - "2331.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2331.0.0/flatcar_developer_container.bin.bz2" - ], - "2345.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.0/flatcar_developer_container.bin.bz2" - ], - "2345.0.1": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.1/flatcar_developer_container.bin.bz2" - ], - "2345.0.2": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.2/flatcar_developer_container.bin.bz2" - ], - "2387.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2387.0.0/flatcar_developer_container.bin.bz2" - ], - "2411.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2411.0.0/flatcar_developer_container.bin.bz2" - ], - "2430.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2430.0.0/flatcar_developer_container.bin.bz2" - ], - "2466.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2466.0.0/flatcar_developer_container.bin.bz2" - ], - "2492.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2492.0.0/flatcar_developer_container.bin.bz2" - ], - "2513.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2513.0.0/flatcar_developer_container.bin.bz2" - ], - "2513.0.1": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2513.0.1/flatcar_developer_container.bin.bz2" - ], - "2513.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2513.1.0/flatcar_developer_container.bin.bz2" - ], - "2592.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2592.0.0/flatcar_developer_container.bin.bz2" - ], - "2605.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2605.0.0/flatcar_developer_container.bin.bz2" - ], - "2605.1.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2605.1.0/flatcar_developer_container.bin.bz2" - ], - "2632.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2632.0.0/flatcar_developer_container.bin.bz2" - ], - "2643.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2643.0.0/flatcar_developer_container.bin.bz2" - ], - "2661.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2661.0.0/flatcar_developer_container.bin.bz2" - ], - "2671.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2671.0.0/flatcar_developer_container.bin.bz2" - ], - "2697.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2697.0.0/flatcar_developer_container.bin.bz2" - ], - "2705.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2705.0.0/flatcar_developer_container.bin.bz2" - ], - "2723.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2723.0.0/flatcar_developer_container.bin.bz2" - ], - "2748.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2748.0.0/flatcar_developer_container.bin.bz2" - ], - "2765.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2765.0.0/flatcar_developer_container.bin.bz2" - ], - "2783.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2783.0.0/flatcar_developer_container.bin.bz2" - ], - "2801.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2801.0.0/flatcar_developer_container.bin.bz2" - ], - "2801.0.1": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2801.0.1/flatcar_developer_container.bin.bz2" - ], - "2823.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2823.0.0/flatcar_developer_container.bin.bz2" - ], - "2857.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2857.0.0/flatcar_developer_container.bin.bz2" - ], - "2879.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2879.0.0/flatcar_developer_container.bin.bz2" - ], - "2879.0.1": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2879.0.1/flatcar_developer_container.bin.bz2" - ], - "2905.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2905.0.0/flatcar_developer_container.bin.bz2" - ], - "2920.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2920.0.0/flatcar_developer_container.bin.bz2" - ], - "2942.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2942.0.0/flatcar_developer_container.bin.bz2" - ], - "2955.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2955.0.0/flatcar_developer_container.bin.bz2" - ], - "2969.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2969.0.0/flatcar_developer_container.bin.bz2" - ], - "2983.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2983.0.0/flatcar_developer_container.bin.bz2" - ], - "3005.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3005.0.0/flatcar_developer_container.bin.bz2" - ], - "3005.0.1": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3005.0.1/flatcar_developer_container.bin.bz2" - ], - "3033.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3033.0.0/flatcar_developer_container.bin.bz2" - ], - "3046.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3046.0.0/flatcar_developer_container.bin.bz2" - ], - "3066.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3066.0.0/flatcar_developer_container.bin.bz2" - ], - "3115.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3115.0.0/flatcar_developer_container.bin.bz2" - ], - "3127.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3127.0.0/flatcar_developer_container.bin.bz2" - ], - "3139.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3139.0.0/flatcar_developer_container.bin.bz2" - ], - "3165.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3165.0.0/flatcar_developer_container.bin.bz2" - ], - "3185.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3185.0.0/flatcar_developer_container.bin.bz2" - ], - "3200.0.0": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3200.0.0/flatcar_developer_container.bin.bz2" - ] + "AmazonLinux": [ + { + "kernelversion": 1, + "kernelrelease": "4.9.17-8.31.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.32-15.41.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.38-16.33.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.27-14.31.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.43-17.38.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.27-14.33.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.20-11.31.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.38-16.35.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.43-17.39.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.20-10.30.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.51-10.52.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.91-40.57.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.76-3.78.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.75-25.55.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.93-41.60.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.58-18.51.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.70-22.55.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.62-21.56.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.85-38.58.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.116-43.59.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.77-31.58.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.70-25.242.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.85-37.55.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.81-35.56.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.119-44.140.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.58-18.55.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.26-46.32.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.152-98.182.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.88-72.76.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.209-117.337.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.165-103.209.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.232-123.381.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.154-99.181.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.238-125.422.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.121-85.96.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.186-110.268.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.225-121.357.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.77-69.57.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.181-108.257.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.33-51.34.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.262-135.489.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.123-86.109.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.114-83.126.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.173-106.229.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.88-72.73.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.97-74.72.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.42-52.37.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.165-102.185.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.143-91.122.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.128-87.105.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.114-82.97.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.62-65.117.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.177-107.254.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.133-88.112.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.104-78.84.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.219-119.340.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.51-60.38.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.225-121.362.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.94-73.73.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.138-89.102.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.171-105.231.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.268-139.500.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.101-75.76.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.106-79.86.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.158-101.185.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.67-66.56.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.133-88.105.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.262-135.486.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.55-62.37.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.248-129.473.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.72-68.55.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.146-93.123.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.47-56.37.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.33-51.37.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.70-67.55.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.238-125.421.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.273-140.502.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.200-116.320.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.77-70.59.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.77-70.82.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.203-116.332.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.252-131.483.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.109-80.92.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.193-113.317.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.59-64.43.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.214-118.339.amzn1.x86_64", + "target": "amazonlinux" + } + ], + "AmazonLinux2": [ + { + "kernelversion": 1, + "kernelrelease": "4.14.51-66.38.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.209-160.339.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.76-38.79.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.72-73.55.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.146-120.181.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.225-168.357.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.152-127.182.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.181-142.260.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.273-207.502.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.252-195.483.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.75-1.56.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.165-131.185.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.26-54.32.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.192-147.314.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.186-146.268.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.55-68.37.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.133-113.105.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.62-10.57.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.88-88.76.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.225-169.362.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.114-103.97.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.42-61.37.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.232-177.418.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.193-149.317.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.101-91.76.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.33-59.37.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.47-63.37.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.109-99.92.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.59-68.43.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.214-160.339.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.171-136.231.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.77-86.82.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.231-173.361.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.123-111.109.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.243-185.433.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.219-161.340.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.268-205.500.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.219-164.354.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.138-114.102.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.77-80.57.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.70-72.55.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.88-88.73.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.146-119.123.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.85-46.56.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.143-118.123.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.106-97.85.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.181-140.257.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.256-197.484.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.67-71.56.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.246-187.474.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.241-184.433.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.85-47.59.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.133-113.112.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.200-155.322.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.209-160.335.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.177-139.254.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.198-152.320.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.77-81.59.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.238-182.422.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.154-128.181.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.114-105.126.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.70-2.243.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.231-173.360.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.104-95.84.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.97-90.72.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.165-133.209.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.121-109.96.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.47-64.38.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.94-89.73.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.158-129.185.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.33-59.34.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.203-156.332.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.262-200.489.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.128-112.105.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.152-124.171.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.232-176.381.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.173-137.229.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.81-44.57.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.173-137.228.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.77-41.59.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.177-139.253.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.62-70.117.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.248-189.473.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.252-195.481.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.238-182.421.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.68-62.173.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.50-44.132.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.102-99.473.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.29-27.126.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.50-44.131.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.29-27.128.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.96-90.460.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.82-83.359.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.106-102.504.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.62-55.141.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-31.135.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.47-39.130.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-87.444.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.75-79.358.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.59-52.142.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.144-69.257.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.74-36.135.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.181-99.354.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.149-73.259.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.58-32.125.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.129-63.229.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.105-48.177.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.95-42.163.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.91-41.139.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.117-58.216.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.162-86.275.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.50-25.83.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.58-27.104.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.176-91.338.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.38-17.76.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.141-67.229.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.156-83.273.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.46-19.75.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.110-54.182.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.46-23.77.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.129-62.227.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.68-34.125.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.20-12.75.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.186-102.354.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.110-54.189.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.172-90.336.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.80-40.140.amzn2.x86_64", + "target": "amazonlinux2" + } + ], + "AmazonLinux2022": [ + { + "kernelversion": 1, + "kernelrelease": "5.10.96-90.460.amzn2022.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.23-11.98.amzn2022.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.25-14.106.amzn2022.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.24-13.97.amzn2022.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.75-82.359.amzn2022.x86_64", + "target": "amazonlinux2" + } + ], + "CentOS": [ + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-71.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-131.0.15.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-220.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-358.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-504.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-573.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-229.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-71.29.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-71.24.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-71.18.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-71.14.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-71.7.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-71.18.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-131.6.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-131.17.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-131.2.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-131.12.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-131.4.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-131.21.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.10.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.11.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.12.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.14.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.15.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.17.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.18.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.2.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.22.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.23.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.24.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.24.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.25.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.27.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.28.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.29.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.29.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.3.5.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.30.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.31.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.33.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.35.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.6.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.9.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-220.23.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-220.13.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-220.4.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-220.7.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-220.4.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-220.17.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-220.2.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.11.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.5.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.22.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.5.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.19.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.14.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.1.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.9.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-279.2.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-358.2.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-358.18.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-358.0.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-358.23.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-358.6.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-358.11.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-358.14.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-358.6.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.5.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.20.5.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.3.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.23.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.17.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.20.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.11.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.29.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-431.1.2.0.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-504.1.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-504.12.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-504.16.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-504.23.4.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-504.3.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-504.30.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-504.8.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-573.1.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-573.12.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-573.18.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-573.22.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-573.26.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-573.3.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-573.7.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-573.8.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.1.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.11.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.13.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.13.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.15.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.3.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.4.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.6.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.6.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.1.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.10.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.10.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.10.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.13.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.16.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.18.7.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.20.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.23.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.28.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.3.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.3.2.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.30.1.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.6.3.el6.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.13.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.6.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.4.4.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.13.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.20.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.4.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.8.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.9.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.9.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-123.1.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-229.1.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-229.11.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-229.14.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-229.20.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-229.4.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-229.7.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.10.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.13.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.18.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.22.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.28.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.28.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.3.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.36.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.36.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.36.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.4.4.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-327.4.5.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.10.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.16.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.2.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.21.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.21.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.26.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.26.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.6.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.6.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.1.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.11.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.11.6.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.17.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.2.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.2.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.21.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.5.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.11.6.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.14.4.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.2.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.3.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.3.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.6.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.9.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.1.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.10.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.12.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.12.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.21.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.21.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.27.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.5.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.el8.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.3.1.el8.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", + "target": "centos" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.el8.x86_64", + "target": "centos" + } + ], + "Fedora": [ + { + "kernelversion": 1, + "kernelrelease": "5.6.6-300.fc32.x86_64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.8.15-301.fc33.x86_64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.11.12-300.fc34.x86_64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.10-300.fc35.x86_64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.11.22-100.fc32.x86_64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.18-100.fc33.x86_64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.16.20-100.fc34.x86_64", + "target": "fedora" + }, + { + "kernelversion": 1, + "kernelrelease": "5.16.20-200.fc35.x86_64", + "target": "fedora" + } + ], + "Oracle6": [ + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.23.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.28.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.30.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.10.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.11.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.12.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.14.2.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.15.3.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.17.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.18.2.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.2.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.22.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.23.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.24.2.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.24.3.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.25.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.27.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.28.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.29.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.29.2.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.3.5.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.30.2.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.31.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.33.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.6.3.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.9.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.35.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.1.1.0.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.33.1.0.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.35.1.0.1.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-754.35.1.0.2.el6.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.42.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.43.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.42.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.44.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.44.4.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.45.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.45.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.46.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.46.4.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.47.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.3.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.10.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.11.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.13.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.13.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.14.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.14.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.15.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.15.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.16.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.16.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.16.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.17.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.17.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.18.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.18.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.18.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.10.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.12.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.7.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.7.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.21.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.21.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.22.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.23.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.24.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.24.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.24.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.25.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.26.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.27.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.28.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.29.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.3.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.3.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.30.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.31.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.32.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.33.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.34.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.35.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.35.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.36.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.37.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.38.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.39.1.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.39.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.4.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.4.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.40.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.41.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.42.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.43.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.44.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.45.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.46.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.47.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.47.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.48.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.6.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.6.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.7.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.8.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.9.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.9.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-16.1.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-16.2.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-16.2.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-16.2.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-16.3.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-16.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-26.1.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-26.2.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-26.2.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-26.2.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-26.2.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-26.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.1.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.1.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.1.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.8.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.2.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.1.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.1.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.2.2.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.2.2.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.2.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.1.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.1.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.2.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.2.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.4.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.5.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.6.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.7.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.49.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.50.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.51.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.52.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.53.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.54.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.51.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.55.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-100.10.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-100.5.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-100.6.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-100.7.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-200.24.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-200.29.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-200.29.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-200.29.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-200.31.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-200.32.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-200.33.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-200.34.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-300.17.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-300.17.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-300.17.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-300.26.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-300.28.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-300.32.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.109.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.109.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.109.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.109.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.109.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.17.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.17.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.209.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.209.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.21.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.21.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.210.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.211.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.211.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.211.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.212.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.214.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.214.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.214.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.214.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.214.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.10.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.11.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.12.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.13.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.14.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.15.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.215.7.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.23.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.24.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.245.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.246.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.247.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.248.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.249.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.249.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.249.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.250.10.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.250.11.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.250.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.250.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.250.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.250.7.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.250.9.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.264.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.264.13.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.264.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.264.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.276.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.277.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.278.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.278.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.278.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.280.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.281.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.282.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.283.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.283.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.284.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.286.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.286.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.290.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.290.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.293.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.293.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.294.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.294.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.294.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.294.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.294.7.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.295.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.296.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.297.11.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.297.12.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.297.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.297.4.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.297.5.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.297.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.297.8.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.297.9.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.298.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.298.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.298.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.298.6.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.298.7.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.299.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.299.3.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.300.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.301.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.301.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.302.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.303.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.304.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.305.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.306.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.307.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.308.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.310.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.311.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.312.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.312.2.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.313.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.314.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.315.1.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.315.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.316.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.317.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.318.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.319.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.320.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.321.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.322.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.323.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.324.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.325.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.326.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.327.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.328.1.el6uek.x86_64", + "target": "oracle6" + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.39-400.330.1.el6uek.x86_64", + "target": "oracle6" + } + ], + "Oracle7": [ + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.10.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.12.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.12.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.21.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.21.3.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.27.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.0.0.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.1.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.1.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.12.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.18.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.4.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.4.3.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.7.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1062.9.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.0.0.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.10.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.13.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.18.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.19.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.19.1.0.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1127.8.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.11.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.15.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.2.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.2.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.21.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.24.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.25.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.31.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.36.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.41.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.42.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.45.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.45.1.0.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.49.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.53.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.59.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.6.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.62.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.62.1.0.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.10.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.16.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.21.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.21.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.26.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.26.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.6.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-514.6.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.0.0.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.1.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.11.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.11.6.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.17.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.2.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.2.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.21.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.5.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.0.0.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.11.6.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.14.4.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.2.3.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.3.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.3.3.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.6.3.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.9.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.0.0.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.0.0.0.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.1.3.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.1.3.0.3.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.10.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.12.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.12.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.21.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.21.3.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.27.2.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.5.1.0.1.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.5.1.0.2.el7.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.0.7.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.1.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.2.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.3.2.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.4.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.4.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.5.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.6.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.7.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.100.6.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.101.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.102.0.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.103.3.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.103.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.104.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.104.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.200.13.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.201.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.202.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.203.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.203.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.205.7.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.205.7.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.206.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.300.7.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.6.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.306.1.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.305.4.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.305.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.10.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.12.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.13.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.14.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.7.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.8.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.400.8.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.400.9.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.400.9.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.401.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.402.2.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.403.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.404.1.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.404.1.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.405.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.500.10.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.500.9.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.500.9.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.501.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.501.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.502.4.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.502.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.502.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.503.1.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.503.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.504.2.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.504.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.505.4.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.505.4.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.505.4.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.505.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.506.10.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.506.8.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.506.8.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.507.7.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.507.7.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.507.7.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.508.3.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.508.3.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.508.3.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.508.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.509.2.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.509.2.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.4.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.5.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.7.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.8.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.42.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.42.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.43.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.44.4.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.44.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.45.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.45.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.46.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.46.4.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.47.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.3.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.49.3.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.50.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.51.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.52.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.52.5.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.52.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.53.3.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.53.5.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.53.5.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.53.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.54.6.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.54.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.56.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.57.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.58.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.59.1.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.59.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.60.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.61.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.10.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.11.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.13.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.13.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.14.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.14.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.15.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.15.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.15.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.16.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.16.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.16.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.17.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.17.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.18.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.18.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.18.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.10.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.12.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.7.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.7.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.21.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.21.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.22.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.23.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.24.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.24.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.24.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.25.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.26.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.27.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.28.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.29.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.3.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.3.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.30.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.31.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.32.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.33.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.34.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.35.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.35.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.36.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.37.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.38.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.39.1.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.39.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.4.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.4.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.40.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.41.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.42.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.43.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.44.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.45.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.46.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.47.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.47.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.48.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.6.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.6.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.7.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.8.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.9.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.9.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.6.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.8.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.2.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.1.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.1.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.2.2.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.2.2.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.2.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.3.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.4.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.5.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.1.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.1.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.2.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.2.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.4.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.5.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.6.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.7.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.49.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.50.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.51.2.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.52.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.53.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.54.1.el7uek.x86_64", + "target": "oracle7" + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.55.1.el7uek.x86_64", + "target": "oracle7" + } + ], + "Oracle8": [ + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.0.2.el8_1.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.0.3.el8_1.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.3.1.el8_1.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.5.1.el8_1.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.el8.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.1.2.el8_2.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.13.2.el8_2.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.14.3.el8_2.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.19.1.el8_2.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.6.3.el8_2.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.el8.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.1.1.el8_3.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.10.1.el8_3.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.15.1.el8_3.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.8.1.el8_3.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.el8.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.3.1.el8_4.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.el8.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.12.2.el8_5.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.20.1.el8_5.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.el8.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.el8.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.0.7.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.1.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.2.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.3.2.1.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.4.4.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.4.6.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.5.3.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.6.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.7.4.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.100.6.1.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.101.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.102.0.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.103.3.1.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.103.3.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.104.4.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.104.5.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.200.13.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.201.3.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.202.5.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.203.5.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.203.6.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.3.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.4.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.205.7.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.205.7.3.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.206.1.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.300.7.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.3.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.4.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.6.1.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.1.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.3.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.1.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.2.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.3.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.4.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.5.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.3.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.4.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.5.el8uek.x86_64", + "target": "oracle8" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.306.1.3.el8uek.x86_64", + "target": "oracle8" + } + ], + "PhotonOS": [ + { + "kernelversion": 1, + "kernelrelease": "1.3.0-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.15-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.15-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.104-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.104-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.112-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-10.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-6.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-7.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-9.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.124-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.124-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.126-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.126-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.129-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.129-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.129-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-6.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.138-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.138-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.138-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.145-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.145-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.145-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.15-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.150-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-10.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-11.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-8.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-9.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-6.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.164-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.164-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.177-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.177-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.182-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.182-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.205-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.208-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.214-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.214-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.217-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.224-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.224-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.225-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.225-6.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.229-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.229-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.229-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.29-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.32-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.40-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.40-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.52-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.52-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.65-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.65-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.69-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.72-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.72-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.76-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.76-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.79-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.79-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.82-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.84-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.84-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-6.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-6.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.214-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.225-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.32-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.65-1.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.76-2.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-3.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-4.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-5.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.225-7.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-7.ph3.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "1.4.0-3.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "1.4.0-4.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-3.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-4.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-10.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-3.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-5.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-6.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-7.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-9.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-3.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-4.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-17.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-3.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.46-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.46-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.52-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.52-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.61-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.61-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.75-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-4.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-5.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-3.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-4.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-5.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-6.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-7.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-3.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-4.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-5.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-4.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-10.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-4.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-6.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-7.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-8.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-8.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-1.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "1.4.0-2.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-16.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-4.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-9.ph4.x86_64", + "target": "photonOS" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-7.ph4.x86_64", + "target": "photonOS" + } + ], + "Debian": [ + { + "kernelversion": 1, + "kernelrelease": "5.16.18-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.9-2~bpo11+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.5-2~bpo11+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.15-2~bpo11+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.16.11-1~bpo11+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.16.12-1~bpo11+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.84-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.106-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.92-1~bpo10+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-1~bpo10+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.70-1~bpo10+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.208-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.235-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.17.1-1~exp1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "3.16.56-1+deb8u1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.65-2+grsecunoff1~bpo9+1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.228-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "3.16.81-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "3.16.84-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.210-1+deb9u1~deb8u1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.303-1-amd64", + "target": "debian" + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-1~deb9u1-amd64", + "target": "debian" + } + ], + "Ubuntu": [ + { + "kernelversion": "95", + "kernelrelease": "4.15.0-1087-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "96", + "kernelrelease": "4.15.0-1088-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101", + "kernelrelease": "4.15.0-1092-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "105", + "kernelrelease": "4.15.0-1103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "4.15.0-1104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "115", + "kernelrelease": "4.15.0-1104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "4.15.0-1107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1110-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "114", + "kernelrelease": "4.15.0-1111-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120", + "kernelrelease": "4.15.0-1113-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "127", + "kernelrelease": "4.15.0-1113-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "4.15.0-1113-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123", + "kernelrelease": "4.15.0-1116-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "130", + "kernelrelease": "4.15.0-1116-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124", + "kernelrelease": "4.15.0-1117-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "131", + "kernelrelease": "4.15.0-1117-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "128", + "kernelrelease": "4.15.0-1120-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "129", + "kernelrelease": "4.15.0-1121-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "135", + "kernelrelease": "4.15.0-1121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "133", + "kernelrelease": "4.15.0-1124-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "134", + "kernelrelease": "4.15.0-1125-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "143", + "kernelrelease": "4.15.0-1130-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "144", + "kernelrelease": "4.15.0-1131-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "147", + "kernelrelease": "4.15.0-1134-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "148", + "kernelrelease": "4.15.0-1135-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "150", + "kernelrelease": "4.15.0-1137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "175", + "kernelrelease": "4.15.0-167-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "176", + "kernelrelease": "4.15.0-168-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "177", + "kernelrelease": "4.15.0-169-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "178", + "kernelrelease": "4.15.0-170-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "181", + "kernelrelease": "4.15.0-172-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "182", + "kernelrelease": "4.15.0-173-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "183", + "kernelrelease": "4.15.0-174-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "185", + "kernelrelease": "4.15.0-176-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.0.0-1028-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "113~18.04.1", + "kernelrelease": "5.4.0-100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~18.04.1", + "kernelrelease": "5.4.0-1032-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~18.04.1", + "kernelrelease": "5.4.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119~18.04.1", + "kernelrelease": "5.4.0-105-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120~18.04.1", + "kernelrelease": "5.4.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1060-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1065-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1066-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71~18.04.1", + "kernelrelease": "5.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~18.04.1", + "kernelrelease": "5.4.0-1070-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76~18.04.1", + "kernelrelease": "5.4.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~18.04.1", + "kernelrelease": "5.4.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75~18.04.1", + "kernelrelease": "5.4.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-1076-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1077-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122~18.04.1", + "kernelrelease": "5.4.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123~18.04.1", + "kernelrelease": "5.4.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102~18.04.1", + "kernelrelease": "5.4.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110~18.04.1", + "kernelrelease": "5.4.0-97-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112~18.04.1", + "kernelrelease": "5.4.0-99-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "4.15.0-1006-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8", + "kernelrelease": "4.15.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "4.15.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10", + "kernelrelease": "4.15.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "4.15.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "4.15.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "4.15.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "4.15.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10", + "kernelrelease": "4.15.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "4.15.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "12", + "kernelrelease": "4.15.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "4.15.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "4.15.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "4.15.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "4.15.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14", + "kernelrelease": "4.15.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "4.15.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "4.15.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "4.15.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "4.15.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "4.15.0-1016-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "17", + "kernelrelease": "4.15.0-1017-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "18", + "kernelrelease": "4.15.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "4.15.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "4.15.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "4.15.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "4.15.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "4.15.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "4.15.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "4.15.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "4.15.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "4.15.0-1020-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "4.15.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "4.15.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "4.15.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "4.15.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "4.15.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "4.15.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "4.15.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "4.15.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "4.15.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "4.15.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "4.15.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27", + "kernelrelease": "4.15.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "4.15.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "4.15.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "4.15.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27", + "kernelrelease": "4.15.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "4.15.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "4.15.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "4.15.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "4.15.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "4.15.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "4.15.0-1029-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "31", + "kernelrelease": "4.15.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "4.15.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "4.15.0-1031-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "4.15.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "4.15.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "33", + "kernelrelease": "4.15.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "38", + "kernelrelease": "4.15.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "4.15.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "4.15.0-1035-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40", + "kernelrelease": "4.15.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38", + "kernelrelease": "4.15.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "4.15.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38", + "kernelrelease": "4.15.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "4.15.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "4.15.0-1039-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "4.15.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "45", + "kernelrelease": "4.15.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "4.15.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "4.15.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45", + "kernelrelease": "4.15.0-1043-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1043-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48", + "kernelrelease": "4.15.0-1043-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "4.15.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "4.15.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "4.15.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "4.15.0-1045-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "48", + "kernelrelease": "4.15.0-1045-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.15.0-1045-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1045-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "4.15.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1047-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "47", + "kernelrelease": "4.15.0-1047-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51", + "kernelrelease": "4.15.0-1047-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.15.0-1048-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "51", + "kernelrelease": "4.15.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48", + "kernelrelease": "4.15.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "4.15.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "4.15.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "4.15.0-1050-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "53", + "kernelrelease": "4.15.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.15.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "4.15.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54", + "kernelrelease": "4.15.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "4.15.0-1051-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "51", + "kernelrelease": "4.15.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "4.15.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54", + "kernelrelease": "4.15.0-1052-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "55", + "kernelrelease": "4.15.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "4.15.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "4.15.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "4.15.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "4.15.0-1054-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "58", + "kernelrelease": "4.15.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "4.15.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "4.15.0-1056-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "57", + "kernelrelease": "4.15.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65", + "kernelrelease": "4.15.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "4.15.0-1057-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "60", + "kernelrelease": "4.15.0-1057-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "4.15.0-1057-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "4.15.0-1057-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "4.15.0-1058-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "61", + "kernelrelease": "4.15.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "4.15.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "4.15.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "4.15.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "4.15.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "4.15.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "107", + "kernelrelease": "4.15.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "4.15.0-1060-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "61", + "kernelrelease": "4.15.0-1060-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "4.15.0-1061-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "4.15.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "4.15.0-1063-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "66", + "kernelrelease": "4.15.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "4.15.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "4.15.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "4.15.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "4.15.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "4.15.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "4.15.0-1065-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "75", + "kernelrelease": "4.15.0-1065-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "4.15.0-1065-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "4.15.0-1066-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "69", + "kernelrelease": "4.15.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "4.15.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "4.15.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "4.15.0-1067-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "70", + "kernelrelease": "4.15.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "4.15.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77", + "kernelrelease": "4.15.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "4.15.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "4.15.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "4.15.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "4.15.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "4.15.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77", + "kernelrelease": "4.15.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "4.15.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "4.15.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "4.15.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "4.15.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "4.15.0-1072-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "4.15.0-1072-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "4.15.0-1072-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77", + "kernelrelease": "4.15.0-1073-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "78", + "kernelrelease": "4.15.0-1073-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "4.15.0-1073-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "4.15.0-1074-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "4.15.0-1075-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "4.15.0-1075-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "4.15.0-1076-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "81", + "kernelrelease": "4.15.0-1076-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "4.15.0-1076-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "81", + "kernelrelease": "4.15.0-1077-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "82", + "kernelrelease": "4.15.0-1077-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "4.15.0-1077-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "4.15.0-1078-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "4.15.0-1078-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "4.15.0-1079-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "84", + "kernelrelease": "4.15.0-1079-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "89", + "kernelrelease": "4.15.0-1079-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87", + "kernelrelease": "4.15.0-1079-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "4.15.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84", + "kernelrelease": "4.15.0-1080-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "90", + "kernelrelease": "4.15.0-1080-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88", + "kernelrelease": "4.15.0-1080-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "4.15.0-1081-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "4.15.0-1081-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "89", + "kernelrelease": "4.15.0-1081-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "4.15.0-1082-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "92", + "kernelrelease": "4.15.0-1082-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84", + "kernelrelease": "4.15.0-1082-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "90", + "kernelrelease": "4.15.0-1082-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87", + "kernelrelease": "4.15.0-1083-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "93", + "kernelrelease": "4.15.0-1083-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "4.15.0-1083-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "4.15.0-1084-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92", + "kernelrelease": "4.15.0-1084-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87", + "kernelrelease": "4.15.0-1085-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "93", + "kernelrelease": "4.15.0-1085-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "4.15.0-1086-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "88", + "kernelrelease": "4.15.0-1086-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "94", + "kernelrelease": "4.15.0-1086-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92", + "kernelrelease": "4.15.0-1087-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "89", + "kernelrelease": "4.15.0-1087-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97", + "kernelrelease": "4.15.0-1087-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "90", + "kernelrelease": "4.15.0-1088-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99", + "kernelrelease": "4.15.0-1089-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "4.15.0-1089-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98", + "kernelrelease": "4.15.0-1089-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "4.15.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "95", + "kernelrelease": "4.15.0-1090-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "92", + "kernelrelease": "4.15.0-1090-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "4.15.0-1090-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99", + "kernelrelease": "4.15.0-1090-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "96", + "kernelrelease": "4.15.0-1091-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "101", + "kernelrelease": "4.15.0-1091-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "93", + "kernelrelease": "4.15.0-1091-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "4.15.0-1091-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98", + "kernelrelease": "4.15.0-1092-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "102", + "kernelrelease": "4.15.0-1092-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "94", + "kernelrelease": "4.15.0-1092-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99", + "kernelrelease": "4.15.0-1093-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "103", + "kernelrelease": "4.15.0-1093-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "4.15.0-1093-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101", + "kernelrelease": "4.15.0-1094-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "107", + "kernelrelease": "4.15.0-1094-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "96", + "kernelrelease": "4.15.0-1094-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104", + "kernelrelease": "4.15.0-1094-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "4.15.0-1095-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "105", + "kernelrelease": "4.15.0-1095-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "108", + "kernelrelease": "4.15.0-1095-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103", + "kernelrelease": "4.15.0-1096-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "106", + "kernelrelease": "4.15.0-1096-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "4.15.0-1096-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104", + "kernelrelease": "4.15.0-1097-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "110", + "kernelrelease": "4.15.0-1097-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99", + "kernelrelease": "4.15.0-1097-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "107", + "kernelrelease": "4.15.0-1097-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "105", + "kernelrelease": "4.15.0-1098-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "111", + "kernelrelease": "4.15.0-1098-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "4.15.0-1098-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "4.15.0-1099-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "110", + "kernelrelease": "4.15.0-1099-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112", + "kernelrelease": "4.15.0-1099-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101", + "kernelrelease": "4.15.0-1099-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "4.15.0-1099-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "4.15.0-1100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "4.15.0-1100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "108", + "kernelrelease": "4.15.0-1101-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "103", + "kernelrelease": "4.15.0-1101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112", + "kernelrelease": "4.15.0-1101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "4.15.0-1102-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1102-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104", + "kernelrelease": "4.15.0-1102-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "4.15.0-1103-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "114", + "kernelrelease": "4.15.0-1103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "4.15.0-1103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "4.15.0-1104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "107", + "kernelrelease": "4.15.0-1105-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1106-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "118", + "kernelrelease": "4.15.0-1106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120", + "kernelrelease": "4.15.0-1106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "108", + "kernelrelease": "4.15.0-1106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121", + "kernelrelease": "4.15.0-1107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120", + "kernelrelease": "4.15.0-1108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122", + "kernelrelease": "4.15.0-1108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "4.15.0-1109-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "121", + "kernelrelease": "4.15.0-1109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123", + "kernelrelease": "4.15.0-1109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112", + "kernelrelease": "4.15.0-1109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112", + "kernelrelease": "4.15.0-111-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "117", + "kernelrelease": "4.15.0-1110-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "122", + "kernelrelease": "4.15.0-1110-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124", + "kernelrelease": "4.15.0-1110-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118", + "kernelrelease": "4.15.0-1111-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "123", + "kernelrelease": "4.15.0-1111-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "125", + "kernelrelease": "4.15.0-1111-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119", + "kernelrelease": "4.15.0-1112-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "125", + "kernelrelease": "4.15.0-1112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126", + "kernelrelease": "4.15.0-1112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "115", + "kernelrelease": "4.15.0-1112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126", + "kernelrelease": "4.15.0-1113-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121", + "kernelrelease": "4.15.0-1114-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "127", + "kernelrelease": "4.15.0-1114-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "128", + "kernelrelease": "4.15.0-1114-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122", + "kernelrelease": "4.15.0-1115-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "128", + "kernelrelease": "4.15.0-1115-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "129", + "kernelrelease": "4.15.0-1115-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "125", + "kernelrelease": "4.15.0-1118-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "131", + "kernelrelease": "4.15.0-1118-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132", + "kernelrelease": "4.15.0-1118-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "127", + "kernelrelease": "4.15.0-1119-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "133", + "kernelrelease": "4.15.0-1119-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "134", + "kernelrelease": "4.15.0-1120-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "134", + "kernelrelease": "4.15.0-1121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "135", + "kernelrelease": "4.15.0-1122-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132", + "kernelrelease": "4.15.0-1123-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-1123-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "137", + "kernelrelease": "4.15.0-1124-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "138", + "kernelrelease": "4.15.0-1125-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "135", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "139", + "kernelrelease": "4.15.0-1126-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140", + "kernelrelease": "4.15.0-1127-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "142", + "kernelrelease": "4.15.0-1129-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "146", + "kernelrelease": "4.15.0-1133-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "149", + "kernelrelease": "4.15.0-1136-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "4.15.0-115-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118", + "kernelrelease": "4.15.0-117-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119", + "kernelrelease": "4.15.0-118-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123", + "kernelrelease": "4.15.0-121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124", + "kernelrelease": "4.15.0-122-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126", + "kernelrelease": "4.15.0-123-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131", + "kernelrelease": "4.15.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132", + "kernelrelease": "4.15.0-129-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "134", + "kernelrelease": "4.15.0-130-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-132-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "139", + "kernelrelease": "4.15.0-135-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140", + "kernelrelease": "4.15.0-136-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "141", + "kernelrelease": "4.15.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143", + "kernelrelease": "4.15.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "144", + "kernelrelease": "4.15.0-140-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "145", + "kernelrelease": "4.15.0-141-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "146", + "kernelrelease": "4.15.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "147", + "kernelrelease": "4.15.0-143-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "148", + "kernelrelease": "4.15.0-144-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "151", + "kernelrelease": "4.15.0-147-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "157", + "kernelrelease": "4.15.0-151-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "160", + "kernelrelease": "4.15.0-153-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "161", + "kernelrelease": "4.15.0-154-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "163", + "kernelrelease": "4.15.0-156-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "166", + "kernelrelease": "4.15.0-158-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "167", + "kernelrelease": "4.15.0-159-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "169", + "kernelrelease": "4.15.0-161-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "170", + "kernelrelease": "4.15.0-162-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "171", + "kernelrelease": "4.15.0-163-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "174", + "kernelrelease": "4.15.0-166-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "180", + "kernelrelease": "4.15.0-171-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "184", + "kernelrelease": "4.15.0-175-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "4.15.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "4.15.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "4.15.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "4.15.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "4.15.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "4.15.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45", + "kernelrelease": "4.15.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "4.15.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "4.15.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48", + "kernelrelease": "4.15.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.15.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54", + "kernelrelease": "4.15.0-50-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "4.15.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "4.15.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "4.15.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "4.15.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "4.15.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "4.15.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "4.15.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "4.15.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "4.15.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "4.15.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "4.15.0-69-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "4.15.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "81", + "kernelrelease": "4.15.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84", + "kernelrelease": "4.15.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "4.15.0-76-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88", + "kernelrelease": "4.15.0-88-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92", + "kernelrelease": "4.15.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97", + "kernelrelease": "4.15.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "4.15.0-99-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "5~18.04.1", + "kernelrelease": "4.18.0-1004-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6~18.04.1", + "kernelrelease": "4.18.0-1005-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6~18.04.1", + "kernelrelease": "4.18.0-1006-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7~18.04.1", + "kernelrelease": "4.18.0-1006-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7~18.04.1", + "kernelrelease": "4.18.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8~18.04.1", + "kernelrelease": "4.18.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8~18.04.1", + "kernelrelease": "4.18.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9~18.04.1", + "kernelrelease": "4.18.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11~18.04.1", + "kernelrelease": "4.18.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12~18.04.1", + "kernelrelease": "4.18.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~18.04.1", + "kernelrelease": "4.18.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~18.04.1", + "kernelrelease": "4.18.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "4.18.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "4.18.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~18.04.1", + "kernelrelease": "4.18.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "4.18.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "4.18.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~18.04.1", + "kernelrelease": "4.18.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "4.18.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "4.18.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~18.04.1", + "kernelrelease": "4.18.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "4.18.0-13-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~18.04.1", + "kernelrelease": "4.18.0-14-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~18.04.1", + "kernelrelease": "4.18.0-15-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "4.18.0-16-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "4.18.0-17-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "4.18.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "4.18.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~18.04.1", + "kernelrelease": "4.18.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "4.18.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "4.18.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12~18.04.1", + "kernelrelease": "5.0.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~18.04.1", + "kernelrelease": "5.0.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "5.0.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~18.04.1", + "kernelrelease": "5.0.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11~18.04.1", + "kernelrelease": "5.0.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "5.0.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12~18.04.2", + "kernelrelease": "5.0.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~18.04.1", + "kernelrelease": "5.0.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "5.0.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "5.0.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.0.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.0.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "5.0.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "5.0.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~18.04.1", + "kernelrelease": "5.0.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.0.0-1021-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "5.0.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.0.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "23~18.04.1", + "kernelrelease": "5.0.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "5.0.0-1023-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.0.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~18.04.1", + "kernelrelease": "5.0.0-1024-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "28", + "kernelrelease": "5.0.0-1025-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "27~18.04.1", + "kernelrelease": "5.0.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "5.0.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~18.04.1", + "kernelrelease": "5.0.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "5.0.0-1027-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.0.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.0.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.0.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.0.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.0.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.0.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.0.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "5.0.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "5.0.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.0.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "5.0.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38", + "kernelrelease": "5.0.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~18.04.1", + "kernelrelease": "5.0.0-15-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.0.0-16-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "5.0.0-17-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~18.04.1", + "kernelrelease": "5.0.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "5.0.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.0.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "5.0.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~18.04.1", + "kernelrelease": "5.0.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.0.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~18.04.1", + "kernelrelease": "5.0.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~18.04.2", + "kernelrelease": "5.0.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.0.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~18.04.1", + "kernelrelease": "5.0.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~18.04.1", + "kernelrelease": "5.0.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.0.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65", + "kernelrelease": "5.0.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "5.0.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "5.0.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "5.0.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8~18.04.1", + "kernelrelease": "5.3.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9~18.04.1", + "kernelrelease": "5.3.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10~18.04.1", + "kernelrelease": "5.3.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11~18.04.1", + "kernelrelease": "5.3.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12~18.04.1", + "kernelrelease": "5.3.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~18.04.1", + "kernelrelease": "5.3.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "5.3.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~18.04.1", + "kernelrelease": "5.3.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.3.0-1016-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "5.3.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "5.3.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "5.3.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~18.04.1", + "kernelrelease": "5.3.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "5.3.0-1019-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "20~18.04.1", + "kernelrelease": "5.3.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "5.3.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.3.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~18.04.1", + "kernelrelease": "5.3.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.3.0-1023-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "5.3.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~18.04.1", + "kernelrelease": "5.3.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.3.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.3.0-1028-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.3.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.3.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~18.04.2", + "kernelrelease": "5.3.0-1032-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "33~18.04.1", + "kernelrelease": "5.3.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~18.04.1", + "kernelrelease": "5.3.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.3.0-1033-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "36", + "kernelrelease": "5.3.0-1034-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.3.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "5.3.0-1035-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "36", + "kernelrelease": "5.3.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~18.04.2", + "kernelrelease": "5.3.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.3.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~18.04.2", + "kernelrelease": "5.3.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.2", + "kernelrelease": "5.3.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~18.04.1", + "kernelrelease": "5.3.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.3.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~18.04.1", + "kernelrelease": "5.3.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~18.04.1", + "kernelrelease": "5.3.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.3.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~18.04.2", + "kernelrelease": "5.3.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~18.04.1", + "kernelrelease": "5.3.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.3.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~18.04.1", + "kernelrelease": "5.3.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.3.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~18.04.1", + "kernelrelease": "5.3.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "5.3.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.3.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61", + "kernelrelease": "5.3.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "5.3.0-68-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65", + "kernelrelease": "5.3.0-69-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "5.3.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "5.3.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "5.3.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "5.3.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "5.3.0-75-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "5.3.0-76-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "3", + "kernelrelease": "5.4.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "5", + "kernelrelease": "5.4.0-1004-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8~18.04.1", + "kernelrelease": "5.4.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9~18.04.1", + "kernelrelease": "5.4.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10~18.04.1", + "kernelrelease": "5.4.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11~18.04.1", + "kernelrelease": "5.4.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12~18.04.2", + "kernelrelease": "5.4.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~18.04.1", + "kernelrelease": "5.4.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "5.4.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~18.04.1", + "kernelrelease": "5.4.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~18.04.1", + "kernelrelease": "5.4.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.4.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "5.4.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~18.04.2", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "5.4.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~18.04.1", + "kernelrelease": "5.4.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~18.04.1", + "kernelrelease": "5.4.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.4.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.4.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "5.4.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~18.04.1", + "kernelrelease": "5.4.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~18.04.1", + "kernelrelease": "5.4.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~18.04.1", + "kernelrelease": "5.4.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.4.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.4.0-1029-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.4.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~18.04.2", + "kernelrelease": "5.4.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.4.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~18.04.1", + "kernelrelease": "5.4.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~18.04.1", + "kernelrelease": "5.4.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~18.04.1", + "kernelrelease": "5.4.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~18.04.1", + "kernelrelease": "5.4.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~18.04.1", + "kernelrelease": "5.4.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~18.04.1", + "kernelrelease": "5.4.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.4.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.4.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~18.04.1", + "kernelrelease": "5.4.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~18.04.1", + "kernelrelease": "5.4.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~18.04.1", + "kernelrelease": "5.4.0-1037-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "40~18.04.1", + "kernelrelease": "5.4.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.4.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~18.04.1", + "kernelrelease": "5.4.0-1038-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~18.04.1", + "kernelrelease": "5.4.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1039-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "42~18.04.1", + "kernelrelease": "5.4.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118~18.04.1", + "kernelrelease": "5.4.0-104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~18.04.1", + "kernelrelease": "5.4.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-1041-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1041-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1043-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-1043-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~18.04.2", + "kernelrelease": "5.4.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~18.04.1", + "kernelrelease": "5.4.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~18.04.1", + "kernelrelease": "5.4.0-1045-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "48~18.04.1", + "kernelrelease": "5.4.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~18.04.2", + "kernelrelease": "5.4.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1047-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "50~18.04.1", + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "52~18.04.1", + "kernelrelease": "5.4.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.4.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52~18.04.1", + "kernelrelease": "5.4.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1051-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "55~18.04.1", + "kernelrelease": "5.4.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~18.04.1", + "kernelrelease": "5.4.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.4.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~18.04.1", + "kernelrelease": "5.4.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.4.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1054-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "58~18.04.1", + "kernelrelease": "5.4.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~18.04.1", + "kernelrelease": "5.4.0-1055-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~18.04.1", + "kernelrelease": "5.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1057-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "61~18.04.1", + "kernelrelease": "5.4.0-1057-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61~18.04.3", + "kernelrelease": "5.4.0-1058-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1060-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65~18.04.1", + "kernelrelease": "5.4.0-1061-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65~18.04.1", + "kernelrelease": "5.4.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1065-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "71~18.04.1", + "kernelrelease": "5.4.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70~18.04.1", + "kernelrelease": "5.4.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71~18.04.1", + "kernelrelease": "5.4.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75~18.04.1", + "kernelrelease": "5.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121~18.04.1", + "kernelrelease": "5.4.0-107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76~18.04.1", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "75~18.04.1", + "kernelrelease": "5.4.0-1072-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76~18.04.1", + "kernelrelease": "5.4.0-1073-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1074-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~18.04.2", + "kernelrelease": "5.4.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.4.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52~18.04.1", + "kernelrelease": "5.4.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.4.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65~18.04.1", + "kernelrelease": "5.4.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70~18.04.1", + "kernelrelease": "5.4.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~18.04.2", + "kernelrelease": "5.4.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75~18.04.1", + "kernelrelease": "5.4.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "82~18.04.1", + "kernelrelease": "5.4.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~18.04.1", + "kernelrelease": "5.4.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86~18.04.1", + "kernelrelease": "5.4.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "90~18.04.1", + "kernelrelease": "5.4.0-80-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-81-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "94~18.04.1", + "kernelrelease": "5.4.0-84-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97~18.04.1", + "kernelrelease": "5.4.0-86-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98~18.04.1", + "kernelrelease": "5.4.0-87-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100~18.04.1", + "kernelrelease": "5.4.0-89-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101~18.04.1", + "kernelrelease": "5.4.0-90-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103~18.04.2", + "kernelrelease": "5.4.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106~18.04.1", + "kernelrelease": "5.4.0-94-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109~18.04.1", + "kernelrelease": "5.4.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "4.15.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "4.15.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "4.15.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "4.15.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "4.15.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "127", + "kernelrelease": "4.15.0-124-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "138", + "kernelrelease": "4.15.0-134-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "4.15.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51", + "kernelrelease": "4.15.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10~18.04.1", + "kernelrelease": "4.18.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "4.18.0-18-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.0.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~18.04.1", + "kernelrelease": "5.0.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~18.04.1", + "kernelrelease": "5.0.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.0.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52~18.04.1", + "kernelrelease": "5.0.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.0.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.0.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~18.04.1", + "kernelrelease": "5.0.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "1", + "kernelrelease": "5.4.0-1001-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "19~18.04.2", + "kernelrelease": "5.4.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "5.4.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~18.04.1", + "kernelrelease": "5.4.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "5", + "kernelrelease": "4.15.0-1004-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "4.15.0-1006-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "4.15.0-1007-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21", + "kernelrelease": "4.15.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "2", + "kernelrelease": "5.15.0-1002-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "4", + "kernelrelease": "5.15.0-1002-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "4", + "kernelrelease": "5.15.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "4", + "kernelrelease": "5.15.0-1004-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.15.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "5.15.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "3", + "kernelrelease": "5.17.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "5.10.0-1047-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "5.10.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.11.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.2", + "kernelrelease": "5.11.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~20.04.3", + "kernelrelease": "5.11.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~20.04.3", + "kernelrelease": "5.11.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~20.04.2", + "kernelrelease": "5.11.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~20.04.1", + "kernelrelease": "5.11.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~20.04.1", + "kernelrelease": "5.11.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~20.04.2", + "kernelrelease": "5.11.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.11.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61", + "kernelrelease": "5.11.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~20.04.1", + "kernelrelease": "5.13.0-1014-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "16~20.04.1", + "kernelrelease": "5.13.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.13.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.13.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.13.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.13.0-1019-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.13.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.13.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~20.04.1", + "kernelrelease": "5.13.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~20.04.2", + "kernelrelease": "5.13.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.13.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.13.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.13.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~20.04.1", + "kernelrelease": "5.13.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~20.04.1", + "kernelrelease": "5.13.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~20.04.1", + "kernelrelease": "5.13.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~20.04.1", + "kernelrelease": "5.13.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.14.0-1006-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.14.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8", + "kernelrelease": "5.14.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "5.14.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "5.14.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "5.14.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "5.14.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.14.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.14.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "5.14.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.14.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.14.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.14.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.14.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.14.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "5.14.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "4~20.04.2", + "kernelrelease": "5.15.0-1002-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~20.04.2", + "kernelrelease": "5.15.0-18-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.15.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.15.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~20.04.2", + "kernelrelease": "5.15.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113", + "kernelrelease": "5.4.0-100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14", + "kernelrelease": "5.4.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "5.4.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "115", + "kernelrelease": "5.4.0-102-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40", + "kernelrelease": "5.4.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119", + "kernelrelease": "5.4.0-105-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "5.4.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "5.4.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61", + "kernelrelease": "5.4.0-1057-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120", + "kernelrelease": "5.4.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1060-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "66+cvm3", + "kernelrelease": "5.4.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1065-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1066-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "5.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71+cvm1", + "kernelrelease": "5.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121", + "kernelrelease": "5.4.0-107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "5.4.0-1070-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73+cvm1", + "kernelrelease": "5.4.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "5.4.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1073-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76+cvm1", + "kernelrelease": "5.4.0-1073-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1074-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1075-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1076-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79+cvm1", + "kernelrelease": "5.4.0-1076-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1077-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122", + "kernelrelease": "5.4.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123", + "kernelrelease": "5.4.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "5.4.0-97-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "111", + "kernelrelease": "5.4.0-98-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112", + "kernelrelease": "5.4.0-99-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.8.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "5.8.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14", + "kernelrelease": "5.10.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "5.10.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.10.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "5.10.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.10.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.10.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.10.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.10.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.10.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27", + "kernelrelease": "5.10.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "5.10.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "5.10.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40", + "kernelrelease": "5.10.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "5.10.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "5.10.0-1045-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51", + "kernelrelease": "5.10.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "5.10.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "5.10.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "5.10.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "5.10.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61", + "kernelrelease": "5.10.0-1057-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~20.04.1", + "kernelrelease": "5.11.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~20.04.1", + "kernelrelease": "5.11.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~20.04.1", + "kernelrelease": "5.11.0-1014-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "16~20.04.1", + "kernelrelease": "5.11.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~20.04.1", + "kernelrelease": "5.11.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.11.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~20.04.2", + "kernelrelease": "5.11.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21~20.04.2", + "kernelrelease": "5.11.0-1020-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.11.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~20.04.2", + "kernelrelease": "5.11.0-1021-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~20.04.1", + "kernelrelease": "5.11.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.11.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.11.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "31~20.04.2", + "kernelrelease": "5.11.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.11.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.11.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~20.04.1", + "kernelrelease": "5.11.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.11.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~20.04.2", + "kernelrelease": "5.11.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~20.04.1", + "kernelrelease": "5.11.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~20.04.2", + "kernelrelease": "5.11.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~20.04.1", + "kernelrelease": "5.11.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9~20.04.2", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "9~20.04.3", + "kernelrelease": "5.13.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10~20.04.2", + "kernelrelease": "5.13.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "5.13.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12~20.04.1", + "kernelrelease": "5.13.0-1011-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "13~20.04.2", + "kernelrelease": "5.13.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~20.04.1", + "kernelrelease": "5.13.0-1012-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "14~20.04.1", + "kernelrelease": "5.13.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~20.04.1", + "kernelrelease": "5.13.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~20.04.1", + "kernelrelease": "5.13.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "5.13.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.13.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.13.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.2", + "kernelrelease": "5.13.0-1021-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~20.04.1", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.13.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.13.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "5.13.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~20.04.2", + "kernelrelease": "5.13.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.13.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~20.04.1", + "kernelrelease": "5.13.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "4", + "kernelrelease": "5.14.0-1004-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "5", + "kernelrelease": "5.14.0-1005-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.14.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.14.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "5.14.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "5.14.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "5~20.04.1", + "kernelrelease": "5.15.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.4.0-1005-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.4.0-1006-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8", + "kernelrelease": "5.4.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10", + "kernelrelease": "5.4.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "12", + "kernelrelease": "5.4.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "5.4.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "5.4.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "16", + "kernelrelease": "5.4.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.4.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.4.0-1017-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "19", + "kernelrelease": "5.4.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.4.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.4.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.4.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.4.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.4.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.4.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.4.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.4.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27", + "kernelrelease": "5.4.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "5.4.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "30", + "kernelrelease": "5.4.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.4.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.4.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.4.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "5.4.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34", + "kernelrelease": "5.4.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1037-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "40", + "kernelrelease": "5.4.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40", + "kernelrelease": "5.4.0-1038-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "5.4.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118", + "kernelrelease": "5.4.0-104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "5.4.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "5.4.0-1041-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "5.4.0-1041-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "5.4.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1043-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-1043-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1045-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1045-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "5.4.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "5.4.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "55", + "kernelrelease": "5.4.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54", + "kernelrelease": "5.4.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "5.4.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "5.4.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "5.4.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "5.4.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1057-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "61", + "kernelrelease": "5.4.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-1060-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1061-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "5.4.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "5.4.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70+cvm1", + "kernelrelease": "5.4.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "5.4.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "5.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "5.4.0-1072-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75+cvm1", + "kernelrelease": "5.4.0-1072-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.4.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "5.4.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51", + "kernelrelease": "5.4.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "5.4.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "5.4.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "5.4.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "5.4.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "5.4.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "82", + "kernelrelease": "5.4.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "5.4.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "5.4.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "90", + "kernelrelease": "5.4.0-80-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "5.4.0-81-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "94", + "kernelrelease": "5.4.0-84-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97", + "kernelrelease": "5.4.0-86-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99", + "kernelrelease": "5.4.0-88-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "5.4.0-89-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101", + "kernelrelease": "5.4.0-90-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "5.4.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103", + "kernelrelease": "5.4.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "5.4.0-94-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109", + "kernelrelease": "5.4.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8", + "kernelrelease": "5.6.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10", + "kernelrelease": "5.6.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "5.6.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "5.6.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.6.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "5.6.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.6.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.6.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.6.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "5.6.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.6.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.6.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.6.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "5.6.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "5.6.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51", + "kernelrelease": "5.6.0-1047-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "5.6.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54", + "kernelrelease": "5.6.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "5.6.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "5.6.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "5.6.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "5.6.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.6.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.2", + "kernelrelease": "5.8.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.8.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.8.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~20.04.1", + "kernelrelease": "5.8.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~20.04.1", + "kernelrelease": "5.8.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~20.04.1", + "kernelrelease": "5.8.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "5.8.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-1041-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "44~20.04.1", + "kernelrelease": "5.8.0-1041-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~20.04.1", + "kernelrelease": "5.8.0-1042-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "46~20.04.1", + "kernelrelease": "5.8.0-1043-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~20.04.1", + "kernelrelease": "5.8.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~20.04.2", + "kernelrelease": "5.8.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~20.04.1", + "kernelrelease": "5.8.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~20.04.1", + "kernelrelease": "5.8.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~20.04.1", + "kernelrelease": "5.8.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~20.04.1", + "kernelrelease": "5.8.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~20.04.1", + "kernelrelease": "5.8.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~20.04.1", + "kernelrelease": "5.8.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~20.04.1", + "kernelrelease": "5.8.0-50-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~20.04.1", + "kernelrelease": "5.8.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~20.04.1", + "kernelrelease": "5.8.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~20.04.1", + "kernelrelease": "5.8.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71~20.04.1", + "kernelrelease": "5.8.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "5.10.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.10.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.10.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54", + "kernelrelease": "5.10.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7~20.04.2", + "kernelrelease": "5.11.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8~20.04.1", + "kernelrelease": "5.11.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9~20.04.2", + "kernelrelease": "5.11.0-1009-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "10~20.04.1", + "kernelrelease": "5.11.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~20.04.1", + "kernelrelease": "5.13.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10", + "kernelrelease": "5.14.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67+cvm1", + "kernelrelease": "5.4.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68+cvm2", + "kernelrelease": "5.4.0-1065-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72+cvm1", + "kernelrelease": "5.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77+cvm1", + "kernelrelease": "5.4.0-1074-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.6.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27", + "kernelrelease": "5.6.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36", + "kernelrelease": "5.6.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "5.6.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "5.6.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~20.04.2", + "kernelrelease": "5.8.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~20.04.1", + "kernelrelease": "5.8.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.8.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.8.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.8.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.8.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~20.04.1", + "kernelrelease": "5.8.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10", + "kernelrelease": "5.4.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "5.4.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.6.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.11.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.11.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.11.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27", + "kernelrelease": "5.11.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.11.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "5.11.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "4", + "kernelrelease": "5.11.0-1004-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "5", + "kernelrelease": "5.11.0-1005-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.11.0-1006-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "17", + "kernelrelease": "5.11.0-16-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "5", + "kernelrelease": "5.13.0-1005-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1006-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.13.0-1006-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "5.13.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14", + "kernelrelease": "5.13.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "5.13.0-1014-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.13.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "5.13.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18", + "kernelrelease": "5.13.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.13.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1019-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "20", + "kernelrelease": "5.13.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "27", + "kernelrelease": "5.13.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33", + "kernelrelease": "5.13.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "5.13.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "5.13.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "5.13.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "5.13.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45", + "kernelrelease": "5.13.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "5.13.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14", + "kernelrelease": "5.13.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "5.13.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "5.13.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-1021-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "24", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40", + "kernelrelease": "5.13.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "5.13.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "5.13.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "5.13.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "4", + "kernelrelease": "5.13.0-1004-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "6", + "kernelrelease": "5.13.0-1005-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~14.04.1", + "kernelrelease": "4.15.0-1043-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "147", + "kernelrelease": "3.13.0-100-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "148", + "kernelrelease": "3.13.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "150", + "kernelrelease": "3.13.0-103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "152", + "kernelrelease": "3.13.0-105-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "153", + "kernelrelease": "3.13.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "154", + "kernelrelease": "3.13.0-107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "155", + "kernelrelease": "3.13.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "156", + "kernelrelease": "3.13.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "157", + "kernelrelease": "3.13.0-110-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "159", + "kernelrelease": "3.13.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "162", + "kernelrelease": "3.13.0-115-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "163", + "kernelrelease": "3.13.0-116-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "164", + "kernelrelease": "3.13.0-117-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "166", + "kernelrelease": "3.13.0-119-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "170", + "kernelrelease": "3.13.0-121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "172", + "kernelrelease": "3.13.0-123-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "174", + "kernelrelease": "3.13.0-125-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "175", + "kernelrelease": "3.13.0-126-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "177", + "kernelrelease": "3.13.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "178", + "kernelrelease": "3.13.0-129-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "181", + "kernelrelease": "3.13.0-132-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "182", + "kernelrelease": "3.13.0-133-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "184", + "kernelrelease": "3.13.0-135-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "186", + "kernelrelease": "3.13.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "188", + "kernelrelease": "3.13.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "190", + "kernelrelease": "3.13.0-141-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "191", + "kernelrelease": "3.13.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "192", + "kernelrelease": "3.13.0-143-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "193", + "kernelrelease": "3.13.0-144-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "196", + "kernelrelease": "3.13.0-147-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "199", + "kernelrelease": "3.13.0-149-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "201", + "kernelrelease": "3.13.0-151-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "203", + "kernelrelease": "3.13.0-153-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "205", + "kernelrelease": "3.13.0-155-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "206", + "kernelrelease": "3.13.0-156-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "207", + "kernelrelease": "3.13.0-157-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "210", + "kernelrelease": "3.13.0-160-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "211", + "kernelrelease": "3.13.0-161-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "212", + "kernelrelease": "3.13.0-162-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "214", + "kernelrelease": "3.13.0-164-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "215", + "kernelrelease": "3.13.0-165-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "216", + "kernelrelease": "3.13.0-166-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "217", + "kernelrelease": "3.13.0-167-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "218", + "kernelrelease": "3.13.0-168-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "220", + "kernelrelease": "3.13.0-170-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "3.13.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "3.13.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "3.13.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "3.13.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "3.13.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "3.13.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "3.13.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "3.13.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "3.13.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "3.13.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "3.13.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "3.13.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "3.13.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "3.13.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73", + "kernelrelease": "3.13.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "3.13.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "3.13.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "3.13.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84", + "kernelrelease": "3.13.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86", + "kernelrelease": "3.13.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "89", + "kernelrelease": "3.13.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "3.13.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "94", + "kernelrelease": "3.13.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "95", + "kernelrelease": "3.13.0-57-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97", + "kernelrelease": "3.13.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98", + "kernelrelease": "3.13.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "3.13.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "3.13.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103", + "kernelrelease": "3.13.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "3.13.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "108", + "kernelrelease": "3.13.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "3.13.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "111", + "kernelrelease": "3.13.0-68-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113", + "kernelrelease": "3.13.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "114", + "kernelrelease": "3.13.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "3.13.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118", + "kernelrelease": "3.13.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120", + "kernelrelease": "3.13.0-76-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121", + "kernelrelease": "3.13.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123", + "kernelrelease": "3.13.0-79-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "127", + "kernelrelease": "3.13.0-83-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "129", + "kernelrelease": "3.13.0-85-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131", + "kernelrelease": "3.13.0-86-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "133", + "kernelrelease": "3.13.0-87-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "135", + "kernelrelease": "3.13.0-88-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "138", + "kernelrelease": "3.13.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "139", + "kernelrelease": "3.13.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140", + "kernelrelease": "3.13.0-93-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "142", + "kernelrelease": "3.13.0-95-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143", + "kernelrelease": "3.13.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "145", + "kernelrelease": "3.13.0-98-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~14.04.2", + "kernelrelease": "3.16.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~14.04.1", + "kernelrelease": "3.16.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~14.04.1", + "kernelrelease": "3.16.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~14.04.1", + "kernelrelease": "3.16.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~14.04.1", + "kernelrelease": "3.16.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~14.04.1", + "kernelrelease": "3.16.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~14.04.1", + "kernelrelease": "3.16.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~14.04.1", + "kernelrelease": "3.16.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~14.04.1", + "kernelrelease": "3.16.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52~14.04.1", + "kernelrelease": "3.16.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~14.04.1", + "kernelrelease": "3.16.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~14.04.1", + "kernelrelease": "3.16.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~14.04.1", + "kernelrelease": "3.16.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59~14.04.1", + "kernelrelease": "3.16.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~14.04.1", + "kernelrelease": "3.16.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~14.04.1", + "kernelrelease": "3.16.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~14.04.1", + "kernelrelease": "3.16.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65~14.04.1", + "kernelrelease": "3.16.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67~14.04.1", + "kernelrelease": "3.16.0-50-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69~14.04.1", + "kernelrelease": "3.16.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71~14.04.1", + "kernelrelease": "3.16.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~14.04.1", + "kernelrelease": "3.16.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~14.04.1", + "kernelrelease": "3.16.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75~14.04.1", + "kernelrelease": "3.16.0-56-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77~14.04.1", + "kernelrelease": "3.16.0-57-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79~14.04.1", + "kernelrelease": "3.16.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80~14.04.1", + "kernelrelease": "3.16.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~14.04.1", + "kernelrelease": "3.16.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87~14.04.1", + "kernelrelease": "3.16.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "89~14.04.1", + "kernelrelease": "3.16.0-69-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "90~14.04.1", + "kernelrelease": "3.16.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92~14.04.1", + "kernelrelease": "3.16.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "95~14.04.1", + "kernelrelease": "3.16.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98~14.04.1", + "kernelrelease": "3.16.0-76-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99~14.04.1", + "kernelrelease": "3.16.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~14.04.1", + "kernelrelease": "3.19.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~14.04.1", + "kernelrelease": "3.19.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~14.04.1", + "kernelrelease": "3.19.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~14.04.1", + "kernelrelease": "3.19.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~14.04.1", + "kernelrelease": "3.19.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~14.04.1", + "kernelrelease": "3.19.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~14.04.1", + "kernelrelease": "3.19.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~14.04.1", + "kernelrelease": "3.19.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~14.04.1", + "kernelrelease": "3.19.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~14.04.1", + "kernelrelease": "3.19.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~14.04.1", + "kernelrelease": "3.19.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~14.04.1", + "kernelrelease": "3.19.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~14.04.1", + "kernelrelease": "3.19.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~14.04.2", + "kernelrelease": "3.19.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~14.04.1", + "kernelrelease": "3.19.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~14.04.1", + "kernelrelease": "3.19.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~14.04.1", + "kernelrelease": "3.19.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~14.04.1", + "kernelrelease": "3.19.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~14.04.1", + "kernelrelease": "3.19.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~14.04.1", + "kernelrelease": "3.19.0-56-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~14.04.1", + "kernelrelease": "3.19.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~14.04.1", + "kernelrelease": "3.19.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69~14.04.1", + "kernelrelease": "3.19.0-61-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~14.04.1", + "kernelrelease": "3.19.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~14.04.1", + "kernelrelease": "3.19.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~14.04.1", + "kernelrelease": "3.19.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76~14.04.1", + "kernelrelease": "3.19.0-68-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77~14.04.1", + "kernelrelease": "3.19.0-69-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79~14.04.1", + "kernelrelease": "3.19.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "81~14.04.1", + "kernelrelease": "3.19.0-73-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "82~14.04.1", + "kernelrelease": "3.19.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~14.04.1", + "kernelrelease": "3.19.0-75-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "85~14.04.1", + "kernelrelease": "3.19.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86~14.04.1", + "kernelrelease": "3.19.0-78-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87~14.04.1", + "kernelrelease": "3.19.0-79-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88~14.04.1", + "kernelrelease": "3.19.0-80-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~14.04.1", + "kernelrelease": "4.15.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~14.04.1", + "kernelrelease": "4.15.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~14.04.2", + "kernelrelease": "4.15.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~14.04.2", + "kernelrelease": "4.15.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~14.04.2", + "kernelrelease": "4.15.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~14.04.2", + "kernelrelease": "4.15.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~14.04.2", + "kernelrelease": "4.15.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~14.04.1", + "kernelrelease": "4.15.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~14.04.1", + "kernelrelease": "4.15.0-1041-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~14.04.1", + "kernelrelease": "4.15.0-1045-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~14.04.1", + "kernelrelease": "4.2.0-18-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~14.04.1", + "kernelrelease": "4.2.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~14.04.1", + "kernelrelease": "4.2.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~14.04.1", + "kernelrelease": "4.2.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~14.04.1", + "kernelrelease": "4.2.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~14.04.1", + "kernelrelease": "4.2.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~14.04.1", + "kernelrelease": "4.2.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~14.04.1", + "kernelrelease": "4.2.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~14.04.1", + "kernelrelease": "4.2.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~14.04.1", + "kernelrelease": "4.2.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~14.04.1", + "kernelrelease": "4.2.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~14.04.1", + "kernelrelease": "4.2.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~14.04.1", + "kernelrelease": "4.2.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~14.04.1", + "kernelrelease": "4.2.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124~14.04.1", + "kernelrelease": "4.4.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126~14.04.1", + "kernelrelease": "4.4.0-103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "127~14.04.1", + "kernelrelease": "4.4.0-104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131~14.04.1", + "kernelrelease": "4.4.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132~14.04.1", + "kernelrelease": "4.4.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "134~14.04.1", + "kernelrelease": "4.4.0-111-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "135~14.04.1", + "kernelrelease": "4.4.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140~14.04.1", + "kernelrelease": "4.4.0-116-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143~14.04.1", + "kernelrelease": "4.4.0-119-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "145~14.04.1", + "kernelrelease": "4.4.0-121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "148~14.04.1", + "kernelrelease": "4.4.0-124-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "153~14.04.1", + "kernelrelease": "4.4.0-127-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "154~14.04.1", + "kernelrelease": "4.4.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "156~14.04.1", + "kernelrelease": "4.4.0-130-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "159~14.04.1", + "kernelrelease": "4.4.0-133-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "160~14.04.1", + "kernelrelease": "4.4.0-134-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "163~14.04.1", + "kernelrelease": "4.4.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "164~14.04.1", + "kernelrelease": "4.4.0-138-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "165~14.04.1", + "kernelrelease": "4.4.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "167~14.04.1", + "kernelrelease": "4.4.0-141-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "168~14.04.1", + "kernelrelease": "4.4.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "169~14.04.2", + "kernelrelease": "4.4.0-143-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "170~14.04.1", + "kernelrelease": "4.4.0-144-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "174~14.04.1", + "kernelrelease": "4.4.0-148-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~14.04.1", + "kernelrelease": "4.4.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~14.04.1", + "kernelrelease": "4.4.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~14.04.1", + "kernelrelease": "4.4.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~14.04.1", + "kernelrelease": "4.4.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~14.04.1", + "kernelrelease": "4.4.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53~14.04.1", + "kernelrelease": "4.4.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~14.04.1", + "kernelrelease": "4.4.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~14.04.1", + "kernelrelease": "4.4.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62~14.04.1", + "kernelrelease": "4.4.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66~14.04.1", + "kernelrelease": "4.4.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68~14.04.1", + "kernelrelease": "4.4.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72~14.04.1", + "kernelrelease": "4.4.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~14.04.1", + "kernelrelease": "4.4.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78~14.04.1", + "kernelrelease": "4.4.0-57-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80~14.04.1", + "kernelrelease": "4.4.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~14.04.1", + "kernelrelease": "4.4.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84~14.04.2", + "kernelrelease": "4.4.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "85~14.04.1", + "kernelrelease": "4.4.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87~14.04.1", + "kernelrelease": "4.4.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88~14.04.1", + "kernelrelease": "4.4.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91~14.04.1", + "kernelrelease": "4.4.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92~14.04.1", + "kernelrelease": "4.4.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "93~14.04.1", + "kernelrelease": "4.4.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "96~14.04.1", + "kernelrelease": "4.4.0-75-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99~14.04.2", + "kernelrelease": "4.4.0-78-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100~14.04.1", + "kernelrelease": "4.4.0-79-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104~14.04.1", + "kernelrelease": "4.4.0-81-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106~14.04.1", + "kernelrelease": "4.4.0-83-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110~14.04.1", + "kernelrelease": "4.4.0-87-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112~14.04.1", + "kernelrelease": "4.4.0-89-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "114~14.04.1", + "kernelrelease": "4.4.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "115~14.04.1", + "kernelrelease": "4.4.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116~14.04.1", + "kernelrelease": "4.4.0-93-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119~14.04.1", + "kernelrelease": "4.4.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120~14.04.1", + "kernelrelease": "4.4.0-97-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121~14.04.1", + "kernelrelease": "4.4.0-98-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "160", + "kernelrelease": "3.13.0-113-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "194", + "kernelrelease": "3.13.0-145-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "208", + "kernelrelease": "3.13.0-158-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "213", + "kernelrelease": "3.13.0-163-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "219", + "kernelrelease": "3.13.0-169-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "3.13.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~14.04.1", + "kernelrelease": "3.16.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~14.04.1", + "kernelrelease": "3.16.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~14.04.1", + "kernelrelease": "3.19.0-18-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~14.04.1", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~14.04.1", + "kernelrelease": "4.15.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "157~14.04.1", + "kernelrelease": "4.4.0-131-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "161~14.04.1", + "kernelrelease": "4.4.0-135-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "166~14.04.1", + "kernelrelease": "4.4.0-140-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "172~14.04.1", + "kernelrelease": "4.4.0-146-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "3.13.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~16.04.1", + "kernelrelease": "4.15.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75~16.04.1", + "kernelrelease": "4.15.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102~16.04.1", + "kernelrelease": "4.15.0-1095-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "108~16.04.1", + "kernelrelease": "4.15.0-1095-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103~16.04.1", + "kernelrelease": "4.15.0-1096-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "122~16.04.1", + "kernelrelease": "4.15.0-1110-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "139", + "kernelrelease": "4.4.0-1125-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "238", + "kernelrelease": "4.4.0-206-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "239", + "kernelrelease": "4.4.0-207-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~16.04.1", + "kernelrelease": "4.10.0-14-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~16.04.1", + "kernelrelease": "4.10.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~16.04.1", + "kernelrelease": "4.10.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~16.04.1", + "kernelrelease": "4.10.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~16.04.1", + "kernelrelease": "4.10.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~16.04.1", + "kernelrelease": "4.10.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~16.04.1", + "kernelrelease": "4.10.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~16.04.2", + "kernelrelease": "4.10.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~16.04.2", + "kernelrelease": "4.10.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~16.04.1", + "kernelrelease": "4.10.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.10.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~16.04.1", + "kernelrelease": "4.10.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~16.04.1", + "kernelrelease": "4.10.0-35-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~16.04.1", + "kernelrelease": "4.10.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.10.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~16.04.1", + "kernelrelease": "4.10.0-40-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~16.04.1", + "kernelrelease": "4.10.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "4.11.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16", + "kernelrelease": "4.11.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~16.04.1", + "kernelrelease": "4.11.0-13-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~16.04.1", + "kernelrelease": "4.11.0-14-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "4.13.0-1005-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8", + "kernelrelease": "4.13.0-1006-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "4.13.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14", + "kernelrelease": "4.13.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "4.13.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19", + "kernelrelease": "4.13.0-1016-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21", + "kernelrelease": "4.13.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~16.04.3", + "kernelrelease": "4.13.0-16-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~16.04.1", + "kernelrelease": "4.13.0-17-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~16.04.1", + "kernelrelease": "4.13.0-19-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~16.04.1", + "kernelrelease": "4.13.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~16.04.2", + "kernelrelease": "4.13.0-25-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~16.04.2", + "kernelrelease": "4.13.0-26-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~16.04.1", + "kernelrelease": "4.13.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~16.04.1", + "kernelrelease": "4.13.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40~16.04.1", + "kernelrelease": "4.13.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.13.0-37-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~16.04.1", + "kernelrelease": "4.13.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~16.04.1", + "kernelrelease": "4.13.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~16.04.1", + "kernelrelease": "4.13.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~16.04.1", + "kernelrelease": "4.13.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~16.04.1", + "kernelrelease": "4.13.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "10~16.04.1", + "kernelrelease": "4.15.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11~16.04.1", + "kernelrelease": "4.15.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102~16.04.1", + "kernelrelease": "4.15.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12~16.04.1", + "kernelrelease": "4.15.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~16.04.2", + "kernelrelease": "4.15.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15~16.04.1", + "kernelrelease": "4.15.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~16.04.1", + "kernelrelease": "4.15.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~16.04.1", + "kernelrelease": "4.15.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17~16.04.1", + "kernelrelease": "4.15.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~16.04.1", + "kernelrelease": "4.15.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~16.04.2", + "kernelrelease": "4.15.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "18~16.04.1", + "kernelrelease": "4.15.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~16.04.2", + "kernelrelease": "4.15.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~16.04.1", + "kernelrelease": "4.15.0-1018-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "19~16.04.1", + "kernelrelease": "4.15.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20~16.04.1", + "kernelrelease": "4.15.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~16.04.1", + "kernelrelease": "4.15.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~16.04.1", + "kernelrelease": "4.15.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "23~16.04.1", + "kernelrelease": "4.15.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22~16.04.1", + "kernelrelease": "4.15.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~16.04.1", + "kernelrelease": "4.15.0-1022-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~16.04.1", + "kernelrelease": "4.15.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~16.04.1", + "kernelrelease": "4.15.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~16.04.2", + "kernelrelease": "4.15.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~16.04.1", + "kernelrelease": "4.15.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~16.04.1", + "kernelrelease": "4.15.0-1025-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27~16.04.1", + "kernelrelease": "4.15.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~16.04.1", + "kernelrelease": "4.15.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28~16.04.1", + "kernelrelease": "4.15.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "30~16.04.1", + "kernelrelease": "4.15.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~16.04.1", + "kernelrelease": "4.15.0-1028-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~16.04.1", + "kernelrelease": "4.15.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~16.04.1", + "kernelrelease": "4.15.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~16.04.1", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~16.04.1", + "kernelrelease": "4.15.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~16.04.1", + "kernelrelease": "4.15.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "33~16.04.1", + "kernelrelease": "4.15.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "34~16.04.1", + "kernelrelease": "4.15.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~16.04.1", + "kernelrelease": "4.15.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.15.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.15.0-1034-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.15.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~16.04.1", + "kernelrelease": "4.15.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "38~16.04.1", + "kernelrelease": "4.15.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~16.04.1", + "kernelrelease": "4.15.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~16.04.1", + "kernelrelease": "4.15.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.15.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43~16.04.1", + "kernelrelease": "4.15.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "4.15.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.15.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45", + "kernelrelease": "4.15.0-1041-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~16.04.1", + "kernelrelease": "4.15.0-1045-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.15.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~16.04.1", + "kernelrelease": "4.15.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.15.0-1047-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54", + "kernelrelease": "4.15.0-1049-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "4.15.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~16.04.1", + "kernelrelease": "4.15.0-1050-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "4.15.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~16.04.1", + "kernelrelease": "4.15.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "4.15.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "4.15.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~16.04.1", + "kernelrelease": "4.15.0-1053-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~16.04.1", + "kernelrelease": "4.15.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60", + "kernelrelease": "4.15.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "4.15.0-1055-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61", + "kernelrelease": "4.15.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61~16.04.1", + "kernelrelease": "4.15.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "4.15.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~16.04.1", + "kernelrelease": "4.15.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "4.15.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "107~16.04.1", + "kernelrelease": "4.15.0-106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65", + "kernelrelease": "4.15.0-1060-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "4.15.0-1060-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "4.15.0-1061-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "65", + "kernelrelease": "4.15.0-1061-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67~16.04.1", + "kernelrelease": "4.15.0-1061-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68~16.04.1", + "kernelrelease": "4.15.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "4.15.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "4.15.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71~16.04.1", + "kernelrelease": "4.15.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~16.04.1", + "kernelrelease": "4.15.0-1065-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "4.15.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "4.15.0-1067-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76~16.04.1", + "kernelrelease": "4.15.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "4.15.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "77~16.04.1", + "kernelrelease": "4.15.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "108~16.04.1", + "kernelrelease": "4.15.0-107-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78~16.04.1", + "kernelrelease": "4.15.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "4.15.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "81~16.04.1", + "kernelrelease": "4.15.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "4.15.0-1075-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87~16.04.1", + "kernelrelease": "4.15.0-1077-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88~16.04.1", + "kernelrelease": "4.15.0-1078-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "90~16.04.1", + "kernelrelease": "4.15.0-1080-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92~16.04.1", + "kernelrelease": "4.15.0-1081-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92~16.04.1", + "kernelrelease": "4.15.0-1082-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "93~16.04.1", + "kernelrelease": "4.15.0-1083-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "94~16.04.1", + "kernelrelease": "4.15.0-1083-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "95~16.04.1", + "kernelrelease": "4.15.0-1084-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98~16.04.1", + "kernelrelease": "4.15.0-1086-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100~16.04.1", + "kernelrelease": "4.15.0-1087-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99~16.04.1", + "kernelrelease": "4.15.0-1089-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103~16.04.1", + "kernelrelease": "4.15.0-1090-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101~16.04.1", + "kernelrelease": "4.15.0-1091-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104~16.04.1", + "kernelrelease": "4.15.0-1091-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102~16.04.1", + "kernelrelease": "4.15.0-1092-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "105~16.04.1", + "kernelrelease": "4.15.0-1092-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99~16.04.1", + "kernelrelease": "4.15.0-1093-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "103~16.04.1", + "kernelrelease": "4.15.0-1093-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106~16.04.1", + "kernelrelease": "4.15.0-1093-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101~16.04.1", + "kernelrelease": "4.15.0-1094-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "107~16.04.1", + "kernelrelease": "4.15.0-1094-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "105~16.04.1", + "kernelrelease": "4.15.0-1095-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106~16.04.1", + "kernelrelease": "4.15.0-1096-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "109~16.04.1", + "kernelrelease": "4.15.0-1096-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104~16.04.1", + "kernelrelease": "4.15.0-1097-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "110~16.04.1", + "kernelrelease": "4.15.0-1097-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "105~16.04.1", + "kernelrelease": "4.15.0-1098-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "109~16.04.1", + "kernelrelease": "4.15.0-1098-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "111~16.04.1", + "kernelrelease": "4.15.0-1098-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106~16.04.1", + "kernelrelease": "4.15.0-1099-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "113~16.04.1", + "kernelrelease": "4.15.0-1102-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "114~16.04.1", + "kernelrelease": "4.15.0-1103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118~16.04.1", + "kernelrelease": "4.15.0-1106-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120~16.04.1", + "kernelrelease": "4.15.0-1108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121~16.04.1", + "kernelrelease": "4.15.0-1109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "123~16.04.1", + "kernelrelease": "4.15.0-1111-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124~16.04.1", + "kernelrelease": "4.15.0-1112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126~16.04.1", + "kernelrelease": "4.15.0-1113-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "113~16.04.1", + "kernelrelease": "4.15.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116~16.04.1", + "kernelrelease": "4.15.0-115-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "118~16.04.1", + "kernelrelease": "4.15.0-117-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119~16.04.1", + "kernelrelease": "4.15.0-118-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "122~16.04.1", + "kernelrelease": "4.15.0-120-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124~16.04.1", + "kernelrelease": "4.15.0-122-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126~16.04.1", + "kernelrelease": "4.15.0-123-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131~16.04.1", + "kernelrelease": "4.15.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132~16.04.1", + "kernelrelease": "4.15.0-129-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14~16.04.1", + "kernelrelease": "4.15.0-13-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "136~16.04.1", + "kernelrelease": "4.15.0-132-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "137~16.04.1", + "kernelrelease": "4.15.0-133-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "140~16.04.1", + "kernelrelease": "4.15.0-136-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "141~16.04.1", + "kernelrelease": "4.15.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143~16.04.1", + "kernelrelease": "4.15.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "144~16.04.1", + "kernelrelease": "4.15.0-140-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "146~16.04.1", + "kernelrelease": "4.15.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "16~16.04.1", + "kernelrelease": "4.15.0-15-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "21~16.04.1", + "kernelrelease": "4.15.0-20-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "24~16.04.1", + "kernelrelease": "4.15.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25~16.04.1", + "kernelrelease": "4.15.0-23-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26~16.04.1", + "kernelrelease": "4.15.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~16.04.1", + "kernelrelease": "4.15.0-29-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~16.04.1", + "kernelrelease": "4.15.0-30-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35~16.04.1", + "kernelrelease": "4.15.0-32-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.15.0-33-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37~16.04.1", + "kernelrelease": "4.15.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39~16.04.1", + "kernelrelease": "4.15.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.15.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~16.04.1", + "kernelrelease": "4.15.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46~16.04.1", + "kernelrelease": "4.15.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~16.04.1", + "kernelrelease": "4.15.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~16.04.1", + "kernelrelease": "4.15.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50~16.04.1", + "kernelrelease": "4.15.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~16.04.1", + "kernelrelease": "4.15.0-50-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~16.04.1", + "kernelrelease": "4.15.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~16.04.1", + "kernelrelease": "4.15.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58~16.04.1", + "kernelrelease": "4.15.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "60~16.04.2", + "kernelrelease": "4.15.0-55-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64~16.04.1", + "kernelrelease": "4.15.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "67~16.04.1", + "kernelrelease": "4.15.0-60-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69~16.04.1", + "kernelrelease": "4.15.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "73~16.04.1", + "kernelrelease": "4.15.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74~16.04.1", + "kernelrelease": "4.15.0-65-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75~16.04.1", + "kernelrelease": "4.15.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78~16.04.1", + "kernelrelease": "4.15.0-69-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79~16.04.1", + "kernelrelease": "4.15.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "81~16.04.1", + "kernelrelease": "4.15.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83~16.04.1", + "kernelrelease": "4.15.0-74-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "86~16.04.1", + "kernelrelease": "4.15.0-76-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88~16.04.1", + "kernelrelease": "4.15.0-88-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92~16.04.1", + "kernelrelease": "4.15.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "97~16.04.1", + "kernelrelease": "4.15.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100~16.04.1", + "kernelrelease": "4.15.0-99-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "4.4.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "4.4.0-1008-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14", + "kernelrelease": "4.4.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "124", + "kernelrelease": "4.4.0-101-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "4.4.0-1010-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "17", + "kernelrelease": "4.4.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "22", + "kernelrelease": "4.4.0-1013-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "18", + "kernelrelease": "4.4.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "20", + "kernelrelease": "4.4.0-1015-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "25", + "kernelrelease": "4.4.0-1016-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "26", + "kernelrelease": "4.4.0-1017-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "22", + "kernelrelease": "4.4.0-1017-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "27", + "kernelrelease": "4.4.0-1018-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "24", + "kernelrelease": "4.4.0-1019-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29", + "kernelrelease": "4.4.0-1020-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "25", + "kernelrelease": "4.4.0-1020-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "26", + "kernelrelease": "4.4.0-1021-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31", + "kernelrelease": "4.4.0-1022-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "28", + "kernelrelease": "4.4.0-1023-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "35", + "kernelrelease": "4.4.0-1026-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "31", + "kernelrelease": "4.4.0-1026-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "4.4.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "4.4.0-1028-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "34", + "kernelrelease": "4.4.0-1029-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "126", + "kernelrelease": "4.4.0-103-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "4.4.0-1030-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "40", + "kernelrelease": "4.4.0-1031-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "37", + "kernelrelease": "4.4.0-1031-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41", + "kernelrelease": "4.4.0-1032-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "38", + "kernelrelease": "4.4.0-1032-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44", + "kernelrelease": "4.4.0-1035-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "41", + "kernelrelease": "4.4.0-1035-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42", + "kernelrelease": "4.4.0-1036-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "4.4.0-1037-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "4.4.0-1038-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "48", + "kernelrelease": "4.4.0-1039-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "45", + "kernelrelease": "4.4.0-1039-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "127", + "kernelrelease": "4.4.0-104-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "4.4.0-1040-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.4.0-1041-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "47", + "kernelrelease": "4.4.0-1041-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52", + "kernelrelease": "4.4.0-1043-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "49", + "kernelrelease": "4.4.0-1043-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "4.4.0-1044-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "52", + "kernelrelease": "4.4.0-1046-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56", + "kernelrelease": "4.4.0-1047-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "53", + "kernelrelease": "4.4.0-1047-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "4.4.0-1048-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "55", + "kernelrelease": "4.4.0-1048-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "58", + "kernelrelease": "4.4.0-1049-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "58", + "kernelrelease": "4.4.0-1051-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61", + "kernelrelease": "4.4.0-1052-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "59", + "kernelrelease": "4.4.0-1052-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "4.4.0-1054-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "61", + "kernelrelease": "4.4.0-1054-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "64", + "kernelrelease": "4.4.0-1055-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "63", + "kernelrelease": "4.4.0-1056-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "4.4.0-1057-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "65", + "kernelrelease": "4.4.0-1058-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "4.4.0-1059-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "69", + "kernelrelease": "4.4.0-1060-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "67", + "kernelrelease": "4.4.0-1060-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "4.4.0-1061-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "71", + "kernelrelease": "4.4.0-1062-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "69", + "kernelrelease": "4.4.0-1062-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "70", + "kernelrelease": "4.4.0-1063-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "71", + "kernelrelease": "4.4.0-1064-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "4.4.0-1065-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "72", + "kernelrelease": "4.4.0-1065-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "76", + "kernelrelease": "4.4.0-1066-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "73", + "kernelrelease": "4.4.0-1066-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "75", + "kernelrelease": "4.4.0-1068-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "79", + "kernelrelease": "4.4.0-1069-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "76", + "kernelrelease": "4.4.0-1069-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "4.4.0-1070-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "77", + "kernelrelease": "4.4.0-1070-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "4.4.0-1071-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "82", + "kernelrelease": "4.4.0-1072-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "84", + "kernelrelease": "4.4.0-1074-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "85", + "kernelrelease": "4.4.0-1075-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "82", + "kernelrelease": "4.4.0-1075-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "4.4.0-1076-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87", + "kernelrelease": "4.4.0-1077-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "84", + "kernelrelease": "4.4.0-1077-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "85", + "kernelrelease": "4.4.0-1078-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "89", + "kernelrelease": "4.4.0-1079-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "86", + "kernelrelease": "4.4.0-1079-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "131", + "kernelrelease": "4.4.0-108-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87", + "kernelrelease": "4.4.0-1080-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "4.4.0-1082-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "93", + "kernelrelease": "4.4.0-1083-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "94", + "kernelrelease": "4.4.0-1084-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "93", + "kernelrelease": "4.4.0-1084-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "96", + "kernelrelease": "4.4.0-1085-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "94", + "kernelrelease": "4.4.0-1085-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98", + "kernelrelease": "4.4.0-1087-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "96", + "kernelrelease": "4.4.0-1087-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99", + "kernelrelease": "4.4.0-1088-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "97", + "kernelrelease": "4.4.0-1088-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98", + "kernelrelease": "4.4.0-1089-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "132", + "kernelrelease": "4.4.0-109-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "101", + "kernelrelease": "4.4.0-1090-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "99", + "kernelrelease": "4.4.0-1090-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "4.4.0-1091-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "103", + "kernelrelease": "4.4.0-1092-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "101", + "kernelrelease": "4.4.0-1092-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "102", + "kernelrelease": "4.4.0-1093-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "105", + "kernelrelease": "4.4.0-1094-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "106", + "kernelrelease": "4.4.0-1095-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "107", + "kernelrelease": "4.4.0-1096-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "109", + "kernelrelease": "4.4.0-1098-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "110", + "kernelrelease": "4.4.0-1099-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "111", + "kernelrelease": "4.4.0-1100-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "112", + "kernelrelease": "4.4.0-1101-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "113", + "kernelrelease": "4.4.0-1102-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "115", + "kernelrelease": "4.4.0-1104-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "116", + "kernelrelease": "4.4.0-1105-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "117", + "kernelrelease": "4.4.0-1106-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "118", + "kernelrelease": "4.4.0-1107-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "120", + "kernelrelease": "4.4.0-1109-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "121", + "kernelrelease": "4.4.0-1110-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "123", + "kernelrelease": "4.4.0-1111-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "124", + "kernelrelease": "4.4.0-1112-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "126", + "kernelrelease": "4.4.0-1113-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "127", + "kernelrelease": "4.4.0-1114-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "131", + "kernelrelease": "4.4.0-1117-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "132", + "kernelrelease": "4.4.0-1118-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "133", + "kernelrelease": "4.4.0-1119-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "135", + "kernelrelease": "4.4.0-112-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "135", + "kernelrelease": "4.4.0-1121-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "136", + "kernelrelease": "4.4.0-1122-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "137", + "kernelrelease": "4.4.0-1123-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "138", + "kernelrelease": "4.4.0-1124-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "140", + "kernelrelease": "4.4.0-1126-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "141", + "kernelrelease": "4.4.0-1127-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "142", + "kernelrelease": "4.4.0-1128-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "140", + "kernelrelease": "4.4.0-116-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "143", + "kernelrelease": "4.4.0-119-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "145", + "kernelrelease": "4.4.0-121-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "148", + "kernelrelease": "4.4.0-124-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "153", + "kernelrelease": "4.4.0-127-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "154", + "kernelrelease": "4.4.0-128-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "156", + "kernelrelease": "4.4.0-130-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "159", + "kernelrelease": "4.4.0-133-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "160", + "kernelrelease": "4.4.0-134-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "163", + "kernelrelease": "4.4.0-137-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "164", + "kernelrelease": "4.4.0-138-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "165", + "kernelrelease": "4.4.0-139-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "167", + "kernelrelease": "4.4.0-141-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "168", + "kernelrelease": "4.4.0-142-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "169", + "kernelrelease": "4.4.0-143-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "171", + "kernelrelease": "4.4.0-145-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "174", + "kernelrelease": "4.4.0-148-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "176", + "kernelrelease": "4.4.0-150-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "178", + "kernelrelease": "4.4.0-151-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "181", + "kernelrelease": "4.4.0-154-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "185", + "kernelrelease": "4.4.0-157-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "187", + "kernelrelease": "4.4.0-159-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "189", + "kernelrelease": "4.4.0-161-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "192", + "kernelrelease": "4.4.0-164-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "193", + "kernelrelease": "4.4.0-165-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "195", + "kernelrelease": "4.4.0-166-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "197", + "kernelrelease": "4.4.0-168-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "198", + "kernelrelease": "4.4.0-169-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "199", + "kernelrelease": "4.4.0-170-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "200", + "kernelrelease": "4.4.0-171-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "203", + "kernelrelease": "4.4.0-173-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "204", + "kernelrelease": "4.4.0-174-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "206", + "kernelrelease": "4.4.0-176-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "207", + "kernelrelease": "4.4.0-177-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "208", + "kernelrelease": "4.4.0-178-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "209", + "kernelrelease": "4.4.0-179-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "214", + "kernelrelease": "4.4.0-184-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "215", + "kernelrelease": "4.4.0-185-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "216", + "kernelrelease": "4.4.0-186-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "217", + "kernelrelease": "4.4.0-187-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "219", + "kernelrelease": "4.4.0-189-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "220", + "kernelrelease": "4.4.0-190-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "224", + "kernelrelease": "4.4.0-193-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "226", + "kernelrelease": "4.4.0-194-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "229", + "kernelrelease": "4.4.0-197-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "230", + "kernelrelease": "4.4.0-198-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "232", + "kernelrelease": "4.4.0-200-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "233", + "kernelrelease": "4.4.0-201-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "235", + "kernelrelease": "4.4.0-203-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "236", + "kernelrelease": "4.4.0-204-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "240", + "kernelrelease": "4.4.0-208-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "241", + "kernelrelease": "4.4.0-209-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "242", + "kernelrelease": "4.4.0-210-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "40", + "kernelrelease": "4.4.0-22-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "43", + "kernelrelease": "4.4.0-24-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47", + "kernelrelease": "4.4.0-28-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.4.0-31-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "53", + "kernelrelease": "4.4.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55", + "kernelrelease": "4.4.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57", + "kernelrelease": "4.4.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "62", + "kernelrelease": "4.4.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "66", + "kernelrelease": "4.4.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "68", + "kernelrelease": "4.4.0-47-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "72", + "kernelrelease": "4.4.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "74", + "kernelrelease": "4.4.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "78", + "kernelrelease": "4.4.0-57-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "80", + "kernelrelease": "4.4.0-59-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "83", + "kernelrelease": "4.4.0-62-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "84", + "kernelrelease": "4.4.0-63-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "85", + "kernelrelease": "4.4.0-64-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "87", + "kernelrelease": "4.4.0-66-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "88", + "kernelrelease": "4.4.0-67-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "91", + "kernelrelease": "4.4.0-70-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "92", + "kernelrelease": "4.4.0-71-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "93", + "kernelrelease": "4.4.0-72-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "96", + "kernelrelease": "4.4.0-75-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "99", + "kernelrelease": "4.4.0-78-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "100", + "kernelrelease": "4.4.0-79-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "104", + "kernelrelease": "4.4.0-81-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "106", + "kernelrelease": "4.4.0-83-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "110", + "kernelrelease": "4.4.0-87-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "112", + "kernelrelease": "4.4.0-89-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "114", + "kernelrelease": "4.4.0-91-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "115", + "kernelrelease": "4.4.0-92-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "116", + "kernelrelease": "4.4.0-93-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "119", + "kernelrelease": "4.4.0-96-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "120", + "kernelrelease": "4.4.0-97-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "121", + "kernelrelease": "4.4.0-98-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.8.0-34-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "36~16.04.1", + "kernelrelease": "4.8.0-36-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "42~16.04.1", + "kernelrelease": "4.8.0-39-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "44~16.04.1", + "kernelrelease": "4.8.0-41-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "48~16.04.1", + "kernelrelease": "4.8.0-45-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "49~16.04.1", + "kernelrelease": "4.8.0-46-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "52~16.04.1", + "kernelrelease": "4.8.0-49-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "55~16.04.1", + "kernelrelease": "4.8.0-52-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "57~16.04.1", + "kernelrelease": "4.8.0-54-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "61~16.04.1", + "kernelrelease": "4.8.0-56-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63~16.04.1", + "kernelrelease": "4.8.0-58-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9", + "kernelrelease": "4.11.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "11", + "kernelrelease": "4.11.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13", + "kernelrelease": "4.11.0-1013-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "14", + "kernelrelease": "4.11.0-1014-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "12", + "kernelrelease": "4.13.0-1009-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "15", + "kernelrelease": "4.13.0-1012-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "9~16.04.1", + "kernelrelease": "4.15.0-1007-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "13~16.04.1", + "kernelrelease": "4.15.0-1011-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "31~16.04.1", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~16.04.1", + "kernelrelease": "4.15.0-1030-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "4.15.0-1042-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "41~16.04.1", + "kernelrelease": "4.15.0-38-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "51~16.04.1", + "kernelrelease": "4.15.0-48-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "39", + "kernelrelease": "4.4.0-1033-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "46", + "kernelrelease": "4.4.0-1037-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "44", + "kernelrelease": "4.4.0-1038-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "50", + "kernelrelease": "4.4.0-1044-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "59", + "kernelrelease": "4.4.0-1050-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "72", + "kernelrelease": "4.4.0-1063-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "77", + "kernelrelease": "4.4.0-1067-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "83", + "kernelrelease": "4.4.0-1073-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "91", + "kernelrelease": "4.4.0-1081-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "146", + "kernelrelease": "4.4.0-122-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "157", + "kernelrelease": "4.4.0-131-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "161", + "kernelrelease": "4.4.0-135-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "166", + "kernelrelease": "4.4.0-140-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "172", + "kernelrelease": "4.4.0-146-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "63", + "kernelrelease": "4.4.0-43-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "98", + "kernelrelease": "4.4.0-77-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "45~16.04.1", + "kernelrelease": "4.8.0-42-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "47~16.04.1", + "kernelrelease": "4.8.0-44-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "54~16.04.1", + "kernelrelease": "4.8.0-51-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "56~16.04.1", + "kernelrelease": "4.8.0-53-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "37", + "kernelrelease": "4.4.0-21-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "5.15.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1024-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-generic", + "target": "ubuntu-generic" + } + ], + "Flatcar": [ + { + "kernelversion": 1, + "kernelrelease": "1688.5.3", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1745.3.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1745.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1745.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1745.6.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1745.7.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1800.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1800.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1800.6.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1800.7.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1855.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1855.4.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1855.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1911.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1911.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1911.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1967.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1967.3.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1967.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1967.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1967.6.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2023.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2023.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2079.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2079.3.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2079.3.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2079.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2079.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2079.6.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2135.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2135.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2135.6.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2191.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2191.4.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2191.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2247.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2247.6.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2247.7.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2303.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2303.3.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2303.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2345.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2345.3.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2512.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2512.2.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2512.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2512.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2512.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.10.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.11.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.12.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.5.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.6.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.7.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.8.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.9.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2765.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2765.2.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2765.2.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2765.2.3", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2765.2.4", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2765.2.5", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2765.2.6", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.2.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.2.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.2.3", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.2.4", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.2.5", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.2.6", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2983.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2983.2.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.2.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.2.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.2.3", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.2.4", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3139.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1722.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1745.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1745.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1772.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1772.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1772.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1772.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1800.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1800.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1828.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1828.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1828.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1855.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1855.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1883.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1911.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1911.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1939.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1939.2.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1967.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1967.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1995.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2023.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2023.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2023.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2051.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2051.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2079.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2079.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2107.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2107.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2107.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2135.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2135.3.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2163.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2163.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2191.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2191.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2191.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2219.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2219.2.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2219.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2247.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2247.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2247.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2275.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2303.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2303.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2331.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2331.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2345.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2345.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2411.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2411.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2512.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2512.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2513.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2513.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.3.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.4.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2632.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2643.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2643.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2705.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2705.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2705.1.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2765.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2801.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2823.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2823.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2823.1.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2823.1.3", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2920.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2942.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2942.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2942.1.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2983.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2983.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2983.1.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3066.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3066.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3066.1.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3139.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3139.1.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3185.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1745.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1758.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1772.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1786.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1786.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1786.2.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1800.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1800.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1814.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1828.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1849.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1855.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1855.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1871.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1883.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1897.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1911.0.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1925.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1939.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1953.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1967.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1981.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "1995.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2016.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2023.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2037.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2051.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2065.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2079.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2093.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2107.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2121.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2135.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2135.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2149.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2163.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2163.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2163.2.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2184.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2191.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2205.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2219.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2219.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2234.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2247.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2247.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2261.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2275.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2275.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2296.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2303.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2317.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2331.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2345.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2345.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2345.0.2", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2387.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2411.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2430.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2466.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2492.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2513.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2513.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2513.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2592.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2605.1.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2632.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2643.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2661.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2671.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2697.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2705.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2723.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2748.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2765.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2783.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2801.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2801.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2823.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2857.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2879.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2879.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2905.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2920.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2942.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2955.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2969.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "2983.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3005.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3005.0.1", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3033.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3046.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3066.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3115.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3127.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3139.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3165.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3185.0.0", + "target": "flatcar" + }, + { + "kernelversion": 1, + "kernelrelease": "3200.0.0", + "target": "flatcar" } + ] } From f6dbbc9bb92d03de1dbb63bf3217fcc481d39a64 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 24 Apr 2022 00:55:06 +0000 Subject: [PATCH 096/259] [CI] updated kernel json lists. --- kernels/aarch64/list.json | 332 ++++++++++------- kernels/x86_64/list.json | 729 ++++++++++++++++++++++---------------- 2 files changed, 618 insertions(+), 443 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 2055de0..388dbca 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -3,287 +3,287 @@ "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.aarch64", + "kernelrelease": "4.14.106-97.85.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.aarch64", + "kernelrelease": "4.14.165-131.185.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.aarch64", + "kernelrelease": "4.14.177-139.253.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.aarch64", + "kernelrelease": "4.14.200-155.322.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.aarch64", + "kernelrelease": "4.14.186-146.268.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.aarch64", + "kernelrelease": "4.14.225-169.362.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.aarch64", + "kernelrelease": "4.14.181-142.260.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.aarch64", + "kernelrelease": "4.14.173-137.228.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.aarch64", + "kernelrelease": "4.14.238-182.422.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.aarch64", + "kernelrelease": "4.14.241-184.433.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.aarch64", + "kernelrelease": "4.14.252-195.481.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.aarch64", + "kernelrelease": "4.14.181-140.257.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.aarch64", + "kernelrelease": "4.14.219-164.354.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.aarch64", + "kernelrelease": "4.14.133-113.112.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.aarch64", + "kernelrelease": "4.14.152-127.182.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.aarch64", + "kernelrelease": "4.14.104-95.84.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.aarch64", + "kernelrelease": "4.14.268-205.500.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.aarch64", + "kernelrelease": "4.14.252-195.483.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.aarch64", + "kernelrelease": "4.14.171-136.231.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.aarch64", + "kernelrelease": "4.14.77-86.82.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.aarch64", + "kernelrelease": "4.14.209-160.339.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.aarch64", + "kernelrelease": "4.14.114-103.97.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.aarch64", + "kernelrelease": "4.14.198-152.320.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.aarch64", + "kernelrelease": "4.14.165-133.209.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.aarch64", + "kernelrelease": "4.14.109-99.92.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.aarch64", + "kernelrelease": "4.14.177-139.254.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.aarch64", + "kernelrelease": "4.14.256-197.484.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.aarch64", + "kernelrelease": "4.14.158-129.185.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.aarch64", + "kernelrelease": "4.14.94-89.73.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.aarch64", + "kernelrelease": "4.14.101-91.76.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.aarch64", + "kernelrelease": "4.14.114-105.126.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.aarch64", + "kernelrelease": "4.14.154-128.181.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.aarch64", + "kernelrelease": "4.14.219-161.340.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.aarch64", + "kernelrelease": "4.14.248-189.473.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.aarch64", + "kernelrelease": "4.14.214-160.339.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.aarch64", + "kernelrelease": "4.14.138-114.102.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.aarch64", + "kernelrelease": "4.14.97-90.72.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.aarch64", + "kernelrelease": "4.14.231-173.360.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.aarch64", + "kernelrelease": "4.14.225-168.357.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.aarch64", + "kernelrelease": "4.14.121-109.96.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.aarch64", + "kernelrelease": "4.14.133-113.105.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.aarch64", + "kernelrelease": "4.14.193-149.317.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.aarch64", + "kernelrelease": "4.14.88-88.76.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.aarch64", + "kernelrelease": "4.14.203-156.332.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.aarch64", + "kernelrelease": "4.14.275-207.503.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.aarch64", + "kernelrelease": "4.14.231-173.361.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.aarch64", + "kernelrelease": "4.14.273-207.502.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.aarch64", + "kernelrelease": "4.14.77-81.59.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.aarch64", + "kernelrelease": "4.14.123-111.109.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.aarch64", + "kernelrelease": "4.14.232-176.381.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.aarch64", + "kernelrelease": "4.14.88-88.73.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.aarch64", + "kernelrelease": "4.14.173-137.229.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.aarch64", + "kernelrelease": "4.14.152-124.171.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.aarch64", + "kernelrelease": "4.14.143-118.123.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.aarch64", + "kernelrelease": "4.14.77-80.57.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.aarch64", + "kernelrelease": "4.14.128-112.105.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.aarch64", + "kernelrelease": "4.14.146-119.123.amzn2.aarch64", "target": "amazonlinux2" }, { @@ -293,52 +293,57 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.aarch64", + "kernelrelease": "4.14.262-200.489.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.aarch64", + "kernelrelease": "4.14.243-185.433.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.aarch64", + "kernelrelease": "4.14.146-120.181.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.aarch64", + "kernelrelease": "4.14.246-187.474.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.aarch64", + "kernelrelease": "4.14.209-160.335.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.aarch64", + "kernelrelease": "4.14.192-147.314.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.aarch64", + "kernelrelease": "4.14.232-177.418.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.aarch64", + "kernelrelease": "5.10.82-83.359.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.aarch64", + "kernelrelease": "5.10.50-44.131.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.75-79.358.amzn2.aarch64", + "kernelrelease": "5.10.29-27.128.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.50-44.132.amzn2.aarch64", "target": "amazonlinux2" }, { @@ -348,12 +353,12 @@ }, { "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.aarch64", + "kernelrelease": "5.10.59-52.142.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.aarch64", + "kernelrelease": "5.10.62-55.141.amzn2.aarch64", "target": "amazonlinux2" }, { @@ -363,17 +368,22 @@ }, { "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.aarch64", + "kernelrelease": "5.10.68-62.173.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.aarch64", + "kernelrelease": "5.10.29-27.126.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.aarch64", + "kernelrelease": "5.10.109-104.500.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.96-90.460.amzn2.aarch64", "target": "amazonlinux2" }, { @@ -383,17 +393,17 @@ }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.aarch64", + "kernelrelease": "5.10.35-31.135.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.aarch64", + "kernelrelease": "5.10.75-79.358.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.aarch64", + "kernelrelease": "5.10.106-102.504.amzn2.aarch64", "target": "amazonlinux2" }, { @@ -403,37 +413,37 @@ }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.189.amzn2.aarch64", + "kernelrelease": "5.4.95-42.163.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.aarch64", + "kernelrelease": "5.4.156-83.273.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.aarch64", + "kernelrelease": "5.4.105-48.177.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.aarch64", + "kernelrelease": "5.4.80-40.140.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.aarch64", + "kernelrelease": "5.4.20-12.75.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.aarch64", + "kernelrelease": "5.4.58-27.104.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.aarch64", + "kernelrelease": "5.4.181-99.354.amzn2.aarch64", "target": "amazonlinux2" }, { @@ -443,32 +453,37 @@ }, { "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.aarch64", + "kernelrelease": "5.4.129-62.227.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.aarch64", + "kernelrelease": "5.4.162-86.275.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.aarch64", + "kernelrelease": "5.4.149-73.259.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.aarch64", + "kernelrelease": "5.4.74-36.135.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.aarch64", + "kernelrelease": "5.4.129-63.229.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.aarch64", + "kernelrelease": "5.4.172-90.336.amzn2.aarch64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.141-67.229.amzn2.aarch64", "target": "amazonlinux2" }, { @@ -478,57 +493,57 @@ }, { "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.aarch64", + "kernelrelease": "5.4.110-54.189.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.aarch64", + "kernelrelease": "5.4.110-54.182.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.aarch64", + "kernelrelease": "5.4.144-69.257.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.aarch64", + "kernelrelease": "5.4.46-19.75.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.aarch64", + "kernelrelease": "5.4.68-34.125.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.aarch64", + "kernelrelease": "5.4.91-41.139.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.aarch64", + "kernelrelease": "5.4.50-25.83.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.aarch64", + "kernelrelease": "5.4.176-91.338.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.aarch64", + "kernelrelease": "5.4.188-104.359.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.aarch64", + "kernelrelease": "5.4.46-23.77.amzn2.aarch64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.aarch64", + "kernelrelease": "5.4.186-102.354.amzn2.aarch64", "target": "amazonlinux2" } ], @@ -1596,7 +1611,7 @@ }, { "kernelversion": 1, - "kernelrelease": "5.17.1-1~exp1-arm64", + "kernelrelease": "5.17.3-1-arm64", "target": "debian" }, { @@ -1673,8 +1688,8 @@ }, { "kernelversion": "133", - "kernelrelease": "4.15.0-1124-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1124-aws", + "target": "ubuntu-aws" }, { "kernelversion": "134", @@ -1683,14 +1698,19 @@ }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1126-generic", + "target": "ubuntu-generic" }, { "kernelversion": "136", "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws" }, + { + "kernelversion": "137", + "kernelrelease": "4.15.0-1128-aws", + "target": "ubuntu-aws" + }, { "kernelversion": "175", "kernelrelease": "4.15.0-167-generic", @@ -1731,6 +1751,11 @@ "kernelrelease": "4.15.0-176-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "186", + "kernelrelease": "4.15.0-177-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "31", "kernelrelease": "5.0.0-1028-aws", @@ -1858,8 +1883,8 @@ }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1031-aws", + "target": "ubuntu-aws" }, { "kernelversion": "34", @@ -3541,11 +3566,36 @@ "kernelrelease": "4.15.0-20-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1004-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "28", "kernelrelease": "5.15.0-27-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "8~22.04.2", + "kernelrelease": "5.17.0-8-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "4", "kernelrelease": "5.15.0-1002-generic", @@ -3588,13 +3638,13 @@ }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1028-aws", + "target": "ubuntu-aws" }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1029-generic", + "target": "ubuntu-generic" }, { "kernelversion": "32~20.04.2", @@ -3648,8 +3698,8 @@ }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1019-generic", + "target": "ubuntu-generic" }, { "kernelversion": "22~20.04.1", @@ -3731,6 +3781,11 @@ "kernelrelease": "5.13.0-40-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "46~20.04.1", + "kernelrelease": "5.13.0-41-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "18~20.04.2", "kernelrelease": "5.15.0-18-generic", @@ -3791,6 +3846,11 @@ "kernelrelease": "5.4.0-1034-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "50", "kernelrelease": "5.4.0-1046-generic", @@ -3896,6 +3956,11 @@ "kernelrelease": "5.4.0-1071-aws", "target": "ubuntu-aws" }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1071-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "77", "kernelrelease": "5.4.0-1072-aws", @@ -3926,6 +3991,11 @@ "kernelrelease": "5.4.0-109-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "124", + "kernelrelease": "5.4.0-110-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "110", "kernelrelease": "5.4.0-97-generic", @@ -3988,18 +4058,18 @@ }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1023-aws", + "target": "ubuntu-aws" }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1025-generic", + "target": "ubuntu-generic" }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws" }, { "kernelversion": "31~20.04.2", @@ -4291,11 +4361,6 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws" }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-generic", - "target": "ubuntu-generic" - }, { "kernelversion": "39", "kernelrelease": "5.4.0-1036-generic", @@ -4903,13 +4968,13 @@ }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws" }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1027-generic", + "target": "ubuntu-generic" }, { "kernelversion": "55", @@ -4968,8 +5033,8 @@ }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws" }, { "kernelversion": "20", @@ -4983,8 +5048,8 @@ }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1019-aws", + "target": "ubuntu-aws" }, { "kernelversion": "22", @@ -5081,6 +5146,11 @@ "kernelrelease": "5.13.0-40-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "46", + "kernelrelease": "5.13.0-41-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "7", "kernelrelease": "5.13.0-1006-aws", diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index c1eac47..47c06f7 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -137,67 +137,67 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.152-98.182.amzn1.x86_64", + "kernelrelease": "4.14.33-51.34.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.76.amzn1.x86_64", + "kernelrelease": "4.14.42-52.37.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.209-117.337.amzn1.x86_64", + "kernelrelease": "4.14.109-80.92.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.165-103.209.amzn1.x86_64", + "kernelrelease": "4.14.200-116.320.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.232-123.381.amzn1.x86_64", + "kernelrelease": "4.14.203-116.332.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.154-99.181.amzn1.x86_64", + "kernelrelease": "4.14.181-108.257.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.422.amzn1.x86_64", + "kernelrelease": "4.14.193-113.317.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.121-85.96.amzn1.x86_64", + "kernelrelease": "4.14.59-64.43.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.186-110.268.amzn1.x86_64", + "kernelrelease": "4.14.104-78.84.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.225-121.357.amzn1.x86_64", + "kernelrelease": "4.14.158-101.185.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.77-69.57.amzn1.x86_64", + "kernelrelease": "4.14.209-117.337.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.181-108.257.amzn1.x86_64", + "kernelrelease": "4.14.238-125.421.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.34.amzn1.x86_64", + "kernelrelease": "4.14.225-121.362.amzn1.x86_64", "target": "amazonlinux" }, { @@ -207,52 +207,57 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.123-86.109.amzn1.x86_64", + "kernelrelease": "4.14.171-105.231.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.114-83.126.amzn1.x86_64", + "kernelrelease": "4.14.33-51.37.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.173-106.229.amzn1.x86_64", + "kernelrelease": "4.14.133-88.112.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.73.amzn1.x86_64", + "kernelrelease": "4.14.106-79.86.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.97-74.72.amzn1.x86_64", + "kernelrelease": "4.14.225-121.357.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.42-52.37.amzn1.x86_64", + "kernelrelease": "4.14.77-69.57.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.165-102.185.amzn1.x86_64", + "kernelrelease": "4.14.121-85.96.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.143-91.122.amzn1.x86_64", + "kernelrelease": "4.14.219-119.340.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.128-87.105.amzn1.x86_64", + "kernelrelease": "4.14.154-99.181.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.114-82.97.amzn1.x86_64", + "kernelrelease": "4.14.238-125.422.amzn1.x86_64", + "target": "amazonlinux" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.248-129.473.amzn1.x86_64", "target": "amazonlinux" }, { @@ -262,32 +267,32 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.177-107.254.amzn1.x86_64", + "kernelrelease": "4.14.273-140.502.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.112.amzn1.x86_64", + "kernelrelease": "4.14.114-82.97.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.104-78.84.amzn1.x86_64", + "kernelrelease": "4.14.47-56.37.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.219-119.340.amzn1.x86_64", + "kernelrelease": "4.14.101-75.76.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.51-60.38.amzn1.x86_64", + "kernelrelease": "4.14.232-123.381.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.225-121.362.amzn1.x86_64", + "kernelrelease": "4.14.268-139.500.amzn1.x86_64", "target": "amazonlinux" }, { @@ -297,57 +302,57 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.138-89.102.amzn1.x86_64", + "kernelrelease": "4.14.173-106.229.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.171-105.231.amzn1.x86_64", + "kernelrelease": "4.14.128-87.105.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.268-139.500.amzn1.x86_64", + "kernelrelease": "4.14.77-70.82.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.101-75.76.amzn1.x86_64", + "kernelrelease": "4.14.67-66.56.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.106-79.86.amzn1.x86_64", + "kernelrelease": "4.14.123-86.109.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.158-101.185.amzn1.x86_64", + "kernelrelease": "4.14.70-67.55.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.67-66.56.amzn1.x86_64", + "kernelrelease": "4.14.143-91.122.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.105.amzn1.x86_64", + "kernelrelease": "4.14.97-74.72.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.486.amzn1.x86_64", + "kernelrelease": "4.14.186-110.268.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.55-62.37.amzn1.x86_64", + "kernelrelease": "4.14.77-70.59.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.248-129.473.amzn1.x86_64", + "kernelrelease": "4.14.262-135.486.amzn1.x86_64", "target": "amazonlinux" }, { @@ -357,199 +362,199 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.146-93.123.amzn1.x86_64", + "kernelrelease": "4.14.152-98.182.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.47-56.37.amzn1.x86_64", + "kernelrelease": "4.14.114-83.126.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.37.amzn1.x86_64", + "kernelrelease": "4.14.138-89.102.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.70-67.55.amzn1.x86_64", + "kernelrelease": "4.14.55-62.37.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.421.amzn1.x86_64", + "kernelrelease": "4.14.51-60.38.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.273-140.502.amzn1.x86_64", + "kernelrelease": "4.14.252-131.483.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.200-116.320.amzn1.x86_64", + "kernelrelease": "4.14.214-118.339.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.59.amzn1.x86_64", + "kernelrelease": "4.14.88-72.73.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.82.amzn1.x86_64", + "kernelrelease": "4.14.165-103.209.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.203-116.332.amzn1.x86_64", + "kernelrelease": "4.14.133-88.105.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.252-131.483.amzn1.x86_64", + "kernelrelease": "4.14.88-72.76.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.109-80.92.amzn1.x86_64", + "kernelrelease": "4.14.177-107.254.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.193-113.317.amzn1.x86_64", + "kernelrelease": "4.14.165-102.185.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.59-64.43.amzn1.x86_64", + "kernelrelease": "4.14.146-93.123.amzn1.x86_64", "target": "amazonlinux" }, { "kernelversion": 1, - "kernelrelease": "4.14.214-118.339.amzn1.x86_64", + "kernelrelease": "4.14.275-142.503.amzn1.x86_64", "target": "amazonlinux" } ], "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.51-66.38.amzn2.x86_64", + "kernelrelease": "4.14.133-113.112.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.x86_64", + "kernelrelease": "4.14.248-189.473.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.9.76-38.79.amzn2.x86_64", + "kernelrelease": "4.14.209-160.335.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.72-73.55.amzn2.x86_64", + "kernelrelease": "4.14.193-149.317.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.x86_64", + "kernelrelease": "4.9.76-38.79.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.x86_64", + "kernelrelease": "4.14.33-59.34.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.x86_64", + "kernelrelease": "4.14.256-197.484.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.x86_64", + "kernelrelease": "4.14.128-112.105.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.x86_64", + "kernelrelease": "4.14.51-66.38.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.x86_64", + "kernelrelease": "4.14.138-114.102.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.9.75-1.56.amzn2.x86_64", + "kernelrelease": "4.14.114-105.126.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.x86_64", + "kernelrelease": "4.14.177-139.253.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.26-54.32.amzn2.x86_64", + "kernelrelease": "4.14.219-164.354.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.x86_64", + "kernelrelease": "4.9.70-2.243.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.x86_64", + "kernelrelease": "4.14.203-156.332.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.55-68.37.amzn2.x86_64", + "kernelrelease": "4.9.62-10.57.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.x86_64", + "kernelrelease": "4.14.231-173.361.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.9.62-10.57.amzn2.x86_64", + "kernelrelease": "4.14.198-152.320.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.x86_64", + "kernelrelease": "4.14.238-182.421.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.x86_64", + "kernelrelease": "4.14.143-118.123.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.x86_64", + "kernelrelease": "4.14.232-176.381.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.42-61.37.amzn2.x86_64", + "kernelrelease": "4.14.88-88.76.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.x86_64", + "kernelrelease": "4.14.104-95.84.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.x86_64", + "kernelrelease": "4.14.252-195.481.amzn2.x86_64", "target": "amazonlinux2" }, { @@ -557,6 +562,16 @@ "kernelrelease": "4.14.101-91.76.amzn2.x86_64", "target": "amazonlinux2" }, + { + "kernelversion": 1, + "kernelrelease": "4.14.121-109.96.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.200-155.322.amzn2.x86_64", + "target": "amazonlinux2" + }, { "kernelversion": 1, "kernelrelease": "4.14.33-59.37.amzn2.x86_64", @@ -564,7 +579,7 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.47-63.37.amzn2.x86_64", + "kernelrelease": "4.14.88-88.73.amzn2.x86_64", "target": "amazonlinux2" }, { @@ -574,232 +589,232 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.59-68.43.amzn2.x86_64", + "kernelrelease": "4.14.72-73.55.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.x86_64", + "kernelrelease": "4.14.106-97.85.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.x86_64", + "kernelrelease": "4.14.47-64.38.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.x86_64", + "kernelrelease": "4.14.186-146.268.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.x86_64", + "kernelrelease": "4.14.165-133.209.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.x86_64", + "kernelrelease": "4.14.268-205.500.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.x86_64", + "kernelrelease": "4.9.75-1.56.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.x86_64", + "kernelrelease": "4.14.241-184.433.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.x86_64", + "kernelrelease": "4.14.252-195.483.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.x86_64", + "kernelrelease": "4.14.192-147.314.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.x86_64", + "kernelrelease": "4.14.42-61.37.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.x86_64", + "kernelrelease": "4.14.225-168.357.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.70-72.55.amzn2.x86_64", + "kernelrelease": "4.14.97-90.72.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.x86_64", + "kernelrelease": "4.14.273-207.502.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.x86_64", + "kernelrelease": "4.14.26-54.32.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.9.85-46.56.amzn2.x86_64", + "kernelrelease": "4.14.181-142.260.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.x86_64", + "kernelrelease": "4.14.209-160.339.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.x86_64", + "kernelrelease": "4.9.81-44.57.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.x86_64", + "kernelrelease": "4.14.154-128.181.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.x86_64", + "kernelrelease": "4.14.232-177.418.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.67-71.56.amzn2.x86_64", + "kernelrelease": "4.14.214-160.339.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.x86_64", + "kernelrelease": "4.14.94-89.73.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.x86_64", + "kernelrelease": "4.14.262-200.489.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.9.85-47.59.amzn2.x86_64", + "kernelrelease": "4.14.181-140.257.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.x86_64", + "kernelrelease": "4.14.152-127.182.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.x86_64", + "kernelrelease": "4.14.55-68.37.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.x86_64", + "kernelrelease": "4.14.171-136.231.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.x86_64", + "kernelrelease": "4.14.77-81.59.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.x86_64", + "kernelrelease": "4.14.123-111.109.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.x86_64", + "kernelrelease": "4.14.62-70.117.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.x86_64", + "kernelrelease": "4.14.77-80.57.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.x86_64", + "kernelrelease": "4.9.85-46.56.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.x86_64", + "kernelrelease": "4.14.173-137.229.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.9.70-2.243.amzn2.x86_64", + "kernelrelease": "4.14.173-137.228.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.x86_64", + "kernelrelease": "4.14.219-161.340.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.x86_64", + "kernelrelease": "4.14.47-63.37.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.x86_64", + "kernelrelease": "4.14.114-103.97.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.x86_64", + "kernelrelease": "4.14.146-119.123.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.x86_64", + "kernelrelease": "4.14.158-129.185.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.47-64.38.amzn2.x86_64", + "kernelrelease": "4.9.77-41.59.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.x86_64", + "kernelrelease": "4.14.77-86.82.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.x86_64", + "kernelrelease": "4.14.146-120.181.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.34.amzn2.x86_64", + "kernelrelease": "4.14.238-182.422.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.x86_64", + "kernelrelease": "4.14.243-185.433.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.x86_64", + "kernelrelease": "4.14.275-207.503.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.x86_64", + "kernelrelease": "4.14.59-68.43.amzn2.x86_64", "target": "amazonlinux2" }, { @@ -809,117 +824,117 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.x86_64", + "kernelrelease": "4.14.231-173.360.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.x86_64", + "kernelrelease": "4.9.85-47.59.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.9.81-44.57.amzn2.x86_64", + "kernelrelease": "4.14.67-71.56.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.x86_64", + "kernelrelease": "4.14.225-169.362.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.9.77-41.59.amzn2.x86_64", + "kernelrelease": "4.14.133-113.105.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.x86_64", + "kernelrelease": "4.14.70-72.55.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.62-70.117.amzn2.x86_64", + "kernelrelease": "4.14.177-139.254.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.x86_64", + "kernelrelease": "4.14.165-131.185.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.x86_64", + "kernelrelease": "4.14.246-187.474.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.x86_64", + "kernelrelease": "5.10.96-90.460.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.x86_64", + "kernelrelease": "5.10.29-27.126.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.x86_64", + "kernelrelease": "5.10.29-27.128.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.x86_64", + "kernelrelease": "5.10.93-87.444.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.x86_64", + "kernelrelease": "5.10.59-52.142.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.x86_64", + "kernelrelease": "5.10.82-83.359.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.x86_64", + "kernelrelease": "5.10.109-104.500.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.x86_64", + "kernelrelease": "5.10.68-62.173.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.x86_64", + "kernelrelease": "5.10.50-44.132.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.x86_64", + "kernelrelease": "5.10.102-99.473.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.x86_64", + "kernelrelease": "5.10.47-39.130.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.x86_64", + "kernelrelease": "5.10.50-44.131.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.x86_64", + "kernelrelease": "5.10.62-55.141.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.10.93-87.444.amzn2.x86_64", + "kernelrelease": "5.10.35-31.135.amzn2.x86_64", "target": "amazonlinux2" }, { @@ -929,77 +944,77 @@ }, { "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.x86_64", + "kernelrelease": "5.10.106-102.504.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.x86_64", + "kernelrelease": "5.4.91-41.139.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.x86_64", + "kernelrelease": "5.4.149-73.259.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.x86_64", + "kernelrelease": "5.4.95-42.163.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.x86_64", + "kernelrelease": "5.4.188-104.359.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.x86_64", + "kernelrelease": "5.4.80-40.140.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.x86_64", + "kernelrelease": "5.4.110-54.189.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.x86_64", + "kernelrelease": "5.4.117-58.216.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.x86_64", + "kernelrelease": "5.4.58-27.104.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.x86_64", + "kernelrelease": "5.4.186-102.354.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.x86_64", + "kernelrelease": "5.4.181-99.354.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.x86_64", + "kernelrelease": "5.4.144-69.257.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.x86_64", + "kernelrelease": "5.4.110-54.182.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.x86_64", + "kernelrelease": "5.4.46-19.75.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.x86_64", + "kernelrelease": "5.4.156-83.273.amzn2.x86_64", "target": "amazonlinux2" }, { @@ -1009,62 +1024,67 @@ }, { "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.x86_64", + "kernelrelease": "5.4.46-23.77.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.x86_64", + "kernelrelease": "5.4.58-32.125.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.x86_64", + "kernelrelease": "5.4.129-63.229.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.x86_64", + "kernelrelease": "5.4.172-90.336.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.x86_64", + "kernelrelease": "5.4.74-36.135.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.x86_64", + "kernelrelease": "5.4.141-67.229.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.x86_64", + "kernelrelease": "5.4.20-12.75.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.x86_64", + "kernelrelease": "5.4.176-91.338.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.x86_64", + "kernelrelease": "5.4.68-34.125.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.189.amzn2.x86_64", + "kernelrelease": "5.4.50-25.83.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.x86_64", + "kernelrelease": "5.4.129-62.227.amzn2.x86_64", "target": "amazonlinux2" }, { "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.x86_64", + "kernelrelease": "5.4.162-86.275.amzn2.x86_64", + "target": "amazonlinux2" + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.105-48.177.amzn2.x86_64", "target": "amazonlinux2" } ], @@ -7320,12 +7340,12 @@ }, { "kernelversion": 1, - "kernelrelease": "5.17.1-1~exp1-amd64", + "kernelrelease": "3.16.56-1+deb8u1-amd64", "target": "debian" }, { "kernelversion": 1, - "kernelrelease": "3.16.56-1+deb8u1-amd64", + "kernelrelease": "5.17.3-1-amd64", "target": "debian" }, { @@ -7445,6 +7465,11 @@ "kernelrelease": "4.15.0-1113-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "117", + "kernelrelease": "4.15.0-1114-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "123", "kernelrelease": "4.15.0-1116-aws", @@ -7480,6 +7505,11 @@ "kernelrelease": "4.15.0-1121-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-1122-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "133", "kernelrelease": "4.15.0-1124-aws", @@ -7495,6 +7525,11 @@ "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws" }, + { + "kernelversion": "137", + "kernelrelease": "4.15.0-1128-aws", + "target": "ubuntu-aws" + }, { "kernelversion": "143", "kernelrelease": "4.15.0-1130-generic", @@ -7560,6 +7595,11 @@ "kernelrelease": "4.15.0-176-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "186", + "kernelrelease": "4.15.0-177-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "31", "kernelrelease": "5.0.0-1028-aws", @@ -7647,8 +7687,8 @@ }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1066-generic", + "target": "ubuntu-generic" }, { "kernelversion": "72~18.04.1", @@ -7702,8 +7742,8 @@ }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1072-generic", + "target": "ubuntu-generic" }, { "kernelversion": "79~18.04.1", @@ -7762,8 +7802,8 @@ }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1009-aws", + "target": "ubuntu-aws" }, { "kernelversion": "12", @@ -7792,8 +7832,8 @@ }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1011-generic", + "target": "ubuntu-generic" }, { "kernelversion": "12", @@ -7847,8 +7887,8 @@ }, { "kernelversion": "16", - "kernelrelease": "4.15.0-1016-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1016-generic", + "target": "ubuntu-generic" }, { "kernelversion": "17", @@ -7892,8 +7932,8 @@ }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1019-aws", + "target": "ubuntu-aws" }, { "kernelversion": "20", @@ -7907,8 +7947,8 @@ }, { "kernelversion": "21", - "kernelrelease": "4.15.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1021-aws", + "target": "ubuntu-aws" }, { "kernelversion": "22", @@ -7937,8 +7977,8 @@ }, { "kernelversion": "23", - "kernelrelease": "4.15.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1023-aws", + "target": "ubuntu-aws" }, { "kernelversion": "24", @@ -7987,8 +8027,8 @@ }, { "kernelversion": "27", - "kernelrelease": "4.15.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1027-aws", + "target": "ubuntu-aws" }, { "kernelversion": "28", @@ -8072,8 +8112,8 @@ }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1032-generic", + "target": "ubuntu-generic" }, { "kernelversion": "33", @@ -8197,8 +8237,8 @@ }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1041-generic", + "target": "ubuntu-generic" }, { "kernelversion": "45", @@ -8232,8 +8272,8 @@ }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1044-aws", + "target": "ubuntu-aws" }, { "kernelversion": "70", @@ -10547,8 +10587,8 @@ }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1022-aws", + "target": "ubuntu-aws" }, { "kernelversion": "23~18.04.1", @@ -10567,8 +10607,8 @@ }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws" }, { "kernelversion": "25~18.04.1", @@ -10602,8 +10642,8 @@ }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws" }, { "kernelversion": "30~18.04.1", @@ -10657,8 +10697,8 @@ }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws" }, { "kernelversion": "36~18.04.1", @@ -10717,8 +10757,8 @@ }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1039-generic", + "target": "ubuntu-generic" }, { "kernelversion": "42~18.04.1", @@ -10807,8 +10847,8 @@ }, { "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1047-generic", + "target": "ubuntu-generic" }, { "kernelversion": "50~18.04.1", @@ -10927,8 +10967,8 @@ }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1059-generic", + "target": "ubuntu-generic" }, { "kernelversion": "63~18.04.1", @@ -10952,8 +10992,8 @@ }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1065-generic", + "target": "ubuntu-generic" }, { "kernelversion": "71~18.04.1", @@ -11187,8 +11227,8 @@ }, { "kernelversion": "25", - "kernelrelease": "4.15.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1025-aws", + "target": "ubuntu-aws" }, { "kernelversion": "31", @@ -11335,6 +11375,41 @@ "kernelrelease": "4.15.0-20-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "3", + "kernelrelease": "5.15.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1003-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1004-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws" + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "28", + "kernelrelease": "5.15.0-27-generic", + "target": "ubuntu-generic" + }, + { + "kernelversion": "8~22.04.2", + "kernelrelease": "5.17.0-8-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "2", "kernelrelease": "5.15.0-1002-generic", @@ -11357,8 +11432,8 @@ }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.15.0-1004-generic", + "target": "ubuntu-generic" }, { "kernelversion": "4", @@ -11392,8 +11467,8 @@ }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1022-generic", + "target": "ubuntu-generic" }, { "kernelversion": "31~20.04.1", @@ -11402,8 +11477,8 @@ }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1029-aws", + "target": "ubuntu-aws" }, { "kernelversion": "32~20.04.2", @@ -11450,6 +11525,11 @@ "kernelrelease": "5.11.0-61-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1011-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "15~20.04.1", "kernelrelease": "5.13.0-1014-aws", @@ -11482,8 +11562,8 @@ }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1019-generic", + "target": "ubuntu-generic" }, { "kernelversion": "22~20.04.1", @@ -11515,11 +11595,21 @@ "kernelrelease": "5.13.0-1023-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1024-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "31~20.04.2", "kernelrelease": "5.13.0-1026-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "19~20.04.1", "kernelrelease": "5.13.0-19-generic", @@ -11570,6 +11660,11 @@ "kernelrelease": "5.13.0-40-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "46~20.04.1", + "kernelrelease": "5.13.0-41-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "6", "kernelrelease": "5.14.0-1006-generic", @@ -11650,6 +11745,11 @@ "kernelrelease": "5.14.0-1033-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "37", + "kernelrelease": "5.14.0-1034-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "4~20.04.2", "kernelrelease": "5.15.0-1002-generic", @@ -11720,6 +11820,11 @@ "kernelrelease": "5.4.0-1039-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1040-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "119", "kernelrelease": "5.4.0-105-generic", @@ -11772,8 +11877,8 @@ }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1060-generic", + "target": "ubuntu-generic" }, { "kernelversion": "64", @@ -11792,8 +11897,8 @@ }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1063-generic", + "target": "ubuntu-generic" }, { "kernelversion": "66+cvm3", @@ -11822,8 +11927,8 @@ }, { "kernelversion": "69", - "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1066-generic", + "target": "ubuntu-generic" }, { "kernelversion": "72", @@ -11892,9 +11997,14 @@ }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-generic", + "kernelrelease": "5.4.0-1071-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws" + }, { "kernelversion": "76", "kernelrelease": "5.4.0-1073-generic", @@ -11940,6 +12050,11 @@ "kernelrelease": "5.4.0-109-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "124", + "kernelrelease": "5.4.0-110-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "110", "kernelrelease": "5.4.0-97-generic", @@ -12162,8 +12277,8 @@ }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1023-aws", + "target": "ubuntu-aws" }, { "kernelversion": "25~20.04.1", @@ -12177,8 +12292,8 @@ }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1025-generic", + "target": "ubuntu-generic" }, { "kernelversion": "29~20.04.1", @@ -12187,8 +12302,8 @@ }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1027-generic", + "target": "ubuntu-generic" }, { "kernelversion": "31~20.04.2", @@ -12272,8 +12387,8 @@ }, { "kernelversion": "10", - "kernelrelease": "5.13.0-1009-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1009-generic", + "target": "ubuntu-generic" }, { "kernelversion": "10", @@ -12487,8 +12602,8 @@ }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1011-generic", + "target": "ubuntu-generic" }, { "kernelversion": "12", @@ -12512,8 +12627,8 @@ }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1015-generic", + "target": "ubuntu-generic" }, { "kernelversion": "16", @@ -12537,8 +12652,8 @@ }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws" }, { "kernelversion": "19", @@ -12567,8 +12682,8 @@ }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1021-aws", + "target": "ubuntu-aws" }, { "kernelversion": "22", @@ -12637,8 +12752,8 @@ }, { "kernelversion": "30", - "kernelrelease": "5.4.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1029-aws", + "target": "ubuntu-aws" }, { "kernelversion": "31", @@ -12677,8 +12792,8 @@ }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1035-generic", + "target": "ubuntu-generic" }, { "kernelversion": "38", @@ -12702,8 +12817,8 @@ }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1037-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1037-generic", + "target": "ubuntu-generic" }, { "kernelversion": "40", @@ -12755,15 +12870,10 @@ "kernelrelease": "5.4.0-1040-generic", "target": "ubuntu-generic" }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1040-generic", - "target": "ubuntu-generic" - }, { "kernelversion": "43", - "kernelrelease": "5.4.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1041-aws", + "target": "ubuntu-aws" }, { "kernelversion": "44", @@ -12832,13 +12942,13 @@ }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1047-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1047-aws", + "target": "ubuntu-aws" }, { "kernelversion": "50", - "kernelrelease": "5.4.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws" }, { "kernelversion": "52", @@ -12862,8 +12972,8 @@ }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1051-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1051-generic", + "target": "ubuntu-generic" }, { "kernelversion": "55", @@ -12917,8 +13027,8 @@ }, { "kernelversion": "59", - "kernelrelease": "5.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1056-aws", + "target": "ubuntu-aws" }, { "kernelversion": "60", @@ -12927,13 +13037,13 @@ }, { "kernelversion": "60", - "kernelrelease": "5.4.0-1057-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1057-generic", + "target": "ubuntu-generic" }, { "kernelversion": "61", - "kernelrelease": "5.4.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1058-aws", + "target": "ubuntu-aws" }, { "kernelversion": "60", @@ -12957,8 +13067,8 @@ }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1065-aws", + "target": "ubuntu-aws" }, { "kernelversion": "71", @@ -13332,8 +13442,8 @@ }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1038-aws", + "target": "ubuntu-aws" }, { "kernelversion": "39~20.04.1", @@ -13632,8 +13742,8 @@ }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws" }, { "kernelversion": "27", @@ -13642,8 +13752,8 @@ }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws" }, { "kernelversion": "32", @@ -13682,8 +13792,8 @@ }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1006-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1006-aws", + "target": "ubuntu-aws" }, { "kernelversion": "6", @@ -13697,8 +13807,8 @@ }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1008-generic", + "target": "ubuntu-generic" }, { "kernelversion": "12", @@ -13712,13 +13822,13 @@ }, { "kernelversion": "13", - "kernelrelease": "5.13.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1012-aws", + "target": "ubuntu-aws" }, { "kernelversion": "14", - "kernelrelease": "5.13.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1013-aws", + "target": "ubuntu-aws" }, { "kernelversion": "16", @@ -13785,6 +13895,11 @@ "kernelrelease": "5.13.0-1022-aws", "target": "ubuntu-aws" }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-1022-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "27", "kernelrelease": "5.13.0-1022-generic", @@ -13805,6 +13920,11 @@ "kernelrelease": "5.13.0-1026-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "31", "kernelrelease": "5.13.0-28-generic", @@ -13845,6 +13965,11 @@ "kernelrelease": "5.13.0-40-generic", "target": "ubuntu-generic" }, + { + "kernelversion": "46", + "kernelrelease": "5.13.0-41-generic", + "target": "ubuntu-generic" + }, { "kernelversion": "11", "kernelrelease": "5.13.0-1009-generic", @@ -17834,26 +17959,6 @@ "kernelversion": "37", "kernelrelease": "4.4.0-21-generic", "target": "ubuntu-generic" - }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-generic", - "target": "ubuntu-generic" - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1024-generic", - "target": "ubuntu-generic" - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-generic", - "target": "ubuntu-generic" - }, - { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-generic", - "target": "ubuntu-generic" } ], "Flatcar": [ From 1394b79705f3330bf376593511cd7c312979851e Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 26 Apr 2022 11:30:41 +0200 Subject: [PATCH 097/259] docs: added owners file Signed-off-by: Federico Di Pierro --- OWNERS | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 OWNERS diff --git a/OWNERS b/OWNERS new file mode 100644 index 0000000..2456f5e --- /dev/null +++ b/OWNERS @@ -0,0 +1,5 @@ +approvers: + - fededp + - maxgio92 + - leogr + - zuc From 46a35ecdf44f53a4bd2df3876882349b43725927 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 27 Apr 2022 13:53:10 +0200 Subject: [PATCH 098/259] update: fixed ubuntu flavours recognition. Moreover, added an `headers` field to output driverkit config struct. Finally, updated readme. Signed-off-by: Federico Di Pierro --- README.md | 42 ++++++++++++++++++++++------------- kernel_crawler/__init__.py | 13 ++++++++++- kernel_crawler/amazonlinux.py | 12 +++++++--- kernel_crawler/centos.py | 4 +++- kernel_crawler/debian.py | 6 ++++- kernel_crawler/fedora.py | 4 +++- kernel_crawler/flatcar.py | 2 +- kernel_crawler/oracle.py | 13 +++++++---- kernel_crawler/photon_os.py | 4 +++- kernel_crawler/repo.py | 7 +++++- kernel_crawler/ubuntu.py | 35 ++++++++++++++++++++--------- 11 files changed, 103 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index c4bd879..316dea8 100644 --- a/README.md +++ b/README.md @@ -2,19 +2,31 @@ [![Update list of kernels weekly](https://github.com/FedeDP/probe-builder/actions/workflows/update_kernels.yaml/badge.svg)](https://github.com/FedeDP/probe-builder/actions/workflows/update_kernels.yaml) -Distributions supported: - - AmazonLinux - - AmazonLinux2 - - CentOS - - Debian - - Fedora - - Flatcar - - Oracle6 - - Oracle7 - - Oracle8 - - PhotonOS - - Ubuntu +Helper text and options: +```commandline +python __init__.py crawl --help +Usage: __init__.py crawl [OPTIONS] -Architectures supported: -- x86_64 -- aarch64 +Options: + --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|CentOS|Debian|Fedora|Flatcar|Oracle6|Oracle7|Oracle8|PhotonOS|Ubuntu|*] + --version TEXT + --arch [x86_64|aarch64] + --out_fmt [plain|json|driverkit] + --help +``` +## Examples + +* Crawl amazonlinux2 kernels, with no-formatted output: +```commandline +python __init__.py crawl --distro=AmazonLinux2 +``` + +* Crawl ubuntu kernels, with [driverkit](https://github.com/falcosecurity/driverkit) config-like output: +```commandline +python __init__.py crawl --distro=Ubuntu --out_fmt=driverkit +``` + +* Crawl all supported distros kernels, with json output: +```commandline +python __init__.py crawl --distro=* --out_fmt=json +``` \ No newline at end of file diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 7c3ad5b..88d0573 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -29,8 +29,19 @@ def to_driverkit_config(d, res): dk_configs = [] + # Note, this is not good performance-wise because we are post-processing the list + # while we could do the same at generation time. + # But this is much simpler and involved touching less code. + # Moreover, we do not really care about performance here. for ver, deps in res.items(): - dk_configs.append(d.to_driverkit_config(ver, deps)) + dk_conf = d.to_driverkit_config(ver, deps) + try: + # Ubuntu returns multiple for each + dk_configs.extend(dk_conf) + except TypeError: + # Others return just a single dk config + dk_configs.append(dk_conf) + return dk_configs def crawl_kernels(distro, version, arch, to_driverkit): diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index 3a38b23..7c408b4 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -40,7 +40,9 @@ def list_repos(self): return [rpm.RpmRepository(url) for url in sorted(repo_urls)] def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "amazonlinux") + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "amazonlinux", dep) class AmazonLinux2Mirror(repo.Distro): @@ -63,7 +65,9 @@ def list_repos(self): return [rpm.RpmRepository(url) for url in sorted(repo_urls)] def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "amazonlinux2") + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "amazonlinux2", dep) class AmazonLinux2022Mirror(repo.Distro): # This was obtained by running @@ -88,4 +92,6 @@ def list_repos(self): return [rpm.RpmRepository(url) for url in sorted(repo_urls)] def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "amazonlinux2") \ No newline at end of file + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "amazonlinux2", dep) \ No newline at end of file diff --git a/kernel_crawler/centos.py b/kernel_crawler/centos.py index d2ae4d8..e7f5e1b 100644 --- a/kernel_crawler/centos.py +++ b/kernel_crawler/centos.py @@ -26,4 +26,6 @@ def __init__(self, arch): super(CentosMirror, self).__init__(mirrors, arch) def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "centos") \ No newline at end of file + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "centos", dep) \ No newline at end of file diff --git a/kernel_crawler/debian.py b/kernel_crawler/debian.py index 0e086b1..8e5bf97 100644 --- a/kernel_crawler/debian.py +++ b/kernel_crawler/debian.py @@ -42,4 +42,8 @@ def get_package_tree(self, version=''): return packages def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release + "-" + self.arch, "debian") + headers = [] + for dep in deps: + if dep.find("headers") != -1: + headers.append(dep) + return repo.DriverKitConfig(release + "-" + self.arch, "debian", headers) diff --git a/kernel_crawler/fedora.py b/kernel_crawler/fedora.py index 1400b60..9c74bcd 100644 --- a/kernel_crawler/fedora.py +++ b/kernel_crawler/fedora.py @@ -17,4 +17,6 @@ def __init__(self, arch): super(FedoraMirror, self).__init__(mirrors, arch) def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "fedora") + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "fedora", dep) diff --git a/kernel_crawler/flatcar.py b/kernel_crawler/flatcar.py index 892d6c5..040600f 100644 --- a/kernel_crawler/flatcar.py +++ b/kernel_crawler/flatcar.py @@ -50,4 +50,4 @@ def list_repos(self): return repos def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "flatcar") + return repo.DriverKitConfig(release, "flatcar", list(deps)) diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index 2d0ba02..2de6ff2 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -24,8 +24,9 @@ def list_repos(self): return [OracleRepository(url) for url in self.repos()] def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "oracle6") - + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "oracle6", dep) class Oracle7Mirror(repo.Distro): def repos(self): @@ -45,7 +46,9 @@ def list_repos(self): return [OracleRepository(url) for url in self.repos()] def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "oracle7") + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "oracle7", dep) class Oracle8Mirror(repo.Distro): @@ -62,4 +65,6 @@ def list_repos(self): return [OracleRepository(url) for url in self.repos()] def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "oracle8") \ No newline at end of file + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "oracle8", dep) \ No newline at end of file diff --git a/kernel_crawler/photon_os.py b/kernel_crawler/photon_os.py index f7fb806..f309702 100644 --- a/kernel_crawler/photon_os.py +++ b/kernel_crawler/photon_os.py @@ -26,4 +26,6 @@ def list_repos(self): for version, repo_tag in self.PHOTON_OS_VERSIONS] def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "photonOS") + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "photonOS", dep) diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index c7dc18e..d9c9bdc 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -11,10 +11,15 @@ def __str__(self): raise NotImplementedError class DriverKitConfig(object): - def __init__(self, kernelrelease, target, kernelversion=1): + def __init__(self, kernelrelease, target, headers, kernelversion=1): self.kernelversion = kernelversion self.kernelrelease = kernelrelease self.target = target + if isinstance(headers, list): + self.headers = headers + else: + # Fake single-list + self.headers = [headers] def to_s(s): if s is None: diff --git a/kernel_crawler/ubuntu.py b/kernel_crawler/ubuntu.py index f06657f..f843193 100644 --- a/kernel_crawler/ubuntu.py +++ b/kernel_crawler/ubuntu.py @@ -1,6 +1,7 @@ from . import deb from . import repo from .debian import fixup_deb_arch +import re class UbuntuMirror(repo.Distro): def __init__(self, arch): @@ -13,15 +14,29 @@ def __init__(self, arch): super(UbuntuMirror, self).__init__(mirrors, arch) def to_driverkit_config(self, release, deps): + dk_configs = {} krel, kver = release.split("/") - target = "ubuntu-generic" for dep in deps: - # We only support ubuntu-aws specific builder in driverkit - d = dep.find("aws") - if d != -1: - target = "ubuntu-aws" - krel += "-aws" - else: - krel += "-generic" - break - return repo.DriverKitConfig(krel, target, kver) \ No newline at end of file + if dep.find("headers") != -1: + # example: http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb + d = re.search(r"(\bl/linux(\-.+\/)?\b)", dep) + if d is None: + continue + + d = d.group(0) + target = "ubuntu" + d[7:len(d) - 1] + release = krel + d[7:len(d) - 1] + + # Driverkit wants "-generic" for generic ubuntu + if target == "ubuntu": + target += "-generic" + + val = dk_configs.get(target) + if val is None: + headers = [dep] + dk_configs[target] = repo.DriverKitConfig(release, target, headers, kver) + else: + # If already existent, just add the new url to the list of headers + val.headers.append(dep) + dk_configs[target] = val + return dk_configs.values() \ No newline at end of file From 0630fdfd20578b8030be3570cf85d2f6064d7fea Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 28 Apr 2022 10:05:11 +0200 Subject: [PATCH 099/259] doc: added license file. Signed-off-by: Federico Di Pierro --- COPYING | 202 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 202 insertions(+) create mode 100644 COPYING diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..7792f31 --- /dev/null +++ b/COPYING @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2019 The Falco Authors + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. From ee3c5650ec01fa8ff0df53c0a7b0712f242bc496 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 28 Apr 2022 10:55:08 +0200 Subject: [PATCH 100/259] chore: renamed COPYING to LICENSE. Signed-off-by: Federico Di Pierro --- COPYING => LICENSE | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename COPYING => LICENSE (100%) diff --git a/COPYING b/LICENSE similarity index 100% rename from COPYING rename to LICENSE From 65791b4e3843ed5d21a7947bce6349a3b6d0e3b7 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 28 Apr 2022 11:08:00 +0200 Subject: [PATCH 101/259] docs: added a pull request template. Signed-off-by: Federico Di Pierro --- .github/PULL_REQUEST_TEMPLATE.md | 52 ++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..ad982ef --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,52 @@ + + +**What type of PR is this?** + +> Uncomment one (or more) `/kind <>` lines: + +> /kind bug + +> /kind cleanup + +> /kind documentation + +> /kind feature + + + +**Any specific area of the project related to this PR?** + +> Uncomment one (or more) `/area <>` lines: + +> /area crawler + +> /area ci + +> /area utils + + + +**What this PR does / why we need it**: + +**Which issue(s) this PR fixes**: + + + +Fixes # + +**Special notes for your reviewer**: + From c36cf61482f69277d34c76e92e78a00d769b0f96 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 2 May 2022 09:05:58 +0200 Subject: [PATCH 102/259] update(README): updated badge link. Signed-off-by: Federico Di Pierro --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 316dea8..bede2b3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Falcosecurity kernel-crawler -[![Update list of kernels weekly](https://github.com/FedeDP/probe-builder/actions/workflows/update_kernels.yaml/badge.svg)](https://github.com/FedeDP/probe-builder/actions/workflows/update_kernels.yaml) +[![Update list of kernels weekly](https://github.com/falcosecurity/kernel-crawler/actions/workflows/update_kernels.yaml/badge.svg)](https://github.com/falcosecurity/kernel-crawler/actions/workflows/update_kernels.yaml) Helper text and options: ```commandline @@ -29,4 +29,4 @@ python __init__.py crawl --distro=Ubuntu --out_fmt=driverkit * Crawl all supported distros kernels, with json output: ```commandline python __init__.py crawl --distro=* --out_fmt=json -``` \ No newline at end of file +``` From bdfe912710c52d7c3d1b4277b57f50eea990ce18 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 2 May 2022 12:45:38 +0200 Subject: [PATCH 103/259] fix(CI): proper permissions on github action token. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index 3844f1e..2869554 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -4,6 +4,8 @@ on: schedule: - cron: '0 0 * * 0' # every sunday at midnight +permissions: read-all|write-all + jobs: crawler: runs-on: ubuntu-latest From 3323afce468939c71821c182b9a3c998a4231a56 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 2 May 2022 13:07:07 +0200 Subject: [PATCH 104/259] update(ci): use create pr action. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index 2869554..7ec2363 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -4,8 +4,6 @@ on: schedule: - cron: '0 0 * * 0' # every sunday at midnight -permissions: read-all|write-all - jobs: crawler: runs-on: ubuntu-latest @@ -28,11 +26,10 @@ jobs: - name: Run crawler for aarch64 run: | python __init__.py crawl --distro=* --out_fmt=driverkit --arch=aarch64 > kernels/aarch64/list.json - - - name: Push updated list - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git add kernels/x86_64/list.json kernels/aarch64/list.json - git commit -m "[CI] updated kernel json lists." - git push + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v4 + with: + signoff: true + commit-message: 'update(kernels): updated kernel json lists.' + title: '[CI] Update kernel lists' From 545109cfb03ae95be6c29017b717a01100527bc3 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 2 May 2022 13:56:52 +0200 Subject: [PATCH 105/259] chore(ci): switched on push for testing purposes. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index 7ec2363..6bbca6f 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -1,8 +1,10 @@ name: Update list of kernels weekly -on: - schedule: - - cron: '0 0 * * 0' # every sunday at midnight +#on: +# schedule: +# - cron: '0 0 * * 0' # every sunday at midnight + +on: push jobs: crawler: From 47549c8e982b9da2c489bc3769f057dd43458b08 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 3 May 2022 15:14:37 +0200 Subject: [PATCH 106/259] fix(CI): update permissions on github action. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index 6bbca6f..2ea6d52 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -9,6 +9,8 @@ on: push jobs: crawler: runs-on: ubuntu-latest + permissions: + pull-requests: write steps: - name: Checkout crawler uses: actions/checkout@v3 From ac66ac560149d521af1b277e0fdba489d9a88abc Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 3 May 2022 15:53:24 +0200 Subject: [PATCH 107/259] fix(CI): update permissions with contents write too. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index 2ea6d52..14d6282 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -10,6 +10,7 @@ jobs: crawler: runs-on: ubuntu-latest permissions: + contents: write pull-requests: write steps: - name: Checkout crawler From 04eb31e63af48cf0b5dabb28c5a2ef10e6296b4e Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 3 May 2022 16:15:50 +0200 Subject: [PATCH 108/259] update(ci): revert on push. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index 14d6282..8a6b945 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -1,10 +1,8 @@ name: Update list of kernels weekly -#on: -# schedule: -# - cron: '0 0 * * 0' # every sunday at midnight - -on: push +on: + schedule: + - cron: '0 0 * * 0' # every sunday at midnight jobs: crawler: From 5a3df6f48fcc1d5598b742cd80b30e5faa53405f Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 4 May 2022 18:12:23 +0200 Subject: [PATCH 109/259] update(crawler): properly use amazonlinux2022 target for Al2022 driverkit configs. Signed-off-by: Federico Di Pierro --- kernel_crawler/amazonlinux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index 7c408b4..7b7ac38 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -94,4 +94,4 @@ def list_repos(self): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "amazonlinux2", dep) \ No newline at end of file + return repo.DriverKitConfig(release, "amazonlinux2022", dep) \ No newline at end of file From bc7cf800d461a797e5ea2c2dfadd2ee9c48305e3 Mon Sep 17 00:00:00 2001 From: poiana Date: Sun, 8 May 2022 00:58:26 +0000 Subject: [PATCH 110/259] update(kernels): updated kernel json lists. Signed-off-by: GitHub --- kernels/aarch64/list.json | 12465 +++++++++--- kernels/x86_64/list.json | 36649 +++++++++++++++++++++++++++--------- 2 files changed, 37553 insertions(+), 11561 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 388dbca..a972a51 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -3,719 +3,1153 @@ "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.101-91.76.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.88-88.76.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.152-127.182.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.232-177.418.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.209-160.339.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.152-124.171.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.276-211.499.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.88-88.73.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.198-152.320.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.94-89.73.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.203-156.332.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.138-114.102.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.256-197.484.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.192-147.314.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.231-173.360.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.177-139.254.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.123-111.109.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.133-113.105.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.146-119.123.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.114-103.97.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.77-86.82.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.106-97.85.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.252-195.483.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.232-176.381.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.114-105.126.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.104-95.84.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.225-168.357.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.97-90.72.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.268-205.500.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.154-128.181.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.146-120.181.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.181-142.260.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.273-207.502.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.171-136.231.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.219-161.340.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.275-207.503.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.231-173.361.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.225-169.362.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.193-149.317.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.241-184.433.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.109-99.92.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.248-189.473.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.209-160.335.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.77-81.59.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.181-140.257.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.200-155.322.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.238-182.421.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.133-113.112.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.165-133.209.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.214-160.339.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.177-139.253.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.186-146.268.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.173-137.229.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.246-187.474.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.238-182.422.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.143-118.123.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.243-185.433.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.128-112.105.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.77-80.57.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.158-129.185.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.121-109.96.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.219-164.354.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.165-131.185.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.252-195.481.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.173-137.228.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "4.14.262-200.489.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.29-27.128.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.106-102.504.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.62-55.141.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.93-87.444.amzn2.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.35-31.135.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.47-39.130.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.96-90.460.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.68-62.173.amzn2.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.29-27.126.amzn2.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.109-104.500.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.50-44.131.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.59-52.142.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.102-99.473.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.109-104.500.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/57ef3deb0c4479e0b7fe577a241c606f849a21feedf9667f948ff489f99ae2d9/kernel-devel-5.10.109-104.500.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.75-79.358.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.82-83.359.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.50-44.132.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.10.75-79.358.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.149-73.259.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.129-62.227.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.117-58.216.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.20-12.75.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.129-63.229.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.50-25.83.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.176-91.338.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.172-90.336.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.46-23.77.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.46-19.75.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.110-54.182.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.141-67.229.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.188-104.359.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/a479c59221509ff906755d5afcc71d323d91d3c67834c8e2e40ccc0c33d368eb/kernel-devel-5.4.188-104.359.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.144-69.257.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.110-54.189.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.4.38-17.76.amzn2.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.189.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.80-40.140.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.156-83.273.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.91-41.139.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.162-86.275.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.74-36.135.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.4.68-34.125.amzn2.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.58-27.104.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.186-102.354.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.181-99.354.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.188-104.359.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.105-48.177.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.95-42.163.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.aarch64", - "target": "amazonlinux2" + "kernelrelease": "5.4.58-32.125.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" + ] } ], "AmazonLinux2022": [ { "kernelversion": 1, "kernelrelease": "5.10.96-90.460.amzn2022.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/2a2b9b6f424c1d6e1a8b5ec3ffab0eab03b5a82003a0386d89911ddbab5ac374/kernel-devel-5.10.96-90.460.amzn2022.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.75-82.359.amzn2022.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/440a6228082d68b5e322f6a4d372b09207a8f4b22eb133cf08d3bbcd2581cd5d/kernel-devel-5.10.75-82.359.amzn2022.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.15.24-13.97.amzn2022.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/c0d2623a67a9e286e094a66da07cd61b1b3292fecb961e8882215cb38bdcf066/kernel-devel-5.15.24-13.97.amzn2022.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.15.23-11.98.amzn2022.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/842a809c835f3519b4f40ae8039677952763438525e2f0f557ca52120501258c/kernel-devel-5.15.23-11.98.amzn2022.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.15.25-14.106.amzn2022.aarch64", - "target": "amazonlinux2" + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/869961ff26a7ec258044368a20c802dfd57aabbcc3f0923322fff3342a6d2cc8/kernel-devel-5.15.25-14.106.amzn2022.aarch64.rpm" + ] } ], "CentOS": [ { "kernelversion": 1, "kernelrelease": "4.18.0-80.1.2.el8_0.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-80.11.1.el8_0.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-80.11.2.el8_0.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-80.4.2.el8_0.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-80.7.1.el8_0.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-80.7.2.el8_0.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-80.el8.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.el8.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-147.8.1.el8_1.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-193.28.1.el8_2.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-240.22.1.el8_3.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-305.10.2.el8_4.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-305.12.1.el8_4.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-305.17.1.el8_4.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-305.19.1.el8_4.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-305.25.1.el8_4.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-305.3.1.el8.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-305.7.1.el8_4.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-348.2.1.el8_5.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-348.7.1.el8_5.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.18.0-348.el8.aarch64", - "target": "centos" + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.el8.aarch64.rpm" + ] } ], "Fedora": [ { "kernelversion": 1, "kernelrelease": "5.6.6-300.fc32.aarch64", - "target": "fedora" + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-devel-5.6.6-300.fc32.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.8.15-301.fc33.aarch64", - "target": "fedora" + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-devel-5.8.15-301.fc33.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.11.12-300.fc34.aarch64", - "target": "fedora" + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-devel-5.11.12-300.fc34.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.14.10-300.fc35.aarch64", - "target": "fedora" + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-devel-5.14.10-300.fc35.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.11.22-100.fc32.aarch64", - "target": "fedora" + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-devel-5.11.22-100.fc32.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.14.18-100.fc33.aarch64", - "target": "fedora" + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-devel-5.14.18-100.fc33.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.16.20-100.fc34.aarch64", - "target": "fedora" + "kernelrelease": "5.17.5-100.fc34.aarch64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.17.5-100.fc34.aarch64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.16.20-200.fc35.aarch64", - "target": "fedora" + "kernelrelease": "5.17.5-200.fc35.aarch64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.17.5-200.fc35.aarch64.rpm" + ] } ], "Oracle6": [], @@ -725,7233 +1159,13636 @@ { "kernelversion": 1, "kernelrelease": "1.3.0-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/Linux-PAM-devel-1.3.0-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.15-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/linux-devel-4.19.15-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.104-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.104-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.104-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.104-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.112-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.112-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-10.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-10.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-6.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-6.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-7.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-7.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-9.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-9.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.124-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.124-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.124-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.124-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.126-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.126-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.126-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.126-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.129-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.129-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.129-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-6.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-6.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.138-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.138-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.138-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.145-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.145-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.145-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.15-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.15-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.150-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.150-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-10.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-10.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-11.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-11.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-8.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-8.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-9.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-9.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-6.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-6.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.164-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.164-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.164-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.164-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.174-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.174-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.174-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.177-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.177-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.177-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.177-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.182-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.182-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.182-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.182-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.186-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.186-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.186-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.186-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.189-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.189-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.189-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.189-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.190-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.190-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.190-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.191-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.191-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.191-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.198-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.198-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.198-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.198-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.205-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.205-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.208-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.208-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.214-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.214-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.214-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.214-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.217-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.217-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.219-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.219-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.219-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.219-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.224-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.224-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.224-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.224-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.225-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.225-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.229-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.229-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.229-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.29-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.29-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.32-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.32-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.40-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.40-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.40-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.40-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.52-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.52-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.52-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.52-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.65-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.65-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.65-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.65-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.69-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.69-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.72-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.72-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.72-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.72-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.76-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.76-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.76-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.76-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.79-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.79-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.79-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.79-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.82-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.82-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.84-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.84-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.84-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.84-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.87-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.87-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.87-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-1.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-1.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-2.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-2.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-3.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-3.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-4.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-4.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-5.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-5.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-6.ph3.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-6.ph3.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "1.4.0-3.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-3.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "1.4.0-4.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-1.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-1.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-2.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-2.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-3.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-3.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-4.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-4.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-1.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-1.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-10.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-10.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-2.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-2.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-3.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-3.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-5.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-5.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-6.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-6.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-7.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-7.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-9.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-9.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.35-1.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-1.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.35-2.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-2.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.35-3.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-3.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.35-4.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-4.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.4-17.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.4-17.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.42-1.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-1.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.42-2.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-2.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.42-3.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-3.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.46-2.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.46-2.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.52-1.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.52-1.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.52-2.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.52-2.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.61-1.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.61-1.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.61-2.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.61-2.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.75-1.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.75-1.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.78-1.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-1.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.78-4.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-4.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.78-5.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-5.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-2.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-2.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-3.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-3.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-4.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-4.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-5.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-5.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-6.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-6.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-7.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-7.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.93-1.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-1.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.93-3.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-3.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.93-4.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-4.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.93-5.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-5.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "1.4.0-2.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-2.ph4.aarch64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.4-16.ph4.aarch64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/linux-devel-5.10.4-16.ph4.aarch64.rpm" + ] } ], "Debian": [ { "kernelversion": 1, - "kernelrelease": "5.16.18-1-arm64", - "target": "debian" + "kernelrelease": "5.17.3-1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-arm64_5.17.3-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-arm64_5.17.3-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-arm64_5.17.3-1_arm64.deb" + ] }, { "kernelversion": 1, - "kernelrelease": "5.10.103-1-arm64", - "target": "debian" + "kernelrelease": "5.10.113-1-arm64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.14.9-2~bpo11+1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-arm64_5.14.9-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-arm64_5.14.9-2~bpo11+1_arm64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.15.5-2~bpo11+1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-arm64_5.15.5-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-arm64_5.15.5-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-arm64_5.15.5-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.15.15-2~bpo11+1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-arm64_5.15.15-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-arm64_5.15.15-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-arm64_5.15.15-2~bpo11+1_arm64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.16.11-1~bpo11+1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-arm64_5.16.11-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-arm64_5.16.11-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-arm64_5.16.11-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.16.12-1~bpo11+1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.84-1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.106-1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.92-1~bpo10+1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-arm64_5.10.92-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-arm64_5.10.92-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-arm64_5.10.92-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-1~bpo10+1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.70-1~bpo10+1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-arm64_5.10.70-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-arm64_5.10.70-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-arm64_5.10.70-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.208-1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.235-1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb" + ] }, { "kernelversion": 1, - "kernelrelease": "5.17.3-1-arm64", - "target": "debian" + "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb" + ] }, { "kernelversion": 1, - "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", - "target": "debian" + "kernelrelease": "4.9.228-1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb" + ] }, { "kernelversion": 1, - "kernelrelease": "4.9.228-1-arm64", - "target": "debian" + "kernelrelease": "5.10.103-1-arm64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.303-1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-1~deb9u1-arm64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb" + ] } ], "Ubuntu": [ { "kernelversion": "120", "kernelrelease": "4.15.0-1113-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + ] }, { "kernelversion": "123", "kernelrelease": "4.15.0-1116-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" + ] }, { "kernelversion": "124", "kernelrelease": "4.15.0-1117-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb" + ] }, { "kernelversion": "128", - "kernelrelease": "4.15.0-1119-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1119-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb" + ] }, { "kernelversion": "128", "kernelrelease": "4.15.0-1120-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + ] }, { "kernelversion": "129", - "kernelrelease": "4.15.0-1120-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1120-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" + ] }, { "kernelversion": "129", "kernelrelease": "4.15.0-1121-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb" + ] }, { "kernelversion": "130", - "kernelrelease": "4.15.0-1121-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1121-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb" + ] + }, + { + "kernelversion": "132", + "kernelrelease": "4.15.0-1123-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" + ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-1123-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1123-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" + ] + }, + { + "kernelversion": "133", + "kernelrelease": "4.15.0-1124-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" + ] }, { "kernelversion": "133", "kernelrelease": "4.15.0-1124-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb" + ] }, { "kernelversion": "134", - "kernelrelease": "4.15.0-1125-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1125-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" + ] }, { - "kernelversion": "135", - "kernelrelease": "4.15.0-1126-generic", - "target": "ubuntu-generic" + "kernelversion": "134", + "kernelrelease": "4.15.0-1125-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb" + ] + }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" + ] }, { "kernelversion": "136", "kernelrelease": "4.15.0-1127-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" + ] }, { "kernelversion": "137", "kernelrelease": "4.15.0-1128-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" + ] }, { "kernelversion": "175", - "kernelrelease": "4.15.0-167-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-167", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb" + ] }, { "kernelversion": "176", - "kernelrelease": "4.15.0-168-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-168", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_arm64.deb" + ] }, { "kernelversion": "177", - "kernelrelease": "4.15.0-169-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-169", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb" + ] }, { "kernelversion": "178", - "kernelrelease": "4.15.0-170-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-170", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb" + ] }, { "kernelversion": "181", - "kernelrelease": "4.15.0-172-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-172", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_arm64.deb" + ] }, { "kernelversion": "182", - "kernelrelease": "4.15.0-173-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-173", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" + ] }, { "kernelversion": "183", - "kernelrelease": "4.15.0-174-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-174", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" + ] }, { "kernelversion": "185", - "kernelrelease": "4.15.0-176-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-176", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" + ] }, { "kernelversion": "186", - "kernelrelease": "4.15.0-177-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-177", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.0.0-1028-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1028-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" + ] }, { "kernelversion": "113~18.04.1", - "kernelrelease": "5.4.0-100-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-100-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" + ] }, { "kernelversion": "119~18.04.1", - "kernelrelease": "5.4.0-105-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-105-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb" + ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1058-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + ] }, { "kernelversion": "120~18.04.1", - "kernelrelease": "5.4.0-106-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-106-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" + ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + ] }, { "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1064-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" + ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1064-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" + ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb" + ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1067-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb" + ] }, { "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1068-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb" + ] }, { "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1069-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" + ] }, { "kernelversion": "74~18.04.1", - "kernelrelease": "5.4.0-1070-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1070-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" + ] }, { - "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1070-generic", - "target": "ubuntu-generic" + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1071-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_arm64.deb" + ] }, { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws" + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb" + ] }, { "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1076-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1076-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb" + ] }, { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1077-generic", - "target": "ubuntu-generic" + "kernelversion": "81~18.04.1", + "kernelrelease": "5.4.0-1078-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb" + ] }, { "kernelversion": "122~18.04.1", - "kernelrelease": "5.4.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-108-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb" + ] }, { - "kernelversion": "123~18.04.1", - "kernelrelease": "5.4.0-109-generic", - "target": "ubuntu-generic" + "kernelversion": "124~18.04.1", + "kernelrelease": "5.4.0-110-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" + ] }, { "kernelversion": "102~18.04.1", - "kernelrelease": "5.4.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-91-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb" + ] }, { "kernelversion": "110~18.04.1", - "kernelrelease": "5.4.0-97-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-97-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb" + ] }, { "kernelversion": "112~18.04.1", - "kernelrelease": "5.4.0-99-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-99-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "4.15.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-101", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" + ] }, { "kernelversion": "30", "kernelrelease": "4.15.0-1029-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-raspi2", + "target": "ubuntu-raspi2", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb" + ] }, { "kernelversion": "33", "kernelrelease": "4.15.0-1031-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "4.15.0-1031-raspi2", + "target": "ubuntu-raspi2", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb" + ] }, { "kernelversion": "34", "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb" + ] }, { "kernelversion": "35", "kernelrelease": "4.15.0-1033-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb" + ] }, { "kernelversion": "36", "kernelrelease": "4.15.0-1034-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb" + ] }, { "kernelversion": "37", "kernelrelease": "4.15.0-1035-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb" + ] }, { "kernelversion": "41", "kernelrelease": "4.15.0-1039-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" + ] }, { "kernelversion": "42", "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" + ] }, { "kernelversion": "43", "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb" + ] }, { "kernelversion": "45", "kernelrelease": "4.15.0-1043-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" + ] }, { "kernelversion": "46", "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + ] }, { "kernelversion": "47", "kernelrelease": "4.15.0-1045-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb" + ] }, { "kernelversion": "49", "kernelrelease": "4.15.0-1047-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb" + ] }, { "kernelversion": "50", "kernelrelease": "4.15.0-1048-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + ] }, { "kernelversion": "52", "kernelrelease": "4.15.0-1050-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" + ] }, { "kernelversion": "53", "kernelrelease": "4.15.0-1051-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" + ] }, { "kernelversion": "54", "kernelrelease": "4.15.0-1052-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "4.15.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1053-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb" + ] }, { "kernelversion": "56", "kernelrelease": "4.15.0-1054-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "4.15.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1054-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "4.15.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1055-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" + ] }, { "kernelversion": "58", "kernelrelease": "4.15.0-1056-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" + ] }, { "kernelversion": "59", "kernelrelease": "4.15.0-1057-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "4.15.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1057-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb" + ] }, { "kernelversion": "60", "kernelrelease": "4.15.0-1058-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "4.15.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1058-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb" + ] }, { "kernelversion": "107", - "kernelrelease": "4.15.0-106-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-106", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb" + ] }, { "kernelversion": "62", "kernelrelease": "4.15.0-1060-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "4.15.0-1060-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1060-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "4.15.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1062-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb" + ] }, { "kernelversion": "67", "kernelrelease": "4.15.0-1063-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "4.15.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1064-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" + ] }, { "kernelversion": "69", "kernelrelease": "4.15.0-1065-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "4.15.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1065-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb" + ] }, { "kernelversion": "70", "kernelrelease": "4.15.0-1066-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "4.15.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1066-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" + ] }, { "kernelversion": "71", "kernelrelease": "4.15.0-1067-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "4.15.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1067-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "4.15.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1069-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" + ] }, { "kernelversion": "77", - "kernelrelease": "4.15.0-1070-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1070-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "4.15.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1071-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "4.15.0-1072-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1072-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb" + ] }, { "kernelversion": "77", "kernelrelease": "4.15.0-1073-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" + ] }, { "kernelversion": "81", - "kernelrelease": "4.15.0-1074-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1074-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb" + ] }, { "kernelversion": "80", "kernelrelease": "4.15.0-1076-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "4.15.0-1076-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1076-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb" + ] }, { "kernelversion": "81", "kernelrelease": "4.15.0-1077-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "4.15.0-1077-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1077-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" + ] }, { "kernelversion": "83", "kernelrelease": "4.15.0-1079-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "4.15.0-1079-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1079-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb" + ] }, { "kernelversion": "109", - "kernelrelease": "4.15.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-108", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" + ] }, { "kernelversion": "84", "kernelrelease": "4.15.0-1080-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb" + ] }, { "kernelversion": "87", - "kernelrelease": "4.15.0-1080-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1080-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb" + ] }, { "kernelversion": "88", - "kernelrelease": "4.15.0-1081-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1081-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb" + ] }, { "kernelversion": "86", "kernelrelease": "4.15.0-1082-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" + ] }, { "kernelversion": "87", "kernelrelease": "4.15.0-1083-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "4.15.0-1083-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1083-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb" + ] }, { "kernelversion": "92", - "kernelrelease": "4.15.0-1084-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1084-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb" + ] }, { "kernelversion": "91", "kernelrelease": "4.15.0-1086-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb" + ] }, { "kernelversion": "94", - "kernelrelease": "4.15.0-1086-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1086-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb" + ] }, { "kernelversion": "92", "kernelrelease": "4.15.0-1087-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + ] }, { "kernelversion": "95", - "kernelrelease": "4.15.0-1087-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1087-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb" + ] }, { "kernelversion": "98", - "kernelrelease": "4.15.0-1089-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1089-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "4.15.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-109", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" + ] }, { "kernelversion": "95", "kernelrelease": "4.15.0-1090-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + ] }, { "kernelversion": "99", - "kernelrelease": "4.15.0-1090-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1090-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb" + ] }, { "kernelversion": "96", "kernelrelease": "4.15.0-1091-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" + ] }, { "kernelversion": "98", "kernelrelease": "4.15.0-1092-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" + ] }, { "kernelversion": "99", "kernelrelease": "4.15.0-1093-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "4.15.0-1093-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1093-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb" + ] }, { "kernelversion": "101", "kernelrelease": "4.15.0-1094-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" + ] }, { "kernelversion": "103", - "kernelrelease": "4.15.0-1094-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1094-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb" + ] }, { "kernelversion": "102", "kernelrelease": "4.15.0-1095-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" + ] }, { "kernelversion": "104", - "kernelrelease": "4.15.0-1095-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1095-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" + ] }, { "kernelversion": "103", "kernelrelease": "4.15.0-1096-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" + ] }, { "kernelversion": "105", - "kernelrelease": "4.15.0-1096-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1096-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb" + ] }, { "kernelversion": "104", "kernelrelease": "4.15.0-1097-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "4.15.0-1097-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1097-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb" + ] }, { "kernelversion": "105", "kernelrelease": "4.15.0-1098-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb" + ] }, { "kernelversion": "107", - "kernelrelease": "4.15.0-1098-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1098-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb" + ] }, { "kernelversion": "106", "kernelrelease": "4.15.0-1099-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + ] }, { "kernelversion": "108", - "kernelrelease": "4.15.0-1099-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1099-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb" + ] }, { "kernelversion": "109", - "kernelrelease": "4.15.0-1100-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1100-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb" + ] }, { "kernelversion": "108", "kernelrelease": "4.15.0-1101-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "4.15.0-1101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1101-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb" + ] }, { "kernelversion": "109", "kernelrelease": "4.15.0-1102-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" + ] }, { "kernelversion": "111", - "kernelrelease": "4.15.0-1102-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1102-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb" + ] }, { "kernelversion": "110", "kernelrelease": "4.15.0-1103-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-1103-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1103-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb" + ] }, { "kernelversion": "113", "kernelrelease": "4.15.0-1106-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" + ] }, { "kernelversion": "115", - "kernelrelease": "4.15.0-1106-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1106-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" + ] }, { "kernelversion": "116", "kernelrelease": "4.15.0-1109-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + ] }, { "kernelversion": "118", - "kernelrelease": "4.15.0-1109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1109-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-111-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-111", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" + ] }, { "kernelversion": "117", "kernelrelease": "4.15.0-1110-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" + ] }, { "kernelversion": "119", - "kernelrelease": "4.15.0-1110-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1110-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb" + ] }, { "kernelversion": "118", "kernelrelease": "4.15.0-1111-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" + ] }, { "kernelversion": "120", - "kernelrelease": "4.15.0-1111-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1111-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb" + ] }, { "kernelversion": "119", "kernelrelease": "4.15.0-1112-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" + ] }, { "kernelversion": "121", - "kernelrelease": "4.15.0-1112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1112-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb" + ] }, { "kernelversion": "122", - "kernelrelease": "4.15.0-1113-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1113-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb" + ] }, { "kernelversion": "121", "kernelrelease": "4.15.0-1114-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + ] }, { "kernelversion": "123", - "kernelrelease": "4.15.0-1114-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1114-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb" + ] }, { "kernelversion": "122", "kernelrelease": "4.15.0-1115-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb" + ] }, { "kernelversion": "124", - "kernelrelease": "4.15.0-1115-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1115-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb" + ] }, { "kernelversion": "125", - "kernelrelease": "4.15.0-1116-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1116-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb" + ] }, { "kernelversion": "125", "kernelrelease": "4.15.0-1118-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" + ] }, { "kernelversion": "127", - "kernelrelease": "4.15.0-1118-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1118-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb" + ] }, { "kernelversion": "127", "kernelrelease": "4.15.0-1119-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb" + ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-112", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" + ] }, { "kernelversion": "131", - "kernelrelease": "4.15.0-1122-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1122-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb" + ] + }, + { + "kernelversion": "135", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" + ] + }, + { + "kernelversion": "135", + "kernelrelease": "4.15.0-1126-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" + ] }, { "kernelversion": "116", - "kernelrelease": "4.15.0-115-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-115", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb" + ] }, { "kernelversion": "118", - "kernelrelease": "4.15.0-117-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-117", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" + ] }, { "kernelversion": "119", - "kernelrelease": "4.15.0-118-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-118", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" + ] }, { "kernelversion": "123", - "kernelrelease": "4.15.0-121-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-121", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb" + ] }, { "kernelversion": "124", - "kernelrelease": "4.15.0-122-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-122", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb" + ] }, { "kernelversion": "126", - "kernelrelease": "4.15.0-123-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-123", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + ] }, { "kernelversion": "131", - "kernelrelease": "4.15.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-128", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb" + ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-129-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-129", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" + ] }, { "kernelversion": "134", - "kernelrelease": "4.15.0-130-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-130", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb" + ] }, { "kernelversion": "136", - "kernelrelease": "4.15.0-132-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-132", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb" + ] }, { "kernelversion": "139", - "kernelrelease": "4.15.0-135-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-135", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb" + ] }, { "kernelversion": "140", - "kernelrelease": "4.15.0-136-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-136", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb" + ] }, { "kernelversion": "141", - "kernelrelease": "4.15.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-137", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb" + ] }, { "kernelversion": "143", - "kernelrelease": "4.15.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-139", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" + ] }, { "kernelversion": "144", - "kernelrelease": "4.15.0-140-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-140", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb" + ] }, { "kernelversion": "145", - "kernelrelease": "4.15.0-141-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-141", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_arm64.deb" + ] }, { "kernelversion": "146", - "kernelrelease": "4.15.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-142", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" + ] }, { "kernelversion": "147", - "kernelrelease": "4.15.0-143-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-143", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" + ] }, { "kernelversion": "148", - "kernelrelease": "4.15.0-144-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-144", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb" + ] }, { "kernelversion": "151", - "kernelrelease": "4.15.0-147-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-147", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" + ] }, { "kernelversion": "157", - "kernelrelease": "4.15.0-151-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-151", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" + ] }, { "kernelversion": "160", - "kernelrelease": "4.15.0-153-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-153", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb" + ] }, { "kernelversion": "161", - "kernelrelease": "4.15.0-154-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-154", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb" + ] }, { "kernelversion": "163", - "kernelrelease": "4.15.0-156-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-156", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" + ] }, { "kernelversion": "166", - "kernelrelease": "4.15.0-158-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-158", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_arm64.deb" + ] }, { "kernelversion": "167", - "kernelrelease": "4.15.0-159-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-159", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb" + ] }, { "kernelversion": "169", - "kernelrelease": "4.15.0-161-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-161", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb" + ] }, { "kernelversion": "170", - "kernelrelease": "4.15.0-162-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-162", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb" + ] }, { "kernelversion": "171", - "kernelrelease": "4.15.0-163-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-163", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb" + ] }, { "kernelversion": "174", - "kernelrelease": "4.15.0-166-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-166", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" + ] }, { "kernelversion": "180", - "kernelrelease": "4.15.0-171-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-171", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb" + ] }, { "kernelversion": "184", - "kernelrelease": "4.15.0-175-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-175", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-22", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-23", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-24", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "4.15.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-32", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "4.15.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-34", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-36", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-39", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "4.15.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-42", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-43", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "4.15.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-44", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb" + ] }, { "kernelversion": "48", - "kernelrelease": "4.15.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-46", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "4.15.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-47", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" + ] }, { "kernelversion": "54", - "kernelrelease": "4.15.0-50-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-50", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "4.15.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "4.15.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-52", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "4.15.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-54", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "4.15.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-55", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "4.15.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-58", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "4.15.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-60", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "4.15.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-62", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "4.15.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-64", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "4.15.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-65", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "4.15.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-66", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "4.15.0-69-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-69", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "4.15.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-70", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_arm64.deb" + ] }, { "kernelversion": "81", - "kernelrelease": "4.15.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-72", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "4.15.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-74", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "4.15.0-76-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-76", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" + ] }, { "kernelversion": "88", - "kernelrelease": "4.15.0-88-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-88", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb" + ] }, { "kernelversion": "92", - "kernelrelease": "4.15.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-91", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" + ] }, { "kernelversion": "97", - "kernelrelease": "4.15.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-96", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "4.15.0-99-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-99", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" + ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "4.18.0-13-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-13-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" + ] }, { "kernelversion": "15~18.04.1", - "kernelrelease": "4.18.0-14-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-14-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" + ] }, { "kernelversion": "16~18.04.1", - "kernelrelease": "4.18.0-15-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-15-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" + ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "4.18.0-16-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-16-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "4.18.0-17-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-17-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "4.18.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-20-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" + ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "4.18.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-21-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb" + ] }, { "kernelversion": "23~18.04.1", - "kernelrelease": "4.18.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-22-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "4.18.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-24-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "4.18.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-25-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-1021-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1021-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.0.0-1022-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1022-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-1023-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1023-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_arm64.deb" + ] }, { "kernelversion": "27~18.04.1", - "kernelrelease": "5.0.0-1024-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1024-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "5.0.0-1025-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1025-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "5.0.0-1027-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1027-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" + ] }, { "kernelversion": "16~18.04.1", - "kernelrelease": "5.0.0-15-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-15-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb" + ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.0.0-16-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-16-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "5.0.0-17-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-17-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb" + ] }, { "kernelversion": "20~18.04.1", - "kernelrelease": "5.0.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-19-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.0.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-20-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-23-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-25-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" + ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.0.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-27-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" + ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.0.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-29-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb" + ] }, { "kernelversion": "33~18.04.1", - "kernelrelease": "5.0.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-31-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb" + ] }, { "kernelversion": "34~18.04.2", - "kernelrelease": "5.0.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-32-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" + ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.0.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-35-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" + ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.0.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-36-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb" + ] }, { "kernelversion": "40~18.04.1", - "kernelrelease": "5.0.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-37-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb" + ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.0.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-52-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "5.0.0-61-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-61-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_arm64.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "5.0.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-62-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "5.0.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-63-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "5.0.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-65-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_arm64.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1017-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1017-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.3.0-1019-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1019-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.3.0-1023-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1023-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb" + ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1028-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb" + ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1030-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb" + ] }, { "kernelversion": "34~18.04.2", - "kernelrelease": "5.3.0-1032-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1032-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.3.0-1033-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1033-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "5.3.0-1034-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1034-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.3.0-1035-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1035-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" + ] }, { "kernelversion": "20~18.04.2", - "kernelrelease": "5.3.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-19-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.3.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-22-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb" + ] }, { "kernelversion": "25~18.04.2", - "kernelrelease": "5.3.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-23-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb" + ] }, { "kernelversion": "26~18.04.2", - "kernelrelease": "5.3.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-24-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" + ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.3.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-26-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" + ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-28-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-40-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" + ] }, { "kernelversion": "34~18.04.1", - "kernelrelease": "5.3.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-42-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb" + ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.3.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-45-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" + ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.3.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-46-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb" + ] }, { "kernelversion": "44~18.04.2", - "kernelrelease": "5.3.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-51-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" + ] }, { "kernelversion": "47~18.04.1", - "kernelrelease": "5.3.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-53-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" + ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.3.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-59-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" + ] }, { "kernelversion": "55~18.04.1", - "kernelrelease": "5.3.0-61-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-61-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb" + ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.3.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-62-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" + ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.3.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-64-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb" + ] }, { "kernelversion": "20~18.04.2", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1020-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" + ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1022-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1024-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1025-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb" + ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1028-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb" + ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.4.0-1029-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1029-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" + ] }, { "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1032-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1034-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb" + ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1035-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" + ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1037-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" + ] }, { "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1038-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1038-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" + ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1039-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb" + ] }, { "kernelversion": "118~18.04.1", - "kernelrelease": "5.4.0-104-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-104-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb" + ] }, { "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1041-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb" + ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1043-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb" + ] }, { "kernelversion": "47~18.04.1", - "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1045-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" + ] }, { "kernelversion": "50~18.04.2", - "kernelrelease": "5.4.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1046-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb" + ] }, { "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1047-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" + ] }, { "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1048-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb" + ] }, { "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1048-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" + ] }, { "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1049-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb" + ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1051-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb" + ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1052-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb" + ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1053-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" + ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1054-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb" + ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1054-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" + ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1055-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" + ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1055-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" + ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1056-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1056-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" + ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1057-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + ] }, { "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1057-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" + ] }, { "kernelversion": "61~18.04.3", - "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1058-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb" + ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1059-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" + ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1059-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" + ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1060-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" + ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1061-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + ] }, { "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1061-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1061-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" + ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1063-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" + ] }, { "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1063-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" + ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1065-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1066-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" + ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1068-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + ] }, { "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb" + ] }, { "kernelversion": "121~18.04.1", - "kernelrelease": "5.4.0-107-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-107-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" + ] }, { "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1070-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "76~18.04.1", + "kernelrelease": "5.4.0-1071-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1077-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" + ] + }, + { + "kernelversion": "123~18.04.1", + "kernelrelease": "5.4.0-109-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_arm64.deb" + ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-37-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + ] }, { "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-39-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" + ] }, { "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-40-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" + ] }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-42-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" + ] }, { "kernelversion": "49~18.04.2", - "kernelrelease": "5.4.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-45-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" + ] }, { "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-47-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" + ] }, { "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-48-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" + ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-51-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb" + ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-52-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" + ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-53-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" + ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-58-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" + ] }, { "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-59-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" + ] }, { "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-60-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" + ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-62-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb" + ] }, { "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-65-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" + ] }, { "kernelversion": "74~18.04.2", - "kernelrelease": "5.4.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-66-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" + ] }, { "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-67-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb" + ] }, { "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-70-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb" + ] }, { "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-71-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb" + ] }, { "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-72-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" + ] }, { "kernelversion": "82~18.04.1", - "kernelrelease": "5.4.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-73-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" + ] }, { "kernelversion": "83~18.04.1", - "kernelrelease": "5.4.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-74-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb" + ] }, { "kernelversion": "86~18.04.1", - "kernelrelease": "5.4.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-77-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb" + ] }, { "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-80-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-80-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" + ] }, { "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-81-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-81-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" + ] }, { "kernelversion": "94~18.04.1", - "kernelrelease": "5.4.0-84-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-84-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb" + ] }, { "kernelversion": "97~18.04.1", - "kernelrelease": "5.4.0-86-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-86-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" + ] }, { "kernelversion": "98~18.04.1", - "kernelrelease": "5.4.0-87-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-87-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb" + ] }, { "kernelversion": "100~18.04.1", - "kernelrelease": "5.4.0-89-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-89-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" + ] }, { "kernelversion": "101~18.04.1", - "kernelrelease": "5.4.0-90-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-90-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" + ] }, { "kernelversion": "103~18.04.2", - "kernelrelease": "5.4.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-92-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" + ] }, { "kernelversion": "106~18.04.1", - "kernelrelease": "5.4.0-94-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-94-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb" + ] }, { "kernelversion": "109~18.04.1", - "kernelrelease": "5.4.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-96-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" + ] }, { "kernelversion": "39", "kernelrelease": "4.15.0-1037-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + ] }, { "kernelversion": "127", - "kernelrelease": "4.15.0-124-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-124", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" + ] }, { "kernelversion": "138", - "kernelrelease": "4.15.0-134-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-134", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "4.15.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-38", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb" + ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-48", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" + ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "4.18.0-18-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-18-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" + ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.0.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-41-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb" + ] }, { "kernelversion": "47~18.04.1", - "kernelrelease": "5.0.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-43-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb" + ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.0.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-44-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" + ] }, { "kernelversion": "51~18.04.1", - "kernelrelease": "5.0.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-47-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb" + ] }, { "kernelversion": "52~18.04.1", - "kernelrelease": "5.0.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-48-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb" + ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.0.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-53-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" + ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.0.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-58-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb" + ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.0.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-60-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" + ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1016-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1018-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb" + ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1049-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb" + ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-54-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" + ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-64-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "4.15.0-20-generic", - "target": "ubuntu-generic" - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1003-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-20", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb" + ] }, { "kernelversion": "7", - "kernelrelease": "5.15.0-1004-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" + ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws" + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" + ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1005-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-1006-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "5.15.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-27-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" + ] }, { - "kernelversion": "8~22.04.2", - "kernelrelease": "5.17.0-8-generic", - "target": "ubuntu-generic" + "kernelversion": "28", + "kernelrelease": "5.15.0-27", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" + ] }, { - "kernelversion": "4", - "kernelrelease": "5.15.0-1002-generic", - "target": "ubuntu-generic" + "kernelversion": "29", + "kernelrelease": "5.15.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29_arm64.deb" + ] }, { "kernelversion": "4", - "kernelrelease": "5.15.0-1003-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-1003-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" + ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1003-generic", - "target": "ubuntu-generic" + "kernelversion": "5", + "kernelrelease": "5.15.0-1003-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb" + ] }, { "kernelversion": "6", "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb" + ] }, { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-generic", - "target": "ubuntu-generic" + "kernelversion": "6", + "kernelrelease": "5.15.0-1004-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1004-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_arm64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "5.15.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-24-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb" + ] }, { - "kernelversion": "25", - "kernelrelease": "5.15.0-25-generic", - "target": "ubuntu-generic" + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb" + ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + ] }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1028-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + ] + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1029-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.11.0-1029-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb" + ] }, { "kernelversion": "32~20.04.2", - "kernelrelease": "5.11.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1029-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" + ] }, { "kernelversion": "44~20.04.2", - "kernelrelease": "5.11.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-40-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb" + ] }, { "kernelversion": "45~20.04.1", - "kernelrelease": "5.11.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-41-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb" + ] }, { "kernelversion": "46~20.04.1", - "kernelrelease": "5.11.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-42-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb" + ] }, { "kernelversion": "47~20.04.2", - "kernelrelease": "5.11.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-43-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.11.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-60-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "5.11.0-61-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-61-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + ] }, { "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1014-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb" + ] }, { "kernelversion": "16~20.04.1", - "kernelrelease": "5.13.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1014-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" + ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1018-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" + ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1020-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" + ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws" + "kernelversion": "25~20.04.1", + "kernelrelease": "5.13.0-1023-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" + ] }, { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1022-generic", - "target": "ubuntu-generic" + "kernelversion": "27~20.04.1", + "kernelrelease": "5.13.0-1023-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_arm64.deb" + ] }, { "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1023-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb" + ] }, { "kernelversion": "31~20.04.2", - "kernelrelease": "5.13.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1026-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb" + ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-generic", - "target": "ubuntu-generic" + "kernelversion": "33~20.04.1", + "kernelrelease": "5.13.0-1028-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" + ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-19-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb" + ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-21-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb" + ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-22-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb" + ] }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.13.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-28-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb" + ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-29-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb" + ] }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-30-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" + ] }, { "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-32-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb" + ] }, { "kernelversion": "41~20.04.1", - "kernelrelease": "5.13.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-36-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb" + ] }, { "kernelversion": "42~20.04.1", - "kernelrelease": "5.13.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-37-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb" + ] }, { "kernelversion": "45~20.04.1", - "kernelrelease": "5.13.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-40-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb" + ] }, { "kernelversion": "46~20.04.1", - "kernelrelease": "5.13.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-41-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" + ] }, { - "kernelversion": "18~20.04.2", - "kernelrelease": "5.15.0-18-generic", - "target": "ubuntu-generic" - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.15.0-22-generic", - "target": "ubuntu-generic" + "kernelversion": "24~20.04.3", + "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb" + ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.15.0-23-generic", - "target": "ubuntu-generic" + "kernelversion": "25~20.04.2", + "kernelrelease": "5.15.0-25-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb" + ] }, { - "kernelversion": "25~20.04.2", - "kernelrelease": "5.15.0-25-generic", - "target": "ubuntu-generic" + "kernelversion": "29~20.04.1", + "kernelrelease": "5.15.0-28-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" + ] }, { "kernelversion": "113", - "kernelrelease": "5.4.0-100-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-100", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb" + ] }, { "kernelversion": "115", - "kernelrelease": "5.4.0-102-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-102", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_arm64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1026-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" + ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1026-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "5.4.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1027-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1027_5.4.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.4.0-1028-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.4.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1028-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1031-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1031_5.4.0-1031.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "5.4.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1033-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1033-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1034-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1034-bluefield_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1034_5.4.0-1034.37_all.deb" + ] + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1034-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" + ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1035-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb" + ] + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "5.4.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1046-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb" + ] }, { "kernelversion": "119", - "kernelrelease": "5.4.0-105-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-105", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1051-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1052-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.4.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1053-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1056-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "5.4.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1057-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1058-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb" + ] }, { - "kernelversion": "67", - "kernelrelease": "5.4.0-1059-generic", - "target": "ubuntu-generic" + "kernelversion": "120", + "kernelrelease": "5.4.0-106", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_arm64.deb" + ] }, { - "kernelversion": "120", - "kernelrelease": "5.4.0-106-generic", - "target": "ubuntu-generic" + "kernelversion": "68", + "kernelrelease": "5.4.0-1060-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1062-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" + ] }, { "kernelversion": "67", "kernelrelease": "5.4.0-1064-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" + ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1064-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb" + ] }, { "kernelversion": "69", "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1067-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "5.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1068-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb" + ] }, { "kernelversion": "73", "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + ] }, { "kernelversion": "121", - "kernelrelease": "5.4.0-107-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-107", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" + ] }, { "kernelversion": "74", "kernelrelease": "5.4.0-1070-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1070-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1070-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + ] }, { "kernelversion": "76", "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1071-generic", - "target": "ubuntu-generic" + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" + ] + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" + ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1071-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" + ] + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1075-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1073-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" + ] + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1075-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1076-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1076-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_arm64.deb" + ] }, { - "kernelversion": "80", - "kernelrelease": "5.4.0-1077-generic", - "target": "ubuntu-generic" + "kernelversion": "81", + "kernelrelease": "5.4.0-1078-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" + ] }, { "kernelversion": "122", - "kernelrelease": "5.4.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-108", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_arm64.deb" + ] }, { "kernelversion": "123", - "kernelrelease": "5.4.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-109", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb" + ] }, { "kernelversion": "124", - "kernelrelease": "5.4.0-110-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-110", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "5.4.0-97-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-97", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb" + ] }, { "kernelversion": "111", - "kernelrelease": "5.4.0-98-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-98", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "5.4.0-99-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-99", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "5.8.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-67-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" + ] }, { "kernelversion": "15~20.04.1", - "kernelrelease": "5.11.0-1014-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1014-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + ] }, { "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1016-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + ] + }, + { + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + ] + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" + ] }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + ] + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb" + ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1019-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" + ] }, { "kernelversion": "21~20.04.2", - "kernelrelease": "5.11.0-1020-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1020-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" + ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1020-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + ] }, { "kernelversion": "22~20.04.2", - "kernelrelease": "5.11.0-1021-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1021-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" + ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1021-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" + ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb" + ] }, { "kernelversion": "31~20.04.2", - "kernelrelease": "5.11.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1028-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" + ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-22-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb" + ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-25-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" + ] }, { "kernelversion": "29~20.04.1", - "kernelrelease": "5.11.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-27-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" + ] }, { "kernelversion": "36~20.04.1", - "kernelrelease": "5.11.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-34-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb" + ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.11.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-36-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" + ] }, { "kernelversion": "41~20.04.2", - "kernelrelease": "5.11.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-37-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" + ] }, { "kernelversion": "42~20.04.1", - "kernelrelease": "5.11.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-38-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb" + ] }, { "kernelversion": "48~20.04.2", - "kernelrelease": "5.11.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-44-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" + ] }, { "kernelversion": "51~20.04.1", - "kernelrelease": "5.11.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-46-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb" + ] }, { "kernelversion": "9~20.04.2", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1008-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb" + ] }, { "kernelversion": "12~20.04.1", - "kernelrelease": "5.13.0-1011-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1011-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" + ] }, { "kernelversion": "13~20.04.2", - "kernelrelease": "5.13.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1011-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb" + ] }, { "kernelversion": "13~20.04.1", - "kernelrelease": "5.13.0-1012-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1012-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1015-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb" + ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.13.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1016-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" + ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + ] + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb" + ] }, { "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-1021-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1021-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1021-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" + ] + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1021-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb" + ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1022-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" + ] }, { "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1022-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" + ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1025-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb" + ] }, { "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-23-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb" + ] }, { "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-25-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb" + ] }, { "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-27-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb" + ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-35-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb" + ] }, { "kernelversion": "44~20.04.1", - "kernelrelease": "5.13.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-39-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" + ] }, { "kernelversion": "11", "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" + ] }, { "kernelversion": "14", - "kernelrelease": "5.4.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1011-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1012-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "5.4.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1012-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "5.4.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1013-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "5.4.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1013-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb" + ] }, { "kernelversion": "15", "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1016-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "5.4.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1016-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb" + ] }, { "kernelversion": "17", "kernelrelease": "5.4.0-1017-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" + ] }, { "kernelversion": "18", "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1018-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1019-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1019_5.4.0-1019.22_all.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1019-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb" + ] }, { "kernelversion": "20", "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.4.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1020-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" + ] }, { "kernelversion": "21", "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + ] + }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1021-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1021-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb" + ] }, { "kernelversion": "22", "kernelrelease": "5.4.0-1022-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1022-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1022-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.4.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1023-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb" + ] }, { "kernelversion": "24", "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb" + ] }, { "kernelversion": "25", "kernelrelease": "5.4.0-1025-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.4.0-1025-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1025-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb" + ] }, { "kernelversion": "29", "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + ] }, { "kernelversion": "30", "kernelrelease": "5.4.0-1029-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.4.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1029-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1030-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-1030-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb" + ] }, { "kernelversion": "33", "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_arm64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1032-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1032-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" + ] }, { "kernelversion": "35", "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + ] }, { "kernelversion": "37", "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1036-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb" + ] }, { "kernelversion": "39", "kernelrelease": "5.4.0-1037-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" + ] }, { "kernelversion": "40", "kernelrelease": "5.4.0-1038-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1038-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" + ] }, { "kernelversion": "41", "kernelrelease": "5.4.0-1039-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + ] }, { "kernelversion": "118", - "kernelrelease": "5.4.0-104-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-104", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" + ] }, { "kernelversion": "43", "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1041-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1042-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb" + ] }, { "kernelversion": "45", "kernelrelease": "5.4.0-1043-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "5.4.0-1043-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1043-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb" + ] }, { "kernelversion": "48", - "kernelrelease": "5.4.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1044-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb" + ] }, { "kernelversion": "47", "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1045-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1045-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1045-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" + ] }, { "kernelversion": "49", "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "5.4.0-1047-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1047-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb" + ] }, { "kernelversion": "50", "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "5.4.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1048-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1048-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" + ] }, { "kernelversion": "51", "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1050-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb" + ] }, { "kernelversion": "53", "kernelrelease": "5.4.0-1051-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1052-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1053-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb" + ] }, { "kernelversion": "57", "kernelrelease": "5.4.0-1054-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1054-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" + ] }, { "kernelversion": "58", "kernelrelease": "5.4.0-1055-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1055-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1055-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb" + ] }, { "kernelversion": "59", "kernelrelease": "5.4.0-1056-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1056-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_arm64.deb" + ] }, { "kernelversion": "60", "kernelrelease": "5.4.0-1057-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" + ] }, { "kernelversion": "61", "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "5.4.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1058-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb" + ] }, { "kernelversion": "62", "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1059-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" + ] + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1059-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb" + ] }, { "kernelversion": "63", "kernelrelease": "5.4.0-1060-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + ] }, { "kernelversion": "64", "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "5.4.0-1061-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1061-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" + ] }, { "kernelversion": "66", "kernelrelease": "5.4.0-1063-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1063-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb" + ] }, { "kernelversion": "68", "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1066-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb" + ] }, { "kernelversion": "72", "kernelrelease": "5.4.0-1068-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "5.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + ] + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1077-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.4.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-31", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "5.4.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-39", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "5.4.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-40", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-42", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" + ] }, { "kernelversion": "51", - "kernelrelease": "5.4.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-47", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "5.4.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-48", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-52", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-53", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-58", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "5.4.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-59", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-60", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "5.4.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-62", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_arm64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "5.4.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-65", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "5.4.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-66", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "5.4.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-67", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-70", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-71", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb" + ] }, { "kernelversion": "80", - "kernelrelease": "5.4.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-72", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" + ] }, { "kernelversion": "82", - "kernelrelease": "5.4.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-73", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_arm64.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "5.4.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-74", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "5.4.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-77", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" + ] }, { "kernelversion": "90", - "kernelrelease": "5.4.0-80-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-80", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "5.4.0-81-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-81", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" + ] }, { "kernelversion": "94", - "kernelrelease": "5.4.0-84-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-84", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" + ] }, { "kernelversion": "97", - "kernelrelease": "5.4.0-86-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-86", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" + ] }, { "kernelversion": "99", - "kernelrelease": "5.4.0-88-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-88", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "5.4.0-89-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-89", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" + ] }, { "kernelversion": "101", - "kernelrelease": "5.4.0-90-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-90", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "5.4.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-91", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb" + ] }, { "kernelversion": "103", - "kernelrelease": "5.4.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-92", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "5.4.0-94-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-94", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb" + ] }, { "kernelversion": "109", - "kernelrelease": "5.4.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-96", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb" + ] }, { "kernelversion": "32~20.04.2", - "kernelrelease": "5.8.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1031-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb" + ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.8.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1033-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" + ] }, { "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.8.0-1035-aws-5.8", + "target": "ubuntu-aws-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" + ] }, { "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1037-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb" + ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.8.0-1038-aws-5.8", + "target": "ubuntu-aws-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" + ] }, { "kernelversion": "39~20.04.1", - "kernelrelease": "5.8.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1038-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" + ] }, { "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-1041-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.8.0-1041-aws-5.8", + "target": "ubuntu-aws-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb" + ] }, { "kernelversion": "44~20.04.1", - "kernelrelease": "5.8.0-1042-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.8.0-1042-aws-5.8", + "target": "ubuntu-aws-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" + ] }, { "kernelversion": "36~20.04.1", - "kernelrelease": "5.8.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-33-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" + ] }, { "kernelversion": "37~20.04.2", - "kernelrelease": "5.8.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-34-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" + ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-36-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" + ] }, { "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-38-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" + ] }, { "kernelversion": "46~20.04.1", - "kernelrelease": "5.8.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-41-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb" + ] }, { "kernelversion": "49~20.04.1", - "kernelrelease": "5.8.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-43-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb" + ] }, { "kernelversion": "50~20.04.1", - "kernelrelease": "5.8.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-44-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb" + ] }, { "kernelversion": "51~20.04.1", - "kernelrelease": "5.8.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-45-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" + ] }, { "kernelversion": "54~20.04.1", - "kernelrelease": "5.8.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-48-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" + ] }, { "kernelversion": "55~20.04.1", - "kernelrelease": "5.8.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-49-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb" + ] }, { "kernelversion": "56~20.04.1", - "kernelrelease": "5.8.0-50-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-50-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb" + ] }, { "kernelversion": "60~20.04.1", - "kernelrelease": "5.8.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-53-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb" + ] }, { "kernelversion": "62~20.04.1", - "kernelrelease": "5.8.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-55-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + ] }, { "kernelversion": "66~20.04.1", - "kernelrelease": "5.8.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-59-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" + ] }, { "kernelversion": "71~20.04.1", - "kernelrelease": "5.8.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-63-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb" + ] }, { "kernelversion": "9~20.04.2", - "kernelrelease": "5.11.0-1009-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1009-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "5.4.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1007-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1049-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.4.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-54", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-64", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb" + ] }, { "kernelversion": "35~20.04.2", - "kernelrelease": "5.8.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1034-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" + ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.8.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-23-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" + ] }, { "kernelversion": "26~20.04.1", - "kernelrelease": "5.8.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-25-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" + ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.8.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-28-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" + ] }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.8.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-29-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb" + ] }, { "kernelversion": "45~20.04.1", - "kernelrelease": "5.8.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-40-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb" + ] }, { "kernelversion": "8", - "kernelrelease": "5.4.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1008-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb" + ] }, { "kernelversion": "9", "kernelrelease": "5.4.0-1009-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "5.4.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-26", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.11.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1021-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" + ] + }, + { + "kernelversion": "23", + "kernelrelease": "5.11.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb" + ] }, { "kernelversion": "23", "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "5.11.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-49", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb" + ] }, { "kernelversion": "6", "kernelrelease": "5.11.0-1006-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + ] }, { "kernelversion": "7", - "kernelrelease": "5.11.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1007-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "5.11.0-16-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-16", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb" + ] }, { "kernelversion": "8", "kernelrelease": "5.13.0-1007-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1010-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" + ] }, { "kernelversion": "14", "kernelrelease": "5.13.0-1013-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb" + ] }, { "kernelversion": "15", "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "5.13.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1016-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1017-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + ] }, { "kernelversion": "19", "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1018-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1018-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1019-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb" + ] }, { "kernelversion": "21", "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1020-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb" + ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + ] }, { - "kernelversion": "24", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws" + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb" + ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1022-generic", - "target": "ubuntu-generic" + "kernelversion": "23", + "kernelrelease": "5.13.0-1021-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" + ] + }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-1021-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb" + ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb" + ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1023-generic", - "target": "ubuntu-generic" + "kernelversion": "24", + "kernelrelease": "5.13.0-1022-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" + ] + }, + { + "kernelversion": "24", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1023-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" + ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-1024-generic", - "target": "ubuntu-generic" + "kernelversion": "25", + "kernelrelease": "5.13.0-1023-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_arm64.deb" + ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1023-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-1024-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.13.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1026-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" + ] }, { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-generic", - "target": "ubuntu-generic" + "kernelversion": "28", + "kernelrelease": "5.13.0-1026-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1026_5.13.0-1026.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1026-raspi_5.13.0-1026.28_arm64.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.13.0-1028-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.13.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.13.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.13.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-32", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_arm64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "5.13.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-36", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "5.13.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "5.13.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-38", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "5.13.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-40", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "5.13.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-41", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb" + ] }, { "kernelversion": "7", "kernelrelease": "5.13.0-1006-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + ] }, { "kernelversion": "9", "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb" + ] }, { "kernelversion": "10", "kernelrelease": "5.13.0-1009-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "5.13.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1009-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb" + ] }, { "kernelversion": "12", "kernelrelease": "5.13.0-1011-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "5.13.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1011-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" + ] + }, + { + "kernelversion": "13", + "kernelrelease": "5.13.0-1011-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb" + ] }, { "kernelversion": "13", "kernelrelease": "5.13.0-1012-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb" + ] }, { "kernelversion": "14", - "kernelrelease": "5.13.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1012-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "5.13.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1013-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "5.13.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1013-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1015-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "5.13.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1015-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "5.13.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1016-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1021-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1021-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1022-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb" + ] + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1024-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "5.13.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1025-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb" + ] + }, + { + "kernelversion": "27", + "kernelrelease": "5.13.0-1025-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_arm64.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-21", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-22", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.13.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-23", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-25", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb" + ] }, { "kernelversion": "29", - "kernelrelease": "5.13.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-27", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" + ] }, { "kernelversion": "40", - "kernelrelease": "5.13.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-35", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "5.13.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-39", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-20", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb" + ] }, { "kernelversion": "6", "kernelrelease": "5.13.0-1005-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "5.13.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1008-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-19", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb" + ] + }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1004-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_arm64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1006-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.15.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.15.0-30-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.15.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" + ] + }, + { + "kernelversion": "4", + "kernelrelease": "5.15.0-1002-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1003-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb" + ] + }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.15.0-25", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb" + ] }, { "kernelversion": "147", - "kernelrelease": "3.13.0-100-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-100", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" + ] }, { "kernelversion": "148", - "kernelrelease": "3.13.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-101", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" + ] }, { "kernelversion": "150", - "kernelrelease": "3.13.0-103-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-103", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb" + ] }, { "kernelversion": "152", - "kernelrelease": "3.13.0-105-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-105", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb" + ] }, { "kernelversion": "153", - "kernelrelease": "3.13.0-106-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-106", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb" + ] }, { "kernelversion": "154", - "kernelrelease": "3.13.0-107-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-107", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb" + ] }, { "kernelversion": "155", - "kernelrelease": "3.13.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-108", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" + ] }, { "kernelversion": "156", - "kernelrelease": "3.13.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-109", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" + ] }, { "kernelversion": "157", - "kernelrelease": "3.13.0-110-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-110", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb" + ] }, { "kernelversion": "159", - "kernelrelease": "3.13.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-112", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb" + ] }, { "kernelversion": "162", - "kernelrelease": "3.13.0-115-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-115", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb" + ] }, { "kernelversion": "163", - "kernelrelease": "3.13.0-116-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-116", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + ] }, { "kernelversion": "164", - "kernelrelease": "3.13.0-117-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-117", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" + ] }, { "kernelversion": "166", - "kernelrelease": "3.13.0-119-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-119", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_arm64.deb" + ] }, { "kernelversion": "170", - "kernelrelease": "3.13.0-121-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-121", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb" + ] }, { "kernelversion": "172", - "kernelrelease": "3.13.0-123-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-123", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" + ] }, { "kernelversion": "174", - "kernelrelease": "3.13.0-125-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-125", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" + ] }, { "kernelversion": "175", - "kernelrelease": "3.13.0-126-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-126", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" + ] }, { "kernelversion": "177", - "kernelrelease": "3.13.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-128", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" + ] }, { "kernelversion": "178", - "kernelrelease": "3.13.0-129-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-129", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" + ] }, { "kernelversion": "181", - "kernelrelease": "3.13.0-132-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-132", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" + ] }, { "kernelversion": "182", - "kernelrelease": "3.13.0-133-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-133", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb" + ] }, { "kernelversion": "184", - "kernelrelease": "3.13.0-135-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-135", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" + ] }, { "kernelversion": "186", - "kernelrelease": "3.13.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-137", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" + ] }, { "kernelversion": "188", - "kernelrelease": "3.13.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-139", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb" + ] }, { "kernelversion": "190", - "kernelrelease": "3.13.0-141-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-141", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb" + ] }, { "kernelversion": "191", - "kernelrelease": "3.13.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-142", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb" + ] }, { "kernelversion": "192", - "kernelrelease": "3.13.0-143-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-143", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" + ] }, { "kernelversion": "193", - "kernelrelease": "3.13.0-144-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-144", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" + ] }, { "kernelversion": "196", - "kernelrelease": "3.13.0-147-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-147", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb" + ] }, { "kernelversion": "199", - "kernelrelease": "3.13.0-149-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-149", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_arm64.deb" + ] }, { "kernelversion": "201", - "kernelrelease": "3.13.0-151-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-151", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb" + ] }, { "kernelversion": "203", - "kernelrelease": "3.13.0-153-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-153", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" + ] }, { "kernelversion": "205", - "kernelrelease": "3.13.0-155-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-155", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" + ] }, { "kernelversion": "206", - "kernelrelease": "3.13.0-156-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-156", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb" + ] }, { "kernelversion": "207", - "kernelrelease": "3.13.0-157-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-157", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb" + ] }, { "kernelversion": "210", - "kernelrelease": "3.13.0-160-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-160", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" + ] }, { "kernelversion": "211", - "kernelrelease": "3.13.0-161-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-161", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" + ] }, { "kernelversion": "212", - "kernelrelease": "3.13.0-162-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-162", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" + ] }, { "kernelversion": "214", - "kernelrelease": "3.13.0-164-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-164", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" + ] }, { "kernelversion": "215", - "kernelrelease": "3.13.0-165-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-165", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb" + ] }, { "kernelversion": "216", - "kernelrelease": "3.13.0-166-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-166", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb" + ] }, { "kernelversion": "217", - "kernelrelease": "3.13.0-167-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-167", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" + ] }, { "kernelversion": "218", - "kernelrelease": "3.13.0-168-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-168", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + ] }, { "kernelversion": "220", - "kernelrelease": "3.13.0-170-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-170", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "3.13.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-24", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "3.13.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-27", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "3.13.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "3.13.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "3.13.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-32", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "3.13.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "3.13.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-34", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "3.13.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-35", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "3.13.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-36", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "3.13.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_arm64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "3.13.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-39", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "3.13.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-40", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "3.13.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-41", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "3.13.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-43", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "3.13.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-44", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_arm64.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "3.13.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-46", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" + ] }, { "kernelversion": "80", - "kernelrelease": "3.13.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-48", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_arm64.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "3.13.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-49", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "3.13.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "3.13.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-52", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" + ] }, { "kernelversion": "89", - "kernelrelease": "3.13.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-53", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "3.13.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-54", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb" + ] }, { "kernelversion": "94", - "kernelrelease": "3.13.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-55", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb" + ] }, { "kernelversion": "95", - "kernelrelease": "3.13.0-57-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-57", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" + ] }, { "kernelversion": "97", - "kernelrelease": "3.13.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-58", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" + ] }, { "kernelversion": "98", - "kernelrelease": "3.13.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-59", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "3.13.0-61-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-61", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "3.13.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-62", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb" + ] }, { "kernelversion": "103", - "kernelrelease": "3.13.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-63", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "3.13.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-65", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" + ] }, { "kernelversion": "108", - "kernelrelease": "3.13.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-66", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "3.13.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-67", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" + ] }, { "kernelversion": "111", - "kernelrelease": "3.13.0-68-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-68", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" + ] }, { "kernelversion": "113", - "kernelrelease": "3.13.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-70", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb" + ] }, { "kernelversion": "114", - "kernelrelease": "3.13.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-71", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" + ] }, { "kernelversion": "116", - "kernelrelease": "3.13.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-73", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb" + ] }, { "kernelversion": "118", - "kernelrelease": "3.13.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-74", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb" + ] }, { "kernelversion": "120", - "kernelrelease": "3.13.0-76-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-76", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" + ] }, { "kernelversion": "121", - "kernelrelease": "3.13.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-77", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" + ] }, { "kernelversion": "123", - "kernelrelease": "3.13.0-79-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-79", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb" + ] }, { "kernelversion": "127", - "kernelrelease": "3.13.0-83-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-83", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" + ] }, { "kernelversion": "129", - "kernelrelease": "3.13.0-85-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-85", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" + ] }, { "kernelversion": "131", - "kernelrelease": "3.13.0-86-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-86", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + ] }, { "kernelversion": "133", - "kernelrelease": "3.13.0-87-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-87", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" + ] }, { "kernelversion": "135", - "kernelrelease": "3.13.0-88-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-88", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" + ] }, { "kernelversion": "138", - "kernelrelease": "3.13.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-91", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" + ] }, { "kernelversion": "139", - "kernelrelease": "3.13.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-92", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" + ] }, { "kernelversion": "140", - "kernelrelease": "3.13.0-93-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-93", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb" + ] }, { "kernelversion": "142", - "kernelrelease": "3.13.0-95-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-95", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb" + ] }, { "kernelversion": "143", - "kernelrelease": "3.13.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-96", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" + ] }, { "kernelversion": "145", - "kernelrelease": "3.13.0-98-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-98", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" + ] }, { "kernelversion": "33~14.04.2", - "kernelrelease": "3.16.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-25-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" + ] }, { "kernelversion": "35~14.04.1", - "kernelrelease": "3.16.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-26-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb" + ] }, { "kernelversion": "38~14.04.1", - "kernelrelease": "3.16.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-28-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" + ] }, { "kernelversion": "39~14.04.1", - "kernelrelease": "3.16.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-29-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb" + ] }, { "kernelversion": "43~14.04.1", - "kernelrelease": "3.16.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-31-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" + ] }, { "kernelversion": "44~14.04.1", - "kernelrelease": "3.16.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-33-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" + ] }, { "kernelversion": "47~14.04.1", - "kernelrelease": "3.16.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-34-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" + ] }, { "kernelversion": "48~14.04.1", - "kernelrelease": "3.16.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-36-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" + ] }, { "kernelversion": "51~14.04.1", - "kernelrelease": "3.16.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-37-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb" + ] }, { "kernelversion": "52~14.04.1", - "kernelrelease": "3.16.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-38-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" + ] }, { "kernelversion": "53~14.04.1", - "kernelrelease": "3.16.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-39-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" + ] }, { "kernelversion": "57~14.04.1", - "kernelrelease": "3.16.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-41-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" + ] }, { "kernelversion": "58~14.04.1", - "kernelrelease": "3.16.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-43-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" + ] }, { "kernelversion": "59~14.04.1", - "kernelrelease": "3.16.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-44-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" + ] }, { "kernelversion": "60~14.04.1", - "kernelrelease": "3.16.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-45-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb" + ] }, { "kernelversion": "62~14.04.1", - "kernelrelease": "3.16.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-46-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb" + ] }, { "kernelversion": "64~14.04.1", - "kernelrelease": "3.16.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-48-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" + ] }, { "kernelversion": "65~14.04.1", - "kernelrelease": "3.16.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-49-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" + ] }, { "kernelversion": "67~14.04.1", - "kernelrelease": "3.16.0-50-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-50-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb" + ] }, { "kernelversion": "69~14.04.1", - "kernelrelease": "3.16.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-51-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb" + ] }, { "kernelversion": "71~14.04.1", - "kernelrelease": "3.16.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-52-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb" + ] }, { "kernelversion": "72~14.04.1", - "kernelrelease": "3.16.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-53-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb" + ] }, { "kernelversion": "74~14.04.1", - "kernelrelease": "3.16.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-55-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb" + ] }, { "kernelversion": "75~14.04.1", - "kernelrelease": "3.16.0-56-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-56-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb" + ] }, { "kernelversion": "77~14.04.1", - "kernelrelease": "3.16.0-57-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-57-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb" + ] }, { "kernelversion": "79~14.04.1", - "kernelrelease": "3.16.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-59-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb" + ] }, { "kernelversion": "80~14.04.1", - "kernelrelease": "3.16.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-60-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" + ] }, { "kernelversion": "83~14.04.1", - "kernelrelease": "3.16.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-62-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" + ] }, { "kernelversion": "87~14.04.1", - "kernelrelease": "3.16.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-67-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" + ] }, { "kernelversion": "89~14.04.1", - "kernelrelease": "3.16.0-69-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-69-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" + ] }, { "kernelversion": "90~14.04.1", - "kernelrelease": "3.16.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-70-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb" + ] }, { "kernelversion": "92~14.04.1", - "kernelrelease": "3.16.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-71-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb" + ] }, { "kernelversion": "95~14.04.1", - "kernelrelease": "3.16.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-73-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb" + ] }, { "kernelversion": "98~14.04.1", - "kernelrelease": "3.16.0-76-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-76-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb" + ] }, { "kernelversion": "99~14.04.1", - "kernelrelease": "3.16.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-77-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" + ] }, { "kernelversion": "20~14.04.1", - "kernelrelease": "3.19.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-20-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" + ] }, { "kernelversion": "21~14.04.1", - "kernelrelease": "3.19.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-21-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb" + ] }, { "kernelversion": "22~14.04.1", - "kernelrelease": "3.19.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-22-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" + ] }, { "kernelversion": "24~14.04.1", - "kernelrelease": "3.19.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-23-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb" + ] }, { "kernelversion": "26~14.04.1", - "kernelrelease": "3.19.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-25-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" + ] }, { "kernelversion": "28~14.04.1", - "kernelrelease": "3.19.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-26-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb" + ] }, { "kernelversion": "30~14.04.1", - "kernelrelease": "3.19.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-28-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb" + ] }, { "kernelversion": "34~14.04.1", - "kernelrelease": "3.19.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-30-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb" + ] }, { "kernelversion": "36~14.04.1", - "kernelrelease": "3.19.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-31-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" + ] }, { "kernelversion": "37~14.04.1", - "kernelrelease": "3.19.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-32-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb" + ] }, { "kernelversion": "38~14.04.1", - "kernelrelease": "3.19.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-33-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" + ] }, { "kernelversion": "42~14.04.1", - "kernelrelease": "3.19.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-37-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" + ] }, { "kernelversion": "44~14.04.1", - "kernelrelease": "3.19.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-39-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb" + ] }, { "kernelversion": "46~14.04.2", - "kernelrelease": "3.19.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-41-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb" + ] }, { "kernelversion": "48~14.04.1", - "kernelrelease": "3.19.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-42-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb" + ] }, { "kernelversion": "49~14.04.1", - "kernelrelease": "3.19.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-43-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" + ] }, { "kernelversion": "53~14.04.1", - "kernelrelease": "3.19.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-47-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb" + ] }, { "kernelversion": "55~14.04.1", - "kernelrelease": "3.19.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-49-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb" + ] }, { "kernelversion": "58~14.04.1", - "kernelrelease": "3.19.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-51-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb" + ] }, { "kernelversion": "62~14.04.1", - "kernelrelease": "3.19.0-56-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-56-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" + ] }, { "kernelversion": "64~14.04.1", - "kernelrelease": "3.19.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-58-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" + ] }, { "kernelversion": "66~14.04.1", - "kernelrelease": "3.19.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-59-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" + ] }, { "kernelversion": "69~14.04.1", - "kernelrelease": "3.19.0-61-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-61-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + ] }, { "kernelversion": "72~14.04.1", - "kernelrelease": "3.19.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-64-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" + ] }, { "kernelversion": "73~14.04.1", - "kernelrelease": "3.19.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-65-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb" + ] }, { "kernelversion": "74~14.04.1", - "kernelrelease": "3.19.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-66-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" + ] }, { "kernelversion": "76~14.04.1", - "kernelrelease": "3.19.0-68-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-68-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" + ] }, { "kernelversion": "77~14.04.1", - "kernelrelease": "3.19.0-69-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-69-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb" + ] }, { "kernelversion": "79~14.04.1", - "kernelrelease": "3.19.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-71-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" + ] }, { "kernelversion": "81~14.04.1", - "kernelrelease": "3.19.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-73-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" + ] }, { "kernelversion": "82~14.04.1", - "kernelrelease": "3.19.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-74-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb" + ] }, { "kernelversion": "83~14.04.1", - "kernelrelease": "3.19.0-75-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-75-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" + ] }, { "kernelversion": "85~14.04.1", - "kernelrelease": "3.19.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-77-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb" + ] }, { "kernelversion": "86~14.04.1", - "kernelrelease": "3.19.0-78-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-78-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb" + ] }, { "kernelversion": "87~14.04.1", - "kernelrelease": "3.19.0-79-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-79-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb" + ] }, { "kernelversion": "88~14.04.1", - "kernelrelease": "3.19.0-80-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-80-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb" + ] }, { "kernelversion": "22~14.04.1", - "kernelrelease": "4.2.0-18-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-18-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb" + ] }, { "kernelversion": "23~14.04.1", - "kernelrelease": "4.2.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-19-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" + ] }, { "kernelversion": "25~14.04.1", - "kernelrelease": "4.2.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-21-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" + ] }, { "kernelversion": "27~14.04.1", - "kernelrelease": "4.2.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-22-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" + ] }, { "kernelversion": "28~14.04.1", - "kernelrelease": "4.2.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-23-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" + ] }, { "kernelversion": "30~14.04.1", - "kernelrelease": "4.2.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-25-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" + ] }, { "kernelversion": "32~14.04.1", - "kernelrelease": "4.2.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-27-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb" + ] }, { "kernelversion": "36~14.04.1", - "kernelrelease": "4.2.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-30-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb" + ] }, { "kernelversion": "39~14.04.1", - "kernelrelease": "4.2.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-34-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" + ] }, { "kernelversion": "40~14.04.1", - "kernelrelease": "4.2.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-35-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb" + ] }, { "kernelversion": "42~14.04.1", - "kernelrelease": "4.2.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-36-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" + ] }, { "kernelversion": "45~14.04.1", - "kernelrelease": "4.2.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-38-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb" + ] }, { "kernelversion": "48~14.04.1", - "kernelrelease": "4.2.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-41-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb" + ] }, { "kernelversion": "49~14.04.1", - "kernelrelease": "4.2.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-42-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb" + ] }, { "kernelversion": "124~14.04.1", - "kernelrelease": "4.4.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-101-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb" + ] }, { "kernelversion": "126~14.04.1", - "kernelrelease": "4.4.0-103-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-103-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" + ] }, { "kernelversion": "127~14.04.1", - "kernelrelease": "4.4.0-104-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-104-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb" + ] }, { "kernelversion": "131~14.04.1", - "kernelrelease": "4.4.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-108-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb" + ] }, { "kernelversion": "132~14.04.1", - "kernelrelease": "4.4.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-109-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb" + ] }, { "kernelversion": "134~14.04.1", - "kernelrelease": "4.4.0-111-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-111-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" + ] }, { "kernelversion": "135~14.04.1", - "kernelrelease": "4.4.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-112-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" + ] }, { "kernelversion": "140~14.04.1", - "kernelrelease": "4.4.0-116-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-116-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" + ] }, { "kernelversion": "143~14.04.1", - "kernelrelease": "4.4.0-119-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-119-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" + ] }, { "kernelversion": "145~14.04.1", - "kernelrelease": "4.4.0-121-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-121-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" + ] }, { "kernelversion": "148~14.04.1", - "kernelrelease": "4.4.0-124-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-124-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" + ] }, { "kernelversion": "153~14.04.1", - "kernelrelease": "4.4.0-127-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-127-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" + ] }, { "kernelversion": "154~14.04.1", - "kernelrelease": "4.4.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-128-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" + ] }, { "kernelversion": "156~14.04.1", - "kernelrelease": "4.4.0-130-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-130-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" + ] }, { "kernelversion": "159~14.04.1", - "kernelrelease": "4.4.0-133-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-133-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" + ] }, { "kernelversion": "160~14.04.1", - "kernelrelease": "4.4.0-134-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-134-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb" + ] }, { "kernelversion": "163~14.04.1", - "kernelrelease": "4.4.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-137-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" + ] }, { "kernelversion": "164~14.04.1", - "kernelrelease": "4.4.0-138-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-138-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" + ] }, { "kernelversion": "165~14.04.1", - "kernelrelease": "4.4.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-139-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" + ] }, { "kernelversion": "167~14.04.1", - "kernelrelease": "4.4.0-141-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-141-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb" + ] }, { "kernelversion": "168~14.04.1", - "kernelrelease": "4.4.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-142-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb" + ] }, { "kernelversion": "169~14.04.2", - "kernelrelease": "4.4.0-143-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-143-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" + ] }, { "kernelversion": "170~14.04.1", - "kernelrelease": "4.4.0-144-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-144-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" + ] }, { "kernelversion": "174~14.04.1", - "kernelrelease": "4.4.0-148-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-148-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" + ] }, { "kernelversion": "37~14.04.1", - "kernelrelease": "4.4.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-21-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb" + ] }, { "kernelversion": "40~14.04.1", - "kernelrelease": "4.4.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-22-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb" + ] }, { "kernelversion": "43~14.04.1", - "kernelrelease": "4.4.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-24-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + ] }, { "kernelversion": "47~14.04.1", - "kernelrelease": "4.4.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-28-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" + ] }, { "kernelversion": "50~14.04.1", - "kernelrelease": "4.4.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-31-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_arm64.deb" + ] }, { "kernelversion": "53~14.04.1", - "kernelrelease": "4.4.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-34-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb" + ] }, { "kernelversion": "55~14.04.1", - "kernelrelease": "4.4.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-36-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" + ] }, { "kernelversion": "57~14.04.1", - "kernelrelease": "4.4.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-38-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb" + ] }, { "kernelversion": "62~14.04.1", - "kernelrelease": "4.4.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-42-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb" + ] }, { "kernelversion": "66~14.04.1", - "kernelrelease": "4.4.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-45-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb" + ] }, { "kernelversion": "68~14.04.1", - "kernelrelease": "4.4.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-47-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb" + ] }, { "kernelversion": "72~14.04.1", - "kernelrelease": "4.4.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-51-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb" + ] }, { "kernelversion": "74~14.04.1", - "kernelrelease": "4.4.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-53-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" + ] }, { "kernelversion": "78~14.04.1", - "kernelrelease": "4.4.0-57-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-57-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb" + ] }, { "kernelversion": "80~14.04.1", - "kernelrelease": "4.4.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-59-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" + ] }, { "kernelversion": "83~14.04.1", - "kernelrelease": "4.4.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-62-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" + ] }, { "kernelversion": "84~14.04.2", - "kernelrelease": "4.4.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-63-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" + ] }, { "kernelversion": "85~14.04.1", - "kernelrelease": "4.4.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-64-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb" + ] }, { "kernelversion": "87~14.04.1", - "kernelrelease": "4.4.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-66-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" + ] }, { "kernelversion": "88~14.04.1", - "kernelrelease": "4.4.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-67-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb" + ] }, { "kernelversion": "91~14.04.1", - "kernelrelease": "4.4.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-70-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb" + ] }, { "kernelversion": "92~14.04.1", - "kernelrelease": "4.4.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-71-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb" + ] }, { "kernelversion": "93~14.04.1", - "kernelrelease": "4.4.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-72-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb" + ] }, { "kernelversion": "96~14.04.1", - "kernelrelease": "4.4.0-75-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-75-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" + ] }, { "kernelversion": "99~14.04.2", - "kernelrelease": "4.4.0-78-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-78-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb" + ] }, { "kernelversion": "100~14.04.1", - "kernelrelease": "4.4.0-79-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-79-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + ] }, { "kernelversion": "104~14.04.1", - "kernelrelease": "4.4.0-81-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-81-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" + ] }, { "kernelversion": "106~14.04.1", - "kernelrelease": "4.4.0-83-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-83-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb" + ] }, { "kernelversion": "110~14.04.1", - "kernelrelease": "4.4.0-87-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-87-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb" + ] }, { "kernelversion": "112~14.04.1", - "kernelrelease": "4.4.0-89-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-89-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" + ] }, { "kernelversion": "114~14.04.1", - "kernelrelease": "4.4.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-91-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" + ] }, { "kernelversion": "115~14.04.1", - "kernelrelease": "4.4.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-92-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" + ] }, { "kernelversion": "116~14.04.1", - "kernelrelease": "4.4.0-93-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-93-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" + ] }, { "kernelversion": "119~14.04.1", - "kernelrelease": "4.4.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-96-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb" + ] }, { "kernelversion": "120~14.04.1", - "kernelrelease": "4.4.0-97-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-97-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" + ] }, { "kernelversion": "121~14.04.1", - "kernelrelease": "4.4.0-98-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-98-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" + ] }, { "kernelversion": "160", - "kernelrelease": "3.13.0-113-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-113", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" + ] }, { "kernelversion": "194", - "kernelrelease": "3.13.0-145-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-145", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb" + ] }, { "kernelversion": "208", - "kernelrelease": "3.13.0-158-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-158", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb" + ] }, { "kernelversion": "213", - "kernelrelease": "3.13.0-163-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-163", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb" + ] }, { "kernelversion": "219", - "kernelrelease": "3.13.0-169-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-169", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "3.13.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" + ] }, { "kernelversion": "40~14.04.1", - "kernelrelease": "3.16.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-30-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb" + ] }, { "kernelversion": "54~14.04.1", - "kernelrelease": "3.16.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-40-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" + ] }, { "kernelversion": "18~14.04.1", - "kernelrelease": "3.19.0-18-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-18-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb" + ] }, { "kernelversion": "157~14.04.1", - "kernelrelease": "4.4.0-131-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-131-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb" + ] }, { "kernelversion": "161~14.04.1", - "kernelrelease": "4.4.0-135-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-135-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb" + ] }, { "kernelversion": "166~14.04.1", - "kernelrelease": "4.4.0-140-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-140-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb" + ] }, { "kernelversion": "172~14.04.1", - "kernelrelease": "4.4.0-146-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-146-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "3.13.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-24", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb" + ] }, { "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-1095-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1095-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb" + ] }, { "kernelversion": "103~16.04.1", - "kernelrelease": "4.15.0-1096-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1096-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb" + ] }, { "kernelversion": "238", - "kernelrelease": "4.4.0-206-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-206", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" + ] }, { "kernelversion": "239", - "kernelrelease": "4.4.0-207-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-207", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb" + ] }, { "kernelversion": "16~16.04.1", - "kernelrelease": "4.10.0-14-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-14-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" + ] }, { "kernelversion": "21~16.04.1", - "kernelrelease": "4.10.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-19-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb" + ] }, { "kernelversion": "22~16.04.1", - "kernelrelease": "4.10.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-20-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" + ] }, { "kernelversion": "23~16.04.1", - "kernelrelease": "4.10.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-21-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb" + ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.10.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-22-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" + ] }, { "kernelversion": "28~16.04.1", - "kernelrelease": "4.10.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-24-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" + ] }, { "kernelversion": "30~16.04.1", - "kernelrelease": "4.10.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-26-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" + ] }, { "kernelversion": "30~16.04.2", - "kernelrelease": "4.10.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-27-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb" + ] }, { "kernelversion": "32~16.04.2", - "kernelrelease": "4.10.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-28-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb" + ] }, { "kernelversion": "34~16.04.1", - "kernelrelease": "4.10.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-30-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.10.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-32-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" + ] }, { "kernelversion": "37~16.04.1", - "kernelrelease": "4.10.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-33-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb" + ] }, { "kernelversion": "39~16.04.1", - "kernelrelease": "4.10.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-35-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb" + ] }, { "kernelversion": "41~16.04.1", - "kernelrelease": "4.10.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-37-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.10.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-38-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb" + ] }, { "kernelversion": "44~16.04.1", - "kernelrelease": "4.10.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-40-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb" + ] }, { "kernelversion": "46~16.04.1", - "kernelrelease": "4.10.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-42-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb" + ] }, { "kernelversion": "19~16.04.1", - "kernelrelease": "4.11.0-13-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-13-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb" + ] }, { "kernelversion": "20~16.04.1", - "kernelrelease": "4.11.0-14-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-14-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb" + ] }, { "kernelversion": "19~16.04.3", - "kernelrelease": "4.13.0-16-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-16-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb" + ] }, { "kernelversion": "20~16.04.1", - "kernelrelease": "4.13.0-17-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-17-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" + ] }, { "kernelversion": "22~16.04.1", - "kernelrelease": "4.13.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-19-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb" + ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.13.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-21-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb" + ] }, { "kernelversion": "29~16.04.2", - "kernelrelease": "4.13.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-25-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" + ] }, { "kernelversion": "29~16.04.2", - "kernelrelease": "4.13.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-26-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb" + ] }, { "kernelversion": "34~16.04.1", - "kernelrelease": "4.13.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-31-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" + ] }, { "kernelversion": "35~16.04.1", - "kernelrelease": "4.13.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-32-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" + ] }, { "kernelversion": "40~16.04.1", - "kernelrelease": "4.13.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-36-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.13.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-37-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" + ] }, { "kernelversion": "43~16.04.1", - "kernelrelease": "4.13.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-38-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" + ] }, { "kernelversion": "44~16.04.1", - "kernelrelease": "4.13.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-39-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb" + ] }, { "kernelversion": "46~16.04.1", - "kernelrelease": "4.13.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-41-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" + ] }, { "kernelversion": "48~16.04.1", - "kernelrelease": "4.13.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-43-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb" + ] }, { "kernelversion": "50~16.04.1", - "kernelrelease": "4.13.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-45-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb" + ] }, { "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-101-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" + ] }, { "kernelversion": "107~16.04.1", - "kernelrelease": "4.15.0-106-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-106-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" + ] }, { "kernelversion": "108~16.04.1", - "kernelrelease": "4.15.0-107-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-107-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb" + ] }, { "kernelversion": "99~16.04.1", - "kernelrelease": "4.15.0-1093-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1093-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb" + ] }, { "kernelversion": "101~16.04.1", - "kernelrelease": "4.15.0-1094-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1094-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" + ] }, { "kernelversion": "104~16.04.1", - "kernelrelease": "4.15.0-1097-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1097-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb" + ] }, { "kernelversion": "105~16.04.1", - "kernelrelease": "4.15.0-1098-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1098-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" + ] }, { "kernelversion": "106~16.04.1", - "kernelrelease": "4.15.0-1099-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1099-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb" + ] }, { "kernelversion": "113~16.04.1", - "kernelrelease": "4.15.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-112-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" + ] }, { "kernelversion": "116~16.04.1", - "kernelrelease": "4.15.0-115-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-115-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" + ] }, { "kernelversion": "118~16.04.1", - "kernelrelease": "4.15.0-117-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-117-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + ] }, { "kernelversion": "119~16.04.1", - "kernelrelease": "4.15.0-118-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-118-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" + ] }, { "kernelversion": "122~16.04.1", - "kernelrelease": "4.15.0-120-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-120-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb" + ] }, { "kernelversion": "124~16.04.1", - "kernelrelease": "4.15.0-122-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-122-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" + ] }, { "kernelversion": "126~16.04.1", - "kernelrelease": "4.15.0-123-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-123-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb" + ] }, { "kernelversion": "131~16.04.1", - "kernelrelease": "4.15.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-128-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" + ] }, { "kernelversion": "132~16.04.1", - "kernelrelease": "4.15.0-129-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-129-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" + ] }, { "kernelversion": "14~16.04.1", - "kernelrelease": "4.15.0-13-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-13-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" + ] }, { "kernelversion": "136~16.04.1", - "kernelrelease": "4.15.0-132-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-132-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" + ] }, { "kernelversion": "137~16.04.1", - "kernelrelease": "4.15.0-133-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-133-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" + ] }, { "kernelversion": "140~16.04.1", - "kernelrelease": "4.15.0-136-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-136-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" + ] }, { "kernelversion": "141~16.04.1", - "kernelrelease": "4.15.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-137-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" + ] }, { "kernelversion": "143~16.04.1", - "kernelrelease": "4.15.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-139-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb" + ] }, { "kernelversion": "144~16.04.1", - "kernelrelease": "4.15.0-140-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-140-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" + ] }, { "kernelversion": "146~16.04.1", - "kernelrelease": "4.15.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-142-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb" + ] }, { "kernelversion": "16~16.04.1", - "kernelrelease": "4.15.0-15-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-15-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" + ] }, { "kernelversion": "21~16.04.1", - "kernelrelease": "4.15.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-20-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" + ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-22-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" + ] }, { "kernelversion": "25~16.04.1", - "kernelrelease": "4.15.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-23-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb" + ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-24-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb" + ] }, { "kernelversion": "31~16.04.1", - "kernelrelease": "4.15.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-29-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" + ] }, { "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-30-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb" + ] }, { "kernelversion": "35~16.04.1", - "kernelrelease": "4.15.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-32-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-33-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" + ] }, { "kernelversion": "37~16.04.1", - "kernelrelease": "4.15.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-34-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" + ] }, { "kernelversion": "39~16.04.1", - "kernelrelease": "4.15.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-36-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.15.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-39-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb" + ] }, { "kernelversion": "45~16.04.1", - "kernelrelease": "4.15.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-42-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb" + ] }, { "kernelversion": "46~16.04.1", - "kernelrelease": "4.15.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-43-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb" + ] }, { "kernelversion": "48~16.04.1", - "kernelrelease": "4.15.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-45-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb" + ] }, { "kernelversion": "49~16.04.1", - "kernelrelease": "4.15.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-46-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" + ] }, { "kernelversion": "50~16.04.1", - "kernelrelease": "4.15.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-47-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" + ] }, { "kernelversion": "54~16.04.1", - "kernelrelease": "4.15.0-50-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-50-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" + ] }, { "kernelversion": "55~16.04.1", - "kernelrelease": "4.15.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-51-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" + ] }, { "kernelversion": "56~16.04.1", - "kernelrelease": "4.15.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-52-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" + ] }, { "kernelversion": "58~16.04.1", - "kernelrelease": "4.15.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-54-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb" + ] }, { "kernelversion": "60~16.04.2", - "kernelrelease": "4.15.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-55-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + ] }, { "kernelversion": "64~16.04.1", - "kernelrelease": "4.15.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-58-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb" + ] }, { "kernelversion": "67~16.04.1", - "kernelrelease": "4.15.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-60-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb" + ] }, { "kernelversion": "69~16.04.1", - "kernelrelease": "4.15.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-62-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb" + ] }, { "kernelversion": "73~16.04.1", - "kernelrelease": "4.15.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-64-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" + ] }, { "kernelversion": "74~16.04.1", - "kernelrelease": "4.15.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-65-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" + ] }, { "kernelversion": "75~16.04.1", - "kernelrelease": "4.15.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-66-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb" + ] }, { "kernelversion": "78~16.04.1", - "kernelrelease": "4.15.0-69-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-69-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" + ] }, { "kernelversion": "79~16.04.1", - "kernelrelease": "4.15.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-70-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" + ] }, { "kernelversion": "81~16.04.1", - "kernelrelease": "4.15.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-72-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" + ] }, { "kernelversion": "83~16.04.1", - "kernelrelease": "4.15.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-74-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" + ] }, { "kernelversion": "86~16.04.1", - "kernelrelease": "4.15.0-76-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-76-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" + ] }, { "kernelversion": "88~16.04.1", - "kernelrelease": "4.15.0-88-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-88-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb" + ] }, { "kernelversion": "92~16.04.1", - "kernelrelease": "4.15.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-91-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" + ] }, { "kernelversion": "97~16.04.1", - "kernelrelease": "4.15.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-96-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" + ] }, { "kernelversion": "100~16.04.1", - "kernelrelease": "4.15.0-99-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-99-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" + ] }, { "kernelversion": "124", - "kernelrelease": "4.4.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-101", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb" + ] }, { "kernelversion": "126", - "kernelrelease": "4.4.0-103-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-103", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" + ] }, { "kernelversion": "127", - "kernelrelease": "4.4.0-104-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-104", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" + ] }, { "kernelversion": "131", - "kernelrelease": "4.4.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-108", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb" + ] }, { "kernelversion": "132", - "kernelrelease": "4.4.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-109", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb" + ] }, { "kernelversion": "135", - "kernelrelease": "4.4.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-112", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" + ] }, { "kernelversion": "140", - "kernelrelease": "4.4.0-116-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-116", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb" + ] }, { "kernelversion": "143", - "kernelrelease": "4.4.0-119-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-119", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" + ] }, { "kernelversion": "145", - "kernelrelease": "4.4.0-121-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-121", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb" + ] }, { "kernelversion": "148", - "kernelrelease": "4.4.0-124-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-124", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb" + ] }, { "kernelversion": "153", - "kernelrelease": "4.4.0-127-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-127", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" + ] }, { "kernelversion": "154", - "kernelrelease": "4.4.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-128", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" + ] }, { "kernelversion": "156", - "kernelrelease": "4.4.0-130-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-130", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" + ] }, { "kernelversion": "159", - "kernelrelease": "4.4.0-133-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-133", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" + ] }, { "kernelversion": "160", - "kernelrelease": "4.4.0-134-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-134", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb" + ] }, { "kernelversion": "163", - "kernelrelease": "4.4.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-137", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_arm64.deb" + ] }, { "kernelversion": "164", - "kernelrelease": "4.4.0-138-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-138", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb" + ] }, { "kernelversion": "165", - "kernelrelease": "4.4.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-139", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb" + ] }, { "kernelversion": "167", - "kernelrelease": "4.4.0-141-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-141", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb" + ] }, { "kernelversion": "168", - "kernelrelease": "4.4.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-142", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb" + ] }, { "kernelversion": "169", - "kernelrelease": "4.4.0-143-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-143", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" + ] }, { "kernelversion": "171", - "kernelrelease": "4.4.0-145-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-145", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" + ] }, { "kernelversion": "174", - "kernelrelease": "4.4.0-148-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-148", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_arm64.deb" + ] }, { "kernelversion": "176", - "kernelrelease": "4.4.0-150-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-150", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" + ] }, { "kernelversion": "178", - "kernelrelease": "4.4.0-151-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-151", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" + ] }, { "kernelversion": "181", - "kernelrelease": "4.4.0-154-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-154", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" + ] }, { "kernelversion": "185", - "kernelrelease": "4.4.0-157-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-157", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb" + ] }, { "kernelversion": "187", - "kernelrelease": "4.4.0-159-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-159", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb" + ] }, { "kernelversion": "189", - "kernelrelease": "4.4.0-161-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-161", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" + ] }, { "kernelversion": "192", - "kernelrelease": "4.4.0-164-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-164", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb" + ] }, { "kernelversion": "193", - "kernelrelease": "4.4.0-165-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-165", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" + ] }, { "kernelversion": "195", - "kernelrelease": "4.4.0-166-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-166", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb" + ] }, { "kernelversion": "197", - "kernelrelease": "4.4.0-168-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-168", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" + ] }, { "kernelversion": "198", - "kernelrelease": "4.4.0-169-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-169", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" + ] }, { "kernelversion": "199", - "kernelrelease": "4.4.0-170-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-170", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" + ] }, { "kernelversion": "200", - "kernelrelease": "4.4.0-171-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-171", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" + ] }, { "kernelversion": "203", - "kernelrelease": "4.4.0-173-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-173", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" + ] }, { "kernelversion": "204", - "kernelrelease": "4.4.0-174-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-174", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb" + ] }, { "kernelversion": "206", - "kernelrelease": "4.4.0-176-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-176", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb" + ] }, { "kernelversion": "207", - "kernelrelease": "4.4.0-177-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-177", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb" + ] }, { "kernelversion": "208", - "kernelrelease": "4.4.0-178-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-178", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" + ] }, { "kernelversion": "209", - "kernelrelease": "4.4.0-179-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-179", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb" + ] }, { "kernelversion": "214", - "kernelrelease": "4.4.0-184-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-184", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" + ] }, { "kernelversion": "215", - "kernelrelease": "4.4.0-185-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-185", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_arm64.deb" + ] }, { "kernelversion": "216", - "kernelrelease": "4.4.0-186-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-186", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" + ] }, { "kernelversion": "217", - "kernelrelease": "4.4.0-187-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-187", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" + ] }, { "kernelversion": "219", - "kernelrelease": "4.4.0-189-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-189", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb" + ] }, { "kernelversion": "220", - "kernelrelease": "4.4.0-190-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-190", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" + ] }, { "kernelversion": "224", - "kernelrelease": "4.4.0-193-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-193", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb" + ] }, { "kernelversion": "226", - "kernelrelease": "4.4.0-194-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-194", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" + ] }, { "kernelversion": "229", - "kernelrelease": "4.4.0-197-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-197", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb" + ] }, { "kernelversion": "230", - "kernelrelease": "4.4.0-198-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-198", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb" + ] }, { "kernelversion": "232", - "kernelrelease": "4.4.0-200-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-200", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" + ] }, { "kernelversion": "233", - "kernelrelease": "4.4.0-201-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-201", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" + ] }, { "kernelversion": "235", - "kernelrelease": "4.4.0-203-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-203", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" + ] }, { "kernelversion": "236", - "kernelrelease": "4.4.0-204-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-204", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb" + ] }, { "kernelversion": "240", - "kernelrelease": "4.4.0-208-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-208", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb" + ] }, { "kernelversion": "241", - "kernelrelease": "4.4.0-209-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-209", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb" + ] }, { "kernelversion": "242", - "kernelrelease": "4.4.0-210-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-210", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + ] }, { "kernelversion": "40", - "kernelrelease": "4.4.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-22", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "4.4.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-24", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "4.4.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "4.4.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-31", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "4.4.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-34", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_arm64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "4.4.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-36", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "4.4.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-38", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "4.4.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-42", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "4.4.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb" + ] }, { "kernelversion": "68", - "kernelrelease": "4.4.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-47", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "4.4.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "4.4.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-53", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "4.4.0-57-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-57", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_arm64.deb" + ] }, { "kernelversion": "80", - "kernelrelease": "4.4.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-59", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_arm64.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "4.4.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-62", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "4.4.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-63", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" + ] }, { "kernelversion": "85", - "kernelrelease": "4.4.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-64", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + ] }, { "kernelversion": "87", - "kernelrelease": "4.4.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-66", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" + ] }, { "kernelversion": "88", - "kernelrelease": "4.4.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-67", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "4.4.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-70", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb" + ] }, { "kernelversion": "92", - "kernelrelease": "4.4.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-71", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" + ] }, { "kernelversion": "93", - "kernelrelease": "4.4.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-72", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" + ] }, { "kernelversion": "96", - "kernelrelease": "4.4.0-75-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-75", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" + ] }, { "kernelversion": "99", - "kernelrelease": "4.4.0-78-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-78", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "4.4.0-79-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-79", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" + ] }, { "kernelversion": "104", - "kernelrelease": "4.4.0-81-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-81", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "4.4.0-83-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-83", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "4.4.0-87-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-87", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "4.4.0-89-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-89", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + ] }, { "kernelversion": "114", - "kernelrelease": "4.4.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-91", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb" + ] }, { "kernelversion": "115", - "kernelrelease": "4.4.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-92", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" + ] }, { "kernelversion": "116", - "kernelrelease": "4.4.0-93-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-93", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb" + ] }, { "kernelversion": "119", - "kernelrelease": "4.4.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-96", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" + ] }, { "kernelversion": "120", - "kernelrelease": "4.4.0-97-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-97", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb" + ] }, { "kernelversion": "121", - "kernelrelease": "4.4.0-98-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-98", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.8.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-34-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.8.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-36-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.8.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-39-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb" + ] }, { "kernelversion": "44~16.04.1", - "kernelrelease": "4.8.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-41-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb" + ] }, { "kernelversion": "48~16.04.1", - "kernelrelease": "4.8.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-45-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" + ] }, { "kernelversion": "49~16.04.1", - "kernelrelease": "4.8.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-46-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" + ] }, { "kernelversion": "52~16.04.1", - "kernelrelease": "4.8.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-49-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" + ] }, { "kernelversion": "55~16.04.1", - "kernelrelease": "4.8.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-52-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb" + ] }, { "kernelversion": "57~16.04.1", - "kernelrelease": "4.8.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-54-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" + ] }, { "kernelversion": "61~16.04.1", - "kernelrelease": "4.8.0-56-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-56-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb" + ] }, { "kernelversion": "63~16.04.1", - "kernelrelease": "4.8.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-58-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb" + ] }, { "kernelversion": "41~16.04.1", - "kernelrelease": "4.15.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-38-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" + ] }, { "kernelversion": "51~16.04.1", - "kernelrelease": "4.15.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-48-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" + ] }, { "kernelversion": "146", - "kernelrelease": "4.4.0-122-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-122", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" + ] }, { "kernelversion": "157", - "kernelrelease": "4.4.0-131-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-131", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb" + ] }, { "kernelversion": "161", - "kernelrelease": "4.4.0-135-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-135", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" + ] }, { "kernelversion": "166", - "kernelrelease": "4.4.0-140-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-140", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb" + ] }, { "kernelversion": "172", - "kernelrelease": "4.4.0-146-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-146", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "4.4.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-43", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" + ] }, { "kernelversion": "98", - "kernelrelease": "4.4.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-77", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" + ] }, { "kernelversion": "45~16.04.1", - "kernelrelease": "4.8.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-42-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb" + ] }, { "kernelversion": "47~16.04.1", - "kernelrelease": "4.8.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-44-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb" + ] }, { "kernelversion": "54~16.04.1", - "kernelrelease": "4.8.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-51-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb" + ] }, { "kernelversion": "56~16.04.1", - "kernelrelease": "4.8.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-53-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "4.4.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-21", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" + ] } ], "Flatcar": [ { "kernelversion": 1, "kernelrelease": "3033.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.2.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.2.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.2.3", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.3/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.2.4", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.4/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3139.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3033.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3033.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3066.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3066.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3066.1.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3139.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3139.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3139.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3139.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3185.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3185.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2345.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2345.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2345.0.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2345.0.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2387.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2387.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2411.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2411.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2430.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2430.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2466.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2466.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2492.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2492.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2513.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2513.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2513.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2513.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2513.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2513.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2592.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2592.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2605.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2605.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2632.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2632.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2661.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2661.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2671.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2671.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2697.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2697.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2705.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2705.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2723.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2723.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2748.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2748.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2783.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2783.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2801.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2801.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2801.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2801.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2823.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2823.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2857.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2857.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2879.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2879.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2879.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2879.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2905.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2920.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2920.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2942.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2942.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2955.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2955.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2969.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2969.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2983.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/2983.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3005.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3005.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3005.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3005.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3033.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3046.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3046.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3066.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3066.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3115.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3115.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3127.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3127.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3139.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3139.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3165.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3165.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3185.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3185.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3200.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3200.0.0/flatcar_developer_container.bin.bz2" + ] } ] } diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index 47c06f7..614b688 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -3,19299 +3,38454 @@ { "kernelversion": 1, "kernelrelease": "4.9.17-8.31.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/main/201703c0ffee/x86_64/Packages/kernel-devel-4.9.17-8.31.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.32-15.41.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.32-15.41.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.38-16.33.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.38-16.33.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.27-14.31.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.27-14.31.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.43-17.38.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.43-17.38.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.27-14.33.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.27-14.33.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.20-11.31.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.20-11.31.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.38-16.35.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.38-16.35.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.43-17.39.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.43-17.39.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.20-10.30.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.20-10.30.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.51-10.52.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/main/154a6dd467e2/x86_64/Packages/kernel-devel-4.9.51-10.52.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.91-40.57.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.91-40.57.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.76-3.78.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.76-3.78.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.75-25.55.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.75-25.55.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.93-41.60.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.93-41.60.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.58-18.51.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.58-18.51.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.70-22.55.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.70-22.55.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.62-21.56.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.62-21.56.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.85-38.58.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.85-38.58.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.116-43.59.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.116-43.59.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.77-31.58.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.77-31.58.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.70-25.242.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.70-25.242.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.85-37.55.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.85-37.55.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.81-35.56.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.81-35.56.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.119-44.140.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.119-44.140.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.58-18.55.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.58-18.55.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.26-46.32.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/main/c31535f74c6e/x86_64/Packages/kernel-devel-4.14.26-46.32.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.34.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.42-52.37.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.109-80.92.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.200-116.320.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.203-116.332.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.181-108.257.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.193-113.317.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.59-64.43.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.104-78.84.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.158-101.185.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.209-117.337.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.238-125.421.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-121.362.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.262-135.489.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.47-56.37.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.171-105.231.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.33-51.37.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.133-88.112.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.106-79.86.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-121.357.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-69.57.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.101-75.76.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-85.96.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.275-142.503.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-119.340.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.138-89.102.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-99.181.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.232-123.381.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.422.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.88-72.76.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-129.473.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.109-80.92.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.62-65.117.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.186-110.268.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-140.502.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.97-74.72.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.114-82.97.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.47-56.37.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-75.76.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.219-119.340.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-123.381.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.77-70.59.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.268-139.500.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.94-73.73.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.173-106.229.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.128-87.105.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-70.82.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.67-66.56.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.193-113.317.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.123-86.109.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.70-67.55.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.143-91.122.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.152-98.182.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-74.72.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.59-64.43.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-110.268.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.70-67.55.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.59.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.146-93.123.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.486.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.209-117.337.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.72-68.55.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-98.182.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.225-121.357.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-83.126.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.200-116.320.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-89.102.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.214-118.339.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.55-62.37.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.51-60.38.amzn1.x86_64", - "target": "amazonlinux" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-131.483.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.77-69.57.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-118.339.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.114-83.126.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.73.amzn1.x86_64", - "target": "amazonlinux" + "kernelrelease": "4.14.238-125.422.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.14.165-103.209.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.133-88.105.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.88-72.76.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.177-107.254.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.165-102.185.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.146-93.123.amzn1.x86_64", - "target": "amazonlinux" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.275-142.503.amzn1.x86_64", - "target": "amazonlinux" - } - ], - "AmazonLinux2": [ - { - "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.76-38.79.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.33-59.34.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.x86_64", - "target": "amazonlinux2" + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.51-66.38.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.70-2.243.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.62-10.57.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.x86_64", - "target": "amazonlinux2" + "kernelrelease": "4.14.225-121.362.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.x86_64", - "target": "amazonlinux2" + "kernelrelease": "4.14.158-101.185.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.x86_64", - "target": "amazonlinux2" + "kernelrelease": "4.14.173-106.229.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.x86_64", - "target": "amazonlinux2" + "kernelrelease": "4.14.33-51.34.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.x86_64", - "target": "amazonlinux2" + "kernelrelease": "4.14.262-135.489.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.x86_64", - "target": "amazonlinux2" + "kernelrelease": "4.14.203-116.332.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.x86_64", - "target": "amazonlinux2" + "kernelrelease": "4.14.42-52.37.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.x86_64", - "target": "amazonlinux2" + "kernelrelease": "4.14.133-88.105.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.37.amzn2.x86_64", - "target": "amazonlinux2" + "kernelrelease": "4.14.133-88.112.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.72-73.55.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.47-64.38.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.75-1.56.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.42-61.37.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.26-54.32.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.81-44.57.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.55-68.37.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.62-70.117.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.85-46.56.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.47-63.37.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.77-41.59.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.59-68.43.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.85-47.59.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.67-71.56.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.70-72.55.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-87.444.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-104.500.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.75-79.358.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.188-104.359.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.110-54.189.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.38-17.76.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.x86_64", - "target": "amazonlinux2" - } - ], - "AmazonLinux2022": [ - { - "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2022.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.23-11.98.amzn2022.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.25-14.106.amzn2022.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.24-13.97.amzn2022.x86_64", - "target": "amazonlinux2" - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.75-82.359.amzn2022.x86_64", - "target": "amazonlinux2" - } - ], - "CentOS": [ - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.0.15.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.29.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.24.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.18.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.14.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.7.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.18.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.6.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.17.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.2.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.12.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.4.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.21.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.10.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.11.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.12.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.14.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.15.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.17.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.18.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.2.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.22.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.23.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.25.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.27.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.28.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.3.5.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.30.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.31.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.33.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.35.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.6.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.9.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.23.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.13.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.4.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.7.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.4.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.17.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.2.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.11.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.5.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.22.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.5.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.19.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.14.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.1.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.9.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.2.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.2.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.18.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.0.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.23.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.6.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.11.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.14.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.6.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.5.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.20.5.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.3.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.23.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.17.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.20.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.11.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.29.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.1.2.0.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.1.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.12.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.16.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.23.4.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.3.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.30.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.8.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.1.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.12.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.18.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.22.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.26.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.3.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.7.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.8.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.1.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.11.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.13.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.13.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.15.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.3.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.4.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.6.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.6.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.1.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.10.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.10.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.10.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.13.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.16.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.18.7.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.20.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.23.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.28.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.3.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.3.2.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.30.1.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.6.3.el6.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.13.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.6.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.4.4.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.13.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.20.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.4.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.8.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.9.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.9.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.1.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.1.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.11.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.14.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.20.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.4.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.7.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.10.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.13.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.18.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.22.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.28.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.28.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.3.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.36.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.36.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.36.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.4.4.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.4.5.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.10.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.16.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.2.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.1.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.6.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.17.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.21.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.5.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.11.6.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.14.4.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.2.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.6.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.9.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.1.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.10.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.27.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.5.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.el8.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.3.1.el8.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", - "target": "centos" - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.el8.x86_64", - "target": "centos" - } - ], - "Fedora": [ - { - "kernelversion": 1, - "kernelrelease": "5.6.6-300.fc32.x86_64", - "target": "fedora" - }, - { - "kernelversion": 1, - "kernelrelease": "5.8.15-301.fc33.x86_64", - "target": "fedora" - }, - { - "kernelversion": 1, - "kernelrelease": "5.11.12-300.fc34.x86_64", - "target": "fedora" - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.10-300.fc35.x86_64", - "target": "fedora" - }, - { - "kernelversion": 1, - "kernelrelease": "5.11.22-100.fc32.x86_64", - "target": "fedora" - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.18-100.fc33.x86_64", - "target": "fedora" - }, - { - "kernelversion": 1, - "kernelrelease": "5.16.20-100.fc34.x86_64", - "target": "fedora" - }, - { - "kernelversion": 1, - "kernelrelease": "5.16.20-200.fc35.x86_64", - "target": "fedora" - } - ], - "Oracle6": [ - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.23.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.28.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.30.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.10.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.11.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.12.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.14.2.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.15.3.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.17.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.18.2.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.2.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.22.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.23.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.2.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.3.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.25.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.27.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.28.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.2.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.3.5.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.30.2.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.31.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.33.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.6.3.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.9.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.35.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.1.1.0.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.33.1.0.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.35.1.0.1.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.35.1.0.2.el6.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.42.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.43.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.42.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.44.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.44.4.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.45.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.45.6.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.46.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.46.4.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.47.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.3.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.5.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.6.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.10.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.11.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.13.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.13.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.14.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.14.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.17.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.17.5.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.10.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.12.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.7.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.5.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.6.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.7.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.21.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.21.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.22.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.23.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.25.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.26.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.27.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.28.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.29.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.3.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.3.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.30.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.31.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.32.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.33.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.34.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.35.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.35.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.36.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.37.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.38.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.39.1.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.39.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.4.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.4.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.40.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.41.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.42.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.43.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.44.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.45.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.46.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.47.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.47.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.48.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.6.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.6.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.7.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.8.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.9.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.9.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.1.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.2.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.2.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.2.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.3.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.1.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.2.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.2.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.2.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.2.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.1.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.1.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.1.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.5.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.3.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.4.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.5.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.2.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.5.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.8.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.2.1.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.el6uek.x86_64", - "target": "oracle6" - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.1.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.143-91.122.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.1.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.51-60.38.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.62-65.117.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.262-135.486.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.128-87.105.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.67-66.56.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.248-129.473.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.273-140.502.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.4.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.252-131.483.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.5.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.165-102.185.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.154-99.181.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.1.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.238-125.421.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.1.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.88-72.73.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.2.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.104-78.84.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.2.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.181-108.257.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.4.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.121-85.96.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.5.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.77-70.82.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.6.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.177-107.254.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.7.1.el6uek.x86_64", - "target": "oracle6" - }, + "kernelrelease": "4.14.33-51.37.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" + ] + } + ], + "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "3.8.13-98.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.248-189.473.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.49.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.133-113.112.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.50.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.171-136.231.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.51.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.123-111.109.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.52.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.209-160.339.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.53.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.77-81.59.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.54.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.238-182.421.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.51.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.47-63.37.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.55.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.146-120.181.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-100.10.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.192-147.314.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-100.5.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.33-59.34.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-100.6.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.177-139.254.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-100.7.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.26-54.32.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-200.24.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.238-182.422.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-200.29.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.42-61.37.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-200.29.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.143-118.123.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-200.29.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.133-113.105.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-200.31.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.104-95.84.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-200.32.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.225-169.362.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-200.33.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.9.76-38.79.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-200.34.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.186-146.268.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-300.17.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.9.75-1.56.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-300.17.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.158-129.185.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-300.17.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.262-200.489.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-300.26.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.72-73.55.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-300.28.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.275-207.503.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-300.32.4.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.273-207.502.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.47-64.38.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.231-173.360.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.4.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.256-197.484.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.5.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.177-139.253.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.6.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.193-149.317.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.17.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.198-152.320.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.17.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.77-80.57.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.209.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.276-211.499.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.209.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.232-177.418.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.21.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.214-160.339.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.21.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.88-88.76.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.210.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.232-176.381.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.211.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.241-184.433.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.211.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.114-105.126.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.211.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.97-90.72.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.212.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.173-137.229.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.88-88.73.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.231-173.361.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.4.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.165-133.209.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.5.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.203-156.332.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.6.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.209-160.335.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.252-195.481.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.10.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.165-131.185.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.11.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.128-112.105.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.12.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.138-114.102.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.13.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.62-70.117.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.14.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.33-59.37.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.15.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.252-195.483.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.9.85-46.56.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.106-97.85.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.4.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.9.85-47.59.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.6.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.219-161.340.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.7.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.219-164.354.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.23.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.152-127.182.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.24.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.59-68.43.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.245.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.243-185.433.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.246.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.246-187.474.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.247.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.109-99.92.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.248.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.51-66.38.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.249.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.55-68.37.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.249.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.94-89.73.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.249.4.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.114-103.97.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.10.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.9.70-2.243.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.11.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.121-109.96.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.70-72.55.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.5.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.181-142.260.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.6.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.152-124.171.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.7.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.9.81-44.57.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.9.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.173-137.228.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.264.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.77-86.82.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.264.13.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.67-71.56.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.264.4.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.146-119.123.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.264.5.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.268-205.500.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.276.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.9.77-41.59.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.277.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.9.62-10.57.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.278.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.225-168.357.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.278.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.200-155.322.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.278.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.154-128.181.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.280.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.181-140.257.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.281.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "4.14.101-91.76.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.282.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.68-62.173.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.283.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.47-39.130.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.283.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.50-44.131.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.284.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.29-27.126.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.286.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.29-27.128.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.286.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.93-87.444.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.290.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.62-55.141.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.290.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.96-90.460.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.293.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.102-99.473.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.293.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.109-104.500.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/ca19e72b4e6b43af5c589209d1c44211800e1fd556633a0359f8e50c6b9dfacc/kernel-devel-5.10.109-104.500.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.59-52.142.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.82-83.359.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.35-31.135.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.6.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.75-79.358.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.7.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.106-102.504.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.295.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.50-44.132.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.296.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.186-102.354.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.11.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.110-54.182.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.12.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.129-62.227.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.176-91.338.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.4.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.46-23.77.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.5.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.110-54.189.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.6.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.20-12.75.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.8.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.58-32.125.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.9.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.105-48.177.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.38-17.76.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.172-90.336.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.50-25.83.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.6.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.149-73.259.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.7.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.117-58.216.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.299.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.80-40.140.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.299.3.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.141-67.229.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.300.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.129-63.229.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.301.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.181-99.354.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.301.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.95-42.163.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.302.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.144-69.257.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.303.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.156-83.273.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.304.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.68-34.125.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.305.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.162-86.275.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.306.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.188-104.359.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/830875a1747e16cdc8a84fac964972fc4dd415b30d3414fb6af37804897f6c1d/kernel-devel-5.4.188-104.359.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.307.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.46-19.75.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.308.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.58-27.104.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.310.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.4.74-36.135.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.311.1.el6uek.x86_64", - "target": "oracle6" - }, + "kernelrelease": "5.4.91-41.139.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm" + ] + } + ], + "AmazonLinux2022": [ { "kernelversion": 1, - "kernelrelease": "2.6.39-400.312.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.10.96-90.460.amzn2022.x86_64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/5d2590a7ac46378c4c6d96446f8948dbd28d6e8b665797807cc5ef4208c81b8d/kernel-devel-5.10.96-90.460.amzn2022.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.312.2.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.15.23-11.98.amzn2022.x86_64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/554fef5bfc24613ba57b5c20aeae37acdab9448d22153838ee571dbf88051039/kernel-devel-5.15.23-11.98.amzn2022.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.313.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.15.25-14.106.amzn2022.x86_64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/cb99878b7f439d9396fa103f400fe3dd71b4703d01c3ba997d00508b6f3ce18b/kernel-devel-5.15.25-14.106.amzn2022.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.314.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "5.15.24-13.97.amzn2022.x86_64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/e9442cc2ea42150d4054f5a5c5430058cc267b26323ba4a53f86965d9231da55/kernel-devel-5.15.24-13.97.amzn2022.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.315.1.1.el6uek.x86_64", - "target": "oracle6" - }, + "kernelrelease": "5.10.75-82.359.amzn2022.x86_64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/c9592b941a6713c183a21e4f4f29a4dcf062a1794265426996ffedb0992cebe6/kernel-devel-5.10.75-82.359.amzn2022.x86_64.rpm" + ] + } + ], + "CentOS": [ { "kernelversion": 1, - "kernelrelease": "2.6.39-400.315.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.316.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.317.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.318.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.319.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.320.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.321.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.322.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.323.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.324.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.325.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.326.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.327.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.328.1.el6uek.x86_64", - "target": "oracle6" + "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "2.6.39-400.330.1.el6uek.x86_64", - "target": "oracle6" - } - ], - "Oracle7": [ + "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" + ] + }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-71.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/os/x86_64/Packages/kernel-devel-2.6.32-71.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-131.0.15.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/os/x86_64/Packages/kernel-devel-2.6.32-131.0.15.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/os/x86_64/Packages/kernel-devel-2.6.32-754.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-220.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/os/x86_64/Packages/kernel-devel-2.6.32-220.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/os/x86_64/Packages/kernel-devel-2.6.32-279.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-358.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/os/x86_64/Packages/kernel-devel-2.6.32-358.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/os/x86_64/Packages/kernel-devel-2.6.32-431.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-504.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/os/x86_64/Packages/kernel-devel-2.6.32-504.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-573.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/os/x86_64/Packages/kernel-devel-2.6.32-573.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/os/x86_64/Packages/kernel-devel-2.6.32-642.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/os/x86_64/Packages/kernel-devel-2.6.32-696.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/os/x86_64/Packages/kernel-devel-3.10.0-123.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-229.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/os/x86_64/Packages/kernel-devel-3.10.0-229.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/os/x86_64/Packages/kernel-devel-3.10.0-327.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/os/x86_64/Packages/kernel-devel-3.10.0-514.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-693.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/os/x86_64/Packages/kernel-devel-3.10.0-693.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-862.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/os/x86_64/Packages/kernel-devel-3.10.0-862.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-957.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/os/x86_64/Packages/kernel-devel-3.10.0-957.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/os/x86_64/Packages/kernel-devel-3.10.0-1062.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1127.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/os/x86_64/Packages/kernel-devel-3.10.0-1127.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-71.29.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.29.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-71.24.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.24.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-71.18.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-71.14.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.14.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-71.7.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.7.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-71.18.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-131.6.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.6.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-131.17.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.17.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-131.2.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.2.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-131.12.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.12.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-131.4.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.4.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.10.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-131.21.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.21.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.10.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.11.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.12.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.3.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.14.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.27.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.15.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.0.0.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.17.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.18.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.2.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.12.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.22.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.18.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.23.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.24.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.3.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.24.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.7.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.25.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.9.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.27.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.0.0.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.28.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.10.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.29.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.13.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.29.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.18.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.3.5.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.19.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.30.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.19.1.0.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.31.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.8.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.33.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.11.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.35.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.15.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.6.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.9.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-220.23.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.23.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.21.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-220.13.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.13.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.24.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-220.4.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.25.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-220.7.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.7.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.31.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-220.4.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.36.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-220.17.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.17.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.41.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-220.2.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.2.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.42.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.11.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.11.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.45.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.5.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.45.1.0.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.22.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.22.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.49.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.5.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.53.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.19.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.19.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.59.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.14.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.14.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.6.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.1.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.1.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.62.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.9.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.9.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1160.62.1.0.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-279.2.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.2.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.10.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-358.2.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.2.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.16.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-358.18.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.18.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-358.0.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.0.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-358.23.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.23.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-358.6.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-358.11.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.11.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-358.14.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.14.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-358.6.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.0.0.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.5.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.5.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.1.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.20.5.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.5.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.3.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.3.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.6.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.23.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.23.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.17.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.17.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.17.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.20.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.11.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.11.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.21.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.29.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.29.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.5.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-431.1.2.0.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.1.2.0.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.0.0.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-504.1.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.1.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.11.6.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-504.12.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.12.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.14.4.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-504.16.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.16.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.2.3.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-504.23.4.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.23.4.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-504.3.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.3.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.3.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-504.30.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.30.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.6.3.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-504.8.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.8.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.9.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-573.1.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.1.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.0.0.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-573.12.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.12.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.0.0.0.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-573.18.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.18.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.1.3.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-573.22.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.22.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.1.3.0.3.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-573.26.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.26.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.10.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-573.3.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.3.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-573.7.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.7.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-573.8.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.8.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.1.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.1.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.3.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.11.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.11.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.27.2.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.13.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.5.1.0.1.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.13.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.5.1.0.2.el7.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.15.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.15.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.0.7.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.3.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.3.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.1.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.4.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.4.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.2.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.6.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.3.2.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-642.6.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.1.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.1.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.10.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.5.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.10.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.6.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.10.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.7.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.13.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.13.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.100.6.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.16.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.16.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.101.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.18.7.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.18.7.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.102.0.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.20.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.20.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.23.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.28.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.3.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.3.2.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.200.13.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.30.1.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.201.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.6.3.el6.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.6.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.202.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.13.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.6.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.6.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.4.4.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.4.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.13.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.20.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.20.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.4.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.8.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.8.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.9.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.206.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.9.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.300.7.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-123.1.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.1.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-229.1.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.1.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-229.11.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.11.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-229.14.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.14.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.6.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-229.20.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.20.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-229.4.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.4.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-229.7.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.7.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.10.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.10.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.13.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.13.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.18.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.18.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.22.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.22.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.28.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.28.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.3.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.3.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.36.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.36.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.36.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.306.1.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.4.4.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.4.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.305.4.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-327.4.5.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.5.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.305.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.10.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.10.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.16.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.16.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.10.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.2.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.2.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.12.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.21.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.13.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.21.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.14.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.26.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.26.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.6.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-514.6.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.7.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-693.1.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.1.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.8.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-693.11.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-693.11.6.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.6.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2025.400.8.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-693.17.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.17.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2025.400.9.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-693.2.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2025.400.9.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-693.2.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2025.401.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-693.21.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.21.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2025.402.2.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-693.5.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.5.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2025.403.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-862.11.6.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.11.6.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2025.404.1.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-862.14.4.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.14.4.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2025.404.1.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-862.2.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.2.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2025.405.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-862.3.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.500.10.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-862.3.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.500.9.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-862.6.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.6.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.500.9.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-862.9.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.9.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.501.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-957.1.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.1.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.501.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-957.10.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.502.4.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-957.12.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.502.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-957.12.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.502.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-957.21.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.503.1.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-957.21.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.503.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-957.27.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.504.2.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-957.5.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.5.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.504.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.505.4.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.505.4.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.505.4.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.505.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.506.10.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.506.8.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.506.8.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.507.7.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.507.7.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.507.7.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.508.3.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.508.3.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.508.3.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.508.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.509.2.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.509.2.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.4.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-80.el8.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.el8.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.5.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.7.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-305.3.1.el8.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.8.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.42.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.42.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.43.4.el7uek.x86_64", - "target": "oracle7" - }, + "kernelrelease": "4.18.0-348.el8.x86_64", + "target": "centos", + "headers": [ + "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.el8.x86_64.rpm" + ] + } + ], + "Fedora": [ { "kernelversion": 1, - "kernelrelease": "4.1.12-124.44.4.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "5.6.6-300.fc32.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-devel-5.6.6-300.fc32.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.44.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "5.8.15-301.fc33.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-devel-5.8.15-301.fc33.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.45.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "5.11.12-300.fc34.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-devel-5.11.12-300.fc34.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.45.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "5.14.10-300.fc35.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-devel-5.14.10-300.fc35.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.46.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "5.11.22-100.fc32.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-devel-5.11.22-100.fc32.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.46.4.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "5.14.18-100.fc33.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-devel-5.14.18-100.fc33.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.47.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "5.17.5-100.fc34.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.17.5-100.fc34.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.2.el7uek.x86_64", - "target": "oracle7" - }, + "kernelrelease": "5.17.5-200.fc35.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.17.5-200.fc35.x86_64.rpm" + ] + } + ], + "Oracle6": [ { "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.3.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.23.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.28.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.30.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.49.3.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.50.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.10.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.51.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.11.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.52.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.12.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.52.5.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.14.2.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.52.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.15.3.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.53.3.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.17.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.53.5.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.18.2.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.53.5.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.2.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.53.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.22.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.54.6.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.23.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.54.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.24.2.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.56.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.24.3.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.57.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.25.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.58.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.27.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.59.1.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.28.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.59.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.29.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.60.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.29.2.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.1.12-124.61.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.3.5.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.10.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.30.2.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.11.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.31.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.13.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.33.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.13.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.6.3.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.14.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.9.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.14.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.35.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-696.1.1.0.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-696.1.1.0.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.33.1.0.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.33.1.0.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.35.1.0.1.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.0.1.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "2.6.32-754.35.1.0.2.el6.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.0.2.el6.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.42.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.17.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.43.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.43.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.17.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.42.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.44.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.44.4.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.45.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.10.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.45.6.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.6.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.12.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.46.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.46.4.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.4.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.47.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.47.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.48.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.7.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.48.3.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.3.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.48.5.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.5.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "4.1.12-124.48.6.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.6.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.10.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.10.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.11.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.11.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.13.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.13.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.14.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.14.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.7.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.15.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.21.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.15.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.21.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.16.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.22.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.16.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.23.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.16.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.17.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.17.5.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.5.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.18.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.25.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.18.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.26.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.18.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.27.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.19.10.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.10.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.28.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.19.12.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.12.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.29.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.19.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.3.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.19.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.3.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.19.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.30.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.19.7.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.7.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.31.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.2.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.32.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.2.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.33.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.2.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.34.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.2.5.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.5.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.35.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.20.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.35.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.20.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.36.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.20.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.37.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.20.6.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.6.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.38.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.20.7.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.7.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.39.1.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.21.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.39.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.21.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.4.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.22.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.22.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.4.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.23.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.23.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.40.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.24.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.41.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.24.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.42.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.24.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.43.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.25.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.25.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.44.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.26.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.26.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.45.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.27.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.27.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.46.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.28.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.28.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.47.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.29.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.29.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.47.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.3.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.48.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.3.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.6.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.30.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.30.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.6.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.31.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.31.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.7.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.32.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.32.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.8.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.33.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.33.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.9.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.34.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.34.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.9.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.35.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.35.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.36.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.36.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.37.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.37.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.38.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.38.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.39.1.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.39.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.4.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.4.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.40.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.40.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.41.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.41.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-44.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.42.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.42.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.43.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.43.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.44.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.44.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.45.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.45.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.6.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.46.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.46.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.8.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.47.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-55.2.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.47.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-55.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.48.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.48.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.1.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.6.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.1.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.6.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.7.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.7.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.8.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.8.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.9.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.9.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-118.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.3.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-16.1.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.1.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.4.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-16.2.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.5.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-16.2.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-68.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-16.2.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.1.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-16.3.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.3.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.1.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-16.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.2.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-26.1.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.1.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.2.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-26.2.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.4.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-26.2.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.5.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-26.2.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.6.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-26.2.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.7.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-26.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-98.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-35.1.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.49.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-35.1.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.50.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-35.1.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.51.2.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-35.3.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.52.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-35.3.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.53.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-35.3.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.54.1.el7uek.x86_64", - "target": "oracle7" + "kernelrelease": "3.8.13-35.3.5.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.5.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "3.8.13-118.55.1.el7uek.x86_64", - "target": "oracle7" - } - ], - "Oracle8": [ + "kernelrelease": "3.8.13-35.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.el6uek.x86_64.rpm" + ] + }, { "kernelversion": 1, - "kernelrelease": "4.18.0-147.0.2.el8_1.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-44.1.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-147.0.3.el8_1.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-44.1.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-147.3.1.el8_1.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-44.1.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-147.5.1.el8_1.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-44.1.5.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.5.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-44.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-147.el8.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-55.1.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-193.1.2.el8_2.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-55.1.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-193.13.2.el8_2.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-55.1.5.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.5.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-193.14.3.el8_2.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-55.1.8.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.8.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-193.19.1.el8_2.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-55.2.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.2.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-55.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-193.6.3.el8_2.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.1.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-193.el8.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.1.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-240.1.1.el8_3.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.2.2.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-240.10.1.el8_3.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.2.2.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-240.15.1.el8_3.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.2.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.3.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-240.8.1.el8_3.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.3.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-240.el8.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.3.3.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.3.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.3.4.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.4.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.3.5.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.5.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-68.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-98.1.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-98.1.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.3.1.el8_4.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-98.2.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-98.2.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.el8.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-98.4.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.4.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-348.12.2.el8_5.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-98.5.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.5.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-98.6.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.6.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-348.20.1.el8_5.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-98.7.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.7.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-98.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-348.el8.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-118.49.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.49.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-118.50.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.50.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-118.51.2.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.2.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-118.52.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.52.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-118.53.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.53.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-118.54.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.54.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", - "target": "oracle8" + "kernelrelease": "3.8.13-118.51.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.1.el6uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.el8.x86_64", - "target": "oracle8" - }, + "kernelrelease": "3.8.13-118.55.1.el6uek.x86_64", + "target": "oracle6", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.55.1.el6uek.x86_64.rpm" + ] + } + ], + "Oracle7": [ { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.0.7.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2011.0.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.1.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2011.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.2.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2011.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.3.2.1.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2011.3.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.4.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2011.4.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.6.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2011.4.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.5.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2011.5.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.6.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2011.6.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.7.4.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2011.7.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.100.6.1.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2036.100.6.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.101.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2036.101.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.102.0.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2036.102.0.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.1.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2036.103.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2036.103.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.4.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2036.104.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.5.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2036.104.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.200.13.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.200.13.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.201.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.201.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.202.5.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.202.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.5.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.203.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.6.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.203.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.204.4.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.204.4.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.4.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.204.4.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.205.7.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.205.7.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.206.1.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2102.206.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.300.7.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.300.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.301.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.301.1.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.4.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.301.1.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.6.1.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.302.6.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.1.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.302.7.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.302.7.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.302.7.2.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.302.7.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.1.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.304.4.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.2.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.304.4.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.304.4.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.4.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.304.4.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.5.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.304.4.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.305.5.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.4.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.305.5.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.5.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.305.5.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el7uek.x86_64.rpm" + ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.306.1.3.el8uek.x86_64", - "target": "oracle8" + "kernelrelease": "5.4.17-2136.306.1.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.306.1.3.el7uek.x86_64.rpm" + ] } ], + "Oracle8": [], "PhotonOS": [ { "kernelversion": 1, "kernelrelease": "1.3.0-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/Linux-PAM-devel-1.3.0-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.15-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.15-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.104-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.104-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.112-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.112-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-10.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-10.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-6.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-6.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-7.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-7.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-9.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-9.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.124-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.124-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.126-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.126-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.129-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.129-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.129-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.129-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-6.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-6.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.138-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.138-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.138-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.145-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.145-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.145-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.148-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.15-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.15-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.150-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.150-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-10.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-10.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-11.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-11.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-8.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-9.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-9.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-6.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-6.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.164-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.164-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.164-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.174-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.174-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.174-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.177-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.177-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.182-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.182-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.186-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.186-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.186-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.186-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.189-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.189-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.189-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.189-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.190-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.190-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.190-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.191-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.191-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.191-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.198-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.198-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.198-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.198-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.198-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.205-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.205-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.208-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.208-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.214-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.214-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.217-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.219-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.219-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.219-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.219-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.224-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.224-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.225-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.225-6.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-6.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.229-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.229-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.229-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.29-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.29-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.32-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.32-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.40-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.40-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.52-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.52-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.65-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.65-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.69-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.72-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.72-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.76-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.76-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.79-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.79-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.79-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.82-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.82-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.84-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.84-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.87-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.87-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.87-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.97-6.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-6.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.115-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-6.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-6.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.174-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.214-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.214-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.219-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.225-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.32-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.32-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.65-1.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.65-1.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.76-2.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-2.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.87-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.132-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.160-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.174-3.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-3.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.190-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.190-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.191-4.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.191-5.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.225-7.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-7.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.154-7.ph3.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-7.ph3.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "1.4.0-3.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-3.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "1.4.0-4.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-3.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-3.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-4.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-10.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-10.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-3.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-3.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-5.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-5.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-6.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-6.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-7.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-7.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-9.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-9.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.35-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.35-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.35-3.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-3.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.35-4.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-4.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.4-17.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.4-17.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.42-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.42-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.42-3.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-3.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.46-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.46-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.52-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.52-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.61-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.61-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.75-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.75-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.78-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.78-4.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-4.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.78-5.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-5.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-3.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-4.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-4.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-5.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-5.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-6.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-6.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-7.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.93-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.93-3.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.93-4.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.93-5.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-5.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-4.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-4.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.78-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.4-10.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-10.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.42-4.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.78-6.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-6.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.78-7.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-7.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-5.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-5.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.25-8.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-8.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.4-8.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.4-8.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.83-1.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-1.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "1.4.0-2.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-2.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.4-16.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-devel-5.10.4-16.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.4-4.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-aws-devel-5.10.4-4.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.4-9.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-9.ph4.x86_64.rpm" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.4-7.ph4.x86_64", - "target": "photonOS" + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-secure-devel-5.10.4-7.ph4.x86_64.rpm" + ] } ], "Debian": [ { "kernelversion": 1, - "kernelrelease": "5.16.18-1-amd64", - "target": "debian" + "kernelrelease": "5.17.3-1-amd64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-amd64_5.17.3-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-amd64_5.17.3-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-amd64_5.17.3-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.14.9-2~bpo11+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.15.5-2~bpo11+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.15.15-2~bpo11+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.16.11-1~bpo11+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.16.12-1~bpo11+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.113-1-amd64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.84-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.106-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.92-1~bpo10+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-1~bpo10+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.70-1~bpo10+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.208-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.235-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "3.16.56-1+deb8u1-amd64", - "target": "debian" - }, - { - "kernelversion": 1, - "kernelrelease": "5.17.3-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.65-2+grsecunoff1~bpo9+1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-common-grsec_4.9.65-2+grsecunoff1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.228-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "5.10.103-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "3.16.81-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "3.16.84-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-common_3.16.84-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-amd64_3.16.84-1_amd64.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.210-1+deb9u1~deb8u1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.9.303-1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb" + ] }, { "kernelversion": 1, "kernelrelease": "4.19.232-1~deb9u1-amd64", - "target": "debian" + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb" + ] } ], "Ubuntu": [ { "kernelversion": "95", - "kernelrelease": "4.15.0-1087-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1087-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb" + ] }, { "kernelversion": "96", - "kernelrelease": "4.15.0-1088-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1088-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb" + ] }, { - "kernelversion": "101", - "kernelrelease": "4.15.0-1092-generic", - "target": "ubuntu-generic" + "kernelversion": "102", + "kernelrelease": "4.15.0-1093-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb" + ] }, { "kernelversion": "105", - "kernelrelease": "4.15.0-1103-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1103-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "4.15.0-1104-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1104-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb" + ] }, { "kernelversion": "115", - "kernelrelease": "4.15.0-1104-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1104-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" + ] }, { "kernelversion": "109", - "kernelrelease": "4.15.0-1107-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1107-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb" + ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-1110-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1110-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" + ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1111-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1111-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb" + ] }, { "kernelversion": "120", "kernelrelease": "4.15.0-1113-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + ] }, { "kernelversion": "127", - "kernelrelease": "4.15.0-1113-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1113-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb" + ] }, { "kernelversion": "116", - "kernelrelease": "4.15.0-1113-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1113-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" + ] }, { "kernelversion": "117", - "kernelrelease": "4.15.0-1114-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1114-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" + ] }, { "kernelversion": "123", "kernelrelease": "4.15.0-1116-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" + ] }, { "kernelversion": "130", - "kernelrelease": "4.15.0-1116-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1116-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" + ] }, { "kernelversion": "124", "kernelrelease": "4.15.0-1117-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" + ] }, { "kernelversion": "131", - "kernelrelease": "4.15.0-1117-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1117-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb" + ] }, { "kernelversion": "128", "kernelrelease": "4.15.0-1120-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + ] }, { "kernelversion": "129", "kernelrelease": "4.15.0-1121-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" + ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1121-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1121-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb" + ] }, { "kernelversion": "136", - "kernelrelease": "4.15.0-1122-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1122-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" + ] }, { "kernelversion": "133", "kernelrelease": "4.15.0-1124-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" + ] }, { "kernelversion": "134", "kernelrelease": "4.15.0-1125-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + ] }, { "kernelversion": "136", "kernelrelease": "4.15.0-1127-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" + ] }, { "kernelversion": "137", "kernelrelease": "4.15.0-1128-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" + ] }, { "kernelversion": "143", - "kernelrelease": "4.15.0-1130-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1130-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" + ] }, { "kernelversion": "144", - "kernelrelease": "4.15.0-1131-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1131-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" + ] }, { "kernelversion": "147", - "kernelrelease": "4.15.0-1134-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1134-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb" + ] }, { "kernelversion": "148", - "kernelrelease": "4.15.0-1135-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1135-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" + ] }, { - "kernelversion": "150", - "kernelrelease": "4.15.0-1137-generic", - "target": "ubuntu-generic" + "kernelversion": "151", + "kernelrelease": "4.15.0-1138-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" + ] }, { "kernelversion": "175", - "kernelrelease": "4.15.0-167-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-167", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" + ] }, { "kernelversion": "176", - "kernelrelease": "4.15.0-168-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-168", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb" + ] }, { "kernelversion": "177", - "kernelrelease": "4.15.0-169-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-169", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" + ] }, { "kernelversion": "178", - "kernelrelease": "4.15.0-170-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-170", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb" + ] }, { "kernelversion": "181", - "kernelrelease": "4.15.0-172-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-172", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb" + ] }, { "kernelversion": "182", - "kernelrelease": "4.15.0-173-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-173", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb" + ] }, { "kernelversion": "183", - "kernelrelease": "4.15.0-174-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-174", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb" + ] }, { "kernelversion": "185", - "kernelrelease": "4.15.0-176-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-176", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb" + ] }, { "kernelversion": "186", - "kernelrelease": "4.15.0-177-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-177", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.0.0-1028-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1028-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" + ] }, { "kernelversion": "113~18.04.1", - "kernelrelease": "5.4.0-100-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-100-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb" + ] }, { "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1032-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + ] + }, + { + "kernelversion": "33~18.04.1", + "kernelrelease": "5.4.0-1032-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb" + ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1034-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + ] }, { - "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1039-generic", - "target": "ubuntu-generic" + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + ] + }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1040-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" + ] }, { "kernelversion": "119~18.04.1", - "kernelrelease": "5.4.0-105-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-105-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1056-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" + ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1056-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1058-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1058-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb" + ] }, { "kernelversion": "120~18.04.1", - "kernelrelease": "5.4.0-106-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-106-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" + ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1060-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1060-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + ] + }, + { + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1061-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb" + ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1062-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" + ] }, { "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1063-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1063-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" + ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1063-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb" + ] }, { "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1064-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" + ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1064-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" + ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1065-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb" + ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" + ] + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1066-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" + ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1067-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" + ] + }, + { + "kernelversion": "71~18.04.1", + "kernelrelease": "5.4.0-1068-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" + ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1068-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1068-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" + ] }, { "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" + ] }, { "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb" + ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" + ] }, { - "kernelversion": "74~18.04.1", - "kernelrelease": "5.4.0-1070-aws", - "target": "ubuntu-aws" + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1069-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" + ] }, { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1070-generic", - "target": "ubuntu-generic" + "kernelversion": "74~18.04.1", + "kernelrelease": "5.4.0-1070-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" + ] }, { - "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1070-generic", - "target": "ubuntu-generic" + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1070-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" + ] }, { "kernelversion": "74~18.04.1", - "kernelrelease": "5.4.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1071-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb" + ] }, { "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1071-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" + ] }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1071-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" + ] }, { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1076-generic", - "target": "ubuntu-generic" + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb" + ] }, { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1077-generic", - "target": "ubuntu-generic" + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" + ] }, { - "kernelversion": "122~18.04.1", - "kernelrelease": "5.4.0-108-generic", - "target": "ubuntu-generic" + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-1076-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" + ] + }, + { + "kernelversion": "81~18.04.1", + "kernelrelease": "5.4.0-1078-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb" + ] }, { - "kernelversion": "123~18.04.1", - "kernelrelease": "5.4.0-109-generic", - "target": "ubuntu-generic" + "kernelversion": "122~18.04.1", + "kernelrelease": "5.4.0-108-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" + ] + }, + { + "kernelversion": "124~18.04.1", + "kernelrelease": "5.4.0-110-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" + ] }, { "kernelversion": "102~18.04.1", - "kernelrelease": "5.4.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-91-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb" + ] }, { "kernelversion": "110~18.04.1", - "kernelrelease": "5.4.0-97-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-97-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" + ] }, { "kernelversion": "112~18.04.1", - "kernelrelease": "5.4.0-99-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-99-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb" + ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1006-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1006-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" + ] }, { "kernelversion": "8", - "kernelrelease": "4.15.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1008-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "4.15.0-1008-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1008-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1008-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "4.15.0-1009-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "4.15.0-1009-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" + ] }, { "kernelversion": "9", "kernelrelease": "4.15.0-1009-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "4.15.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1009-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1009-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "4.15.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-101", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "4.15.0-1010-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1010-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "4.15.0-1010-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "4.15.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1010-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1011-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "4.15.0-1012-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "4.15.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1012-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "4.15.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1012-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "4.15.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1013-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "4.15.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1013-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "4.15.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1013-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "4.15.0-1014-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" + ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "4.15.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1014-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "4.15.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1015-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "4.15.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1015-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "4.15.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1015-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "4.15.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1016-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + ] + }, + { + "kernelversion": "16", + "kernelrelease": "4.15.0-1016-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + ] }, { "kernelversion": "17", "kernelrelease": "4.15.0-1017-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb" + ] + }, + { + "kernelversion": "17", + "kernelrelease": "4.15.0-1017-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "4.15.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1017-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "4.15.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1017-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1017-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "4.15.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1018-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1018-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "4.15.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1018-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "4.15.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1018-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "4.15.0-1019-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "4.15.0-1019-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" + ] }, { "kernelversion": "19", "kernelrelease": "4.15.0-1019-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "4.15.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1019-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb" + ] + }, + { + "kernelversion": "20", + "kernelrelease": "4.15.0-1020-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + ] }, { "kernelversion": "20", "kernelrelease": "4.15.0-1020-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb" + ] }, { "kernelversion": "21", "kernelrelease": "4.15.0-1021-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "4.15.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1021-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1021-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "4.15.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1021-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "4.15.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1022-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb" + ] + }, + { + "kernelversion": "23", + "kernelrelease": "4.15.0-1023-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" + ] }, { "kernelversion": "23", "kernelrelease": "4.15.0-1023-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1023-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" + ] + }, + { + "kernelversion": "24", + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1023-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1024-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" + ] + }, + { + "kernelversion": "26", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "4.15.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1025-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" + ] }, { "kernelversion": "27", - "kernelrelease": "4.15.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1026-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1026-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "4.15.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1026-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb" + ] }, { "kernelversion": "29", - "kernelrelease": "4.15.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1026-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" + ] + }, + { + "kernelversion": "27", + "kernelrelease": "4.15.0-1027-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" + ] }, { "kernelversion": "27", "kernelrelease": "4.15.0-1027-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "4.15.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1027-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "4.15.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1027-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb" + ] }, { "kernelversion": "29", - "kernelrelease": "4.15.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "4.15.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1028-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1028-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb" + ] }, { "kernelversion": "30", "kernelrelease": "4.15.0-1029-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "4.15.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1029-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" + ] }, { "kernelversion": "29", - "kernelrelease": "4.15.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1029-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1029-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb" + ] }, { "kernelversion": "33", "kernelrelease": "4.15.0-1031-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1031-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "4.15.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1031-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "4.15.0-1031-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "4.15.0-1032-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1032-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1032-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" + ] }, { "kernelversion": "35", "kernelrelease": "4.15.0-1033-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" + ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1033-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1033-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1034-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1034-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1034-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" + ] }, { "kernelversion": "37", "kernelrelease": "4.15.0-1035-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1035-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1035-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" + ] }, { "kernelversion": "40", - "kernelrelease": "4.15.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1035-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1035-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" + ] + }, + { + "kernelversion": "38", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb" + ] + }, + { + "kernelversion": "38", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" + ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1036-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1036-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1037-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "4.15.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1037-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" + ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1038-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1038-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1038-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb" + ] }, { "kernelversion": "41", "kernelrelease": "4.15.0-1039-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1039-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1039-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1039-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1039-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1040-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1041-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "4.15.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" + ] + }, + { + "kernelversion": "44", + "kernelrelease": "4.15.0-1042-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1042-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" + ] }, { "kernelversion": "45", "kernelrelease": "4.15.0-1043-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1043-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1043-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" + ] }, { "kernelversion": "48", - "kernelrelease": "4.15.0-1043-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1043-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "4.15.0-1044-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "4.15.0-1044-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + ] }, { "kernelversion": "46", "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "4.15.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1044-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1044-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" + ] }, { "kernelversion": "47", "kernelrelease": "4.15.0-1045-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" + ] }, { "kernelversion": "48", - "kernelrelease": "4.15.0-1045-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1045-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "4.15.0-1045-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1045-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1045-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-1045-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1045-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1046-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1046-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1046-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" + ] }, { "kernelversion": "49", "kernelrelease": "4.15.0-1047-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "4.15.0-1047-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1047-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" + ] + }, + { + "kernelversion": "51", + "kernelrelease": "4.15.0-1047-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-1047-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1047-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + ] }, { "kernelversion": "50", "kernelrelease": "4.15.0-1048-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1048-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb" + ] }, { "kernelversion": "48", - "kernelrelease": "4.15.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1048-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" + ] + }, + { + "kernelversion": "52", + "kernelrelease": "4.15.0-1048-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "4.15.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1049-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "4.15.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1049-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + ] }, { "kernelversion": "52", "kernelrelease": "4.15.0-1050-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" + ] + }, + { + "kernelversion": "53", + "kernelrelease": "4.15.0-1050-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1050-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "4.15.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1050-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "4.15.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1050-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" + ] }, { "kernelversion": "54", - "kernelrelease": "4.15.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1050-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" + ] }, { "kernelversion": "53", "kernelrelease": "4.15.0-1051-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1051-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "4.15.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1051-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" + ] }, { "kernelversion": "54", "kernelrelease": "4.15.0-1052-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "4.15.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1052-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "4.15.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1052-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1053-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "4.15.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1053-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb" + ] }, { "kernelversion": "56", "kernelrelease": "4.15.0-1054-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "4.15.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1054-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "4.15.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1055-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" + ] }, { "kernelversion": "58", "kernelrelease": "4.15.0-1056-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "4.15.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1056-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "4.15.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1056-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb" + ] }, { "kernelversion": "59", "kernelrelease": "4.15.0-1057-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "4.15.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1057-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "4.15.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1057-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "4.15.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1057-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "4.15.0-1057-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" + ] }, { "kernelversion": "60", "kernelrelease": "4.15.0-1058-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "4.15.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1058-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "4.15.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1058-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "4.15.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1058-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "4.15.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1059-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "4.15.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1059-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" + ] }, { "kernelversion": "68", - "kernelrelease": "4.15.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1059-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" + ] }, { "kernelversion": "107", - "kernelrelease": "4.15.0-106-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-106", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb" + ] }, { "kernelversion": "62", "kernelrelease": "4.15.0-1060-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "4.15.0-1060-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1060-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "4.15.0-1061-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1061-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" + ] }, { "kernelversion": "68", - "kernelrelease": "4.15.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1062-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb" + ] }, { "kernelversion": "67", "kernelrelease": "4.15.0-1063-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "4.15.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1063-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "4.15.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1063-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "4.15.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1063-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "4.15.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1064-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "4.15.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1064-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "4.15.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1064-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" + ] }, { "kernelversion": "69", "kernelrelease": "4.15.0-1065-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "4.15.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1065-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "4.15.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1065-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb" + ] }, { "kernelversion": "70", "kernelrelease": "4.15.0-1066-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "4.15.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1066-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "4.15.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1066-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "4.15.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1066-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" + ] }, { "kernelversion": "71", "kernelrelease": "4.15.0-1067-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "4.15.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1067-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" + ] }, { "kernelversion": "68", - "kernelrelease": "4.15.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1067-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" + ] }, { "kernelversion": "77", - "kernelrelease": "4.15.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1067-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "4.15.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1067-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "4.15.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1068-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "4.15.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1069-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "4.15.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1069-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "4.15.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1069-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb" + ] }, { "kernelversion": "77", - "kernelrelease": "4.15.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1069-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "4.15.0-1070-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1070-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "4.15.0-1070-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1070-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "4.15.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1071-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "4.15.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1071-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "4.15.0-1072-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1072-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "4.15.0-1072-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1072-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" + ] }, { "kernelversion": "80", - "kernelrelease": "4.15.0-1072-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1072-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb" + ] }, { "kernelversion": "77", "kernelrelease": "4.15.0-1073-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "4.15.0-1073-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1073-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "4.15.0-1073-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1073-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "4.15.0-1074-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1074-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "4.15.0-1075-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1075-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "4.15.0-1075-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1075-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb" + ] }, { "kernelversion": "80", "kernelrelease": "4.15.0-1076-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" + ] }, { "kernelversion": "81", - "kernelrelease": "4.15.0-1076-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1076-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "4.15.0-1076-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1076-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" + ] }, { "kernelversion": "81", "kernelrelease": "4.15.0-1077-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb" + ] + }, + { + "kernelversion": "82", + "kernelrelease": "4.15.0-1077-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" + ] }, { "kernelversion": "82", - "kernelrelease": "4.15.0-1077-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1077-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "4.15.0-1077-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1077-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "4.15.0-1078-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1078-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "4.15.0-1078-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1078-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" + ] }, { "kernelversion": "83", "kernelrelease": "4.15.0-1079-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "4.15.0-1079-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1079-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" + ] }, { "kernelversion": "89", - "kernelrelease": "4.15.0-1079-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1079-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb" + ] }, { "kernelversion": "87", - "kernelrelease": "4.15.0-1079-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1079-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" + ] }, { "kernelversion": "109", - "kernelrelease": "4.15.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-108", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" + ] }, { "kernelversion": "84", "kernelrelease": "4.15.0-1080-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" + ] }, { "kernelversion": "90", - "kernelrelease": "4.15.0-1080-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1080-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb" + ] }, { "kernelversion": "88", - "kernelrelease": "4.15.0-1080-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1080-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "4.15.0-1081-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1081-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "4.15.0-1081-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1081-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" + ] }, { "kernelversion": "89", - "kernelrelease": "4.15.0-1081-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1081-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" + ] }, { "kernelversion": "86", "kernelrelease": "4.15.0-1082-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + ] }, { "kernelversion": "92", - "kernelrelease": "4.15.0-1082-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1082-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "4.15.0-1082-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1082-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" + ] }, { "kernelversion": "90", - "kernelrelease": "4.15.0-1082-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1082-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb" + ] }, { "kernelversion": "87", "kernelrelease": "4.15.0-1083-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb" + ] }, { "kernelversion": "93", - "kernelrelease": "4.15.0-1083-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1083-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "4.15.0-1083-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1083-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "4.15.0-1084-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1084-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb" + ] }, { "kernelversion": "92", - "kernelrelease": "4.15.0-1084-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1084-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" + ] }, { "kernelversion": "87", - "kernelrelease": "4.15.0-1085-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1085-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb" + ] }, { "kernelversion": "93", - "kernelrelease": "4.15.0-1085-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1085-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" + ] }, { "kernelversion": "91", "kernelrelease": "4.15.0-1086-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb" + ] }, { "kernelversion": "88", - "kernelrelease": "4.15.0-1086-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1086-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" + ] }, { "kernelversion": "94", - "kernelrelease": "4.15.0-1086-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1086-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" + ] }, { "kernelversion": "92", "kernelrelease": "4.15.0-1087-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + ] }, { "kernelversion": "89", - "kernelrelease": "4.15.0-1087-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1087-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb" + ] }, { "kernelversion": "97", - "kernelrelease": "4.15.0-1087-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1087-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb" + ] }, { "kernelversion": "90", - "kernelrelease": "4.15.0-1088-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1088-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" + ] }, { "kernelversion": "99", - "kernelrelease": "4.15.0-1089-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1089-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "4.15.0-1089-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1089-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" + ] }, { "kernelversion": "98", - "kernelrelease": "4.15.0-1089-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1089-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "4.15.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-109", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb" + ] }, { "kernelversion": "95", "kernelrelease": "4.15.0-1090-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb" + ] }, { "kernelversion": "92", - "kernelrelease": "4.15.0-1090-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1090-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "4.15.0-1090-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1090-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" + ] }, { "kernelversion": "99", - "kernelrelease": "4.15.0-1090-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1090-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb" + ] }, { "kernelversion": "96", "kernelrelease": "4.15.0-1091-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" + ] + }, + { + "kernelversion": "101", + "kernelrelease": "4.15.0-1091-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" + ] }, { "kernelversion": "101", - "kernelrelease": "4.15.0-1091-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1091-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb" + ] }, { "kernelversion": "93", - "kernelrelease": "4.15.0-1091-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1091-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "4.15.0-1091-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1091-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" + ] }, { "kernelversion": "98", "kernelrelease": "4.15.0-1092-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "4.15.0-1092-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1092-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" + ] }, { "kernelversion": "94", - "kernelrelease": "4.15.0-1092-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1092-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb" + ] + }, + { + "kernelversion": "101", + "kernelrelease": "4.15.0-1092-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" + ] }, { "kernelversion": "99", "kernelrelease": "4.15.0-1093-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" + ] }, { "kernelversion": "103", - "kernelrelease": "4.15.0-1093-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1093-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" + ] + }, + { + "kernelversion": "103", + "kernelrelease": "4.15.0-1093-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "4.15.0-1093-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1093-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" + ] }, { "kernelversion": "101", "kernelrelease": "4.15.0-1094-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" + ] }, { "kernelversion": "107", - "kernelrelease": "4.15.0-1094-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1094-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb" + ] }, { "kernelversion": "96", - "kernelrelease": "4.15.0-1094-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1094-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" + ] }, { "kernelversion": "104", - "kernelrelease": "4.15.0-1094-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1094-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" + ] }, { "kernelversion": "102", "kernelrelease": "4.15.0-1095-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" + ] }, { "kernelversion": "105", - "kernelrelease": "4.15.0-1095-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1095-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" + ] }, { "kernelversion": "108", - "kernelrelease": "4.15.0-1095-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1095-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb" + ] }, { "kernelversion": "103", "kernelrelease": "4.15.0-1096-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" + ] + }, + { + "kernelversion": "106", + "kernelrelease": "4.15.0-1096-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "4.15.0-1096-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1096-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" + ] }, { "kernelversion": "109", - "kernelrelease": "4.15.0-1096-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1096-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" + ] }, { "kernelversion": "104", "kernelrelease": "4.15.0-1097-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "4.15.0-1097-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1097-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb" + ] }, { "kernelversion": "99", - "kernelrelease": "4.15.0-1097-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1097-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb" + ] }, { "kernelversion": "107", - "kernelrelease": "4.15.0-1097-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1097-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb" + ] }, { "kernelversion": "105", "kernelrelease": "4.15.0-1098-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" + ] }, { "kernelversion": "111", - "kernelrelease": "4.15.0-1098-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1098-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "4.15.0-1098-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1098-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" + ] }, { "kernelversion": "106", "kernelrelease": "4.15.0-1099-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "4.15.0-1099-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1099-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-1099-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1099-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" + ] }, { "kernelversion": "101", - "kernelrelease": "4.15.0-1099-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1099-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb" + ] }, { "kernelversion": "109", - "kernelrelease": "4.15.0-1099-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1099-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb" + ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-1100-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1100-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "4.15.0-1100-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1100-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "4.15.0-1100-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1100-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" + ] }, { "kernelversion": "108", "kernelrelease": "4.15.0-1101-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb" + ] }, { "kernelversion": "103", - "kernelrelease": "4.15.0-1101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1101-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-1101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1101-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb" + ] }, { "kernelversion": "109", "kernelrelease": "4.15.0-1102-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" + ] + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1102-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" + ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-1102-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1102-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb" + ] }, { "kernelversion": "104", - "kernelrelease": "4.15.0-1102-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1102-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" + ] }, { "kernelversion": "110", "kernelrelease": "4.15.0-1103-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" + ] + }, + { + "kernelversion": "114", + "kernelrelease": "4.15.0-1103-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1103-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1103-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb" + ] }, { "kernelversion": "116", - "kernelrelease": "4.15.0-1103-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1103-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" + ] }, { "kernelversion": "116", - "kernelrelease": "4.15.0-1104-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1104-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb" + ] }, { "kernelversion": "107", - "kernelrelease": "4.15.0-1105-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1105-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" + ] }, { "kernelversion": "113", "kernelrelease": "4.15.0-1106-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" + ] }, { "kernelversion": "118", - "kernelrelease": "4.15.0-1106-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1106-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" + ] }, { "kernelversion": "120", - "kernelrelease": "4.15.0-1106-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1106-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" + ] }, { "kernelversion": "108", - "kernelrelease": "4.15.0-1106-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1106-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" + ] }, { "kernelversion": "121", - "kernelrelease": "4.15.0-1107-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1107-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" + ] }, { "kernelversion": "120", - "kernelrelease": "4.15.0-1108-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1108-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" + ] }, { "kernelversion": "122", - "kernelrelease": "4.15.0-1108-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1108-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" + ] }, { "kernelversion": "116", "kernelrelease": "4.15.0-1109-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb" + ] }, { "kernelversion": "121", - "kernelrelease": "4.15.0-1109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1109-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" + ] }, { "kernelversion": "123", - "kernelrelease": "4.15.0-1109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1109-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-1109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1109-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-111-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-111", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" + ] }, { "kernelversion": "117", "kernelrelease": "4.15.0-1110-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" + ] }, { "kernelversion": "122", - "kernelrelease": "4.15.0-1110-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1110-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb" + ] }, { "kernelversion": "124", - "kernelrelease": "4.15.0-1110-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1110-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" + ] }, { "kernelversion": "118", "kernelrelease": "4.15.0-1111-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb" + ] }, { "kernelversion": "123", - "kernelrelease": "4.15.0-1111-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1111-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb" + ] }, { "kernelversion": "125", - "kernelrelease": "4.15.0-1111-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1111-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" + ] }, { "kernelversion": "119", "kernelrelease": "4.15.0-1112-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" + ] }, { "kernelversion": "125", - "kernelrelease": "4.15.0-1112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1112-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" + ] }, { "kernelversion": "126", - "kernelrelease": "4.15.0-1112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1112-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" + ] }, { "kernelversion": "115", - "kernelrelease": "4.15.0-1112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1112-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" + ] }, { "kernelversion": "126", - "kernelrelease": "4.15.0-1113-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1113-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb" + ] }, { "kernelversion": "121", "kernelrelease": "4.15.0-1114-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + ] }, { "kernelversion": "127", - "kernelrelease": "4.15.0-1114-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1114-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" + ] }, { "kernelversion": "128", - "kernelrelease": "4.15.0-1114-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1114-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb" + ] }, { "kernelversion": "122", "kernelrelease": "4.15.0-1115-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" + ] }, { "kernelversion": "128", - "kernelrelease": "4.15.0-1115-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1115-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" + ] }, { "kernelversion": "129", - "kernelrelease": "4.15.0-1115-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1115-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" + ] }, { "kernelversion": "125", "kernelrelease": "4.15.0-1118-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb" + ] }, { "kernelversion": "131", - "kernelrelease": "4.15.0-1118-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1118-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" + ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-1118-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1118-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" + ] }, { "kernelversion": "127", "kernelrelease": "4.15.0-1119-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" + ] }, { "kernelversion": "133", - "kernelrelease": "4.15.0-1119-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1119-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" + ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-112", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" + ] }, { "kernelversion": "134", - "kernelrelease": "4.15.0-1120-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1120-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" + ] }, { "kernelversion": "134", - "kernelrelease": "4.15.0-1121-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1121-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" + ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1122-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1122-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" + ] }, { "kernelversion": "132", "kernelrelease": "4.15.0-1123-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" + ] }, { "kernelversion": "136", - "kernelrelease": "4.15.0-1123-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1123-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" + ] }, { "kernelversion": "137", - "kernelrelease": "4.15.0-1124-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1124-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" + ] }, { "kernelversion": "138", - "kernelrelease": "4.15.0-1125-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1125-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" + ] }, { "kernelversion": "135", "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" + ] }, { "kernelversion": "139", - "kernelrelease": "4.15.0-1126-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1126-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" + ] }, { "kernelversion": "140", - "kernelrelease": "4.15.0-1127-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1127-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb" + ] }, { "kernelversion": "142", - "kernelrelease": "4.15.0-1129-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1129-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb" + ] }, { "kernelversion": "146", - "kernelrelease": "4.15.0-1133-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1133-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" + ] }, { "kernelversion": "149", - "kernelrelease": "4.15.0-1136-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1136-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb" + ] + }, + { + "kernelversion": "150", + "kernelrelease": "4.15.0-1137-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb" + ] }, { "kernelversion": "116", - "kernelrelease": "4.15.0-115-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-115", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb" + ] }, { "kernelversion": "118", - "kernelrelease": "4.15.0-117-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-117", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" + ] }, { "kernelversion": "119", - "kernelrelease": "4.15.0-118-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-118", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" + ] }, { "kernelversion": "123", - "kernelrelease": "4.15.0-121-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-121", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb" + ] }, { "kernelversion": "124", - "kernelrelease": "4.15.0-122-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-122", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb" + ] }, { "kernelversion": "126", - "kernelrelease": "4.15.0-123-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-123", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb" + ] }, { "kernelversion": "131", - "kernelrelease": "4.15.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-128", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" + ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-129-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-129", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb" + ] }, { "kernelversion": "134", - "kernelrelease": "4.15.0-130-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-130", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb" + ] }, { "kernelversion": "136", - "kernelrelease": "4.15.0-132-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-132", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" + ] }, { "kernelversion": "139", - "kernelrelease": "4.15.0-135-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-135", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb" + ] }, { "kernelversion": "140", - "kernelrelease": "4.15.0-136-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-136", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" + ] }, { "kernelversion": "141", - "kernelrelease": "4.15.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-137", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" + ] }, { "kernelversion": "143", - "kernelrelease": "4.15.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-139", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" + ] }, { "kernelversion": "144", - "kernelrelease": "4.15.0-140-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-140", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb" + ] }, { "kernelversion": "145", - "kernelrelease": "4.15.0-141-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-141", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" + ] }, { "kernelversion": "146", - "kernelrelease": "4.15.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-142", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb" + ] }, { "kernelversion": "147", - "kernelrelease": "4.15.0-143-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-143", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" + ] }, { "kernelversion": "148", - "kernelrelease": "4.15.0-144-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-144", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb" + ] }, { "kernelversion": "151", - "kernelrelease": "4.15.0-147-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-147", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb" + ] }, { "kernelversion": "157", - "kernelrelease": "4.15.0-151-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-151", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb" + ] }, { "kernelversion": "160", - "kernelrelease": "4.15.0-153-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-153", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" + ] }, { "kernelversion": "161", - "kernelrelease": "4.15.0-154-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-154", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb" + ] }, { "kernelversion": "163", - "kernelrelease": "4.15.0-156-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-156", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" + ] }, { "kernelversion": "166", - "kernelrelease": "4.15.0-158-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-158", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb" + ] }, { "kernelversion": "167", - "kernelrelease": "4.15.0-159-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-159", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb" + ] }, { "kernelversion": "169", - "kernelrelease": "4.15.0-161-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-161", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" + ] }, { "kernelversion": "170", - "kernelrelease": "4.15.0-162-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-162", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" + ] }, { "kernelversion": "171", - "kernelrelease": "4.15.0-163-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-163", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" + ] }, { "kernelversion": "174", - "kernelrelease": "4.15.0-166-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-166", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb" + ] }, { "kernelversion": "180", - "kernelrelease": "4.15.0-171-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-171", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb" + ] }, { "kernelversion": "184", - "kernelrelease": "4.15.0-175-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-175", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-22", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-23", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-24", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "4.15.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-32", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "4.15.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-34", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-36", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-39", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "4.15.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-42", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-43", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "4.15.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-44", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" + ] }, { "kernelversion": "48", - "kernelrelease": "4.15.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-46", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "4.15.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-47", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" + ] }, { "kernelversion": "54", - "kernelrelease": "4.15.0-50-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-50", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "4.15.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "4.15.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-52", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "4.15.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-54", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "4.15.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-55", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "4.15.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-58", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "4.15.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-60", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "4.15.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-62", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "4.15.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-64", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "4.15.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-65", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "4.15.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-66", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "4.15.0-69-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-69", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "4.15.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-70", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb" + ] }, { "kernelversion": "81", - "kernelrelease": "4.15.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-72", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "4.15.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-74", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "4.15.0-76-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-76", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" + ] }, { "kernelversion": "88", - "kernelrelease": "4.15.0-88-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-88", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb" + ] }, { "kernelversion": "92", - "kernelrelease": "4.15.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-91", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" + ] }, { "kernelversion": "97", - "kernelrelease": "4.15.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-96", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "4.15.0-99-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-99", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" + ] }, { "kernelversion": "5~18.04.1", - "kernelrelease": "4.18.0-1004-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1004-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" + ] }, { "kernelversion": "6~18.04.1", - "kernelrelease": "4.18.0-1005-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1005-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" + ] }, { "kernelversion": "6~18.04.1", - "kernelrelease": "4.18.0-1006-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1006-azure-edge", + "target": "ubuntu-azure-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" + ] }, { "kernelversion": "7~18.04.1", - "kernelrelease": "4.18.0-1006-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1006-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" + ] }, { "kernelversion": "7~18.04.1", - "kernelrelease": "4.18.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1007-azure-edge", + "target": "ubuntu-azure-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb" + ] }, { "kernelversion": "8~18.04.1", - "kernelrelease": "4.18.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1007-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb" + ] }, { "kernelversion": "8~18.04.1", - "kernelrelease": "4.18.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1008-azure-edge", + "target": "ubuntu-azure-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb" + ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "4.18.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1008-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" + ] }, { "kernelversion": "11~18.04.1", - "kernelrelease": "4.18.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1011-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" + ] }, { "kernelversion": "12~18.04.1", - "kernelrelease": "4.18.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1011-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb" + ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "4.18.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1012-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" + ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "4.18.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1013-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" + ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "4.18.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1013-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" + ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "4.18.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" + ] }, { "kernelversion": "16~18.04.1", - "kernelrelease": "4.18.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1015-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "4.18.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1018-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" + ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "4.18.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1019-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" + ] }, { "kernelversion": "20~18.04.1", - "kernelrelease": "4.18.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1020-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "4.18.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "4.18.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1024-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" + ] }, { "kernelversion": "27~18.04.1", - "kernelrelease": "4.18.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1025-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb" + ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "4.18.0-13-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-13-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" + ] }, { "kernelversion": "15~18.04.1", - "kernelrelease": "4.18.0-14-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-14-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb" + ] }, { "kernelversion": "16~18.04.1", - "kernelrelease": "4.18.0-15-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-15-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" + ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "4.18.0-16-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-16-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "4.18.0-17-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-17-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "4.18.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-20-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" + ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "4.18.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-21-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb" + ] }, { "kernelversion": "23~18.04.1", - "kernelrelease": "4.18.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-22-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "4.18.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-24-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "4.18.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-25-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" + ] }, { "kernelversion": "12~18.04.1", - "kernelrelease": "5.0.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1007-oracle-5.0", + "target": "ubuntu-oracle-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb" + ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "5.0.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1008-oracle-5.0", + "target": "ubuntu-oracle-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb" + ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "5.0.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1009-oracle-5.0", + "target": "ubuntu-oracle-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb" + ] }, { "kernelversion": "15~18.04.1", - "kernelrelease": "5.0.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1010-oracle-5.0", + "target": "ubuntu-oracle-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" + ] }, { "kernelversion": "11~18.04.1", - "kernelrelease": "5.0.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1011-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "5.0.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1011-oracle-5.0", + "target": "ubuntu-oracle-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" + ] }, { "kernelversion": "12~18.04.2", - "kernelrelease": "5.0.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1012-azure-edge", + "target": "ubuntu-azure-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb" + ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "5.0.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1013-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "5.0.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1013-oracle-5.0", + "target": "ubuntu-oracle-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" + ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "5.0.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.0.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1014-oracle-5.0", + "target": "ubuntu-oracle-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" + ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.0.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1016-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb" + ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "5.0.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1018-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.0.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1020-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" + ] }, { "kernelversion": "20~18.04.1", - "kernelrelease": "5.0.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1020-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-1021-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1021-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.0.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1021-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.0.0-1022-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1022-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb" + ] }, { "kernelversion": "23~18.04.1", - "kernelrelease": "5.0.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1022-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-1023-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1023-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" + ] }, { "kernelversion": "27~18.04.1", - "kernelrelease": "5.0.0-1024-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1024-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "5.0.0-1025-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1025-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + ] }, { "kernelversion": "27~18.04.1", - "kernelrelease": "5.0.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1025-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1025-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb" + ] }, { "kernelversion": "27~18.04.1", - "kernelrelease": "5.0.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1026-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "5.0.0-1027-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.0.0-1027-aws-5.0", + "target": "ubuntu-aws-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" + ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.0.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1027-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" + ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.0.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1028-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" + ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.0.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1028-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb" + ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.0.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1029-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" + ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.0.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1029-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.0.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1031-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.0.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1031-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "5.0.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1032-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "5.0.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1033-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.0.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1034-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.0.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1035-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" + ] }, { "kernelversion": "38", - "kernelrelease": "5.0.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-1036-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" + ] }, { "kernelversion": "16~18.04.1", - "kernelrelease": "5.0.0-15-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-15-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb" + ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.0.0-16-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-16-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "5.0.0-17-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-17-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" + ] }, { "kernelversion": "20~18.04.1", - "kernelrelease": "5.0.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-19-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.0.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-20-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-23-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-25-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb" + ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.0.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-27-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" + ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.0.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-29-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" + ] }, { "kernelversion": "33~18.04.1", - "kernelrelease": "5.0.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-31-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb" + ] }, { "kernelversion": "34~18.04.2", - "kernelrelease": "5.0.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-32-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb" + ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.0.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-35-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb" + ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.0.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-36-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" + ] }, { "kernelversion": "40~18.04.1", - "kernelrelease": "5.0.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-37-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb" + ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.0.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-52-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "5.0.0-61-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-61-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "5.0.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-62-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "5.0.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-63-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "5.0.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-65-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" + ] }, { "kernelversion": "8~18.04.1", - "kernelrelease": "5.3.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1007-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "9~18.04.1", + "kernelrelease": "5.3.0-1008-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb" + ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1008-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" + ] + }, + { + "kernelversion": "10~18.04.1", + "kernelrelease": "5.3.0-1009-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb" + ] }, { "kernelversion": "10~18.04.1", - "kernelrelease": "5.3.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1009-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "11~18.04.1", + "kernelrelease": "5.3.0-1010-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" + ] }, { "kernelversion": "11~18.04.1", - "kernelrelease": "5.3.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1010-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" + ] }, { "kernelversion": "12~18.04.1", - "kernelrelease": "5.3.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1011-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" + ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "5.3.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1012-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "13~18.04.1", + "kernelrelease": "5.3.0-1012-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "5.3.0-1013-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" + ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "5.3.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1013-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "15~18.04.1", + "kernelrelease": "5.3.0-1014-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" + ] }, { "kernelversion": "15~18.04.1", - "kernelrelease": "5.3.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1014-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.3.0-1016-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" + ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1016-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.3.0-1016-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "5.3.0-1016-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1017-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1017-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "5.3.0-1018-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" + ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1018-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb" + ] }, { "kernelversion": "20~18.04.1", - "kernelrelease": "5.3.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1018-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.3.0-1019-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1019-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb" + ] }, { "kernelversion": "20~18.04.1", - "kernelrelease": "5.3.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1019-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.3.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1020-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" + ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.3.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1020-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" + ] }, { "kernelversion": "23~18.04.1", - "kernelrelease": "5.3.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1022-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.3.0-1023-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1023-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "5.3.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1024-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb" + ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.3.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1026-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" + ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.3.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1027-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.3.0-1028-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" + ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1028-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" + ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.3.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1028-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" + ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.3.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1029-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" + ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1030-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1030-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1030-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1031-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" + ] }, { "kernelversion": "34~18.04.2", - "kernelrelease": "5.3.0-1032-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1032-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" + ] }, { "kernelversion": "33~18.04.1", - "kernelrelease": "5.3.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1032-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb" + ] }, { "kernelversion": "34~18.04.1", - "kernelrelease": "5.3.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1032-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.3.0-1033-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1033-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "5.3.0-1034-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1034-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.3.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1034-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.3.0-1035-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.3.0-1035-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "5.3.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-1035-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" + ] }, { "kernelversion": "20~18.04.2", - "kernelrelease": "5.3.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-19-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.3.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-22-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb" + ] }, { "kernelversion": "25~18.04.2", - "kernelrelease": "5.3.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-23-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" + ] }, { "kernelversion": "26~18.04.2", - "kernelrelease": "5.3.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-24-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" + ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.3.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-26-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb" + ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-28-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-40-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" + ] }, { "kernelversion": "34~18.04.1", - "kernelrelease": "5.3.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-42-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" + ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.3.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-45-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb" + ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.3.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-46-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb" + ] }, { "kernelversion": "44~18.04.2", - "kernelrelease": "5.3.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-51-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb" + ] }, { "kernelversion": "47~18.04.1", - "kernelrelease": "5.3.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-53-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb" + ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.3.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-59-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" + ] }, { "kernelversion": "55~18.04.1", - "kernelrelease": "5.3.0-61-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-61-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb" + ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.3.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-62-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" + ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.3.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-64-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "5.3.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-65-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.3.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-66-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "5.3.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-67-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "5.3.0-68-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-68-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "5.3.0-69-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-69-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "5.3.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-70-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb" + ] }, { "kernelversion": "68", - "kernelrelease": "5.3.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-72-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "5.3.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-73-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "5.3.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-74-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "5.3.0-75-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-75-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "5.3.0-76-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.3.0-76-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" + ] }, { "kernelversion": "3", - "kernelrelease": "5.4.0-1003-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1003-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" + ] + }, + { + "kernelversion": "5", + "kernelrelease": "5.4.0-1004-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb" + ] }, { "kernelversion": "5", - "kernelrelease": "5.4.0-1004-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1004-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" + ] }, { "kernelversion": "8~18.04.1", - "kernelrelease": "5.4.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1007-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" + ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.4.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1008-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb" + ] }, { "kernelversion": "10~18.04.1", - "kernelrelease": "5.4.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1009-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" + ] }, { "kernelversion": "11~18.04.1", - "kernelrelease": "5.4.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1010-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" + ] }, { "kernelversion": "12~18.04.2", - "kernelrelease": "5.4.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1011-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb" + ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "5.4.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1012-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" + ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "5.4.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1013-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" + ] }, { "kernelversion": "15~18.04.1", - "kernelrelease": "5.4.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1014-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb" + ] }, { "kernelversion": "16~18.04.1", - "kernelrelease": "5.4.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1015-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" + ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.4.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1016-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" + ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "5.4.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1018-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" + ] }, { "kernelversion": "20~18.04.2", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1020-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" + ] + }, + { + "kernelversion": "21~18.04.1", + "kernelrelease": "5.4.0-1021-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" + ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1021-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" + ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1021-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb" + ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1022-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + ] + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + ] + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" + ] }, { "kernelversion": "23~18.04.1", - "kernelrelease": "5.4.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1022-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" + ] }, { "kernelversion": "23~18.04.1", - "kernelrelease": "5.4.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1023-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1023-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" + ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1024-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.4.0-1024-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + ] + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.4.0-1024-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1024-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" + ] + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1025-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" + ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1025-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "5.4.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1025-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" + ] }, { "kernelversion": "26~18.04.1", - "kernelrelease": "5.4.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1026-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" + ] }, { "kernelversion": "27~18.04.1", - "kernelrelease": "5.4.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1026-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" + ] + }, + { + "kernelversion": "28~18.04.1", + "kernelrelease": "5.4.0-1027-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" + ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1027-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" + ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1028-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + ] + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.4.0-1028-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.4.0-1028-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.4.0-1029-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1029-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.4.0-1029-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" + ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1029-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.4.0-1029-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" + ] }, { "kernelversion": "30~18.04.2", - "kernelrelease": "5.4.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1029-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb" + ] + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.4.0-1031-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" + ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1031-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "34~18.04.1", + "kernelrelease": "5.4.0-1032-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" + ] }, { "kernelversion": "34~18.04.1", - "kernelrelease": "5.4.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1032-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1033-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" + ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1033-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" + ] }, { "kernelversion": "34~18.04.1", - "kernelrelease": "5.4.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1033-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1033-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1033-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1033-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" + ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1034-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" + ] }, { "kernelversion": "36~18.04.1", - "kernelrelease": "5.4.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1034-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb" + ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1035-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "37~18.04.1", + "kernelrelease": "5.4.0-1035-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" + ] }, { "kernelversion": "36~18.04.1", - "kernelrelease": "5.4.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1035-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" + ] + }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.4.0-1035-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb" + ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1036-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" + ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1036-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" + ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1036-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" + ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1036-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" + ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1037-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "39~18.04.1", + "kernelrelease": "5.4.0-1037-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" + ] + }, + { + "kernelversion": "40~18.04.1", + "kernelrelease": "5.4.0-1037-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" + ] }, { "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1037-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" + ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1037-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb" + ] }, { "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1038-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1038-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" + ] + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1038-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" + ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1038-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" + ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1038-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" + ] + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1039-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1039-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb" + ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1039-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + ] + }, + { + "kernelversion": "40~18.04.1", + "kernelrelease": "5.4.0-1039-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb" + ] }, { "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1039-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" + ] }, { "kernelversion": "118~18.04.1", - "kernelrelease": "5.4.0-104-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-104-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" + ] + }, + { + "kernelversion": "42~18.04.1", + "kernelrelease": "5.4.0-1040-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" + ] }, { "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1040-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" + ] }, { "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1040-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" + ] }, { "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1041-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + ] + }, + { + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-1041-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" + ] }, { "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1041-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1041-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1042-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" + ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1042-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" + ] }, { "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1042-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" + ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1043-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1043-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1043-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-1043-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb" + ] }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1043-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1043-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb" + ] }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1044-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb" + ] + }, + { + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-1044-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" + ] }, { "kernelversion": "47~18.04.2", - "kernelrelease": "5.4.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1044-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb" + ] }, { "kernelversion": "47~18.04.1", - "kernelrelease": "5.4.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1044-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" + ] }, { "kernelversion": "47~18.04.1", - "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1045-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" + ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1046-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "48~18.04.1", + "kernelrelease": "5.4.0-1046-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" + ] }, { "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1046-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" + ] }, { "kernelversion": "50~18.04.2", - "kernelrelease": "5.4.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1046-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" + ] + }, + { + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1047-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" + ] }, { "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1047-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" + ] }, { "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1048-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "50~18.04.1", + "kernelrelease": "5.4.0-1048-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" + ] }, { "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1048-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.4.0-1049-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" + ] }, { "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1049-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1049-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" + ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1049-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" + ] }, { "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1049-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb" + ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1051-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" + ] + }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1051-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" + ] }, { "kernelversion": "55~18.04.1", - "kernelrelease": "5.4.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1051-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb" + ] }, { "kernelversion": "54~18.04.1", - "kernelrelease": "5.4.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1051-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" + ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1052-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.4.0-1052-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb" + ] }, { "kernelversion": "55~18.04.1", - "kernelrelease": "5.4.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1052-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1053-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" + ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1053-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" + ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1053-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" + ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1054-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1054-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" + ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1054-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" + ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1055-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "58~18.04.1", + "kernelrelease": "5.4.0-1055-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" + ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1055-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1055-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1055-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" + ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1056-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb" + ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1056-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" + ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1056-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb" + ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1057-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + ] + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1057-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb" + ] }, { "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1057-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "61~18.04.1", + "kernelrelease": "5.4.0-1057-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" + ] }, { "kernelversion": "61~18.04.3", - "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1058-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1058-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb" + ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1059-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1059-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + ] + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1059-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + ] + }, + { + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1059-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb" + ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1059-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" + ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1060-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1060-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "65~18.04.1", + "kernelrelease": "5.4.0-1061-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb" + ] }, { "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1061-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1062-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb" + ] }, { "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1062-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1065-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1065-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb" + ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1065-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" + ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1066-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "70~18.04.1", + "kernelrelease": "5.4.0-1067-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" + ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1067-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" + ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1067-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1068-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" + ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1068-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + ] }, { "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" + ] }, { "kernelversion": "121~18.04.1", - "kernelrelease": "5.4.0-107-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-107-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb" + ] }, { "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1070-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" + ] + }, + { + "kernelversion": "76~18.04.1", + "kernelrelease": "5.4.0-1071-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb" + ] }, { "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-1072-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1072-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" + ] }, { "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1073-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1073-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" + ] }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1074-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1074-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1077-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "123~18.04.1", + "kernelrelease": "5.4.0-109-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb" + ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-37-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb" + ] }, { "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-39-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" + ] }, { "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-40-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" + ] }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-42-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb" + ] }, { "kernelversion": "49~18.04.2", - "kernelrelease": "5.4.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-45-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" + ] }, { "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-47-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" + ] }, { "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-48-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" + ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-51-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb" + ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-52-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb" + ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-53-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb" + ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-58-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" + ] }, { "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-59-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb" + ] }, { "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-60-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" + ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-62-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" + ] }, { "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-65-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb" + ] }, { "kernelversion": "74~18.04.2", - "kernelrelease": "5.4.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-66-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb" + ] }, { "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-67-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" + ] }, { "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-70-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" + ] }, { "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-71-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb" + ] }, { "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-72-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb" + ] }, { "kernelversion": "82~18.04.1", - "kernelrelease": "5.4.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-73-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" + ] }, { "kernelversion": "83~18.04.1", - "kernelrelease": "5.4.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-74-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" + ] }, { "kernelversion": "86~18.04.1", - "kernelrelease": "5.4.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-77-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb" + ] }, { "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-80-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-80-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb" + ] }, { "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-81-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-81-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" + ] }, { "kernelversion": "94~18.04.1", - "kernelrelease": "5.4.0-84-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-84-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" + ] }, { "kernelversion": "97~18.04.1", - "kernelrelease": "5.4.0-86-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-86-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" + ] }, { "kernelversion": "98~18.04.1", - "kernelrelease": "5.4.0-87-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-87-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb" + ] }, { "kernelversion": "100~18.04.1", - "kernelrelease": "5.4.0-89-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-89-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" + ] }, { "kernelversion": "101~18.04.1", - "kernelrelease": "5.4.0-90-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-90-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb" + ] }, { "kernelversion": "103~18.04.2", - "kernelrelease": "5.4.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-92-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" + ] }, { "kernelversion": "106~18.04.1", - "kernelrelease": "5.4.0-94-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-94-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" + ] }, { "kernelversion": "109~18.04.1", - "kernelrelease": "5.4.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-96-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb" + ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1007-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "4.15.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1011-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb" + ] }, { "kernelversion": "29", - "kernelrelease": "4.15.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1024-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "4.15.0-1025-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" + ] }, { "kernelversion": "25", "kernelrelease": "4.15.0-1025-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-1030-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1032-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "4.15.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1036-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" + ] }, { "kernelversion": "127", - "kernelrelease": "4.15.0-124-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-124", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" + ] }, { "kernelversion": "138", - "kernelrelease": "4.15.0-134-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-134", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "4.15.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-38", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb" + ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-48", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" + ] }, { "kernelversion": "10~18.04.1", - "kernelrelease": "4.18.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-1009-gcp-edge", + "target": "ubuntu-gcp-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" + ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "4.18.0-18-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.18.0-18-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" + ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.0.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-41-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" + ] }, { "kernelversion": "47~18.04.1", - "kernelrelease": "5.0.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-43-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" + ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.0.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-44-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" + ] }, { "kernelversion": "51~18.04.1", - "kernelrelease": "5.0.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-47-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + ] }, { "kernelversion": "52~18.04.1", - "kernelrelease": "5.0.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-48-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" + ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.0.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-53-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" + ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.0.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-58-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" + ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.0.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.0.0-60-hwe-5.0", + "target": "ubuntu-hwe-5.0", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" + ] }, { "kernelversion": "1", - "kernelrelease": "5.4.0-1001-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1001-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" + ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1018-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" + ] }, { "kernelversion": "19~18.04.2", - "kernelrelease": "5.4.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1019-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" + ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "5.4.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1019-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" + ] }, { "kernelversion": "20~18.04.1", - "kernelrelease": "5.4.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1020-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb" + ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-54-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb" + ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-64-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb" + ] }, { "kernelversion": "5", - "kernelrelease": "4.15.0-1004-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1004-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb" + ] }, { "kernelversion": "6", - "kernelrelease": "4.15.0-1006-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1006-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" + ] }, { "kernelversion": "7", "kernelrelease": "4.15.0-1007-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "4.15.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-20", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb" + ] }, { - "kernelversion": "3", - "kernelrelease": "5.15.0-1003-generic", - "target": "ubuntu-generic" + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" + ] }, { "kernelversion": "5", - "kernelrelease": "5.15.0-1003-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-1005-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb" + ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1004-generic", - "target": "ubuntu-generic" + "kernelversion": "28", + "kernelrelease": "5.15.0-27-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" + ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws" + "kernelversion": "28", + "kernelrelease": "5.15.0-27", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb" + ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-generic", - "target": "ubuntu-generic" + "kernelversion": "29", + "kernelrelease": "5.15.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb" + ] }, { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-generic", - "target": "ubuntu-generic" + "kernelversion": "4", + "kernelrelease": "5.15.0-1003-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" + ] }, { - "kernelversion": "8~22.04.2", - "kernelrelease": "5.17.0-8-generic", - "target": "ubuntu-generic" + "kernelversion": "3", + "kernelrelease": "5.15.0-1003-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" + ] }, { - "kernelversion": "2", - "kernelrelease": "5.15.0-1002-generic", - "target": "ubuntu-generic" + "kernelversion": "3", + "kernelrelease": "5.15.0-1003-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb" + ] }, { - "kernelversion": "4", - "kernelrelease": "5.15.0-1002-generic", - "target": "ubuntu-generic" + "kernelversion": "5", + "kernelrelease": "5.15.0-1003-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" + ] }, { - "kernelversion": "4", - "kernelrelease": "5.15.0-1003-generic", - "target": "ubuntu-generic" + "kernelversion": "6", + "kernelrelease": "5.15.0-1004-intel-iotg", + "target": "ubuntu-intel-iotg", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1003-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-1004-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" + ] }, { - "kernelversion": "4", - "kernelrelease": "5.15.0-1004-generic", - "target": "ubuntu-generic" + "kernelversion": "7", + "kernelrelease": "5.15.0-1004-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" + ] }, { - "kernelversion": "24", - "kernelrelease": "5.15.0-24-generic", - "target": "ubuntu-generic" + "kernelversion": "4", + "kernelrelease": "5.15.0-1004-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + ] }, { - "kernelversion": "25", - "kernelrelease": "5.15.0-25-generic", - "target": "ubuntu-generic" + "kernelversion": "24", + "kernelrelease": "5.15.0-24-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" + ] }, { "kernelversion": "3", - "kernelrelease": "5.17.0-1003-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.17.0-1003-oem-5.17", + "target": "ubuntu-oem-5.17", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "5.10.0-1047-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1047-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "5.10.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1058-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb" + ] + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" + ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + ] + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + ] }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1028-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1029-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.11.0-1029-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + ] }, { "kernelversion": "32~20.04.2", - "kernelrelease": "5.11.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1029-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" + ] }, { "kernelversion": "33~20.04.3", - "kernelrelease": "5.11.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1029-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb" + ] }, { "kernelversion": "34~20.04.3", - "kernelrelease": "5.11.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1030-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" + ] }, { "kernelversion": "44~20.04.2", - "kernelrelease": "5.11.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-40-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb" + ] }, { "kernelversion": "45~20.04.1", - "kernelrelease": "5.11.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-41-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" + ] }, { "kernelversion": "46~20.04.1", - "kernelrelease": "5.11.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-42-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb" + ] }, { "kernelversion": "47~20.04.2", - "kernelrelease": "5.11.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-43-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.11.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-60-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "5.11.0-61-generic", - "target": "ubuntu-generic" - }, - { - "kernelversion": "11", - "kernelrelease": "5.13.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-61-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + ] }, { "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1014-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + ] }, { "kernelversion": "16~20.04.1", - "kernelrelease": "5.13.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1014-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" + ] }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.13.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1015-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "20", + "kernelrelease": "5.13.0-1016-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1016-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1018-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1018-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1018-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" + ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1020-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1020-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb" + ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws" + "kernelversion": "24", + "kernelrelease": "5.13.0-1020-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb" + ] }, { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1022-generic", - "target": "ubuntu-generic" + "kernelversion": "26", + "kernelrelease": "5.13.0-1022-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" + ] + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1022-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1022-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" + ] + }, + { + "kernelversion": "25~20.04.1", + "kernelrelease": "5.13.0-1023-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.13.0-1023-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" + ] }, { "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1023-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" + ] }, { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1024-generic", - "target": "ubuntu-generic" + "kernelversion": "28~20.04.1", + "kernelrelease": "5.13.0-1023-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.13.0-1025-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.13.0-1025-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" + ] }, { "kernelversion": "31~20.04.2", - "kernelrelease": "5.13.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1026-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" + ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-generic", - "target": "ubuntu-generic" + "kernelversion": "33~20.04.1", + "kernelrelease": "5.13.0-1028-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" + ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-19-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb" + ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-21-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb" + ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-22-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" + ] }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.13.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-28-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb" + ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-29-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb" + ] }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-30-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" + ] }, { "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-32-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb" + ] }, { "kernelversion": "41~20.04.1", - "kernelrelease": "5.13.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-36-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" + ] }, { "kernelversion": "42~20.04.1", - "kernelrelease": "5.13.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-37-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" + ] }, { "kernelversion": "45~20.04.1", - "kernelrelease": "5.13.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-40-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" + ] }, { "kernelversion": "46~20.04.1", - "kernelrelease": "5.13.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-41-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb" + ] }, { "kernelversion": "6", - "kernelrelease": "5.14.0-1006-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1006-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" + ] }, { "kernelversion": "7", - "kernelrelease": "5.14.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1007-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb" + ] }, { "kernelversion": "8", - "kernelrelease": "5.14.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1008-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" + ] }, { "kernelversion": "9", - "kernelrelease": "5.14.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1009-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "5.14.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1011-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "5.14.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1012-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "5.14.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1013-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.14.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1021-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "5.14.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1022-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "5.14.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1023-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.14.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1024-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.14.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1028-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.14.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1029-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.14.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1030-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.14.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1032-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "5.14.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1033-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" + ] }, { - "kernelversion": "37", - "kernelrelease": "5.14.0-1034-generic", - "target": "ubuntu-generic" + "kernelversion": "38", + "kernelrelease": "5.14.0-1035-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb" + ] }, { "kernelversion": "4~20.04.2", - "kernelrelease": "5.15.0-1002-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-1002-intel-iotg-5.15", + "target": "ubuntu-intel-iotg-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" + ] + }, + { + "kernelversion": "24~20.04.3", + "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" + ] }, { - "kernelversion": "18~20.04.2", - "kernelrelease": "5.15.0-18-generic", - "target": "ubuntu-generic" + "kernelversion": "25~20.04.2", + "kernelrelease": "5.15.0-25-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" + ] }, { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.15.0-22-generic", - "target": "ubuntu-generic" + "kernelversion": "29~20.04.1", + "kernelrelease": "5.15.0-28-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb" + ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.15.0-23-generic", - "target": "ubuntu-generic" + "kernelversion": "113", + "kernelrelease": "5.4.0-100", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" + ] }, { - "kernelversion": "25~20.04.2", - "kernelrelease": "5.15.0-25-generic", - "target": "ubuntu-generic" + "kernelversion": "14", + "kernelrelease": "5.4.0-1013-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb" + ] }, { - "kernelversion": "113", - "kernelrelease": "5.4.0-100-generic", - "target": "ubuntu-generic" + "kernelversion": "14", + "kernelrelease": "5.4.0-1013-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + ] }, { - "kernelversion": "14", - "kernelrelease": "5.4.0-1013-generic", - "target": "ubuntu-generic" + "kernelversion": "16", + "kernelrelease": "5.4.0-1015-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "5.4.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1015-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb" + ] }, { "kernelversion": "115", - "kernelrelease": "5.4.0-102-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-102", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" + ] }, { - "kernelversion": "22", - "kernelrelease": "5.4.0-1020-generic", - "target": "ubuntu-generic" + "kernelversion": "23", + "kernelrelease": "5.4.0-1021-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1032-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1035-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "5.4.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1035-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + ] + }, + { + "kernelversion": "40", + "kernelrelease": "5.4.0-1039-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1039-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + ] + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1040-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1040-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" + ] }, { "kernelversion": "119", - "kernelrelease": "5.4.0-105-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-105", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "5.4.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1050-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1054-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1054-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1054-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb" + ] + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-1055-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1055-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1056-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1056-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb" + ] + }, + { + "kernelversion": "61", + "kernelrelease": "5.4.0-1057-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "5.4.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1057-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1058-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1058-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1059-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1059-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" + ] }, { "kernelversion": "120", - "kernelrelease": "5.4.0-106-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-106", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" + ] + }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1060-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb" + ] + }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1060-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1060-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" + ] }, { "kernelversion": "64", "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + ] + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" + ] + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb" + ] + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" + ] + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb" + ] + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "5.4.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1062-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb" + ] + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1062-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb" + ] + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1062-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb" + ] + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" + ] + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1063-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1063-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" + ] }, { "kernelversion": "66+cvm3", - "kernelrelease": "5.4.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1063-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb" + ] + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1063-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" + ] + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1063-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1064-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1064-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb" + ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1064-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" + ] + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1064-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" + ] + }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1065-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "5.4.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1066-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "5.4.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1066-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1067-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + ] + }, + { + "kernelversion": "71", + "kernelrelease": "5.4.0-1068-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1068-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" + ] }, { "kernelversion": "71+cvm1", - "kernelrelease": "5.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1068-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" + ] + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1068-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "5.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "5.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb" + ] + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1069-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb" + ] }, { "kernelversion": "121", - "kernelrelease": "5.4.0-107-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-107", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" + ] }, { "kernelversion": "74", "kernelrelease": "5.4.0-1070-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "5.4.0-1070-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1070-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" + ] }, { "kernelversion": "73+cvm1", - "kernelrelease": "5.4.0-1070-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1070-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1070-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1070-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "5.4.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1071-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1071-generic", - "target": "ubuntu-generic" + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb" + ] + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb" + ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.4.0-1071-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" + ] + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" + ] + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1073-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1073-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" + ] }, { "kernelversion": "76+cvm1", - "kernelrelease": "5.4.0-1073-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1073-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" + ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1074-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1074-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1075-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1075-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1076-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1076-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb" + ] }, { - "kernelversion": "79+cvm1", - "kernelrelease": "5.4.0-1076-generic", - "target": "ubuntu-generic" - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1077-generic", - "target": "ubuntu-generic" + "kernelversion": "81", + "kernelrelease": "5.4.0-1078-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb" + ] + }, + { + "kernelversion": "81+cvm1", + "kernelrelease": "5.4.0-1078-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" + ] }, { "kernelversion": "122", - "kernelrelease": "5.4.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-108", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb" + ] }, { "kernelversion": "123", - "kernelrelease": "5.4.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-109", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" + ] }, { "kernelversion": "124", - "kernelrelease": "5.4.0-110-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-110", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "5.4.0-97-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-97", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" + ] }, { "kernelversion": "111", - "kernelrelease": "5.4.0-98-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-98", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "5.4.0-99-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-99", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb" + ] + }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.8.0-1033-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb" + ] }, { "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1033-gcp-5.8", + "target": "ubuntu-gcp-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" + ] }, { "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1036-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1036-gcp-5.8", + "target": "ubuntu-gcp-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "5.8.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-67-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb" + ] }, { "kernelversion": "14", - "kernelrelease": "5.10.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1013-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "5.10.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1014-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "5.10.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1016-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "5.10.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1017-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.10.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1019-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.10.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1021-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.10.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1022-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "5.10.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1023-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.10.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1025-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb" + ] }, { "kernelversion": "27", - "kernelrelease": "5.10.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1026-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "5.10.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1029-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "5.10.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1033-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" + ] }, { "kernelversion": "40", - "kernelrelease": "5.10.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1038-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "5.10.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1044-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "5.10.0-1045-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1045-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" + ] }, { "kernelversion": "51", - "kernelrelease": "5.10.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1049-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "5.10.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1050-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "5.10.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1051-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "5.10.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1053-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "5.10.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1055-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "5.10.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1057-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" + ] }, { "kernelversion": "13~20.04.1", - "kernelrelease": "5.11.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1012-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" + ] + }, + { + "kernelversion": "14~20.04.1", + "kernelrelease": "5.11.0-1013-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1013-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb" + ] }, { "kernelversion": "15~20.04.1", - "kernelrelease": "5.11.0-1014-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1014-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + ] }, { "kernelversion": "16~20.04.1", - "kernelrelease": "5.11.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1014-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" + ] }, { "kernelversion": "16~20.04.1", - "kernelrelease": "5.11.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1015-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" + ] + }, + { + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" + ] }, { "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1016-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + ] + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" + ] }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1017-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb" + ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.11.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1017-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" + ] }, { "kernelversion": "20~20.04.2", - "kernelrelease": "5.11.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1018-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" + ] + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + ] + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + ] }, { "kernelversion": "21~20.04.2", - "kernelrelease": "5.11.0-1020-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1020-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" + ] + }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.11.0-1020-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb" + ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1020-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" + ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1020-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" + ] }, { "kernelversion": "22~20.04.2", - "kernelrelease": "5.11.0-1021-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1021-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" + ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1021-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + ] + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1021-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + ] + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1021-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1022-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb" + ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1021-generic", - "target": "ubuntu-generic" + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb" + ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" + ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + ] }, { "kernelversion": "25~20.04.1", - "kernelrelease": "5.11.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1023-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" + ] }, { "kernelversion": "26~20.04.1", - "kernelrelease": "5.11.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1024-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" + ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb" + ] }, { "kernelversion": "29~20.04.1", - "kernelrelease": "5.11.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1026-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1027-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" + ] }, { "kernelversion": "31~20.04.2", - "kernelrelease": "5.11.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1028-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" + ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1028-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" + ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-22-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb" + ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-25-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb" + ] }, { "kernelversion": "29~20.04.1", - "kernelrelease": "5.11.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-27-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" + ] }, { "kernelversion": "36~20.04.1", - "kernelrelease": "5.11.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-34-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" + ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.11.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-36-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" + ] }, { "kernelversion": "41~20.04.2", - "kernelrelease": "5.11.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-37-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb" + ] }, { "kernelversion": "42~20.04.1", - "kernelrelease": "5.11.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-38-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb" + ] }, { "kernelversion": "48~20.04.2", - "kernelrelease": "5.11.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-44-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb" + ] }, { "kernelversion": "51~20.04.1", - "kernelrelease": "5.11.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-46-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" + ] }, { "kernelversion": "9~20.04.2", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1008-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" + ] }, { "kernelversion": "9~20.04.3", - "kernelrelease": "5.13.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1008-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" + ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1008-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1008-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" + ] }, { "kernelversion": "10~20.04.2", - "kernelrelease": "5.13.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1009-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb" + ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1009-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "5.13.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1009-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "5.13.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1010-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1010-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "5.13.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1010-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1010-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + ] }, { "kernelversion": "12~20.04.1", - "kernelrelease": "5.13.0-1011-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1011-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1011-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" + ] }, { "kernelversion": "13~20.04.2", - "kernelrelease": "5.13.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1011-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" + ] }, { "kernelversion": "13~20.04.1", - "kernelrelease": "5.13.0-1012-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1012-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.13.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1012-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" + ] }, { "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1012-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "5.13.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1012-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" + ] }, { "kernelversion": "16~20.04.1", - "kernelrelease": "5.13.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1013-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "5.13.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1014-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" + ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1015-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" + ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.13.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1016-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" + ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1017-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1017-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.13.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1019-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-1019-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.13.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1019-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb" + ] }, { "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-1021-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.13.0-1021-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" + ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1021-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" + ] }, { "kernelversion": "25~20.04.1", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1021-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" + ] }, { "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1021-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" + ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-generic", - "target": "ubuntu-generic" + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1022-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1022-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1024-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.13.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1026-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.13.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1028-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "5.13.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1029-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" + ] }, { "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-23-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb" + ] }, { "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-25-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb" + ] }, { "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-27-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" + ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-35-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" + ] }, { "kernelversion": "44~20.04.1", - "kernelrelease": "5.13.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-39-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" + ] }, { "kernelversion": "4", - "kernelrelease": "5.14.0-1004-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1004-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" + ] }, { "kernelversion": "5", - "kernelrelease": "5.14.0-1005-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1005-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.14.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1018-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.14.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1020-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "5.14.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1027-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "5.14.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1031-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" + ] }, { "kernelversion": "5~20.04.1", - "kernelrelease": "5.15.0-1003-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.15.0-1003-intel-iotg-5.15", + "target": "ubuntu-intel-iotg-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" + ] }, { "kernelversion": "6", - "kernelrelease": "5.4.0-1005-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1005-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" + ] }, { "kernelversion": "7", - "kernelrelease": "5.4.0-1006-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1006-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" + ] }, { "kernelversion": "8", - "kernelrelease": "5.4.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1007-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1008-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1008-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "5.4.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1009-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1010-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1010-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1011-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "5.4.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1011-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "5.4.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1012-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb" + ] + }, + { + "kernelversion": "13", + "kernelrelease": "5.4.0-1012-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "5.4.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1012-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1014-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1014-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1015-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1015-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "5.4.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1016-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "5.4.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1016-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" + ] }, { "kernelversion": "17", "kernelrelease": "5.4.0-1017-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1017-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb" + ] }, { "kernelversion": "18", "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + ] + }, + { + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb" + ] + }, + { + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" + ] + }, + { + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1018-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1018-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.4.0-1019-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1019-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.4.0-1019-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1019-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" + ] + }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + ] + }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1020-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1020-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "5.4.0-1021-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "5.4.0-1021-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" + ] }, { "kernelversion": "21", "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "5.4.0-1021-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1021-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1022-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.4.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1022-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.4.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb" + ] + }, + { + "kernelversion": "23", + "kernelrelease": "5.4.0-1023-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" + ] + }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1023-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" + ] + }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + ] + }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1024-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1024-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1025-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1025-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.4.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1025-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.4.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1026-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" + ] + }, + { + "kernelversion": "27", + "kernelrelease": "5.4.0-1026-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" + ] }, { "kernelversion": "27", - "kernelrelease": "5.4.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1026-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1027-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" + ] }, { "kernelversion": "29", "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.4.0-1029-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" + ] }, { "kernelversion": "30", "kernelrelease": "5.4.0-1029-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.4.0-1029-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.4.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1029-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.4.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1030-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "5.4.0-1031-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.4.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1031-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "5.4.0-1031-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.4.0-1032-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.4.0-1032-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1033-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1033-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1034-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "5.4.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1034-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" + ] + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1035-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" + ] + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" + ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1036-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" + ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1036-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1036-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1036-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb" + ] + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1036-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1037-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1037-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb" + ] + }, + { + "kernelversion": "40", + "kernelrelease": "5.4.0-1037-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" + ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1037-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" + ] + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1037-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1037-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + ] }, { "kernelversion": "40", "kernelrelease": "5.4.0-1038-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" + ] + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1038-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1038-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1038-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1038-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb" + ] + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1039-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb" + ] + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1039-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1039-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "5.4.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1039-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" + ] }, { "kernelversion": "118", - "kernelrelease": "5.4.0-104-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-104", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "5.4.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1040-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "5.4.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1040-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb" + ] }, { "kernelversion": "43", "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb" + ] + }, + { + "kernelversion": "44", + "kernelrelease": "5.4.0-1041-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "5.4.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1041-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "5.4.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1041-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1042-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "5.4.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1042-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1043-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1043-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1043-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1043-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-1043-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-1043-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-1044-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1043-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1044-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1044-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb" + ] + }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1044-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" + ] + }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1045-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + ] + }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1045-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1045-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" + ] + }, + { + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" + ] }, { - "kernelversion": "47", - "kernelrelease": "5.4.0-1044-generic", - "target": "ubuntu-generic" + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + ] }, { - "kernelversion": "47", - "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws" + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1045-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1046-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" + ] }, { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-generic", - "target": "ubuntu-generic" + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1047-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-generic", - "target": "ubuntu-generic" + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" + ] }, { "kernelversion": "49", "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + ] }, { "kernelversion": "50", "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "5.4.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1048-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb" + ] + }, + { + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + ] }, { "kernelversion": "51", "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb" + ] + }, + { + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb" + ] + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1049-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1049-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "5.4.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1049-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" + ] + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" + ] + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1051-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "5.4.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1051-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" + ] }, { "kernelversion": "54", - "kernelrelease": "5.4.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1051-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1052-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" + ] + }, + { + "kernelversion": "56", + "kernelrelease": "5.4.0-1052-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "5.4.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1052-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" + ] + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1053-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1053-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1053-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "5.4.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1053-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" + ] + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1054-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" + ] }, { "kernelversion": "58", "kernelrelease": "5.4.0-1055-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + ] + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1055-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1055-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + ] }, { "kernelversion": "59", "kernelrelease": "5.4.0-1056-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" + ] + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-1056-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb" + ] + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" + ] + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1057-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.4.0-1057-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1057-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" + ] + }, + { + "kernelversion": "61", + "kernelrelease": "5.4.0-1058-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb" + ] }, { "kernelversion": "61", "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.4.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1058-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb" + ] + }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1059-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1059-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1060-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1060-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "5.4.0-1061-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1061-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" + ] + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" + ] }, { "kernelversion": "68", "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" + ] + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1066-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" + ] + }, + { + "kernelversion": "70", + "kernelrelease": "5.4.0-1067-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "5.4.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1067-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb" + ] }, { "kernelversion": "70+cvm1", - "kernelrelease": "5.4.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1067-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1067-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" + ] + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1068-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1068-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "5.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "5.4.0-1072-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1072-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb" + ] }, { "kernelversion": "75+cvm1", - "kernelrelease": "5.4.0-1072-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1072-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb" + ] + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1077-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.4.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-31", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "5.4.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-39", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "5.4.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-40", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-42", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb" + ] }, { "kernelversion": "51", - "kernelrelease": "5.4.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-47", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "5.4.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-48", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-52", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-53", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-58", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "5.4.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-59", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-60", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "5.4.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-62", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "5.4.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-65", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "5.4.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-66", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "5.4.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-67", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-70", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-71", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb" + ] }, { "kernelversion": "80", - "kernelrelease": "5.4.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-72", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" + ] }, { "kernelversion": "82", - "kernelrelease": "5.4.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-73", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "5.4.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-74", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "5.4.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-77", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb" + ] }, { "kernelversion": "90", - "kernelrelease": "5.4.0-80-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-80", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "5.4.0-81-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-81", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" + ] }, { "kernelversion": "94", - "kernelrelease": "5.4.0-84-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-84", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" + ] }, { "kernelversion": "97", - "kernelrelease": "5.4.0-86-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-86", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb" + ] }, { "kernelversion": "99", - "kernelrelease": "5.4.0-88-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-88", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "5.4.0-89-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-89", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" + ] }, { "kernelversion": "101", - "kernelrelease": "5.4.0-90-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-90", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "5.4.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-91", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb" + ] }, { "kernelversion": "103", - "kernelrelease": "5.4.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-92", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "5.4.0-94-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-94", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" + ] }, { "kernelversion": "109", - "kernelrelease": "5.4.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-96", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" + ] }, { "kernelversion": "8", - "kernelrelease": "5.6.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1008-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "5.6.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1010-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "5.6.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1011-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "5.6.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1013-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "5.6.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1017-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "5.6.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1018-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.6.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1020-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.6.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1023-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.6.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1026-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "5.6.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1028-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.6.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1031-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.6.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1032-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.6.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1033-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "5.6.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1039-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "5.6.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1042-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" + ] }, { "kernelversion": "51", - "kernelrelease": "5.6.0-1047-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1047-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "5.6.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1048-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb" + ] }, { "kernelversion": "54", - "kernelrelease": "5.6.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1050-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "5.6.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1052-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "5.6.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1053-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "5.6.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1054-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "5.6.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1055-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.6.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1056-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" + ] }, { "kernelversion": "32~20.04.2", - "kernelrelease": "5.8.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1031-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" + ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.8.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1032-gcp-5.8", + "target": "ubuntu-gcp-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb" + ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.8.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1033-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "37~20.04.1", + "kernelrelease": "5.8.0-1035-gcp-5.8", + "target": "ubuntu-gcp-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb" + ] }, { "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1035-aws-5.8", + "target": "ubuntu-aws-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb" + ] }, { "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1037-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" + ] + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-1038-aws-5.8", + "target": "ubuntu-aws-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" + ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.8.0-1038-gcp-5.8", + "target": "ubuntu-gcp-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" + ] }, { "kernelversion": "39~20.04.1", - "kernelrelease": "5.8.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1038-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" + ] }, { "kernelversion": "42~20.04.1", - "kernelrelease": "5.8.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1039-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "5.8.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1039-gcp-5.8", + "target": "ubuntu-gcp-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb" + ] }, { "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1040-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" + ] }, { "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-1041-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.8.0-1041-aws-5.8", + "target": "ubuntu-aws-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb" + ] }, { "kernelversion": "44~20.04.1", - "kernelrelease": "5.8.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1041-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" + ] }, { "kernelversion": "44~20.04.1", - "kernelrelease": "5.8.0-1042-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.8.0-1042-aws-5.8", + "target": "ubuntu-aws-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" + ] }, { "kernelversion": "46~20.04.1", - "kernelrelease": "5.8.0-1043-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1043-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" + ] }, { "kernelversion": "36~20.04.1", - "kernelrelease": "5.8.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-33-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" + ] }, { "kernelversion": "37~20.04.2", - "kernelrelease": "5.8.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-34-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" + ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-36-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" + ] }, { "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-38-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb" + ] }, { "kernelversion": "46~20.04.1", - "kernelrelease": "5.8.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-41-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb" + ] }, { "kernelversion": "49~20.04.1", - "kernelrelease": "5.8.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-43-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb" + ] }, { "kernelversion": "50~20.04.1", - "kernelrelease": "5.8.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-44-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" + ] }, { "kernelversion": "51~20.04.1", - "kernelrelease": "5.8.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-45-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb" + ] }, { "kernelversion": "54~20.04.1", - "kernelrelease": "5.8.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-48-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb" + ] }, { "kernelversion": "55~20.04.1", - "kernelrelease": "5.8.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-49-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" + ] }, { "kernelversion": "56~20.04.1", - "kernelrelease": "5.8.0-50-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-50-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" + ] }, { "kernelversion": "60~20.04.1", - "kernelrelease": "5.8.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-53-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" + ] }, { "kernelversion": "62~20.04.1", - "kernelrelease": "5.8.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-55-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + ] }, { "kernelversion": "66~20.04.1", - "kernelrelease": "5.8.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-59-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb" + ] }, { "kernelversion": "71~20.04.1", - "kernelrelease": "5.8.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-63-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "5.10.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1011-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.10.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1032-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.10.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1034-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" + ] }, { "kernelversion": "54", - "kernelrelease": "5.10.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.10.0-1052-oem-5.10", + "target": "ubuntu-oem-5.10", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" + ] }, { "kernelversion": "7~20.04.2", - "kernelrelease": "5.11.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1007-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" + ] }, { "kernelversion": "8~20.04.1", - "kernelrelease": "5.11.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1008-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" + ] }, { "kernelversion": "9~20.04.2", - "kernelrelease": "5.11.0-1009-aws", - "target": "ubuntu-aws" + "kernelrelease": "5.11.0-1009-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" + ] }, { "kernelversion": "10~20.04.1", - "kernelrelease": "5.11.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1009-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb" + ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1007-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1007-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb" + ] }, { "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1013-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.13.0-1021-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1021-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "5.14.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.14.0-1010-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" + ] + }, + { + "kernelversion": "37", + "kernelrelease": "5.14.0-1034-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb" + ] }, { "kernelversion": "67+cvm1", - "kernelrelease": "5.4.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1064-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb" + ] }, { "kernelversion": "68+cvm2", - "kernelrelease": "5.4.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1065-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" + ] }, { "kernelversion": "72+cvm1", - "kernelrelease": "5.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1069-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" + ] }, { "kernelversion": "77+cvm1", - "kernelrelease": "5.4.0-1074-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1074-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb" + ] + }, + { + "kernelversion": "79+cvm1", + "kernelrelease": "5.4.0-1076-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "5.4.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-54", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-64", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "5.6.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1021-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" + ] }, { "kernelversion": "27", - "kernelrelease": "5.6.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1027-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" + ] }, { "kernelversion": "36", - "kernelrelease": "5.6.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1034-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "5.6.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1035-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "5.6.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1036-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb" + ] }, { "kernelversion": "35~20.04.2", - "kernelrelease": "5.8.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1034-oracle-5.8", + "target": "ubuntu-oracle-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" + ] }, { "kernelversion": "45~20.04.1", - "kernelrelease": "5.8.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-1042-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" + ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.8.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-23-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb" + ] }, { "kernelversion": "26~20.04.1", - "kernelrelease": "5.8.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-25-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" + ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.8.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-28-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb" + ] }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.8.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-29-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb" + ] }, { "kernelversion": "45~20.04.1", - "kernelrelease": "5.8.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.8.0-40-hwe-5.8", + "target": "ubuntu-hwe-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb" + ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1009-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "5.4.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-1010-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" + ] }, { "kernelversion": "30", - "kernelrelease": "5.4.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.4.0-26", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" + ] }, { "kernelversion": "7", - "kernelrelease": "5.6.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.6.0-1007-oem-5.6", + "target": "ubuntu-oem-5.6", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.11.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1020-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.11.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1021-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" + ] }, { "kernelversion": "23", "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" + ] + }, + { + "kernelversion": "23", + "kernelrelease": "5.11.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" + ] }, { "kernelversion": "27", - "kernelrelease": "5.11.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1024-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + ] }, { "kernelversion": "30", "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.11.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1028-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "5.11.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-49", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" + ] }, { "kernelversion": "4", - "kernelrelease": "5.11.0-1004-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1004-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb" + ] }, { "kernelversion": "5", - "kernelrelease": "5.11.0-1005-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-1005-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" + ] }, { "kernelversion": "6", "kernelrelease": "5.11.0-1006-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.11.0-1006-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.11.0-1006-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "5.11.0-16-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.11.0-16", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb" + ] }, { "kernelversion": "5", - "kernelrelease": "5.13.0-1005-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1005-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1006-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" + ] }, { "kernelversion": "7", "kernelrelease": "5.13.0-1006-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1006-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" + ] }, { "kernelversion": "6", - "kernelrelease": "5.13.0-1006-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1006-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1007-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1007-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1007-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" + ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1008-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1010-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1011-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" + ] }, { "kernelversion": "13", "kernelrelease": "5.13.0-1012-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" + ] + }, + { + "kernelversion": "13", + "kernelrelease": "5.13.0-1012-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.13.0-1013-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" + ] }, { "kernelversion": "14", "kernelrelease": "5.13.0-1013-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "5.13.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1013-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb" + ] + }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1013-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" + ] }, { "kernelversion": "15", "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "5.13.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "5.13.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1014-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "5.13.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1015-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "5.13.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1017-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1018-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1018-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1019-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb" + ] }, { "kernelversion": "21", "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1019-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb" + ] }, { "kernelversion": "22", "kernelrelease": "5.13.0-1020-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1020-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb" + ] }, { - "kernelversion": "24", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws" + "kernelversion": "22", + "kernelrelease": "5.13.0-1021-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.13.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1022-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb" + ] + }, + { + "kernelversion": "27", + "kernelrelease": "5.13.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.13.0-1023-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb" + ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1023-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "5.13.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1023-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-1024-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" + ] }, { "kernelversion": "29", - "kernelrelease": "5.13.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1024-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1025-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1025-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.13.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1026-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" + ] }, { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-generic", - "target": "ubuntu-generic" + "kernelversion": "33", + "kernelrelease": "5.13.0-1028-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "5.13.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "5.13.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb" + ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb" + ] }, { "kernelversion": "35", - "kernelrelease": "5.13.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-32", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "5.13.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-36", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "5.13.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "5.13.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-38", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "5.13.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-40", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "5.13.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-41", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "5.13.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1009-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "5.13.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1011-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" + ] }, { "kernelversion": "14", - "kernelrelease": "5.13.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1012-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "5.13.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1012-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1015-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "5.13.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1016-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + ] }, { "kernelversion": "19", "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1020-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" + ] }, { "kernelversion": "23", "kernelrelease": "5.13.0-1021-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1021-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1021-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + ] }, { - "kernelversion": "30", - "kernelrelease": "5.13.0-1025-generic", - "target": "ubuntu-generic" + "kernelversion": "24", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-21", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-22", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" + ] }, { "kernelversion": "23", - "kernelrelease": "5.13.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-23", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-25", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" + ] }, { "kernelversion": "29", - "kernelrelease": "5.13.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-27", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" + ] }, { "kernelversion": "40", - "kernelrelease": "5.13.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-35", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "5.13.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-39", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "5.13.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1013-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-20", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" + ] }, { "kernelversion": "4", - "kernelrelease": "5.13.0-1004-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1004-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.13.0-1005-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" + ] }, { "kernelversion": "6", - "kernelrelease": "5.13.0-1005-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1005-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" + ] }, { "kernelversion": "10", - "kernelrelease": "5.13.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-1008-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "5.13.0-19", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" + ] + }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1004-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1006-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.15.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.15.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.15.0-30-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" + ] + }, + { + "kernelversion": "4", + "kernelrelease": "5.17.0-1004-oem-5.17", + "target": "ubuntu-oem-5.17", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb" + ] + }, + { + "kernelversion": "2", + "kernelrelease": "5.15.0-1002-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" + ] + }, + { + "kernelversion": "2", + "kernelrelease": "5.15.0-1002-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" + ] + }, + { + "kernelversion": "4", + "kernelrelease": "5.15.0-1002-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1003-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.15.0-25", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" + ] }, { "kernelversion": "47~14.04.1", - "kernelrelease": "4.15.0-1043-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1043-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" + ] }, { "kernelversion": "147", - "kernelrelease": "3.13.0-100-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-100", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" + ] }, { "kernelversion": "148", - "kernelrelease": "3.13.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-101", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb" + ] }, { "kernelversion": "150", - "kernelrelease": "3.13.0-103-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-103", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb" + ] }, { "kernelversion": "152", - "kernelrelease": "3.13.0-105-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-105", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb" + ] }, { "kernelversion": "153", - "kernelrelease": "3.13.0-106-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-106", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb" + ] }, { "kernelversion": "154", - "kernelrelease": "3.13.0-107-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-107", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" + ] }, { "kernelversion": "155", - "kernelrelease": "3.13.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-108", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb" + ] }, { "kernelversion": "156", - "kernelrelease": "3.13.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-109", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb" + ] }, { "kernelversion": "157", - "kernelrelease": "3.13.0-110-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-110", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" + ] }, { "kernelversion": "159", - "kernelrelease": "3.13.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-112", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" + ] }, { "kernelversion": "162", - "kernelrelease": "3.13.0-115-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-115", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb" + ] }, { "kernelversion": "163", - "kernelrelease": "3.13.0-116-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-116", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb" + ] }, { "kernelversion": "164", - "kernelrelease": "3.13.0-117-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-117", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" + ] }, { "kernelversion": "166", - "kernelrelease": "3.13.0-119-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-119", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb" + ] }, { "kernelversion": "170", - "kernelrelease": "3.13.0-121-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-121", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" + ] }, { "kernelversion": "172", - "kernelrelease": "3.13.0-123-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-123", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" + ] }, { "kernelversion": "174", - "kernelrelease": "3.13.0-125-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-125", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" + ] }, { "kernelversion": "175", - "kernelrelease": "3.13.0-126-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-126", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb" + ] }, { "kernelversion": "177", - "kernelrelease": "3.13.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-128", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb" + ] }, { "kernelversion": "178", - "kernelrelease": "3.13.0-129-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-129", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" + ] }, { "kernelversion": "181", - "kernelrelease": "3.13.0-132-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-132", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb" + ] }, { "kernelversion": "182", - "kernelrelease": "3.13.0-133-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-133", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb" + ] }, { "kernelversion": "184", - "kernelrelease": "3.13.0-135-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-135", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb" + ] }, { "kernelversion": "186", - "kernelrelease": "3.13.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-137", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb" + ] }, { "kernelversion": "188", - "kernelrelease": "3.13.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-139", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb" + ] }, { "kernelversion": "190", - "kernelrelease": "3.13.0-141-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-141", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb" + ] }, { "kernelversion": "191", - "kernelrelease": "3.13.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-142", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" + ] }, { "kernelversion": "192", - "kernelrelease": "3.13.0-143-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-143", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb" + ] }, { "kernelversion": "193", - "kernelrelease": "3.13.0-144-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-144", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb" + ] }, { "kernelversion": "196", - "kernelrelease": "3.13.0-147-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-147", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb" + ] }, { "kernelversion": "199", - "kernelrelease": "3.13.0-149-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-149", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb" + ] }, { "kernelversion": "201", - "kernelrelease": "3.13.0-151-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-151", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" + ] }, { "kernelversion": "203", - "kernelrelease": "3.13.0-153-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-153", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" + ] }, { "kernelversion": "205", - "kernelrelease": "3.13.0-155-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-155", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" + ] }, { "kernelversion": "206", - "kernelrelease": "3.13.0-156-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-156", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb" + ] }, { "kernelversion": "207", - "kernelrelease": "3.13.0-157-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-157", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb" + ] }, { "kernelversion": "210", - "kernelrelease": "3.13.0-160-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-160", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb" + ] }, { "kernelversion": "211", - "kernelrelease": "3.13.0-161-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-161", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" + ] }, { "kernelversion": "212", - "kernelrelease": "3.13.0-162-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-162", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" + ] }, { "kernelversion": "214", - "kernelrelease": "3.13.0-164-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-164", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" + ] }, { "kernelversion": "215", - "kernelrelease": "3.13.0-165-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-165", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" + ] }, { "kernelversion": "216", - "kernelrelease": "3.13.0-166-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-166", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb" + ] }, { "kernelversion": "217", - "kernelrelease": "3.13.0-167-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-167", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb" + ] }, { "kernelversion": "218", - "kernelrelease": "3.13.0-168-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-168", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + ] }, { "kernelversion": "220", - "kernelrelease": "3.13.0-170-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-170", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "3.13.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-24", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "3.13.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-27", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "3.13.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-29", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "3.13.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "3.13.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-32", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "3.13.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "3.13.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-34", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "3.13.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-35", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "3.13.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-36", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "3.13.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "3.13.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-39", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "3.13.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-40", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "3.13.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-41", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "3.13.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-43", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "3.13.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-44", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" + ] }, { "kernelversion": "79", - "kernelrelease": "3.13.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-46", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" + ] }, { "kernelversion": "80", - "kernelrelease": "3.13.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-48", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "3.13.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-49", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "3.13.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "3.13.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-52", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" + ] }, { "kernelversion": "89", - "kernelrelease": "3.13.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-53", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "3.13.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-54", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb" + ] }, { "kernelversion": "94", - "kernelrelease": "3.13.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-55", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb" + ] }, { "kernelversion": "95", - "kernelrelease": "3.13.0-57-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-57", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb" + ] }, { "kernelversion": "97", - "kernelrelease": "3.13.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-58", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" + ] }, { "kernelversion": "98", - "kernelrelease": "3.13.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-59", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "3.13.0-61-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-61", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "3.13.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-62", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb" + ] }, { "kernelversion": "103", - "kernelrelease": "3.13.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-63", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "3.13.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-65", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb" + ] }, { "kernelversion": "108", - "kernelrelease": "3.13.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-66", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "3.13.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-67", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" + ] }, { "kernelversion": "111", - "kernelrelease": "3.13.0-68-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-68", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb" + ] }, { "kernelversion": "113", - "kernelrelease": "3.13.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-70", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb" + ] }, { "kernelversion": "114", - "kernelrelease": "3.13.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-71", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb" + ] }, { "kernelversion": "116", - "kernelrelease": "3.13.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-73", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb" + ] }, { "kernelversion": "118", - "kernelrelease": "3.13.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-74", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb" + ] }, { "kernelversion": "120", - "kernelrelease": "3.13.0-76-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-76", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" + ] }, { "kernelversion": "121", - "kernelrelease": "3.13.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-77", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb" + ] }, { "kernelversion": "123", - "kernelrelease": "3.13.0-79-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-79", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" + ] }, { "kernelversion": "127", - "kernelrelease": "3.13.0-83-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-83", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb" + ] }, { "kernelversion": "129", - "kernelrelease": "3.13.0-85-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-85", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" + ] }, { "kernelversion": "131", - "kernelrelease": "3.13.0-86-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-86", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + ] }, { "kernelversion": "133", - "kernelrelease": "3.13.0-87-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-87", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb" + ] }, { "kernelversion": "135", - "kernelrelease": "3.13.0-88-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-88", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" + ] }, { "kernelversion": "138", - "kernelrelease": "3.13.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-91", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb" + ] }, { "kernelversion": "139", - "kernelrelease": "3.13.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-92", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb" + ] }, { "kernelversion": "140", - "kernelrelease": "3.13.0-93-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-93", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" + ] }, { "kernelversion": "142", - "kernelrelease": "3.13.0-95-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-95", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" + ] }, { "kernelversion": "143", - "kernelrelease": "3.13.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-96", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb" + ] }, { "kernelversion": "145", - "kernelrelease": "3.13.0-98-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-98", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" + ] }, { "kernelversion": "33~14.04.2", - "kernelrelease": "3.16.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-25-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb" + ] }, { "kernelversion": "35~14.04.1", - "kernelrelease": "3.16.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-26-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb" + ] }, { "kernelversion": "38~14.04.1", - "kernelrelease": "3.16.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-28-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb" + ] }, { "kernelversion": "39~14.04.1", - "kernelrelease": "3.16.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-29-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" + ] }, { "kernelversion": "43~14.04.1", - "kernelrelease": "3.16.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-31-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb" + ] }, { "kernelversion": "44~14.04.1", - "kernelrelease": "3.16.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-33-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" + ] }, { "kernelversion": "47~14.04.1", - "kernelrelease": "3.16.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-34-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" + ] }, { "kernelversion": "48~14.04.1", - "kernelrelease": "3.16.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-36-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" + ] }, { "kernelversion": "51~14.04.1", - "kernelrelease": "3.16.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-37-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb" + ] }, { "kernelversion": "52~14.04.1", - "kernelrelease": "3.16.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-38-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb" + ] }, { "kernelversion": "53~14.04.1", - "kernelrelease": "3.16.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-39-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb" + ] }, { "kernelversion": "57~14.04.1", - "kernelrelease": "3.16.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-41-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" + ] }, { "kernelversion": "58~14.04.1", - "kernelrelease": "3.16.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-43-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" + ] }, { "kernelversion": "59~14.04.1", - "kernelrelease": "3.16.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-44-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" + ] }, { "kernelversion": "60~14.04.1", - "kernelrelease": "3.16.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-45-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" + ] }, { "kernelversion": "62~14.04.1", - "kernelrelease": "3.16.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-46-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb" + ] }, { "kernelversion": "64~14.04.1", - "kernelrelease": "3.16.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-48-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb" + ] }, { "kernelversion": "65~14.04.1", - "kernelrelease": "3.16.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-49-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" + ] }, { "kernelversion": "67~14.04.1", - "kernelrelease": "3.16.0-50-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-50-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb" + ] }, { "kernelversion": "69~14.04.1", - "kernelrelease": "3.16.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-51-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb" + ] }, { "kernelversion": "71~14.04.1", - "kernelrelease": "3.16.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-52-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb" + ] }, { "kernelversion": "72~14.04.1", - "kernelrelease": "3.16.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-53-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" + ] }, { "kernelversion": "74~14.04.1", - "kernelrelease": "3.16.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-55-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" + ] }, { "kernelversion": "75~14.04.1", - "kernelrelease": "3.16.0-56-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-56-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" + ] }, { "kernelversion": "77~14.04.1", - "kernelrelease": "3.16.0-57-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-57-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" + ] }, { "kernelversion": "79~14.04.1", - "kernelrelease": "3.16.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-59-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb" + ] }, { "kernelversion": "80~14.04.1", - "kernelrelease": "3.16.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-60-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" + ] }, { "kernelversion": "83~14.04.1", - "kernelrelease": "3.16.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-62-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb" + ] }, { "kernelversion": "87~14.04.1", - "kernelrelease": "3.16.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-67-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" + ] }, { "kernelversion": "89~14.04.1", - "kernelrelease": "3.16.0-69-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-69-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" + ] }, { "kernelversion": "90~14.04.1", - "kernelrelease": "3.16.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-70-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" + ] }, { "kernelversion": "92~14.04.1", - "kernelrelease": "3.16.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-71-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb" + ] }, { "kernelversion": "95~14.04.1", - "kernelrelease": "3.16.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-73-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb" + ] }, { "kernelversion": "98~14.04.1", - "kernelrelease": "3.16.0-76-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-76-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb" + ] }, { "kernelversion": "99~14.04.1", - "kernelrelease": "3.16.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-77-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb" + ] }, { "kernelversion": "20~14.04.1", - "kernelrelease": "3.19.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-20-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb" + ] }, { "kernelversion": "21~14.04.1", - "kernelrelease": "3.19.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-21-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb" + ] }, { "kernelversion": "22~14.04.1", - "kernelrelease": "3.19.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-22-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb" + ] }, { "kernelversion": "24~14.04.1", - "kernelrelease": "3.19.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-23-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb" + ] }, { "kernelversion": "26~14.04.1", - "kernelrelease": "3.19.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-25-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb" + ] }, { "kernelversion": "28~14.04.1", - "kernelrelease": "3.19.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-26-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb" + ] }, { "kernelversion": "30~14.04.1", - "kernelrelease": "3.19.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-28-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb" + ] }, { "kernelversion": "34~14.04.1", - "kernelrelease": "3.19.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-30-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" + ] }, { "kernelversion": "36~14.04.1", - "kernelrelease": "3.19.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-31-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" + ] }, { "kernelversion": "37~14.04.1", - "kernelrelease": "3.19.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-32-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" + ] }, { "kernelversion": "38~14.04.1", - "kernelrelease": "3.19.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-33-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb" + ] }, { "kernelversion": "42~14.04.1", - "kernelrelease": "3.19.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-37-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" + ] }, { "kernelversion": "44~14.04.1", - "kernelrelease": "3.19.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-39-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb" + ] }, { "kernelversion": "46~14.04.2", - "kernelrelease": "3.19.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-41-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" + ] }, { "kernelversion": "48~14.04.1", - "kernelrelease": "3.19.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-42-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" + ] }, { "kernelversion": "49~14.04.1", - "kernelrelease": "3.19.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-43-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb" + ] }, { "kernelversion": "53~14.04.1", - "kernelrelease": "3.19.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-47-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb" + ] }, { "kernelversion": "55~14.04.1", - "kernelrelease": "3.19.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-49-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" + ] }, { "kernelversion": "58~14.04.1", - "kernelrelease": "3.19.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-51-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" + ] }, { "kernelversion": "62~14.04.1", - "kernelrelease": "3.19.0-56-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-56-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" + ] }, { "kernelversion": "64~14.04.1", - "kernelrelease": "3.19.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-58-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb" + ] }, { "kernelversion": "66~14.04.1", - "kernelrelease": "3.19.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-59-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" + ] }, { "kernelversion": "69~14.04.1", - "kernelrelease": "3.19.0-61-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-61-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + ] }, { "kernelversion": "72~14.04.1", - "kernelrelease": "3.19.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-64-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" + ] }, { "kernelversion": "73~14.04.1", - "kernelrelease": "3.19.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-65-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" + ] }, { "kernelversion": "74~14.04.1", - "kernelrelease": "3.19.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-66-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" + ] }, { "kernelversion": "76~14.04.1", - "kernelrelease": "3.19.0-68-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-68-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb" + ] }, { "kernelversion": "77~14.04.1", - "kernelrelease": "3.19.0-69-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-69-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb" + ] }, { "kernelversion": "79~14.04.1", - "kernelrelease": "3.19.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-71-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" + ] }, { "kernelversion": "81~14.04.1", - "kernelrelease": "3.19.0-73-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-73-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" + ] }, { "kernelversion": "82~14.04.1", - "kernelrelease": "3.19.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-74-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" + ] }, { "kernelversion": "83~14.04.1", - "kernelrelease": "3.19.0-75-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-75-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" + ] }, { "kernelversion": "85~14.04.1", - "kernelrelease": "3.19.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-77-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb" + ] }, { "kernelversion": "86~14.04.1", - "kernelrelease": "3.19.0-78-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-78-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" + ] }, { "kernelversion": "87~14.04.1", - "kernelrelease": "3.19.0-79-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-79-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb" + ] }, { "kernelversion": "88~14.04.1", - "kernelrelease": "3.19.0-80-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-80-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb" + ] }, { "kernelversion": "24~14.04.1", - "kernelrelease": "4.15.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb" + ] }, { "kernelversion": "32~14.04.1", - "kernelrelease": "4.15.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1031-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" + ] }, { "kernelversion": "33~14.04.2", - "kernelrelease": "4.15.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1032-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" + ] }, { "kernelversion": "36~14.04.2", - "kernelrelease": "4.15.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1035-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" + ] }, { "kernelversion": "38~14.04.2", - "kernelrelease": "4.15.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb" + ] }, { "kernelversion": "39~14.04.2", - "kernelrelease": "4.15.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb" + ] }, { "kernelversion": "41~14.04.2", - "kernelrelease": "4.15.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1039-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb" + ] }, { "kernelversion": "44~14.04.1", - "kernelrelease": "4.15.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1040-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" + ] }, { "kernelversion": "45~14.04.1", - "kernelrelease": "4.15.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1041-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" + ] }, { "kernelversion": "49~14.04.1", - "kernelrelease": "4.15.0-1045-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1045-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb" + ] }, { "kernelversion": "22~14.04.1", - "kernelrelease": "4.2.0-18-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-18-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" + ] }, { "kernelversion": "23~14.04.1", - "kernelrelease": "4.2.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-19-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" + ] }, { "kernelversion": "25~14.04.1", - "kernelrelease": "4.2.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-21-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb" + ] }, { "kernelversion": "27~14.04.1", - "kernelrelease": "4.2.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-22-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb" + ] }, { "kernelversion": "28~14.04.1", - "kernelrelease": "4.2.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-23-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" + ] }, { "kernelversion": "30~14.04.1", - "kernelrelease": "4.2.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-25-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb" + ] }, { "kernelversion": "32~14.04.1", - "kernelrelease": "4.2.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-27-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" + ] }, { "kernelversion": "36~14.04.1", - "kernelrelease": "4.2.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-30-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" + ] }, { "kernelversion": "39~14.04.1", - "kernelrelease": "4.2.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-34-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb" + ] }, { "kernelversion": "40~14.04.1", - "kernelrelease": "4.2.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-35-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb" + ] }, { "kernelversion": "42~14.04.1", - "kernelrelease": "4.2.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-36-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb" + ] }, { "kernelversion": "45~14.04.1", - "kernelrelease": "4.2.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-38-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb" + ] }, { "kernelversion": "48~14.04.1", - "kernelrelease": "4.2.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-41-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" + ] }, { "kernelversion": "49~14.04.1", - "kernelrelease": "4.2.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.2.0-42-lts-wily", + "target": "ubuntu-lts-wily", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb" + ] }, { "kernelversion": "124~14.04.1", - "kernelrelease": "4.4.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-101-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb" + ] }, { "kernelversion": "126~14.04.1", - "kernelrelease": "4.4.0-103-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-103-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb" + ] }, { "kernelversion": "127~14.04.1", - "kernelrelease": "4.4.0-104-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-104-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" + ] }, { "kernelversion": "131~14.04.1", - "kernelrelease": "4.4.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-108-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb" + ] }, { "kernelversion": "132~14.04.1", - "kernelrelease": "4.4.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-109-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb" + ] }, { "kernelversion": "134~14.04.1", - "kernelrelease": "4.4.0-111-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-111-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb" + ] }, { "kernelversion": "135~14.04.1", - "kernelrelease": "4.4.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-112-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" + ] }, { "kernelversion": "140~14.04.1", - "kernelrelease": "4.4.0-116-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-116-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb" + ] }, { "kernelversion": "143~14.04.1", - "kernelrelease": "4.4.0-119-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-119-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb" + ] }, { "kernelversion": "145~14.04.1", - "kernelrelease": "4.4.0-121-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-121-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" + ] }, { "kernelversion": "148~14.04.1", - "kernelrelease": "4.4.0-124-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-124-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb" + ] }, { "kernelversion": "153~14.04.1", - "kernelrelease": "4.4.0-127-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-127-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" + ] }, { "kernelversion": "154~14.04.1", - "kernelrelease": "4.4.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-128-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb" + ] }, { "kernelversion": "156~14.04.1", - "kernelrelease": "4.4.0-130-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-130-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb" + ] }, { "kernelversion": "159~14.04.1", - "kernelrelease": "4.4.0-133-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-133-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" + ] }, { "kernelversion": "160~14.04.1", - "kernelrelease": "4.4.0-134-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-134-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" + ] }, { "kernelversion": "163~14.04.1", - "kernelrelease": "4.4.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-137-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" + ] }, { "kernelversion": "164~14.04.1", - "kernelrelease": "4.4.0-138-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-138-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" + ] }, { "kernelversion": "165~14.04.1", - "kernelrelease": "4.4.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-139-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb" + ] }, { "kernelversion": "167~14.04.1", - "kernelrelease": "4.4.0-141-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-141-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" + ] }, { "kernelversion": "168~14.04.1", - "kernelrelease": "4.4.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-142-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb" + ] }, { "kernelversion": "169~14.04.2", - "kernelrelease": "4.4.0-143-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-143-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb" + ] }, { "kernelversion": "170~14.04.1", - "kernelrelease": "4.4.0-144-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-144-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" + ] }, { "kernelversion": "174~14.04.1", - "kernelrelease": "4.4.0-148-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-148-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" + ] }, { "kernelversion": "37~14.04.1", - "kernelrelease": "4.4.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-21-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb" + ] }, { "kernelversion": "40~14.04.1", - "kernelrelease": "4.4.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-22-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" + ] }, { "kernelversion": "43~14.04.1", - "kernelrelease": "4.4.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-24-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + ] }, { "kernelversion": "47~14.04.1", - "kernelrelease": "4.4.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-28-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" + ] }, { "kernelversion": "50~14.04.1", - "kernelrelease": "4.4.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-31-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb" + ] }, { "kernelversion": "53~14.04.1", - "kernelrelease": "4.4.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-34-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" + ] }, { "kernelversion": "55~14.04.1", - "kernelrelease": "4.4.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-36-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" + ] }, { "kernelversion": "57~14.04.1", - "kernelrelease": "4.4.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-38-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" + ] }, { "kernelversion": "62~14.04.1", - "kernelrelease": "4.4.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-42-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" + ] }, { "kernelversion": "66~14.04.1", - "kernelrelease": "4.4.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-45-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" + ] }, { "kernelversion": "68~14.04.1", - "kernelrelease": "4.4.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-47-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb" + ] }, { "kernelversion": "72~14.04.1", - "kernelrelease": "4.4.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-51-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" + ] }, { "kernelversion": "74~14.04.1", - "kernelrelease": "4.4.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-53-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" + ] }, { "kernelversion": "78~14.04.1", - "kernelrelease": "4.4.0-57-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-57-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" + ] }, { "kernelversion": "80~14.04.1", - "kernelrelease": "4.4.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-59-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" + ] }, { "kernelversion": "83~14.04.1", - "kernelrelease": "4.4.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-62-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" + ] }, { "kernelversion": "84~14.04.2", - "kernelrelease": "4.4.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-63-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" + ] }, { "kernelversion": "85~14.04.1", - "kernelrelease": "4.4.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-64-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" + ] }, { "kernelversion": "87~14.04.1", - "kernelrelease": "4.4.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-66-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" + ] }, { "kernelversion": "88~14.04.1", - "kernelrelease": "4.4.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-67-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" + ] }, { "kernelversion": "91~14.04.1", - "kernelrelease": "4.4.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-70-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb" + ] }, { "kernelversion": "92~14.04.1", - "kernelrelease": "4.4.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-71-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb" + ] }, { "kernelversion": "93~14.04.1", - "kernelrelease": "4.4.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-72-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" + ] }, { "kernelversion": "96~14.04.1", - "kernelrelease": "4.4.0-75-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-75-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" + ] }, { "kernelversion": "99~14.04.2", - "kernelrelease": "4.4.0-78-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-78-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb" + ] }, { "kernelversion": "100~14.04.1", - "kernelrelease": "4.4.0-79-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-79-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + ] }, { "kernelversion": "104~14.04.1", - "kernelrelease": "4.4.0-81-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-81-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" + ] }, { "kernelversion": "106~14.04.1", - "kernelrelease": "4.4.0-83-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-83-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb" + ] }, { "kernelversion": "110~14.04.1", - "kernelrelease": "4.4.0-87-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-87-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb" + ] }, { "kernelversion": "112~14.04.1", - "kernelrelease": "4.4.0-89-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-89-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" + ] }, { "kernelversion": "114~14.04.1", - "kernelrelease": "4.4.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-91-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb" + ] }, { "kernelversion": "115~14.04.1", - "kernelrelease": "4.4.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-92-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" + ] }, { "kernelversion": "116~14.04.1", - "kernelrelease": "4.4.0-93-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-93-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" + ] }, { "kernelversion": "119~14.04.1", - "kernelrelease": "4.4.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-96-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb" + ] }, { "kernelversion": "120~14.04.1", - "kernelrelease": "4.4.0-97-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-97-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" + ] }, { "kernelversion": "121~14.04.1", - "kernelrelease": "4.4.0-98-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-98-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" + ] }, { "kernelversion": "160", - "kernelrelease": "3.13.0-113-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-113", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" + ] }, { "kernelversion": "194", - "kernelrelease": "3.13.0-145-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-145", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb" + ] }, { "kernelversion": "208", - "kernelrelease": "3.13.0-158-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-158", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb" + ] }, { "kernelversion": "213", - "kernelrelease": "3.13.0-163-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-163", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" + ] }, { "kernelversion": "219", - "kernelrelease": "3.13.0-169-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-169", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "3.13.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb" + ] }, { "kernelversion": "40~14.04.1", - "kernelrelease": "3.16.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-30-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb" + ] }, { "kernelversion": "54~14.04.1", - "kernelrelease": "3.16.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.16.0-40-lts-utopic", + "target": "ubuntu-lts-utopic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb" + ] }, { "kernelversion": "18~14.04.1", - "kernelrelease": "3.19.0-18-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.19.0-18-lts-vivid", + "target": "ubuntu-lts-vivid", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb" + ] }, { "kernelversion": "31~14.04.1", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" + ] }, { "kernelversion": "46~14.04.1", - "kernelrelease": "4.15.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1042-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb" + ] }, { "kernelversion": "157~14.04.1", - "kernelrelease": "4.4.0-131-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-131-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb" + ] }, { "kernelversion": "161~14.04.1", - "kernelrelease": "4.4.0-135-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-135-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb" + ] }, { "kernelversion": "166~14.04.1", - "kernelrelease": "4.4.0-140-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-140-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb" + ] }, { "kernelversion": "172~14.04.1", - "kernelrelease": "4.4.0-146-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-146-lts-xenial", + "target": "ubuntu-lts-xenial", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "3.13.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "3.13.0-24", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" + ] }, { "kernelversion": "74~16.04.1", - "kernelrelease": "4.15.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1066-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb" + ] }, { "kernelversion": "75~16.04.1", - "kernelrelease": "4.15.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1067-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" + ] }, { "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-1095-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1095-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" + ] }, { "kernelversion": "108~16.04.1", - "kernelrelease": "4.15.0-1095-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1095-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" + ] }, { "kernelversion": "103~16.04.1", - "kernelrelease": "4.15.0-1096-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1096-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" + ] }, { "kernelversion": "122~16.04.1", - "kernelrelease": "4.15.0-1110-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1110-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb" + ] }, { "kernelversion": "139", "kernelrelease": "4.4.0-1125-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb" + ] }, { "kernelversion": "238", - "kernelrelease": "4.4.0-206-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-206", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" + ] }, { "kernelversion": "239", - "kernelrelease": "4.4.0-207-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-207", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" + ] }, { "kernelversion": "16~16.04.1", - "kernelrelease": "4.10.0-14-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-14-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb" + ] }, { "kernelversion": "21~16.04.1", - "kernelrelease": "4.10.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-19-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" + ] }, { "kernelversion": "22~16.04.1", - "kernelrelease": "4.10.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-20-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb" + ] }, { "kernelversion": "23~16.04.1", - "kernelrelease": "4.10.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-21-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb" + ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.10.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-22-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" + ] }, { "kernelversion": "28~16.04.1", - "kernelrelease": "4.10.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-24-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" + ] }, { "kernelversion": "30~16.04.1", - "kernelrelease": "4.10.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-26-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" + ] }, { "kernelversion": "30~16.04.2", - "kernelrelease": "4.10.0-27-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-27-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb" + ] }, { "kernelversion": "32~16.04.2", - "kernelrelease": "4.10.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-28-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" + ] }, { "kernelversion": "34~16.04.1", - "kernelrelease": "4.10.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-30-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.10.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-32-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb" + ] }, { "kernelversion": "37~16.04.1", - "kernelrelease": "4.10.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-33-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb" + ] }, { "kernelversion": "39~16.04.1", - "kernelrelease": "4.10.0-35-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-35-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb" + ] }, { "kernelversion": "41~16.04.1", - "kernelrelease": "4.10.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-37-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.10.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-38-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" + ] }, { "kernelversion": "44~16.04.1", - "kernelrelease": "4.10.0-40-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-40-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" + ] }, { "kernelversion": "46~16.04.1", - "kernelrelease": "4.10.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.10.0-42-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "4.11.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-1015-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb" + ] }, { "kernelversion": "16", - "kernelrelease": "4.11.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-1016-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" + ] }, { "kernelversion": "19~16.04.1", - "kernelrelease": "4.11.0-13-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-13-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb" + ] }, { "kernelversion": "20~16.04.1", - "kernelrelease": "4.11.0-14-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-14-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" + ] }, { "kernelversion": "7", - "kernelrelease": "4.13.0-1005-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-1005-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb" + ] }, { "kernelversion": "8", - "kernelrelease": "4.13.0-1006-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-1006-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb" + ] }, { "kernelversion": "9", - "kernelrelease": "4.13.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-1007-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" + ] }, { "kernelversion": "14", - "kernelrelease": "4.13.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-1011-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "4.13.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb" + ] }, { "kernelversion": "19", - "kernelrelease": "4.13.0-1016-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-1016-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb" + ] }, { "kernelversion": "21", - "kernelrelease": "4.13.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-1018-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb" + ] }, { "kernelversion": "19~16.04.3", - "kernelrelease": "4.13.0-16-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-16-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb" + ] }, { "kernelversion": "20~16.04.1", - "kernelrelease": "4.13.0-17-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-17-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" + ] }, { "kernelversion": "22~16.04.1", - "kernelrelease": "4.13.0-19-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-19-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb" + ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.13.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-21-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" + ] }, { "kernelversion": "29~16.04.2", - "kernelrelease": "4.13.0-25-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-25-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb" + ] }, { "kernelversion": "29~16.04.2", - "kernelrelease": "4.13.0-26-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-26-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" + ] }, { "kernelversion": "34~16.04.1", - "kernelrelease": "4.13.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-31-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" + ] }, { "kernelversion": "35~16.04.1", - "kernelrelease": "4.13.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-32-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb" + ] }, { "kernelversion": "40~16.04.1", - "kernelrelease": "4.13.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-36-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.13.0-37-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-37-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb" + ] }, { "kernelversion": "43~16.04.1", - "kernelrelease": "4.13.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-38-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb" + ] }, { "kernelversion": "44~16.04.1", - "kernelrelease": "4.13.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-39-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb" + ] }, { "kernelversion": "46~16.04.1", - "kernelrelease": "4.13.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-41-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" + ] }, { "kernelversion": "48~16.04.1", - "kernelrelease": "4.13.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-43-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" + ] }, { "kernelversion": "50~16.04.1", - "kernelrelease": "4.13.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-45-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" + ] }, { "kernelversion": "10~16.04.1", - "kernelrelease": "4.15.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1008-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" + ] }, { "kernelversion": "11~16.04.1", - "kernelrelease": "4.15.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1009-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" + ] }, { "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-101-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb" + ] }, { "kernelversion": "12~16.04.1", - "kernelrelease": "4.15.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1010-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" + ] }, { "kernelversion": "13~16.04.2", - "kernelrelease": "4.15.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1013-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb" + ] }, { "kernelversion": "15~16.04.1", - "kernelrelease": "4.15.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1013-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" + ] }, { "kernelversion": "14~16.04.1", - "kernelrelease": "4.15.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" + ] }, { "kernelversion": "16~16.04.1", - "kernelrelease": "4.15.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1014-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" + ] }, { "kernelversion": "17~16.04.1", - "kernelrelease": "4.15.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1015-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb" + ] }, { "kernelversion": "18~16.04.1", - "kernelrelease": "4.15.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1017-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" + ] }, { "kernelversion": "19~16.04.2", - "kernelrelease": "4.15.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1017-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" + ] }, { "kernelversion": "18~16.04.1", - "kernelrelease": "4.15.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1018-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" + ] }, { "kernelversion": "19~16.04.2", - "kernelrelease": "4.15.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1018-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb" + ] }, { "kernelversion": "20~16.04.1", - "kernelrelease": "4.15.0-1018-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1018-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb" + ] }, { "kernelversion": "19~16.04.1", - "kernelrelease": "4.15.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1019-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb" + ] }, { "kernelversion": "20~16.04.1", - "kernelrelease": "4.15.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1019-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" + ] }, { "kernelversion": "21~16.04.1", - "kernelrelease": "4.15.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1021-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" + ] }, { "kernelversion": "22~16.04.1", - "kernelrelease": "4.15.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1021-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" + ] }, { "kernelversion": "23~16.04.1", - "kernelrelease": "4.15.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1021-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" + ] }, { "kernelversion": "22~16.04.1", - "kernelrelease": "4.15.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1022-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" + ] }, { "kernelversion": "25~16.04.1", - "kernelrelease": "4.15.0-1022-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" + ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" + ] + }, + { + "kernelversion": "24~16.04.1", + "kernelrelease": "4.15.0-1023-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb" + ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1023-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" + ] }, { "kernelversion": "25~16.04.2", - "kernelrelease": "4.15.0-1024-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1024-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb" + ] + }, + { + "kernelversion": "26~16.04.1", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" + ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" + ] }, { "kernelversion": "28~16.04.1", - "kernelrelease": "4.15.0-1025-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1025-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb" + ] }, { "kernelversion": "27~16.04.1", - "kernelrelease": "4.15.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1026-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb" + ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1026-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb" + ] }, { "kernelversion": "28~16.04.1", - "kernelrelease": "4.15.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1027-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb" + ] }, { "kernelversion": "30~16.04.1", - "kernelrelease": "4.15.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1027-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" + ] + }, + { + "kernelversion": "29~16.04.1", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" + ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" + ] }, { "kernelversion": "31~16.04.1", - "kernelrelease": "4.15.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1029-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" + ] }, { "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1029-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb" + ] }, { "kernelversion": "33~16.04.1", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" + ] }, { "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1031-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb" + ] }, { "kernelversion": "34~16.04.1", - "kernelrelease": "4.15.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1031-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" + ] }, { "kernelversion": "33~16.04.1", - "kernelrelease": "4.15.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1032-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" + ] }, { "kernelversion": "34~16.04.1", - "kernelrelease": "4.15.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1032-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb" + ] }, { "kernelversion": "35~16.04.1", - "kernelrelease": "4.15.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1033-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1033-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-1034-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1034-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1035-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" + ] + }, + { + "kernelversion": "38~16.04.1", + "kernelrelease": "4.15.0-1035-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" + ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" + ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" + ] }, { "kernelversion": "39~16.04.1", - "kernelrelease": "4.15.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1037-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" + ] + }, + { + "kernelversion": "39~16.04.1", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" + ] }, { "kernelversion": "41~16.04.1", - "kernelrelease": "4.15.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1037-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.15.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1038-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" + ] }, { "kernelversion": "43~16.04.1", - "kernelrelease": "4.15.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1039-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1040-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.15.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1040-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "4.15.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1041-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" + ] }, { "kernelversion": "49~16.04.1", - "kernelrelease": "4.15.0-1045-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1045-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "4.15.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1046-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" + ] }, { "kernelversion": "50~16.04.1", - "kernelrelease": "4.15.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1046-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "4.15.0-1047-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1047-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" + ] }, { "kernelversion": "54", - "kernelrelease": "4.15.0-1049-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1049-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "4.15.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1050-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb" + ] }, { "kernelversion": "54~16.04.1", - "kernelrelease": "4.15.0-1050-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1050-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "4.15.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1051-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" + ] }, { "kernelversion": "55~16.04.1", - "kernelrelease": "4.15.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1051-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "4.15.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1052-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" + ] }, { "kernelversion": "56", - "kernelrelease": "4.15.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1052-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" + ] }, { "kernelversion": "57~16.04.1", - "kernelrelease": "4.15.0-1053-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1053-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" + ] }, { "kernelversion": "58~16.04.1", - "kernelrelease": "4.15.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1054-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" + ] }, { "kernelversion": "60", - "kernelrelease": "4.15.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1055-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "4.15.0-1055-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1055-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "4.15.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1056-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" + ] }, { "kernelversion": "61~16.04.1", - "kernelrelease": "4.15.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1056-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "4.15.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1058-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" + ] }, { "kernelversion": "64~16.04.1", - "kernelrelease": "4.15.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1058-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "4.15.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1059-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb" + ] }, { "kernelversion": "107~16.04.1", - "kernelrelease": "4.15.0-106-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-106-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "4.15.0-1060-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1060-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb" + ] }, { "kernelversion": "64", - "kernelrelease": "4.15.0-1060-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1060-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "4.15.0-1061-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1061-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "4.15.0-1061-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1061-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb" + ] }, { "kernelversion": "67~16.04.1", - "kernelrelease": "4.15.0-1061-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1061-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" + ] }, { "kernelversion": "68~16.04.1", - "kernelrelease": "4.15.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1062-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb" + ] }, { "kernelversion": "68", - "kernelrelease": "4.15.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1063-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "4.15.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1064-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" + ] }, { "kernelversion": "71~16.04.1", - "kernelrelease": "4.15.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1064-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" + ] }, { "kernelversion": "73~16.04.1", - "kernelrelease": "4.15.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1065-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "4.15.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1066-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "4.15.0-1067-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1067-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" + ] }, { "kernelversion": "76~16.04.1", - "kernelrelease": "4.15.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1068-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "4.15.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1069-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb" + ] }, { "kernelversion": "77~16.04.1", - "kernelrelease": "4.15.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1069-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" + ] }, { "kernelversion": "108~16.04.1", - "kernelrelease": "4.15.0-107-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-107-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" + ] }, { "kernelversion": "78~16.04.1", - "kernelrelease": "4.15.0-1070-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1070-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "4.15.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1071-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" + ] }, { "kernelversion": "81~16.04.1", - "kernelrelease": "4.15.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1071-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb" + ] }, { "kernelversion": "80", - "kernelrelease": "4.15.0-1075-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1075-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb" + ] }, { "kernelversion": "87~16.04.1", - "kernelrelease": "4.15.0-1077-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1077-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" + ] }, { "kernelversion": "88~16.04.1", - "kernelrelease": "4.15.0-1078-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1078-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb" + ] }, { "kernelversion": "90~16.04.1", - "kernelrelease": "4.15.0-1080-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1080-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb" + ] }, { "kernelversion": "92~16.04.1", - "kernelrelease": "4.15.0-1081-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1081-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" + ] }, { "kernelversion": "92~16.04.1", - "kernelrelease": "4.15.0-1082-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1082-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" + ] }, { "kernelversion": "93~16.04.1", - "kernelrelease": "4.15.0-1083-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1083-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb" + ] }, { "kernelversion": "94~16.04.1", - "kernelrelease": "4.15.0-1083-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1083-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" + ] }, { "kernelversion": "95~16.04.1", - "kernelrelease": "4.15.0-1084-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1084-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" + ] }, { "kernelversion": "98~16.04.1", - "kernelrelease": "4.15.0-1086-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1086-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" + ] }, { "kernelversion": "100~16.04.1", - "kernelrelease": "4.15.0-1087-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1087-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb" + ] }, { "kernelversion": "99~16.04.1", - "kernelrelease": "4.15.0-1089-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1089-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" + ] }, { "kernelversion": "103~16.04.1", - "kernelrelease": "4.15.0-1090-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1090-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" + ] }, { "kernelversion": "101~16.04.1", - "kernelrelease": "4.15.0-1091-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1091-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb" + ] }, { "kernelversion": "104~16.04.1", - "kernelrelease": "4.15.0-1091-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1091-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" + ] }, { "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-1092-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1092-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" + ] }, { "kernelversion": "105~16.04.1", - "kernelrelease": "4.15.0-1092-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1092-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb" + ] }, { "kernelversion": "99~16.04.1", - "kernelrelease": "4.15.0-1093-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1093-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" + ] }, { "kernelversion": "103~16.04.1", - "kernelrelease": "4.15.0-1093-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1093-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" + ] }, { "kernelversion": "106~16.04.1", - "kernelrelease": "4.15.0-1093-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1093-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb" + ] }, { "kernelversion": "101~16.04.1", - "kernelrelease": "4.15.0-1094-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1094-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" + ] }, { "kernelversion": "107~16.04.1", - "kernelrelease": "4.15.0-1094-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1094-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb" + ] }, { "kernelversion": "105~16.04.1", - "kernelrelease": "4.15.0-1095-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1095-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" + ] }, { "kernelversion": "106~16.04.1", - "kernelrelease": "4.15.0-1096-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1096-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb" + ] }, { "kernelversion": "109~16.04.1", - "kernelrelease": "4.15.0-1096-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1096-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" + ] }, { "kernelversion": "104~16.04.1", - "kernelrelease": "4.15.0-1097-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1097-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" + ] }, { "kernelversion": "110~16.04.1", - "kernelrelease": "4.15.0-1097-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1097-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" + ] }, { "kernelversion": "105~16.04.1", - "kernelrelease": "4.15.0-1098-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1098-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" + ] }, { "kernelversion": "109~16.04.1", - "kernelrelease": "4.15.0-1098-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1098-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" + ] }, { "kernelversion": "111~16.04.1", - "kernelrelease": "4.15.0-1098-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1098-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb" + ] }, { "kernelversion": "106~16.04.1", - "kernelrelease": "4.15.0-1099-aws", - "target": "ubuntu-aws" + "kernelrelease": "4.15.0-1099-aws-hwe", + "target": "ubuntu-aws-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" + ] }, { "kernelversion": "113~16.04.1", - "kernelrelease": "4.15.0-1102-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1102-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" + ] }, { "kernelversion": "114~16.04.1", - "kernelrelease": "4.15.0-1103-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1103-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb" + ] }, { "kernelversion": "118~16.04.1", - "kernelrelease": "4.15.0-1106-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1106-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" + ] }, { "kernelversion": "120~16.04.1", - "kernelrelease": "4.15.0-1108-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1108-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" + ] }, { "kernelversion": "121~16.04.1", - "kernelrelease": "4.15.0-1109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1109-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb" + ] }, { "kernelversion": "123~16.04.1", - "kernelrelease": "4.15.0-1111-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1111-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb" + ] }, { "kernelversion": "124~16.04.1", - "kernelrelease": "4.15.0-1112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1112-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb" + ] }, { "kernelversion": "126~16.04.1", - "kernelrelease": "4.15.0-1113-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1113-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" + ] }, { "kernelversion": "113~16.04.1", - "kernelrelease": "4.15.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-112-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb" + ] }, { "kernelversion": "116~16.04.1", - "kernelrelease": "4.15.0-115-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-115-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb" + ] }, { "kernelversion": "118~16.04.1", - "kernelrelease": "4.15.0-117-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-117-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + ] }, { "kernelversion": "119~16.04.1", - "kernelrelease": "4.15.0-118-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-118-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" + ] }, { "kernelversion": "122~16.04.1", - "kernelrelease": "4.15.0-120-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-120-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb" + ] }, { "kernelversion": "124~16.04.1", - "kernelrelease": "4.15.0-122-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-122-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" + ] }, { "kernelversion": "126~16.04.1", - "kernelrelease": "4.15.0-123-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-123-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb" + ] }, { "kernelversion": "131~16.04.1", - "kernelrelease": "4.15.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-128-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb" + ] }, { "kernelversion": "132~16.04.1", - "kernelrelease": "4.15.0-129-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-129-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" + ] }, { "kernelversion": "14~16.04.1", - "kernelrelease": "4.15.0-13-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-13-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" + ] }, { "kernelversion": "136~16.04.1", - "kernelrelease": "4.15.0-132-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-132-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb" + ] }, { "kernelversion": "137~16.04.1", - "kernelrelease": "4.15.0-133-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-133-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb" + ] }, { "kernelversion": "140~16.04.1", - "kernelrelease": "4.15.0-136-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-136-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" + ] }, { "kernelversion": "141~16.04.1", - "kernelrelease": "4.15.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-137-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb" + ] }, { "kernelversion": "143~16.04.1", - "kernelrelease": "4.15.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-139-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb" + ] }, { "kernelversion": "144~16.04.1", - "kernelrelease": "4.15.0-140-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-140-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" + ] }, { "kernelversion": "146~16.04.1", - "kernelrelease": "4.15.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-142-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb" + ] }, { "kernelversion": "16~16.04.1", - "kernelrelease": "4.15.0-15-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-15-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb" + ] }, { "kernelversion": "21~16.04.1", - "kernelrelease": "4.15.0-20-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-20-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" + ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-22-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" + ] }, { "kernelversion": "25~16.04.1", - "kernelrelease": "4.15.0-23-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-23-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" + ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-24-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb" + ] }, { "kernelversion": "31~16.04.1", - "kernelrelease": "4.15.0-29-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-29-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb" + ] }, { "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-30-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-30-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" + ] }, { "kernelversion": "35~16.04.1", - "kernelrelease": "4.15.0-32-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-32-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-33-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-33-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb" + ] }, { "kernelversion": "37~16.04.1", - "kernelrelease": "4.15.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-34-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb" + ] }, { "kernelversion": "39~16.04.1", - "kernelrelease": "4.15.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-36-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.15.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-39-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb" + ] }, { "kernelversion": "45~16.04.1", - "kernelrelease": "4.15.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-42-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" + ] }, { "kernelversion": "46~16.04.1", - "kernelrelease": "4.15.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-43-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb" + ] }, { "kernelversion": "48~16.04.1", - "kernelrelease": "4.15.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-45-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb" + ] }, { "kernelversion": "49~16.04.1", - "kernelrelease": "4.15.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-46-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb" + ] }, { "kernelversion": "50~16.04.1", - "kernelrelease": "4.15.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-47-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb" + ] }, { "kernelversion": "54~16.04.1", - "kernelrelease": "4.15.0-50-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-50-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb" + ] }, { "kernelversion": "55~16.04.1", - "kernelrelease": "4.15.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-51-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb" + ] }, { "kernelversion": "56~16.04.1", - "kernelrelease": "4.15.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-52-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb" + ] }, { "kernelversion": "58~16.04.1", - "kernelrelease": "4.15.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-54-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" + ] }, { "kernelversion": "60~16.04.2", - "kernelrelease": "4.15.0-55-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-55-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + ] }, { "kernelversion": "64~16.04.1", - "kernelrelease": "4.15.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-58-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb" + ] }, { "kernelversion": "67~16.04.1", - "kernelrelease": "4.15.0-60-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-60-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb" + ] }, { "kernelversion": "69~16.04.1", - "kernelrelease": "4.15.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-62-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" + ] }, { "kernelversion": "73~16.04.1", - "kernelrelease": "4.15.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-64-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb" + ] }, { "kernelversion": "74~16.04.1", - "kernelrelease": "4.15.0-65-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-65-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" + ] }, { "kernelversion": "75~16.04.1", - "kernelrelease": "4.15.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-66-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" + ] }, { "kernelversion": "78~16.04.1", - "kernelrelease": "4.15.0-69-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-69-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" + ] }, { "kernelversion": "79~16.04.1", - "kernelrelease": "4.15.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-70-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb" + ] }, { "kernelversion": "81~16.04.1", - "kernelrelease": "4.15.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-72-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb" + ] }, { "kernelversion": "83~16.04.1", - "kernelrelease": "4.15.0-74-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-74-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb" + ] }, { "kernelversion": "86~16.04.1", - "kernelrelease": "4.15.0-76-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-76-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" + ] }, { "kernelversion": "88~16.04.1", - "kernelrelease": "4.15.0-88-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-88-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb" + ] }, { "kernelversion": "92~16.04.1", - "kernelrelease": "4.15.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-91-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" + ] }, { "kernelversion": "97~16.04.1", - "kernelrelease": "4.15.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-96-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb" + ] }, { "kernelversion": "100~16.04.1", - "kernelrelease": "4.15.0-99-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-99-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "4.4.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1007-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "4.4.0-1008-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1008-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb" + ] }, { "kernelversion": "14", - "kernelrelease": "4.4.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1009-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb" + ] }, { "kernelversion": "124", - "kernelrelease": "4.4.0-101-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-101", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "4.4.0-1010-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1010-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb" + ] }, { "kernelversion": "17", - "kernelrelease": "4.4.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1012-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" + ] }, { "kernelversion": "22", "kernelrelease": "4.4.0-1013-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb" + ] }, { "kernelversion": "18", - "kernelrelease": "4.4.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1013-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb" + ] }, { "kernelversion": "20", - "kernelrelease": "4.4.0-1015-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1015-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb" + ] }, { "kernelversion": "25", "kernelrelease": "4.4.0-1016-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb" + ] }, { "kernelversion": "26", "kernelrelease": "4.4.0-1017-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb" + ] }, { "kernelversion": "22", - "kernelrelease": "4.4.0-1017-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1017-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" + ] }, { "kernelversion": "27", "kernelrelease": "4.4.0-1018-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" + ] }, { "kernelversion": "24", - "kernelrelease": "4.4.0-1019-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1019-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb" + ] }, { "kernelversion": "29", "kernelrelease": "4.4.0-1020-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb" + ] }, { "kernelversion": "25", - "kernelrelease": "4.4.0-1020-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1020-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" + ] }, { "kernelversion": "26", - "kernelrelease": "4.4.0-1021-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1021-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" + ] }, { "kernelversion": "31", "kernelrelease": "4.4.0-1022-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb" + ] }, { "kernelversion": "28", - "kernelrelease": "4.4.0-1023-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1023-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" + ] }, { "kernelversion": "35", "kernelrelease": "4.4.0-1026-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" + ] }, { "kernelversion": "31", - "kernelrelease": "4.4.0-1026-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1026-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb" + ] }, { "kernelversion": "32", - "kernelrelease": "4.4.0-1027-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1027-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb" + ] }, { "kernelversion": "37", "kernelrelease": "4.4.0-1028-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" + ] }, { "kernelversion": "34", - "kernelrelease": "4.4.0-1029-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1029-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" + ] }, { "kernelversion": "126", - "kernelrelease": "4.4.0-103-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-103", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + ] }, { "kernelversion": "39", "kernelrelease": "4.4.0-1030-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb" + ] }, { "kernelversion": "40", "kernelrelease": "4.4.0-1031-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "4.4.0-1031-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1031-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb" + ] }, { "kernelversion": "41", "kernelrelease": "4.4.0-1032-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" + ] }, { "kernelversion": "38", - "kernelrelease": "4.4.0-1032-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1032-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" + ] }, { "kernelversion": "44", "kernelrelease": "4.4.0-1035-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" + ] }, { "kernelversion": "41", - "kernelrelease": "4.4.0-1035-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1035-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" + ] }, { "kernelversion": "42", - "kernelrelease": "4.4.0-1036-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1036-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "4.4.0-1037-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1037-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb" + ] }, { "kernelversion": "47", "kernelrelease": "4.4.0-1038-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" + ] }, { "kernelversion": "48", "kernelrelease": "4.4.0-1039-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" + ] }, { "kernelversion": "45", - "kernelrelease": "4.4.0-1039-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1039-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb" + ] }, { "kernelversion": "127", - "kernelrelease": "4.4.0-104-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-104", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "4.4.0-1040-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1040-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" + ] }, { "kernelversion": "50", "kernelrelease": "4.4.0-1041-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "4.4.0-1041-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1041-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb" + ] }, { "kernelversion": "52", "kernelrelease": "4.4.0-1043-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb" + ] }, { "kernelversion": "49", - "kernelrelease": "4.4.0-1043-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1043-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb" + ] }, { "kernelversion": "53", "kernelrelease": "4.4.0-1044-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb" + ] }, { "kernelversion": "52", - "kernelrelease": "4.4.0-1046-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1046-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb" + ] }, { "kernelversion": "56", "kernelrelease": "4.4.0-1047-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "4.4.0-1047-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1047-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" + ] }, { "kernelversion": "57", "kernelrelease": "4.4.0-1048-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "4.4.0-1048-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1048-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb" + ] }, { "kernelversion": "58", "kernelrelease": "4.4.0-1049-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb" + ] }, { "kernelversion": "58", - "kernelrelease": "4.4.0-1051-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1051-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" + ] }, { "kernelversion": "61", "kernelrelease": "4.4.0-1052-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" + ] }, { "kernelversion": "59", - "kernelrelease": "4.4.0-1052-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1052-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" + ] }, { "kernelversion": "63", "kernelrelease": "4.4.0-1054-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" + ] }, { "kernelversion": "61", - "kernelrelease": "4.4.0-1054-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1054-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb" + ] }, { "kernelversion": "64", "kernelrelease": "4.4.0-1055-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "4.4.0-1056-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1056-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb" + ] }, { "kernelversion": "66", "kernelrelease": "4.4.0-1057-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb" + ] }, { "kernelversion": "65", - "kernelrelease": "4.4.0-1058-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1058-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "4.4.0-1059-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1059-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb" + ] }, { "kernelversion": "69", "kernelrelease": "4.4.0-1060-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb" + ] }, { "kernelversion": "67", - "kernelrelease": "4.4.0-1060-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1060-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb" + ] }, { "kernelversion": "70", "kernelrelease": "4.4.0-1061-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb" + ] }, { "kernelversion": "71", "kernelrelease": "4.4.0-1062-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" + ] }, { "kernelversion": "69", - "kernelrelease": "4.4.0-1062-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1062-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" + ] }, { "kernelversion": "70", - "kernelrelease": "4.4.0-1063-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1063-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb" + ] }, { "kernelversion": "71", - "kernelrelease": "4.4.0-1064-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1064-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" + ] }, { "kernelversion": "75", "kernelrelease": "4.4.0-1065-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "4.4.0-1065-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1065-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" + ] }, { "kernelversion": "76", "kernelrelease": "4.4.0-1066-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" + ] }, { "kernelversion": "73", - "kernelrelease": "4.4.0-1066-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1066-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" + ] }, { "kernelversion": "75", - "kernelrelease": "4.4.0-1068-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1068-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" + ] }, { "kernelversion": "79", "kernelrelease": "4.4.0-1069-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb" + ] }, { "kernelversion": "76", - "kernelrelease": "4.4.0-1069-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1069-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb" + ] }, { "kernelversion": "80", "kernelrelease": "4.4.0-1070-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" + ] }, { "kernelversion": "77", - "kernelrelease": "4.4.0-1070-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1070-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "4.4.0-1071-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1071-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" + ] }, { "kernelversion": "82", "kernelrelease": "4.4.0-1072-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" + ] }, { "kernelversion": "84", "kernelrelease": "4.4.0-1074-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" + ] }, { "kernelversion": "85", "kernelrelease": "4.4.0-1075-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" + ] }, { "kernelversion": "82", - "kernelrelease": "4.4.0-1075-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1075-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "4.4.0-1076-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1076-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" + ] }, { "kernelversion": "87", "kernelrelease": "4.4.0-1077-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "4.4.0-1077-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1077-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" + ] }, { "kernelversion": "85", - "kernelrelease": "4.4.0-1078-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1078-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb" + ] }, { "kernelversion": "89", "kernelrelease": "4.4.0-1079-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb" + ] }, { "kernelversion": "86", - "kernelrelease": "4.4.0-1079-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1079-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" + ] }, { "kernelversion": "131", - "kernelrelease": "4.4.0-108-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-108", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb" + ] }, { "kernelversion": "87", - "kernelrelease": "4.4.0-1080-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1080-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "4.4.0-1082-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1082-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb" + ] }, { "kernelversion": "93", "kernelrelease": "4.4.0-1083-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb" + ] }, { "kernelversion": "94", "kernelrelease": "4.4.0-1084-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb" + ] }, { "kernelversion": "93", - "kernelrelease": "4.4.0-1084-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1084-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" + ] }, { "kernelversion": "96", "kernelrelease": "4.4.0-1085-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb" + ] }, { "kernelversion": "94", - "kernelrelease": "4.4.0-1085-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1085-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" + ] }, { "kernelversion": "98", "kernelrelease": "4.4.0-1087-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb" + ] }, { "kernelversion": "96", - "kernelrelease": "4.4.0-1087-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1087-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" + ] }, { "kernelversion": "99", "kernelrelease": "4.4.0-1088-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb" + ] }, { "kernelversion": "97", - "kernelrelease": "4.4.0-1088-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1088-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb" + ] }, { "kernelversion": "98", - "kernelrelease": "4.4.0-1089-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1089-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" + ] }, { "kernelversion": "132", - "kernelrelease": "4.4.0-109-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-109", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb" + ] }, { "kernelversion": "101", "kernelrelease": "4.4.0-1090-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb" + ] }, { "kernelversion": "99", - "kernelrelease": "4.4.0-1090-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1090-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "4.4.0-1091-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1091-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" + ] }, { "kernelversion": "103", "kernelrelease": "4.4.0-1092-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb" + ] }, { "kernelversion": "101", - "kernelrelease": "4.4.0-1092-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1092-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" + ] }, { "kernelversion": "102", - "kernelrelease": "4.4.0-1093-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1093-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" + ] }, { "kernelversion": "105", "kernelrelease": "4.4.0-1094-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" + ] }, { "kernelversion": "106", "kernelrelease": "4.4.0-1095-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" + ] }, { "kernelversion": "107", "kernelrelease": "4.4.0-1096-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb" + ] }, { "kernelversion": "109", "kernelrelease": "4.4.0-1098-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" + ] }, { "kernelversion": "110", "kernelrelease": "4.4.0-1099-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" + ] }, { "kernelversion": "111", "kernelrelease": "4.4.0-1100-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" + ] }, { "kernelversion": "112", "kernelrelease": "4.4.0-1101-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" + ] }, { "kernelversion": "113", "kernelrelease": "4.4.0-1102-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" + ] }, { "kernelversion": "115", "kernelrelease": "4.4.0-1104-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" + ] }, { "kernelversion": "116", "kernelrelease": "4.4.0-1105-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" + ] }, { "kernelversion": "117", "kernelrelease": "4.4.0-1106-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" + ] }, { "kernelversion": "118", "kernelrelease": "4.4.0-1107-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" + ] }, { "kernelversion": "120", "kernelrelease": "4.4.0-1109-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" + ] }, { "kernelversion": "121", "kernelrelease": "4.4.0-1110-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb" + ] }, { "kernelversion": "123", "kernelrelease": "4.4.0-1111-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" + ] }, { "kernelversion": "124", "kernelrelease": "4.4.0-1112-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb" + ] }, { "kernelversion": "126", "kernelrelease": "4.4.0-1113-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" + ] }, { "kernelversion": "127", "kernelrelease": "4.4.0-1114-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" + ] }, { "kernelversion": "131", "kernelrelease": "4.4.0-1117-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb" + ] }, { "kernelversion": "132", "kernelrelease": "4.4.0-1118-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" + ] }, { "kernelversion": "133", "kernelrelease": "4.4.0-1119-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" + ] }, { "kernelversion": "135", - "kernelrelease": "4.4.0-112-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-112", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" + ] }, { "kernelversion": "135", "kernelrelease": "4.4.0-1121-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" + ] }, { "kernelversion": "136", "kernelrelease": "4.4.0-1122-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb" + ] }, { "kernelversion": "137", "kernelrelease": "4.4.0-1123-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" + ] }, { "kernelversion": "138", "kernelrelease": "4.4.0-1124-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" + ] }, { "kernelversion": "140", "kernelrelease": "4.4.0-1126-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" + ] }, { "kernelversion": "141", "kernelrelease": "4.4.0-1127-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb" + ] }, { "kernelversion": "142", "kernelrelease": "4.4.0-1128-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb" + ] }, { "kernelversion": "140", - "kernelrelease": "4.4.0-116-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-116", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" + ] }, { "kernelversion": "143", - "kernelrelease": "4.4.0-119-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-119", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb" + ] }, { "kernelversion": "145", - "kernelrelease": "4.4.0-121-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-121", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb" + ] }, { "kernelversion": "148", - "kernelrelease": "4.4.0-124-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-124", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb" + ] }, { "kernelversion": "153", - "kernelrelease": "4.4.0-127-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-127", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" + ] }, { "kernelversion": "154", - "kernelrelease": "4.4.0-128-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-128", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" + ] }, { "kernelversion": "156", - "kernelrelease": "4.4.0-130-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-130", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" + ] }, { "kernelversion": "159", - "kernelrelease": "4.4.0-133-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-133", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" + ] }, { "kernelversion": "160", - "kernelrelease": "4.4.0-134-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-134", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb" + ] }, { "kernelversion": "163", - "kernelrelease": "4.4.0-137-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-137", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb" + ] }, { "kernelversion": "164", - "kernelrelease": "4.4.0-138-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-138", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" + ] }, { "kernelversion": "165", - "kernelrelease": "4.4.0-139-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-139", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" + ] }, { "kernelversion": "167", - "kernelrelease": "4.4.0-141-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-141", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb" + ] }, { "kernelversion": "168", - "kernelrelease": "4.4.0-142-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-142", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb" + ] }, { "kernelversion": "169", - "kernelrelease": "4.4.0-143-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-143", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" + ] }, { "kernelversion": "171", - "kernelrelease": "4.4.0-145-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-145", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb" + ] }, { "kernelversion": "174", - "kernelrelease": "4.4.0-148-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-148", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb" + ] }, { "kernelversion": "176", - "kernelrelease": "4.4.0-150-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-150", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb" + ] }, { "kernelversion": "178", - "kernelrelease": "4.4.0-151-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-151", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" + ] }, { "kernelversion": "181", - "kernelrelease": "4.4.0-154-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-154", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb" + ] }, { "kernelversion": "185", - "kernelrelease": "4.4.0-157-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-157", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" + ] }, { "kernelversion": "187", - "kernelrelease": "4.4.0-159-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-159", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" + ] }, { "kernelversion": "189", - "kernelrelease": "4.4.0-161-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-161", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb" + ] }, { "kernelversion": "192", - "kernelrelease": "4.4.0-164-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-164", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" + ] }, { "kernelversion": "193", - "kernelrelease": "4.4.0-165-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-165", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" + ] }, { "kernelversion": "195", - "kernelrelease": "4.4.0-166-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-166", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" + ] }, { "kernelversion": "197", - "kernelrelease": "4.4.0-168-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-168", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb" + ] }, { "kernelversion": "198", - "kernelrelease": "4.4.0-169-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-169", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" + ] }, { "kernelversion": "199", - "kernelrelease": "4.4.0-170-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-170", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb" + ] }, { "kernelversion": "200", - "kernelrelease": "4.4.0-171-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-171", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb" + ] }, { "kernelversion": "203", - "kernelrelease": "4.4.0-173-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-173", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb" + ] }, { "kernelversion": "204", - "kernelrelease": "4.4.0-174-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-174", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb" + ] }, { "kernelversion": "206", - "kernelrelease": "4.4.0-176-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-176", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" + ] }, { "kernelversion": "207", - "kernelrelease": "4.4.0-177-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-177", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb" + ] }, { "kernelversion": "208", - "kernelrelease": "4.4.0-178-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-178", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" + ] }, { "kernelversion": "209", - "kernelrelease": "4.4.0-179-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-179", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb" + ] }, { "kernelversion": "214", - "kernelrelease": "4.4.0-184-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-184", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" + ] }, { "kernelversion": "215", - "kernelrelease": "4.4.0-185-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-185", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb" + ] }, { "kernelversion": "216", - "kernelrelease": "4.4.0-186-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-186", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb" + ] }, { "kernelversion": "217", - "kernelrelease": "4.4.0-187-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-187", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" + ] }, { "kernelversion": "219", - "kernelrelease": "4.4.0-189-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-189", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb" + ] }, { "kernelversion": "220", - "kernelrelease": "4.4.0-190-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-190", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" + ] }, { "kernelversion": "224", - "kernelrelease": "4.4.0-193-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-193", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb" + ] }, { "kernelversion": "226", - "kernelrelease": "4.4.0-194-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-194", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb" + ] }, { "kernelversion": "229", - "kernelrelease": "4.4.0-197-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-197", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb" + ] }, { "kernelversion": "230", - "kernelrelease": "4.4.0-198-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-198", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" + ] }, { "kernelversion": "232", - "kernelrelease": "4.4.0-200-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-200", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" + ] }, { "kernelversion": "233", - "kernelrelease": "4.4.0-201-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-201", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" + ] }, { "kernelversion": "235", - "kernelrelease": "4.4.0-203-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-203", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" + ] }, { "kernelversion": "236", - "kernelrelease": "4.4.0-204-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-204", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb" + ] }, { "kernelversion": "240", - "kernelrelease": "4.4.0-208-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-208", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" + ] }, { "kernelversion": "241", - "kernelrelease": "4.4.0-209-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-209", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb" + ] }, { "kernelversion": "242", - "kernelrelease": "4.4.0-210-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-210", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + ] }, { "kernelversion": "40", - "kernelrelease": "4.4.0-22-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-22", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" + ] }, { "kernelversion": "43", - "kernelrelease": "4.4.0-24-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-24", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" + ] }, { "kernelversion": "47", - "kernelrelease": "4.4.0-28-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "4.4.0-31-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-31", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb" + ] }, { "kernelversion": "53", - "kernelrelease": "4.4.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-34", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" + ] }, { "kernelversion": "55", - "kernelrelease": "4.4.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-36", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" + ] }, { "kernelversion": "57", - "kernelrelease": "4.4.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-38", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" + ] }, { "kernelversion": "62", - "kernelrelease": "4.4.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-42", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb" + ] }, { "kernelversion": "66", - "kernelrelease": "4.4.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb" + ] }, { "kernelversion": "68", - "kernelrelease": "4.4.0-47-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-47", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" + ] }, { "kernelversion": "72", - "kernelrelease": "4.4.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" + ] }, { "kernelversion": "74", - "kernelrelease": "4.4.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-53", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb" + ] }, { "kernelversion": "78", - "kernelrelease": "4.4.0-57-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-57", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb" + ] }, { "kernelversion": "80", - "kernelrelease": "4.4.0-59-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-59", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb" + ] }, { "kernelversion": "83", - "kernelrelease": "4.4.0-62-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-62", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" + ] }, { "kernelversion": "84", - "kernelrelease": "4.4.0-63-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-63", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" + ] }, { "kernelversion": "85", - "kernelrelease": "4.4.0-64-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-64", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + ] }, { "kernelversion": "87", - "kernelrelease": "4.4.0-66-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-66", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb" + ] }, { "kernelversion": "88", - "kernelrelease": "4.4.0-67-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-67", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb" + ] }, { "kernelversion": "91", - "kernelrelease": "4.4.0-70-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-70", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" + ] }, { "kernelversion": "92", - "kernelrelease": "4.4.0-71-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-71", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" + ] }, { "kernelversion": "93", - "kernelrelease": "4.4.0-72-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-72", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb" + ] }, { "kernelversion": "96", - "kernelrelease": "4.4.0-75-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-75", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" + ] }, { "kernelversion": "99", - "kernelrelease": "4.4.0-78-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-78", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" + ] }, { "kernelversion": "100", - "kernelrelease": "4.4.0-79-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-79", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" + ] }, { "kernelversion": "104", - "kernelrelease": "4.4.0-81-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-81", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb" + ] }, { "kernelversion": "106", - "kernelrelease": "4.4.0-83-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-83", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb" + ] }, { "kernelversion": "110", - "kernelrelease": "4.4.0-87-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-87", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb" + ] }, { "kernelversion": "112", - "kernelrelease": "4.4.0-89-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-89", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + ] }, { "kernelversion": "114", - "kernelrelease": "4.4.0-91-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-91", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" + ] }, { "kernelversion": "115", - "kernelrelease": "4.4.0-92-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-92", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" + ] }, { "kernelversion": "116", - "kernelrelease": "4.4.0-93-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-93", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" + ] }, { "kernelversion": "119", - "kernelrelease": "4.4.0-96-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-96", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb" + ] }, { "kernelversion": "120", - "kernelrelease": "4.4.0-97-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-97", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb" + ] }, { "kernelversion": "121", - "kernelrelease": "4.4.0-98-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-98", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.8.0-34-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-34-hwe-edge", + "target": "ubuntu-hwe-edge", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" + ] }, { "kernelversion": "36~16.04.1", - "kernelrelease": "4.8.0-36-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-36-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb" + ] }, { "kernelversion": "42~16.04.1", - "kernelrelease": "4.8.0-39-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-39-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" + ] }, { "kernelversion": "44~16.04.1", - "kernelrelease": "4.8.0-41-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-41-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb" + ] }, { "kernelversion": "48~16.04.1", - "kernelrelease": "4.8.0-45-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-45-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb" + ] }, { "kernelversion": "49~16.04.1", - "kernelrelease": "4.8.0-46-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-46-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" + ] }, { "kernelversion": "52~16.04.1", - "kernelrelease": "4.8.0-49-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-49-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb" + ] }, { "kernelversion": "55~16.04.1", - "kernelrelease": "4.8.0-52-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-52-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" + ] }, { "kernelversion": "57~16.04.1", - "kernelrelease": "4.8.0-54-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-54-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb" + ] }, { "kernelversion": "61~16.04.1", - "kernelrelease": "4.8.0-56-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-56-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb" + ] }, { "kernelversion": "63~16.04.1", - "kernelrelease": "4.8.0-58-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-58-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" + ] }, { "kernelversion": "9", - "kernelrelease": "4.11.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-1009-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" + ] }, { "kernelversion": "11", - "kernelrelease": "4.11.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-1011-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" + ] }, { "kernelversion": "13", - "kernelrelease": "4.11.0-1013-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-1013-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" + ] }, { "kernelversion": "14", - "kernelrelease": "4.11.0-1014-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.11.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" + ] }, { "kernelversion": "12", - "kernelrelease": "4.13.0-1009-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-1009-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" + ] }, { "kernelversion": "15", - "kernelrelease": "4.13.0-1012-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.13.0-1012-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" + ] }, { "kernelversion": "9~16.04.1", - "kernelrelease": "4.15.0-1007-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1007-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" + ] }, { "kernelversion": "13~16.04.1", - "kernelrelease": "4.15.0-1011-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1011-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" + ] }, { "kernelversion": "31~16.04.1", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb" + ] }, { "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-1030-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1030-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" + ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1042-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-1042-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb" + ] }, { "kernelversion": "41~16.04.1", - "kernelrelease": "4.15.0-38-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-38-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" + ] }, { "kernelversion": "51~16.04.1", - "kernelrelease": "4.15.0-48-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.15.0-48-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" + ] }, { "kernelversion": "39", - "kernelrelease": "4.4.0-1033-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1033-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" + ] }, { "kernelversion": "46", "kernelrelease": "4.4.0-1037-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb" + ] }, { "kernelversion": "44", - "kernelrelease": "4.4.0-1038-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1038-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb" + ] }, { "kernelversion": "50", - "kernelrelease": "4.4.0-1044-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-1044-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" + ] }, { "kernelversion": "59", "kernelrelease": "4.4.0-1050-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" + ] }, { "kernelversion": "72", "kernelrelease": "4.4.0-1063-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" + ] }, { "kernelversion": "77", "kernelrelease": "4.4.0-1067-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" + ] }, { "kernelversion": "83", "kernelrelease": "4.4.0-1073-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb" + ] }, { "kernelversion": "91", "kernelrelease": "4.4.0-1081-aws", - "target": "ubuntu-aws" + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" + ] }, { "kernelversion": "146", - "kernelrelease": "4.4.0-122-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-122", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb" + ] }, { "kernelversion": "157", - "kernelrelease": "4.4.0-131-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-131", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" + ] }, { "kernelversion": "161", - "kernelrelease": "4.4.0-135-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-135", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" + ] }, { "kernelversion": "166", - "kernelrelease": "4.4.0-140-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-140", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" + ] }, { "kernelversion": "172", - "kernelrelease": "4.4.0-146-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-146", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" + ] }, { "kernelversion": "63", - "kernelrelease": "4.4.0-43-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-43", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb" + ] }, { "kernelversion": "98", - "kernelrelease": "4.4.0-77-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-77", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb" + ] }, { "kernelversion": "45~16.04.1", - "kernelrelease": "4.8.0-42-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-42-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb" + ] }, { "kernelversion": "47~16.04.1", - "kernelrelease": "4.8.0-44-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-44-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb" + ] }, { "kernelversion": "54~16.04.1", - "kernelrelease": "4.8.0-51-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-51-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" + ] }, { "kernelversion": "56~16.04.1", - "kernelrelease": "4.8.0-53-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.8.0-53-hwe", + "target": "ubuntu-hwe", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" + ] }, { "kernelversion": "37", - "kernelrelease": "4.4.0-21-generic", - "target": "ubuntu-generic" + "kernelrelease": "4.4.0-21", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb" + ] } ], "Flatcar": [ { "kernelversion": 1, "kernelrelease": "1688.5.3", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1688.5.3/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1745.3.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.3.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1745.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1745.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1745.6.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.6.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1745.7.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1745.7.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1800.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1800.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1800.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1800.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1800.6.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1800.6.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1800.7.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1800.7.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1855.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1855.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1855.4.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1855.4.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1855.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1855.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1911.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1911.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1911.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1911.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1911.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1911.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1967.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1967.3.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.3.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1967.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1967.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1967.6.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/1967.6.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2023.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2023.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2023.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2023.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2079.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2079.3.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2079.3.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2079.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2079.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2079.6.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2079.6.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2135.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2135.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2135.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2135.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2135.6.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2135.6.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2191.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2191.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2191.4.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2191.4.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2191.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2191.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2247.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2247.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2247.6.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2247.6.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2247.7.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2247.7.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2303.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2303.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2303.3.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2303.3.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2303.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2303.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2345.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2345.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2345.3.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2345.3.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2512.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2512.2.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.2.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2512.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2512.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2512.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2512.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.10.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.10.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.11.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.11.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.12.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.12.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.5.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.5.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.6.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.6.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.7.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.7.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.8.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.8.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.9.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2605.9.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2765.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2765.2.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2765.2.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2765.2.3", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.3/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2765.2.4", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.4/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2765.2.5", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.5/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2765.2.6", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.6/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.2.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.2.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.2.3", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.3/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.2.4", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.4/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.2.5", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.5/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.2.6", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.6/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2983.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2983.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2983.2.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/2983.2.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.2.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.2.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.2.3", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.3/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.2.4", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.4/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3139.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1722.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1722.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1745.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1745.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1745.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1745.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1772.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1772.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1772.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1772.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1772.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1772.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1772.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1772.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1800.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1800.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1800.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1800.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1828.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1828.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1828.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1828.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1828.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1828.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1855.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1855.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1855.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1855.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1883.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1883.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1911.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1911.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1911.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1911.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1939.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1939.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1939.2.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1939.2.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1967.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1967.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1967.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1967.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1995.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/1995.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2023.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2023.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2023.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2023.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2023.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2023.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2051.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2051.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2051.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2051.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2079.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2079.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2079.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2079.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2107.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2107.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2107.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2107.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2107.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2107.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2135.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2135.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2135.3.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2135.3.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2163.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2163.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2163.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2163.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2191.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2191.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2191.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2191.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2191.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2191.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2219.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2219.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2219.2.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2219.2.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2219.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2219.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2247.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2247.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2247.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2247.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2247.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2247.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2275.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2275.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2303.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2303.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2303.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2303.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2331.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2331.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2331.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2331.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2345.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2345.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2345.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2345.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2411.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2411.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2411.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2411.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2512.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2512.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2512.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2512.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2513.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2513.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2513.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2513.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2605.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.3.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2605.3.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.4.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2605.4.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2632.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2632.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2643.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2643.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2643.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2643.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2705.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2705.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2705.1.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2765.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2765.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2801.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2801.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2823.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2823.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2823.1.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2823.1.3", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.3/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2905.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2920.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2920.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2942.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2942.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2942.1.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2983.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2983.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2983.1.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3033.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3033.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3066.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3066.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3066.1.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3139.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3139.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3139.1.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3139.1.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3185.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3185.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1745.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1745.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1758.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1758.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1772.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1772.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1786.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1786.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1786.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1786.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1786.2.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1786.2.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1800.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1800.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1800.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1800.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1814.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1814.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1828.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1828.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1849.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1849.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1855.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1855.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1855.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1855.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1871.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1871.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1883.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1883.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1897.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1897.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1911.0.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1911.0.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1925.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1925.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1939.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1939.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1953.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1953.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1967.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1967.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1981.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1981.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "1995.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/1995.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2016.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2016.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2023.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2023.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2037.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2037.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2051.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2051.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2065.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2065.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2079.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2079.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2093.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2093.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2107.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2107.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2121.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2121.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2135.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2135.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2135.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2135.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2149.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2149.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2163.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2163.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2163.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2163.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2163.2.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2163.2.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2184.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2184.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2191.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2191.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2205.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2205.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2219.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2219.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2219.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2219.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2234.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2234.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2247.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2247.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2247.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2247.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2261.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2261.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2275.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2275.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2275.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2275.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2296.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2296.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2303.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2303.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2317.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2317.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2331.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2331.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2345.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2345.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2345.0.2", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.2/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2387.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2387.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2411.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2411.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2430.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2430.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2466.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2466.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2492.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2492.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2513.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2513.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2513.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2513.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2513.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2513.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2592.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2592.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2605.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2605.1.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2605.1.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2632.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2632.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2643.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2643.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2661.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2661.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2671.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2671.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2697.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2697.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2705.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2705.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2723.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2723.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2748.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2748.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2765.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2765.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2783.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2783.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2801.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2801.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2801.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2801.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2823.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2823.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2857.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2857.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2879.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2879.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2879.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2879.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2905.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2905.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2920.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2920.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2942.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2942.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2955.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2955.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2969.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2969.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "2983.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/2983.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3005.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3005.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3005.0.1", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3005.0.1/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3033.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3033.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3046.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3046.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3066.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3066.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3115.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3115.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3127.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3127.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3139.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3139.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3165.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3165.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3185.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3185.0.0/flatcar_developer_container.bin.bz2" + ] }, { "kernelversion": 1, "kernelrelease": "3200.0.0", - "target": "flatcar" + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3200.0.0/flatcar_developer_container.bin.bz2" + ] } ] } From d219d5d3a7c65c997ae5ab678986b8190630dd9b Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 9 May 2022 10:33:26 +0200 Subject: [PATCH 111/259] chore(CI): updated workflow file. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml index 8a6b945..0e6f87d 100644 --- a/.github/workflows/update_kernels.yaml +++ b/.github/workflows/update_kernels.yaml @@ -3,6 +3,7 @@ name: Update list of kernels weekly on: schedule: - cron: '0 0 * * 0' # every sunday at midnight + workflow_dispatch: jobs: crawler: @@ -34,5 +35,7 @@ jobs: uses: peter-evans/create-pull-request@v4 with: signoff: true + base: main + branch: ci/update_kernels commit-message: 'update(kernels): updated kernel json lists.' title: '[CI] Update kernel lists' From a6c62f95561b4ac7a33523adb99b62e2be719b1f Mon Sep 17 00:00:00 2001 From: poiana Date: Sun, 22 May 2022 01:08:43 +0000 Subject: [PATCH 112/259] update(kernels): updated kernel json lists. Signed-off-by: GitHub --- kernels/aarch64/list.json | 3940 ++++--- kernels/x86_64/list.json | 22386 ++++++++++++++++++++++-------------- 2 files changed, 16151 insertions(+), 10175 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index a972a51..79ba505 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -531,82 +531,82 @@ }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.aarch64", + "kernelrelease": "5.10.93-87.444.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.aarch64", + "kernelrelease": "5.10.75-79.358.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.aarch64", + "kernelrelease": "5.10.50-44.132.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.93-87.444.amzn2.aarch64", + "kernelrelease": "5.10.68-62.173.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.aarch64", + "kernelrelease": "5.10.29-27.128.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.aarch64", + "kernelrelease": "5.10.62-55.141.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.aarch64", + "kernelrelease": "5.10.109-104.500.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/57ef3deb0c4479e0b7fe577a241c606f849a21feedf9667f948ff489f99ae2d9/kernel-devel-5.10.109-104.500.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.aarch64", + "kernelrelease": "5.10.47-39.130.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.aarch64", + "kernelrelease": "5.10.112-108.499.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/7e8f971b1fba0eae384a4c46840311122e0d27ae6d5c29443762e690d08e87b1/kernel-devel-5.10.112-108.499.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.aarch64", + "kernelrelease": "5.10.82-83.359.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm" ] }, { @@ -614,7 +614,23 @@ "kernelrelease": "5.10.59-52.142.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.106-102.504.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.96-90.460.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" ] }, { @@ -622,151 +638,151 @@ "kernelrelease": "5.10.102-99.473.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.109-104.500.amzn2.aarch64", + "kernelrelease": "5.10.50-44.131.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/57ef3deb0c4479e0b7fe577a241c606f849a21feedf9667f948ff489f99ae2d9/kernel-devel-5.10.109-104.500.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.aarch64", + "kernelrelease": "5.10.35-31.135.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.aarch64", + "kernelrelease": "5.10.29-27.126.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.75-79.358.amzn2.aarch64", + "kernelrelease": "5.4.176-91.338.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.aarch64", + "kernelrelease": "5.4.110-54.182.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.aarch64", + "kernelrelease": "5.4.144-69.257.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.aarch64", + "kernelrelease": "5.4.181-99.354.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.aarch64", + "kernelrelease": "5.4.91-41.139.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.aarch64", + "kernelrelease": "5.4.162-86.275.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.aarch64", + "kernelrelease": "5.4.80-40.140.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.aarch64", + "kernelrelease": "5.4.129-62.227.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.aarch64", + "kernelrelease": "5.4.50-25.83.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.aarch64", + "kernelrelease": "5.4.186-102.354.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.aarch64", + "kernelrelease": "5.4.95-42.163.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.aarch64", + "kernelrelease": "5.4.190-107.353.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/44b056fde8b6a4ff48b585dd4d0b6fb0655f2883eade7bf8331d08b95f7d20f2/kernel-devel-5.4.190-107.353.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.aarch64", + "kernelrelease": "5.4.117-58.216.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.188-104.359.amzn2.aarch64", + "kernelrelease": "5.4.58-27.104.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/a479c59221509ff906755d5afcc71d323d91d3c67834c8e2e40ccc0c33d368eb/kernel-devel-5.4.188-104.359.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.aarch64", + "kernelrelease": "5.4.46-23.77.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" ] }, { @@ -774,111 +790,111 @@ "kernelrelease": "5.4.110-54.189.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.38-17.76.amzn2.aarch64", + "kernelrelease": "5.4.188-104.359.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/a479c59221509ff906755d5afcc71d323d91d3c67834c8e2e40ccc0c33d368eb/kernel-devel-5.4.188-104.359.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.aarch64", + "kernelrelease": "5.4.156-83.273.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.aarch64", + "kernelrelease": "5.4.172-90.336.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.aarch64", + "kernelrelease": "5.4.58-32.125.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.aarch64", + "kernelrelease": "5.4.68-34.125.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.aarch64", + "kernelrelease": "5.4.105-48.177.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.aarch64", + "kernelrelease": "5.4.141-67.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.aarch64", + "kernelrelease": "5.4.129-63.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.aarch64", + "kernelrelease": "5.4.46-19.75.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.aarch64", + "kernelrelease": "5.4.149-73.259.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.aarch64", + "kernelrelease": "5.4.38-17.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.aarch64", + "kernelrelease": "5.4.20-12.75.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.aarch64", + "kernelrelease": "5.4.74-36.135.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" ] } ], @@ -1119,6 +1135,14 @@ "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-devel-5.14.10-300.fc35.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.17.5-300.fc36.aarch64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/36/Everything/aarch64/os/Packages/k/kernel-devel-5.17.5-300.fc36.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "5.11.22-100.fc32.aarch64", @@ -1137,18 +1161,26 @@ }, { "kernelversion": 1, - "kernelrelease": "5.17.5-100.fc34.aarch64", + "kernelrelease": "5.17.8-100.fc34.aarch64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.17.8-100.fc34.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.17.8-200.fc35.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.17.5-100.fc34.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.17.8-200.fc35.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.5-200.fc35.aarch64", + "kernelrelease": "5.17.8-300.fc36.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.17.5-200.fc35.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.17.8-300.fc36.aarch64.rpm" ] } ], @@ -1900,6 +1932,22 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-4.ph3.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.241-1.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.241-1.ph3.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.241-2.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.241-2.ph3.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.29-1.ph3.aarch64", @@ -2164,6 +2212,14 @@ "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-4.ph4.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.10.109-2.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.109-2.ph4.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "5.10.25-1.ph4.aarch64", @@ -2467,11 +2523,11 @@ "kernelrelease": "5.17.3-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-arm64_5.17.3-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-arm64_5.17.3-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-arm64_5.17.3-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-arm64_5.17.3-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-arm64_5.17.3-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-arm64_5.17.3-1_arm64.deb" ] }, { @@ -2479,11 +2535,11 @@ "kernelrelease": "5.10.113-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb" ] }, { @@ -2501,10 +2557,10 @@ "kernelrelease": "5.15.5-2~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-arm64_5.15.5-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-arm64_5.15.5-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-arm64_5.15.5-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-arm64_5.15.5-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb" ] }, @@ -2513,11 +2569,11 @@ "kernelrelease": "5.15.15-2~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-arm64_5.15.15-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-arm64_5.15.15-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-arm64_5.15.15-2~bpo11+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-arm64_5.15.15-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-arm64_5.15.15-2~bpo11+1_arm64.deb" ] }, { @@ -2525,10 +2581,10 @@ "kernelrelease": "5.16.11-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-arm64_5.16.11-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-arm64_5.16.11-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-arm64_5.16.11-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-arm64_5.16.11-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-arm64_5.16.11-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb" ] }, @@ -2537,11 +2593,11 @@ "kernelrelease": "5.16.12-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb" ] }, { @@ -2549,11 +2605,11 @@ "kernelrelease": "5.10.84-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb" ] }, { @@ -2561,11 +2617,11 @@ "kernelrelease": "5.10.106-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb" ] }, { @@ -2573,11 +2629,11 @@ "kernelrelease": "5.10.92-1~bpo10+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-arm64_5.10.92-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-arm64_5.10.92-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-arm64_5.10.92-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-arm64_5.10.92-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-arm64_5.10.92-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-arm64_5.10.92-1~bpo10+1_arm64.deb" ] }, { @@ -2586,10 +2642,10 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb" ] }, { @@ -2597,11 +2653,11 @@ "kernelrelease": "5.10.70-1~bpo10+1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-arm64_5.10.70-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-arm64_5.10.70-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-arm64_5.10.70-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-arm64_5.10.70-1~bpo10+1_arm64.deb" ] }, { @@ -2610,9 +2666,9 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb" ] }, { @@ -2620,10 +2676,22 @@ "kernelrelease": "4.19.235-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.17.6-1+b1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-rt-arm64_5.17.6-1+b1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-arm64_5.17.6-1+b1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common_5.17.6-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common-rt_5.17.6-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-cloud-arm64_5.17.6-1+b1_arm64.deb" ] }, { @@ -2631,9 +2699,9 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb" ] }, @@ -2651,10 +2719,10 @@ "kernelrelease": "5.10.103-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb" ] }, @@ -2663,9 +2731,9 @@ "kernelrelease": "4.19.232-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb" ] }, @@ -2684,9 +2752,9 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb" ] } ], @@ -2696,8 +2764,8 @@ "kernelrelease": "4.15.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb" ] }, { @@ -2741,8 +2809,8 @@ "kernelrelease": "4.15.0-1120-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb" ] }, { @@ -2750,8 +2818,8 @@ "kernelrelease": "4.15.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" ] }, { @@ -2759,8 +2827,8 @@ "kernelrelease": "4.15.0-1121-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb" ] }, { @@ -2768,8 +2836,8 @@ "kernelrelease": "4.15.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb" ] }, { @@ -2786,8 +2854,8 @@ "kernelrelease": "4.15.0-1124-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb" ] }, { @@ -2799,22 +2867,31 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb" ] }, + { + "kernelversion": "134", + "kernelrelease": "4.15.0-1125-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb" + ] + }, { "kernelversion": "134", "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" ] }, { - "kernelversion": "134", - "kernelrelease": "4.15.0-1125-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" ] }, { @@ -2822,26 +2899,44 @@ "kernelrelease": "4.15.0-1127-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb" ] }, { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-aws", + "kernelversion": "137", + "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb" ] }, { - "kernelversion": "137", - "kernelrelease": "4.15.0-1128-aws", + "kernelversion": "138", + "kernelrelease": "4.15.0-1129-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb" + ] + }, + { + "kernelversion": "138", + "kernelrelease": "4.15.0-1129-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" + ] + }, + { + "kernelversion": "139", + "kernelrelease": "4.15.0-1130-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb" ] }, { @@ -2903,8 +2998,8 @@ "kernelrelease": "4.15.0-174", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb" ] }, { @@ -2912,8 +3007,8 @@ "kernelrelease": "4.15.0-176", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb" ] }, { @@ -2925,6 +3020,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb" ] }, + { + "kernelversion": "188", + "kernelrelease": "4.15.0-179", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb" + ] + }, + { + "kernelversion": "189", + "kernelrelease": "4.15.0-180", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb" + ] + }, { "kernelversion": "31", "kernelrelease": "5.0.0-1028-aws-5.0", @@ -2966,8 +3079,8 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb" ] }, { @@ -2975,8 +3088,8 @@ "kernelrelease": "5.4.0-1062-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" ] }, { @@ -2984,8 +3097,8 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { @@ -3002,8 +3115,8 @@ "kernelrelease": "5.4.0-1066-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" ] }, { @@ -3011,8 +3124,8 @@ "kernelrelease": "5.4.0-1067-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" ] }, { @@ -3020,8 +3133,8 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" ] }, { @@ -3029,8 +3142,8 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" ] }, { @@ -3042,6 +3155,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" ] }, + { + "kernelversion": "76~18.04.3", + "kernelrelease": "5.4.0-1071-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" + ] + }, { "kernelversion": "77~18.04.1", "kernelrelease": "5.4.0-1071-oracle-5.4", @@ -3052,12 +3174,39 @@ ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1072-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" ] }, { @@ -3069,13 +3218,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb" ] }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb" + ] + }, { "kernelversion": "79~18.04.1", "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" ] }, { @@ -3087,17 +3245,35 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb" ] }, + { + "kernelversion": "82~18.04.1", + "kernelrelease": "5.4.0-1079-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" + ] + }, { "kernelversion": "122~18.04.1", "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" ] }, { - "kernelversion": "124~18.04.1", + "kernelversion": "83~18.04.2", + "kernelrelease": "5.4.0-1080-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" + ] + }, + { + "kernelversion": "124~18.04.1", "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ @@ -3105,6 +3281,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" ] }, + { + "kernelversion": "126~18.04.1", + "kernelrelease": "5.4.0-112-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" + ] + }, + { + "kernelversion": "127~18.04.1", + "kernelrelease": "5.4.0-113-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb" + ] + }, { "kernelversion": "102~18.04.1", "kernelrelease": "5.4.0-91-hwe-5.4", @@ -3119,8 +3313,8 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb" ] }, { @@ -3137,8 +3331,8 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" ] }, { @@ -3146,8 +3340,8 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb" ] }, { @@ -3155,8 +3349,8 @@ "kernelrelease": "4.15.0-1030-raspi2", "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb" ] }, { @@ -3173,8 +3367,8 @@ "kernelrelease": "4.15.0-1031-raspi2", "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" ] }, { @@ -3182,8 +3376,8 @@ "kernelrelease": "4.15.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" ] }, { @@ -3191,8 +3385,8 @@ "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { @@ -3200,8 +3394,8 @@ "kernelrelease": "4.15.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" ] }, { @@ -3209,8 +3403,8 @@ "kernelrelease": "4.15.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" ] }, { @@ -3236,8 +3430,8 @@ "kernelrelease": "4.15.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" ] }, { @@ -3245,8 +3439,8 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb" ] }, { @@ -3272,8 +3466,8 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" ] }, { @@ -3290,8 +3484,8 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" ] }, { @@ -3299,8 +3493,8 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { @@ -3308,8 +3502,8 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" ] }, { @@ -3335,8 +3529,8 @@ "kernelrelease": "4.15.0-1054-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb" ] }, { @@ -3344,8 +3538,8 @@ "kernelrelease": "4.15.0-1055-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb" ] }, { @@ -3353,8 +3547,8 @@ "kernelrelease": "4.15.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" ] }, { @@ -3362,8 +3556,8 @@ "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" ] }, { @@ -3371,8 +3565,8 @@ "kernelrelease": "4.15.0-1057-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" ] }, { @@ -3380,8 +3574,8 @@ "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" ] }, { @@ -3389,8 +3583,8 @@ "kernelrelease": "4.15.0-1058-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb" ] }, { @@ -3398,8 +3592,8 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" ] }, { @@ -3416,8 +3610,8 @@ "kernelrelease": "4.15.0-1060-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb" ] }, { @@ -3443,8 +3637,8 @@ "kernelrelease": "4.15.0-1064-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb" ] }, { @@ -3461,8 +3655,8 @@ "kernelrelease": "4.15.0-1065-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb" ] }, { @@ -3470,8 +3664,8 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { @@ -3479,8 +3673,8 @@ "kernelrelease": "4.15.0-1066-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb" ] }, { @@ -3488,8 +3682,8 @@ "kernelrelease": "4.15.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb" ] }, { @@ -3497,8 +3691,8 @@ "kernelrelease": "4.15.0-1067-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb" ] }, { @@ -3506,8 +3700,8 @@ "kernelrelease": "4.15.0-1069-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb" ] }, { @@ -3533,8 +3727,8 @@ "kernelrelease": "4.15.0-1072-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb" ] }, { @@ -3560,8 +3754,8 @@ "kernelrelease": "4.15.0-1076-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" ] }, { @@ -3587,8 +3781,8 @@ "kernelrelease": "4.15.0-1077-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb" ] }, { @@ -3596,8 +3790,8 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" ] }, { @@ -3623,8 +3817,8 @@ "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" ] }, { @@ -3632,8 +3826,8 @@ "kernelrelease": "4.15.0-1080-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb" ] }, { @@ -3650,8 +3844,8 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" ] }, { @@ -3668,8 +3862,8 @@ "kernelrelease": "4.15.0-1083-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb" ] }, { @@ -3677,8 +3871,8 @@ "kernelrelease": "4.15.0-1084-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb" ] }, { @@ -3695,8 +3889,8 @@ "kernelrelease": "4.15.0-1086-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb" ] }, { @@ -3704,8 +3898,8 @@ "kernelrelease": "4.15.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb" ] }, { @@ -3722,8 +3916,8 @@ "kernelrelease": "4.15.0-1089-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb" ] }, { @@ -3740,8 +3934,8 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb" ] }, { @@ -3749,8 +3943,8 @@ "kernelrelease": "4.15.0-1090-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb" ] }, { @@ -3767,8 +3961,8 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb" ] }, { @@ -3794,8 +3988,8 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb" ] }, { @@ -3803,8 +3997,8 @@ "kernelrelease": "4.15.0-1094-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb" ] }, { @@ -3812,8 +4006,8 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb" ] }, { @@ -3821,8 +4015,8 @@ "kernelrelease": "4.15.0-1095-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb" ] }, { @@ -3839,8 +4033,8 @@ "kernelrelease": "4.15.0-1096-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb" ] }, { @@ -3848,8 +4042,8 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb" ] }, { @@ -3857,8 +4051,8 @@ "kernelrelease": "4.15.0-1097-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb" ] }, { @@ -3866,8 +4060,8 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" ] }, { @@ -3875,8 +4069,8 @@ "kernelrelease": "4.15.0-1098-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb" ] }, { @@ -3929,8 +4123,8 @@ "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb" ] }, { @@ -3947,8 +4141,8 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb" ] }, { @@ -3965,8 +4159,8 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb" ] }, { @@ -3983,8 +4177,8 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" ] }, { @@ -4001,8 +4195,8 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" ] }, { @@ -4010,8 +4204,8 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb" ] }, { @@ -4037,8 +4231,8 @@ "kernelrelease": "4.15.0-1111-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb" ] }, { @@ -4046,8 +4240,8 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" ] }, { @@ -4073,8 +4267,8 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" ] }, { @@ -4082,8 +4276,8 @@ "kernelrelease": "4.15.0-1114-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb" ] }, { @@ -4109,8 +4303,8 @@ "kernelrelease": "4.15.0-1116-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb" ] }, { @@ -4118,8 +4312,8 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" ] }, { @@ -4160,20 +4354,20 @@ }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1126-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb" ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" ] }, { @@ -4181,8 +4375,8 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" ] }, { @@ -4190,8 +4384,8 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb" ] }, { @@ -4199,8 +4393,8 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" ] }, { @@ -4208,8 +4402,8 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" ] }, { @@ -4217,8 +4411,8 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" ] }, { @@ -4244,8 +4438,8 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb" ] }, { @@ -4289,8 +4483,8 @@ "kernelrelease": "4.15.0-137", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" ] }, { @@ -4298,8 +4492,8 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb" ] }, { @@ -4316,8 +4510,8 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" ] }, { @@ -4325,8 +4519,8 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb" ] }, { @@ -4334,8 +4528,8 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb" ] }, { @@ -4343,8 +4537,8 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" ] }, { @@ -4352,8 +4546,8 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb" ] }, { @@ -4361,8 +4555,8 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb" ] }, { @@ -4370,8 +4564,8 @@ "kernelrelease": "4.15.0-153", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" ] }, { @@ -4388,8 +4582,8 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb" ] }, { @@ -4406,8 +4600,8 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb" ] }, { @@ -4415,8 +4609,8 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" ] }, { @@ -4424,8 +4618,8 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" ] }, { @@ -4433,8 +4627,8 @@ "kernelrelease": "4.15.0-163", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_arm64.deb" ] }, { @@ -4442,8 +4636,8 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb" ] }, { @@ -4469,9 +4663,9 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" ] }, { @@ -4479,8 +4673,8 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" ] }, @@ -4489,9 +4683,9 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb" ] }, { @@ -4499,9 +4693,9 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb" ] }, { @@ -4509,8 +4703,8 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" ] }, @@ -4519,9 +4713,9 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" ] }, { @@ -4530,8 +4724,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb" ] }, { @@ -4539,9 +4733,9 @@ "kernelrelease": "4.15.0-34", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb" ] }, { @@ -4549,8 +4743,8 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb" ] }, @@ -4569,9 +4763,9 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb" ] }, { @@ -4589,8 +4783,8 @@ "kernelrelease": "4.15.0-44", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb" ] }, @@ -4600,8 +4794,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb" ] }, { @@ -4609,9 +4803,9 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb" ] }, { @@ -4619,9 +4813,9 @@ "kernelrelease": "4.15.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb" ] }, { @@ -4638,8 +4832,8 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb" ] }, { @@ -4656,8 +4850,8 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb" ] }, { @@ -4683,8 +4877,8 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" ] }, { @@ -4701,8 +4895,8 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb" ] }, { @@ -4719,8 +4913,8 @@ "kernelrelease": "4.15.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_arm64.deb" ] }, { @@ -4746,8 +4940,8 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb" ] }, { @@ -4764,8 +4958,8 @@ "kernelrelease": "4.15.0-76", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb" ] }, { @@ -4782,8 +4976,8 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb" ] }, { @@ -4810,8 +5004,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb" ] }, { @@ -4829,9 +5023,9 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" ] }, { @@ -4849,8 +5043,8 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb" ] }, @@ -4859,9 +5053,9 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb" ] }, { @@ -4869,9 +5063,9 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, { @@ -4879,9 +5073,9 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" ] }, { @@ -4889,9 +5083,9 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb" ] }, { @@ -4899,9 +5093,9 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" ] }, { @@ -4909,8 +5103,8 @@ "kernelrelease": "5.0.0-1021-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb" ] }, { @@ -4945,8 +5139,8 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" ] }, { @@ -5008,8 +5202,8 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" ] }, { @@ -5035,8 +5229,8 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb" ] }, { @@ -5080,8 +5274,8 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb" ] }, { @@ -5116,8 +5310,8 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb" ] }, { @@ -5134,8 +5328,8 @@ "kernelrelease": "5.3.0-1017-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" ] }, { @@ -5161,8 +5355,8 @@ "kernelrelease": "5.3.0-1028-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" ] }, { @@ -5170,8 +5364,8 @@ "kernelrelease": "5.3.0-1030-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -5179,8 +5373,8 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" ] }, { @@ -5197,8 +5391,8 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" ] }, { @@ -5233,8 +5427,8 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" ] }, { @@ -5242,8 +5436,8 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" ] }, { @@ -5251,8 +5445,8 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb" ] }, { @@ -5260,8 +5454,8 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" ] }, { @@ -5278,8 +5472,8 @@ "kernelrelease": "5.3.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb" ] }, { @@ -5305,8 +5499,8 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" ] }, { @@ -5314,8 +5508,8 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb" ] }, { @@ -5323,8 +5517,8 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb" ] }, { @@ -5332,8 +5526,8 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" ] }, { @@ -5341,8 +5535,8 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb" ] }, { @@ -5350,8 +5544,8 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" ] }, { @@ -5359,8 +5553,8 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb" ] }, { @@ -5395,8 +5589,8 @@ "kernelrelease": "5.4.0-1028-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { @@ -5413,8 +5607,8 @@ "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb" ] }, { @@ -5422,8 +5616,8 @@ "kernelrelease": "5.4.0-1034-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -5476,8 +5670,8 @@ "kernelrelease": "5.4.0-1041-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, { @@ -5485,8 +5679,8 @@ "kernelrelease": "5.4.0-1043-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, { @@ -5503,8 +5697,8 @@ "kernelrelease": "5.4.0-1046-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" ] }, { @@ -5521,8 +5715,8 @@ "kernelrelease": "5.4.0-1048-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" ] }, { @@ -5530,8 +5724,8 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb" ] }, { @@ -5575,8 +5769,8 @@ "kernelrelease": "5.4.0-1054-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" ] }, { @@ -5629,8 +5823,8 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb" ] }, { @@ -5647,8 +5841,8 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" ] }, { @@ -5665,8 +5859,8 @@ "kernelrelease": "5.4.0-1059-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb" ] }, { @@ -5674,8 +5868,8 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" ] }, { @@ -5710,8 +5904,8 @@ "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" ] }, { @@ -5719,8 +5913,8 @@ "kernelrelease": "5.4.0-1065-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb" ] }, { @@ -5746,8 +5940,8 @@ "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb" ] }, { @@ -5764,8 +5958,8 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" ] }, { @@ -5777,24 +5971,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb" ] }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" - ] - }, { "kernelversion": "80~18.04.1", "kernelrelease": "5.4.0-1077-azure-5.4", @@ -5818,8 +5994,8 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb" ] }, { @@ -5827,8 +6003,8 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb" ] }, { @@ -5854,8 +6030,8 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb" ] }, { @@ -5881,8 +6057,8 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" ] }, { @@ -5890,8 +6066,8 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb" ] }, { @@ -5917,8 +6093,8 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb" ] }, { @@ -5953,8 +6129,8 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" ] }, { @@ -5962,8 +6138,8 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" ] }, { @@ -5980,8 +6156,8 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" ] }, { @@ -5989,8 +6165,8 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb" ] }, { @@ -5998,8 +6174,8 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" ] }, { @@ -6007,8 +6183,8 @@ "kernelrelease": "5.4.0-74-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb" ] }, { @@ -6034,8 +6210,8 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb" ] }, { @@ -6043,8 +6219,8 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" ] }, { @@ -6061,8 +6237,8 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" ] }, { @@ -6070,8 +6246,8 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb" ] }, { @@ -6088,8 +6264,8 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" ] }, { @@ -6097,8 +6273,8 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" ] }, { @@ -6142,9 +6318,9 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb" ] }, { @@ -6152,9 +6328,9 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb" ] }, { @@ -6163,8 +6339,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb" ] }, { @@ -6181,8 +6357,8 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" ] }, { @@ -6190,8 +6366,8 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb" ] }, { @@ -6199,8 +6375,8 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" ] }, { @@ -6208,8 +6384,8 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" ] }, { @@ -6217,8 +6393,8 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" ] }, { @@ -6226,8 +6402,8 @@ "kernelrelease": "5.0.0-58-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" ] }, { @@ -6244,8 +6420,8 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { @@ -6253,8 +6429,8 @@ "kernelrelease": "5.4.0-1018-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" ] }, { @@ -6289,18 +6465,27 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb" + ] + }, { "kernelversion": "7", "kernelrelease": "5.15.0-1005-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { @@ -6308,8 +6493,17 @@ "kernelrelease": "5.15.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb" ] }, { @@ -6336,9 +6530,9 @@ "kernelrelease": "5.15.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb" ] }, { @@ -6365,8 +6559,8 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" ] }, { @@ -6374,8 +6568,8 @@ "kernelrelease": "5.15.0-1004-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -6383,8 +6577,8 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -6392,8 +6586,8 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_arm64.deb" ] }, { @@ -6401,8 +6595,8 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb" ] }, @@ -6411,8 +6605,8 @@ "kernelrelease": "5.11.0-1022-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -6420,17 +6614,8 @@ "kernelrelease": "5.11.0-1022-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb" ] }, { @@ -6438,17 +6623,17 @@ "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb" ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws-5.11", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb" ] }, { @@ -6460,13 +6645,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb" ] }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.11.0-1029-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + ] + }, { "kernelversion": "32~20.04.2", "kernelrelease": "5.11.0-1029-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb" ] }, { @@ -6474,8 +6668,8 @@ "kernelrelease": "5.11.0-40-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb" ] }, @@ -6484,9 +6678,9 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb" ] }, { @@ -6494,9 +6688,9 @@ "kernelrelease": "5.11.0-42-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb" ] }, { @@ -6504,9 +6698,9 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb" ] }, { @@ -6515,8 +6709,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb" ] }, { @@ -6524,9 +6718,9 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb" ] }, { @@ -6534,8 +6728,8 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" ] }, { @@ -6552,26 +6746,26 @@ "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb" ] }, { @@ -6610,6 +6804,33 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb" ] }, + { + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1024-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.13.0-1025-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" + ] + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1025-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb" + ] + }, { "kernelversion": "31~20.04.2", "kernelrelease": "5.13.0-1026-oracle-5.13", @@ -6633,9 +6854,9 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb" ] }, { @@ -6654,8 +6875,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" ] }, { @@ -6664,8 +6885,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" ] }, { @@ -6673,9 +6894,9 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb" ] }, { @@ -6683,8 +6904,8 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" ] }, @@ -6693,9 +6914,9 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb" ] }, { @@ -6703,9 +6924,9 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb" ] }, { @@ -6714,8 +6935,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb" ] }, { @@ -6723,9 +6944,9 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" ] }, { @@ -6733,9 +6954,29 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "48~20.04.1", + "kernelrelease": "5.13.0-43-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "49~20.04.1", + "kernelrelease": "5.13.0-44-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb" ] }, { @@ -6744,8 +6985,8 @@ "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb" ] }, { @@ -6753,9 +6994,9 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" ] }, { @@ -6763,9 +7004,29 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "33~20.04.1", + "kernelrelease": "5.15.0-32-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb" ] }, { @@ -6809,8 +7070,8 @@ "kernelrelease": "5.4.0-1027-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1027_5.4.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1027_5.4.0-1027.30_all.deb" ] }, { @@ -6818,8 +7079,8 @@ "kernelrelease": "5.4.0-1028-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb" ] }, { @@ -6827,8 +7088,8 @@ "kernelrelease": "5.4.0-1028-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb" ] }, { @@ -6836,26 +7097,26 @@ "kernelrelease": "5.4.0-1031-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1031_5.4.0-1031.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1031_5.4.0-1031.34_all.deb" ] }, { "kernelversion": "36", - "kernelrelease": "5.4.0-1033-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1033-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "5.4.0-1033-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1033-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb" ] }, { @@ -6863,8 +7124,8 @@ "kernelrelease": "5.4.0-1034-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1034-bluefield_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1034_5.4.0-1034.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1034_5.4.0-1034.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1034-bluefield_5.4.0-1034.37_arm64.deb" ] }, { @@ -6876,15 +7137,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" ] }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb" - ] - }, { "kernelversion": "38", "kernelrelease": "5.4.0-1035-bluefield", @@ -6895,12 +7147,12 @@ ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-oracle", - "target": "ubuntu-oracle", + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" ] }, { @@ -6912,6 +7164,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb" ] }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" + ] + }, { "kernelversion": "119", "kernelrelease": "5.4.0-105", @@ -6926,8 +7187,8 @@ "kernelrelease": "5.4.0-1051-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb" ] }, { @@ -6935,8 +7196,8 @@ "kernelrelease": "5.4.0-1052-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb" ] }, { @@ -6944,8 +7205,8 @@ "kernelrelease": "5.4.0-1053-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb" ] }, { @@ -6989,8 +7250,17 @@ "kernelrelease": "5.4.0-1060-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb" + ] + }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1061-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1061_5.4.0-1061.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1061-raspi_5.4.0-1061.69_arm64.deb" ] }, { @@ -7002,6 +7272,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, + { + "kernelversion": "70", + "kernelrelease": "5.4.0-1062-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb" + ] + }, { "kernelversion": "67", "kernelrelease": "5.4.0-1064-aws", @@ -7016,8 +7295,8 @@ "kernelrelease": "5.4.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" ] }, { @@ -7025,8 +7304,8 @@ "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" ] }, { @@ -7052,8 +7331,8 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" ] }, { @@ -7079,26 +7358,26 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, { @@ -7106,8 +7385,8 @@ "kernelrelease": "5.4.0-1071-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" ] }, { @@ -7119,13 +7398,49 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" ] }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + ] + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1072-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb" + ] + }, { "kernelversion": "78", "kernelrelease": "5.4.0-1073-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" ] }, { @@ -7137,13 +7452,49 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" ] }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" + ] + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" + ] + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb" + ] + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" + ] + }, { "kernelversion": "78", "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" ] }, { @@ -7151,8 +7502,8 @@ "kernelrelease": "5.4.0-1076-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" ] }, { @@ -7173,6 +7524,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_arm64.deb" ] }, + { + "kernelversion": "83", + "kernelrelease": "5.4.0-1080-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb" + ] + }, { "kernelversion": "123", "kernelrelease": "5.4.0-109", @@ -7187,8 +7547,26 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" + ] + }, + { + "kernelversion": "126", + "kernelrelease": "5.4.0-112", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_arm64.deb" + ] + }, + { + "kernelversion": "127", + "kernelrelease": "5.4.0-113", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" ] }, { @@ -7205,8 +7583,8 @@ "kernelrelease": "5.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" ] }, { @@ -7214,8 +7592,8 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" ] }, { @@ -7224,8 +7602,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb" ] }, { @@ -7233,26 +7611,26 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb" ] }, { "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1016-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1016-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { @@ -7287,8 +7665,8 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -7305,8 +7683,8 @@ "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" ] }, { @@ -7323,8 +7701,17 @@ "kernelrelease": "5.11.0-1021-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -7341,17 +7728,8 @@ "kernelrelease": "5.11.0-1023-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { @@ -7359,17 +7737,8 @@ "kernelrelease": "5.11.0-1025-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -7377,17 +7746,17 @@ "kernelrelease": "5.11.0-1025-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -7395,8 +7764,8 @@ "kernelrelease": "5.11.0-1027-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -7408,13 +7777,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb" ] }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" + ] + }, { "kernelversion": "31~20.04.2", "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb" ] }, { @@ -7432,9 +7810,9 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb" ] }, { @@ -7442,9 +7820,9 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb" ] }, { @@ -7453,8 +7831,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" ] }, { @@ -7462,9 +7840,9 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb" ] }, { @@ -7472,9 +7850,9 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" ] }, { @@ -7483,8 +7861,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" ] }, { @@ -7492,9 +7870,9 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb" ] }, { @@ -7502,9 +7880,9 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb" ] }, { @@ -7521,8 +7899,8 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb" ] }, { @@ -7548,8 +7926,8 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" ] }, { @@ -7557,8 +7935,8 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" ] }, { @@ -7575,8 +7953,8 @@ "kernelrelease": "5.13.0-1017-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { @@ -7584,8 +7962,8 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" ] }, { @@ -7602,8 +7980,8 @@ "kernelrelease": "5.13.0-1021-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" ] }, { @@ -7611,8 +7989,8 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb" ] }, { @@ -7638,8 +8016,8 @@ "kernelrelease": "5.13.0-1027-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" ] }, { @@ -7658,8 +8036,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" ] }, { @@ -7667,9 +8045,9 @@ "kernelrelease": "5.13.0-27-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb" ] }, { @@ -7678,8 +8056,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb" ] }, { @@ -7687,27 +8065,27 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1011-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" ] }, { @@ -7724,8 +8102,8 @@ "kernelrelease": "5.4.0-1012-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb" ] }, { @@ -7733,8 +8111,8 @@ "kernelrelease": "5.4.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb" ] }, { @@ -7778,8 +8156,8 @@ "kernelrelease": "5.4.0-1016-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb" ] }, { @@ -7787,8 +8165,8 @@ "kernelrelease": "5.4.0-1016-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb" ] }, { @@ -7796,8 +8174,8 @@ "kernelrelease": "5.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb" ] }, { @@ -7814,8 +8192,8 @@ "kernelrelease": "5.4.0-1018-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb" ] }, { @@ -7832,8 +8210,8 @@ "kernelrelease": "5.4.0-1019-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb" ] }, { @@ -7895,8 +8273,8 @@ "kernelrelease": "5.4.0-1022-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb" ] }, { @@ -7904,8 +8282,8 @@ "kernelrelease": "5.4.0-1022-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb" ] }, { @@ -7913,8 +8291,8 @@ "kernelrelease": "5.4.0-1023-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb" ] }, { @@ -7940,8 +8318,8 @@ "kernelrelease": "5.4.0-1025-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" ] }, { @@ -7949,8 +8327,8 @@ "kernelrelease": "5.4.0-1025-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb" ] }, { @@ -7967,8 +8345,8 @@ "kernelrelease": "5.4.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb" ] }, { @@ -7985,8 +8363,8 @@ "kernelrelease": "5.4.0-1030-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb" ] }, { @@ -7994,8 +8372,8 @@ "kernelrelease": "5.4.0-1030-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb" ] }, { @@ -8009,20 +8387,20 @@ }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1032-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1032-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" ] }, { @@ -8030,8 +8408,8 @@ "kernelrelease": "5.4.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb" ] }, { @@ -8039,8 +8417,8 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" ] }, { @@ -8048,8 +8426,8 @@ "kernelrelease": "5.4.0-1036-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" ] }, { @@ -8075,8 +8453,8 @@ "kernelrelease": "5.4.0-1038-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb" ] }, { @@ -8084,8 +8462,8 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb" ] }, { @@ -8093,8 +8471,8 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb" ] }, { @@ -8120,8 +8498,8 @@ "kernelrelease": "5.4.0-1042-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb" ] }, { @@ -8138,8 +8516,8 @@ "kernelrelease": "5.4.0-1043-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb" ] }, { @@ -8147,8 +8525,8 @@ "kernelrelease": "5.4.0-1044-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb" ] }, { @@ -8156,8 +8534,8 @@ "kernelrelease": "5.4.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, { @@ -8192,8 +8570,8 @@ "kernelrelease": "5.4.0-1047-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb" ] }, { @@ -8219,8 +8597,8 @@ "kernelrelease": "5.4.0-1048-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb" ] }, { @@ -8246,8 +8624,8 @@ "kernelrelease": "5.4.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb" ] }, { @@ -8318,8 +8696,8 @@ "kernelrelease": "5.4.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" ] }, { @@ -8345,8 +8723,8 @@ "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb" ] }, { @@ -8363,8 +8741,8 @@ "kernelrelease": "5.4.0-1059-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb" ] }, { @@ -8381,8 +8759,8 @@ "kernelrelease": "5.4.0-1059-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb" ] }, { @@ -8390,8 +8768,8 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb" ] }, { @@ -8399,8 +8777,8 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -8408,8 +8786,8 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb" ] }, { @@ -8426,8 +8804,8 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" ] }, { @@ -8435,8 +8813,8 @@ "kernelrelease": "5.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb" ] }, { @@ -8453,8 +8831,8 @@ "kernelrelease": "5.4.0-1068-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb" ] }, { @@ -8462,26 +8840,8 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb" ] }, { @@ -8516,8 +8876,8 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb" ] }, { @@ -8525,8 +8885,8 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" ] }, { @@ -8570,8 +8930,8 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb" ] }, { @@ -8579,8 +8939,8 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" ] }, { @@ -8597,8 +8957,8 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb" ] }, { @@ -8606,8 +8966,8 @@ "kernelrelease": "5.4.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb" ] }, { @@ -8705,8 +9065,8 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb" ] }, { @@ -8714,8 +9074,8 @@ "kernelrelease": "5.4.0-73", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb" ] }, { @@ -8732,8 +9092,8 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb" ] }, { @@ -8750,8 +9110,8 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb" ] }, { @@ -8759,8 +9119,8 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb" ] }, { @@ -8777,8 +9137,8 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" ] }, { @@ -8786,8 +9146,8 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb" ] }, { @@ -8795,8 +9155,8 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" ] }, { @@ -8813,8 +9173,8 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" ] }, { @@ -8822,8 +9182,8 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb" ] }, { @@ -8840,8 +9200,8 @@ "kernelrelease": "5.8.0-1031-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, { @@ -8849,8 +9209,8 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb" ] }, { @@ -8885,8 +9245,8 @@ "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb" ] }, { @@ -8894,8 +9254,8 @@ "kernelrelease": "5.8.0-1041-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" ] }, { @@ -8912,8 +9272,8 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" ] }, @@ -8932,9 +9292,9 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb" ] }, { @@ -8952,9 +9312,9 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb" ] }, { @@ -8962,9 +9322,9 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" ] }, { @@ -8972,9 +9332,9 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb" ] }, { @@ -8982,9 +9342,9 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb" ] }, { @@ -8992,9 +9352,9 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" ] }, { @@ -9002,8 +9362,8 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb" ] }, @@ -9033,8 +9393,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb" ] }, { @@ -9042,9 +9402,9 @@ "kernelrelease": "5.8.0-59-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb" ] }, { @@ -9053,8 +9413,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb" ] }, { @@ -9071,8 +9431,8 @@ "kernelrelease": "5.4.0-1007-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb" ] }, { @@ -9098,8 +9458,8 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" ] }, { @@ -9107,8 +9467,8 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" ] }, { @@ -9126,8 +9486,8 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" ] }, @@ -9137,8 +9497,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" ] }, { @@ -9146,8 +9506,8 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb" ] }, @@ -9157,8 +9517,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" ] }, { @@ -9175,8 +9535,8 @@ "kernelrelease": "5.4.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb" ] }, { @@ -9215,15 +9575,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, - { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb" - ] - }, { "kernelversion": "30", "kernelrelease": "5.11.0-1027-azure", @@ -9235,11 +9586,11 @@ }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1027-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" ] }, { @@ -9251,14 +9602,23 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb" ] }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + ] + }, { "kernelversion": "55", "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb" ] }, { @@ -9266,8 +9626,8 @@ "kernelrelease": "5.11.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb" ] }, { @@ -9284,8 +9644,8 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb" ] }, @@ -9294,8 +9654,8 @@ "kernelrelease": "5.13.0-1007-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, { @@ -9303,8 +9663,8 @@ "kernelrelease": "5.13.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" ] }, { @@ -9312,8 +9672,8 @@ "kernelrelease": "5.13.0-1010-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb" ] }, { @@ -9321,8 +9681,8 @@ "kernelrelease": "5.13.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, { @@ -9339,8 +9699,8 @@ "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" ] }, { @@ -9357,26 +9717,26 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1017-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb" ] }, { @@ -9384,8 +9744,8 @@ "kernelrelease": "5.13.0-1017-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" ] }, { @@ -9393,8 +9753,8 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb" ] }, { @@ -9402,8 +9762,8 @@ "kernelrelease": "5.13.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, { @@ -9420,17 +9780,8 @@ "kernelrelease": "5.13.0-1019-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb" ] }, { @@ -9447,17 +9798,17 @@ "kernelrelease": "5.13.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1021-aws", - "target": "ubuntu-aws", + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb" ] }, { @@ -9469,6 +9820,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb" ] }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-1021-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" + ] + }, { "kernelversion": "27", "kernelrelease": "5.13.0-1022-oracle", @@ -9480,38 +9840,38 @@ }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1022-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1022-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1023-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1023-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1023-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1023-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb" ] }, { @@ -9519,8 +9879,8 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" ] }, { @@ -9528,8 +9888,35 @@ "kernelrelease": "5.13.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" + ] + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1024-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" + ] + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1024-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1024-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_arm64.deb" ] }, { @@ -9537,8 +9924,35 @@ "kernelrelease": "5.13.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb" + ] + }, + { + "kernelversion": "27", + "kernelrelease": "5.13.0-1025-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" + ] + }, + { + "kernelversion": "27", + "kernelrelease": "5.13.0-1025-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-1025-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_arm64.deb" ] }, { @@ -9555,8 +9969,17 @@ "kernelrelease": "5.13.0-1026-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1026_5.13.0-1026.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1026-raspi_5.13.0-1026.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1026-raspi_5.13.0-1026.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1026_5.13.0-1026.28_arm64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-1027-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb" ] }, { @@ -9568,6 +9991,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1028-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.13.0-1029-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" + ] + }, { "kernelversion": "31", "kernelrelease": "5.13.0-28", @@ -9583,9 +10024,9 @@ "kernelrelease": "5.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb" ] }, { @@ -9593,8 +10034,8 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" ] }, @@ -9603,9 +10044,9 @@ "kernelrelease": "5.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" ] }, { @@ -9614,8 +10055,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb" ] }, { @@ -9623,8 +10064,8 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb" ] }, @@ -9634,8 +10075,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb" ] }, { @@ -9643,9 +10084,9 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb" ] }, { @@ -9653,9 +10094,39 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" + ] + }, + { + "kernelversion": "47", + "kernelrelease": "5.13.0-42", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic-64k_5.13.0-42.47_arm64.deb" + ] + }, + { + "kernelversion": "48", + "kernelrelease": "5.13.0-43", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.13.0-44", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb" ] }, { @@ -9663,8 +10134,8 @@ "kernelrelease": "5.13.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb" ] }, { @@ -9708,8 +10179,8 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" ] }, { @@ -9723,20 +10194,20 @@ }, { "kernelversion": "13", - "kernelrelease": "5.13.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" ] }, { "kernelversion": "13", - "kernelrelease": "5.13.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1011-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" ] }, { @@ -9753,8 +10224,8 @@ "kernelrelease": "5.13.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb" ] }, { @@ -9789,8 +10260,8 @@ "kernelrelease": "5.13.0-1015-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb" ] }, { @@ -9798,8 +10269,8 @@ "kernelrelease": "5.13.0-1016-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb" ] }, { @@ -9816,8 +10287,8 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" ] }, { @@ -9825,17 +10296,8 @@ "kernelrelease": "5.13.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.13.0-1024-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb" ] }, { @@ -9847,22 +10309,13 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb" ] }, - { - "kernelversion": "27", - "kernelrelease": "5.13.0-1025-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb" - ] - }, { "kernelversion": "32", "kernelrelease": "5.13.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" ] }, { @@ -9870,8 +10323,8 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb" ] }, @@ -9880,8 +10333,8 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" ] }, @@ -9900,9 +10353,9 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" ] }, { @@ -9910,9 +10363,9 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb" ] }, { @@ -9921,8 +10374,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb" ] }, { @@ -9931,8 +10384,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb" ] }, { @@ -9940,9 +10393,9 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" ] }, { @@ -9968,8 +10421,8 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb" ] }, @@ -9978,8 +10431,17 @@ "kernelrelease": "5.15.0-1004-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_arm64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1005-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb" ] }, { @@ -9987,8 +10449,44 @@ "kernelrelease": "5.15.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1006-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1006-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1007-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1007-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb" ] }, { @@ -9997,8 +10495,18 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.15.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb" ] }, { @@ -10006,19 +10514,49 @@ "kernelrelease": "5.15.0-30-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.15.0-30", + "kernelversion": "33", + "kernelrelease": "5.15.0-32-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency-64k_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb" ] }, { @@ -10026,8 +10564,8 @@ "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb" ] }, { @@ -10063,8 +10601,8 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb" ] }, { @@ -10090,8 +10628,8 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" ] }, { @@ -10162,8 +10700,8 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb" ] }, { @@ -10207,8 +10745,8 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" ] }, { @@ -10216,8 +10754,8 @@ "kernelrelease": "3.13.0-126", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb" ] }, { @@ -10225,8 +10763,8 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb" ] }, { @@ -10234,8 +10772,8 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb" ] }, { @@ -10252,8 +10790,8 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb" ] }, { @@ -10270,8 +10808,8 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb" ] }, { @@ -10279,8 +10817,8 @@ "kernelrelease": "3.13.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" ] }, { @@ -10306,8 +10844,8 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb" ] }, { @@ -10315,8 +10853,8 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb" ] }, { @@ -10360,8 +10898,8 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb" ] }, { @@ -10387,8 +10925,8 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb" ] }, { @@ -10414,8 +10952,8 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb" ] }, { @@ -10432,8 +10970,8 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" ] }, { @@ -10450,8 +10988,8 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb" ] }, { @@ -10459,8 +10997,8 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb" ] }, { @@ -10477,8 +11015,8 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" ] }, { @@ -10486,8 +11024,8 @@ "kernelrelease": "3.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb" ] }, { @@ -10504,8 +11042,8 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb" ] }, { @@ -10513,8 +11051,8 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb" ] }, { @@ -10522,8 +11060,8 @@ "kernelrelease": "3.13.0-34", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb" ] }, { @@ -10531,8 +11069,8 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb" ] }, { @@ -10540,8 +11078,8 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb" ] }, { @@ -10576,8 +11114,8 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb" ] }, { @@ -10639,8 +11177,8 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" ] }, { @@ -10648,8 +11186,8 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb" ] }, { @@ -10657,8 +11195,8 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" ] }, { @@ -10666,8 +11204,8 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb" ] }, { @@ -10702,8 +11240,8 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb" ] }, { @@ -10720,8 +11258,8 @@ "kernelrelease": "3.13.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb" ] }, { @@ -10729,8 +11267,8 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb" ] }, { @@ -10738,8 +11276,8 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" ] }, { @@ -10756,8 +11294,8 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb" ] }, { @@ -10765,8 +11303,8 @@ "kernelrelease": "3.13.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" ] }, { @@ -10783,8 +11321,8 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb" ] }, { @@ -10792,8 +11330,8 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb" ] }, { @@ -10801,8 +11339,8 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb" ] }, { @@ -10819,8 +11357,8 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" ] }, { @@ -10828,8 +11366,8 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb" ] }, { @@ -10837,8 +11375,8 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb" ] }, { @@ -10864,8 +11402,8 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb" ] }, { @@ -10873,8 +11411,8 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb" ] }, { @@ -10891,8 +11429,8 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb" ] }, { @@ -10918,8 +11456,8 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb" ] }, { @@ -10945,8 +11483,8 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" ] }, { @@ -10963,8 +11501,8 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb" ] }, { @@ -10972,8 +11510,8 @@ "kernelrelease": "3.16.0-33-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb" ] }, { @@ -10981,8 +11519,8 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb" ] }, { @@ -10990,8 +11528,8 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb" ] }, { @@ -11008,8 +11546,8 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb" ] }, { @@ -11026,8 +11564,8 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb" ] }, { @@ -11035,8 +11573,8 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb" ] }, { @@ -11053,8 +11591,8 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" ] }, { @@ -11062,8 +11600,8 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb" ] }, { @@ -11080,8 +11618,8 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb" ] }, { @@ -11089,8 +11627,8 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" ] }, { @@ -11098,8 +11636,8 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb" ] }, { @@ -11125,8 +11663,8 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" ] }, { @@ -11143,8 +11681,8 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb" ] }, { @@ -11152,8 +11690,8 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" ] }, { @@ -11170,8 +11708,8 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb" ] }, { @@ -11179,8 +11717,8 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb" ] }, { @@ -11188,8 +11726,8 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" ] }, { @@ -11197,8 +11735,8 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb" ] }, { @@ -11206,8 +11744,8 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" ] }, { @@ -11215,8 +11753,8 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" ] }, { @@ -11224,8 +11762,8 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" ] }, { @@ -11242,8 +11780,8 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb" ] }, { @@ -11260,8 +11798,8 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb" ] }, { @@ -11269,8 +11807,8 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" ] }, { @@ -11287,8 +11825,8 @@ "kernelrelease": "3.19.0-26-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb" ] }, { @@ -11305,8 +11843,8 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" ] }, { @@ -11314,8 +11852,8 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb" ] }, { @@ -11323,8 +11861,8 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" ] }, { @@ -11332,8 +11870,8 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb" ] }, { @@ -11359,8 +11897,8 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" ] }, { @@ -11368,8 +11906,8 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb" ] }, { @@ -11431,8 +11969,8 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" ] }, { @@ -11440,8 +11978,8 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb" ] }, { @@ -11458,8 +11996,8 @@ "kernelrelease": "3.19.0-65-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" ] }, { @@ -11476,8 +12014,8 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb" ] }, { @@ -11485,8 +12023,8 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" ] }, { @@ -11503,8 +12041,8 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" ] }, { @@ -11521,8 +12059,8 @@ "kernelrelease": "3.19.0-75-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb" ] }, { @@ -11530,8 +12068,8 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" ] }, { @@ -11566,8 +12104,8 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb" ] }, { @@ -11575,8 +12113,8 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" ] }, { @@ -11584,8 +12122,8 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" ] }, { @@ -11602,8 +12140,8 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb" ] }, { @@ -11620,8 +12158,8 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" ] }, { @@ -11629,8 +12167,8 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" ] }, { @@ -11665,8 +12203,8 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" ] }, { @@ -11674,8 +12212,8 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" ] }, { @@ -11701,8 +12239,8 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb" ] }, { @@ -11710,8 +12248,8 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb" ] }, { @@ -11728,8 +12266,8 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" ] }, { @@ -11737,8 +12275,8 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" ] }, { @@ -11746,8 +12284,8 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb" ] }, { @@ -11755,8 +12293,8 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb" ] }, { @@ -11773,8 +12311,8 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb" ] }, { @@ -11782,8 +12320,8 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb" ] }, { @@ -11791,8 +12329,8 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb" ] }, { @@ -11845,8 +12383,8 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" ] }, { @@ -11863,8 +12401,8 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" ] }, { @@ -11881,8 +12419,8 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" ] }, { @@ -11899,8 +12437,8 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb" ] }, { @@ -11908,8 +12446,8 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" ] }, { @@ -11926,8 +12464,8 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" ] }, { @@ -11935,8 +12473,8 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb" ] }, { @@ -11953,8 +12491,8 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" ] }, { @@ -11971,8 +12509,8 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" ] }, { @@ -11980,8 +12518,8 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" ] }, { @@ -11989,8 +12527,8 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" ] }, { @@ -12016,8 +12554,8 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb" ] }, { @@ -12025,8 +12563,8 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" ] }, { @@ -12034,8 +12572,8 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb" ] }, { @@ -12043,8 +12581,8 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb" ] }, { @@ -12052,8 +12590,8 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" ] }, { @@ -12061,8 +12599,8 @@ "kernelrelease": "4.4.0-64-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb" ] }, { @@ -12088,8 +12626,8 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" ] }, { @@ -12097,8 +12635,8 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" ] }, { @@ -12115,8 +12653,8 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb" ] }, { @@ -12133,8 +12671,8 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb" ] }, { @@ -12142,8 +12680,8 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" ] }, { @@ -12151,8 +12689,8 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" ] }, { @@ -12169,8 +12707,8 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb" ] }, { @@ -12187,8 +12725,8 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb" ] }, { @@ -12196,8 +12734,8 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb" ] }, { @@ -12214,8 +12752,8 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb" ] }, { @@ -12223,8 +12761,8 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb" ] }, { @@ -12241,8 +12779,8 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb" ] }, { @@ -12250,8 +12788,8 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" ] }, { @@ -12295,8 +12833,8 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb" ] }, { @@ -12322,8 +12860,8 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" ] }, { @@ -12331,8 +12869,8 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" ] }, { @@ -12349,8 +12887,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" ] }, { @@ -12376,8 +12914,8 @@ "kernelrelease": "4.4.0-206", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb" ] }, { @@ -12385,8 +12923,8 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" ] }, { @@ -12394,8 +12932,8 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb" ] }, { @@ -12403,8 +12941,8 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb" ] }, { @@ -12412,8 +12950,8 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb" ] }, { @@ -12421,8 +12959,8 @@ "kernelrelease": "4.10.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb" ] }, { @@ -12439,8 +12977,8 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb" ] }, { @@ -12448,8 +12986,8 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb" ] }, { @@ -12511,8 +13049,8 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb" ] }, { @@ -12529,8 +13067,8 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" ] }, { @@ -12547,8 +13085,8 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb" ] }, { @@ -12565,8 +13103,8 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" ] }, { @@ -12574,8 +13112,8 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb" ] }, { @@ -12592,8 +13130,8 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" ] }, { @@ -12601,8 +13139,8 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb" ] }, { @@ -12619,8 +13157,8 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb" ] }, { @@ -12628,8 +13166,8 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb" ] }, { @@ -12655,8 +13193,8 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb" ] }, { @@ -12664,8 +13202,8 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" ] }, { @@ -12673,8 +13211,8 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" ] }, { @@ -12682,8 +13220,8 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" ] }, { @@ -12691,8 +13229,8 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb" ] }, { @@ -12709,8 +13247,8 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb" ] }, { @@ -12718,8 +13256,8 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" ] }, { @@ -12772,8 +13310,8 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb" ] }, { @@ -12790,8 +13328,8 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb" ] }, { @@ -12817,8 +13355,8 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" ] }, { @@ -12844,8 +13382,8 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb" ] }, { @@ -12871,8 +13409,8 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" ] }, { @@ -12880,8 +13418,8 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb" ] }, { @@ -12889,8 +13427,8 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb" ] }, { @@ -12898,8 +13436,8 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" ] }, { @@ -12916,8 +13454,8 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" ] }, { @@ -12925,8 +13463,8 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb" ] }, { @@ -12934,8 +13472,8 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" ] }, { @@ -12943,8 +13481,8 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb" ] }, { @@ -12952,8 +13490,8 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" ] }, { @@ -12988,8 +13526,8 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb" ] }, { @@ -12997,8 +13535,8 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb" ] }, { @@ -13033,8 +13571,8 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" ] }, { @@ -13051,8 +13589,8 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" ] }, { @@ -13060,8 +13598,8 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" ] }, { @@ -13087,8 +13625,8 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" ] }, { @@ -13096,8 +13634,8 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb" ] }, { @@ -13114,8 +13652,8 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" ] }, { @@ -13123,8 +13661,8 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb" ] }, { @@ -13132,8 +13670,8 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" ] }, { @@ -13141,8 +13679,8 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb" ] }, { @@ -13159,8 +13697,8 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" ] }, { @@ -13186,8 +13724,8 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb" ] }, { @@ -13213,8 +13751,8 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" ] }, { @@ -13258,8 +13796,8 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" ] }, { @@ -13267,8 +13805,8 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" ] }, { @@ -13276,8 +13814,8 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb" ] }, { @@ -13303,8 +13841,8 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb" ] }, { @@ -13330,8 +13868,8 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" ] }, { @@ -13357,8 +13895,8 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb" ] }, { @@ -13375,8 +13913,8 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" ] }, { @@ -13393,8 +13931,8 @@ "kernelrelease": "4.4.0-137", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb" ] }, { @@ -13402,8 +13940,8 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" ] }, { @@ -13411,8 +13949,8 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb" ] }, { @@ -13438,8 +13976,8 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb" ] }, { @@ -13447,8 +13985,8 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" ] }, { @@ -13456,8 +13994,8 @@ "kernelrelease": "4.4.0-148", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" ] }, { @@ -13465,8 +14003,8 @@ "kernelrelease": "4.4.0-150", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb" ] }, { @@ -13474,8 +14012,8 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb" ] }, { @@ -13483,8 +14021,8 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb" ] }, { @@ -13492,8 +14030,8 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" ] }, { @@ -13510,8 +14048,8 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb" ] }, { @@ -13519,8 +14057,8 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" ] }, { @@ -13528,8 +14066,8 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb" ] }, { @@ -13537,8 +14075,8 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb" ] }, { @@ -13546,8 +14084,8 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" ] }, { @@ -13573,8 +14111,8 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb" ] }, { @@ -13591,8 +14129,8 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" ] }, { @@ -13609,8 +14147,8 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb" ] }, { @@ -13654,8 +14192,8 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb" ] }, { @@ -13663,8 +14201,8 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" ] }, { @@ -13699,8 +14237,8 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb" ] }, { @@ -13717,8 +14255,8 @@ "kernelrelease": "4.4.0-198", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" ] }, { @@ -13726,8 +14264,8 @@ "kernelrelease": "4.4.0-200", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb" ] }, { @@ -13735,8 +14273,8 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb" ] }, { @@ -13753,8 +14291,8 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb" ] }, { @@ -13780,8 +14318,8 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb" ] }, { @@ -13789,8 +14327,8 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" ] }, { @@ -13807,8 +14345,8 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" ] }, { @@ -13834,8 +14372,8 @@ "kernelrelease": "4.4.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" ] }, { @@ -13852,8 +14390,8 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb" ] }, { @@ -13861,8 +14399,8 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" ] }, { @@ -13870,8 +14408,8 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb" ] }, { @@ -13879,8 +14417,8 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb" ] }, { @@ -13924,8 +14462,8 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb" ] }, { @@ -13933,8 +14471,8 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb" ] }, { @@ -13942,8 +14480,8 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb" ] }, { @@ -13951,8 +14489,8 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb" ] }, { @@ -13996,8 +14534,8 @@ "kernelrelease": "4.4.0-78", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb" ] }, { @@ -14005,8 +14543,8 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" ] }, { @@ -14014,8 +14552,8 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" ] }, { @@ -14023,8 +14561,8 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" ] }, { @@ -14032,8 +14570,8 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" ] }, { @@ -14041,8 +14579,8 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb" ] }, { @@ -14050,8 +14588,8 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" ] }, { @@ -14059,8 +14597,8 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb" ] }, { @@ -14095,8 +14633,8 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" ] }, { @@ -14113,8 +14651,8 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" ] }, { @@ -14122,8 +14660,8 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" ] }, { @@ -14131,8 +14669,8 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" ] }, { @@ -14140,8 +14678,8 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" ] }, { @@ -14203,8 +14741,8 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb" ] }, { @@ -14230,8 +14768,8 @@ "kernelrelease": "4.4.0-131", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" ] }, { @@ -14239,8 +14777,8 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb" ] }, { @@ -14248,8 +14786,8 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" ] }, { @@ -14266,8 +14804,8 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb" ] }, { @@ -14302,8 +14840,8 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" ] }, { @@ -14320,8 +14858,8 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb" ] } ], @@ -14374,6 +14912,14 @@ "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.0/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3139.2.1", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "3033.1.0", @@ -14438,6 +14984,14 @@ "https://beta.release.flatcar-linux.net/arm64-usr/3185.1.0/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3185.1.1", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3185.1.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "2345.0.1", @@ -14789,6 +15343,14 @@ "headers": [ "https://alpha.release.flatcar-linux.net/arm64-usr/3200.0.0/flatcar_developer_container.bin.bz2" ] + }, + { + "kernelversion": 1, + "kernelrelease": "3227.0.0", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3227.0.0/flatcar_developer_container.bin.bz2" + ] } ] } diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index 614b688..d7ef542 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -1396,274 +1396,274 @@ }, { "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.x86_64", + "kernelrelease": "5.10.106-102.504.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.x86_64", + "kernelrelease": "5.10.109-104.500.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/ca19e72b4e6b43af5c589209d1c44211800e1fd556633a0359f8e50c6b9dfacc/kernel-devel-5.10.109-104.500.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.x86_64", + "kernelrelease": "5.10.96-90.460.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.x86_64", + "kernelrelease": "5.10.50-44.132.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.x86_64", + "kernelrelease": "5.10.59-52.142.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.93-87.444.amzn2.x86_64", + "kernelrelease": "5.10.62-55.141.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.x86_64", + "kernelrelease": "5.10.47-39.130.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.x86_64", + "kernelrelease": "5.10.35-31.135.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.x86_64", + "kernelrelease": "5.10.29-27.128.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.109-104.500.amzn2.x86_64", + "kernelrelease": "5.10.68-62.173.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/ca19e72b4e6b43af5c589209d1c44211800e1fd556633a0359f8e50c6b9dfacc/kernel-devel-5.10.109-104.500.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.x86_64", + "kernelrelease": "5.10.82-83.359.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.x86_64", + "kernelrelease": "5.10.75-79.358.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.x86_64", + "kernelrelease": "5.10.112-108.499.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/5f7589d15dbb5a3c43b0809802f463c41c9349c1c274dd7dc31db09313a48619/kernel-devel-5.10.112-108.499.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.75-79.358.amzn2.x86_64", + "kernelrelease": "5.10.102-99.473.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.x86_64", + "kernelrelease": "5.10.93-87.444.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.x86_64", + "kernelrelease": "5.10.50-44.131.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/e8c42370093ab45d310a8028b7fcad21dd369102bd7bbad0b36d25aa8cf09cd7/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.x86_64", + "kernelrelease": "5.10.29-27.126.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.x86_64", + "kernelrelease": "5.4.46-23.77.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.x86_64", + "kernelrelease": "5.4.68-34.125.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.x86_64", + "kernelrelease": "5.4.129-62.227.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.x86_64", + "kernelrelease": "5.4.80-40.140.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.189.amzn2.x86_64", + "kernelrelease": "5.4.172-90.336.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.x86_64", + "kernelrelease": "5.4.188-104.359.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/830875a1747e16cdc8a84fac964972fc4dd415b30d3414fb6af37804897f6c1d/kernel-devel-5.4.188-104.359.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.x86_64", + "kernelrelease": "5.4.176-91.338.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.x86_64", + "kernelrelease": "5.4.156-83.273.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.38-17.76.amzn2.x86_64", + "kernelrelease": "5.4.50-25.83.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.x86_64", + "kernelrelease": "5.4.110-54.189.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.x86_64", + "kernelrelease": "5.4.58-27.104.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.x86_64", + "kernelrelease": "5.4.74-36.135.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.x86_64", + "kernelrelease": "5.4.38-17.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.x86_64", + "kernelrelease": "5.4.190-107.353.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/4421829a971058d8b64ce3571ab8828da405fd2fa6ee618642afa72caba86a0a/kernel-devel-5.4.190-107.353.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.x86_64", + "kernelrelease": "5.4.46-19.75.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.x86_64", + "kernelrelease": "5.4.110-54.182.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.x86_64", + "kernelrelease": "5.4.20-12.75.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm" ] }, { @@ -1671,79 +1671,95 @@ "kernelrelease": "5.4.95-42.163.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.x86_64", + "kernelrelease": "5.4.129-63.229.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.x86_64", + "kernelrelease": "5.4.141-67.229.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.x86_64", + "kernelrelease": "5.4.162-86.275.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.x86_64", + "kernelrelease": "5.4.149-73.259.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.188-104.359.amzn2.x86_64", + "kernelrelease": "5.4.186-102.354.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/830875a1747e16cdc8a84fac964972fc4dd415b30d3414fb6af37804897f6c1d/kernel-devel-5.4.188-104.359.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.x86_64", + "kernelrelease": "5.4.58-32.125.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.x86_64", + "kernelrelease": "5.4.91-41.139.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.x86_64", + "kernelrelease": "5.4.144-69.257.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.x86_64", + "kernelrelease": "5.4.117-58.216.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.181-99.354.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.105-48.177.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/54c597dc88b13b649f733f389f1f704937ce1e24e63816ac4473c19da77ff221/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" ] } ], @@ -1811,7 +1827,7 @@ "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" ] }, { @@ -1843,7 +1859,7 @@ "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" ] }, { @@ -1851,7 +1867,7 @@ "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" ] }, { @@ -1859,7 +1875,7 @@ "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" ] }, { @@ -1891,7 +1907,7 @@ "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" ] }, { @@ -1899,7 +1915,7 @@ "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" ] }, { @@ -1915,7 +1931,7 @@ "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" ] }, { @@ -1923,7 +1939,7 @@ "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" ] }, { @@ -1934,6 +1950,14 @@ "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.66.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "2.6.32-71.el6.x86_64", @@ -3736,6 +3760,14 @@ "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-devel-5.14.10-300.fc35.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.17.5-300.fc36.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/releases/36/Everything/x86_64/os/Packages/k/kernel-devel-5.17.5-300.fc36.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "5.11.22-100.fc32.x86_64", @@ -3754,18 +3786,26 @@ }, { "kernelversion": 1, - "kernelrelease": "5.17.5-100.fc34.x86_64", + "kernelrelease": "5.17.8-100.fc34.x86_64", + "target": "fedora", + "headers": [ + "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.17.8-100.fc34.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.17.8-200.fc35.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.17.5-100.fc34.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.17.8-200.fc35.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.5-200.fc35.x86_64", + "kernelrelease": "5.17.8-300.fc36.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.17.5-200.fc35.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.17.8-300.fc36.x86_64.rpm" ] } ], @@ -5225,1896 +5265,6497 @@ "headers": [ "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.55.1.el6uek.x86_64.rpm" ] - } - ], - "Oracle7": [ + }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.0.7.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-100.10.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.10.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.1.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-100.5.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.5.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.2.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-100.6.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.6.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.3.2.1.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-100.7.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.7.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.4.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-200.24.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.24.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.6.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-200.29.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.5.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-200.29.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.6.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-200.29.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2011.7.4.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-200.31.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.31.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.100.6.1.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-200.32.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.32.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.101.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-200.33.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.33.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.102.0.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-200.34.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.34.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.1.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-300.17.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-300.17.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.4.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-300.17.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.5.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-300.26.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.26.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.200.13.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-300.28.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.28.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.201.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-300.32.4.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.32.4.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.202.5.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.109.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.5.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.109.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.6.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.109.4.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.4.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.109.5.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.5.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.109.6.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.6.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.4.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.17.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.17.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.17.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.17.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.209.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.209.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2102.206.1.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.209.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.209.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.300.7.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.21.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.21.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.21.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.21.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.210.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.210.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.4.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.211.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.6.1.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.211.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.1.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.211.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.212.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.212.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.214.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.214.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.1.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.214.4.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.4.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.2.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.214.5.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.5.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.214.6.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.6.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.4.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.215.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.5.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.215.10.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.10.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.215.11.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.11.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.4.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.215.12.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.12.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.5.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.215.13.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.13.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.17-2136.306.1.3.el7uek.x86_64", - "target": "oracle7", + "kernelrelease": "2.6.39-400.215.14.el6uek.x86_64", + "target": "oracle6", "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.306.1.3.el7uek.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.14.el6uek.x86_64.rpm" ] - } - ], - "Oracle8": [], - "PhotonOS": [ + }, { "kernelversion": 1, - "kernelrelease": "1.3.0-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.215.15.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/Linux-PAM-devel-1.3.0-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.15.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.15-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.215.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.15-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.215.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.104-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.215.4.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.4.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.104-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.215.6.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.6.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.112-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.215.7.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.112-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.7.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.23.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.23.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-10.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.24.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-10.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.24.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.245.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.245.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.246.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.246.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.247.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.247.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-6.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.248.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-6.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.248.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-7.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.249.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-7.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-9.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.249.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-9.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.124-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.249.4.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.4.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.124-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.250.10.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.10.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.126-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.250.11.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.11.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.126-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.250.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.129-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.250.5.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.129-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.5.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.129-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.250.6.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.6.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.129-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.250.7.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.7.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.132-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.250.9.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.9.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.132-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.264.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.132-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.264.13.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.13.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.132-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.264.4.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.4.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.132-6.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.264.5.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-6.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.5.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.138-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.276.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.276.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.138-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.277.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.277.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.138-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.278.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.145-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.278.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.145-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.278.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.145-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.280.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.280.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.148-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.281.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.281.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.148-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.282.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.282.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.148-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.283.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.283.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.148-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.283.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.283.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.148-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.284.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.284.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.15-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.286.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.15-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.286.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.150-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.286.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.150-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.286.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.290.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.290.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-10.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.290.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-10.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.290.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-11.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.293.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-11.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.293.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-8.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.293.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.293.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-9.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.294.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-9.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.160-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.294.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.160-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.294.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.160-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.294.6.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.6.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.160-6.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.294.7.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-6.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.7.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.164-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.295.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.164-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.295.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.164-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.296.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.296.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.174-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.297.11.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.11.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.174-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.297.12.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.12.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.174-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.297.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.177-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.297.4.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.4.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.177-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.297.5.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.5.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.182-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.297.6.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.6.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.182-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.297.8.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.8.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.186-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.297.9.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.9.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.186-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.298.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.186-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.298.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.186-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.298.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.189-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.298.6.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.6.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.189-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.298.7.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.7.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.189-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.299.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.299.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.189-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.299.3.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.299.3.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.190-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.300.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.300.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.190-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.301.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.301.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.190-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.301.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.301.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.191-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.302.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.302.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.191-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.303.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.303.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.191-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.304.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.304.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.198-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.305.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.198-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.305.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.198-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.306.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.306.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.198-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.307.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.307.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.198-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.308.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.308.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.205-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.310.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.205-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.310.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.208-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.311.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.208-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.311.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.214-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.312.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.312.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.214-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.312.2.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.312.2.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.217-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.313.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.313.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.219-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.314.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.314.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.219-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.315.1.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.315.1.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.219-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.315.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.315.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.219-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.316.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.316.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.224-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.317.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.317.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.224-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.318.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.318.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.225-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.319.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.319.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.225-6.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.320.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-6.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.320.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.229-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.321.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.321.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.229-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.322.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.322.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.229-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.323.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.323.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.232-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.324.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.324.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.232-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.325.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.325.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.232-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.326.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.326.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.232-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.327.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.327.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.29-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.328.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.29-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.328.1.el6uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.32-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "2.6.39-400.330.1.el6uek.x86_64", + "target": "oracle6", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.32-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.330.1.el6uek.x86_64.rpm" ] - }, + } + ], + "Oracle7": [ { "kernelversion": 1, - "kernelrelease": "4.19.40-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.40-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.52-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.52-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.65-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.65-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.69-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.72-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.72-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.76-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.76-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.79-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.79-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.79-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.82-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.82-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.84-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.84-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.87-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.87-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.87-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-6.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-6.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-6.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-6.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.160-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.174-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.214-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.214-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.219-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.225-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.32-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.66.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.32-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.65-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.65-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.76-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-957.10.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.87-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-957.12.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.132-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-957.12.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.160-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-957.21.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.174-3.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-957.21.3.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-3.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.190-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-957.27.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.190-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.0.0.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.0.0.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.191-4.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.1.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.1.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.191-5.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.1.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.1.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.225-7.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.12.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-7.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.12.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-7.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.18.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-7.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.18.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "1.4.0-3.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.4.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-3.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.4.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "1.4.0-4.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.4.3.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.4.3.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.103-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.7.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.7.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.103-2.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1062.9.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-2.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.9.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.103-3.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.0.0.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-3.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.0.0.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.103-4.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.10.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.10.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.25-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.13.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.13.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.25-10.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.18.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-10.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.18.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.25-2.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.19.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-2.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.25-3.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.19.1.0.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-3.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.0.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.25-5.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1127.8.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-5.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.8.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.25-6.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.11.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-6.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.11.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.25-7.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.15.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-7.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.15.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.25-9.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.2.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-9.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.2.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.2.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.2.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-2.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.21.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.21.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-3.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.24.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-3.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.24.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-4.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.25.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-4.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.25.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.4-17.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.31.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.4-17.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.31.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.42-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.36.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.36.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.42-2.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.41.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-2.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.41.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.42-3.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.42.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-3.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.42.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.46-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.45.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.46-2.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.45.1.0.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-2.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.0.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.52-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.49.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.49.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.52-2.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.53.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-2.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.53.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.61-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.59.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.59.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.61-2.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.6.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-2.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.6.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.75-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.62.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.75-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.78-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.62.1.0.2.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.0.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.78-4.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.62.1.0.3.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-4.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.0.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.78-5.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-1160.66.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-5.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.66.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.83-2.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-514.10.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-2.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.10.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.83-3.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-514.16.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.16.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.83-4.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-514.21.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-4.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.21.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.83-5.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-514.21.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-5.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.21.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.83-6.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-514.26.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-6.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.26.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.83-7.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-514.26.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.26.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.93-1.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-514.6.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.6.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.93-3.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-514.6.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.6.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.93-4.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-693.0.0.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.0.0.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.93-5.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-693.1.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-5.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.1.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.25-4.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-693.11.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-4.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.11.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.78-2.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-693.11.6.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-2.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.11.6.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.4-10.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-693.17.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-10.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.17.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.42-4.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-693.2.1.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.2.1.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.78-6.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-693.2.2.0.1.el7.x86_64", + "target": "oracle7", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-6.ph4.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.2.2.0.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.78-7.ph4.x86_64", - "target": "photonOS", + "kernelrelease": "3.10.0-693.21.1.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.21.1.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-693.5.2.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.5.2.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.0.0.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.0.0.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.11.6.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.11.6.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.14.4.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.14.4.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.2.3.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.2.3.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.3.2.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.3.2.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.3.3.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.3.3.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.6.3.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.6.3.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-862.9.1.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.9.1.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.0.0.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.0.0.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.0.0.0.2.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.0.0.0.2.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.1.3.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.1.3.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.1.3.0.3.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.1.3.0.3.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.10.1.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.10.1.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.12.1.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.12.1.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.12.2.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.12.2.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.21.2.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.21.2.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.21.3.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.21.3.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.27.2.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.27.2.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.5.1.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.5.1.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-957.5.1.0.2.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.5.1.0.2.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.0.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.3.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.4.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.4.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.5.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.6.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.7.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.100.6.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.101.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.102.0.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.103.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.103.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.104.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.104.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.200.13.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.201.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.202.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.203.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.203.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.205.7.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.205.7.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.206.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.300.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.6.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.306.1.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.306.1.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.305.4.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.305.4.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.305.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.305.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.10.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.10.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.12.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.12.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.13.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.13.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.14.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.14.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.7.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.8.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.8.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-1902.306.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.400.8.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.8.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.400.9.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.9.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.400.9.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.9.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.401.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.401.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.402.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.402.2.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.403.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.403.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.404.1.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.404.1.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.404.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.404.1.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2025.405.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.405.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.500.10.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.10.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.500.9.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.9.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.500.9.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.9.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.501.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.501.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.501.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.501.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.502.4.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.4.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.502.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.502.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.503.1.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.503.1.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.503.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.503.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.504.2.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.504.2.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.504.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.504.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.505.4.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.505.4.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.505.4.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.505.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.506.10.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.10.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.506.8.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.8.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.506.8.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.8.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.507.7.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.507.7.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.507.7.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.508.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.508.3.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.508.3.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.508.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.509.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.509.2.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.509.2.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.509.2.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.4.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.4.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.510.5.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.5.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.5.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.7.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.511.5.8.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.8.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.512.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.512.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.513.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.513.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.42.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.42.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.43.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.43.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.44.4.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.44.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.45.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.45.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.46.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.46.4.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.4.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.47.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.47.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.3.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.48.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.49.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.49.3.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.50.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.50.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.51.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.51.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.52.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.52.5.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.5.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.52.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.53.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.3.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.53.5.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.53.5.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.53.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.54.6.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.54.6.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.54.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.54.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.56.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.56.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.57.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.57.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.58.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.58.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.59.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.59.1.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.59.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.59.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.60.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.60.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.61.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.61.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.62.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.62.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.10.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.10.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.11.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.11.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.13.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.13.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.14.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.14.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.15.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.15.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.15.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.16.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.16.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.16.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.17.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.17.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.18.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.18.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.18.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.10.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.10.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.12.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.12.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.19.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.7.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.2.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.20.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.7.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.21.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.21.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.22.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.22.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.23.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.23.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.24.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.24.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.24.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.25.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.25.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.26.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.26.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.27.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.27.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.28.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.28.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.29.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.29.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.3.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.30.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.30.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.31.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.31.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.32.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.32.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.33.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.33.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.34.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.34.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.35.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.35.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.36.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.36.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.37.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.37.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.38.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.38.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.39.1.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.39.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.4.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.4.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.40.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.40.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.41.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.41.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.42.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.42.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.43.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.43.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.44.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.44.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.45.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.45.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.46.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.46.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.47.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.47.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.48.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.48.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.6.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.6.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.7.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.7.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.8.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.8.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.9.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.9.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-35.3.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.1.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-44.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.6.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.1.8.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.8.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.2.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-55.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.1.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.2.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.2.2.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.3.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-68.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.1.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.4.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.4.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.5.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.5.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.6.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.6.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.7.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.7.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-98.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.49.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.49.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.50.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.50.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.51.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.52.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.52.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.53.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.53.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.54.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.54.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.8.13-118.55.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.55.1.el7uek.x86_64.rpm" + ] + } + ], + "Oracle8": [ + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.0.2.el8_1.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.0.2.el8_1.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.0.3.el8_1.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.0.3.el8_1.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.3.1.el8_1.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.3.1.el8_1.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.5.1.el8_1.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.5.1.el8_1.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-147.el8.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.el8.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.1.2.el8_2.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.1.2.el8_2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.13.2.el8_2.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.13.2.el8_2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.14.3.el8_2.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.14.3.el8_2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.19.1.el8_2.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.19.1.el8_2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.6.3.el8_2.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.6.3.el8_2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-193.el8.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.el8.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.1.1.el8_3.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.1.1.el8_3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.10.1.el8_3.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.10.1.el8_3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.15.1.el8_3.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.15.1.el8_3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.8.1.el8_3.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.8.1.el8_3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-240.el8.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.el8.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.3.1.el8_4.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.3.1.el8_4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-305.el8.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.el8.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.12.2.el8_5.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.12.2.el8_5.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.20.1.el8_5.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.20.1.el8_5.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.23.1.el8_5.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.23.1.el8_5.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-348.el8.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.el8.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-372.9.1.el8.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-372.9.1.el8.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.el8.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.el8.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.0.7.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.1.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.2.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.3.2.1.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.4.4.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.4.6.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.5.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.6.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2011.7.4.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.100.6.1.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.101.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.102.0.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.103.3.1.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.103.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.104.4.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2036.104.5.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.200.13.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.201.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.202.5.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.203.5.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.203.6.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.204.4.4.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.205.7.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.205.7.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2102.206.1.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.300.7.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.301.1.4.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.6.1.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.1.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.302.7.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.1.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.4.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.304.4.5.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.4.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.305.5.5.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.306.1.3.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.306.1.3.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.1.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.1.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.2.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.2.el8uek.x86_64.rpm" + ] + } + ], + "PhotonOS": [ + { + "kernelversion": 1, + "kernelrelease": "1.3.0-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/Linux-PAM-devel-1.3.0-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.15-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.15-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.104-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.104-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.112-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.112-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-10.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-10.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-6.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-6.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-7.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-7.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-9.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-9.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.124-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.124-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.126-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.126-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.129-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.129-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.129-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.129-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-6.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-6.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.138-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.138-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.138-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.145-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.145-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.145-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.148-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.15-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.15-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.150-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-10.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-10.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-11.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-11.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-8.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-9.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-9.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-6.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-6.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.164-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.164-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.164-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.177-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.177-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.177-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.182-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.182-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.182-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.186-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.189-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.198-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.198-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.205-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.205-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.208-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.208-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.214-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.214-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.217-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.224-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.224-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.225-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.225-6.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-6.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.229-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.229-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.229-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.241-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.241-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.241-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.241-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.29-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.29-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.32-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.32-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.40-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.40-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.52-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.52-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.65-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.65-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.69-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.69-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.72-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.72-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.76-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.76-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.79-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.79-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.82-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.82-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.84-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.84-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.84-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.97-6.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-6.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.115-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-6.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-6.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.214-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.214-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.219-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.225-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.32-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.32-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.65-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.65-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.76-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.87-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.132-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.160-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.174-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.190-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.191-5.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.225-7.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-7.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.241-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.241-4.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.154-7.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-7.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.241-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.241-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "1.4.0-3.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-3.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "1.4.0-4.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-3.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-3.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.103-4.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-4.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.109-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-10.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-10.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-3.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-3.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-5.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-5.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-6.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-6.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-7.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-7.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-9.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-9.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-3.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-3.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-4.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-4.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-17.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.4-17.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-3.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-3.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.46-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.46-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.52-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.52-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.61-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.61-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.75-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.75-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.78-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-4.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-4.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-5.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-5.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-3.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-4.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-4.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-5.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-5.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-6.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-6.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.83-7.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-3.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-3.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-4.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-5.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-5.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.25-4.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-4.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.4-10.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-10.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.42-4.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-6.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-6.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.78-7.ph4.x86_64", + "target": "photonOS", "headers": [ "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-7.ph4.x86_64.rpm" ] @@ -7124,7 +11765,7 @@ "kernelrelease": "5.10.103-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-5.ph4.x86_64.rpm" ] }, { @@ -7198,10 +11839,10 @@ "kernelrelease": "5.17.3-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-amd64_5.17.3-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-amd64_5.17.3-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-amd64_5.17.3-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-amd64_5.17.3-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb" ] }, @@ -7211,8 +11852,8 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb" ] }, { @@ -7221,9 +11862,9 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb" ] }, @@ -7234,9 +11875,9 @@ "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb" ] }, { @@ -7244,11 +11885,11 @@ "kernelrelease": "5.16.11-1~bpo11+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb" ] }, { @@ -7256,11 +11897,11 @@ "kernelrelease": "5.16.12-1~bpo11+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb" ] }, { @@ -7268,11 +11909,11 @@ "kernelrelease": "5.10.113-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb" ] }, { @@ -7280,11 +11921,11 @@ "kernelrelease": "5.10.84-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb" ] }, { @@ -7292,11 +11933,11 @@ "kernelrelease": "5.10.106-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb" ] }, { @@ -7304,11 +11945,11 @@ "kernelrelease": "5.10.92-1~bpo10+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb" ] }, { @@ -7316,11 +11957,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb" ] }, { @@ -7328,11 +11969,11 @@ "kernelrelease": "5.10.70-1~bpo10+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-amd64_5.10.70-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb" ] }, { @@ -7340,10 +11981,10 @@ "kernelrelease": "4.19.208-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb" ] }, @@ -7352,11 +11993,11 @@ "kernelrelease": "4.19.235-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb" ] }, { @@ -7368,15 +12009,27 @@ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.17.6-1+b1-amd64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-rt-amd64_5.17.6-1+b1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-amd64_5.17.6-1+b1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-cloud-amd64_5.17.6-1+b1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common_5.17.6-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common-rt_5.17.6-1_all.deb" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" ] }, @@ -7394,9 +12047,9 @@ "kernelrelease": "4.9.228-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb" ] }, @@ -7406,10 +12059,10 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb" ] }, { @@ -7417,11 +12070,11 @@ "kernelrelease": "4.19.232-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" ] }, { @@ -7429,8 +12082,8 @@ "kernelrelease": "3.16.81-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb" ] }, { @@ -7438,8 +12091,8 @@ "kernelrelease": "3.16.84-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-common_3.16.84-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-amd64_3.16.84-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-amd64_3.16.84-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-common_3.16.84-1_amd64.deb" ] }, { @@ -7447,9 +12100,9 @@ "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb" ] }, @@ -7460,8 +12113,8 @@ "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" ] }, { @@ -7469,10 +12122,10 @@ "kernelrelease": "4.9.303-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" ] }, { @@ -7480,10 +12133,10 @@ "kernelrelease": "4.19.232-1~deb9u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb" ] } @@ -7494,10 +12147,10 @@ "kernelrelease": "4.15.0-1087-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb" ] }, { @@ -7505,10 +12158,10 @@ "kernelrelease": "4.15.0-1088-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" ] }, { @@ -7516,21 +12169,43 @@ "kernelrelease": "4.15.0-1093-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb" ] }, + { + "kernelversion": "103", + "kernelrelease": "4.15.0-1094-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb" + ] + }, + { + "kernelversion": "104", + "kernelrelease": "4.15.0-1095-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" + ] + }, { "kernelversion": "105", "kernelrelease": "4.15.0-1103-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" ] }, { @@ -7550,9 +12225,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" ] }, { @@ -7560,10 +12235,10 @@ "kernelrelease": "4.15.0-1107-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" ] }, { @@ -7571,9 +12246,9 @@ "kernelrelease": "4.15.0-1110-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" ] }, @@ -7582,10 +12257,10 @@ "kernelrelease": "4.15.0-1111-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" ] }, { @@ -7595,8 +12270,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" ] }, { @@ -7606,8 +12281,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" ] }, { @@ -7626,21 +12301,32 @@ "kernelrelease": "4.15.0-1114-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" ] }, + { + "kernelversion": "118", + "kernelrelease": "4.15.0-1115-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb" + ] + }, { "kernelversion": "123", "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" ] }, { @@ -7648,10 +12334,21 @@ "kernelrelease": "4.15.0-1116-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" + ] + }, + { + "kernelversion": "119", + "kernelrelease": "4.15.0-1116-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" ] }, { @@ -7659,10 +12356,10 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" ] }, { @@ -7670,10 +12367,10 @@ "kernelrelease": "4.15.0-1117-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb" ] }, { @@ -7683,8 +12380,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" ] }, { @@ -7693,9 +12390,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" ] }, { @@ -7704,9 +12401,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" ] }, { @@ -7714,10 +12411,21 @@ "kernelrelease": "4.15.0-1122-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" + ] + }, + { + "kernelversion": "137", + "kernelrelease": "4.15.0-1123-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb" ] }, { @@ -7725,10 +12433,21 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb" + ] + }, + { + "kernelversion": "138", + "kernelrelease": "4.15.0-1124-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb" ] }, { @@ -7736,10 +12455,10 @@ "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb" ] }, { @@ -7747,10 +12466,10 @@ "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" ] }, { @@ -7758,10 +12477,32 @@ "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb" + ] + }, + { + "kernelversion": "138", + "kernelrelease": "4.15.0-1129-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" + ] + }, + { + "kernelversion": "139", + "kernelrelease": "4.15.0-1130-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" ] }, { @@ -7769,10 +12510,10 @@ "kernelrelease": "4.15.0-1130-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" ] }, { @@ -7791,10 +12532,10 @@ "kernelrelease": "4.15.0-1134-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" ] }, { @@ -7802,10 +12543,10 @@ "kernelrelease": "4.15.0-1135-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" ] }, { @@ -7813,10 +12554,10 @@ "kernelrelease": "4.15.0-1138-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb" ] }, { @@ -7824,12 +12565,12 @@ "kernelrelease": "4.15.0-167", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" ] }, { @@ -7837,12 +12578,12 @@ "kernelrelease": "4.15.0-168", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb" ] }, { @@ -7850,12 +12591,12 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb" ] }, { @@ -7864,11 +12605,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb" ] }, { @@ -7879,8 +12620,8 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb" ] }, @@ -7889,12 +12630,12 @@ "kernelrelease": "4.15.0-173", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb" ] }, { @@ -7902,12 +12643,12 @@ "kernelrelease": "4.15.0-174", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb" ] }, { @@ -7915,12 +12656,12 @@ "kernelrelease": "4.15.0-176", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" ] }, { @@ -7928,12 +12669,38 @@ "kernelrelease": "4.15.0-177", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" + ] + }, + { + "kernelversion": "188", + "kernelrelease": "4.15.0-179", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb" + ] + }, + { + "kernelversion": "189", + "kernelrelease": "4.15.0-180", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb" ] }, { @@ -7943,8 +12710,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" ] }, { @@ -7955,9 +12722,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb" ] }, { @@ -7965,10 +12732,10 @@ "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb" ] }, { @@ -7976,12 +12743,23 @@ "kernelrelease": "5.4.0-1032-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb" ] }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + ] + }, { "kernelversion": "35~18.04.1", "kernelrelease": "5.4.0-1034-aws-5.4", @@ -7993,26 +12771,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" - ] - }, { "kernelversion": "35~18.04.1", "kernelrelease": "5.4.0-1034-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -8020,9 +12787,9 @@ "kernelrelease": "5.4.0-1040-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" ] }, @@ -8031,34 +12798,34 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb" ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1056-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1056-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" ] }, { @@ -8066,10 +12833,10 @@ "kernelrelease": "5.4.0-1058-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" ] }, { @@ -8077,10 +12844,10 @@ "kernelrelease": "5.4.0-1058-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb" ] }, { @@ -8088,12 +12855,12 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" ] }, { @@ -8101,9 +12868,9 @@ "kernelrelease": "5.4.0-1060-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" ] }, @@ -8112,21 +12879,10 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" ] }, { @@ -8134,9 +12890,9 @@ "kernelrelease": "5.4.0-1061-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, @@ -8146,20 +12902,20 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { @@ -8169,8 +12925,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb" ] }, { @@ -8178,9 +12945,9 @@ "kernelrelease": "5.4.0-1063-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb" ] }, @@ -8189,10 +12956,21 @@ "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { @@ -8211,21 +12989,21 @@ "kernelrelease": "5.4.0-1063-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-aws-5.4", + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { @@ -8233,21 +13011,10 @@ "kernelrelease": "5.4.0-1064-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { @@ -8255,10 +13022,10 @@ "kernelrelease": "5.4.0-1064-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { @@ -8266,10 +13033,10 @@ "kernelrelease": "5.4.0-1064-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { @@ -8277,32 +13044,32 @@ "kernelrelease": "5.4.0-1065-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1066-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" ] }, { @@ -8310,9 +13077,9 @@ "kernelrelease": "5.4.0-1067-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" ] }, @@ -8321,10 +13088,10 @@ "kernelrelease": "5.4.0-1068-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { @@ -8332,10 +13099,10 @@ "kernelrelease": "5.4.0-1068-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb" ] }, { @@ -8343,10 +13110,10 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" ] }, { @@ -8354,10 +13121,10 @@ "kernelrelease": "5.4.0-1069-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { @@ -8365,10 +13132,10 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { @@ -8376,8 +13143,8 @@ "kernelrelease": "5.4.0-1069-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" ] @@ -8388,9 +13155,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { @@ -8398,10 +13165,10 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" ] }, { @@ -8409,10 +13176,10 @@ "kernelrelease": "5.4.0-1070-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb" ] }, { @@ -8420,10 +13187,10 @@ "kernelrelease": "5.4.0-1071-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb" ] }, { @@ -8431,10 +13198,21 @@ "kernelrelease": "5.4.0-1071-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "76~18.04.3", + "kernelrelease": "5.4.0-1071-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb" ] }, { @@ -8443,20 +13221,53 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-aws-5.4", + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + ] + }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1072-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" ] }, { @@ -8464,10 +13275,21 @@ "kernelrelease": "5.4.0-1073-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" ] }, { @@ -8475,10 +13297,10 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" ] }, { @@ -8486,10 +13308,21 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" + ] + }, + { + "kernelversion": "82~18.04.1", + "kernelrelease": "5.4.0-1079-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb" ] }, { @@ -8497,12 +13330,23 @@ "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "83~18.04.2", + "kernelrelease": "5.4.0-1080-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" ] }, { @@ -8510,12 +13354,38 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "126~18.04.1", + "kernelrelease": "5.4.0-112-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "127~18.04.1", + "kernelrelease": "5.4.0-113-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb" ] }, { @@ -8527,8 +13397,8 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" ] }, { @@ -8537,11 +13407,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" ] }, { @@ -8550,11 +13420,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" ] }, { @@ -8562,10 +13432,10 @@ "kernelrelease": "4.15.0-1006-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb" ] }, { @@ -8573,10 +13443,10 @@ "kernelrelease": "4.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb" ] }, { @@ -8595,9 +13465,9 @@ "kernelrelease": "4.15.0-1008-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb" ] }, @@ -8606,21 +13476,21 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" ] }, { @@ -8629,20 +13499,20 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1009-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" ] }, { @@ -8650,10 +13520,10 @@ "kernelrelease": "4.15.0-1009-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" ] }, { @@ -8661,10 +13531,10 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" ] }, { @@ -8672,23 +13542,23 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1010-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" ] }, { @@ -8696,21 +13566,21 @@ "kernelrelease": "4.15.0-1010-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1010-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb" ] }, { @@ -8718,10 +13588,10 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb" ] }, { @@ -8729,9 +13599,9 @@ "kernelrelease": "4.15.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb" ] }, @@ -8741,31 +13611,31 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" ] }, { "kernelversion": "12", - "kernelrelease": "4.15.0-1012-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1012-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb" ] }, { "kernelversion": "12", - "kernelrelease": "4.15.0-1012-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1012-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" ] }, { @@ -8773,9 +13643,9 @@ "kernelrelease": "4.15.0-1012-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" ] }, @@ -8785,9 +13655,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb" ] }, { @@ -8795,10 +13665,10 @@ "kernelrelease": "4.15.0-1013-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb" ] }, { @@ -8806,32 +13676,32 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1014-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb" ] }, { @@ -8839,10 +13709,10 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" ] }, { @@ -8850,10 +13720,10 @@ "kernelrelease": "4.15.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" ] }, { @@ -8861,10 +13731,10 @@ "kernelrelease": "4.15.0-1015-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" ] }, { @@ -8872,32 +13742,32 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" ] }, { "kernelversion": "16", - "kernelrelease": "4.15.0-1016-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1016-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" ] }, { "kernelversion": "16", - "kernelrelease": "4.15.0-1016-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1016-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" ] }, { @@ -8905,10 +13775,10 @@ "kernelrelease": "4.15.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" ] }, { @@ -8916,10 +13786,10 @@ "kernelrelease": "4.15.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" ] }, { @@ -8927,8 +13797,8 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" ] @@ -8939,9 +13809,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" ] }, { @@ -8949,10 +13819,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" ] }, { @@ -8971,10 +13841,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" ] }, { @@ -8982,10 +13852,10 @@ "kernelrelease": "4.15.0-1018-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" ] }, { @@ -8993,21 +13863,21 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb" ] }, { @@ -9015,21 +13885,21 @@ "kernelrelease": "4.15.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb" ] }, { @@ -9037,10 +13907,10 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" ] }, { @@ -9048,10 +13918,10 @@ "kernelrelease": "4.15.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb" ] }, { @@ -9059,10 +13929,10 @@ "kernelrelease": "4.15.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { @@ -9072,8 +13942,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" ] }, { @@ -9081,10 +13951,10 @@ "kernelrelease": "4.15.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" ] }, { @@ -9092,10 +13962,10 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { @@ -9103,10 +13973,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" ] }, { @@ -9114,9 +13984,9 @@ "kernelrelease": "4.15.0-1021-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb" ] }, @@ -9125,10 +13995,10 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb" ] }, { @@ -9136,10 +14006,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" ] }, { @@ -9147,10 +14017,10 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" ] }, { @@ -9158,9 +14028,9 @@ "kernelrelease": "4.15.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" ] }, @@ -9169,32 +14039,32 @@ "kernelrelease": "4.15.0-1023-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-1023-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1023-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb" ] }, { @@ -9202,9 +14072,9 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" ] }, @@ -9213,32 +14083,32 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" ] }, { @@ -9246,9 +14116,9 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" ] }, @@ -9268,10 +14138,10 @@ "kernelrelease": "4.15.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" ] }, { @@ -9279,10 +14149,10 @@ "kernelrelease": "4.15.0-1026-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb" ] }, { @@ -9301,10 +14171,10 @@ "kernelrelease": "4.15.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, { @@ -9312,10 +14182,10 @@ "kernelrelease": "4.15.0-1027-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, { @@ -9324,9 +14194,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" ] }, { @@ -9336,19 +14206,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" ] }, { @@ -9356,21 +14215,32 @@ "kernelrelease": "4.15.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb" ] }, + { + "kernelversion": "29", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb" + ] + }, { "kernelversion": "28", "kernelrelease": "4.15.0-1028-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" ] }, { @@ -9378,9 +14248,9 @@ "kernelrelease": "4.15.0-1028-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb" ] }, @@ -9389,9 +14259,9 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" ] }, @@ -9402,8 +14272,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" ] }, { @@ -9411,8 +14281,8 @@ "kernelrelease": "4.15.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" ] @@ -9422,9 +14292,9 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" ] }, @@ -9444,10 +14314,10 @@ "kernelrelease": "4.15.0-1030-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" ] }, { @@ -9455,10 +14325,10 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb" ] }, { @@ -9467,9 +14337,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" ] }, { @@ -9478,8 +14348,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" ] }, @@ -9488,10 +14358,10 @@ "kernelrelease": "4.15.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" ] }, { @@ -9507,24 +14377,24 @@ }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1032-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { @@ -9532,10 +14402,10 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { @@ -9543,21 +14413,21 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1033-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1033-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" ] }, { @@ -9565,21 +14435,21 @@ "kernelrelease": "4.15.0-1033-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1033-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { @@ -9587,9 +14457,9 @@ "kernelrelease": "4.15.0-1033-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" ] }, @@ -9599,9 +14469,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" ] }, { @@ -9610,9 +14480,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" ] }, { @@ -9622,8 +14492,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" ] }, { @@ -9631,10 +14501,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" ] }, { @@ -9653,10 +14523,10 @@ "kernelrelease": "4.15.0-1034-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" ] }, { @@ -9664,10 +14534,10 @@ "kernelrelease": "4.15.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" ] }, { @@ -9675,10 +14545,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" ] }, { @@ -9686,10 +14556,10 @@ "kernelrelease": "4.15.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" ] }, { @@ -9699,8 +14569,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" ] }, { @@ -9708,10 +14578,10 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" ] }, { @@ -9719,9 +14589,9 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb" ] }, @@ -9731,9 +14601,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" ] }, { @@ -9741,10 +14611,10 @@ "kernelrelease": "4.15.0-1036-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" ] }, { @@ -9752,54 +14622,54 @@ "kernelrelease": "4.15.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1037-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1037-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1037-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" ] }, { @@ -9807,10 +14677,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" ] }, { @@ -9818,9 +14688,9 @@ "kernelrelease": "4.15.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb" ] }, @@ -9829,8 +14699,8 @@ "kernelrelease": "4.15.0-1038-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb" ] @@ -9840,10 +14710,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" ] }, { @@ -9851,10 +14721,10 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" ] }, { @@ -9862,10 +14732,10 @@ "kernelrelease": "4.15.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" ] }, { @@ -9873,32 +14743,32 @@ "kernelrelease": "4.15.0-1039-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1039-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1039-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1039-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1039-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] }, { @@ -9906,10 +14776,10 @@ "kernelrelease": "4.15.0-1040-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" ] }, { @@ -9917,9 +14787,9 @@ "kernelrelease": "4.15.0-1040-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" ] }, @@ -9928,21 +14798,21 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1041-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb" ] }, { @@ -9950,21 +14820,21 @@ "kernelrelease": "4.15.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" ] }, { @@ -9974,30 +14844,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1042-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1042-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" ] }, { @@ -10005,10 +14875,10 @@ "kernelrelease": "4.15.0-1042-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" ] }, { @@ -10016,9 +14886,9 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb" ] }, @@ -10027,9 +14897,9 @@ "kernelrelease": "4.15.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" ] }, @@ -10038,21 +14908,21 @@ "kernelrelease": "4.15.0-1043-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1044-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { @@ -10060,21 +14930,21 @@ "kernelrelease": "4.15.0-1044-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1044-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" ] }, { @@ -10082,10 +14952,10 @@ "kernelrelease": "4.15.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb" ] }, { @@ -10094,9 +14964,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" ] }, { @@ -10104,10 +14974,10 @@ "kernelrelease": "4.15.0-1045-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" ] }, { @@ -10115,10 +14985,10 @@ "kernelrelease": "4.15.0-1045-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" ] }, { @@ -10126,10 +14996,10 @@ "kernelrelease": "4.15.0-1045-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" ] }, { @@ -10137,10 +15007,10 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" ] }, { @@ -10148,10 +15018,21 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1046-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" ] }, { @@ -10165,25 +15046,14 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" ] }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-1046-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" - ] - }, { "kernelversion": "46", "kernelrelease": "4.15.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" ] }, @@ -10192,10 +15062,10 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" ] }, { @@ -10203,32 +15073,32 @@ "kernelrelease": "4.15.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-1047-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1047-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-1047-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1047-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" ] }, { @@ -10236,10 +15106,10 @@ "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" ] }, { @@ -10247,10 +15117,10 @@ "kernelrelease": "4.15.0-1048-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb" ] }, { @@ -10258,9 +15128,9 @@ "kernelrelease": "4.15.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" ] }, @@ -10269,32 +15139,32 @@ "kernelrelease": "4.15.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" ] }, { "kernelversion": "52", - "kernelrelease": "4.15.0-1049-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1049-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] }, { "kernelversion": "52", - "kernelrelease": "4.15.0-1049-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1049-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" ] }, { @@ -10302,32 +15172,32 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1050-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1050-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" ] }, { @@ -10335,8 +15205,8 @@ "kernelrelease": "4.15.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" ] @@ -10346,10 +15216,10 @@ "kernelrelease": "4.15.0-1050-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb" ] }, { @@ -10357,9 +15227,9 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" ] }, @@ -10368,10 +15238,10 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { @@ -10379,10 +15249,10 @@ "kernelrelease": "4.15.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" ] }, { @@ -10390,10 +15260,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" ] }, { @@ -10401,10 +15271,10 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" ] }, { @@ -10412,10 +15282,10 @@ "kernelrelease": "4.15.0-1052-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb" ] }, { @@ -10423,10 +15293,10 @@ "kernelrelease": "4.15.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" ] }, { @@ -10434,9 +15304,9 @@ "kernelrelease": "4.15.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" ] }, @@ -10445,10 +15315,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" ] }, { @@ -10456,10 +15326,10 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" ] }, { @@ -10467,9 +15337,9 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb" ] }, @@ -10478,10 +15348,10 @@ "kernelrelease": "4.15.0-1055-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb" ] }, { @@ -10501,8 +15371,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" ] }, @@ -10512,8 +15382,8 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb" ] }, @@ -10522,9 +15392,9 @@ "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" ] }, @@ -10533,10 +15403,10 @@ "kernelrelease": "4.15.0-1057-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb" ] }, { @@ -10555,10 +15425,10 @@ "kernelrelease": "4.15.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" ] }, { @@ -10566,10 +15436,10 @@ "kernelrelease": "4.15.0-1057-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" ] }, { @@ -10577,9 +15447,9 @@ "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" ] }, @@ -10588,10 +15458,10 @@ "kernelrelease": "4.15.0-1058-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" ] }, { @@ -10600,8 +15470,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" ] }, @@ -10610,10 +15480,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" ] }, { @@ -10621,10 +15491,10 @@ "kernelrelease": "4.15.0-1059-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb" ] }, { @@ -10633,8 +15503,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" ] }, @@ -10643,10 +15513,10 @@ "kernelrelease": "4.15.0-1059-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" ] }, { @@ -10654,12 +15524,12 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb" ] }, { @@ -10667,10 +15537,10 @@ "kernelrelease": "4.15.0-1060-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" ] }, { @@ -10679,9 +15549,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" ] }, { @@ -10700,9 +15570,9 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb" ] }, @@ -10711,10 +15581,10 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] }, { @@ -10723,9 +15593,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" ] }, { @@ -10733,9 +15603,9 @@ "kernelrelease": "4.15.0-1063-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb" ] }, @@ -10744,10 +15614,10 @@ "kernelrelease": "4.15.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb" ] }, { @@ -10755,9 +15625,9 @@ "kernelrelease": "4.15.0-1064-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb" ] }, @@ -10766,10 +15636,10 @@ "kernelrelease": "4.15.0-1064-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" ] }, { @@ -10778,9 +15648,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" ] }, { @@ -10788,10 +15658,10 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, { @@ -10799,8 +15669,8 @@ "kernelrelease": "4.15.0-1065-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb" ] @@ -10810,10 +15680,10 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb" ] }, { @@ -10822,9 +15692,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { @@ -10834,8 +15704,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" ] }, { @@ -10844,9 +15714,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" ] }, { @@ -10854,10 +15724,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb" ] }, { @@ -10867,8 +15737,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" ] }, { @@ -10876,8 +15746,8 @@ "kernelrelease": "4.15.0-1067-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" ] @@ -10887,10 +15757,10 @@ "kernelrelease": "4.15.0-1067-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" ] }, { @@ -10898,10 +15768,10 @@ "kernelrelease": "4.15.0-1067-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" ] }, { @@ -10909,10 +15779,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" ] }, { @@ -10920,10 +15790,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb" ] }, { @@ -10931,10 +15801,10 @@ "kernelrelease": "4.15.0-1069-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb" ] }, { @@ -10942,10 +15812,10 @@ "kernelrelease": "4.15.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" ] }, { @@ -10953,10 +15823,10 @@ "kernelrelease": "4.15.0-1069-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" ] }, { @@ -10965,9 +15835,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb" ] }, { @@ -10976,9 +15846,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb" ] }, { @@ -10987,8 +15857,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" ] }, @@ -10997,10 +15867,10 @@ "kernelrelease": "4.15.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" ] }, { @@ -11008,10 +15878,10 @@ "kernelrelease": "4.15.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" ] }, { @@ -11020,9 +15890,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb" ] }, { @@ -11030,10 +15900,10 @@ "kernelrelease": "4.15.0-1072-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" ] }, { @@ -11043,8 +15913,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb" ] }, { @@ -11054,8 +15924,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" ] }, { @@ -11063,9 +15933,9 @@ "kernelrelease": "4.15.0-1073-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" ] }, @@ -11074,10 +15944,10 @@ "kernelrelease": "4.15.0-1073-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" ] }, { @@ -11085,10 +15955,10 @@ "kernelrelease": "4.15.0-1074-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" ] }, { @@ -11096,10 +15966,10 @@ "kernelrelease": "4.15.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb" ] }, { @@ -11107,10 +15977,10 @@ "kernelrelease": "4.15.0-1075-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" ] }, { @@ -11119,8 +15989,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" ] }, @@ -11130,9 +16000,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" ] }, { @@ -11140,10 +16010,10 @@ "kernelrelease": "4.15.0-1076-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" ] }, { @@ -11152,20 +16022,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "4.15.0-1077-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" ] }, { @@ -11174,20 +16033,31 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" ] }, + { + "kernelversion": "82", + "kernelrelease": "4.15.0-1077-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" + ] + }, { "kernelversion": "79", "kernelrelease": "4.15.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb" ] }, { @@ -11195,8 +16065,8 @@ "kernelrelease": "4.15.0-1078-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" ] @@ -11206,10 +16076,10 @@ "kernelrelease": "4.15.0-1078-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" ] }, { @@ -11217,9 +16087,9 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" ] }, @@ -11228,10 +16098,10 @@ "kernelrelease": "4.15.0-1079-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb" ] }, { @@ -11241,8 +16111,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" ] }, { @@ -11250,10 +16120,10 @@ "kernelrelease": "4.15.0-1079-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" ] }, { @@ -11262,8 +16132,8 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" @@ -11274,10 +16144,10 @@ "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" ] }, { @@ -11285,10 +16155,10 @@ "kernelrelease": "4.15.0-1080-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" ] }, { @@ -11296,10 +16166,10 @@ "kernelrelease": "4.15.0-1080-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" ] }, { @@ -11307,10 +16177,10 @@ "kernelrelease": "4.15.0-1081-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb" ] }, { @@ -11318,9 +16188,9 @@ "kernelrelease": "4.15.0-1081-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" ] }, @@ -11330,9 +16200,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" ] }, { @@ -11340,10 +16210,10 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" ] }, { @@ -11351,10 +16221,10 @@ "kernelrelease": "4.15.0-1082-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb" ] }, { @@ -11384,10 +16254,10 @@ "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb" ] }, { @@ -11396,9 +16266,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" ] }, { @@ -11406,10 +16276,10 @@ "kernelrelease": "4.15.0-1083-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" ] }, { @@ -11417,8 +16287,8 @@ "kernelrelease": "4.15.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb" ] @@ -11429,9 +16299,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" ] }, { @@ -11439,10 +16309,10 @@ "kernelrelease": "4.15.0-1085-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" ] }, { @@ -11450,9 +16320,9 @@ "kernelrelease": "4.15.0-1085-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" ] }, @@ -11461,10 +16331,10 @@ "kernelrelease": "4.15.0-1086-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" ] }, { @@ -11472,10 +16342,10 @@ "kernelrelease": "4.15.0-1086-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" ] }, { @@ -11483,10 +16353,10 @@ "kernelrelease": "4.15.0-1086-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" ] }, { @@ -11494,10 +16364,10 @@ "kernelrelease": "4.15.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb" ] }, { @@ -11505,10 +16375,10 @@ "kernelrelease": "4.15.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" ] }, { @@ -11516,10 +16386,10 @@ "kernelrelease": "4.15.0-1087-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb" ] }, { @@ -11539,8 +16409,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" ] }, @@ -11549,10 +16419,10 @@ "kernelrelease": "4.15.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" ] }, { @@ -11560,10 +16430,10 @@ "kernelrelease": "4.15.0-1089-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" ] }, { @@ -11571,12 +16441,12 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb" ] }, { @@ -11584,10 +16454,10 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { @@ -11595,10 +16465,10 @@ "kernelrelease": "4.15.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" ] }, { @@ -11606,10 +16476,10 @@ "kernelrelease": "4.15.0-1090-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" ] }, { @@ -11617,10 +16487,10 @@ "kernelrelease": "4.15.0-1090-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb" ] }, { @@ -11628,9 +16498,9 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" ] }, @@ -11639,10 +16509,10 @@ "kernelrelease": "4.15.0-1091-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, { @@ -11650,9 +16520,9 @@ "kernelrelease": "4.15.0-1091-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb" ] }, @@ -11661,8 +16531,8 @@ "kernelrelease": "4.15.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" ] @@ -11672,10 +16542,10 @@ "kernelrelease": "4.15.0-1091-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" ] }, { @@ -11683,10 +16553,10 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" ] }, { @@ -11695,8 +16565,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" ] }, @@ -11705,10 +16575,10 @@ "kernelrelease": "4.15.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" ] }, { @@ -11716,10 +16586,10 @@ "kernelrelease": "4.15.0-1092-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" ] }, { @@ -11728,9 +16598,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" ] }, { @@ -11738,9 +16608,9 @@ "kernelrelease": "4.15.0-1093-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" ] }, @@ -11749,10 +16619,10 @@ "kernelrelease": "4.15.0-1093-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" ] }, { @@ -11760,10 +16630,10 @@ "kernelrelease": "4.15.0-1093-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" ] }, { @@ -11771,9 +16641,9 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" ] }, @@ -11782,10 +16652,10 @@ "kernelrelease": "4.15.0-1094-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" ] }, { @@ -11793,10 +16663,10 @@ "kernelrelease": "4.15.0-1094-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" ] }, { @@ -11805,9 +16675,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" ] }, { @@ -11815,10 +16685,10 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" ] }, { @@ -11827,9 +16697,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" ] }, { @@ -11837,10 +16707,10 @@ "kernelrelease": "4.15.0-1095-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb" ] }, { @@ -11848,32 +16718,32 @@ "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" ] }, { "kernelversion": "106", - "kernelrelease": "4.15.0-1096-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1096-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" ] }, { "kernelversion": "106", - "kernelrelease": "4.15.0-1096-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1096-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" ] }, { @@ -11881,10 +16751,10 @@ "kernelrelease": "4.15.0-1096-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" ] }, { @@ -11892,10 +16762,10 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" ] }, { @@ -11903,10 +16773,10 @@ "kernelrelease": "4.15.0-1097-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" ] }, { @@ -11914,9 +16784,9 @@ "kernelrelease": "4.15.0-1097-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb" ] }, @@ -11925,10 +16795,10 @@ "kernelrelease": "4.15.0-1097-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" ] }, { @@ -11936,9 +16806,9 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" ] }, @@ -11947,10 +16817,10 @@ "kernelrelease": "4.15.0-1098-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" ] }, { @@ -11959,9 +16829,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb" ] }, { @@ -11970,8 +16840,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb" ] }, @@ -11982,8 +16852,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb" ] }, { @@ -11991,10 +16861,10 @@ "kernelrelease": "4.15.0-1099-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb" ] }, { @@ -12015,8 +16885,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" ] }, { @@ -12024,10 +16894,10 @@ "kernelrelease": "4.15.0-1100-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" ] }, { @@ -12036,8 +16906,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" ] }, @@ -12047,8 +16917,8 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" ] }, @@ -12057,10 +16927,10 @@ "kernelrelease": "4.15.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" ] }, { @@ -12068,10 +16938,10 @@ "kernelrelease": "4.15.0-1101-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" ] }, { @@ -12079,10 +16949,10 @@ "kernelrelease": "4.15.0-1101-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb" ] }, { @@ -12090,32 +16960,32 @@ "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-1102-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1102-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-1102-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1102-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb" ] }, { @@ -12123,10 +16993,10 @@ "kernelrelease": "4.15.0-1102-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb" ] }, { @@ -12135,31 +17005,31 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1103-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1103-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1103-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1103-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb" ] }, { @@ -12167,10 +17037,10 @@ "kernelrelease": "4.15.0-1103-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" ] }, { @@ -12178,10 +17048,10 @@ "kernelrelease": "4.15.0-1104-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" ] }, { @@ -12189,10 +17059,10 @@ "kernelrelease": "4.15.0-1105-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" ] }, { @@ -12200,9 +17070,9 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" ] }, @@ -12211,10 +17081,10 @@ "kernelrelease": "4.15.0-1106-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" ] }, { @@ -12222,9 +17092,9 @@ "kernelrelease": "4.15.0-1106-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" ] }, @@ -12233,10 +17103,10 @@ "kernelrelease": "4.15.0-1106-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" ] }, { @@ -12244,10 +17114,10 @@ "kernelrelease": "4.15.0-1107-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" ] }, { @@ -12256,8 +17126,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" ] }, @@ -12266,10 +17136,10 @@ "kernelrelease": "4.15.0-1108-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb" ] }, { @@ -12277,10 +17147,10 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, { @@ -12288,10 +17158,10 @@ "kernelrelease": "4.15.0-1109-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" ] }, { @@ -12299,10 +17169,10 @@ "kernelrelease": "4.15.0-1109-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb" ] }, { @@ -12310,10 +17180,10 @@ "kernelrelease": "4.15.0-1109-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb" ] }, { @@ -12321,12 +17191,12 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" ] }, { @@ -12335,9 +17205,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" ] }, { @@ -12345,10 +17215,10 @@ "kernelrelease": "4.15.0-1110-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" ] }, { @@ -12356,10 +17226,10 @@ "kernelrelease": "4.15.0-1110-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" ] }, { @@ -12378,10 +17248,10 @@ "kernelrelease": "4.15.0-1111-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" ] }, { @@ -12389,8 +17259,8 @@ "kernelrelease": "4.15.0-1111-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" ] @@ -12400,10 +17270,10 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb" ] }, { @@ -12411,10 +17281,10 @@ "kernelrelease": "4.15.0-1112-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb" ] }, { @@ -12422,10 +17292,10 @@ "kernelrelease": "4.15.0-1112-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" ] }, { @@ -12434,9 +17304,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" ] }, { @@ -12445,9 +17315,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" ] }, { @@ -12455,10 +17325,10 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" ] }, { @@ -12466,10 +17336,10 @@ "kernelrelease": "4.15.0-1114-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" ] }, { @@ -12477,10 +17347,10 @@ "kernelrelease": "4.15.0-1114-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" ] }, { @@ -12488,10 +17358,10 @@ "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" ] }, { @@ -12499,10 +17369,10 @@ "kernelrelease": "4.15.0-1115-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb" ] }, { @@ -12521,9 +17391,9 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb" ] }, @@ -12532,10 +17402,10 @@ "kernelrelease": "4.15.0-1118-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb" ] }, { @@ -12543,10 +17413,10 @@ "kernelrelease": "4.15.0-1118-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb" ] }, { @@ -12554,10 +17424,10 @@ "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" ] }, { @@ -12565,9 +17435,9 @@ "kernelrelease": "4.15.0-1119-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" ] }, @@ -12576,12 +17446,12 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" ] }, { @@ -12589,10 +17459,10 @@ "kernelrelease": "4.15.0-1120-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" ] }, { @@ -12600,10 +17470,10 @@ "kernelrelease": "4.15.0-1121-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" ] }, { @@ -12612,9 +17482,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb" ] }, { @@ -12623,9 +17493,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" ] }, { @@ -12633,10 +17503,10 @@ "kernelrelease": "4.15.0-1123-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb" ] }, { @@ -12644,10 +17514,10 @@ "kernelrelease": "4.15.0-1124-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb" ] }, { @@ -12655,10 +17525,10 @@ "kernelrelease": "4.15.0-1125-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" ] }, { @@ -12666,9 +17536,9 @@ "kernelrelease": "4.15.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" ] }, @@ -12677,10 +17547,10 @@ "kernelrelease": "4.15.0-1126-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" ] }, { @@ -12688,10 +17558,10 @@ "kernelrelease": "4.15.0-1127-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb" ] }, { @@ -12699,10 +17569,10 @@ "kernelrelease": "4.15.0-1129-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" ] }, { @@ -12710,10 +17580,10 @@ "kernelrelease": "4.15.0-1133-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb" ] }, { @@ -12721,10 +17591,10 @@ "kernelrelease": "4.15.0-1136-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" ] }, { @@ -12733,9 +17603,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb" ] }, { @@ -12743,12 +17613,12 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb" ] }, { @@ -12756,12 +17626,12 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" ] }, { @@ -12771,10 +17641,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" ] }, { @@ -12782,12 +17652,12 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb" ] }, { @@ -12796,11 +17666,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" ] }, { @@ -12808,12 +17678,12 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb" ] }, { @@ -12821,12 +17691,12 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb" ] }, { @@ -12835,11 +17705,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" ] }, { @@ -12847,12 +17717,12 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb" ] }, { @@ -12860,12 +17730,12 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" ] }, { @@ -12873,12 +17743,12 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" ] }, { @@ -12886,12 +17756,12 @@ "kernelrelease": "4.15.0-136", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" ] }, { @@ -12900,11 +17770,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb" ] }, { @@ -12912,12 +17782,12 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb" ] }, { @@ -12925,11 +17795,11 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb" ] }, @@ -12938,12 +17808,12 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" ] }, { @@ -12951,12 +17821,12 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb" ] }, { @@ -12965,11 +17835,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb" ] }, { @@ -12977,12 +17847,12 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb" ] }, { @@ -12990,12 +17860,12 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb" ] }, { @@ -13003,12 +17873,12 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" ] }, { @@ -13017,11 +17887,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" ] }, { @@ -13029,12 +17899,12 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb" ] }, { @@ -13042,12 +17912,12 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb" ] }, { @@ -13055,12 +17925,12 @@ "kernelrelease": "4.15.0-158", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb" ] }, { @@ -13069,11 +17939,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb" ] }, { @@ -13081,11 +17951,11 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" ] }, @@ -13094,12 +17964,12 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" ] }, { @@ -13107,12 +17977,12 @@ "kernelrelease": "4.15.0-163", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb" ] }, { @@ -13120,12 +17990,12 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb" ] }, { @@ -13134,11 +18004,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" ] }, { @@ -13148,10 +18018,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" ] }, { @@ -13160,11 +18030,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb" ] }, { @@ -13172,11 +18042,11 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb" ] }, @@ -13185,10 +18055,10 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" ] @@ -13198,12 +18068,12 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb" ] }, { @@ -13213,9 +18083,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb" ] }, @@ -13224,12 +18094,12 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb" ] }, { @@ -13237,10 +18107,10 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb" ] @@ -13250,12 +18120,12 @@ "kernelrelease": "4.15.0-34", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb" ] }, { @@ -13265,9 +18135,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" ] }, @@ -13276,12 +18146,12 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" ] }, { @@ -13289,11 +18159,11 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb" ] }, @@ -13302,12 +18172,12 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb" ] }, { @@ -13315,12 +18185,12 @@ "kernelrelease": "4.15.0-44", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" ] }, { @@ -13328,12 +18198,12 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb" ] }, { @@ -13341,12 +18211,12 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb" ] }, { @@ -13354,12 +18224,12 @@ "kernelrelease": "4.15.0-47", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb" ] }, { @@ -13367,10 +18237,10 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb" ] @@ -13381,11 +18251,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" ] }, { @@ -13393,11 +18263,11 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" ] }, @@ -13406,12 +18276,12 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" ] }, { @@ -13419,12 +18289,12 @@ "kernelrelease": "4.15.0-55", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb" ] }, { @@ -13432,12 +18302,12 @@ "kernelrelease": "4.15.0-58", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" ] }, { @@ -13446,11 +18316,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb" ] }, { @@ -13458,12 +18328,12 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb" ] }, { @@ -13471,12 +18341,12 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb" ] }, { @@ -13486,10 +18356,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" ] }, { @@ -13497,12 +18367,12 @@ "kernelrelease": "4.15.0-66", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" ] }, { @@ -13510,12 +18380,12 @@ "kernelrelease": "4.15.0-69", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb" ] }, { @@ -13523,12 +18393,12 @@ "kernelrelease": "4.15.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" ] }, { @@ -13536,12 +18406,12 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb" ] }, { @@ -13549,12 +18419,12 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" ] }, { @@ -13562,12 +18432,12 @@ "kernelrelease": "4.15.0-76", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb" ] }, { @@ -13575,12 +18445,12 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb" ] }, { @@ -13588,12 +18458,12 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" ] }, { @@ -13601,11 +18471,11 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb" ] }, @@ -13614,10 +18484,10 @@ "kernelrelease": "4.15.0-99", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" ] @@ -13627,10 +18497,10 @@ "kernelrelease": "4.18.0-1004-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" ] }, { @@ -13639,8 +18509,8 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" ] }, @@ -13649,9 +18519,9 @@ "kernelrelease": "4.18.0-1006-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" ] }, @@ -13672,9 +18542,9 @@ "target": "ubuntu-azure-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" ] }, { @@ -13693,9 +18563,9 @@ "kernelrelease": "4.18.0-1008-azure-edge", "target": "ubuntu-azure-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb" ] }, @@ -13704,9 +18574,9 @@ "kernelrelease": "4.18.0-1008-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" ] }, @@ -13715,9 +18585,9 @@ "kernelrelease": "4.18.0-1011-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" ] }, @@ -13726,10 +18596,10 @@ "kernelrelease": "4.18.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb" ] }, { @@ -13737,10 +18607,10 @@ "kernelrelease": "4.18.0-1012-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -13750,8 +18620,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" ] }, { @@ -13759,10 +18629,10 @@ "kernelrelease": "4.18.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -13770,10 +18640,10 @@ "kernelrelease": "4.18.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb" ] }, { @@ -13781,10 +18651,10 @@ "kernelrelease": "4.18.0-1015-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" ] }, { @@ -13792,9 +18662,9 @@ "kernelrelease": "4.18.0-1018-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" ] }, @@ -13803,10 +18673,10 @@ "kernelrelease": "4.18.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb" ] }, { @@ -13814,10 +18684,10 @@ "kernelrelease": "4.18.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" ] }, { @@ -13825,10 +18695,10 @@ "kernelrelease": "4.18.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb" ] }, { @@ -13836,10 +18706,10 @@ "kernelrelease": "4.18.0-1024-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" ] }, { @@ -13847,8 +18717,8 @@ "kernelrelease": "4.18.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb" ] @@ -13858,11 +18728,11 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" ] }, @@ -13872,11 +18742,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" ] }, { @@ -13884,12 +18754,12 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" ] }, { @@ -13898,11 +18768,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" ] }, { @@ -13910,12 +18780,12 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb" ] }, { @@ -13923,12 +18793,12 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" ] }, { @@ -13936,12 +18806,12 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb" ] }, { @@ -13949,12 +18819,12 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" ] }, { @@ -13962,12 +18832,12 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" ] }, { @@ -13975,12 +18845,12 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" ] }, { @@ -13988,10 +18858,10 @@ "kernelrelease": "5.0.0-1007-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" ] }, { @@ -13999,10 +18869,10 @@ "kernelrelease": "5.0.0-1008-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb" ] }, { @@ -14010,10 +18880,10 @@ "kernelrelease": "5.0.0-1009-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" ] }, { @@ -14032,10 +18902,10 @@ "kernelrelease": "5.0.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -14043,10 +18913,10 @@ "kernelrelease": "5.0.0-1011-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" ] }, { @@ -14054,8 +18924,8 @@ "kernelrelease": "5.0.0-1012-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb" ] @@ -14065,10 +18935,10 @@ "kernelrelease": "5.0.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb" ] }, { @@ -14076,8 +18946,8 @@ "kernelrelease": "5.0.0-1013-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" ] @@ -14087,10 +18957,10 @@ "kernelrelease": "5.0.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb" ] }, { @@ -14098,10 +18968,10 @@ "kernelrelease": "5.0.0-1014-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" ] }, { @@ -14109,10 +18979,10 @@ "kernelrelease": "5.0.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -14120,9 +18990,9 @@ "kernelrelease": "5.0.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" ] }, @@ -14131,9 +19001,9 @@ "kernelrelease": "5.0.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" ] }, @@ -14153,10 +19023,10 @@ "kernelrelease": "5.0.0-1021-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" ] }, { @@ -14164,10 +19034,10 @@ "kernelrelease": "5.0.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -14175,10 +19045,10 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" ] }, { @@ -14187,9 +19057,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb" ] }, { @@ -14197,10 +19067,10 @@ "kernelrelease": "5.0.0-1023-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" ] }, { @@ -14209,9 +19079,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -14220,9 +19090,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" ] }, { @@ -14230,10 +19100,10 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" ] }, { @@ -14241,10 +19111,10 @@ "kernelrelease": "5.0.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" ] }, { @@ -14252,10 +19122,10 @@ "kernelrelease": "5.0.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -14263,10 +19133,10 @@ "kernelrelease": "5.0.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -14276,8 +19146,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" ] }, { @@ -14285,9 +19155,9 @@ "kernelrelease": "5.0.0-1027-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" ] }, @@ -14296,8 +19166,8 @@ "kernelrelease": "5.0.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" ] @@ -14308,9 +19178,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -14318,10 +19188,10 @@ "kernelrelease": "5.0.0-1029-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" ] }, { @@ -14329,10 +19199,10 @@ "kernelrelease": "5.0.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb" ] }, { @@ -14342,8 +19212,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" ] }, { @@ -14352,9 +19222,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb" ] }, { @@ -14362,10 +19232,10 @@ "kernelrelease": "5.0.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb" ] }, { @@ -14373,10 +19243,10 @@ "kernelrelease": "5.0.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" ] }, { @@ -14384,9 +19254,9 @@ "kernelrelease": "5.0.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" ] }, @@ -14395,10 +19265,10 @@ "kernelrelease": "5.0.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb" ] }, { @@ -14406,10 +19276,10 @@ "kernelrelease": "5.0.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb" ] }, { @@ -14417,12 +19287,12 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb" ] }, { @@ -14430,12 +19300,12 @@ "kernelrelease": "5.0.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb" ] }, { @@ -14444,11 +19314,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb" ] }, { @@ -14457,11 +19327,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb" ] }, { @@ -14469,12 +19339,12 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" ] }, { @@ -14482,12 +19352,12 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" ] }, { @@ -14495,12 +19365,12 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" ] }, { @@ -14508,12 +19378,12 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb" ] }, { @@ -14521,10 +19391,10 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" ] @@ -14534,12 +19404,12 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" ] }, { @@ -14547,12 +19417,12 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb" ] }, { @@ -14560,12 +19430,12 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" ] }, { @@ -14573,12 +19443,12 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb" ] }, { @@ -14586,12 +19456,12 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" ] }, { @@ -14599,9 +19469,9 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" ] }, @@ -14610,10 +19480,10 @@ "kernelrelease": "5.0.0-61-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb" ] }, { @@ -14622,8 +19492,8 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" ] }, @@ -14632,9 +19502,9 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" ] }, @@ -14643,10 +19513,10 @@ "kernelrelease": "5.0.0-65-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" ] }, { @@ -14660,37 +19530,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb" ] }, - { - "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb" - ] - }, { "kernelversion": "9~18.04.1", "kernelrelease": "5.3.0-1008-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { - "kernelversion": "10~18.04.1", - "kernelrelease": "5.3.0-1009-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelversion": "9~18.04.1", + "kernelrelease": "5.3.0-1008-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -14698,10 +19557,21 @@ "kernelrelease": "5.3.0-1009-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "10~18.04.1", + "kernelrelease": "5.3.0-1009-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -14709,10 +19579,10 @@ "kernelrelease": "5.3.0-1010-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -14721,9 +19591,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -14731,32 +19601,32 @@ "kernelrelease": "5.3.0-1011-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "5.3.0-1012-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1012-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "5.3.0-1012-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1012-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb" ] }, { @@ -14764,10 +19634,10 @@ "kernelrelease": "5.3.0-1013-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -14775,10 +19645,10 @@ "kernelrelease": "5.3.0-1013-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -14786,10 +19656,10 @@ "kernelrelease": "5.3.0-1014-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { @@ -14797,31 +19667,20 @@ "kernelrelease": "5.3.0-1014-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb" ] }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" - ] - }, { "kernelversion": "17~18.04.1", "kernelrelease": "5.3.0-1016-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb" ] }, @@ -14830,10 +19689,21 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" + ] + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.3.0-1016-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -14841,10 +19711,10 @@ "kernelrelease": "5.3.0-1016-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb" ] }, { @@ -14853,8 +19723,8 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" ] }, @@ -14863,8 +19733,8 @@ "kernelrelease": "5.3.0-1017-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" ] @@ -14874,10 +19744,10 @@ "kernelrelease": "5.3.0-1018-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -14885,10 +19755,10 @@ "kernelrelease": "5.3.0-1018-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -14896,9 +19766,9 @@ "kernelrelease": "5.3.0-1018-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" ] }, @@ -14908,9 +19778,9 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" ] }, { @@ -14918,10 +19788,10 @@ "kernelrelease": "5.3.0-1019-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" ] }, { @@ -14929,9 +19799,9 @@ "kernelrelease": "5.3.0-1020-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" ] }, @@ -14940,10 +19810,10 @@ "kernelrelease": "5.3.0-1020-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" ] }, { @@ -14951,9 +19821,9 @@ "kernelrelease": "5.3.0-1022-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb" ] }, @@ -14963,9 +19833,9 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" ] }, { @@ -14973,10 +19843,10 @@ "kernelrelease": "5.3.0-1024-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" ] }, { @@ -14984,10 +19854,10 @@ "kernelrelease": "5.3.0-1026-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" ] }, { @@ -14995,21 +19865,10 @@ "kernelrelease": "5.3.0-1027-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" ] }, { @@ -15018,20 +19877,31 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" ] }, + { + "kernelversion": "30~18.04.1", + "kernelrelease": "5.3.0-1028-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb" + ] + }, { "kernelversion": "29~18.04.1", "kernelrelease": "5.3.0-1028-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb" ] }, { @@ -15039,32 +19909,32 @@ "kernelrelease": "5.3.0-1029-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1030-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1030-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -15072,9 +19942,9 @@ "kernelrelease": "5.3.0-1030-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" ] }, @@ -15083,10 +19953,10 @@ "kernelrelease": "5.3.0-1031-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb" ] }, { @@ -15094,10 +19964,10 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" ] }, { @@ -15105,10 +19975,10 @@ "kernelrelease": "5.3.0-1032-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" ] }, { @@ -15116,10 +19986,10 @@ "kernelrelease": "5.3.0-1032-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -15127,10 +19997,10 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb" ] }, { @@ -15138,10 +20008,10 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" ] }, { @@ -15149,10 +20019,10 @@ "kernelrelease": "5.3.0-1034-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -15160,10 +20030,10 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" ] }, { @@ -15171,10 +20041,10 @@ "kernelrelease": "5.3.0-1035-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" ] }, { @@ -15182,12 +20052,12 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb" ] }, { @@ -15195,12 +20065,12 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb" ] }, { @@ -15208,12 +20078,12 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb" ] }, { @@ -15221,12 +20091,12 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" ] }, { @@ -15234,12 +20104,12 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" ] }, { @@ -15247,12 +20117,12 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" ] }, { @@ -15260,12 +20130,12 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb" ] }, { @@ -15275,10 +20145,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb" ] }, { @@ -15286,12 +20156,12 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb" ] }, { @@ -15299,12 +20169,12 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" ] }, { @@ -15313,11 +20183,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" ] }, { @@ -15325,11 +20195,11 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb" ] }, @@ -15338,11 +20208,11 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" ] }, @@ -15351,12 +20221,12 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb" ] }, { @@ -15364,12 +20234,12 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" ] }, { @@ -15377,12 +20247,12 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" ] }, { @@ -15390,12 +20260,12 @@ "kernelrelease": "5.3.0-65-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb" ] }, { @@ -15403,12 +20273,12 @@ "kernelrelease": "5.3.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb" ] }, { @@ -15416,12 +20286,12 @@ "kernelrelease": "5.3.0-67-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" ] }, { @@ -15430,9 +20300,9 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" ] @@ -15442,12 +20312,12 @@ "kernelrelease": "5.3.0-69-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" ] }, { @@ -15456,11 +20326,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb" ] }, { @@ -15468,12 +20338,12 @@ "kernelrelease": "5.3.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb" ] }, { @@ -15481,12 +20351,12 @@ "kernelrelease": "5.3.0-73-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb" ] }, { @@ -15494,11 +20364,11 @@ "kernelrelease": "5.3.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" ] }, @@ -15507,12 +20377,12 @@ "kernelrelease": "5.3.0-75-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb" ] }, { @@ -15520,12 +20390,12 @@ "kernelrelease": "5.3.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" ] }, { @@ -15539,37 +20409,37 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" ] }, - { - "kernelversion": "5", - "kernelrelease": "5.4.0-1004-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb" - ] - }, { "kernelversion": "5", "kernelrelease": "5.4.0-1004-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" ] }, + { + "kernelversion": "5", + "kernelrelease": "5.4.0-1004-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + ] + }, { "kernelversion": "8~18.04.1", "kernelrelease": "5.4.0-1007-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" ] }, { @@ -15577,10 +20447,10 @@ "kernelrelease": "5.4.0-1008-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" ] }, { @@ -15590,8 +20460,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -15600,9 +20470,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" ] }, { @@ -15610,10 +20480,10 @@ "kernelrelease": "5.4.0-1011-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb" ] }, { @@ -15621,10 +20491,10 @@ "kernelrelease": "5.4.0-1012-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb" ] }, { @@ -15632,10 +20502,10 @@ "kernelrelease": "5.4.0-1013-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" ] }, { @@ -15643,10 +20513,10 @@ "kernelrelease": "5.4.0-1014-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" ] }, { @@ -15665,10 +20535,10 @@ "kernelrelease": "5.4.0-1016-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb" ] }, { @@ -15676,10 +20546,10 @@ "kernelrelease": "5.4.0-1018-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -15687,32 +20557,32 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb" ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1021-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1021-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -15720,21 +20590,10 @@ "kernelrelease": "5.4.0-1021-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" ] }, { @@ -15742,10 +20601,10 @@ "kernelrelease": "5.4.0-1022-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -15754,9 +20613,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -15764,10 +20623,21 @@ "kernelrelease": "5.4.0-1022-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -15775,10 +20645,10 @@ "kernelrelease": "5.4.0-1022-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -15786,10 +20656,10 @@ "kernelrelease": "5.4.0-1023-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb" ] }, { @@ -15803,26 +20673,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" ] }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" - ] - }, { "kernelversion": "24~18.04.1", "kernelrelease": "5.4.0-1024-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -15830,54 +20689,43 @@ "kernelrelease": "5.4.0-1024-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" ] }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.4.0-1024-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb" + ] + }, { "kernelversion": "25~18.04.1", "kernelrelease": "5.4.0-1024-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" ] }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" - ] - }, { "kernelversion": "25~18.04.1", "kernelrelease": "5.4.0-1025-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { @@ -15885,10 +20733,21 @@ "kernelrelease": "5.4.0-1025-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { @@ -15897,20 +20756,31 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb" ] }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + ] + }, { "kernelversion": "26~18.04.1", "kernelrelease": "5.4.0-1025-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -15918,10 +20788,10 @@ "kernelrelease": "5.4.0-1026-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" ] }, { @@ -15929,10 +20799,10 @@ "kernelrelease": "5.4.0-1026-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -15940,10 +20810,10 @@ "kernelrelease": "5.4.0-1027-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { @@ -15951,10 +20821,10 @@ "kernelrelease": "5.4.0-1027-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { @@ -15962,32 +20832,32 @@ "kernelrelease": "5.4.0-1028-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1028-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1028-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -15996,20 +20866,31 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb" ] }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.4.0-1029-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" + ] + }, { "kernelversion": "31~18.04.1", "kernelrelease": "5.4.0-1029-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -16017,21 +20898,10 @@ "kernelrelease": "5.4.0-1029-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" ] }, { @@ -16039,32 +20909,32 @@ "kernelrelease": "5.4.0-1029-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1031-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1031-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" ] }, { @@ -16072,9 +20942,9 @@ "kernelrelease": "5.4.0-1032-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" ] }, @@ -16083,32 +20953,32 @@ "kernelrelease": "5.4.0-1032-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1033-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1033-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -16116,43 +20986,43 @@ "kernelrelease": "5.4.0-1033-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1033-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1033-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1033-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1033-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1033-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1033-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" ] }, { @@ -16161,9 +21031,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" ] }, { @@ -16171,32 +21041,32 @@ "kernelrelease": "5.4.0-1034-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1035-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1035-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -16205,8 +21075,8 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" ] }, @@ -16215,32 +21085,32 @@ "kernelrelease": "5.4.0-1035-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1036-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1036-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb" ] }, { @@ -16248,10 +21118,10 @@ "kernelrelease": "5.4.0-1036-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb" ] }, { @@ -16259,32 +21129,32 @@ "kernelrelease": "5.4.0-1036-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1037-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1037-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { @@ -16292,10 +21162,10 @@ "kernelrelease": "5.4.0-1037-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -16303,10 +21173,10 @@ "kernelrelease": "5.4.0-1037-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -16314,9 +21184,9 @@ "kernelrelease": "5.4.0-1037-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb" ] }, @@ -16325,21 +21195,10 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1038-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" ] }, { @@ -16347,43 +21206,43 @@ "kernelrelease": "5.4.0-1038-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" ] }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1038-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" + ] + }, { "kernelversion": "39~18.04.1", "kernelrelease": "5.4.0-1038-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" ] }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" - ] - }, { "kernelversion": "41~18.04.1", "kernelrelease": "5.4.0-1039-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { @@ -16391,10 +21250,21 @@ "kernelrelease": "5.4.0-1039-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1039-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -16402,10 +21272,10 @@ "kernelrelease": "5.4.0-1039-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" ] }, { @@ -16413,10 +21283,10 @@ "kernelrelease": "5.4.0-1039-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb" ] }, { @@ -16424,34 +21294,34 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" ] }, { "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1040-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1040-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1040-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1040-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" ] }, { @@ -16459,10 +21329,10 @@ "kernelrelease": "5.4.0-1040-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb" ] }, { @@ -16470,8 +21340,8 @@ "kernelrelease": "5.4.0-1041-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] @@ -16481,10 +21351,10 @@ "kernelrelease": "5.4.0-1041-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, { @@ -16492,10 +21362,10 @@ "kernelrelease": "5.4.0-1041-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { @@ -16505,30 +21375,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1042-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1042-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1042-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1042-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb" ] }, { @@ -16536,10 +21406,10 @@ "kernelrelease": "5.4.0-1042-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" ] }, { @@ -16547,10 +21417,10 @@ "kernelrelease": "5.4.0-1043-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -16558,10 +21428,10 @@ "kernelrelease": "5.4.0-1043-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -16575,26 +21445,37 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" ] }, + { + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-1043-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb" + ] + }, { "kernelversion": "46~18.04.1", "kernelrelease": "5.4.0-1043-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" ] }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1043-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1044-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -16602,21 +21483,10 @@ "kernelrelease": "5.4.0-1044-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb" - ] - }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -16624,10 +21494,10 @@ "kernelrelease": "5.4.0-1044-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" ] }, { @@ -16635,10 +21505,10 @@ "kernelrelease": "5.4.0-1044-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb" ] }, { @@ -16646,10 +21516,10 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" ] }, { @@ -16658,9 +21528,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -16668,9 +21538,9 @@ "kernelrelease": "5.4.0-1046-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" ] }, @@ -16679,10 +21549,10 @@ "kernelrelease": "5.4.0-1046-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb" ] }, { @@ -16690,21 +21560,10 @@ "kernelrelease": "5.4.0-1046-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" - ] - }, - { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" ] }, { @@ -16714,19 +21573,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" ] }, { - "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-azure-5.4", + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1047-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" ] }, { @@ -16735,9 +21594,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "50~18.04.1", + "kernelrelease": "5.4.0-1048-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" ] }, { @@ -16745,10 +21615,21 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" + ] + }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.4.0-1049-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" ] }, { @@ -16756,21 +21637,21 @@ "kernelrelease": "5.4.0-1049-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" ] }, { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1049-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" ] }, { @@ -16779,20 +21660,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -16800,32 +21670,32 @@ "kernelrelease": "5.4.0-1049-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1051-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1051-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" ] }, { @@ -16833,10 +21703,10 @@ "kernelrelease": "5.4.0-1051-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" ] }, { @@ -16844,32 +21714,32 @@ "kernelrelease": "5.4.0-1051-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1052-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb" ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1052-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb" ] }, { @@ -16877,32 +21747,32 @@ "kernelrelease": "5.4.0-1052-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1053-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1053-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -16910,32 +21780,32 @@ "kernelrelease": "5.4.0-1053-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1054-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1054-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { @@ -16943,10 +21813,10 @@ "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" ] }, { @@ -16954,10 +21824,10 @@ "kernelrelease": "5.4.0-1055-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { @@ -16965,10 +21835,10 @@ "kernelrelease": "5.4.0-1055-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { @@ -16976,10 +21846,21 @@ "kernelrelease": "5.4.0-1055-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" + ] + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1055-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { @@ -16988,20 +21869,20 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1056-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" ] }, { @@ -17009,21 +21890,10 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" ] }, { @@ -17033,8 +21903,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" ] }, { @@ -17042,10 +21912,10 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb" ] }, { @@ -17054,40 +21924,40 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb" ] }, - { - "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" - ] - }, { "kernelversion": "61~18.04.1", "kernelrelease": "5.4.0-1057-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" ] }, + { + "kernelversion": "61~18.04.1", + "kernelrelease": "5.4.0-1057-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" + ] + }, { "kernelversion": "61~18.04.3", "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" ] @@ -17097,21 +21967,32 @@ "kernelrelease": "5.4.0-1058-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb" ] }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1059-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + ] + }, { "kernelversion": "62~18.04.1", "kernelrelease": "5.4.0-1059-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -17119,21 +22000,21 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1059-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" ] }, { @@ -17141,21 +22022,10 @@ "kernelrelease": "5.4.0-1059-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" ] }, { @@ -17163,10 +22033,10 @@ "kernelrelease": "5.4.0-1060-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb" ] }, { @@ -17174,10 +22044,10 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" ] }, { @@ -17185,10 +22055,10 @@ "kernelrelease": "5.4.0-1062-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb" ] }, { @@ -17196,21 +22066,10 @@ "kernelrelease": "5.4.0-1062-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { @@ -17219,9 +22078,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -17229,43 +22088,54 @@ "kernelrelease": "5.4.0-1065-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" ] }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1065-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + ] + }, { "kernelversion": "71~18.04.1", "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1067-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1067-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { @@ -17273,10 +22143,10 @@ "kernelrelease": "5.4.0-1067-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" ] }, { @@ -17284,10 +22154,10 @@ "kernelrelease": "5.4.0-1068-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { @@ -17295,10 +22165,10 @@ "kernelrelease": "5.4.0-1068-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" ] }, { @@ -17306,10 +22176,10 @@ "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" ] }, { @@ -17317,11 +22187,11 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb" ] }, @@ -17330,10 +22200,10 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" ] }, { @@ -17341,42 +22211,20 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" ] }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb" - ] - }, { "kernelversion": "75~18.04.1", "kernelrelease": "5.4.0-1072-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" ] }, @@ -17385,10 +22233,10 @@ "kernelrelease": "5.4.0-1073-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb" ] }, { @@ -17397,9 +22245,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" ] }, { @@ -17407,9 +22255,9 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" ] }, @@ -17418,12 +22266,12 @@ "kernelrelease": "5.4.0-109-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" ] }, { @@ -17431,12 +22279,12 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb" ] }, { @@ -17444,12 +22292,12 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" ] }, { @@ -17457,12 +22305,12 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" ] }, { @@ -17470,12 +22318,12 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" ] }, { @@ -17483,12 +22331,12 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb" ] }, { @@ -17496,12 +22344,12 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb" ] }, { @@ -17509,12 +22357,12 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" ] }, { @@ -17522,12 +22370,12 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" ] }, { @@ -17538,9 +22386,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" ] }, { @@ -17548,9 +22396,9 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb" @@ -17561,10 +22409,10 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" ] @@ -17574,12 +22422,12 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" ] }, { @@ -17589,10 +22437,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb" ] }, { @@ -17600,12 +22448,12 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb" ] }, { @@ -17613,12 +22461,12 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" ] }, { @@ -17626,12 +22474,12 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" ] }, { @@ -17639,12 +22487,12 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" ] }, { @@ -17652,12 +22500,12 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb" ] }, { @@ -17665,12 +22513,12 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" ] }, { @@ -17678,12 +22526,12 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" ] }, { @@ -17692,11 +22540,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb" ] }, { @@ -17704,11 +22552,11 @@ "kernelrelease": "5.4.0-74-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" ] }, @@ -17717,11 +22565,11 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb" ] }, @@ -17730,12 +22578,12 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb" ] }, { @@ -17743,12 +22591,12 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" ] }, { @@ -17756,12 +22604,12 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb" ] }, { @@ -17769,12 +22617,12 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" ] }, { @@ -17782,12 +22630,12 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" ] }, { @@ -17795,12 +22643,12 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb" ] }, { @@ -17809,11 +22657,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" ] }, { @@ -17821,12 +22669,12 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" ] }, { @@ -17834,12 +22682,12 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb" ] }, { @@ -17848,11 +22696,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" ] }, { @@ -17860,8 +22708,8 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb" ] @@ -17873,8 +22721,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" ] }, { @@ -17882,32 +22730,32 @@ "kernelrelease": "4.15.0-1024-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-1025-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1025-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" ] }, { @@ -17915,21 +22763,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-1030-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" ] }, { @@ -17937,19 +22774,30 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" ] }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-1030-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" + ] + }, { "kernelversion": "32", "kernelrelease": "4.15.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" ] @@ -17959,10 +22807,10 @@ "kernelrelease": "4.15.0-1036-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb" ] }, { @@ -17970,12 +22818,12 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb" ] }, { @@ -17983,10 +22831,10 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb" ] @@ -17996,12 +22844,12 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb" ] }, { @@ -18009,12 +22857,12 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb" ] }, { @@ -18022,10 +22870,10 @@ "kernelrelease": "4.18.0-1009-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -18033,12 +22881,12 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" ] }, { @@ -18046,10 +22894,10 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" ] }, { @@ -18058,9 +22906,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" ] }, { @@ -18068,10 +22916,10 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" ] }, { @@ -18079,10 +22927,10 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" ] }, { @@ -18090,10 +22938,10 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" ] }, { @@ -18101,9 +22949,9 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" ] }, @@ -18112,10 +22960,10 @@ "kernelrelease": "5.0.0-58-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb" ] }, { @@ -18123,10 +22971,10 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" ] }, { @@ -18136,8 +22984,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" ] }, { @@ -18145,10 +22993,10 @@ "kernelrelease": "5.4.0-1018-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" ] }, { @@ -18156,9 +23004,9 @@ "kernelrelease": "5.4.0-1019-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" ] }, @@ -18167,10 +23015,10 @@ "kernelrelease": "5.4.0-1019-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" ] }, { @@ -18178,10 +23026,10 @@ "kernelrelease": "5.4.0-1020-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" ] }, { @@ -18189,12 +23037,12 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb" ] }, { @@ -18202,12 +23050,12 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb" ] }, { @@ -18216,8 +23064,8 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb" ] }, @@ -18226,10 +23074,10 @@ "kernelrelease": "4.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" ] }, { @@ -18238,8 +23086,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" ] }, @@ -18248,12 +23096,23 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { @@ -18261,10 +23120,21 @@ "kernelrelease": "5.15.0-1005-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb" ] }, { @@ -18272,8 +23142,8 @@ "kernelrelease": "5.15.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" ] @@ -18284,20 +23154,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" ] }, { @@ -18305,20 +23164,31 @@ "kernelrelease": "5.15.0-27", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb" ] }, + { + "kernelversion": "28", + "kernelrelease": "5.15.0-27-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" + ] + }, { "kernelversion": "29", "kernelrelease": "5.15.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb" ] }, @@ -18327,21 +23197,10 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" - ] - }, - { - "kernelversion": "3", - "kernelrelease": "5.15.0-1003-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" ] }, { @@ -18349,21 +23208,32 @@ "kernelrelease": "5.15.0-1003-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb" ] }, + { + "kernelversion": "3", + "kernelrelease": "5.15.0-1003-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" + ] + }, { "kernelversion": "5", "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" ] }, { @@ -18371,8 +23241,8 @@ "kernelrelease": "5.15.0-1004-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] @@ -18382,9 +23252,9 @@ "kernelrelease": "5.15.0-1004-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, @@ -18393,10 +23263,10 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -18404,10 +23274,10 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" ] }, { @@ -18415,10 +23285,21 @@ "kernelrelease": "5.15.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + ] + }, + { + "kernelversion": "4", + "kernelrelease": "5.15.0-1004-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, { @@ -18426,10 +23307,10 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" ] }, { @@ -18437,10 +23318,10 @@ "kernelrelease": "5.17.0-1003-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" ] }, { @@ -18450,8 +23331,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb" ] }, { @@ -18465,15 +23346,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb" ] }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + ] + }, { "kernelversion": "23~20.04.1", "kernelrelease": "5.11.0-1022-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { @@ -18481,31 +23373,20 @@ "kernelrelease": "5.11.0-1022-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" ] }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" - ] - }, { "kernelversion": "31~20.04.1", "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, @@ -18515,31 +23396,31 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1029-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1029-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" ] }, { @@ -18548,8 +23429,8 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" ] }, @@ -18560,8 +23441,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" ] }, { @@ -18570,9 +23451,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" ] }, { @@ -18580,12 +23461,12 @@ "kernelrelease": "5.11.0-40-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb" ] }, { @@ -18594,11 +23475,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb" ] }, { @@ -18608,10 +23489,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb" ] }, { @@ -18619,12 +23500,12 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb" ] }, { @@ -18632,12 +23513,12 @@ "kernelrelease": "5.11.0-60-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb" ] }, { @@ -18646,11 +23527,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb" ] }, { @@ -18659,9 +23540,9 @@ "target": "ubuntu-aws-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" ] }, { @@ -18669,10 +23550,10 @@ "kernelrelease": "5.13.0-1014-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" ] }, { @@ -18681,9 +23562,9 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" ] }, { @@ -18691,10 +23572,10 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" ] }, { @@ -18710,24 +23591,24 @@ }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1018-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1018-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, { @@ -18735,32 +23616,32 @@ "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -18768,10 +23649,10 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" ] }, { @@ -18779,8 +23660,8 @@ "kernelrelease": "5.13.0-1020-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb" ] @@ -18790,21 +23671,21 @@ "kernelrelease": "5.13.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1022-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1022-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" ] }, { @@ -18812,21 +23693,21 @@ "kernelrelease": "5.13.0-1022-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1022-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1022-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" ] }, { @@ -18835,8 +23716,8 @@ "target": "ubuntu-aws-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" ] }, @@ -18845,10 +23726,10 @@ "kernelrelease": "5.13.0-1023-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb" ] }, { @@ -18856,10 +23737,10 @@ "kernelrelease": "5.13.0-1023-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { @@ -18867,21 +23748,43 @@ "kernelrelease": "5.13.0-1023-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1024-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.13.0-1025-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1025-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" ] }, { @@ -18889,10 +23792,21 @@ "kernelrelease": "5.13.0-1025-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.13.0-1025-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" ] }, { @@ -18901,9 +23815,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" ] }, { @@ -18911,9 +23825,9 @@ "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" ] }, @@ -18923,11 +23837,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" ] }, { @@ -18935,11 +23849,11 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb" ] }, @@ -18949,11 +23863,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb" ] }, { @@ -18961,11 +23875,11 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb" ] }, @@ -18974,12 +23888,12 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" ] }, { @@ -18987,12 +23901,12 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" ] }, { @@ -19000,12 +23914,12 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb" ] }, { @@ -19013,12 +23927,12 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb" ] }, { @@ -19026,11 +23940,11 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" ] }, @@ -19039,12 +23953,12 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb" ] }, { @@ -19052,12 +23966,38 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "48~20.04.1", + "kernelrelease": "5.13.0-43-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" + ] + }, + { + "kernelversion": "49~20.04.1", + "kernelrelease": "5.13.0-44-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb" ] }, { @@ -19066,9 +24006,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" ] }, { @@ -19076,10 +24016,10 @@ "kernelrelease": "5.14.0-1007-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" ] }, { @@ -19087,10 +24027,10 @@ "kernelrelease": "5.14.0-1008-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb" ] }, { @@ -19098,9 +24038,9 @@ "kernelrelease": "5.14.0-1009-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" ] }, @@ -19109,10 +24049,10 @@ "kernelrelease": "5.14.0-1011-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" ] }, { @@ -19121,9 +24061,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" ] }, { @@ -19132,9 +24072,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb" ] }, { @@ -19142,9 +24082,9 @@ "kernelrelease": "5.14.0-1021-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" ] }, @@ -19153,10 +24093,10 @@ "kernelrelease": "5.14.0-1022-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" ] }, { @@ -19166,8 +24106,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb" ] }, { @@ -19175,9 +24115,9 @@ "kernelrelease": "5.14.0-1024-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" ] }, @@ -19186,9 +24126,9 @@ "kernelrelease": "5.14.0-1028-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb" ] }, @@ -19198,9 +24138,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" ] }, { @@ -19209,9 +24149,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb" ] }, { @@ -19221,8 +24161,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" ] }, { @@ -19231,8 +24171,8 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" ] }, @@ -19241,21 +24181,54 @@ "kernelrelease": "5.14.0-1035-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb" ] }, + { + "kernelversion": "40", + "kernelrelease": "5.14.0-1036-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb" + ] + }, + { + "kernelversion": "41", + "kernelrelease": "5.14.0-1037-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.14.0-1038-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb" + ] + }, { "kernelversion": "4~20.04.2", "kernelrelease": "5.15.0-1002-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb" ] }, { @@ -19263,10 +24236,10 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb" ] }, { @@ -19274,10 +24247,10 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" ] }, { @@ -19286,9 +24259,31 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "33~20.04.1", + "kernelrelease": "5.15.0-32-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { @@ -19296,34 +24291,34 @@ "kernelrelease": "5.4.0-100", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" ] }, { "kernelversion": "14", - "kernelrelease": "5.4.0-1013-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1013-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { "kernelversion": "14", - "kernelrelease": "5.4.0-1013-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1013-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { @@ -19331,10 +24326,10 @@ "kernelrelease": "5.4.0-1015-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" ] }, { @@ -19342,10 +24337,10 @@ "kernelrelease": "5.4.0-1015-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb" ] }, { @@ -19353,12 +24348,12 @@ "kernelrelease": "5.4.0-102", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb" ] }, { @@ -19366,10 +24361,10 @@ "kernelrelease": "5.4.0-1021-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" ] }, { @@ -19377,10 +24372,10 @@ "kernelrelease": "5.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" ] }, { @@ -19388,9 +24383,9 @@ "kernelrelease": "5.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, @@ -19400,8 +24395,8 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, @@ -19410,10 +24405,10 @@ "kernelrelease": "5.4.0-1034-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb" ] }, { @@ -19421,21 +24416,10 @@ "kernelrelease": "5.4.0-1034-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" ] }, { @@ -19444,20 +24428,20 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.4.0-1035-azure", - "target": "ubuntu-azure", + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -19466,31 +24450,42 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1035-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1039-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1039-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1039-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1039-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb" ] }, { @@ -19500,8 +24495,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb" ] }, { @@ -19509,10 +24504,32 @@ "kernelrelease": "5.4.0-1040-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.4.0-1041-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.4.0-1041-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, { @@ -19520,12 +24537,12 @@ "kernelrelease": "5.4.0-105", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" ] }, { @@ -19534,31 +24551,31 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1054-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1054-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" ] }, { @@ -19566,32 +24583,32 @@ "kernelrelease": "5.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-1055-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1055-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-1055-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1055-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" ] }, { @@ -19600,9 +24617,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" ] }, { @@ -19611,9 +24628,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" ] }, { @@ -19621,9 +24638,9 @@ "kernelrelease": "5.4.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" ] }, @@ -19632,32 +24649,43 @@ "kernelrelease": "5.4.0-1057-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" ] }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1058-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" + ] + }, { "kernelversion": "62", "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1058-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1059-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" ] }, { @@ -19667,19 +24695,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" ] }, { @@ -19687,21 +24704,21 @@ "kernelrelease": "5.4.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" ] }, { @@ -19709,34 +24726,34 @@ "kernelrelease": "5.4.0-106", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1060-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1060-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" ] }, { @@ -19755,21 +24772,21 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1061-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1061-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" ] }, { @@ -19777,32 +24794,21 @@ "kernelrelease": "5.4.0-1061-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1061-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1061-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" ] }, { @@ -19811,9 +24817,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" ] }, { @@ -19821,10 +24827,21 @@ "kernelrelease": "5.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" + ] + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" ] }, { @@ -19832,10 +24849,10 @@ "kernelrelease": "5.4.0-1062-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" ] }, { @@ -19843,10 +24860,10 @@ "kernelrelease": "5.4.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, { @@ -19855,20 +24872,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" ] }, { @@ -19876,10 +24882,10 @@ "kernelrelease": "5.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { @@ -19887,10 +24893,21 @@ "kernelrelease": "5.4.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + ] + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" ] }, { @@ -19898,10 +24915,21 @@ "kernelrelease": "5.4.0-1063-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb" + ] + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1063-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb" ] }, { @@ -19909,21 +24937,32 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1063-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1064-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb" + ] + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1064-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -19931,21 +24970,21 @@ "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-azure", - "target": "ubuntu-azure", + "kernelversion": "68", + "kernelrelease": "5.4.0-1064-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" ] }, { @@ -19959,26 +24998,59 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" ] }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1065-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb" + ] + }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1064-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1065-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "5.4.0-1065-gcp", - "target": "ubuntu-gcp", + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + ] + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" + ] + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" ] }, { @@ -19988,8 +25060,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" ] }, { @@ -19997,10 +25069,10 @@ "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" ] }, { @@ -20008,32 +25080,32 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1068-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1068-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb" ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1068-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1068-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" ] }, { @@ -20041,10 +25113,10 @@ "kernelrelease": "5.4.0-1068-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" ] }, { @@ -20052,10 +25124,21 @@ "kernelrelease": "5.4.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" + ] + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" ] }, { @@ -20063,21 +25146,21 @@ "kernelrelease": "5.4.0-1069-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws", + "kernelversion": "72", + "kernelrelease": "5.4.0-1069-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" ] }, { @@ -20085,34 +25168,23 @@ "kernelrelease": "5.4.0-1069-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb" ] }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1069-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb" - ] - }, { "kernelversion": "121", "kernelrelease": "5.4.0-107", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb" ] }, { @@ -20121,9 +25193,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" ] }, { @@ -20131,10 +25203,10 @@ "kernelrelease": "5.4.0-1070-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" ] }, { @@ -20144,8 +25216,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" ] }, { @@ -20154,9 +25226,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb" ] }, { @@ -20164,32 +25236,32 @@ "kernelrelease": "5.4.0-1071-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb" ] }, { @@ -20197,9 +25269,9 @@ "kernelrelease": "5.4.0-1071-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb" ] }, @@ -20208,10 +25280,54 @@ "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + ] + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1072-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" ] }, { @@ -20219,8 +25335,8 @@ "kernelrelease": "5.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" ] @@ -20230,10 +25346,10 @@ "kernelrelease": "5.4.0-1073-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" ] }, { @@ -20241,8 +25357,8 @@ "kernelrelease": "5.4.0-1073-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" ] @@ -20252,10 +25368,32 @@ "kernelrelease": "5.4.0-1073-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" + ] + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb" + ] + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" ] }, { @@ -20263,10 +25401,32 @@ "kernelrelease": "5.4.0-1074-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb" + ] + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" + ] + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb" ] }, { @@ -20274,10 +25434,10 @@ "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" ] }, { @@ -20285,10 +25445,10 @@ "kernelrelease": "5.4.0-1076-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" ] }, { @@ -20296,9 +25456,9 @@ "kernelrelease": "5.4.0-1078-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb" ] }, @@ -20307,10 +25467,10 @@ "kernelrelease": "5.4.0-1078-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb" ] }, { @@ -20318,12 +25478,23 @@ "kernelrelease": "5.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" + ] + }, + { + "kernelversion": "83", + "kernelrelease": "5.4.0-1080-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" ] }, { @@ -20331,12 +25502,12 @@ "kernelrelease": "5.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" ] }, { @@ -20345,11 +25516,37 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" + ] + }, + { + "kernelversion": "126", + "kernelrelease": "5.4.0-112", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb" + ] + }, + { + "kernelversion": "127", + "kernelrelease": "5.4.0-113", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb" ] }, { @@ -20357,12 +25554,12 @@ "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" ] }, { @@ -20370,11 +25567,11 @@ "kernelrelease": "5.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" ] }, @@ -20384,22 +25581,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-azure-5.8", - "target": "ubuntu-azure-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb" ] }, { @@ -20407,21 +25593,21 @@ "kernelrelease": "5.8.0-1033-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-azure-5.8", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.8.0-1033-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb" ] }, { @@ -20435,17 +25621,28 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb" ] }, + { + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1036-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" + ] + }, { "kernelversion": "75", "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" ] }, { @@ -20453,10 +25650,10 @@ "kernelrelease": "5.10.0-1013-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" ] }, { @@ -20476,9 +25673,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb" ] }, { @@ -20486,8 +25683,8 @@ "kernelrelease": "5.10.0-1017-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb" ] @@ -20497,10 +25694,10 @@ "kernelrelease": "5.10.0-1019-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" ] }, { @@ -20509,9 +25706,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" ] }, { @@ -20519,10 +25716,10 @@ "kernelrelease": "5.10.0-1022-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb" ] }, { @@ -20530,10 +25727,10 @@ "kernelrelease": "5.10.0-1023-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb" ] }, { @@ -20542,8 +25739,8 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb" ] }, @@ -20553,8 +25750,8 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb" ] }, @@ -20563,10 +25760,10 @@ "kernelrelease": "5.10.0-1029-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" ] }, { @@ -20574,9 +25771,9 @@ "kernelrelease": "5.10.0-1033-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" ] }, @@ -20586,8 +25783,8 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb" ] }, @@ -20596,10 +25793,10 @@ "kernelrelease": "5.10.0-1044-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" ] }, { @@ -20607,10 +25804,10 @@ "kernelrelease": "5.10.0-1045-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb" ] }, { @@ -20618,10 +25815,10 @@ "kernelrelease": "5.10.0-1049-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" ] }, { @@ -20631,8 +25828,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" ] }, { @@ -20640,10 +25837,10 @@ "kernelrelease": "5.10.0-1051-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" ] }, { @@ -20652,9 +25849,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" ] }, { @@ -20662,10 +25859,10 @@ "kernelrelease": "5.10.0-1055-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" ] }, { @@ -20673,10 +25870,10 @@ "kernelrelease": "5.10.0-1057-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb" ] }, { @@ -20684,32 +25881,32 @@ "kernelrelease": "5.11.0-1012-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1013-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb" ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1013-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, { @@ -20717,9 +25914,9 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" ] }, @@ -20728,10 +25925,10 @@ "kernelrelease": "5.11.0-1014-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb" ] }, { @@ -20739,21 +25936,10 @@ "kernelrelease": "5.11.0-1015-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb" ] }, { @@ -20761,21 +25947,21 @@ "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" ] }, { @@ -20783,10 +25969,10 @@ "kernelrelease": "5.11.0-1017-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -20795,9 +25981,20 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -20805,9 +26002,9 @@ "kernelrelease": "5.11.0-1017-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" ] }, @@ -20817,9 +26014,20 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" + ] + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -20827,10 +26035,10 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { @@ -20838,32 +26046,21 @@ "kernelrelease": "5.11.0-1019-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" - ] - }, { "kernelversion": "21~20.04.2", "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" ] }, { @@ -20872,9 +26069,9 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { @@ -20882,10 +26079,10 @@ "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { @@ -20904,32 +26101,32 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1021-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1021-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" ] }, { @@ -20938,9 +26135,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" ] }, { @@ -20948,21 +26145,21 @@ "kernelrelease": "5.11.0-1022-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { @@ -20970,21 +26167,21 @@ "kernelrelease": "5.11.0-1023-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1023-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -20993,9 +26190,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -21003,10 +26200,21 @@ "kernelrelease": "5.11.0-1024-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -21014,10 +26222,10 @@ "kernelrelease": "5.11.0-1025-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -21025,43 +26233,21 @@ "kernelrelease": "5.11.0-1025-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" ] }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb" - ] - }, { "kernelversion": "29~20.04.1", "kernelrelease": "5.11.0-1026-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb" ] }, { @@ -21069,10 +26255,10 @@ "kernelrelease": "5.11.0-1027-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { @@ -21080,10 +26266,21 @@ "kernelrelease": "5.11.0-1027-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { @@ -21091,10 +26288,10 @@ "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" ] }, { @@ -21102,10 +26299,10 @@ "kernelrelease": "5.11.0-1028-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb" ] }, { @@ -21113,12 +26310,12 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" ] }, { @@ -21126,12 +26323,12 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" ] }, { @@ -21139,12 +26336,12 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" ] }, { @@ -21152,12 +26349,12 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" ] }, { @@ -21165,12 +26362,12 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" ] }, { @@ -21178,12 +26375,12 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb" ] }, { @@ -21191,11 +26388,11 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb" ] }, @@ -21204,12 +26401,12 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb" ] }, { @@ -21217,12 +26414,12 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb" ] }, { @@ -21230,10 +26427,10 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" ] }, { @@ -21241,10 +26438,10 @@ "kernelrelease": "5.13.0-1008-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" ] }, { @@ -21252,10 +26449,10 @@ "kernelrelease": "5.13.0-1008-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb" ] }, { @@ -21263,10 +26460,10 @@ "kernelrelease": "5.13.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb" ] }, { @@ -21275,9 +26472,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" ] }, { @@ -21285,10 +26482,10 @@ "kernelrelease": "5.13.0-1009-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb" ] }, { @@ -21298,8 +26495,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { @@ -21308,9 +26505,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { @@ -21318,9 +26515,9 @@ "kernelrelease": "5.13.0-1009-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, @@ -21329,32 +26526,32 @@ "kernelrelease": "5.13.0-1010-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.13.0-1010-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1010-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.13.0-1010-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1010-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb" ] }, { @@ -21362,10 +26559,10 @@ "kernelrelease": "5.13.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" ] }, { @@ -21373,10 +26570,10 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" ] }, { @@ -21384,10 +26581,10 @@ "kernelrelease": "5.13.0-1011-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" ] }, { @@ -21395,10 +26592,10 @@ "kernelrelease": "5.13.0-1011-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" ] }, { @@ -21406,10 +26603,10 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb" ] }, { @@ -21417,10 +26614,10 @@ "kernelrelease": "5.13.0-1012-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" ] }, { @@ -21428,10 +26625,10 @@ "kernelrelease": "5.13.0-1012-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" ] }, { @@ -21440,9 +26637,9 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb" ] }, { @@ -21451,9 +26648,9 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" ] }, { @@ -21461,8 +26658,8 @@ "kernelrelease": "5.13.0-1014-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" ] @@ -21473,9 +26670,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" ] }, { @@ -21484,9 +26681,20 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { @@ -21494,21 +26702,21 @@ "kernelrelease": "5.13.0-1017-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "21", + "kernelrelease": "5.13.0-1017-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" ] }, { @@ -21516,54 +26724,43 @@ "kernelrelease": "5.13.0-1017-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb" ] }, - { - "kernelversion": "21", - "kernelrelease": "5.13.0-1017-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" - ] - }, { "kernelversion": "23~20.04.1", "kernelrelease": "5.13.0-1019-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.13.0-1019-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1019-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.13.0-1019-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1019-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" ] }, { @@ -21571,10 +26768,10 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb" ] }, { @@ -21582,10 +26779,10 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" ] }, { @@ -21593,9 +26790,9 @@ "kernelrelease": "5.13.0-1021-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" ] }, @@ -21604,10 +26801,10 @@ "kernelrelease": "5.13.0-1021-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" ] }, { @@ -21615,10 +26812,10 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" ] }, { @@ -21626,10 +26823,10 @@ "kernelrelease": "5.13.0-1022-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" ] }, { @@ -21637,9 +26834,9 @@ "kernelrelease": "5.13.0-1024-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" ] }, @@ -21648,10 +26845,10 @@ "kernelrelease": "5.13.0-1026-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" ] }, { @@ -21659,10 +26856,10 @@ "kernelrelease": "5.13.0-1027-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { @@ -21670,9 +26867,9 @@ "kernelrelease": "5.13.0-1028-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" ] }, @@ -21681,10 +26878,10 @@ "kernelrelease": "5.13.0-1029-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" ] }, { @@ -21692,12 +26889,12 @@ "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" ] }, { @@ -21706,11 +26903,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb" ] }, { @@ -21718,12 +26915,12 @@ "kernelrelease": "5.13.0-27-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb" ] }, { @@ -21732,10 +26929,10 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" ] }, @@ -21744,12 +26941,12 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb" ] }, { @@ -21758,9 +26955,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" ] }, { @@ -21768,9 +26965,9 @@ "kernelrelease": "5.14.0-1005-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" ] }, @@ -21779,10 +26976,10 @@ "kernelrelease": "5.14.0-1018-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb" ] }, { @@ -21801,9 +26998,9 @@ "kernelrelease": "5.14.0-1027-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb" ] }, @@ -21812,8 +27009,8 @@ "kernelrelease": "5.14.0-1031-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" ] @@ -21823,10 +27020,10 @@ "kernelrelease": "5.15.0-1003-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb" ] }, { @@ -21834,10 +27031,10 @@ "kernelrelease": "5.4.0-1005-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb" ] }, { @@ -21846,9 +27043,9 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" ] }, { @@ -21856,32 +27053,32 @@ "kernelrelease": "5.4.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1008-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1008-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1008-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1008-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" ] }, { @@ -21889,10 +27086,21 @@ "kernelrelease": "5.4.0-1009-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1010-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { @@ -21902,41 +27110,41 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1010-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1011-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb" ] }, { @@ -21945,20 +27153,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { @@ -21966,10 +27163,10 @@ "kernelrelease": "5.4.0-1011-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" ] }, { @@ -21978,42 +27175,31 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb" ] }, - { - "kernelversion": "13", - "kernelrelease": "5.4.0-1012-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" - ] - }, { "kernelversion": "13", "kernelrelease": "5.4.0-1012-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.4.0-1014-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "13", + "kernelrelease": "5.4.0-1012-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" ] }, { @@ -22022,20 +27208,20 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1014-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" ] }, { @@ -22043,32 +27229,43 @@ "kernelrelease": "5.4.0-1015-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1015-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb" ] }, { @@ -22076,10 +27273,10 @@ "kernelrelease": "5.4.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" ] }, { @@ -22089,8 +27286,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" ] }, { @@ -22098,10 +27295,10 @@ "kernelrelease": "5.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" ] }, { @@ -22110,20 +27307,20 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1018-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { @@ -22132,31 +27329,31 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1018-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" ] }, { @@ -22164,8 +27361,8 @@ "kernelrelease": "5.4.0-1018-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb" ] @@ -22176,20 +27373,20 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1019-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" ] }, { @@ -22205,13 +27402,13 @@ }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" ] }, { @@ -22220,20 +27417,9 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" ] }, { @@ -22241,10 +27427,10 @@ "kernelrelease": "5.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -22252,10 +27438,21 @@ "kernelrelease": "5.4.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + ] + }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" ] }, { @@ -22263,54 +27460,54 @@ "kernelrelease": "5.4.0-1020-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1021-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1021-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1021-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" ] }, { @@ -22318,10 +27515,10 @@ "kernelrelease": "5.4.0-1021-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb" ] }, { @@ -22329,32 +27526,32 @@ "kernelrelease": "5.4.0-1022-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1022-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { @@ -22362,10 +27559,10 @@ "kernelrelease": "5.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb" ] }, { @@ -22373,23 +27570,12 @@ "kernelrelease": "5.4.0-1022-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb" ] }, - { - "kernelversion": "23", - "kernelrelease": "5.4.0-1023-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb" - ] - }, { "kernelversion": "23", "kernelrelease": "5.4.0-1023-kvm", @@ -22401,59 +27587,70 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" ] }, + { + "kernelversion": "23", + "kernelrelease": "5.4.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb" + ] + }, { "kernelversion": "24", "kernelrelease": "5.4.0-1023-gkeop", "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1024-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1024-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1024-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -22461,32 +27658,32 @@ "kernelrelease": "5.4.0-1024-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1025-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" ] }, { @@ -22494,21 +27691,21 @@ "kernelrelease": "5.4.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { @@ -22516,10 +27713,10 @@ "kernelrelease": "5.4.0-1025-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb" ] }, { @@ -22527,10 +27724,10 @@ "kernelrelease": "5.4.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" ] }, { @@ -22539,9 +27736,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" ] }, { @@ -22551,8 +27748,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" ] }, { @@ -22560,31 +27757,20 @@ "kernelrelease": "5.4.0-1027-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" ] }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" - ] - }, { "kernelversion": "29", "kernelrelease": "5.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" ] }, @@ -22593,21 +27779,21 @@ "kernelrelease": "5.4.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.4.0-1029-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" ] }, { @@ -22615,10 +27801,21 @@ "kernelrelease": "5.4.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.4.0-1029-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" ] }, { @@ -22626,10 +27823,10 @@ "kernelrelease": "5.4.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb" ] }, { @@ -22639,8 +27836,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" ] }, { @@ -22649,9 +27846,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb" ] }, { @@ -22659,21 +27856,10 @@ "kernelrelease": "5.4.0-1031-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-1031-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { @@ -22681,21 +27867,21 @@ "kernelrelease": "5.4.0-1031-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.4.0-1032-oracle", - "target": "ubuntu-oracle", + "kernelversion": "32", + "kernelrelease": "5.4.0-1031-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { @@ -22703,21 +27889,21 @@ "kernelrelease": "5.4.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1033-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1032-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" ] }, { @@ -22725,10 +27911,21 @@ "kernelrelease": "5.4.0-1033-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.4.0-1033-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" ] }, { @@ -22737,9 +27934,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" ] }, { @@ -22747,32 +27944,32 @@ "kernelrelease": "5.4.0-1034-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1035-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1035-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb" ] }, { @@ -22781,9 +27978,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" ] }, { @@ -22791,8 +27988,8 @@ "kernelrelease": "5.4.0-1036-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" ] @@ -22803,8 +28000,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" ] }, @@ -22813,10 +28010,21 @@ "kernelrelease": "5.4.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" + ] + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1036-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" ] }, { @@ -22824,21 +28032,21 @@ "kernelrelease": "5.4.0-1036-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.4.0-1036-kvm", - "target": "ubuntu-kvm", + "kernelversion": "39", + "kernelrelease": "5.4.0-1037-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" ] }, { @@ -22852,26 +28060,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb" ] }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1037-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb" - ] - }, { "kernelversion": "40", "kernelrelease": "5.4.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb" ] }, { @@ -22879,32 +28076,32 @@ "kernelrelease": "5.4.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1037-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1037-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1037-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1037-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb" ] }, { @@ -22920,24 +28117,24 @@ }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1038-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1038-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1038-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1038-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb" ] }, { @@ -22945,8 +28142,8 @@ "kernelrelease": "5.4.0-1038-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" ] @@ -22958,8 +28155,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" ] }, { @@ -22968,31 +28165,31 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1039-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1039-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1039-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1039-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb" ] }, { @@ -23001,9 +28198,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" ] }, { @@ -23012,11 +28209,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" ] }, { @@ -23024,10 +28221,10 @@ "kernelrelease": "5.4.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb" ] }, { @@ -23035,21 +28232,21 @@ "kernelrelease": "5.4.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1041-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" ] }, { @@ -23057,21 +28254,21 @@ "kernelrelease": "5.4.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { "kernelversion": "43", - "kernelrelease": "5.4.0-1041-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { @@ -23079,10 +28276,10 @@ "kernelrelease": "5.4.0-1041-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb" ] }, { @@ -23090,21 +28287,21 @@ "kernelrelease": "5.4.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.4.0-1041-kvm", - "target": "ubuntu-kvm", + "kernelversion": "45", + "kernelrelease": "5.4.0-1042-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" ] }, { @@ -23113,20 +28310,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1042-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb" ] }, { @@ -23134,32 +28320,32 @@ "kernelrelease": "5.4.0-1042-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1043-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1043-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb" ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1043-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1043-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" ] }, { @@ -23167,43 +28353,43 @@ "kernelrelease": "5.4.0-1043-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1043-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1043-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1043-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1043-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1044-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1044-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" ] }, { @@ -23211,21 +28397,21 @@ "kernelrelease": "5.4.0-1044-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1044-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1044-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, { @@ -23233,10 +28419,10 @@ "kernelrelease": "5.4.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" ] }, { @@ -23245,9 +28431,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, { @@ -23255,10 +28441,10 @@ "kernelrelease": "5.4.0-1045-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, { @@ -23266,21 +28452,21 @@ "kernelrelease": "5.4.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" ] }, { "kernelversion": "48", - "kernelrelease": "5.4.0-1046-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1046-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb" ] }, { @@ -23288,21 +28474,21 @@ "kernelrelease": "5.4.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb" ] }, { "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1046-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { @@ -23310,9 +28496,9 @@ "kernelrelease": "5.4.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" ] }, @@ -23321,21 +28507,32 @@ "kernelrelease": "5.4.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb" ] }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + ] + }, { "kernelversion": "49", "kernelrelease": "5.4.0-1047-azure", "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb" ] }, { @@ -23343,21 +28540,21 @@ "kernelrelease": "5.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws", + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" ] }, { @@ -23365,32 +28562,21 @@ "kernelrelease": "5.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" ] }, { "kernelversion": "50", - "kernelrelease": "5.4.0-1048-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1048-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" ] }, { @@ -23398,32 +28584,32 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" ] }, { "kernelversion": "51", - "kernelrelease": "5.4.0-1049-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1049-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { "kernelversion": "51", - "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1049-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { @@ -23431,9 +28617,9 @@ "kernelrelease": "5.4.0-1049-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb" ] }, @@ -23442,10 +28628,10 @@ "kernelrelease": "5.4.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" ] }, { @@ -23454,8 +28640,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, @@ -23464,21 +28650,10 @@ "kernelrelease": "5.4.0-1049-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb" ] }, { @@ -23486,10 +28661,10 @@ "kernelrelease": "5.4.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb" ] }, { @@ -23497,10 +28672,21 @@ "kernelrelease": "5.4.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + ] + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { @@ -23509,9 +28695,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb" ] }, { @@ -23519,9 +28705,9 @@ "kernelrelease": "5.4.0-1051-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" ] }, @@ -23530,10 +28716,10 @@ "kernelrelease": "5.4.0-1052-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" ] }, { @@ -23541,10 +28727,10 @@ "kernelrelease": "5.4.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" ] }, { @@ -23552,32 +28738,32 @@ "kernelrelease": "5.4.0-1052-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1053-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1053-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" ] }, { @@ -23585,10 +28771,10 @@ "kernelrelease": "5.4.0-1053-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb" ] }, { @@ -23596,43 +28782,32 @@ "kernelrelease": "5.4.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" ] }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb" - ] - }, { "kernelversion": "57", "kernelrelease": "5.4.0-1054-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-aws", + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" ] }, { @@ -23640,10 +28815,21 @@ "kernelrelease": "5.4.0-1055-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" ] }, { @@ -23651,10 +28837,10 @@ "kernelrelease": "5.4.0-1055-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" ] }, { @@ -23663,9 +28849,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb" ] }, { @@ -23673,9 +28859,9 @@ "kernelrelease": "5.4.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" ] }, @@ -23685,8 +28871,8 @@ "target": "ubuntu-gke", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb" ] }, @@ -23695,9 +28881,9 @@ "kernelrelease": "5.4.0-1056-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" ] }, @@ -23706,10 +28892,21 @@ "kernelrelease": "5.4.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" + ] + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1057-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" ] }, { @@ -23717,21 +28914,21 @@ "kernelrelease": "5.4.0-1057-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-aws", + "kernelversion": "61", + "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { @@ -23739,32 +28936,21 @@ "kernelrelease": "5.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb" ] }, - { - "kernelversion": "61", - "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" - ] - }, { "kernelversion": "60", "kernelrelease": "5.4.0-1058-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb" ] }, { @@ -23772,10 +28958,10 @@ "kernelrelease": "5.4.0-1059-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" ] }, { @@ -23784,9 +28970,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" ] }, { @@ -23794,10 +28980,10 @@ "kernelrelease": "5.4.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" ] }, { @@ -23805,43 +28991,10 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" ] }, { @@ -23849,10 +29002,10 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" ] }, { @@ -23860,9 +29013,9 @@ "kernelrelease": "5.4.0-1067-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb" ] }, @@ -23872,8 +29025,8 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb" ] }, @@ -23882,9 +29035,9 @@ "kernelrelease": "5.4.0-1067-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb" ] }, @@ -23893,32 +29046,32 @@ "kernelrelease": "5.4.0-1067-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1068-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1068-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1068-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1068-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" ] }, { @@ -23926,32 +29079,10 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" ] }, { @@ -23960,9 +29091,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" ] }, { @@ -23971,8 +29102,8 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb" ] }, @@ -23981,10 +29112,10 @@ "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" ] }, { @@ -23992,11 +29123,11 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb" ] }, @@ -24005,12 +29136,12 @@ "kernelrelease": "5.4.0-29", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb" ] }, { @@ -24018,12 +29149,12 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb" ] }, { @@ -24031,12 +29162,12 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb" ] }, { @@ -24044,12 +29175,12 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb" ] }, { @@ -24058,10 +29189,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" ] }, @@ -24070,12 +29201,12 @@ "kernelrelease": "5.4.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" ] }, { @@ -24083,12 +29214,12 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb" ] }, { @@ -24096,12 +29227,12 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb" ] }, { @@ -24109,12 +29240,12 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb" ] }, { @@ -24122,12 +29253,12 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" ] }, { @@ -24135,11 +29266,11 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb" ] }, @@ -24148,12 +29279,12 @@ "kernelrelease": "5.4.0-52", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb" ] }, { @@ -24161,12 +29292,12 @@ "kernelrelease": "5.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" ] }, { @@ -24174,10 +29305,10 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb" ] @@ -24187,12 +29318,12 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb" ] }, { @@ -24201,11 +29332,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" ] }, { @@ -24213,12 +29344,12 @@ "kernelrelease": "5.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb" ] }, { @@ -24226,11 +29357,11 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" ] }, @@ -24240,11 +29371,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" ] }, { @@ -24252,12 +29383,12 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb" ] }, { @@ -24265,11 +29396,11 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" ] }, @@ -24278,12 +29409,12 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb" ] }, { @@ -24291,12 +29422,12 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" ] }, { @@ -24304,12 +29435,12 @@ "kernelrelease": "5.4.0-73", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb" ] }, { @@ -24317,12 +29448,12 @@ "kernelrelease": "5.4.0-74", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb" ] }, { @@ -24330,12 +29461,12 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb" ] }, { @@ -24343,11 +29474,11 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" ] }, @@ -24356,12 +29487,12 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb" ] }, { @@ -24369,12 +29500,12 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" ] }, { @@ -24383,11 +29514,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" ] }, { @@ -24395,12 +29526,12 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" ] }, { @@ -24408,12 +29539,12 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" ] }, { @@ -24422,11 +29553,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" ] }, { @@ -24434,12 +29565,12 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb" ] }, { @@ -24448,11 +29579,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" ] }, { @@ -24460,12 +29591,12 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" ] }, { @@ -24475,9 +29606,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" ] }, @@ -24486,10 +29617,10 @@ "kernelrelease": "5.6.0-1008-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" ] }, { @@ -24497,10 +29628,10 @@ "kernelrelease": "5.6.0-1010-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" ] }, { @@ -24509,9 +29640,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb" ] }, { @@ -24520,9 +29651,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb" ] }, { @@ -24530,9 +29661,9 @@ "kernelrelease": "5.6.0-1017-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb" ] }, @@ -24563,9 +29694,9 @@ "kernelrelease": "5.6.0-1023-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb" ] }, @@ -24574,10 +29705,10 @@ "kernelrelease": "5.6.0-1026-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb" ] }, { @@ -24585,9 +29716,9 @@ "kernelrelease": "5.6.0-1028-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" ] }, @@ -24596,10 +29727,10 @@ "kernelrelease": "5.6.0-1031-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb" ] }, { @@ -24607,10 +29738,10 @@ "kernelrelease": "5.6.0-1032-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb" ] }, { @@ -24618,10 +29749,10 @@ "kernelrelease": "5.6.0-1033-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" ] }, { @@ -24629,10 +29760,10 @@ "kernelrelease": "5.6.0-1039-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" ] }, { @@ -24640,8 +29771,8 @@ "kernelrelease": "5.6.0-1042-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" ] @@ -24651,10 +29782,10 @@ "kernelrelease": "5.6.0-1047-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" ] }, { @@ -24662,10 +29793,10 @@ "kernelrelease": "5.6.0-1048-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb" ] }, { @@ -24684,9 +29815,9 @@ "kernelrelease": "5.6.0-1052-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" ] }, @@ -24695,10 +29826,10 @@ "kernelrelease": "5.6.0-1053-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb" ] }, { @@ -24706,8 +29837,8 @@ "kernelrelease": "5.6.0-1054-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" ] @@ -24717,10 +29848,10 @@ "kernelrelease": "5.6.0-1055-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb" ] }, { @@ -24728,10 +29859,10 @@ "kernelrelease": "5.6.0-1056-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" ] }, { @@ -24740,9 +29871,9 @@ "target": "ubuntu-oracle-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb" ] }, { @@ -24750,10 +29881,10 @@ "kernelrelease": "5.8.0-1032-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" ] }, { @@ -24761,9 +29892,9 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" ] }, @@ -24772,9 +29903,9 @@ "kernelrelease": "5.8.0-1035-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb" ] }, @@ -24783,10 +29914,10 @@ "kernelrelease": "5.8.0-1035-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" ] }, { @@ -24794,32 +29925,32 @@ "kernelrelease": "5.8.0-1037-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws-5.8", - "target": "ubuntu-aws-5.8", + "kernelrelease": "5.8.0-1038-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelrelease": "5.8.0-1038-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { @@ -24827,10 +29958,10 @@ "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" ] }, { @@ -24838,10 +29969,10 @@ "kernelrelease": "5.8.0-1039-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" ] }, { @@ -24849,10 +29980,10 @@ "kernelrelease": "5.8.0-1039-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" ] }, { @@ -24860,9 +29991,9 @@ "kernelrelease": "5.8.0-1040-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" ] }, @@ -24871,10 +30002,10 @@ "kernelrelease": "5.8.0-1041-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb" ] }, { @@ -24882,10 +30013,10 @@ "kernelrelease": "5.8.0-1041-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" ] }, { @@ -24893,10 +30024,10 @@ "kernelrelease": "5.8.0-1042-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" ] }, { @@ -24905,9 +30036,9 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb" ] }, { @@ -24915,12 +30046,12 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" ] }, { @@ -24928,12 +30059,12 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" ] }, { @@ -24942,11 +30073,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb" ] }, { @@ -24955,11 +30086,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" ] }, { @@ -24967,12 +30098,12 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" ] }, { @@ -24980,12 +30111,12 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" ] }, { @@ -24993,11 +30124,11 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" ] }, @@ -25007,11 +30138,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb" ] }, { @@ -25019,10 +30150,10 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb" ] @@ -25032,11 +30163,11 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" ] }, @@ -25045,12 +30176,12 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" ] }, { @@ -25058,12 +30189,12 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" ] }, { @@ -25071,12 +30202,12 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb" ] }, { @@ -25085,11 +30216,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb" ] }, { @@ -25097,12 +30228,12 @@ "kernelrelease": "5.8.0-63-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb" ] }, { @@ -25110,10 +30241,10 @@ "kernelrelease": "5.10.0-1011-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" ] }, { @@ -25121,10 +30252,10 @@ "kernelrelease": "5.10.0-1032-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" ] }, { @@ -25133,9 +30264,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" ] }, { @@ -25143,10 +30274,10 @@ "kernelrelease": "5.10.0-1052-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" ] }, { @@ -25155,9 +30286,9 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb" ] }, { @@ -25165,9 +30296,9 @@ "kernelrelease": "5.11.0-1008-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" ] }, @@ -25177,9 +30308,9 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb" ] }, { @@ -25187,32 +30318,32 @@ "kernelrelease": "5.11.0-1009-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1007-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.13.0-1007-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1007-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelrelease": "5.13.0-1007-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, { @@ -25220,10 +30351,10 @@ "kernelrelease": "5.13.0-1013-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" ] }, { @@ -25231,10 +30362,10 @@ "kernelrelease": "5.13.0-1021-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" ] }, { @@ -25242,9 +30373,9 @@ "kernelrelease": "5.13.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb" ] }, @@ -25253,10 +30384,10 @@ "kernelrelease": "5.14.0-1010-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" ] }, { @@ -25264,10 +30395,10 @@ "kernelrelease": "5.14.0-1034-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb" ] }, { @@ -25275,10 +30406,10 @@ "kernelrelease": "5.4.0-1064-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb" ] }, { @@ -25287,9 +30418,9 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" ] }, { @@ -25297,10 +30428,10 @@ "kernelrelease": "5.4.0-1069-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" ] }, { @@ -25308,9 +30439,9 @@ "kernelrelease": "5.4.0-1074-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb" ] }, @@ -25319,9 +30450,9 @@ "kernelrelease": "5.4.0-1076-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" ] }, @@ -25330,12 +30461,12 @@ "kernelrelease": "5.4.0-54", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" ] }, { @@ -25343,12 +30474,12 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" ] }, { @@ -25356,10 +30487,10 @@ "kernelrelease": "5.6.0-1021-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" ] }, { @@ -25367,10 +30498,10 @@ "kernelrelease": "5.6.0-1027-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" ] }, { @@ -25378,9 +30509,9 @@ "kernelrelease": "5.6.0-1034-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb" ] }, @@ -25389,10 +30520,10 @@ "kernelrelease": "5.6.0-1035-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb" ] }, { @@ -25400,10 +30531,10 @@ "kernelrelease": "5.6.0-1036-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" ] }, { @@ -25411,10 +30542,10 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" ] }, { @@ -25422,10 +30553,10 @@ "kernelrelease": "5.8.0-1042-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" ] }, { @@ -25433,12 +30564,12 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb" ] }, { @@ -25446,10 +30577,10 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" ] @@ -25459,12 +30590,12 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" ] }, { @@ -25472,12 +30603,12 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" ] }, { @@ -25485,23 +30616,12 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" ] }, { @@ -25510,9 +30630,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { @@ -25520,10 +30640,21 @@ "kernelrelease": "5.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { @@ -25531,10 +30662,10 @@ "kernelrelease": "5.4.0-1009-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb" ] }, { @@ -25542,10 +30673,10 @@ "kernelrelease": "5.4.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb" ] }, { @@ -25553,12 +30684,12 @@ "kernelrelease": "5.4.0-26", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" ] }, { @@ -25566,10 +30697,10 @@ "kernelrelease": "5.6.0-1007-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" ] }, { @@ -25577,10 +30708,10 @@ "kernelrelease": "5.11.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb" ] }, { @@ -25589,31 +30720,31 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { @@ -25621,21 +30752,10 @@ "kernelrelease": "5.11.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb" ] }, { @@ -25643,21 +30763,32 @@ "kernelrelease": "5.11.0-1027-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb" + ] + }, { "kernelversion": "30", "kernelrelease": "5.11.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb" ] }, { @@ -25665,10 +30796,10 @@ "kernelrelease": "5.11.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" ] }, { @@ -25677,11 +30808,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" ] }, { @@ -25691,8 +30822,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" ] }, { @@ -25700,21 +30831,10 @@ "kernelrelease": "5.11.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.11.0-1006-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" ] }, { @@ -25722,10 +30842,10 @@ "kernelrelease": "5.11.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" ] }, { @@ -25734,9 +30854,20 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.11.0-1006-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" ] }, { @@ -25744,12 +30875,12 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" ] }, { @@ -25757,10 +30888,10 @@ "kernelrelease": "5.13.0-1005-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" ] }, { @@ -25768,32 +30899,32 @@ "kernelrelease": "5.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1006-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1006-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1006-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1006-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb" ] }, { @@ -25801,32 +30932,32 @@ "kernelrelease": "5.13.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1007-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1007-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1007-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1007-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" ] }, { @@ -25835,20 +30966,20 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1008-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb" ] }, { @@ -25856,43 +30987,43 @@ "kernelrelease": "5.13.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1010-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" ] }, { @@ -25901,9 +31032,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb" ] }, { @@ -25912,9 +31043,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" ] }, { @@ -25924,8 +31055,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb" ] }, { @@ -25933,10 +31064,10 @@ "kernelrelease": "5.13.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb" ] }, { @@ -25945,9 +31076,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, { @@ -25955,10 +31086,10 @@ "kernelrelease": "5.13.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb" ] }, { @@ -25966,10 +31097,10 @@ "kernelrelease": "5.13.0-1013-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" ] }, { @@ -25977,8 +31108,8 @@ "kernelrelease": "5.13.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" ] @@ -25988,10 +31119,10 @@ "kernelrelease": "5.13.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" ] }, { @@ -25999,10 +31130,10 @@ "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" ] }, { @@ -26010,10 +31141,10 @@ "kernelrelease": "5.13.0-1014-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb" ] }, { @@ -26021,10 +31152,10 @@ "kernelrelease": "5.13.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb" ] }, { @@ -26033,9 +31164,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb" ] }, { @@ -26043,10 +31174,10 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" ] }, { @@ -26054,32 +31185,32 @@ "kernelrelease": "5.13.0-1018-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { @@ -26087,32 +31218,32 @@ "kernelrelease": "5.13.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1020-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, { @@ -26120,10 +31251,10 @@ "kernelrelease": "5.13.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" ] }, { @@ -26131,10 +31262,10 @@ "kernelrelease": "5.13.0-1022-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb" ] }, { @@ -26143,9 +31274,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" ] }, { @@ -26153,10 +31284,10 @@ "kernelrelease": "5.13.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb" ] }, { @@ -26166,19 +31297,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1023-gcp", - "target": "ubuntu-gcp", + "kernelversion": "24", + "kernelrelease": "5.13.0-1023-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb" ] }, { @@ -26193,14 +31324,47 @@ ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelversion": "28", + "kernelrelease": "5.13.0-1023-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb" + ] + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1024-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1024-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.13.0-1024-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb" ] }, { @@ -26208,21 +31372,54 @@ "kernelrelease": "5.13.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb" ] }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-1024-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" + ] + }, + { + "kernelversion": "27", + "kernelrelease": "5.13.0-1025-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-1025-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" + ] + }, { "kernelversion": "30", "kernelrelease": "5.13.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" ] }, { @@ -26230,9 +31427,9 @@ "kernelrelease": "5.13.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" ] }, @@ -26241,10 +31438,21 @@ "kernelrelease": "5.13.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-1026-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb" ] }, { @@ -26252,23 +31460,34 @@ "kernelrelease": "5.13.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" ] }, + { + "kernelversion": "34", + "kernelrelease": "5.13.0-1029-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" + ] + }, { "kernelversion": "31", "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" ] }, { @@ -26276,12 +31495,12 @@ "kernelrelease": "5.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb" ] }, { @@ -26289,12 +31508,12 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb" ] }, { @@ -26302,12 +31521,12 @@ "kernelrelease": "5.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" ] }, { @@ -26315,12 +31534,12 @@ "kernelrelease": "5.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb" ] }, { @@ -26329,10 +31548,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" ] }, @@ -26341,12 +31560,12 @@ "kernelrelease": "5.13.0-38", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb" ] }, { @@ -26354,12 +31573,12 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb" ] }, { @@ -26367,12 +31586,51 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" + ] + }, + { + "kernelversion": "47", + "kernelrelease": "5.13.0-42", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb" + ] + }, + { + "kernelversion": "48", + "kernelrelease": "5.13.0-43", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.13.0-44", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb" ] }, { @@ -26381,9 +31639,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" ] }, { @@ -26392,8 +31650,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" ] }, @@ -26402,10 +31660,10 @@ "kernelrelease": "5.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb" ] }, { @@ -26413,10 +31671,10 @@ "kernelrelease": "5.13.0-1012-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" ] }, { @@ -26424,9 +31682,9 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" ] }, @@ -26435,10 +31693,10 @@ "kernelrelease": "5.13.0-1016-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" ] }, { @@ -26447,9 +31705,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb" ] }, { @@ -26459,8 +31717,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" ] }, { @@ -26469,9 +31727,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" ] }, { @@ -26490,10 +31748,10 @@ "kernelrelease": "5.13.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" ] }, { @@ -26501,10 +31759,10 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb" ] }, { @@ -26512,10 +31770,10 @@ "kernelrelease": "5.13.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb" ] }, { @@ -26523,10 +31781,10 @@ "kernelrelease": "5.13.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" ] }, { @@ -26534,12 +31792,12 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb" ] }, { @@ -26548,9 +31806,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" ] @@ -26560,11 +31818,11 @@ "kernelrelease": "5.13.0-23", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb" ] }, @@ -26573,12 +31831,12 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" ] }, { @@ -26586,12 +31844,12 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb" ] }, { @@ -26599,12 +31857,12 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" ] }, { @@ -26612,12 +31870,12 @@ "kernelrelease": "5.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb" ] }, { @@ -26625,9 +31883,9 @@ "kernelrelease": "5.13.0-1013-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb" ] }, @@ -26636,12 +31894,12 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" ] }, { @@ -26649,32 +31907,32 @@ "kernelrelease": "5.13.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.13.0-1005-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1005-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.13.0-1005-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" ] }, { @@ -26683,8 +31941,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" ] }, @@ -26693,12 +31951,12 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" ] }, { @@ -26706,10 +31964,32 @@ "kernelrelease": "5.15.0-1004-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1005-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1006-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { @@ -26717,20 +31997,64 @@ "kernelrelease": "5.15.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1006-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1006-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1007-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1007-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb" + ] + }, { "kernelversion": "30", "kernelrelease": "5.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb" ] }, @@ -26739,8 +32063,8 @@ "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" ] @@ -26750,10 +32074,54 @@ "kernelrelease": "5.15.0-30-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.15.0-32", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.15.0-32-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" ] }, { @@ -26761,21 +32129,32 @@ "kernelrelease": "5.17.0-1004-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" ] }, { - "kernelversion": "2", - "kernelrelease": "5.15.0-1002-ibm", - "target": "ubuntu-ibm", + "kernelversion": "5", + "kernelrelease": "5.17.0-1005-oem-5.17", + "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.17.0-1006-oem-5.17", + "target": "ubuntu-oem-5.17", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb" ] }, { @@ -26784,9 +32163,20 @@ "target": "ubuntu-gke", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" + ] + }, + { + "kernelversion": "2", + "kernelrelease": "5.15.0-1002-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb" ] }, { @@ -26794,10 +32184,10 @@ "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" ] }, { @@ -26805,10 +32195,10 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" ] }, { @@ -26816,10 +32206,10 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" ] }, { @@ -26827,10 +32217,10 @@ "kernelrelease": "4.15.0-1043-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" ] }, { @@ -26838,12 +32228,12 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" ] }, { @@ -26851,12 +32241,12 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb" ] }, { @@ -26864,12 +32254,12 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb" ] }, { @@ -26877,12 +32267,12 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" ] }, { @@ -26890,12 +32280,12 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" ] }, { @@ -26903,12 +32293,12 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" ] }, { @@ -26917,10 +32307,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb" ] }, @@ -26929,12 +32319,12 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" ] }, { @@ -26942,12 +32332,12 @@ "kernelrelease": "3.13.0-110", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" ] }, { @@ -26955,12 +32345,12 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" ] }, { @@ -26969,11 +32359,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" ] }, { @@ -26981,11 +32371,11 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb" ] }, @@ -26994,12 +32384,12 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb" ] }, { @@ -27007,12 +32397,12 @@ "kernelrelease": "3.13.0-119", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" ] }, { @@ -27022,10 +32412,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb" ] }, { @@ -27033,12 +32423,12 @@ "kernelrelease": "3.13.0-123", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" ] }, { @@ -27046,11 +32436,11 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" ] }, @@ -27059,12 +32449,12 @@ "kernelrelease": "3.13.0-126", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" ] }, { @@ -27072,12 +32462,12 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" ] }, { @@ -27085,12 +32475,12 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" ] }, { @@ -27098,12 +32488,12 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb" ] }, { @@ -27111,12 +32501,12 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" ] }, { @@ -27124,12 +32514,12 @@ "kernelrelease": "3.13.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" ] }, { @@ -27151,11 +32541,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" ] }, { @@ -27163,12 +32553,12 @@ "kernelrelease": "3.13.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb" ] }, { @@ -27176,12 +32566,12 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb" ] }, { @@ -27189,12 +32579,12 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb" ] }, { @@ -27203,11 +32593,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" ] }, { @@ -27215,12 +32605,12 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" ] }, { @@ -27229,11 +32619,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb" ] }, { @@ -27241,12 +32631,12 @@ "kernelrelease": "3.13.0-151", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb" ] }, { @@ -27254,12 +32644,12 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" ] }, { @@ -27267,12 +32657,12 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" ] }, { @@ -27280,11 +32670,11 @@ "kernelrelease": "3.13.0-156", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb" ] }, @@ -27293,12 +32683,12 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" ] }, { @@ -27306,12 +32696,12 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb" ] }, { @@ -27319,12 +32709,12 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb" ] }, { @@ -27332,11 +32722,11 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" ] }, @@ -27346,11 +32736,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb" ] }, { @@ -27358,12 +32748,12 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" ] }, { @@ -27371,12 +32761,12 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" ] }, { @@ -27384,12 +32774,12 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" ] }, { @@ -27397,12 +32787,12 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb" ] }, { @@ -27410,12 +32800,12 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" ] }, { @@ -27423,11 +32813,11 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb" ] }, @@ -27437,11 +32827,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb" ] }, { @@ -27451,10 +32841,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb" ] }, { @@ -27462,12 +32852,12 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb" ] }, { @@ -27475,12 +32865,12 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb" ] }, { @@ -27488,12 +32878,12 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb" ] }, { @@ -27501,12 +32891,12 @@ "kernelrelease": "3.13.0-34", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb" ] }, { @@ -27514,12 +32904,12 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb" ] }, { @@ -27527,12 +32917,12 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" ] }, { @@ -27541,11 +32931,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" ] }, { @@ -27553,12 +32943,12 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb" ] }, { @@ -27566,12 +32956,12 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb" ] }, { @@ -27579,12 +32969,12 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" ] }, { @@ -27592,12 +32982,12 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" ] }, { @@ -27606,11 +32996,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb" ] }, { @@ -27619,11 +33009,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb" ] }, { @@ -27631,12 +33021,12 @@ "kernelrelease": "3.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb" ] }, { @@ -27644,12 +33034,12 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, { @@ -27657,12 +33047,12 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb" ] }, { @@ -27671,11 +33061,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" ] }, { @@ -27683,10 +33073,10 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" ] @@ -27696,12 +33086,12 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" ] }, { @@ -27709,12 +33099,12 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb" ] }, { @@ -27722,12 +33112,12 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" ] }, { @@ -27735,12 +33125,12 @@ "kernelrelease": "3.13.0-58", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb" ] }, { @@ -27748,12 +33138,12 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb" ] }, { @@ -27761,12 +33151,12 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb" ] }, { @@ -27774,12 +33164,12 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" ] }, { @@ -27787,12 +33177,12 @@ "kernelrelease": "3.13.0-63", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb" ] }, { @@ -27800,12 +33190,12 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" ] }, { @@ -27813,12 +33203,12 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" ] }, { @@ -27827,11 +33217,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb" ] }, { @@ -27839,12 +33229,12 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb" ] }, { @@ -27852,12 +33242,12 @@ "kernelrelease": "3.13.0-70", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" ] }, { @@ -27865,12 +33255,12 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" ] }, { @@ -27878,12 +33268,12 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb" ] }, { @@ -27891,12 +33281,12 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb" ] }, { @@ -27904,12 +33294,12 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" ] }, { @@ -27917,11 +33307,11 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb" ] }, @@ -27930,12 +33320,12 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" ] }, { @@ -27943,12 +33333,12 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb" ] }, { @@ -27956,12 +33346,12 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb" ] }, { @@ -27969,12 +33359,12 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" ] }, { @@ -27983,9 +33373,9 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb" ] @@ -27995,12 +33385,12 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb" ] }, { @@ -28008,12 +33398,12 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" ] }, { @@ -28021,12 +33411,12 @@ "kernelrelease": "3.13.0-92", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" ] }, { @@ -28034,12 +33424,12 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb" ] }, { @@ -28048,11 +33438,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" ] }, { @@ -28060,12 +33450,12 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" ] }, { @@ -28073,12 +33463,12 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" ] }, { @@ -28086,12 +33476,12 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb" ] }, { @@ -28099,12 +33489,12 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" ] }, { @@ -28112,12 +33502,12 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" ] }, { @@ -28125,12 +33515,12 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" ] }, { @@ -28138,11 +33528,11 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb" ] }, @@ -28154,9 +33544,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" ] }, { @@ -28164,11 +33554,11 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" ] }, @@ -28177,12 +33567,12 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" ] }, { @@ -28190,12 +33580,12 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" ] }, { @@ -28203,12 +33593,12 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" ] }, { @@ -28217,11 +33607,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" ] }, { @@ -28229,12 +33619,12 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" ] }, { @@ -28242,12 +33632,12 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" ] }, { @@ -28255,12 +33645,12 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" ] }, { @@ -28268,12 +33658,12 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb" ] }, { @@ -28281,12 +33671,12 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb" ] }, { @@ -28294,12 +33684,12 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb" ] }, { @@ -28307,12 +33697,12 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb" ] }, { @@ -28320,12 +33710,12 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" ] }, { @@ -28333,11 +33723,11 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb" ] }, @@ -28346,11 +33736,11 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb" ] }, @@ -28359,12 +33749,12 @@ "kernelrelease": "3.16.0-53-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" ] }, { @@ -28372,12 +33762,12 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" ] }, { @@ -28385,12 +33775,12 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" ] }, { @@ -28398,12 +33788,12 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" ] }, { @@ -28411,12 +33801,12 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" ] }, { @@ -28425,11 +33815,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" ] }, { @@ -28437,12 +33827,12 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" ] }, { @@ -28450,12 +33840,12 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb" ] }, { @@ -28463,12 +33853,12 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb" ] }, { @@ -28479,9 +33869,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" ] }, { @@ -28489,12 +33879,12 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb" ] }, { @@ -28502,12 +33892,12 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb" ] }, { @@ -28515,12 +33905,12 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb" ] }, { @@ -28529,11 +33919,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb" ] }, { @@ -28541,12 +33931,12 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" ] }, { @@ -28554,12 +33944,12 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" ] }, { @@ -28567,12 +33957,12 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb" ] }, { @@ -28581,11 +33971,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb" ] }, { @@ -28593,12 +33983,12 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" ] }, { @@ -28607,10 +33997,10 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb" ] }, @@ -28619,12 +34009,12 @@ "kernelrelease": "3.19.0-28-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb" ] }, { @@ -28633,11 +34023,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb" ] }, { @@ -28645,12 +34035,12 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb" ] }, { @@ -28658,12 +34048,12 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb" ] }, { @@ -28671,12 +34061,12 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb" ] }, { @@ -28684,12 +34074,12 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" ] }, { @@ -28698,11 +34088,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb" ] }, { @@ -28710,11 +34100,11 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" ] }, @@ -28723,12 +34113,12 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" ] }, { @@ -28737,11 +34127,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" ] }, { @@ -28749,12 +34139,12 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" ] }, { @@ -28762,12 +34152,12 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb" ] }, { @@ -28775,12 +34165,12 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb" ] }, { @@ -28789,11 +34179,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" ] }, { @@ -28802,11 +34192,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" ] }, { @@ -28814,12 +34204,12 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb" ] }, { @@ -28827,12 +34217,12 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb" ] }, { @@ -28840,12 +34230,12 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb" ] }, { @@ -28854,11 +34244,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb" ] }, { @@ -28866,12 +34256,12 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" ] }, { @@ -28880,11 +34270,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb" ] }, { @@ -28893,11 +34283,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" ] }, { @@ -28905,12 +34295,12 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb" ] }, { @@ -28918,12 +34308,12 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb" ] }, { @@ -28931,12 +34321,12 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" ] }, { @@ -28944,12 +34334,12 @@ "kernelrelease": "3.19.0-75-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb" ] }, { @@ -28957,12 +34347,12 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb" ] }, { @@ -28970,12 +34360,12 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" ] }, { @@ -28983,12 +34373,12 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" ] }, { @@ -28996,12 +34386,12 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb" ] }, { @@ -29009,9 +34399,9 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb" ] }, @@ -29020,10 +34410,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb" ] }, { @@ -29031,10 +34421,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" ] }, { @@ -29042,8 +34432,8 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" ] @@ -29053,10 +34443,10 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" ] }, { @@ -29064,10 +34454,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" ] }, { @@ -29075,8 +34465,8 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb" ] @@ -29088,8 +34478,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" ] }, { @@ -29097,10 +34487,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb" ] }, { @@ -29108,9 +34498,9 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb" ] }, @@ -29119,11 +34509,11 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" ] }, @@ -29132,12 +34522,12 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" ] }, { @@ -29145,12 +34535,12 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" ] }, { @@ -29158,12 +34548,12 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb" ] }, { @@ -29171,12 +34561,12 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb" ] }, { @@ -29184,12 +34574,12 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb" ] }, { @@ -29197,12 +34587,12 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" ] }, { @@ -29210,12 +34600,12 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" ] }, { @@ -29223,12 +34613,12 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" ] }, { @@ -29236,12 +34626,12 @@ "kernelrelease": "4.2.0-35-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" ] }, { @@ -29249,12 +34639,12 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb" ] }, { @@ -29262,12 +34652,12 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb" ] }, { @@ -29275,12 +34665,12 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" ] }, { @@ -29288,12 +34678,12 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" ] }, { @@ -29301,12 +34691,12 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb" ] }, { @@ -29314,12 +34704,12 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb" ] }, { @@ -29327,12 +34717,12 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb" ] }, { @@ -29340,12 +34730,12 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" ] }, { @@ -29353,12 +34743,12 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" ] }, { @@ -29367,11 +34757,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" ] }, { @@ -29379,12 +34769,12 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" ] }, { @@ -29392,12 +34782,12 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" ] }, { @@ -29405,11 +34795,11 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb" ] }, @@ -29418,12 +34808,12 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" ] }, { @@ -29431,12 +34821,12 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb" ] }, { @@ -29444,12 +34834,12 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" ] }, { @@ -29457,12 +34847,12 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb" ] }, { @@ -29472,9 +34862,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb" ] }, @@ -29483,12 +34873,12 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" ] }, { @@ -29496,12 +34886,12 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb" ] }, { @@ -29509,11 +34899,11 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" ] }, @@ -29522,12 +34912,12 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" ] }, { @@ -29535,12 +34925,12 @@ "kernelrelease": "4.4.0-139-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" ] }, { @@ -29550,10 +34940,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb" ] }, { @@ -29561,12 +34951,12 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" ] }, { @@ -29574,11 +34964,11 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb" ] }, @@ -29587,12 +34977,12 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" ] }, { @@ -29600,12 +34990,12 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb" ] }, { @@ -29614,11 +35004,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" ] }, { @@ -29628,10 +35018,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb" ] }, { @@ -29639,11 +35029,11 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" ] }, @@ -29652,11 +35042,11 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" ] }, @@ -29665,12 +35055,12 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb" ] }, { @@ -29678,12 +35068,12 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" ] }, { @@ -29691,11 +35081,11 @@ "kernelrelease": "4.4.0-36-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" ] }, @@ -29704,12 +35094,12 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb" ] }, { @@ -29717,12 +35107,12 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" ] }, { @@ -29730,11 +35120,11 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" ] }, @@ -29743,12 +35133,12 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb" ] }, { @@ -29756,12 +35146,12 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb" ] }, { @@ -29769,12 +35159,12 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" ] }, { @@ -29782,11 +35172,11 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" ] }, @@ -29795,11 +35185,11 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" ] }, @@ -29809,11 +35199,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" ] }, { @@ -29821,12 +35211,12 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" ] }, { @@ -29834,11 +35224,11 @@ "kernelrelease": "4.4.0-64-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" ] }, @@ -29848,11 +35238,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" ] }, { @@ -29860,12 +35250,12 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" ] }, { @@ -29874,11 +35264,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" ] }, { @@ -29887,11 +35277,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" ] }, { @@ -29899,12 +35289,12 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb" ] }, { @@ -29912,12 +35302,12 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" ] }, { @@ -29925,12 +35315,12 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" ] }, { @@ -29939,11 +35329,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb" ] }, { @@ -29952,11 +35342,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" ] }, { @@ -29964,12 +35354,12 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" ] }, { @@ -29977,11 +35367,11 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb" ] }, @@ -29990,11 +35380,11 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" ] }, @@ -30004,11 +35394,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" ] }, { @@ -30016,11 +35406,11 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" ] }, @@ -30029,12 +35419,12 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb" ] }, { @@ -30043,11 +35433,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb" ] }, { @@ -30055,12 +35445,12 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb" ] }, { @@ -30069,11 +35459,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" ] }, { @@ -30082,11 +35472,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" ] }, { @@ -30095,11 +35485,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb" ] }, { @@ -30107,12 +35497,12 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb" ] }, { @@ -30120,12 +35510,12 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" ] }, { @@ -30133,12 +35523,12 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" ] }, { @@ -30146,12 +35536,12 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb" ] }, { @@ -30159,12 +35549,12 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" ] }, { @@ -30174,10 +35564,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" ] }, { @@ -30185,12 +35575,12 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb" ] }, { @@ -30198,10 +35588,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb" ] }, { @@ -30209,10 +35599,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb" ] }, { @@ -30220,12 +35610,12 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb" ] }, { @@ -30233,11 +35623,11 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb" ] }, @@ -30246,12 +35636,12 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" ] }, { @@ -30259,12 +35649,12 @@ "kernelrelease": "4.4.0-146-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" ] }, { @@ -30273,11 +35663,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb" ] }, { @@ -30285,10 +35675,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" ] }, { @@ -30297,9 +35687,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb" ] }, { @@ -30307,10 +35697,10 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" ] }, { @@ -30318,10 +35708,10 @@ "kernelrelease": "4.15.0-1095-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" ] }, { @@ -30330,9 +35720,9 @@ "target": "ubuntu-aws-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb" ] }, { @@ -30340,10 +35730,10 @@ "kernelrelease": "4.15.0-1110-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" ] }, { @@ -30352,8 +35742,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb" ] }, @@ -30362,12 +35752,12 @@ "kernelrelease": "4.4.0-206", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" ] }, { @@ -30375,12 +35765,12 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" ] }, { @@ -30388,12 +35778,12 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" ] }, { @@ -30401,11 +35791,11 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" ] }, @@ -30414,12 +35804,12 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" ] }, { @@ -30427,12 +35817,12 @@ "kernelrelease": "4.10.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" ] }, { @@ -30440,12 +35830,12 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" ] }, { @@ -30454,11 +35844,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" ] }, { @@ -30466,12 +35856,12 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb" ] }, { @@ -30479,12 +35869,12 @@ "kernelrelease": "4.10.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb" ] }, { @@ -30492,12 +35882,12 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb" ] }, { @@ -30505,12 +35895,12 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" ] }, { @@ -30518,12 +35908,12 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb" ] }, { @@ -30531,12 +35921,12 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" ] }, { @@ -30544,12 +35934,12 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb" ] }, { @@ -30557,12 +35947,12 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" ] }, { @@ -30570,12 +35960,12 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" ] }, { @@ -30583,12 +35973,12 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" ] }, { @@ -30596,12 +35986,12 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" ] }, { @@ -30609,10 +35999,10 @@ "kernelrelease": "4.11.0-1015-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb" ] }, { @@ -30631,11 +36021,11 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb" ] }, @@ -30644,11 +36034,11 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" ] }, @@ -30657,9 +36047,9 @@ "kernelrelease": "4.13.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb" ] }, @@ -30668,10 +36058,10 @@ "kernelrelease": "4.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" ] }, { @@ -30679,10 +36069,10 @@ "kernelrelease": "4.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" ] }, { @@ -30690,10 +36080,10 @@ "kernelrelease": "4.13.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb" ] }, { @@ -30701,10 +36091,10 @@ "kernelrelease": "4.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" ] }, { @@ -30712,10 +36102,10 @@ "kernelrelease": "4.13.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" ] }, { @@ -30723,10 +36113,10 @@ "kernelrelease": "4.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb" ] }, { @@ -30734,12 +36124,12 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" ] }, { @@ -30747,11 +36137,11 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" ] }, @@ -30760,12 +36150,12 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" ] }, { @@ -30774,11 +36164,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" ] }, { @@ -30786,12 +36176,12 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb" ] }, { @@ -30799,12 +36189,12 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb" ] }, { @@ -30812,11 +36202,11 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" ] }, @@ -30825,10 +36215,10 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb" ] @@ -30838,12 +36228,12 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" ] }, { @@ -30852,11 +36242,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" ] }, { @@ -30865,11 +36255,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" ] }, { @@ -30878,10 +36268,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb" ] }, @@ -30891,11 +36281,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" ] }, { @@ -30903,12 +36293,12 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb" ] }, { @@ -30916,12 +36306,12 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb" ] }, { @@ -30931,8 +36321,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" ] }, { @@ -30940,10 +36330,10 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" ] }, { @@ -30951,12 +36341,12 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb" ] }, { @@ -30964,10 +36354,10 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" ] }, { @@ -30976,9 +36366,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" ] }, { @@ -30986,10 +36376,10 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" ] }, { @@ -30997,10 +36387,10 @@ "kernelrelease": "4.15.0-1014-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" ] }, { @@ -31008,9 +36398,9 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" ] }, @@ -31019,10 +36409,10 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" ] }, { @@ -31030,10 +36420,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" ] }, { @@ -31041,10 +36431,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb" ] }, { @@ -31052,10 +36442,10 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb" ] }, { @@ -31063,9 +36453,9 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb" ] }, @@ -31074,10 +36464,10 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" ] }, { @@ -31085,10 +36475,10 @@ "kernelrelease": "4.15.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" ] }, { @@ -31097,9 +36487,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" ] }, { @@ -31107,9 +36497,9 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" ] }, @@ -31118,10 +36508,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" ] }, { @@ -31129,10 +36519,10 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" ] }, { @@ -31140,10 +36530,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" ] }, { @@ -31151,10 +36541,10 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" ] }, { @@ -31162,10 +36552,10 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { @@ -31175,8 +36565,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { @@ -31185,9 +36575,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" ] }, { @@ -31196,31 +36586,31 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { @@ -31228,10 +36618,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" ] }, { @@ -31240,8 +36630,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb" ] }, @@ -31250,10 +36640,10 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" ] }, { @@ -31261,9 +36651,9 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb" ] }, @@ -31272,10 +36662,10 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb" ] }, { @@ -31283,10 +36673,10 @@ "kernelrelease": "4.15.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -31294,8 +36684,8 @@ "kernelrelease": "4.15.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" ] @@ -31305,10 +36695,10 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" ] }, { @@ -31317,9 +36707,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" ] }, { @@ -31327,9 +36717,9 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" ] }, @@ -31338,10 +36728,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" ] }, { @@ -31350,9 +36740,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb" ] }, { @@ -31360,10 +36750,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" ] }, { @@ -31371,10 +36761,10 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" ] }, { @@ -31382,9 +36772,9 @@ "kernelrelease": "4.15.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" ] }, @@ -31393,10 +36783,10 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" ] }, { @@ -31405,9 +36795,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" ] }, { @@ -31415,9 +36805,9 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" ] }, @@ -31428,30 +36818,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { @@ -31459,10 +36849,10 @@ "kernelrelease": "4.15.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb" ] }, { @@ -31470,10 +36860,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb" ] }, { @@ -31481,10 +36871,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb" ] }, { @@ -31492,10 +36882,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" ] }, { @@ -31503,10 +36893,10 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" ] }, { @@ -31514,10 +36904,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb" ] }, { @@ -31525,9 +36915,9 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb" ] }, @@ -31536,10 +36926,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" ] }, { @@ -31547,10 +36937,10 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" ] }, { @@ -31558,10 +36948,10 @@ "kernelrelease": "4.15.0-1046-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" ] }, { @@ -31569,10 +36959,10 @@ "kernelrelease": "4.15.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb" ] }, { @@ -31580,10 +36970,10 @@ "kernelrelease": "4.15.0-1047-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb" ] }, { @@ -31591,10 +36981,10 @@ "kernelrelease": "4.15.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" ] }, { @@ -31602,10 +36992,10 @@ "kernelrelease": "4.15.0-1050-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" ] }, { @@ -31614,9 +37004,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb" ] }, { @@ -31624,9 +37014,9 @@ "kernelrelease": "4.15.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" ] }, @@ -31635,10 +37025,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb" ] }, { @@ -31647,9 +37037,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb" ] }, { @@ -31657,10 +37047,10 @@ "kernelrelease": "4.15.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" ] }, { @@ -31669,9 +37059,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" ] }, { @@ -31680,9 +37070,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" ] }, { @@ -31690,10 +37080,10 @@ "kernelrelease": "4.15.0-1055-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb" ] }, { @@ -31701,9 +37091,9 @@ "kernelrelease": "4.15.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" ] }, @@ -31712,10 +37102,10 @@ "kernelrelease": "4.15.0-1056-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb" ] }, { @@ -31723,10 +37113,10 @@ "kernelrelease": "4.15.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" ] }, { @@ -31734,9 +37124,9 @@ "kernelrelease": "4.15.0-1058-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" ] }, @@ -31745,10 +37135,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" ] }, { @@ -31756,10 +37146,10 @@ "kernelrelease": "4.15.0-1059-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" ] }, { @@ -31767,12 +37157,12 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb" ] }, { @@ -31780,10 +37170,10 @@ "kernelrelease": "4.15.0-1060-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" ] }, { @@ -31792,9 +37182,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb" ] }, { @@ -31802,9 +37192,9 @@ "kernelrelease": "4.15.0-1061-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb" ] }, @@ -31813,9 +37203,9 @@ "kernelrelease": "4.15.0-1061-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb" ] }, @@ -31825,9 +37215,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" ] }, { @@ -31835,8 +37225,8 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb" ] @@ -31846,10 +37236,10 @@ "kernelrelease": "4.15.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb" ] }, { @@ -31857,10 +37247,10 @@ "kernelrelease": "4.15.0-1064-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" ] }, { @@ -31868,10 +37258,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" ] }, { @@ -31880,9 +37270,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" ] }, { @@ -31890,10 +37280,10 @@ "kernelrelease": "4.15.0-1066-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb" ] }, { @@ -31901,10 +37291,10 @@ "kernelrelease": "4.15.0-1067-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" ] }, { @@ -31912,10 +37302,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" ] }, { @@ -31924,9 +37314,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" ] }, { @@ -31934,10 +37324,10 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" ] }, { @@ -31945,12 +37335,12 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb" ] }, { @@ -31958,9 +37348,9 @@ "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" ] }, @@ -31969,10 +37359,10 @@ "kernelrelease": "4.15.0-1071-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" ] }, { @@ -31980,10 +37370,10 @@ "kernelrelease": "4.15.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" ] }, { @@ -31991,10 +37381,10 @@ "kernelrelease": "4.15.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" ] }, { @@ -32002,10 +37392,10 @@ "kernelrelease": "4.15.0-1077-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" ] }, { @@ -32013,8 +37403,8 @@ "kernelrelease": "4.15.0-1078-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb" ] @@ -32036,9 +37426,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" ] }, { @@ -32046,10 +37436,10 @@ "kernelrelease": "4.15.0-1082-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb" ] }, { @@ -32057,10 +37447,10 @@ "kernelrelease": "4.15.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb" ] }, { @@ -32068,10 +37458,10 @@ "kernelrelease": "4.15.0-1083-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" ] }, { @@ -32079,10 +37469,10 @@ "kernelrelease": "4.15.0-1084-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" ] }, { @@ -32090,10 +37480,10 @@ "kernelrelease": "4.15.0-1086-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" ] }, { @@ -32101,10 +37491,10 @@ "kernelrelease": "4.15.0-1087-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" ] }, { @@ -32112,10 +37502,10 @@ "kernelrelease": "4.15.0-1089-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb" ] }, { @@ -32123,10 +37513,10 @@ "kernelrelease": "4.15.0-1090-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" ] }, { @@ -32134,10 +37524,10 @@ "kernelrelease": "4.15.0-1091-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" ] }, { @@ -32146,9 +37536,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" ] }, { @@ -32156,10 +37546,10 @@ "kernelrelease": "4.15.0-1092-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb" ] }, { @@ -32168,9 +37558,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" ] }, { @@ -32178,10 +37568,10 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" ] }, { @@ -32189,10 +37579,10 @@ "kernelrelease": "4.15.0-1093-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb" ] }, { @@ -32200,8 +37590,8 @@ "kernelrelease": "4.15.0-1093-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb" ] @@ -32211,10 +37601,10 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" ] }, { @@ -32222,10 +37612,10 @@ "kernelrelease": "4.15.0-1094-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" ] }, { @@ -32234,8 +37624,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" ] }, @@ -32244,10 +37634,10 @@ "kernelrelease": "4.15.0-1096-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" ] }, { @@ -32255,10 +37645,10 @@ "kernelrelease": "4.15.0-1096-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" ] }, { @@ -32266,10 +37656,10 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb" ] }, { @@ -32277,10 +37667,10 @@ "kernelrelease": "4.15.0-1097-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" ] }, { @@ -32300,8 +37690,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" ] }, @@ -32310,10 +37700,10 @@ "kernelrelease": "4.15.0-1098-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" ] }, { @@ -32321,10 +37711,10 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" ] }, { @@ -32332,10 +37722,10 @@ "kernelrelease": "4.15.0-1102-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" ] }, { @@ -32343,10 +37733,10 @@ "kernelrelease": "4.15.0-1103-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" ] }, { @@ -32354,9 +37744,9 @@ "kernelrelease": "4.15.0-1106-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" ] }, @@ -32365,9 +37755,9 @@ "kernelrelease": "4.15.0-1108-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" ] }, @@ -32398,10 +37788,10 @@ "kernelrelease": "4.15.0-1112-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" ] }, { @@ -32409,9 +37799,9 @@ "kernelrelease": "4.15.0-1113-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" ] }, @@ -32420,12 +37810,12 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" ] }, { @@ -32433,12 +37823,12 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb" ] }, { @@ -32446,12 +37836,12 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb" ] }, { @@ -32459,12 +37849,12 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb" ] }, { @@ -32472,12 +37862,12 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb" ] }, { @@ -32485,12 +37875,12 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb" ] }, { @@ -32498,12 +37888,12 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" ] }, { @@ -32512,11 +37902,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb" ] }, { @@ -32525,11 +37915,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" ] }, { @@ -32537,12 +37927,12 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb" ] }, { @@ -32550,12 +37940,12 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" ] }, { @@ -32563,12 +37953,12 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb" ] }, { @@ -32576,12 +37966,12 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb" ] }, { @@ -32590,11 +37980,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" ] }, { @@ -32602,12 +37992,12 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" ] }, { @@ -32615,12 +38005,12 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" ] }, { @@ -32628,9 +38018,9 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb" @@ -32642,11 +38032,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" ] }, { @@ -32654,12 +38044,12 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" ] }, { @@ -32667,11 +38057,11 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" ] }, @@ -32680,12 +38070,12 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb" ] }, { @@ -32693,12 +38083,12 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" ] }, { @@ -32706,12 +38096,12 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" ] }, { @@ -32719,12 +38109,12 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb" ] }, { @@ -32732,12 +38122,12 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" ] }, { @@ -32745,12 +38135,12 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" ] }, { @@ -32758,12 +38148,12 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" ] }, { @@ -32771,12 +38161,12 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb" ] }, { @@ -32784,12 +38174,12 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" ] }, { @@ -32798,11 +38188,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" ] }, { @@ -32812,10 +38202,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb" ] }, { @@ -32823,12 +38213,12 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb" ] }, { @@ -32836,11 +38226,11 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb" ] }, @@ -32849,12 +38239,12 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" ] }, { @@ -32862,12 +38252,12 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" ] }, { @@ -32875,12 +38265,12 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" ] }, { @@ -32888,11 +38278,11 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb" ] }, @@ -32902,11 +38292,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" ] }, { @@ -32915,11 +38305,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb" ] }, { @@ -32927,12 +38317,12 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb" ] }, { @@ -32940,12 +38330,12 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb" ] }, { @@ -32953,12 +38343,12 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb" ] }, { @@ -32966,12 +38356,12 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" ] }, { @@ -32979,12 +38369,12 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" ] }, { @@ -32992,11 +38382,11 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" ] }, @@ -33005,12 +38395,12 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" ] }, { @@ -33018,12 +38408,12 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" ] }, { @@ -33031,12 +38421,12 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb" ] }, { @@ -33045,11 +38435,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb" ] }, { @@ -33057,12 +38447,12 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb" ] }, { @@ -33071,11 +38461,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" ] }, { @@ -33083,12 +38473,12 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" ] }, { @@ -33096,12 +38486,12 @@ "kernelrelease": "4.15.0-96-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" ] }, { @@ -33109,12 +38499,12 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" ] }, { @@ -33122,9 +38512,9 @@ "kernelrelease": "4.4.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" ] }, @@ -33135,8 +38525,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" ] }, { @@ -33144,10 +38534,10 @@ "kernelrelease": "4.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb" ] }, { @@ -33155,12 +38545,12 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb" ] }, { @@ -33169,8 +38559,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb" ] }, @@ -33179,8 +38569,8 @@ "kernelrelease": "4.4.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" ] @@ -33190,10 +38580,10 @@ "kernelrelease": "4.4.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" ] }, { @@ -33202,9 +38592,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" ] }, { @@ -33212,9 +38602,9 @@ "kernelrelease": "4.4.0-1015-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb" ] }, @@ -33223,9 +38613,9 @@ "kernelrelease": "4.4.0-1016-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb" ] }, @@ -33234,10 +38624,10 @@ "kernelrelease": "4.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" ] }, { @@ -33245,10 +38635,10 @@ "kernelrelease": "4.4.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb" ] }, { @@ -33258,8 +38648,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" ] }, { @@ -33267,10 +38657,10 @@ "kernelrelease": "4.4.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb" ] }, { @@ -33279,9 +38669,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" ] }, { @@ -33291,8 +38681,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" ] }, { @@ -33300,9 +38690,9 @@ "kernelrelease": "4.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" ] }, @@ -33312,9 +38702,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb" ] }, { @@ -33322,10 +38712,10 @@ "kernelrelease": "4.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb" ] }, { @@ -33333,8 +38723,8 @@ "kernelrelease": "4.4.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" ] @@ -33344,9 +38734,9 @@ "kernelrelease": "4.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb" ] }, @@ -33356,9 +38746,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" ] }, { @@ -33368,8 +38758,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" ] }, { @@ -33377,10 +38767,10 @@ "kernelrelease": "4.4.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" ] }, { @@ -33388,12 +38778,12 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb" ] }, { @@ -33401,8 +38791,8 @@ "kernelrelease": "4.4.0-1030-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb" ] @@ -33412,10 +38802,10 @@ "kernelrelease": "4.4.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" ] }, { @@ -33423,10 +38813,10 @@ "kernelrelease": "4.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" ] }, { @@ -33434,10 +38824,10 @@ "kernelrelease": "4.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" ] }, { @@ -33445,10 +38835,10 @@ "kernelrelease": "4.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" ] }, { @@ -33458,8 +38848,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" ] }, { @@ -33467,10 +38857,10 @@ "kernelrelease": "4.4.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" ] }, { @@ -33490,9 +38880,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" ] }, { @@ -33500,10 +38890,10 @@ "kernelrelease": "4.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" ] }, { @@ -33511,10 +38901,10 @@ "kernelrelease": "4.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" ] }, { @@ -33522,9 +38912,9 @@ "kernelrelease": "4.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb" ] }, @@ -33533,12 +38923,12 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" ] }, { @@ -33546,9 +38936,9 @@ "kernelrelease": "4.4.0-1040-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" ] }, @@ -33557,9 +38947,9 @@ "kernelrelease": "4.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" ] }, @@ -33568,10 +38958,10 @@ "kernelrelease": "4.4.0-1041-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb" ] }, { @@ -33581,8 +38971,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" ] }, { @@ -33590,10 +38980,10 @@ "kernelrelease": "4.4.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb" ] }, { @@ -33602,8 +38992,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb" ] }, @@ -33612,10 +39002,10 @@ "kernelrelease": "4.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb" ] }, { @@ -33623,10 +39013,10 @@ "kernelrelease": "4.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" ] }, { @@ -33636,8 +39026,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb" ] }, { @@ -33645,10 +39035,10 @@ "kernelrelease": "4.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb" ] }, { @@ -33656,10 +39046,10 @@ "kernelrelease": "4.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" ] }, { @@ -33667,10 +39057,10 @@ "kernelrelease": "4.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" ] }, { @@ -33678,10 +39068,10 @@ "kernelrelease": "4.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" ] }, { @@ -33689,10 +39079,10 @@ "kernelrelease": "4.4.0-1052-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb" ] }, { @@ -33701,8 +39091,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" ] }, @@ -33711,9 +39101,9 @@ "kernelrelease": "4.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" ] }, @@ -33722,10 +39112,10 @@ "kernelrelease": "4.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb" ] }, { @@ -33744,10 +39134,10 @@ "kernelrelease": "4.4.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" ] }, { @@ -33755,9 +39145,9 @@ "kernelrelease": "4.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb" ] }, @@ -33766,10 +39156,10 @@ "kernelrelease": "4.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" ] }, { @@ -33788,10 +39178,10 @@ "kernelrelease": "4.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" ] }, { @@ -33799,10 +39189,10 @@ "kernelrelease": "4.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" ] }, { @@ -33810,10 +39200,10 @@ "kernelrelease": "4.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" ] }, { @@ -33821,10 +39211,10 @@ "kernelrelease": "4.4.0-1062-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" ] }, { @@ -33832,9 +39222,9 @@ "kernelrelease": "4.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" ] }, @@ -33843,10 +39233,10 @@ "kernelrelease": "4.4.0-1063-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb" ] }, { @@ -33854,10 +39244,10 @@ "kernelrelease": "4.4.0-1064-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" ] }, { @@ -33865,10 +39255,10 @@ "kernelrelease": "4.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb" ] }, { @@ -33876,10 +39266,10 @@ "kernelrelease": "4.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" ] }, { @@ -33887,10 +39277,10 @@ "kernelrelease": "4.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" ] }, { @@ -33898,10 +39288,10 @@ "kernelrelease": "4.4.0-1066-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" ] }, { @@ -33909,10 +39299,10 @@ "kernelrelease": "4.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" ] }, { @@ -33920,10 +39310,10 @@ "kernelrelease": "4.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" ] }, { @@ -33931,10 +39321,10 @@ "kernelrelease": "4.4.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" ] }, { @@ -33942,10 +39332,10 @@ "kernelrelease": "4.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" ] }, { @@ -33953,9 +39343,9 @@ "kernelrelease": "4.4.0-1070-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" ] }, @@ -33964,10 +39354,10 @@ "kernelrelease": "4.4.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" ] }, { @@ -33975,9 +39365,9 @@ "kernelrelease": "4.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" ] }, @@ -33986,10 +39376,10 @@ "kernelrelease": "4.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" ] }, { @@ -33998,9 +39388,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" ] }, { @@ -34009,9 +39399,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" ] }, { @@ -34020,9 +39410,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" ] }, { @@ -34030,10 +39420,10 @@ "kernelrelease": "4.4.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb" ] }, { @@ -34041,8 +39431,8 @@ "kernelrelease": "4.4.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" ] @@ -34052,10 +39442,10 @@ "kernelrelease": "4.4.0-1078-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" ] }, { @@ -34063,10 +39453,10 @@ "kernelrelease": "4.4.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" ] }, { @@ -34074,9 +39464,9 @@ "kernelrelease": "4.4.0-1079-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" ] }, @@ -34085,12 +39475,12 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" ] }, { @@ -34098,10 +39488,10 @@ "kernelrelease": "4.4.0-1080-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" ] }, { @@ -34109,10 +39499,10 @@ "kernelrelease": "4.4.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" ] }, { @@ -34120,10 +39510,10 @@ "kernelrelease": "4.4.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" ] }, { @@ -34131,10 +39521,10 @@ "kernelrelease": "4.4.0-1084-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" ] }, { @@ -34142,10 +39532,10 @@ "kernelrelease": "4.4.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb" ] }, { @@ -34153,10 +39543,10 @@ "kernelrelease": "4.4.0-1085-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" ] }, { @@ -34164,10 +39554,10 @@ "kernelrelease": "4.4.0-1085-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb" ] }, { @@ -34175,10 +39565,10 @@ "kernelrelease": "4.4.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb" ] }, { @@ -34186,10 +39576,10 @@ "kernelrelease": "4.4.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" ] }, { @@ -34197,10 +39587,10 @@ "kernelrelease": "4.4.0-1088-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb" ] }, { @@ -34208,9 +39598,9 @@ "kernelrelease": "4.4.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb" ] }, @@ -34219,10 +39609,10 @@ "kernelrelease": "4.4.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb" ] }, { @@ -34230,12 +39620,12 @@ "kernelrelease": "4.4.0-109", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" ] }, { @@ -34244,9 +39634,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" ] }, { @@ -34254,10 +39644,10 @@ "kernelrelease": "4.4.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" ] }, { @@ -34276,10 +39666,10 @@ "kernelrelease": "4.4.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" ] }, { @@ -34287,10 +39677,10 @@ "kernelrelease": "4.4.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" ] }, { @@ -34298,10 +39688,10 @@ "kernelrelease": "4.4.0-1093-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" ] }, { @@ -34309,10 +39699,10 @@ "kernelrelease": "4.4.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" ] }, { @@ -34321,9 +39711,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb" ] }, { @@ -34331,10 +39721,10 @@ "kernelrelease": "4.4.0-1096-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" ] }, { @@ -34343,9 +39733,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" ] }, { @@ -34366,8 +39756,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" ] }, { @@ -34375,10 +39765,10 @@ "kernelrelease": "4.4.0-1101-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" ] }, { @@ -34386,10 +39776,10 @@ "kernelrelease": "4.4.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" ] }, { @@ -34397,9 +39787,9 @@ "kernelrelease": "4.4.0-1104-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" ] }, @@ -34408,10 +39798,10 @@ "kernelrelease": "4.4.0-1105-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb" ] }, { @@ -34419,10 +39809,10 @@ "kernelrelease": "4.4.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb" ] }, { @@ -34430,10 +39820,10 @@ "kernelrelease": "4.4.0-1107-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb" ] }, { @@ -34452,10 +39842,10 @@ "kernelrelease": "4.4.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" ] }, { @@ -34463,8 +39853,8 @@ "kernelrelease": "4.4.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" ] @@ -34474,10 +39864,10 @@ "kernelrelease": "4.4.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb" ] }, { @@ -34485,10 +39875,10 @@ "kernelrelease": "4.4.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" ] }, { @@ -34497,9 +39887,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb" ] }, { @@ -34507,10 +39897,10 @@ "kernelrelease": "4.4.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" ] }, { @@ -34519,9 +39909,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" ] }, { @@ -34529,10 +39919,10 @@ "kernelrelease": "4.4.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb" ] }, { @@ -34540,12 +39930,12 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb" ] }, { @@ -34554,9 +39944,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" ] }, { @@ -34564,10 +39954,10 @@ "kernelrelease": "4.4.0-1122-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" ] }, { @@ -34575,10 +39965,10 @@ "kernelrelease": "4.4.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb" ] }, { @@ -34587,9 +39977,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" ] }, { @@ -34597,9 +39987,9 @@ "kernelrelease": "4.4.0-1126-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" ] }, @@ -34608,10 +39998,10 @@ "kernelrelease": "4.4.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" ] }, { @@ -34619,10 +40009,10 @@ "kernelrelease": "4.4.0-1128-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb" ] }, { @@ -34630,11 +40020,11 @@ "kernelrelease": "4.4.0-116", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" ] }, @@ -34643,12 +40033,12 @@ "kernelrelease": "4.4.0-119", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" ] }, { @@ -34656,10 +40046,10 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb" ] @@ -34669,11 +40059,11 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb" ] }, @@ -34682,12 +40072,12 @@ "kernelrelease": "4.4.0-127", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" ] }, { @@ -34695,12 +40085,12 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" ] }, { @@ -34708,12 +40098,12 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" ] }, { @@ -34721,12 +40111,12 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" ] }, { @@ -34735,11 +40125,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb" ] }, { @@ -34747,12 +40137,12 @@ "kernelrelease": "4.4.0-137", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb" ] }, { @@ -34760,12 +40150,12 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" ] }, { @@ -34775,10 +40165,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" ] }, { @@ -34786,12 +40176,12 @@ "kernelrelease": "4.4.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb" ] }, { @@ -34799,12 +40189,12 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb" ] }, { @@ -34812,12 +40202,12 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb" ] }, { @@ -34825,12 +40215,12 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb" ] }, { @@ -34838,12 +40228,12 @@ "kernelrelease": "4.4.0-148", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb" ] }, { @@ -34854,8 +40244,8 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb" ] }, @@ -34864,12 +40254,12 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb" ] }, { @@ -34877,12 +40267,12 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" ] }, { @@ -34890,12 +40280,12 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb" ] }, { @@ -34903,12 +40293,12 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb" ] }, { @@ -34916,12 +40306,12 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" ] }, { @@ -34929,12 +40319,12 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb" ] }, { @@ -34942,12 +40332,12 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb" ] }, { @@ -34955,11 +40345,11 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" ] }, @@ -34968,12 +40358,12 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb" ] }, { @@ -34981,12 +40371,12 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" ] }, { @@ -34994,12 +40384,12 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" ] }, { @@ -35008,11 +40398,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb" ] }, { @@ -35020,12 +40410,12 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb" ] }, { @@ -35033,12 +40423,12 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb" ] }, { @@ -35046,12 +40436,12 @@ "kernelrelease": "4.4.0-176", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" ] }, { @@ -35059,12 +40449,12 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" ] }, { @@ -35072,11 +40462,11 @@ "kernelrelease": "4.4.0-178", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" ] }, @@ -35085,12 +40475,12 @@ "kernelrelease": "4.4.0-179", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" ] }, { @@ -35098,12 +40488,12 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb" ] }, { @@ -35111,12 +40501,12 @@ "kernelrelease": "4.4.0-185", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb" ] }, { @@ -35124,12 +40514,12 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" ] }, { @@ -35137,11 +40527,11 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" ] }, @@ -35150,12 +40540,12 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb" ] }, { @@ -35163,12 +40553,12 @@ "kernelrelease": "4.4.0-190", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb" ] }, { @@ -35176,12 +40566,12 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" ] }, { @@ -35189,12 +40579,12 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" ] }, { @@ -35202,12 +40592,12 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" ] }, { @@ -35216,11 +40606,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" ] }, { @@ -35228,12 +40618,12 @@ "kernelrelease": "4.4.0-200", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb" ] }, { @@ -35241,12 +40631,12 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" ] }, { @@ -35254,12 +40644,12 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" ] }, { @@ -35267,12 +40657,12 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" ] }, { @@ -35280,11 +40670,11 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" ] }, @@ -35294,11 +40684,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" ] }, { @@ -35306,12 +40696,12 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" ] }, { @@ -35319,12 +40709,12 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb" ] }, { @@ -35333,10 +40723,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" ] }, @@ -35347,10 +40737,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb" ] }, { @@ -35358,12 +40748,12 @@ "kernelrelease": "4.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb" ] }, { @@ -35371,12 +40761,12 @@ "kernelrelease": "4.4.0-34", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" ] }, { @@ -35385,9 +40775,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" ] @@ -35397,12 +40787,12 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" ] }, { @@ -35410,12 +40800,12 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" ] }, { @@ -35423,12 +40813,12 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" ] }, { @@ -35436,12 +40826,12 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb" ] }, { @@ -35449,12 +40839,12 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb" ] }, { @@ -35463,11 +40853,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" ] }, { @@ -35476,11 +40866,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" ] }, { @@ -35488,12 +40878,12 @@ "kernelrelease": "4.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" ] }, { @@ -35501,12 +40891,12 @@ "kernelrelease": "4.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" ] }, { @@ -35515,10 +40905,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" ] }, @@ -35527,12 +40917,12 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" ] }, { @@ -35540,12 +40930,12 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" ] }, { @@ -35553,12 +40943,12 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb" ] }, { @@ -35566,12 +40956,12 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb" ] }, { @@ -35579,12 +40969,12 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" ] }, { @@ -35592,12 +40982,12 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" ] }, { @@ -35605,12 +40995,12 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" ] }, { @@ -35618,12 +41008,12 @@ "kernelrelease": "4.4.0-78", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb" ] }, { @@ -35631,12 +41021,12 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb" ] }, { @@ -35645,10 +41035,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb" ] }, @@ -35657,12 +41047,12 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb" ] }, { @@ -35671,10 +41061,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb" ] }, @@ -35683,11 +41073,11 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" ] }, @@ -35696,11 +41086,11 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" ] }, @@ -35709,12 +41099,12 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb" ] }, { @@ -35722,12 +41112,12 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb" ] }, { @@ -35736,11 +41126,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" ] }, { @@ -35748,11 +41138,11 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb" ] }, @@ -35761,12 +41151,12 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" ] }, { @@ -35774,12 +41164,12 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb" ] }, { @@ -35787,12 +41177,12 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb" ] }, { @@ -35800,12 +41190,12 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb" ] }, { @@ -35813,12 +41203,12 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" ] }, { @@ -35826,12 +41216,12 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb" ] }, { @@ -35840,11 +41230,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" ] }, { @@ -35852,12 +41242,12 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb" ] }, { @@ -35866,11 +41256,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb" ] }, { @@ -35878,10 +41268,10 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb" ] @@ -35891,12 +41281,12 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" ] }, { @@ -35904,12 +41294,12 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb" ] }, { @@ -35917,10 +41307,10 @@ "kernelrelease": "4.11.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb" ] }, { @@ -35928,10 +41318,10 @@ "kernelrelease": "4.11.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" ] }, { @@ -35939,10 +41329,10 @@ "kernelrelease": "4.11.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb" ] }, { @@ -35950,10 +41340,10 @@ "kernelrelease": "4.11.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb" ] }, { @@ -35961,9 +41351,9 @@ "kernelrelease": "4.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" ] }, @@ -35973,9 +41363,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" ] }, { @@ -35983,10 +41373,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" ] }, { @@ -35994,10 +41384,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" ] }, { @@ -36005,9 +41395,9 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb" ] }, @@ -36027,10 +41417,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb" ] }, { @@ -36039,9 +41429,9 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" ] @@ -36051,11 +41441,11 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" ] }, @@ -36064,10 +41454,10 @@ "kernelrelease": "4.4.0-1033-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb" ] }, { @@ -36075,10 +41465,10 @@ "kernelrelease": "4.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" ] }, { @@ -36086,10 +41476,10 @@ "kernelrelease": "4.4.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb" ] }, { @@ -36098,9 +41488,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" ] }, { @@ -36108,10 +41498,10 @@ "kernelrelease": "4.4.0-1050-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" ] }, { @@ -36119,9 +41509,9 @@ "kernelrelease": "4.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" ] }, @@ -36130,10 +41520,10 @@ "kernelrelease": "4.4.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb" ] }, { @@ -36141,10 +41531,10 @@ "kernelrelease": "4.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" ] }, { @@ -36152,10 +41542,10 @@ "kernelrelease": "4.4.0-1081-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" ] }, { @@ -36163,12 +41553,12 @@ "kernelrelease": "4.4.0-122", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" ] }, { @@ -36177,11 +41567,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb" ] }, { @@ -36189,12 +41579,12 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb" ] }, { @@ -36202,12 +41592,12 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb" ] }, { @@ -36215,12 +41605,12 @@ "kernelrelease": "4.4.0-146", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" ] }, { @@ -36228,12 +41618,12 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" ] }, { @@ -36241,12 +41631,12 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" ] }, { @@ -36257,8 +41647,8 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb" ] }, @@ -36267,12 +41657,12 @@ "kernelrelease": "4.8.0-44-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb" ] }, { @@ -36281,11 +41671,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb" ] }, { @@ -36293,12 +41683,12 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" ] }, { @@ -36306,12 +41696,12 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" ] } ], @@ -36940,6 +42330,14 @@ "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.0/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3139.2.1", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "1722.2.0", @@ -37652,6 +43050,14 @@ "https://beta.release.flatcar-linux.net/amd64-usr/3185.1.0/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3185.1.1", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3185.1.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "1745.0.0", @@ -38451,6 +43857,14 @@ "headers": [ "https://alpha.release.flatcar-linux.net/amd64-usr/3200.0.0/flatcar_developer_container.bin.bz2" ] + }, + { + "kernelversion": 1, + "kernelrelease": "3227.0.0", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3227.0.0/flatcar_developer_container.bin.bz2" + ] } ] } From 2d8bb6b325b2866d93405d0b499347d1a1353a7a Mon Sep 17 00:00:00 2001 From: Austin Brogle Date: Tue, 24 May 2022 17:44:23 -0700 Subject: [PATCH 113/259] Changing to find_packages in setup Signed-off-by: Austin Brogle --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 19914cb..1fb24cc 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ #!/usr/bin/env python -from distutils.core import setup +from setuptools import setup, find_packages + setup(name='kernel_crawler', version='1.0.0', @@ -8,7 +9,7 @@ author='Grzegorz Nosek', author_email='grzegorz.nosek@sysdig.com', url='https://falco.org/', - packages=['kernel_crawler'], + packages=find_packages(), install_requires=[ 'click', 'requests', From 199d6d659497fd4cef88de16ef7ea9b91df77b25 Mon Sep 17 00:00:00 2001 From: poiana Date: Sun, 29 May 2022 01:07:38 +0000 Subject: [PATCH 114/259] update(kernels): updated kernel json lists. Signed-off-by: GitHub --- kernels/aarch64/list.json | 4096 +++++---- kernels/x86_64/list.json | 17029 +++++++++++++++++++----------------- 2 files changed, 11006 insertions(+), 10119 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 79ba505..36a173c 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -3,226 +3,226 @@ "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.aarch64", + "kernelrelease": "4.14.177-139.253.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.aarch64", + "kernelrelease": "4.14.114-103.97.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.aarch64", + "kernelrelease": "4.14.94-89.73.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.aarch64", + "kernelrelease": "4.14.246-187.474.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.aarch64", + "kernelrelease": "4.14.133-113.112.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.aarch64", + "kernelrelease": "4.14.121-109.96.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.aarch64", + "kernelrelease": "4.14.101-91.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.aarch64", + "kernelrelease": "4.14.198-152.320.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.aarch64", + "kernelrelease": "4.14.154-128.181.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.aarch64", + "kernelrelease": "4.14.276-211.499.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.aarch64", + "kernelrelease": "4.14.173-137.228.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.aarch64", + "kernelrelease": "4.14.88-88.73.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.aarch64", + "kernelrelease": "4.14.165-131.185.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.aarch64", + "kernelrelease": "4.14.219-161.340.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.aarch64", + "kernelrelease": "4.14.146-119.123.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.aarch64", + "kernelrelease": "4.14.104-95.84.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.aarch64", + "kernelrelease": "4.14.238-182.421.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.aarch64", + "kernelrelease": "4.14.152-127.182.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.aarch64", + "kernelrelease": "4.14.152-124.171.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.aarch64", + "kernelrelease": "4.14.275-207.503.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.aarch64", + "kernelrelease": "4.14.231-173.360.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.aarch64", + "kernelrelease": "4.14.158-129.185.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.aarch64", + "kernelrelease": "4.14.256-197.484.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.aarch64", + "kernelrelease": "4.14.225-168.357.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.aarch64", + "kernelrelease": "4.14.231-173.361.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.aarch64", + "kernelrelease": "4.14.248-189.473.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.aarch64", + "kernelrelease": "4.14.128-112.105.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.aarch64", + "kernelrelease": "4.14.252-195.481.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" ] }, { @@ -230,303 +230,303 @@ "kernelrelease": "4.14.268-205.500.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.aarch64", + "kernelrelease": "4.14.88-88.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.aarch64", + "kernelrelease": "4.14.273-207.502.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.aarch64", + "kernelrelease": "4.14.186-146.268.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.aarch64", + "kernelrelease": "4.14.232-176.381.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.aarch64", + "kernelrelease": "4.14.203-156.332.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.aarch64", + "kernelrelease": "4.14.146-120.181.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.aarch64", + "kernelrelease": "4.14.192-147.314.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.aarch64", + "kernelrelease": "4.14.232-177.418.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.aarch64", + "kernelrelease": "4.14.77-80.57.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.aarch64", + "kernelrelease": "4.14.106-97.85.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.aarch64", + "kernelrelease": "4.14.114-105.126.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.aarch64", + "kernelrelease": "4.14.241-184.433.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.aarch64", + "kernelrelease": "4.14.109-99.92.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.aarch64", + "kernelrelease": "4.14.193-149.317.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.aarch64", + "kernelrelease": "4.14.123-111.109.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.aarch64", + "kernelrelease": "4.14.138-114.102.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.aarch64", + "kernelrelease": "4.14.219-164.354.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.aarch64", + "kernelrelease": "4.14.133-113.105.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.aarch64", + "kernelrelease": "4.14.214-160.339.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.aarch64", + "kernelrelease": "4.14.171-136.231.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.aarch64", + "kernelrelease": "4.14.225-169.362.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.aarch64", + "kernelrelease": "4.14.173-137.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.aarch64", + "kernelrelease": "4.14.252-195.483.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.aarch64", + "kernelrelease": "4.14.181-142.260.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.aarch64", + "kernelrelease": "4.14.181-140.257.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.aarch64", + "kernelrelease": "4.14.243-185.433.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.aarch64", + "kernelrelease": "4.14.97-90.72.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.aarch64", + "kernelrelease": "4.14.238-182.422.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.aarch64", + "kernelrelease": "4.14.165-133.209.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.aarch64", + "kernelrelease": "4.14.200-155.322.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.aarch64", + "kernelrelease": "4.14.177-139.254.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.aarch64", + "kernelrelease": "4.14.262-200.489.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.aarch64", + "kernelrelease": "4.14.77-86.82.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.aarch64", + "kernelrelease": "4.14.209-160.339.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.aarch64", + "kernelrelease": "4.14.77-81.59.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.aarch64", + "kernelrelease": "4.14.209-160.335.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.aarch64", + "kernelrelease": "4.14.143-118.123.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" ] }, { @@ -1103,22 +1103,6 @@ } ], "Fedora": [ - { - "kernelversion": 1, - "kernelrelease": "5.6.6-300.fc32.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/32/Everything/aarch64/os/Packages/k/kernel-devel-5.6.6-300.fc32.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.8.15-301.fc33.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/33/Everything/aarch64/os/Packages/k/kernel-devel-5.8.15-301.fc33.aarch64.rpm" - ] - }, { "kernelversion": 1, "kernelrelease": "5.11.12-300.fc34.aarch64", @@ -1145,42 +1129,26 @@ }, { "kernelversion": 1, - "kernelrelease": "5.11.22-100.fc32.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/32/Everything/aarch64/Packages/k/kernel-devel-5.11.22-100.fc32.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.18-100.fc33.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/33/Everything/aarch64/Packages/k/kernel-devel-5.14.18-100.fc33.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.17.8-100.fc34.aarch64", + "kernelrelease": "5.17.11-100.fc34.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.17.8-100.fc34.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.17.11-100.fc34.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.8-200.fc35.aarch64", + "kernelrelease": "5.17.11-200.fc35.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.17.8-200.fc35.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.17.11-200.fc35.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.8-300.fc36.aarch64", + "kernelrelease": "5.17.11-300.fc36.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.17.8-300.fc36.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.17.11-300.fc36.aarch64.rpm" ] } ], @@ -2177,7 +2145,7 @@ "kernelrelease": "1.4.0-4.ph4.aarch64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" ] }, { @@ -2220,6 +2188,14 @@ "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.109-2.ph4.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.10.109-3.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.109-3.ph4.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "5.10.25-1.ph4.aarch64", @@ -2523,9 +2499,9 @@ "kernelrelease": "5.17.3-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-arm64_5.17.3-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-arm64_5.17.3-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-arm64_5.17.3-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-arm64_5.17.3-1_arm64.deb" ] @@ -2535,11 +2511,11 @@ "kernelrelease": "5.10.113-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" ] }, { @@ -2547,9 +2523,9 @@ "kernelrelease": "5.14.9-2~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-arm64_5.14.9-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-arm64_5.14.9-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-arm64_5.14.9-2~bpo11+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb" ] }, { @@ -2557,11 +2533,11 @@ "kernelrelease": "5.15.5-2~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-arm64_5.15.5-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-arm64_5.15.5-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-arm64_5.15.5-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-arm64_5.15.5-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-arm64_5.15.5-2~bpo11+1_arm64.deb" ] }, { @@ -2569,10 +2545,10 @@ "kernelrelease": "5.15.15-2~bpo11+1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-arm64_5.15.15-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-arm64_5.15.15-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-arm64_5.15.15-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-arm64_5.15.15-2~bpo11+1_arm64.deb" ] }, @@ -2581,11 +2557,11 @@ "kernelrelease": "5.16.11-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-arm64_5.16.11-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-arm64_5.16.11-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-arm64_5.16.11-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-arm64_5.16.11-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-arm64_5.16.11-1~bpo11+1_arm64.deb" ] }, { @@ -2593,11 +2569,11 @@ "kernelrelease": "5.16.12-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb" ] }, { @@ -2605,10 +2581,10 @@ "kernelrelease": "5.10.84-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb" ] }, @@ -2617,11 +2593,11 @@ "kernelrelease": "5.10.106-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb" ] }, { @@ -2630,10 +2606,10 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-arm64_5.10.92-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-arm64_5.10.92-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-arm64_5.10.92-1~bpo10+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-arm64_5.10.92-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-arm64_5.10.92-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb" ] }, { @@ -2641,11 +2617,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb" ] }, { @@ -2653,11 +2629,11 @@ "kernelrelease": "5.10.70-1~bpo10+1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-arm64_5.10.70-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-arm64_5.10.70-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-arm64_5.10.70-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-arm64_5.10.70-1~bpo10+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-arm64_5.10.70-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb" ] }, { @@ -2676,10 +2652,22 @@ "kernelrelease": "4.19.235-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.18-1~exp1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common_5.18-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-rt-arm64_5.18-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-arm64_5.18-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common-rt_5.18-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-cloud-arm64_5.18-1~exp1_arm64.deb" ] }, { @@ -2687,10 +2675,10 @@ "kernelrelease": "5.17.6-1+b1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-rt-arm64_5.17.6-1+b1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-arm64_5.17.6-1+b1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common_5.17.6-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common-rt_5.17.6-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-arm64_5.17.6-1+b1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-rt-arm64_5.17.6-1+b1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-cloud-arm64_5.17.6-1+b1_arm64.deb" ] }, @@ -2699,10 +2687,10 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb" ] }, { @@ -2710,8 +2698,8 @@ "kernelrelease": "4.9.228-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb" ] }, { @@ -2720,10 +2708,10 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb" ] }, { @@ -2731,9 +2719,9 @@ "kernelrelease": "4.19.232-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb" ] }, @@ -2742,8 +2730,8 @@ "kernelrelease": "4.9.303-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb" ] }, { @@ -2751,10 +2739,10 @@ "kernelrelease": "4.19.232-1~deb9u1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb" ] } ], @@ -2782,8 +2770,8 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" ] }, { @@ -2800,8 +2788,8 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb" ] }, { @@ -2818,8 +2806,8 @@ "kernelrelease": "4.15.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb" ] }, { @@ -2827,26 +2815,26 @@ "kernelrelease": "4.15.0-1121-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb" ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-1123-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1123-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb" ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-1123-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1123-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" ] }, { @@ -2854,8 +2842,8 @@ "kernelrelease": "4.15.0-1124-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" ] }, { @@ -2863,26 +2851,26 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" ] }, { "kernelversion": "134", - "kernelrelease": "4.15.0-1125-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1125-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" ] }, { "kernelversion": "134", - "kernelrelease": "4.15.0-1125-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1125-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb" ] }, { @@ -2899,8 +2887,8 @@ "kernelrelease": "4.15.0-1127-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" ] }, { @@ -2917,8 +2905,8 @@ "kernelrelease": "4.15.0-1129-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb" ] }, { @@ -2935,8 +2923,17 @@ "kernelrelease": "4.15.0-1130-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" + ] + }, + { + "kernelversion": "140", + "kernelrelease": "4.15.0-1131-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_arm64.deb" ] }, { @@ -2980,8 +2977,8 @@ "kernelrelease": "4.15.0-172", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb" ] }, { @@ -2998,8 +2995,8 @@ "kernelrelease": "4.15.0-174", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" ] }, { @@ -3025,8 +3022,8 @@ "kernelrelease": "4.15.0-179", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_arm64.deb" ] }, { @@ -3034,8 +3031,26 @@ "kernelrelease": "4.15.0-180", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_arm64.deb" + ] + }, + { + "kernelversion": "190", + "kernelrelease": "4.15.0-181", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb" + ] + }, + { + "kernelversion": "191", + "kernelrelease": "4.15.0-182", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-182-generic_4.15.0-182.191_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-182_4.15.0-182.191_all.deb" ] }, { @@ -3043,8 +3058,8 @@ "kernelrelease": "5.0.0-1028-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb" ] }, { @@ -3052,8 +3067,8 @@ "kernelrelease": "5.4.0-100-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" ] }, { @@ -3061,8 +3076,8 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" ] }, { @@ -3070,8 +3085,8 @@ "kernelrelease": "5.4.0-1058-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb" ] }, { @@ -3079,8 +3094,8 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" ] }, { @@ -3115,8 +3130,8 @@ "kernelrelease": "5.4.0-1066-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb" ] }, { @@ -3133,8 +3148,8 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb" ] }, { @@ -3142,8 +3157,8 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" ] }, { @@ -3151,8 +3166,8 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb" ] }, { @@ -3160,8 +3175,8 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb" ] }, { @@ -3175,11 +3190,11 @@ }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1072-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb" ] }, { @@ -3193,11 +3208,11 @@ }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" ] }, { @@ -3205,8 +3220,17 @@ "kernelrelease": "5.4.0-1072-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb" ] }, { @@ -3214,17 +3238,44 @@ "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-1073-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "81~18.04.1", + "kernelrelease": "5.4.0-1076-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1076-aws_5.4.0-1076.81~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_all.deb" ] }, { @@ -3232,8 +3283,8 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb" ] }, { @@ -3241,8 +3292,8 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" ] }, { @@ -3250,8 +3301,8 @@ "kernelrelease": "5.4.0-1079-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_arm64.deb" ] }, { @@ -3259,8 +3310,8 @@ "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb" ] }, { @@ -3277,8 +3328,8 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb" ] }, { @@ -3295,8 +3346,17 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + ] + }, + { + "kernelversion": "129~18.04.1", + "kernelrelease": "5.4.0-115-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-115_5.4.0-115.129~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_arm64.deb" ] }, { @@ -3304,8 +3364,8 @@ "kernelrelease": "5.4.0-91-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" ] }, { @@ -3322,8 +3382,8 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb" ] }, { @@ -3331,8 +3391,8 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" ] }, { @@ -3340,8 +3400,8 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb" ] }, { @@ -3355,20 +3415,20 @@ }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1031-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1031-raspi2", + "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1031-raspi2", - "target": "ubuntu-raspi2", + "kernelrelease": "4.15.0-1031-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb" ] }, { @@ -3385,8 +3445,8 @@ "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb" ] }, { @@ -3394,8 +3454,8 @@ "kernelrelease": "4.15.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb" ] }, { @@ -3403,8 +3463,8 @@ "kernelrelease": "4.15.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb" ] }, { @@ -3412,8 +3472,8 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb" ] }, { @@ -3421,8 +3481,8 @@ "kernelrelease": "4.15.0-1040-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb" ] }, { @@ -3439,8 +3499,8 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" ] }, { @@ -3448,8 +3508,8 @@ "kernelrelease": "4.15.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb" ] }, { @@ -3457,8 +3517,8 @@ "kernelrelease": "4.15.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" ] }, { @@ -3466,8 +3526,8 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb" ] }, { @@ -3475,8 +3535,8 @@ "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb" ] }, { @@ -3484,8 +3544,8 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" ] }, { @@ -3493,8 +3553,8 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" ] }, { @@ -3502,8 +3562,8 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb" ] }, { @@ -3511,8 +3571,8 @@ "kernelrelease": "4.15.0-1053-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb" ] }, { @@ -3529,8 +3589,8 @@ "kernelrelease": "4.15.0-1054-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb" ] }, { @@ -3547,8 +3607,8 @@ "kernelrelease": "4.15.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" ] }, { @@ -3574,8 +3634,8 @@ "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" ] }, { @@ -3583,8 +3643,8 @@ "kernelrelease": "4.15.0-1058-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb" ] }, { @@ -3610,8 +3670,8 @@ "kernelrelease": "4.15.0-1060-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb" ] }, { @@ -3619,8 +3679,8 @@ "kernelrelease": "4.15.0-1062-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb" ] }, { @@ -3628,8 +3688,8 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb" ] }, { @@ -3646,8 +3706,8 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, { @@ -3664,8 +3724,8 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" ] }, { @@ -3673,8 +3733,8 @@ "kernelrelease": "4.15.0-1066-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" ] }, { @@ -3691,8 +3751,8 @@ "kernelrelease": "4.15.0-1067-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb" ] }, { @@ -3700,8 +3760,8 @@ "kernelrelease": "4.15.0-1069-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" ] }, { @@ -3727,8 +3787,8 @@ "kernelrelease": "4.15.0-1072-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb" ] }, { @@ -3745,8 +3805,8 @@ "kernelrelease": "4.15.0-1074-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb" ] }, { @@ -3763,8 +3823,8 @@ "kernelrelease": "4.15.0-1076-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" ] }, { @@ -3781,8 +3841,8 @@ "kernelrelease": "4.15.0-1077-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" ] }, { @@ -3790,8 +3850,8 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" ] }, { @@ -3826,8 +3886,8 @@ "kernelrelease": "4.15.0-1080-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb" ] }, { @@ -3835,8 +3895,8 @@ "kernelrelease": "4.15.0-1081-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb" ] }, { @@ -3844,8 +3904,8 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" ] }, { @@ -3853,8 +3913,8 @@ "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" ] }, { @@ -3862,8 +3922,8 @@ "kernelrelease": "4.15.0-1083-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb" ] }, { @@ -3880,8 +3940,8 @@ "kernelrelease": "4.15.0-1086-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" ] }, { @@ -3889,8 +3949,8 @@ "kernelrelease": "4.15.0-1086-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb" ] }, { @@ -3934,8 +3994,8 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { @@ -3943,8 +4003,8 @@ "kernelrelease": "4.15.0-1090-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb" ] }, { @@ -3952,8 +4012,8 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb" ] }, { @@ -3979,8 +4039,8 @@ "kernelrelease": "4.15.0-1093-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb" ] }, { @@ -4006,8 +4066,8 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" ] }, { @@ -4015,8 +4075,8 @@ "kernelrelease": "4.15.0-1095-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" ] }, { @@ -4024,8 +4084,8 @@ "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb" ] }, { @@ -4042,8 +4102,8 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" ] }, { @@ -4069,8 +4129,8 @@ "kernelrelease": "4.15.0-1098-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb" ] }, { @@ -4078,8 +4138,8 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb" ] }, { @@ -4132,8 +4192,8 @@ "kernelrelease": "4.15.0-1102-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb" ] }, { @@ -4168,8 +4228,8 @@ "kernelrelease": "4.15.0-1106-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb" ] }, { @@ -4177,8 +4237,8 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, { @@ -4195,8 +4255,8 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" ] }, { @@ -4213,8 +4273,8 @@ "kernelrelease": "4.15.0-1110-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" ] }, { @@ -4231,8 +4291,8 @@ "kernelrelease": "4.15.0-1111-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb" ] }, { @@ -4240,8 +4300,8 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" ] }, { @@ -4249,8 +4309,8 @@ "kernelrelease": "4.15.0-1112-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb" ] }, { @@ -4258,8 +4318,8 @@ "kernelrelease": "4.15.0-1113-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb" ] }, { @@ -4285,8 +4345,8 @@ "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" ] }, { @@ -4294,8 +4354,8 @@ "kernelrelease": "4.15.0-1115-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb" ] }, { @@ -4312,8 +4372,8 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" ] }, { @@ -4321,8 +4381,8 @@ "kernelrelease": "4.15.0-1118-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb" ] }, { @@ -4330,8 +4390,8 @@ "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" ] }, { @@ -4339,8 +4399,8 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" ] }, { @@ -4354,20 +4414,20 @@ }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1126-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" ] }, { @@ -4393,8 +4453,8 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" ] }, { @@ -4411,8 +4471,8 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb" ] }, { @@ -4420,8 +4480,8 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb" ] }, { @@ -4429,8 +4489,8 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" ] }, { @@ -4438,8 +4498,8 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" ] }, { @@ -4447,8 +4507,8 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" ] }, { @@ -4474,8 +4534,8 @@ "kernelrelease": "4.15.0-136", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" ] }, { @@ -4483,8 +4543,8 @@ "kernelrelease": "4.15.0-137", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb" ] }, { @@ -4492,8 +4552,8 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" ] }, { @@ -4501,8 +4561,8 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" ] }, { @@ -4519,8 +4579,8 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" ] }, { @@ -4528,8 +4588,8 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" ] }, { @@ -4546,8 +4606,8 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, { @@ -4555,8 +4615,8 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" ] }, { @@ -4564,8 +4624,8 @@ "kernelrelease": "4.15.0-153", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb" ] }, { @@ -4600,8 +4660,8 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb" ] }, { @@ -4609,8 +4669,8 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb" ] }, { @@ -4645,8 +4705,8 @@ "kernelrelease": "4.15.0-171", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_arm64.deb" ] }, { @@ -4654,8 +4714,8 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb" ] }, { @@ -4663,9 +4723,9 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb" ] }, { @@ -4683,8 +4743,8 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb" ] }, @@ -4694,8 +4754,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb" ] }, { @@ -4703,8 +4763,8 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" ] }, @@ -4713,9 +4773,9 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" ] }, { @@ -4733,9 +4793,9 @@ "kernelrelease": "4.15.0-34", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb" ] }, { @@ -4743,9 +4803,9 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb" ] }, { @@ -4754,8 +4814,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" ] }, { @@ -4763,8 +4823,8 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb" ] }, @@ -4774,8 +4834,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" ] }, { @@ -4783,9 +4843,9 @@ "kernelrelease": "4.15.0-44", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb" ] }, { @@ -4794,8 +4854,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb" ] }, { @@ -4803,8 +4863,8 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb" ] }, @@ -4814,8 +4874,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" ] }, { @@ -4823,8 +4883,8 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb" ] }, { @@ -4832,8 +4892,8 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" ] }, { @@ -4841,8 +4901,8 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" ] }, { @@ -4850,8 +4910,8 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" ] }, { @@ -4886,8 +4946,8 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" ] }, { @@ -4895,8 +4955,8 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" ] }, { @@ -4904,8 +4964,8 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" ] }, { @@ -4922,8 +4982,8 @@ "kernelrelease": "4.15.0-69", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" ] }, { @@ -4940,8 +5000,8 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" ] }, { @@ -4967,8 +5027,8 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" ] }, { @@ -4976,8 +5036,8 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" ] }, { @@ -4994,8 +5054,8 @@ "kernelrelease": "4.15.0-99", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb" ] }, { @@ -5003,9 +5063,9 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" ] }, { @@ -5013,8 +5073,8 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" ] }, @@ -5024,8 +5084,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" ] }, { @@ -5033,9 +5093,9 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" ] }, { @@ -5053,9 +5113,9 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" ] }, { @@ -5063,9 +5123,9 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb" ] }, { @@ -5073,9 +5133,9 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb" ] }, { @@ -5083,8 +5143,8 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb" ] }, @@ -5094,8 +5154,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb" ] }, { @@ -5112,8 +5172,8 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" ] }, { @@ -5121,8 +5181,8 @@ "kernelrelease": "5.0.0-1023-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" ] }, { @@ -5130,8 +5190,8 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb" ] }, { @@ -5139,8 +5199,8 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb" ] }, { @@ -5148,8 +5208,8 @@ "kernelrelease": "5.0.0-1027-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb" ] }, { @@ -5211,8 +5271,8 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb" ] }, { @@ -5229,8 +5289,8 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb" ] }, { @@ -5247,8 +5307,8 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb" ] }, { @@ -5256,8 +5316,8 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb" ] }, { @@ -5274,8 +5334,8 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb" ] }, { @@ -5301,8 +5361,8 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" ] }, { @@ -5328,8 +5388,8 @@ "kernelrelease": "5.3.0-1017-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb" ] }, { @@ -5337,8 +5397,8 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb" ] }, { @@ -5364,8 +5424,8 @@ "kernelrelease": "5.3.0-1030-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb" ] }, { @@ -5373,8 +5433,8 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" ] }, { @@ -5391,8 +5451,8 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb" ] }, { @@ -5400,8 +5460,8 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb" ] }, { @@ -5418,8 +5478,8 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" ] }, { @@ -5427,8 +5487,8 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb" ] }, { @@ -5436,8 +5496,8 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" ] }, { @@ -5445,8 +5505,8 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" ] }, { @@ -5454,8 +5514,8 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" ] }, { @@ -5463,8 +5523,8 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb" ] }, { @@ -5481,8 +5541,8 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" ] }, { @@ -5490,8 +5550,8 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" ] }, { @@ -5499,8 +5559,8 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" ] }, { @@ -5508,8 +5568,8 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" ] }, { @@ -5526,8 +5586,8 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb" ] }, { @@ -5553,8 +5613,8 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" ] }, { @@ -5562,8 +5622,8 @@ "kernelrelease": "5.4.0-1022-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { @@ -5571,8 +5631,8 @@ "kernelrelease": "5.4.0-1024-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb" ] }, { @@ -5580,8 +5640,8 @@ "kernelrelease": "5.4.0-1025-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { @@ -5598,8 +5658,8 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" ] }, { @@ -5607,8 +5667,8 @@ "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { @@ -5616,8 +5676,8 @@ "kernelrelease": "5.4.0-1034-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb" ] }, { @@ -5634,8 +5694,8 @@ "kernelrelease": "5.4.0-1037-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb" ] }, { @@ -5652,8 +5712,8 @@ "kernelrelease": "5.4.0-1039-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { @@ -5670,8 +5730,8 @@ "kernelrelease": "5.4.0-1041-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb" ] }, { @@ -5733,8 +5793,8 @@ "kernelrelease": "5.4.0-1049-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" ] }, { @@ -5769,8 +5829,8 @@ "kernelrelease": "5.4.0-1054-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb" ] }, { @@ -5796,8 +5856,8 @@ "kernelrelease": "5.4.0-1055-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb" ] }, { @@ -5823,8 +5883,8 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" ] }, { @@ -5832,8 +5892,8 @@ "kernelrelease": "5.4.0-1057-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb" ] }, { @@ -5841,8 +5901,8 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb" ] }, { @@ -5850,8 +5910,8 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { @@ -5886,8 +5946,8 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb" ] }, { @@ -5895,8 +5955,8 @@ "kernelrelease": "5.4.0-1063-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb" ] }, { @@ -5904,8 +5964,8 @@ "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" ] }, { @@ -5940,8 +6000,8 @@ "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb" ] }, { @@ -5967,8 +6027,8 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" ] }, { @@ -5976,8 +6036,8 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb" ] }, { @@ -6021,8 +6081,8 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" ] }, { @@ -6030,8 +6090,8 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" ] }, { @@ -6039,8 +6099,8 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb" ] }, { @@ -6048,8 +6108,8 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb" ] }, { @@ -6075,8 +6135,8 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb" ] }, { @@ -6084,8 +6144,8 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb" ] }, { @@ -6111,8 +6171,8 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" ] }, { @@ -6120,8 +6180,8 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb" ] }, { @@ -6129,8 +6189,8 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" ] }, { @@ -6228,8 +6288,8 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb" ] }, { @@ -6246,8 +6306,8 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" ] }, { @@ -6255,8 +6315,8 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb" ] }, { @@ -6273,8 +6333,8 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb" ] }, { @@ -6300,8 +6360,8 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb" ] }, { @@ -6318,9 +6378,9 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb" ] }, { @@ -6328,9 +6388,9 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, { @@ -6339,8 +6399,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" ] }, { @@ -6357,8 +6417,8 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb" ] }, { @@ -6366,8 +6426,8 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" ] }, { @@ -6375,8 +6435,8 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb" ] }, { @@ -6420,8 +6480,8 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" ] }, { @@ -6438,8 +6498,8 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" ] }, { @@ -6447,8 +6507,8 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] }, { @@ -6456,8 +6516,8 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" ] }, { @@ -6465,18 +6525,9 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb" ] }, { @@ -6489,12 +6540,12 @@ ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-azure", - "target": "ubuntu-azure", + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb" ] }, { @@ -6502,27 +6553,26 @@ "kernelrelease": "5.15.0-1005-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1006-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.15.0-1005-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "6", + "kernelrelease": "5.15.0-1006-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb" ] }, { @@ -6535,14 +6585,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb" ] }, + { + "kernelversion": "28", + "kernelrelease": "5.15.0-27-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" + ] + }, { "kernelversion": "29", "kernelrelease": "5.15.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_arm64.deb" ] }, { @@ -6565,20 +6625,20 @@ }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1004-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb" ] }, { @@ -6595,8 +6655,8 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb" ] }, @@ -6605,8 +6665,8 @@ "kernelrelease": "5.11.0-1022-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb" ] }, { @@ -6623,8 +6683,8 @@ "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { @@ -6632,8 +6692,8 @@ "kernelrelease": "5.11.0-1028-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { @@ -6641,8 +6701,8 @@ "kernelrelease": "5.11.0-1029-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -6659,8 +6719,8 @@ "kernelrelease": "5.11.0-1029-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" ] }, { @@ -6668,9 +6728,9 @@ "kernelrelease": "5.11.0-40-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb" ] }, { @@ -6678,9 +6738,9 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" ] }, { @@ -6688,9 +6748,9 @@ "kernelrelease": "5.11.0-42-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb" ] }, { @@ -6698,9 +6758,9 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb" ] }, { @@ -6709,8 +6769,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb" ] }, { @@ -6718,9 +6778,9 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb" ] }, { @@ -6764,8 +6824,8 @@ "kernelrelease": "5.13.0-1019-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -6800,8 +6860,8 @@ "kernelrelease": "5.13.0-1023-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" ] }, { @@ -6827,8 +6887,26 @@ "kernelrelease": "5.13.0-1025-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" + ] + }, + { + "kernelversion": "28~20.04.1", + "kernelrelease": "5.13.0-1026-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1026_5.13.0-1026.28~20.04.1_all.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.13.0-1026-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1026-azure_5.13.0-1026.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb" ] }, { @@ -6845,8 +6923,17 @@ "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" + ] + }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1030-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" ] }, { @@ -6854,9 +6941,9 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" ] }, { @@ -6865,8 +6952,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb" ] }, { @@ -6874,8 +6961,8 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" ] }, @@ -6885,8 +6972,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb" ] }, { @@ -6894,9 +6981,9 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb" ] }, { @@ -6904,9 +6991,9 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb" ] }, { @@ -6914,8 +7001,8 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb" ] }, @@ -6924,8 +7011,8 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb" ] }, @@ -6944,9 +7031,9 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" ] }, { @@ -6954,9 +7041,9 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" ] }, { @@ -6965,8 +7052,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" ] }, { @@ -6974,9 +7061,37 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "51~20.04.1", + "kernelrelease": "5.13.0-46-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic-64k_5.13.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "8~20.04.1", + "kernelrelease": "5.15.0-1007-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1008-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" ] }, { @@ -6984,9 +7099,9 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb" ] }, { @@ -7005,8 +7120,8 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb" ] }, { @@ -7014,9 +7129,9 @@ "kernelrelease": "5.15.0-32-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" ] }, { @@ -7025,8 +7140,18 @@ "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { @@ -7043,26 +7168,26 @@ "kernelrelease": "5.4.0-102", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1026-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1026-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" ] }, { @@ -7124,8 +7249,8 @@ "kernelrelease": "5.4.0-1034-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1034_5.4.0-1034.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1034-bluefield_5.4.0-1034.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1034-bluefield_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1034_5.4.0-1034.37_all.deb" ] }, { @@ -7133,8 +7258,17 @@ "kernelrelease": "5.4.0-1034-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb" + ] + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" ] }, { @@ -7147,21 +7281,21 @@ ] }, { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-raspi", - "target": "ubuntu-raspi", + "kernelversion": "39", + "kernelrelease": "5.4.0-1036-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1036-bluefield_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1036_5.4.0-1036.39_all.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-raspi", + "kernelversion": "39", + "kernelrelease": "5.4.0-1036-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" ] }, { @@ -7173,6 +7307,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" ] }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb" + ] + }, { "kernelversion": "119", "kernelrelease": "5.4.0-105", @@ -7187,8 +7330,8 @@ "kernelrelease": "5.4.0-1051-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb" ] }, { @@ -7196,8 +7339,8 @@ "kernelrelease": "5.4.0-1052-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" ] }, { @@ -7268,8 +7411,8 @@ "kernelrelease": "5.4.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb" ] }, { @@ -7277,8 +7420,8 @@ "kernelrelease": "5.4.0-1062-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb" ] }, { @@ -7286,8 +7429,8 @@ "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -7331,8 +7474,8 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" ] }, { @@ -7349,8 +7492,8 @@ "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb" ] }, { @@ -7358,8 +7501,8 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" ] }, { @@ -7367,26 +7510,26 @@ "kernelrelease": "5.4.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb" ] }, { @@ -7394,8 +7537,8 @@ "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb" ] }, { @@ -7403,26 +7546,26 @@ "kernelrelease": "5.4.0-1072-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1072-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb" ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" ] }, { @@ -7448,17 +7591,17 @@ "kernelrelease": "5.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb" ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1073-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb" ] }, { @@ -7466,8 +7609,17 @@ "kernelrelease": "5.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb" + ] + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" ] }, { @@ -7475,8 +7627,8 @@ "kernelrelease": "5.4.0-1075-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb" ] }, { @@ -7493,8 +7645,17 @@ "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb" + ] + }, + { + "kernelversion": "81", + "kernelrelease": "5.4.0-1076-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1076_5.4.0-1076.81_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_arm64.deb" ] }, { @@ -7520,8 +7681,8 @@ "kernelrelease": "5.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" ] }, { @@ -7529,13 +7690,22 @@ "kernelrelease": "5.4.0-1080-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" ] }, { - "kernelversion": "123", - "kernelrelease": "5.4.0-109", + "kernelversion": "84", + "kernelrelease": "5.4.0-1081-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_arm64.deb" + ] + }, + { + "kernelversion": "123", + "kernelrelease": "5.4.0-109", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", @@ -7547,8 +7717,8 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" ] }, { @@ -7565,8 +7735,26 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb" + ] + }, + { + "kernelversion": "128", + "kernelrelease": "5.4.0-114", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb" + ] + }, + { + "kernelversion": "129", + "kernelrelease": "5.4.0-115", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-115-generic_5.4.0-115.129_arm64.deb" ] }, { @@ -7574,8 +7762,8 @@ "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" ] }, { @@ -7592,8 +7780,8 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" ] }, { @@ -7601,9 +7789,9 @@ "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" ] }, { @@ -7617,20 +7805,20 @@ }, { "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1016-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb" ] }, { "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1016-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { @@ -7638,8 +7826,8 @@ "kernelrelease": "5.11.0-1017-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -7656,8 +7844,8 @@ "kernelrelease": "5.11.0-1019-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -7665,8 +7853,8 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" ] }, { @@ -7674,8 +7862,8 @@ "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb" ] }, { @@ -7692,8 +7880,8 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb" ] }, { @@ -7716,29 +7904,29 @@ }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -7746,17 +7934,26 @@ "kernelrelease": "5.11.0-1025-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" ] }, { @@ -7764,8 +7961,8 @@ "kernelrelease": "5.11.0-1027-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb" ] }, { @@ -7777,15 +7974,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb" ] }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" - ] - }, { "kernelversion": "31~20.04.2", "kernelrelease": "5.11.0-1028-azure-5.11", @@ -7800,8 +7988,8 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb" ] }, @@ -7820,8 +8008,8 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb" ] }, @@ -7831,8 +8019,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb" ] }, { @@ -7840,9 +8028,9 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb" ] }, { @@ -7850,9 +8038,9 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" ] }, { @@ -7860,9 +8048,9 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" ] }, { @@ -7870,8 +8058,8 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb" ] }, @@ -7880,9 +8068,9 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb" ] }, { @@ -7890,8 +8078,8 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" ] }, { @@ -7899,8 +8087,8 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" ] }, { @@ -7917,8 +8105,8 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" ] }, { @@ -7926,8 +8114,8 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb" ] }, { @@ -7935,26 +8123,26 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb" ] }, { @@ -7962,8 +8150,8 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" ] }, { @@ -7971,8 +8159,8 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb" ] }, { @@ -7998,8 +8186,8 @@ "kernelrelease": "5.13.0-1022-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb" ] }, { @@ -8026,8 +8214,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb" ] }, { @@ -8035,9 +8223,9 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb" ] }, { @@ -8045,8 +8233,8 @@ "kernelrelease": "5.13.0-27-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb" ] }, @@ -8055,9 +8243,9 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb" ] }, { @@ -8102,8 +8290,8 @@ "kernelrelease": "5.4.0-1012-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb" ] }, { @@ -8111,8 +8299,8 @@ "kernelrelease": "5.4.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" ] }, { @@ -8138,8 +8326,8 @@ "kernelrelease": "5.4.0-1015-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { @@ -8165,8 +8353,8 @@ "kernelrelease": "5.4.0-1016-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb" ] }, { @@ -8192,8 +8380,8 @@ "kernelrelease": "5.4.0-1018-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" ] }, { @@ -8201,8 +8389,8 @@ "kernelrelease": "5.4.0-1019-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1019_5.4.0-1019.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1019_5.4.0-1019.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb" ] }, { @@ -8219,8 +8407,8 @@ "kernelrelease": "5.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb" ] }, { @@ -8237,8 +8425,8 @@ "kernelrelease": "5.4.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb" ] }, { @@ -8246,8 +8434,8 @@ "kernelrelease": "5.4.0-1021-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb" ] }, { @@ -8270,20 +8458,20 @@ }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1022-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1022-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1022-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1022-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb" ] }, { @@ -8309,26 +8497,26 @@ "kernelrelease": "5.4.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1025-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1025-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1025-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" ] }, { @@ -8336,8 +8524,8 @@ "kernelrelease": "5.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb" ] }, { @@ -8354,8 +8542,8 @@ "kernelrelease": "5.4.0-1029-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb" ] }, { @@ -8363,8 +8551,8 @@ "kernelrelease": "5.4.0-1030-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" ] }, { @@ -8387,20 +8575,20 @@ }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1032-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1032-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" ] }, { @@ -8408,8 +8596,8 @@ "kernelrelease": "5.4.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -8417,17 +8605,8 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1036-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" ] }, { @@ -8471,8 +8650,8 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" ] }, { @@ -8480,8 +8659,8 @@ "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { @@ -8489,8 +8668,8 @@ "kernelrelease": "5.4.0-1041-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb" ] }, { @@ -8534,8 +8713,8 @@ "kernelrelease": "5.4.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb" ] }, { @@ -8552,8 +8731,8 @@ "kernelrelease": "5.4.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb" ] }, { @@ -8579,8 +8758,8 @@ "kernelrelease": "5.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb" ] }, { @@ -8588,8 +8767,8 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb" ] }, { @@ -8624,8 +8803,8 @@ "kernelrelease": "5.4.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { @@ -8633,8 +8812,8 @@ "kernelrelease": "5.4.0-1052-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" ] }, { @@ -8642,8 +8821,8 @@ "kernelrelease": "5.4.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" ] }, { @@ -8651,8 +8830,8 @@ "kernelrelease": "5.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb" ] }, { @@ -8669,8 +8848,8 @@ "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" ] }, { @@ -8678,8 +8857,8 @@ "kernelrelease": "5.4.0-1055-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" ] }, { @@ -8705,8 +8884,8 @@ "kernelrelease": "5.4.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb" ] }, { @@ -8714,8 +8893,8 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb" ] }, { @@ -8732,8 +8911,8 @@ "kernelrelease": "5.4.0-1058-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb" ] }, { @@ -8741,8 +8920,8 @@ "kernelrelease": "5.4.0-1059-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" ] }, { @@ -8750,8 +8929,8 @@ "kernelrelease": "5.4.0-1059-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb" ] }, { @@ -8768,8 +8947,8 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { @@ -8804,8 +8983,8 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb" ] }, { @@ -8822,8 +9001,8 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" ] }, { @@ -8858,8 +9037,8 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" ] }, { @@ -8876,8 +9055,8 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" ] }, { @@ -8894,8 +9073,8 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" ] }, { @@ -8903,8 +9082,8 @@ "kernelrelease": "5.4.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" ] }, { @@ -8921,8 +9100,8 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" ] }, { @@ -8930,8 +9109,8 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" ] }, { @@ -8939,8 +9118,8 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb" ] }, { @@ -8966,8 +9145,8 @@ "kernelrelease": "5.4.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" ] }, { @@ -9002,8 +9181,8 @@ "kernelrelease": "5.4.0-60", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" ] }, { @@ -9020,8 +9199,8 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb" ] }, { @@ -9029,8 +9208,8 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" ] }, { @@ -9047,8 +9226,8 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" ] }, { @@ -9056,8 +9235,8 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" ] }, { @@ -9083,8 +9262,8 @@ "kernelrelease": "5.4.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb" ] }, { @@ -9101,8 +9280,8 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb" ] }, { @@ -9110,8 +9289,8 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" ] }, { @@ -9128,8 +9307,8 @@ "kernelrelease": "5.4.0-86", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb" ] }, { @@ -9137,8 +9316,8 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" ] }, { @@ -9146,8 +9325,8 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" ] }, { @@ -9173,8 +9352,8 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" ] }, { @@ -9200,8 +9379,8 @@ "kernelrelease": "5.8.0-1031-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb" ] }, { @@ -9209,8 +9388,8 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" ] }, { @@ -9236,8 +9415,8 @@ "kernelrelease": "5.8.0-1038-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb" ] }, { @@ -9254,8 +9433,8 @@ "kernelrelease": "5.8.0-1041-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb" ] }, { @@ -9263,8 +9442,8 @@ "kernelrelease": "5.8.0-1042-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb" ] }, { @@ -9272,9 +9451,9 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb" ] }, { @@ -9282,9 +9461,9 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" ] }, { @@ -9292,8 +9471,8 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb" ] }, @@ -9302,8 +9481,8 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" ] }, @@ -9312,9 +9491,9 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb" ] }, { @@ -9322,9 +9501,9 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb" ] }, { @@ -9332,9 +9511,9 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" ] }, { @@ -9342,9 +9521,9 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" ] }, { @@ -9352,9 +9531,9 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" ] }, { @@ -9362,9 +9541,9 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb" ] }, { @@ -9372,9 +9551,9 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb" ] }, { @@ -9383,8 +9562,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb" ] }, { @@ -9393,8 +9572,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" ] }, { @@ -9402,9 +9581,9 @@ "kernelrelease": "5.8.0-59-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" ] }, { @@ -9413,8 +9592,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb" ] }, { @@ -9440,8 +9619,8 @@ "kernelrelease": "5.4.0-1049-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb" ] }, { @@ -9467,8 +9646,8 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" ] }, { @@ -9476,8 +9655,8 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" ] }, @@ -9486,9 +9665,9 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb" ] }, { @@ -9496,9 +9675,9 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb" ] }, { @@ -9506,9 +9685,9 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb" ] }, { @@ -9526,8 +9705,8 @@ "kernelrelease": "5.4.0-1008-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb" ] }, { @@ -9544,8 +9723,8 @@ "kernelrelease": "5.4.0-26", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb" ] }, { @@ -9553,26 +9732,26 @@ "kernelrelease": "5.11.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb" ] }, { @@ -9580,26 +9759,26 @@ "kernelrelease": "5.11.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.11.0-1027-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1027-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" ] }, { @@ -9645,8 +9824,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb" ] }, { @@ -9654,26 +9833,26 @@ "kernelrelease": "5.13.0-1007-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1010-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" ] }, { @@ -9681,8 +9860,8 @@ "kernelrelease": "5.13.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb" ] }, { @@ -9690,8 +9869,8 @@ "kernelrelease": "5.13.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb" ] }, { @@ -9699,8 +9878,8 @@ "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb" ] }, { @@ -9708,8 +9887,8 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb" ] }, { @@ -9717,17 +9896,17 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, { @@ -9741,11 +9920,11 @@ }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1017-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb" ] }, { @@ -9762,17 +9941,8 @@ "kernelrelease": "5.13.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.13.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb" ] }, { @@ -9785,12 +9955,12 @@ ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-azure", + "kernelversion": "21", + "kernelrelease": "5.13.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { @@ -9807,17 +9977,17 @@ "kernelrelease": "5.13.0-1020-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1021-raspi", - "target": "ubuntu-raspi", + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb" ] }, { @@ -9825,26 +9995,26 @@ "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.13.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelversion": "23", + "kernelrelease": "5.13.0-1021-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws", + "kernelversion": "27", + "kernelrelease": "5.13.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" ] }, { @@ -9856,6 +10026,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb" ] }, + { + "kernelversion": "24", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb" + ] + }, { "kernelversion": "25", "kernelrelease": "5.13.0-1023-aws", @@ -9870,8 +10049,8 @@ "kernelrelease": "5.13.0-1023-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" ] }, { @@ -9879,8 +10058,8 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb" ] }, { @@ -9894,20 +10073,20 @@ }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1024-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1024-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1024-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1024-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb" ] }, { @@ -9930,20 +10109,20 @@ }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1025-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" ] }, { @@ -9955,15 +10134,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_arm64.deb" ] }, - { - "kernelversion": "31", - "kernelrelease": "5.13.0-1026-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" - ] - }, { "kernelversion": "28", "kernelrelease": "5.13.0-1026-raspi", @@ -9973,13 +10143,40 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1026_5.13.0-1026.28_arm64.deb" ] }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1026-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_arm64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1026-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_arm64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-1026-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb" + ] + }, { "kernelversion": "29", "kernelrelease": "5.13.0-1027-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb" ] }, { @@ -9996,8 +10193,8 @@ "kernelrelease": "5.13.0-1028-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb" ] }, { @@ -10005,8 +10202,26 @@ "kernelrelease": "5.13.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-1029-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.13.0-1030-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_arm64.deb" ] }, { @@ -10014,8 +10229,8 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" ] }, @@ -10034,9 +10249,9 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb" ] }, { @@ -10044,9 +10259,9 @@ "kernelrelease": "5.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_arm64.deb" ] }, { @@ -10054,9 +10269,9 @@ "kernelrelease": "5.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb" ] }, { @@ -10065,8 +10280,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb" ] }, { @@ -10074,9 +10289,9 @@ "kernelrelease": "5.13.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb" ] }, { @@ -10085,8 +10300,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" ] }, { @@ -10095,8 +10310,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb" ] }, { @@ -10114,9 +10329,9 @@ "kernelrelease": "5.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48_arm64.deb" ] }, { @@ -10124,9 +10339,29 @@ "kernelrelease": "5.13.0-44", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.13.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic-64k_5.13.0-45.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_arm64.deb" + ] + }, + { + "kernelversion": "51", + "kernelrelease": "5.13.0-46", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic-64k_5.13.0-46.51_arm64.deb" ] }, { @@ -10134,8 +10369,8 @@ "kernelrelease": "5.13.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { @@ -10143,8 +10378,8 @@ "kernelrelease": "5.13.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" ] }, { @@ -10152,26 +10387,26 @@ "kernelrelease": "5.13.0-1008-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "5.13.0-1009-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "5.13.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1009-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb" ] }, { @@ -10179,8 +10414,8 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb" ] }, { @@ -10197,8 +10432,8 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb" ] }, { @@ -10206,8 +10441,8 @@ "kernelrelease": "5.13.0-1011-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb" ] }, { @@ -10224,8 +10459,8 @@ "kernelrelease": "5.13.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" ] }, { @@ -10296,8 +10531,8 @@ "kernelrelease": "5.13.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb" ] }, { @@ -10305,8 +10540,8 @@ "kernelrelease": "5.13.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb" ] }, { @@ -10323,9 +10558,9 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" ] }, { @@ -10334,8 +10569,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb" ] }, { @@ -10343,8 +10578,8 @@ "kernelrelease": "5.13.0-23", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" ] }, @@ -10353,9 +10588,9 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb" ] }, { @@ -10363,9 +10598,9 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb" ] }, { @@ -10373,9 +10608,9 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" ] }, { @@ -10383,9 +10618,9 @@ "kernelrelease": "5.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb" ] }, { @@ -10393,9 +10628,9 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb" ] }, { @@ -10403,8 +10638,8 @@ "kernelrelease": "5.13.0-1005-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" ] }, { @@ -10421,8 +10656,8 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb" ] }, @@ -10440,8 +10675,8 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb" ] }, { @@ -10458,8 +10693,17 @@ "kernelrelease": "5.15.0-1006-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1006-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb" ] }, { @@ -10467,8 +10711,17 @@ "kernelrelease": "5.15.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1006-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_arm64.deb" ] }, { @@ -10476,8 +10729,17 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1007-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" ] }, { @@ -10489,34 +10751,70 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb" ] }, + { + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1008-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1008-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.15.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb" + ] + }, { "kernelversion": "30", "kernelrelease": "5.15.0-29", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb" ] }, { "kernelversion": "31", - "kernelrelease": "5.15.0-30", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-30-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb" ] }, { "kernelversion": "31", - "kernelrelease": "5.15.0-30-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-30", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb" ] }, { @@ -10524,9 +10822,9 @@ "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency-64k_5.15.0-32.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb" ] }, { @@ -10534,9 +10832,19 @@ "kernelrelease": "5.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb" ] }, { @@ -10544,19 +10852,29 @@ "kernelrelease": "5.15.0-33-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.15.0-33", + "kernelversion": "36", + "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb" ] }, { @@ -10582,8 +10900,8 @@ "kernelrelease": "5.15.0-1005-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb" ] }, { @@ -10591,8 +10909,8 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb" ] }, @@ -10619,8 +10937,8 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" ] }, { @@ -10628,8 +10946,8 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb" ] }, { @@ -10637,8 +10955,8 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_arm64.deb" ] }, { @@ -10646,8 +10964,8 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" ] }, { @@ -10655,8 +10973,8 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" ] }, { @@ -10664,8 +10982,8 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb" ] }, { @@ -10673,8 +10991,8 @@ "kernelrelease": "3.13.0-110", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb" ] }, { @@ -10700,8 +11018,8 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" ] }, { @@ -10709,8 +11027,8 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb" ] }, { @@ -10727,8 +11045,8 @@ "kernelrelease": "3.13.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" ] }, { @@ -10745,8 +11063,8 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" ] }, { @@ -10754,8 +11072,8 @@ "kernelrelease": "3.13.0-126", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" ] }, { @@ -10772,8 +11090,8 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" ] }, { @@ -10790,8 +11108,8 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb" ] }, { @@ -10808,8 +11126,8 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" ] }, { @@ -10844,8 +11162,8 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" ] }, { @@ -10862,8 +11180,8 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" ] }, { @@ -10871,8 +11189,8 @@ "kernelrelease": "3.13.0-149", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" ] }, { @@ -10889,8 +11207,8 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb" ] }, { @@ -10907,8 +11225,8 @@ "kernelrelease": "3.13.0-156", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" ] }, { @@ -10916,8 +11234,8 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" ] }, { @@ -10925,8 +11243,8 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" ] }, { @@ -10934,8 +11252,8 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb" ] }, { @@ -10943,8 +11261,8 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb" ] }, { @@ -10961,8 +11279,8 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" ] }, { @@ -10988,8 +11306,8 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" ] }, { @@ -11033,8 +11351,8 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" ] }, { @@ -11042,8 +11360,8 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" ] }, { @@ -11078,8 +11396,8 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" ] }, { @@ -11096,8 +11414,8 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" ] }, { @@ -11105,8 +11423,8 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb" ] }, { @@ -11123,8 +11441,8 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb" ] }, { @@ -11132,8 +11450,8 @@ "kernelrelease": "3.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb" ] }, { @@ -11150,8 +11468,8 @@ "kernelrelease": "3.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb" ] }, { @@ -11159,8 +11477,8 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, { @@ -11168,8 +11486,8 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb" ] }, { @@ -11177,8 +11495,8 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" ] }, { @@ -11186,8 +11504,8 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" ] }, { @@ -11195,8 +11513,8 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb" ] }, { @@ -11204,8 +11522,8 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb" ] }, { @@ -11213,8 +11531,8 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb" ] }, { @@ -11258,8 +11576,8 @@ "kernelrelease": "3.13.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb" ] }, { @@ -11267,8 +11585,8 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" ] }, { @@ -11276,8 +11594,8 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" ] }, { @@ -11285,8 +11603,8 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb" ] }, { @@ -11339,8 +11657,8 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" ] }, { @@ -11366,8 +11684,8 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" ] }, { @@ -11384,8 +11702,8 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb" ] }, { @@ -11402,8 +11720,8 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" ] }, { @@ -11429,8 +11747,8 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb" ] }, { @@ -11447,8 +11765,8 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb" ] }, { @@ -11456,8 +11774,8 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" ] }, { @@ -11465,8 +11783,8 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb" ] }, { @@ -11474,8 +11792,8 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" ] }, { @@ -11483,8 +11801,8 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" ] }, { @@ -11501,8 +11819,8 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" ] }, { @@ -11510,8 +11828,8 @@ "kernelrelease": "3.16.0-33-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" ] }, { @@ -11519,8 +11837,8 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" ] }, { @@ -11528,8 +11846,8 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" ] }, { @@ -11546,8 +11864,8 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" ] }, { @@ -11564,8 +11882,8 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" ] }, { @@ -11582,8 +11900,8 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb" ] }, { @@ -11609,8 +11927,8 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb" ] }, { @@ -11636,8 +11954,8 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb" ] }, { @@ -11645,8 +11963,8 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" ] }, { @@ -11672,8 +11990,8 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb" ] }, { @@ -11699,8 +12017,8 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb" ] }, { @@ -11717,8 +12035,8 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" ] }, { @@ -11726,8 +12044,8 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" ] }, { @@ -11744,8 +12062,8 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb" ] }, { @@ -11780,8 +12098,8 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" ] }, { @@ -11789,8 +12107,8 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" ] }, { @@ -11834,8 +12152,8 @@ "kernelrelease": "3.19.0-28-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb" ] }, { @@ -11879,8 +12197,8 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb" ] }, { @@ -11915,8 +12233,8 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" ] }, { @@ -11933,8 +12251,8 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" ] }, { @@ -11942,8 +12260,8 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" ] }, { @@ -11960,8 +12278,8 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb" ] }, { @@ -11969,8 +12287,8 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" ] }, { @@ -11987,8 +12305,8 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb" ] }, { @@ -11996,8 +12314,8 @@ "kernelrelease": "3.19.0-65-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb" ] }, { @@ -12005,8 +12323,8 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb" ] }, { @@ -12014,8 +12332,8 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" ] }, { @@ -12023,8 +12341,8 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb" ] }, { @@ -12032,8 +12350,8 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb" ] }, { @@ -12041,8 +12359,8 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" ] }, { @@ -12050,8 +12368,8 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" ] }, { @@ -12077,8 +12395,8 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb" ] }, { @@ -12122,8 +12440,8 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" ] }, { @@ -12131,8 +12449,8 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb" ] }, { @@ -12140,8 +12458,8 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" ] }, { @@ -12149,8 +12467,8 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb" ] }, { @@ -12203,8 +12521,8 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb" ] }, { @@ -12212,8 +12530,8 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb" ] }, { @@ -12239,8 +12557,8 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" ] }, { @@ -12266,8 +12584,8 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb" ] }, { @@ -12302,8 +12620,8 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb" ] }, { @@ -12311,8 +12629,8 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" ] }, { @@ -12320,8 +12638,8 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" ] }, { @@ -12365,8 +12683,8 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" ] }, { @@ -12374,8 +12692,8 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" ] }, { @@ -12401,8 +12719,8 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb" ] }, { @@ -12410,8 +12728,8 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb" ] }, { @@ -12419,8 +12737,8 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" ] }, { @@ -12428,8 +12746,8 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb" ] }, { @@ -12437,8 +12755,8 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" ] }, { @@ -12446,8 +12764,8 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb" ] }, { @@ -12491,8 +12809,8 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb" ] }, { @@ -12545,8 +12863,8 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" ] }, { @@ -12554,8 +12872,8 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" ] }, { @@ -12572,8 +12890,8 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" ] }, { @@ -12590,8 +12908,8 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" ] }, { @@ -12608,8 +12926,8 @@ "kernelrelease": "4.4.0-66-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb" ] }, { @@ -12626,8 +12944,8 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb" ] }, { @@ -12635,8 +12953,8 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb" ] }, { @@ -12653,8 +12971,8 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" ] }, { @@ -12680,8 +12998,8 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" ] }, { @@ -12689,8 +13007,8 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb" ] }, { @@ -12761,8 +13079,8 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" ] }, { @@ -12779,8 +13097,8 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb" ] }, { @@ -12806,8 +13124,8 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" ] }, { @@ -12815,8 +13133,8 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb" ] }, { @@ -12833,8 +13151,8 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" ] }, { @@ -12860,8 +13178,8 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb" ] }, { @@ -12887,8 +13205,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb" ] }, { @@ -12905,8 +13223,8 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, { @@ -12977,8 +13295,8 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" ] }, { @@ -12986,8 +13304,8 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" ] }, { @@ -13004,8 +13322,8 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb" ] }, { @@ -13013,8 +13331,8 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb" ] }, { @@ -13031,8 +13349,8 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb" ] }, { @@ -13040,8 +13358,8 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" ] }, { @@ -13076,8 +13394,8 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" ] }, { @@ -13085,8 +13403,8 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb" ] }, { @@ -13094,8 +13412,8 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" ] }, { @@ -13112,8 +13430,8 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" ] }, { @@ -13130,8 +13448,8 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb" ] }, { @@ -13166,8 +13484,8 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" ] }, { @@ -13220,8 +13538,8 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb" ] }, { @@ -13238,8 +13556,8 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" ] }, { @@ -13247,8 +13565,8 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" ] }, { @@ -13256,8 +13574,8 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb" ] }, { @@ -13265,8 +13583,8 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" ] }, { @@ -13283,8 +13601,8 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb" ] }, { @@ -13292,8 +13610,8 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb" ] }, { @@ -13319,8 +13637,8 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb" ] }, { @@ -13328,8 +13646,8 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" ] }, { @@ -13355,8 +13673,8 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" ] }, { @@ -13364,8 +13682,8 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" ] }, { @@ -13382,8 +13700,8 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" ] }, { @@ -13391,8 +13709,8 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb" ] }, { @@ -13418,8 +13736,8 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" ] }, { @@ -13427,8 +13745,8 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" ] }, { @@ -13463,8 +13781,8 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" ] }, { @@ -13481,8 +13799,8 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" ] }, { @@ -13490,8 +13808,8 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb" ] }, { @@ -13499,8 +13817,8 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" ] }, { @@ -13508,8 +13826,8 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb" ] }, { @@ -13526,8 +13844,8 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" ] }, { @@ -13571,8 +13889,8 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb" ] }, { @@ -13580,8 +13898,8 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" ] }, { @@ -13598,8 +13916,8 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" ] }, { @@ -13607,8 +13925,8 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb" ] }, { @@ -13616,8 +13934,8 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb" ] }, { @@ -13634,8 +13952,8 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" ] }, { @@ -13643,8 +13961,8 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" ] }, { @@ -13652,8 +13970,8 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" ] }, { @@ -13661,8 +13979,8 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb" ] }, { @@ -13679,8 +13997,8 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb" ] }, { @@ -13688,8 +14006,8 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb" ] }, { @@ -13697,8 +14015,8 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" ] }, { @@ -13706,8 +14024,8 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" ] }, { @@ -13724,8 +14042,8 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" ] }, { @@ -13733,8 +14051,8 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" ] }, { @@ -13742,8 +14060,8 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, { @@ -13751,8 +14069,8 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" ] }, { @@ -13787,8 +14105,8 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb" ] }, { @@ -13805,8 +14123,8 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" ] }, { @@ -13814,8 +14132,8 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" ] }, { @@ -13823,8 +14141,8 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb" ] }, { @@ -13832,8 +14150,8 @@ "kernelrelease": "4.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" ] }, { @@ -13841,8 +14159,8 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" ] }, { @@ -13877,8 +14195,8 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb" ] }, { @@ -13913,8 +14231,8 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" ] }, { @@ -13922,8 +14240,8 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" ] }, { @@ -13940,8 +14258,8 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb" ] }, { @@ -13949,8 +14267,8 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb" ] }, { @@ -13976,8 +14294,8 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" ] }, { @@ -14003,8 +14321,8 @@ "kernelrelease": "4.4.0-150", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" ] }, { @@ -14012,8 +14330,8 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" ] }, { @@ -14021,8 +14339,8 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" ] }, { @@ -14030,8 +14348,8 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb" ] }, { @@ -14039,8 +14357,8 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" ] }, { @@ -14057,8 +14375,8 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb" ] }, { @@ -14075,8 +14393,8 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb" ] }, { @@ -14084,8 +14402,8 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" ] }, { @@ -14093,8 +14411,8 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" ] }, { @@ -14102,8 +14420,8 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb" ] }, { @@ -14120,8 +14438,8 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb" ] }, { @@ -14192,8 +14510,8 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" ] }, { @@ -14201,8 +14519,8 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" ] }, { @@ -14210,8 +14528,8 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" ] }, { @@ -14219,8 +14537,8 @@ "kernelrelease": "4.4.0-190", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb" ] }, { @@ -14228,8 +14546,8 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" ] }, { @@ -14237,8 +14555,8 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" ] }, { @@ -14246,8 +14564,8 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" ] }, { @@ -14264,8 +14582,8 @@ "kernelrelease": "4.4.0-200", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" ] }, { @@ -14273,8 +14591,8 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" ] }, { @@ -14300,8 +14618,8 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb" ] }, { @@ -14309,8 +14627,8 @@ "kernelrelease": "4.4.0-209", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb" ] }, { @@ -14318,8 +14636,8 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" ] }, { @@ -14345,8 +14663,8 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb" ] }, { @@ -14354,8 +14672,8 @@ "kernelrelease": "4.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb" ] }, { @@ -14390,8 +14708,8 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" ] }, { @@ -14435,8 +14753,8 @@ "kernelrelease": "4.4.0-57", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" ] }, { @@ -14444,8 +14762,8 @@ "kernelrelease": "4.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb" ] }, { @@ -14462,8 +14780,8 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" ] }, { @@ -14471,8 +14789,8 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" ] }, { @@ -14480,8 +14798,8 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" ] }, { @@ -14498,8 +14816,8 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" ] }, { @@ -14516,8 +14834,8 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb" ] }, { @@ -14534,8 +14852,8 @@ "kernelrelease": "4.4.0-78", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" ] }, { @@ -14543,8 +14861,8 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" ] }, { @@ -14552,8 +14870,8 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb" ] }, { @@ -14561,8 +14879,8 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb" ] }, { @@ -14597,8 +14915,8 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" ] }, { @@ -14606,8 +14924,8 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" ] }, { @@ -14624,8 +14942,8 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" ] }, { @@ -14633,8 +14951,8 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb" ] }, { @@ -14642,8 +14960,8 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" ] }, { @@ -14669,8 +14987,8 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb" ] }, { @@ -14687,8 +15005,8 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb" ] }, { @@ -14714,8 +15032,8 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb" ] }, { @@ -14723,8 +15041,8 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" ] }, { @@ -14732,8 +15050,8 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" ] }, { @@ -14741,8 +15059,8 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" ] }, { @@ -14750,8 +15068,8 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" ] }, { @@ -14759,8 +15077,8 @@ "kernelrelease": "4.4.0-122", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb" ] }, { @@ -14768,8 +15086,8 @@ "kernelrelease": "4.4.0-131", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb" ] }, { @@ -14804,8 +15122,8 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" ] }, { @@ -14831,8 +15149,8 @@ "kernelrelease": "4.8.0-44-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb" ] }, { @@ -14840,8 +15158,8 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb" ] }, { @@ -14849,8 +15167,8 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" ] }, { diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index d7ef542..97b58cc 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -218,114 +218,114 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.47-56.37.amzn1.x86_64", + "kernelrelease": "4.14.133-88.105.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-105.231.amzn1.x86_64", + "kernelrelease": "4.14.138-89.102.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-79.86.amzn1.x86_64", + "kernelrelease": "4.14.88-72.73.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-75.76.amzn1.x86_64", + "kernelrelease": "4.14.77-70.59.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-142.503.amzn1.x86_64", + "kernelrelease": "4.14.128-87.105.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-89.102.amzn1.x86_64", + "kernelrelease": "4.14.165-103.209.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-123.381.amzn1.x86_64", + "kernelrelease": "4.14.121-85.96.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.76.amzn1.x86_64", + "kernelrelease": "4.14.42-52.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-80.92.amzn1.x86_64", + "kernelrelease": "4.14.47-56.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-110.268.amzn1.x86_64", + "kernelrelease": "4.14.55-62.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-74.72.amzn1.x86_64", + "kernelrelease": "4.14.273-140.502.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-82.97.amzn1.x86_64", + "kernelrelease": "4.14.146-93.123.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-119.340.amzn1.x86_64", + "kernelrelease": "4.14.101-75.76.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.59.amzn1.x86_64", + "kernelrelease": "4.14.219-119.340.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" ] }, { @@ -333,393 +333,393 @@ "kernelrelease": "4.14.268-139.500.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-73.73.amzn1.x86_64", + "kernelrelease": "4.14.225-121.357.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-113.317.amzn1.x86_64", + "kernelrelease": "4.14.165-102.185.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-86.109.amzn1.x86_64", + "kernelrelease": "4.14.158-101.185.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-98.182.amzn1.x86_64", + "kernelrelease": "4.14.177-107.254.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.59-64.43.amzn1.x86_64", + "kernelrelease": "4.14.152-98.182.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.70-67.55.amzn1.x86_64", + "kernelrelease": "4.14.262-135.486.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-93.123.amzn1.x86_64", + "kernelrelease": "4.14.104-78.84.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-117.337.amzn1.x86_64", + "kernelrelease": "4.14.238-125.421.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.72-68.55.amzn1.x86_64", + "kernelrelease": "4.14.67-66.56.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-121.357.amzn1.x86_64", + "kernelrelease": "4.14.238-125.422.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-116.320.amzn1.x86_64", + "kernelrelease": "4.14.97-74.72.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-118.339.amzn1.x86_64", + "kernelrelease": "4.14.88-72.76.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.55-62.37.amzn1.x86_64", + "kernelrelease": "4.14.133-88.112.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-69.57.amzn1.x86_64", + "kernelrelease": "4.14.225-121.362.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-83.126.amzn1.x86_64", + "kernelrelease": "4.14.203-116.332.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.422.amzn1.x86_64", + "kernelrelease": "4.14.143-91.122.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-103.209.amzn1.x86_64", + "kernelrelease": "4.14.72-68.55.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-121.362.amzn1.x86_64", + "kernelrelease": "4.14.154-99.181.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-101.185.amzn1.x86_64", + "kernelrelease": "4.14.262-135.489.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-106.229.amzn1.x86_64", + "kernelrelease": "4.14.77-69.57.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.34.amzn1.x86_64", + "kernelrelease": "4.14.33-51.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.489.amzn1.x86_64", + "kernelrelease": "4.14.123-86.109.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-116.332.amzn1.x86_64", + "kernelrelease": "4.14.186-110.268.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.42-52.37.amzn1.x86_64", + "kernelrelease": "4.14.275-142.503.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.105.amzn1.x86_64", + "kernelrelease": "4.14.33-51.34.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.112.amzn1.x86_64", + "kernelrelease": "4.14.173-106.229.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-91.122.amzn1.x86_64", + "kernelrelease": "4.14.51-60.38.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.51-60.38.amzn1.x86_64", + "kernelrelease": "4.14.200-116.320.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.62-65.117.amzn1.x86_64", + "kernelrelease": "4.14.94-73.73.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.486.amzn1.x86_64", + "kernelrelease": "4.14.248-129.473.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-87.105.amzn1.x86_64", + "kernelrelease": "4.14.109-80.92.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.67-66.56.amzn1.x86_64", + "kernelrelease": "4.14.114-82.97.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-129.473.amzn1.x86_64", + "kernelrelease": "4.14.62-65.117.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-140.502.amzn1.x86_64", + "kernelrelease": "4.14.214-118.339.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-131.483.amzn1.x86_64", + "kernelrelease": "4.14.114-83.126.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-102.185.amzn1.x86_64", + "kernelrelease": "4.14.252-131.483.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-99.181.amzn1.x86_64", + "kernelrelease": "4.14.106-79.86.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.421.amzn1.x86_64", + "kernelrelease": "4.14.77-70.82.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.73.amzn1.x86_64", + "kernelrelease": "4.14.181-108.257.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-78.84.amzn1.x86_64", + "kernelrelease": "4.14.70-67.55.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-108.257.amzn1.x86_64", + "kernelrelease": "4.14.209-117.337.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-85.96.amzn1.x86_64", + "kernelrelease": "4.14.171-105.231.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.82.amzn1.x86_64", + "kernelrelease": "4.14.232-123.381.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-107.254.amzn1.x86_64", + "kernelrelease": "4.14.193-113.317.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.37.amzn1.x86_64", + "kernelrelease": "4.14.59-64.43.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/adeeb554baf5/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" ] } ], "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.x86_64", + "kernelrelease": "4.14.88-88.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.x86_64", + "kernelrelease": "4.14.238-182.421.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.x86_64", + "kernelrelease": "4.9.77-41.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" ] }, { @@ -727,231 +727,231 @@ "kernelrelease": "4.14.123-111.109.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.x86_64", + "kernelrelease": "4.14.33-59.34.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.x86_64", + "kernelrelease": "4.14.225-169.362.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.x86_64", + "kernelrelease": "4.14.268-205.500.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-63.37.amzn2.x86_64", + "kernelrelease": "4.14.114-105.126.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.x86_64", + "kernelrelease": "4.14.246-187.474.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.x86_64", + "kernelrelease": "4.14.72-73.55.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.34.amzn2.x86_64", + "kernelrelease": "4.14.55-68.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.x86_64", + "kernelrelease": "4.14.192-147.314.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.26-54.32.amzn2.x86_64", + "kernelrelease": "4.9.85-46.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.x86_64", + "kernelrelease": "4.14.231-173.361.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.42-61.37.amzn2.x86_64", + "kernelrelease": "4.14.138-114.102.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.x86_64", + "kernelrelease": "4.14.70-72.55.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.x86_64", + "kernelrelease": "4.14.146-119.123.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.x86_64", + "kernelrelease": "4.14.232-176.381.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.x86_64", + "kernelrelease": "4.9.76-38.79.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.76-38.79.amzn2.x86_64", + "kernelrelease": "4.14.193-149.317.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.x86_64", + "kernelrelease": "4.14.231-173.360.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.75-1.56.amzn2.x86_64", + "kernelrelease": "4.14.33-59.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.x86_64", + "kernelrelease": "4.9.62-10.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.x86_64", + "kernelrelease": "4.14.186-146.268.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.72-73.55.amzn2.x86_64", + "kernelrelease": "4.14.219-161.340.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.x86_64", + "kernelrelease": "4.14.59-68.43.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.x86_64", + "kernelrelease": "4.14.121-109.96.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-64.38.amzn2.x86_64", + "kernelrelease": "4.14.158-129.185.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.x86_64", + "kernelrelease": "4.14.256-197.484.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.x86_64", + "kernelrelease": "4.14.238-182.422.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.x86_64", + "kernelrelease": "4.14.232-177.418.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.x86_64", + "kernelrelease": "4.14.77-86.82.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" ] }, { @@ -959,327 +959,327 @@ "kernelrelease": "4.14.198-152.320.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.x86_64", + "kernelrelease": "4.14.209-160.335.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.x86_64", + "kernelrelease": "4.14.128-112.105.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.x86_64", + "kernelrelease": "4.14.47-64.38.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.x86_64", + "kernelrelease": "4.14.173-137.228.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.x86_64", + "kernelrelease": "4.14.77-80.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.x86_64", + "kernelrelease": "4.14.241-184.433.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.x86_64", + "kernelrelease": "4.14.88-88.73.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.x86_64", + "kernelrelease": "4.14.171-136.231.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.x86_64", + "kernelrelease": "4.14.219-164.354.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.x86_64", + "kernelrelease": "4.9.70-2.243.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.x86_64", + "kernelrelease": "4.14.143-118.123.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.x86_64", + "kernelrelease": "4.14.173-137.229.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.x86_64", + "kernelrelease": "4.14.26-54.32.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.x86_64", + "kernelrelease": "4.14.42-61.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.x86_64", + "kernelrelease": "4.14.209-160.339.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.x86_64", + "kernelrelease": "4.14.248-189.473.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.x86_64", + "kernelrelease": "4.14.109-99.92.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.x86_64", + "kernelrelease": "4.14.273-207.502.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.x86_64", + "kernelrelease": "4.14.165-133.209.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.62-70.117.amzn2.x86_64", + "kernelrelease": "4.14.252-195.481.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.37.amzn2.x86_64", + "kernelrelease": "4.14.225-168.357.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.x86_64", + "kernelrelease": "4.14.276-211.499.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.85-46.56.amzn2.x86_64", + "kernelrelease": "4.14.181-140.257.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.x86_64", + "kernelrelease": "4.14.177-139.253.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.85-47.59.amzn2.x86_64", + "kernelrelease": "4.14.154-128.181.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.x86_64", + "kernelrelease": "4.14.94-89.73.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.x86_64", + "kernelrelease": "4.14.252-195.483.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.x86_64", + "kernelrelease": "4.14.106-97.85.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.59-68.43.amzn2.x86_64", + "kernelrelease": "4.14.104-95.84.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.x86_64", + "kernelrelease": "4.14.275-207.503.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.x86_64", + "kernelrelease": "4.14.101-91.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.x86_64", + "kernelrelease": "4.14.243-185.433.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.51-66.38.amzn2.x86_64", + "kernelrelease": "4.14.146-120.181.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.55-68.37.amzn2.x86_64", + "kernelrelease": "4.14.133-113.112.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.x86_64", + "kernelrelease": "4.14.77-81.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.x86_64", + "kernelrelease": "4.14.133-113.105.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.70-2.243.amzn2.x86_64", + "kernelrelease": "4.14.62-70.117.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.x86_64", + "kernelrelease": "4.14.262-200.489.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.70-72.55.amzn2.x86_64", + "kernelrelease": "4.14.165-131.185.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.x86_64", + "kernelrelease": "4.14.97-90.72.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" ] }, { @@ -1287,111 +1287,111 @@ "kernelrelease": "4.14.152-124.171.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.81-44.57.amzn2.x86_64", + "kernelrelease": "4.14.177-139.254.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.x86_64", + "kernelrelease": "4.14.214-160.339.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.x86_64", + "kernelrelease": "4.9.81-44.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.67-71.56.amzn2.x86_64", + "kernelrelease": "4.14.51-66.38.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.x86_64", + "kernelrelease": "4.14.114-103.97.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.x86_64", + "kernelrelease": "4.14.152-127.182.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.77-41.59.amzn2.x86_64", + "kernelrelease": "4.9.75-1.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.62-10.57.amzn2.x86_64", + "kernelrelease": "4.14.203-156.332.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.x86_64", + "kernelrelease": "4.9.85-47.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.x86_64", + "kernelrelease": "4.14.181-142.260.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.x86_64", + "kernelrelease": "4.14.200-155.322.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.x86_64", + "kernelrelease": "4.14.67-71.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.x86_64", + "kernelrelease": "4.14.47-63.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" ] }, { @@ -1811,7 +1811,7 @@ "kernelrelease": "3.10.0-1160.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" ] }, { @@ -1819,7 +1819,7 @@ "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm" ] }, { @@ -1851,7 +1851,7 @@ "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" ] }, { @@ -1859,7 +1859,7 @@ "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" ] }, { @@ -1915,7 +1915,7 @@ "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" ] }, { @@ -1923,7 +1923,7 @@ "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" ] }, { @@ -1931,7 +1931,7 @@ "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" ] }, { @@ -1947,7 +1947,7 @@ "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" ] }, { @@ -1955,7 +1955,7 @@ "kernelrelease": "3.10.0-1160.66.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" ] }, { @@ -3728,22 +3728,6 @@ } ], "Fedora": [ - { - "kernelversion": 1, - "kernelrelease": "5.6.6-300.fc32.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/32/Everything/x86_64/os/Packages/k/kernel-devel-5.6.6-300.fc32.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.8.15-301.fc33.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/33/Everything/x86_64/os/Packages/k/kernel-devel-5.8.15-301.fc33.x86_64.rpm" - ] - }, { "kernelversion": 1, "kernelrelease": "5.11.12-300.fc34.x86_64", @@ -3770,42 +3754,26 @@ }, { "kernelversion": 1, - "kernelrelease": "5.11.22-100.fc32.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/32/Everything/x86_64/Packages/k/kernel-devel-5.11.22-100.fc32.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.18-100.fc33.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/33/Everything/x86_64/Packages/k/kernel-devel-5.14.18-100.fc33.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.17.8-100.fc34.x86_64", + "kernelrelease": "5.17.11-100.fc34.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.17.8-100.fc34.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.17.11-100.fc34.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.8-200.fc35.x86_64", + "kernelrelease": "5.17.11-200.fc35.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.17.8-200.fc35.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.17.11-200.fc35.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.8-300.fc36.x86_64", + "kernelrelease": "5.17.11-300.fc36.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.17.8-300.fc36.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.17.11-300.fc36.x86_64.rpm" ] } ], @@ -7700,6 +7668,22 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.2.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.5.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.14.35-1902.305.4.1.el7uek.x86_64", @@ -8236,6 +8220,14 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.1.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.513.2.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.2.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.14.35-2047.513.2.el7uek.x86_64", @@ -8508,6 +8500,14 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.61.2.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.62.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.62.3.1.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.1.12-124.62.3.el7uek.x86_64", @@ -10189,6 +10189,22 @@ "headers": [ "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.2.el8uek.x86_64.rpm" ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.4.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.4.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.5.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.5.el8uek.x86_64.rpm" + ] } ], "PhotonOS": [ @@ -10205,7 +10221,7 @@ "kernelrelease": "4.19.15-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-2.ph3.x86_64.rpm" ] }, { @@ -10213,7 +10229,7 @@ "kernelrelease": "4.19.15-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-1.ph3.x86_64.rpm" ] }, { @@ -10221,7 +10237,7 @@ "kernelrelease": "4.19.104-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-1.ph3.x86_64.rpm" ] }, { @@ -10229,7 +10245,7 @@ "kernelrelease": "4.19.104-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-3.ph3.x86_64.rpm" ] }, { @@ -10237,7 +10253,7 @@ "kernelrelease": "4.19.112-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.112-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.112-1.ph3.x86_64.rpm" ] }, { @@ -10261,7 +10277,7 @@ "kernelrelease": "4.19.115-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-2.ph3.x86_64.rpm" ] }, { @@ -10277,7 +10293,7 @@ "kernelrelease": "4.19.115-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-5.ph3.x86_64.rpm" ] }, { @@ -10285,7 +10301,7 @@ "kernelrelease": "4.19.115-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-6.ph3.x86_64.rpm" ] }, { @@ -10317,7 +10333,7 @@ "kernelrelease": "4.19.124-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-2.ph3.x86_64.rpm" ] }, { @@ -10325,7 +10341,7 @@ "kernelrelease": "4.19.126-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.126-1.ph3.x86_64.rpm" ] }, { @@ -10341,7 +10357,7 @@ "kernelrelease": "4.19.129-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.129-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-1.ph3.x86_64.rpm" ] }, { @@ -10365,7 +10381,7 @@ "kernelrelease": "4.19.132-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-1.ph3.x86_64.rpm" ] }, { @@ -10381,7 +10397,7 @@ "kernelrelease": "4.19.132-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-3.ph3.x86_64.rpm" ] }, { @@ -10389,7 +10405,7 @@ "kernelrelease": "4.19.132-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-5.ph3.x86_64.rpm" ] }, { @@ -10405,7 +10421,7 @@ "kernelrelease": "4.19.138-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-1.ph3.x86_64.rpm" ] }, { @@ -10453,7 +10469,7 @@ "kernelrelease": "4.19.148-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-1.ph3.x86_64.rpm" ] }, { @@ -10461,7 +10477,7 @@ "kernelrelease": "4.19.148-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-2.ph3.x86_64.rpm" ] }, { @@ -10477,7 +10493,7 @@ "kernelrelease": "4.19.148-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-4.ph3.x86_64.rpm" ] }, { @@ -10485,7 +10501,7 @@ "kernelrelease": "4.19.148-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-5.ph3.x86_64.rpm" ] }, { @@ -10501,7 +10517,7 @@ "kernelrelease": "4.19.150-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.150-1.ph3.x86_64.rpm" ] }, { @@ -10509,7 +10525,7 @@ "kernelrelease": "4.19.154-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-1.ph3.x86_64.rpm" ] }, { @@ -10533,7 +10549,7 @@ "kernelrelease": "4.19.154-8.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-8.ph3.x86_64.rpm" ] }, { @@ -10549,7 +10565,7 @@ "kernelrelease": "4.19.160-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-2.ph3.x86_64.rpm" ] }, { @@ -10581,7 +10597,7 @@ "kernelrelease": "4.19.164-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.164-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-1.ph3.x86_64.rpm" ] }, { @@ -10589,7 +10605,7 @@ "kernelrelease": "4.19.164-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-2.ph3.x86_64.rpm" ] }, { @@ -10597,7 +10613,7 @@ "kernelrelease": "4.19.174-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-2.ph3.x86_64.rpm" ] }, { @@ -10605,7 +10621,7 @@ "kernelrelease": "4.19.174-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-4.ph3.x86_64.rpm" ] }, { @@ -10621,7 +10637,7 @@ "kernelrelease": "4.19.177-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.177-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.177-1.ph3.x86_64.rpm" ] }, { @@ -10629,7 +10645,7 @@ "kernelrelease": "4.19.177-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-2.ph3.x86_64.rpm" ] }, { @@ -10653,7 +10669,7 @@ "kernelrelease": "4.19.186-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-1.ph3.x86_64.rpm" ] }, { @@ -10661,7 +10677,7 @@ "kernelrelease": "4.19.186-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-2.ph3.x86_64.rpm" ] }, { @@ -10669,7 +10685,7 @@ "kernelrelease": "4.19.186-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-3.ph3.x86_64.rpm" ] }, { @@ -10685,7 +10701,7 @@ "kernelrelease": "4.19.189-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-2.ph3.x86_64.rpm" ] }, { @@ -10693,7 +10709,7 @@ "kernelrelease": "4.19.189-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-3.ph3.x86_64.rpm" ] }, { @@ -10701,7 +10717,7 @@ "kernelrelease": "4.19.189-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" ] }, { @@ -10717,7 +10733,7 @@ "kernelrelease": "4.19.190-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-1.ph3.x86_64.rpm" ] }, { @@ -10725,7 +10741,7 @@ "kernelrelease": "4.19.190-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" ] }, { @@ -10749,7 +10765,7 @@ "kernelrelease": "4.19.191-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-2.ph3.x86_64.rpm" ] }, { @@ -10757,7 +10773,7 @@ "kernelrelease": "4.19.191-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-3.ph3.x86_64.rpm" ] }, { @@ -10773,7 +10789,7 @@ "kernelrelease": "4.19.198-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-2.ph3.x86_64.rpm" ] }, { @@ -10797,7 +10813,7 @@ "kernelrelease": "4.19.205-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.205-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.205-1.ph3.x86_64.rpm" ] }, { @@ -10805,7 +10821,7 @@ "kernelrelease": "4.19.208-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.208-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.208-1.ph3.x86_64.rpm" ] }, { @@ -10829,7 +10845,7 @@ "kernelrelease": "4.19.217-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm" ] }, { @@ -10837,7 +10853,7 @@ "kernelrelease": "4.19.219-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-1.ph3.x86_64.rpm" ] }, { @@ -10853,7 +10869,7 @@ "kernelrelease": "4.19.219-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-4.ph3.x86_64.rpm" ] }, { @@ -10861,7 +10877,7 @@ "kernelrelease": "4.19.219-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-5.ph3.x86_64.rpm" ] }, { @@ -10869,7 +10885,7 @@ "kernelrelease": "4.19.224-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-1.ph3.x86_64.rpm" ] }, { @@ -10877,7 +10893,7 @@ "kernelrelease": "4.19.224-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-2.ph3.x86_64.rpm" ] }, { @@ -10909,7 +10925,7 @@ "kernelrelease": "4.19.229-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-2.ph3.x86_64.rpm" ] }, { @@ -10925,7 +10941,7 @@ "kernelrelease": "4.19.232-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-1.ph3.x86_64.rpm" ] }, { @@ -10933,7 +10949,7 @@ "kernelrelease": "4.19.232-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-2.ph3.x86_64.rpm" ] }, { @@ -10941,7 +10957,7 @@ "kernelrelease": "4.19.232-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm" ] }, { @@ -10949,7 +10965,7 @@ "kernelrelease": "4.19.232-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-4.ph3.x86_64.rpm" ] }, { @@ -10973,7 +10989,7 @@ "kernelrelease": "4.19.29-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.29-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.29-1.ph3.x86_64.rpm" ] }, { @@ -10989,7 +11005,7 @@ "kernelrelease": "4.19.40-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-2.ph3.x86_64.rpm" ] }, { @@ -10997,7 +11013,7 @@ "kernelrelease": "4.19.40-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" ] }, { @@ -11005,7 +11021,7 @@ "kernelrelease": "4.19.52-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.52-1.ph3.x86_64.rpm" ] }, { @@ -11037,7 +11053,7 @@ "kernelrelease": "4.19.69-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.69-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm" ] }, { @@ -11061,7 +11077,7 @@ "kernelrelease": "4.19.76-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-1.ph3.x86_64.rpm" ] }, { @@ -11077,7 +11093,7 @@ "kernelrelease": "4.19.79-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.79-1.ph3.x86_64.rpm" ] }, { @@ -11093,7 +11109,7 @@ "kernelrelease": "4.19.82-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.82-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm" ] }, { @@ -11141,7 +11157,7 @@ "kernelrelease": "4.19.97-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-1.ph3.x86_64.rpm" ] }, { @@ -11149,7 +11165,7 @@ "kernelrelease": "4.19.97-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm" ] }, { @@ -11165,7 +11181,7 @@ "kernelrelease": "4.19.97-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-4.ph3.x86_64.rpm" ] }, { @@ -11173,7 +11189,7 @@ "kernelrelease": "4.19.97-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" ] }, { @@ -11189,7 +11205,7 @@ "kernelrelease": "4.19.115-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-4.ph3.x86_64.rpm" ] }, { @@ -11205,7 +11221,7 @@ "kernelrelease": "4.19.154-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-6.ph3.x86_64.rpm" ] }, { @@ -11213,7 +11229,7 @@ "kernelrelease": "4.19.160-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-1.ph3.x86_64.rpm" ] }, { @@ -11221,7 +11237,7 @@ "kernelrelease": "4.19.174-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-1.ph3.x86_64.rpm" ] }, { @@ -11245,7 +11261,7 @@ "kernelrelease": "4.19.225-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-5.ph3.x86_64.rpm" ] }, { @@ -11277,7 +11293,7 @@ "kernelrelease": "4.19.87-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-3.ph3.x86_64.rpm" ] }, { @@ -11285,7 +11301,7 @@ "kernelrelease": "4.19.132-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-4.ph3.x86_64.rpm" ] }, { @@ -11325,7 +11341,7 @@ "kernelrelease": "4.19.191-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-4.ph3.x86_64.rpm" ] }, { @@ -11333,7 +11349,7 @@ "kernelrelease": "4.19.191-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-5.ph3.x86_64.rpm" ] }, { @@ -11381,7 +11397,7 @@ "kernelrelease": "1.4.0-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" ] }, { @@ -11389,7 +11405,7 @@ "kernelrelease": "5.10.103-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-1.ph4.x86_64.rpm" ] }, { @@ -11397,7 +11413,7 @@ "kernelrelease": "5.10.103-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-2.ph4.x86_64.rpm" ] }, { @@ -11405,7 +11421,7 @@ "kernelrelease": "5.10.103-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-3.ph4.x86_64.rpm" ] }, { @@ -11413,7 +11429,7 @@ "kernelrelease": "5.10.103-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" ] }, { @@ -11421,7 +11437,15 @@ "kernelrelease": "5.10.109-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.109-3.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-3.ph4.x86_64.rpm" ] }, { @@ -11429,7 +11453,7 @@ "kernelrelease": "5.10.25-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-1.ph4.x86_64.rpm" ] }, { @@ -11453,7 +11477,7 @@ "kernelrelease": "5.10.25-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-3.ph4.x86_64.rpm" ] }, { @@ -11461,7 +11485,7 @@ "kernelrelease": "5.10.25-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-5.ph4.x86_64.rpm" ] }, { @@ -11469,7 +11493,7 @@ "kernelrelease": "5.10.25-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-6.ph4.x86_64.rpm" ] }, { @@ -11485,7 +11509,7 @@ "kernelrelease": "5.10.25-9.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-9.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-9.ph4.x86_64.rpm" ] }, { @@ -11493,7 +11517,7 @@ "kernelrelease": "5.10.35-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-1.ph4.x86_64.rpm" ] }, { @@ -11501,7 +11525,7 @@ "kernelrelease": "5.10.35-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm" ] }, { @@ -11533,7 +11557,7 @@ "kernelrelease": "5.10.42-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-1.ph4.x86_64.rpm" ] }, { @@ -11557,7 +11581,7 @@ "kernelrelease": "5.10.46-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-1.ph4.x86_64.rpm" ] }, { @@ -11565,7 +11589,7 @@ "kernelrelease": "5.10.46-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-2.ph4.x86_64.rpm" ] }, { @@ -11597,7 +11621,7 @@ "kernelrelease": "5.10.61-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-2.ph4.x86_64.rpm" ] }, { @@ -11605,7 +11629,7 @@ "kernelrelease": "5.10.75-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.75-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.75-1.ph4.x86_64.rpm" ] }, { @@ -11613,7 +11637,7 @@ "kernelrelease": "5.10.78-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.78-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-1.ph4.x86_64.rpm" ] }, { @@ -11637,7 +11661,7 @@ "kernelrelease": "5.10.83-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-2.ph4.x86_64.rpm" ] }, { @@ -11645,7 +11669,7 @@ "kernelrelease": "5.10.83-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-3.ph4.x86_64.rpm" ] }, { @@ -11653,7 +11677,7 @@ "kernelrelease": "5.10.83-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-4.ph4.x86_64.rpm" ] }, { @@ -11677,7 +11701,7 @@ "kernelrelease": "5.10.83-7.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-7.ph4.x86_64.rpm" ] }, { @@ -11685,7 +11709,7 @@ "kernelrelease": "5.10.93-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm" ] }, { @@ -11693,7 +11717,7 @@ "kernelrelease": "5.10.93-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm" ] }, { @@ -11701,7 +11725,7 @@ "kernelrelease": "5.10.93-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-4.ph4.x86_64.rpm" ] }, { @@ -11709,7 +11733,7 @@ "kernelrelease": "5.10.93-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-5.ph4.x86_64.rpm" ] }, { @@ -11725,7 +11749,7 @@ "kernelrelease": "5.10.78-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.78-2.ph4.x86_64.rpm" ] }, { @@ -11741,7 +11765,7 @@ "kernelrelease": "5.10.42-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-4.ph4.x86_64.rpm" ] }, { @@ -11840,10 +11864,10 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-amd64_5.17.3-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb" ] }, { @@ -11852,8 +11876,8 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb" ] }, { @@ -11863,9 +11887,9 @@ "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-amd64_5.15.5-2~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb" ] }, { @@ -11873,11 +11897,11 @@ "kernelrelease": "5.15.15-2~bpo11+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb" ] }, { @@ -11887,9 +11911,9 @@ "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb" ] }, { @@ -11897,11 +11921,11 @@ "kernelrelease": "5.16.12-1~bpo11+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb" ] }, { @@ -11910,10 +11934,10 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb" ] }, { @@ -11921,11 +11945,11 @@ "kernelrelease": "5.10.84-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb" ] }, { @@ -11933,11 +11957,11 @@ "kernelrelease": "5.10.106-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb" ] }, { @@ -11945,11 +11969,11 @@ "kernelrelease": "5.10.92-1~bpo10+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb" ] }, { @@ -11957,10 +11981,10 @@ "kernelrelease": "5.10.103-1~bpo10+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb" ] }, @@ -11969,10 +11993,10 @@ "kernelrelease": "5.10.70-1~bpo10+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-amd64_5.10.70-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb" ] }, @@ -11981,8 +12005,8 @@ "kernelrelease": "4.19.208-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb" @@ -11993,11 +12017,23 @@ "kernelrelease": "4.19.235-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.18-1~exp1-amd64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-rt-amd64_5.18-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common-rt_5.18-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-amd64_5.18-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common_5.18-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-cloud-amd64_5.18-1~exp1_amd64.deb" ] }, { @@ -12011,14 +12047,14 @@ }, { "kernelversion": 1, - "kernelrelease": "5.17.6-1+b1-amd64", + "kernelrelease": "5.17.11-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-rt-amd64_5.17.6-1+b1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-amd64_5.17.6-1+b1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-cloud-amd64_5.17.6-1+b1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common_5.17.6-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common-rt_5.17.6-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-cloud-amd64_5.17.11-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common-rt_5.17.11-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common_5.17.11-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-amd64_5.17.11-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-rt-amd64_5.17.11-1_amd64.deb" ] }, { @@ -12026,11 +12062,11 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" ] }, { @@ -12047,10 +12083,10 @@ "kernelrelease": "4.9.228-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb" ] }, { @@ -12058,11 +12094,11 @@ "kernelrelease": "5.10.103-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb" ] }, { @@ -12070,11 +12106,11 @@ "kernelrelease": "4.19.232-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb" ] }, { @@ -12082,8 +12118,8 @@ "kernelrelease": "3.16.81-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb" ] }, { @@ -12100,10 +12136,10 @@ "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb" ] }, { @@ -12112,9 +12148,9 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb" ] }, { @@ -12122,10 +12158,10 @@ "kernelrelease": "4.9.303-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb" ] }, { @@ -12133,11 +12169,11 @@ "kernelrelease": "4.19.232-1~deb9u1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb" ] } ], @@ -12148,9 +12184,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb" ] }, { @@ -12158,10 +12194,10 @@ "kernelrelease": "4.15.0-1088-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb" ] }, { @@ -12169,10 +12205,10 @@ "kernelrelease": "4.15.0-1093-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb" ] }, { @@ -12180,9 +12216,9 @@ "kernelrelease": "4.15.0-1094-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb" ] }, @@ -12191,10 +12227,10 @@ "kernelrelease": "4.15.0-1095-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb" ] }, { @@ -12202,10 +12238,10 @@ "kernelrelease": "4.15.0-1103-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" ] }, { @@ -12213,10 +12249,10 @@ "kernelrelease": "4.15.0-1104-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb" ] }, { @@ -12224,10 +12260,10 @@ "kernelrelease": "4.15.0-1104-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" ] }, { @@ -12235,9 +12271,9 @@ "kernelrelease": "4.15.0-1107-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" ] }, @@ -12246,10 +12282,10 @@ "kernelrelease": "4.15.0-1110-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" ] }, { @@ -12257,9 +12293,9 @@ "kernelrelease": "4.15.0-1111-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" ] }, @@ -12268,10 +12304,10 @@ "kernelrelease": "4.15.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" ] }, { @@ -12279,10 +12315,10 @@ "kernelrelease": "4.15.0-1113-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" ] }, { @@ -12301,10 +12337,10 @@ "kernelrelease": "4.15.0-1114-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" ] }, { @@ -12312,10 +12348,10 @@ "kernelrelease": "4.15.0-1115-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" ] }, { @@ -12323,10 +12359,10 @@ "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" ] }, { @@ -12334,10 +12370,10 @@ "kernelrelease": "4.15.0-1116-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" ] }, { @@ -12345,8 +12381,8 @@ "kernelrelease": "4.15.0-1116-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" ] @@ -12356,10 +12392,10 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" ] }, { @@ -12367,21 +12403,32 @@ "kernelrelease": "4.15.0-1117-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb" ] }, + { + "kernelversion": "120", + "kernelrelease": "4.15.0-1117-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1117-kvm_4.15.0-1117.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1117_4.15.0-1117.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1117_4.15.0-1117.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1117-kvm_4.15.0-1117.120_amd64.deb" + ] + }, { "kernelversion": "128", "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb" ] }, { @@ -12389,9 +12436,9 @@ "kernelrelease": "4.15.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" ] }, @@ -12400,10 +12447,10 @@ "kernelrelease": "4.15.0-1121-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb" ] }, { @@ -12411,10 +12458,10 @@ "kernelrelease": "4.15.0-1122-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" ] }, { @@ -12422,9 +12469,9 @@ "kernelrelease": "4.15.0-1123-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb" ] }, @@ -12433,10 +12480,10 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" ] }, { @@ -12444,9 +12491,9 @@ "kernelrelease": "4.15.0-1124-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb" ] }, @@ -12455,10 +12502,10 @@ "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" ] }, { @@ -12466,10 +12513,10 @@ "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" ] }, { @@ -12477,9 +12524,9 @@ "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb" ] }, @@ -12488,10 +12535,10 @@ "kernelrelease": "4.15.0-1129-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" ] }, { @@ -12499,8 +12546,8 @@ "kernelrelease": "4.15.0-1130-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" ] @@ -12510,10 +12557,21 @@ "kernelrelease": "4.15.0-1130-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" + ] + }, + { + "kernelversion": "140", + "kernelrelease": "4.15.0-1131-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_amd64.deb" ] }, { @@ -12521,10 +12579,10 @@ "kernelrelease": "4.15.0-1131-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" ] }, { @@ -12532,9 +12590,9 @@ "kernelrelease": "4.15.0-1134-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" ] }, @@ -12545,8 +12603,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb" ] }, { @@ -12554,10 +12612,32 @@ "kernelrelease": "4.15.0-1138-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb" + ] + }, + { + "kernelversion": "152", + "kernelrelease": "4.15.0-1139-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb" + ] + }, + { + "kernelversion": "153", + "kernelrelease": "4.15.0-1140-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1140_4.15.0-1140.153_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1140-azure_4.15.0-1140.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1140_4.15.0-1140.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1140-azure_4.15.0-1140.153_amd64.deb" ] }, { @@ -12565,12 +12645,12 @@ "kernelrelease": "4.15.0-167", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb" ] }, { @@ -12578,12 +12658,12 @@ "kernelrelease": "4.15.0-168", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb" ] }, { @@ -12591,12 +12671,12 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" ] }, { @@ -12604,12 +12684,12 @@ "kernelrelease": "4.15.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb" ] }, { @@ -12617,12 +12697,12 @@ "kernelrelease": "4.15.0-172", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb" ] }, { @@ -12630,12 +12710,12 @@ "kernelrelease": "4.15.0-173", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" ] }, { @@ -12643,12 +12723,12 @@ "kernelrelease": "4.15.0-174", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" ] }, { @@ -12656,12 +12736,12 @@ "kernelrelease": "4.15.0-176", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb" ] }, { @@ -12669,12 +12749,12 @@ "kernelrelease": "4.15.0-177", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb" ] }, { @@ -12682,12 +12762,12 @@ "kernelrelease": "4.15.0-179", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb" ] }, { @@ -12695,12 +12775,38 @@ "kernelrelease": "4.15.0-180", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb" + ] + }, + { + "kernelversion": "190", + "kernelrelease": "4.15.0-181", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb" + ] + }, + { + "kernelversion": "191", + "kernelrelease": "4.15.0-182", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182_4.15.0-182.191_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-generic_4.15.0-182.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-lowlatency_4.15.0-182.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182_4.15.0-182.191_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-lowlatency_4.15.0-182.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-generic_4.15.0-182.191_amd64.deb" ] }, { @@ -12708,10 +12814,10 @@ "kernelrelease": "5.0.0-1028-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" ] }, { @@ -12719,12 +12825,12 @@ "kernelrelease": "5.4.0-100-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" ] }, { @@ -12732,8 +12838,8 @@ "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb" ] @@ -12743,10 +12849,21 @@ "kernelrelease": "5.4.0-1032-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -12754,10 +12871,10 @@ "kernelrelease": "5.4.0-1034-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -12765,21 +12882,10 @@ "kernelrelease": "5.4.0-1034-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -12787,23 +12893,34 @@ "kernelrelease": "5.4.0-1040-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" ] }, + { + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1043-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb" + ] + }, { "kernelversion": "119~18.04.1", "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb" ] }, { @@ -12811,10 +12928,10 @@ "kernelrelease": "5.4.0-1056-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { @@ -12822,32 +12939,32 @@ "kernelrelease": "5.4.0-1056-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1058-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb" ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1058-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" ] }, { @@ -12855,34 +12972,34 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1060-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1060-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { @@ -12890,10 +13007,10 @@ "kernelrelease": "5.4.0-1061-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { @@ -12901,10 +13018,10 @@ "kernelrelease": "5.4.0-1061-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { @@ -12912,10 +13029,21 @@ "kernelrelease": "5.4.0-1061-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" ] }, { @@ -12923,21 +13051,21 @@ "kernelrelease": "5.4.0-1062-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" ] }, { @@ -12946,31 +13074,20 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1063-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { @@ -12978,21 +13095,21 @@ "kernelrelease": "5.4.0-1063-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1063-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" ] }, { @@ -13000,10 +13117,10 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" ] }, { @@ -13011,10 +13128,10 @@ "kernelrelease": "5.4.0-1064-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { @@ -13022,8 +13139,8 @@ "kernelrelease": "5.4.0-1064-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" ] @@ -13034,9 +13151,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" ] }, { @@ -13046,30 +13163,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1066-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { @@ -13077,10 +13194,10 @@ "kernelrelease": "5.4.0-1067-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" ] }, { @@ -13088,8 +13205,8 @@ "kernelrelease": "5.4.0-1068-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb" ] @@ -13099,10 +13216,10 @@ "kernelrelease": "5.4.0-1068-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { @@ -13110,10 +13227,10 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" ] }, { @@ -13121,10 +13238,10 @@ "kernelrelease": "5.4.0-1069-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { @@ -13133,31 +13250,31 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1069-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1069-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1069-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1069-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { @@ -13165,9 +13282,9 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" ] }, @@ -13176,10 +13293,10 @@ "kernelrelease": "5.4.0-1070-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" ] }, { @@ -13187,9 +13304,9 @@ "kernelrelease": "5.4.0-1071-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb" ] }, @@ -13199,9 +13316,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" ] }, { @@ -13220,10 +13337,21 @@ "kernelrelease": "5.4.0-1071-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -13231,10 +13359,10 @@ "kernelrelease": "5.4.0-1072-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -13243,20 +13371,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -13264,10 +13381,21 @@ "kernelrelease": "5.4.0-1072-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" ] }, { @@ -13275,21 +13403,54 @@ "kernelrelease": "5.4.0-1073-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-aws-5.4", + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-1073-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "81~18.04.1", + "kernelrelease": "5.4.0-1076-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1076-aws_5.4.0-1076.81~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1076-aws_5.4.0-1076.81~18.04.1_amd64.deb" ] }, { @@ -13297,10 +13458,10 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb" ] }, { @@ -13308,10 +13469,10 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" ] }, { @@ -13319,10 +13480,10 @@ "kernelrelease": "5.4.0-1079-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" ] }, { @@ -13330,11 +13491,11 @@ "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb" ] }, @@ -13343,10 +13504,10 @@ "kernelrelease": "5.4.0-1080-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" ] }, { @@ -13354,12 +13515,12 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" ] }, { @@ -13367,12 +13528,12 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" ] }, { @@ -13380,12 +13541,25 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "129~18.04.1", + "kernelrelease": "5.4.0-115-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-115_5.4.0-115.129~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-115_5.4.0-115.129~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129~18.04.1_amd64.deb" ] }, { @@ -13395,10 +13569,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" ] }, { @@ -13406,12 +13580,12 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" ] }, { @@ -13419,12 +13593,12 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb" ] }, { @@ -13432,10 +13606,10 @@ "kernelrelease": "4.15.0-1006-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" ] }, { @@ -13443,10 +13617,10 @@ "kernelrelease": "4.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" ] }, { @@ -13454,9 +13628,9 @@ "kernelrelease": "4.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb" ] }, @@ -13465,10 +13639,10 @@ "kernelrelease": "4.15.0-1008-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" ] }, { @@ -13477,20 +13651,20 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1009-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" ] }, { @@ -13499,20 +13673,20 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" ] }, { @@ -13520,10 +13694,10 @@ "kernelrelease": "4.15.0-1009-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" ] }, { @@ -13533,8 +13707,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb" ] }, { @@ -13542,23 +13716,12 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "4.15.0-1010-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" ] }, { @@ -13566,10 +13729,10 @@ "kernelrelease": "4.15.0-1010-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" ] }, { @@ -13577,10 +13740,21 @@ "kernelrelease": "4.15.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "4.15.0-1010-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" ] }, { @@ -13589,31 +13763,31 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" ] }, { @@ -13622,9 +13796,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb" ] }, { @@ -13633,9 +13807,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb" ] }, { @@ -13643,9 +13817,9 @@ "kernelrelease": "4.15.0-1012-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" ] }, @@ -13654,10 +13828,10 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" ] }, { @@ -13665,10 +13839,10 @@ "kernelrelease": "4.15.0-1013-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" ] }, { @@ -13676,32 +13850,32 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1014-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" ] }, { @@ -13709,10 +13883,10 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb" ] }, { @@ -13720,10 +13894,10 @@ "kernelrelease": "4.15.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" ] }, { @@ -13731,10 +13905,10 @@ "kernelrelease": "4.15.0-1015-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" ] }, { @@ -13743,9 +13917,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" ] }, { @@ -13754,9 +13928,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" ] }, { @@ -13764,10 +13938,21 @@ "kernelrelease": "4.15.0-1016-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + ] + }, + { + "kernelversion": "17", + "kernelrelease": "4.15.0-1017-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb" ] }, { @@ -13781,26 +13966,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" ] }, - { - "kernelversion": "17", - "kernelrelease": "4.15.0-1017-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" - ] - }, { "kernelversion": "18", "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb" ] }, { @@ -13808,8 +13982,8 @@ "kernelrelease": "4.15.0-1017-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" ] @@ -13819,10 +13993,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" ] }, { @@ -13830,10 +14004,10 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb" ] }, { @@ -13841,9 +14015,9 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" ] }, @@ -13852,9 +14026,9 @@ "kernelrelease": "4.15.0-1018-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" ] }, @@ -13864,20 +14038,20 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" ] }, { @@ -13885,21 +14059,21 @@ "kernelrelease": "4.15.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" ] }, { @@ -13907,10 +14081,10 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" ] }, { @@ -13918,10 +14092,10 @@ "kernelrelease": "4.15.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { @@ -13929,10 +14103,21 @@ "kernelrelease": "4.15.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" ] }, { @@ -13941,9 +14126,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" ] }, { @@ -13957,26 +14142,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" ] }, - { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb" - ] - }, { "kernelversion": "22", "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" ] }, { @@ -13984,9 +14158,9 @@ "kernelrelease": "4.15.0-1021-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb" ] }, @@ -13995,10 +14169,10 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" ] }, { @@ -14006,10 +14180,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" ] }, { @@ -14017,8 +14191,8 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" ] @@ -14028,8 +14202,8 @@ "kernelrelease": "4.15.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" ] @@ -14039,32 +14213,32 @@ "kernelrelease": "4.15.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1023-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-1023-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" ] }, { @@ -14072,8 +14246,8 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" ] @@ -14084,31 +14258,31 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" ] }, { @@ -14116,10 +14290,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" ] }, { @@ -14127,10 +14301,10 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" ] }, { @@ -14138,9 +14312,9 @@ "kernelrelease": "4.15.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" ] }, @@ -14149,10 +14323,10 @@ "kernelrelease": "4.15.0-1026-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" ] }, { @@ -14160,10 +14334,10 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" ] }, { @@ -14171,10 +14345,10 @@ "kernelrelease": "4.15.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" ] }, { @@ -14183,8 +14357,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, @@ -14194,9 +14368,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" ] }, { @@ -14204,10 +14378,10 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" ] }, { @@ -14216,9 +14390,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" ] }, { @@ -14227,9 +14401,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb" ] }, { @@ -14238,9 +14412,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" ] }, { @@ -14248,10 +14422,10 @@ "kernelrelease": "4.15.0-1028-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" ] }, { @@ -14259,9 +14433,9 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" ] }, @@ -14270,10 +14444,10 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb" ] }, { @@ -14281,8 +14455,8 @@ "kernelrelease": "4.15.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" ] @@ -14292,9 +14466,9 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" ] }, @@ -14304,9 +14478,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" ] }, { @@ -14314,10 +14488,10 @@ "kernelrelease": "4.15.0-1030-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" ] }, { @@ -14325,10 +14499,10 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" ] }, { @@ -14336,10 +14510,10 @@ "kernelrelease": "4.15.0-1031-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" ] }, { @@ -14348,9 +14522,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb" ] }, { @@ -14359,9 +14533,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb" ] }, { @@ -14369,21 +14543,10 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" ] }, { @@ -14391,21 +14554,32 @@ "kernelrelease": "4.15.0-1032-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, + { + "kernelversion": "34", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" + ] + }, { "kernelversion": "34", "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { @@ -14413,10 +14587,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" ] }, { @@ -14432,24 +14606,24 @@ }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1033-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1033-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1033-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" ] }, { @@ -14457,10 +14631,10 @@ "kernelrelease": "4.15.0-1033-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb" ] }, { @@ -14468,21 +14642,10 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" ] }, { @@ -14490,10 +14653,10 @@ "kernelrelease": "4.15.0-1034-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" ] }, { @@ -14501,10 +14664,21 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb" ] }, { @@ -14523,10 +14697,10 @@ "kernelrelease": "4.15.0-1034-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb" ] }, { @@ -14545,9 +14719,9 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" ] }, @@ -14558,8 +14732,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" ] }, { @@ -14567,10 +14741,10 @@ "kernelrelease": "4.15.0-1035-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" ] }, { @@ -14578,10 +14752,10 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" ] }, { @@ -14589,32 +14763,32 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1036-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" ] }, { @@ -14628,14 +14802,25 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" ] }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + ] + }, { "kernelversion": "39", "kernelrelease": "4.15.0-1037-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb" ] }, @@ -14644,21 +14829,10 @@ "kernelrelease": "4.15.0-1037-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" ] }, { @@ -14668,8 +14842,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" ] }, { @@ -14677,8 +14851,8 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" ] @@ -14688,10 +14862,10 @@ "kernelrelease": "4.15.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb" ] }, { @@ -14699,10 +14873,10 @@ "kernelrelease": "4.15.0-1038-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" ] }, { @@ -14710,10 +14884,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" ] }, { @@ -14721,10 +14895,10 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" ] }, { @@ -14732,10 +14906,10 @@ "kernelrelease": "4.15.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" ] }, { @@ -14745,8 +14919,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" ] }, { @@ -14754,8 +14928,8 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] @@ -14766,8 +14940,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] }, @@ -14776,43 +14950,43 @@ "kernelrelease": "4.15.0-1040-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1040-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1040-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb" ] }, { @@ -14820,21 +14994,21 @@ "kernelrelease": "4.15.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1041-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, { @@ -14842,32 +15016,32 @@ "kernelrelease": "4.15.0-1042-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1042-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1042-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" ] }, { @@ -14887,8 +15061,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb" ] }, @@ -14897,10 +15071,10 @@ "kernelrelease": "4.15.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" ] }, { @@ -14908,21 +15082,21 @@ "kernelrelease": "4.15.0-1043-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1044-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" ] }, { @@ -14931,20 +15105,20 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1044-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb" ] }, { @@ -14952,10 +15126,10 @@ "kernelrelease": "4.15.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" ] }, { @@ -14964,9 +15138,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" ] }, { @@ -14975,9 +15149,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" ] }, { @@ -14987,8 +15161,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb" ] }, { @@ -14996,32 +15170,32 @@ "kernelrelease": "4.15.0-1045-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb" ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-1045-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1045-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-1045-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1045-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb" ] }, { @@ -15029,10 +15203,10 @@ "kernelrelease": "4.15.0-1046-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" ] }, { @@ -15040,10 +15214,10 @@ "kernelrelease": "4.15.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" ] }, { @@ -15051,10 +15225,10 @@ "kernelrelease": "4.15.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" ] }, { @@ -15062,10 +15236,10 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" ] }, { @@ -15073,32 +15247,32 @@ "kernelrelease": "4.15.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-1047-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1047-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb" ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-1047-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1047-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" ] }, { @@ -15106,10 +15280,10 @@ "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb" ] }, { @@ -15117,10 +15291,10 @@ "kernelrelease": "4.15.0-1048-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb" ] }, { @@ -15128,10 +15302,10 @@ "kernelrelease": "4.15.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb" ] }, { @@ -15139,10 +15313,10 @@ "kernelrelease": "4.15.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb" ] }, { @@ -15150,10 +15324,10 @@ "kernelrelease": "4.15.0-1049-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] }, { @@ -15161,10 +15335,10 @@ "kernelrelease": "4.15.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" ] }, { @@ -15172,10 +15346,10 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" ] }, { @@ -15183,10 +15357,10 @@ "kernelrelease": "4.15.0-1050-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" ] }, { @@ -15194,9 +15368,9 @@ "kernelrelease": "4.15.0-1050-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" ] }, @@ -15205,9 +15379,9 @@ "kernelrelease": "4.15.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" ] }, @@ -15227,9 +15401,9 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" ] }, @@ -15239,9 +15413,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb" ] }, { @@ -15249,10 +15423,10 @@ "kernelrelease": "4.15.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" ] }, { @@ -15260,10 +15434,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" ] }, { @@ -15271,10 +15445,10 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" ] }, { @@ -15283,9 +15457,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb" ] }, { @@ -15293,10 +15467,10 @@ "kernelrelease": "4.15.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" ] }, { @@ -15304,10 +15478,10 @@ "kernelrelease": "4.15.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" ] }, { @@ -15315,10 +15489,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" ] }, { @@ -15326,10 +15500,10 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb" ] }, { @@ -15337,10 +15511,10 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb" ] }, { @@ -15348,10 +15522,10 @@ "kernelrelease": "4.15.0-1055-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" ] }, { @@ -15359,10 +15533,10 @@ "kernelrelease": "4.15.0-1056-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" ] }, { @@ -15370,10 +15544,10 @@ "kernelrelease": "4.15.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb" ] }, { @@ -15382,8 +15556,8 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb" ] }, @@ -15392,10 +15566,10 @@ "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" ] }, { @@ -15403,10 +15577,10 @@ "kernelrelease": "4.15.0-1057-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb" ] }, { @@ -15414,32 +15588,32 @@ "kernelrelease": "4.15.0-1057-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" ] }, { "kernelversion": "62", - "kernelrelease": "4.15.0-1057-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1057-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "4.15.0-1057-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1057-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" ] }, { @@ -15447,10 +15621,10 @@ "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" ] }, { @@ -15458,10 +15632,10 @@ "kernelrelease": "4.15.0-1058-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" ] }, { @@ -15470,9 +15644,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb" ] }, { @@ -15480,10 +15654,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" ] }, { @@ -15491,10 +15665,10 @@ "kernelrelease": "4.15.0-1059-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb" ] }, { @@ -15502,10 +15676,10 @@ "kernelrelease": "4.15.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" ] }, { @@ -15515,8 +15689,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" ] }, { @@ -15524,12 +15698,12 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb" ] }, { @@ -15537,10 +15711,10 @@ "kernelrelease": "4.15.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" ] }, { @@ -15548,10 +15722,10 @@ "kernelrelease": "4.15.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" ] }, { @@ -15559,10 +15733,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb" ] }, { @@ -15570,10 +15744,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" ] }, { @@ -15582,9 +15756,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] }, { @@ -15592,9 +15766,9 @@ "kernelrelease": "4.15.0-1063-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" ] }, @@ -15603,9 +15777,9 @@ "kernelrelease": "4.15.0-1063-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb" ] }, @@ -15615,9 +15789,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" ] }, { @@ -15625,10 +15799,10 @@ "kernelrelease": "4.15.0-1064-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" ] }, { @@ -15636,10 +15810,10 @@ "kernelrelease": "4.15.0-1064-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb" ] }, { @@ -15647,10 +15821,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" ] }, { @@ -15658,10 +15832,10 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, { @@ -15669,10 +15843,10 @@ "kernelrelease": "4.15.0-1065-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" ] }, { @@ -15692,9 +15866,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { @@ -15704,8 +15878,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" ] }, { @@ -15713,10 +15887,10 @@ "kernelrelease": "4.15.0-1066-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" ] }, { @@ -15724,10 +15898,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" ] }, { @@ -15736,8 +15910,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" ] }, @@ -15748,8 +15922,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb" ] }, { @@ -15757,10 +15931,10 @@ "kernelrelease": "4.15.0-1067-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" ] }, { @@ -15768,10 +15942,10 @@ "kernelrelease": "4.15.0-1067-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb" ] }, { @@ -15779,10 +15953,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" ] }, { @@ -15790,10 +15964,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" ] }, { @@ -15802,8 +15976,8 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb" ] }, @@ -15812,9 +15986,9 @@ "kernelrelease": "4.15.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" ] }, @@ -15823,9 +15997,9 @@ "kernelrelease": "4.15.0-1069-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" ] }, @@ -15835,9 +16009,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb" ] }, { @@ -15845,10 +16019,10 @@ "kernelrelease": "4.15.0-1070-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" ] }, { @@ -15856,10 +16030,10 @@ "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" ] }, { @@ -15868,9 +16042,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb" ] }, { @@ -15878,9 +16052,9 @@ "kernelrelease": "4.15.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" ] }, @@ -15889,10 +16063,10 @@ "kernelrelease": "4.15.0-1072-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb" ] }, { @@ -15900,10 +16074,10 @@ "kernelrelease": "4.15.0-1072-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb" ] }, { @@ -15911,10 +16085,10 @@ "kernelrelease": "4.15.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" ] }, { @@ -15922,8 +16096,8 @@ "kernelrelease": "4.15.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" ] @@ -15933,10 +16107,10 @@ "kernelrelease": "4.15.0-1073-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb" ] }, { @@ -15945,9 +16119,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb" ] }, { @@ -15955,10 +16129,10 @@ "kernelrelease": "4.15.0-1074-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" ] }, { @@ -15967,9 +16141,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" ] }, { @@ -15977,10 +16151,10 @@ "kernelrelease": "4.15.0-1075-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb" ] }, { @@ -15988,8 +16162,8 @@ "kernelrelease": "4.15.0-1076-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" ] @@ -16000,9 +16174,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" ] }, { @@ -16010,10 +16184,10 @@ "kernelrelease": "4.15.0-1076-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" ] }, { @@ -16021,10 +16195,10 @@ "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" ] }, { @@ -16032,8 +16206,8 @@ "kernelrelease": "4.15.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" ] @@ -16044,9 +16218,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" ] }, { @@ -16056,8 +16230,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" ] }, { @@ -16065,10 +16239,10 @@ "kernelrelease": "4.15.0-1078-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" ] }, { @@ -16076,10 +16250,10 @@ "kernelrelease": "4.15.0-1078-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" ] }, { @@ -16087,10 +16261,10 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" ] }, { @@ -16098,10 +16272,10 @@ "kernelrelease": "4.15.0-1079-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" ] }, { @@ -16109,10 +16283,10 @@ "kernelrelease": "4.15.0-1079-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" ] }, { @@ -16120,10 +16294,10 @@ "kernelrelease": "4.15.0-1079-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb" ] }, { @@ -16132,10 +16306,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" ] }, @@ -16144,8 +16318,8 @@ "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" ] @@ -16155,9 +16329,9 @@ "kernelrelease": "4.15.0-1080-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" ] }, @@ -16166,10 +16340,10 @@ "kernelrelease": "4.15.0-1080-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb" ] }, { @@ -16177,9 +16351,9 @@ "kernelrelease": "4.15.0-1081-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb" ] }, @@ -16188,10 +16362,10 @@ "kernelrelease": "4.15.0-1081-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb" ] }, { @@ -16200,9 +16374,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" ] }, { @@ -16210,10 +16384,10 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" ] }, { @@ -16233,9 +16407,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" ] }, { @@ -16243,10 +16417,10 @@ "kernelrelease": "4.15.0-1082-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" ] }, { @@ -16254,10 +16428,10 @@ "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" ] }, { @@ -16266,8 +16440,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" ] }, @@ -16276,10 +16450,10 @@ "kernelrelease": "4.15.0-1083-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb" ] }, { @@ -16310,9 +16484,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" ] }, { @@ -16320,9 +16494,9 @@ "kernelrelease": "4.15.0-1085-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" ] }, @@ -16332,8 +16506,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" ] }, @@ -16342,10 +16516,10 @@ "kernelrelease": "4.15.0-1086-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb" ] }, { @@ -16353,10 +16527,10 @@ "kernelrelease": "4.15.0-1086-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" ] }, { @@ -16365,9 +16539,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" ] }, { @@ -16375,9 +16549,9 @@ "kernelrelease": "4.15.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" ] }, @@ -16386,9 +16560,9 @@ "kernelrelease": "4.15.0-1087-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb" ] }, @@ -16397,10 +16571,10 @@ "kernelrelease": "4.15.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" ] }, { @@ -16408,10 +16582,10 @@ "kernelrelease": "4.15.0-1089-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" ] }, { @@ -16420,9 +16594,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" ] }, { @@ -16430,10 +16604,10 @@ "kernelrelease": "4.15.0-1089-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" ] }, { @@ -16441,12 +16615,12 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" ] }, { @@ -16454,10 +16628,10 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb" ] }, { @@ -16467,8 +16641,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" ] }, { @@ -16488,8 +16662,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb" ] }, @@ -16498,9 +16672,9 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" ] }, @@ -16509,9 +16683,9 @@ "kernelrelease": "4.15.0-1091-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, @@ -16521,9 +16695,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, { @@ -16531,10 +16705,10 @@ "kernelrelease": "4.15.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" ] }, { @@ -16542,10 +16716,10 @@ "kernelrelease": "4.15.0-1091-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" ] }, { @@ -16554,9 +16728,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" ] }, { @@ -16564,10 +16738,10 @@ "kernelrelease": "4.15.0-1092-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb" ] }, { @@ -16575,10 +16749,10 @@ "kernelrelease": "4.15.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb" ] }, { @@ -16586,10 +16760,10 @@ "kernelrelease": "4.15.0-1092-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" ] }, { @@ -16597,32 +16771,32 @@ "kernelrelease": "4.15.0-1093-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" ] }, { "kernelversion": "103", - "kernelrelease": "4.15.0-1093-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1093-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" ] }, { "kernelversion": "103", - "kernelrelease": "4.15.0-1093-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1093-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" ] }, { @@ -16630,10 +16804,10 @@ "kernelrelease": "4.15.0-1093-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" ] }, { @@ -16642,9 +16816,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" ] }, { @@ -16652,10 +16826,10 @@ "kernelrelease": "4.15.0-1094-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" ] }, { @@ -16663,10 +16837,10 @@ "kernelrelease": "4.15.0-1094-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" ] }, { @@ -16674,10 +16848,10 @@ "kernelrelease": "4.15.0-1094-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb" ] }, { @@ -16685,8 +16859,8 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" ] @@ -16698,8 +16872,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" ] }, { @@ -16707,10 +16881,10 @@ "kernelrelease": "4.15.0-1095-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb" ] }, { @@ -16719,20 +16893,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.15.0-1096-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" ] }, { @@ -16740,12 +16903,23 @@ "kernelrelease": "4.15.0-1096-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" ] }, + { + "kernelversion": "106", + "kernelrelease": "4.15.0-1096-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb" + ] + }, { "kernelversion": "109", "kernelrelease": "4.15.0-1096-gcp-4.15", @@ -16753,8 +16927,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" ] }, { @@ -16762,9 +16936,9 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" ] }, @@ -16774,9 +16948,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb" ] }, { @@ -16784,10 +16958,10 @@ "kernelrelease": "4.15.0-1097-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" ] }, { @@ -16795,10 +16969,10 @@ "kernelrelease": "4.15.0-1097-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" ] }, { @@ -16806,10 +16980,10 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" ] }, { @@ -16817,10 +16991,10 @@ "kernelrelease": "4.15.0-1098-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb" ] }, { @@ -16829,9 +17003,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" ] }, { @@ -16839,10 +17013,10 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { @@ -16850,8 +17024,8 @@ "kernelrelease": "4.15.0-1099-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb" ] @@ -16861,10 +17035,10 @@ "kernelrelease": "4.15.0-1099-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" ] }, { @@ -16872,10 +17046,10 @@ "kernelrelease": "4.15.0-1099-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" ] }, { @@ -16883,9 +17057,9 @@ "kernelrelease": "4.15.0-1099-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" ] }, @@ -16894,10 +17068,10 @@ "kernelrelease": "4.15.0-1100-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb" ] }, { @@ -16905,10 +17079,10 @@ "kernelrelease": "4.15.0-1100-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" ] }, { @@ -16916,10 +17090,10 @@ "kernelrelease": "4.15.0-1100-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" ] }, { @@ -16927,9 +17101,9 @@ "kernelrelease": "4.15.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" ] }, @@ -16938,8 +17112,8 @@ "kernelrelease": "4.15.0-1101-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" ] @@ -16960,32 +17134,32 @@ "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-1102-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1102-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb" ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-1102-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1102-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb" ] }, { @@ -16993,10 +17167,10 @@ "kernelrelease": "4.15.0-1102-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" ] }, { @@ -17006,8 +17180,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" ] }, { @@ -17015,10 +17189,10 @@ "kernelrelease": "4.15.0-1103-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb" ] }, { @@ -17026,10 +17200,10 @@ "kernelrelease": "4.15.0-1103-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { @@ -17037,10 +17211,10 @@ "kernelrelease": "4.15.0-1103-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb" ] }, { @@ -17049,9 +17223,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb" ] }, { @@ -17059,10 +17233,10 @@ "kernelrelease": "4.15.0-1105-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" ] }, { @@ -17070,10 +17244,10 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" ] }, { @@ -17081,10 +17255,10 @@ "kernelrelease": "4.15.0-1106-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb" ] }, { @@ -17092,10 +17266,10 @@ "kernelrelease": "4.15.0-1106-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb" ] }, { @@ -17103,10 +17277,10 @@ "kernelrelease": "4.15.0-1106-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" ] }, { @@ -17115,9 +17289,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" ] }, { @@ -17125,10 +17299,10 @@ "kernelrelease": "4.15.0-1108-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" ] }, { @@ -17136,10 +17310,10 @@ "kernelrelease": "4.15.0-1108-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" ] }, { @@ -17147,10 +17321,10 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, { @@ -17159,9 +17333,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" ] }, { @@ -17169,10 +17343,10 @@ "kernelrelease": "4.15.0-1109-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" ] }, { @@ -17180,9 +17354,9 @@ "kernelrelease": "4.15.0-1109-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb" ] }, @@ -17191,12 +17365,12 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" ] }, { @@ -17204,10 +17378,10 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" ] }, { @@ -17216,8 +17390,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" ] }, @@ -17226,10 +17400,10 @@ "kernelrelease": "4.15.0-1110-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" ] }, { @@ -17237,8 +17411,8 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb" ] @@ -17249,8 +17423,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" ] }, @@ -17259,10 +17433,10 @@ "kernelrelease": "4.15.0-1111-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" ] }, { @@ -17270,9 +17444,9 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb" ] }, @@ -17281,10 +17455,10 @@ "kernelrelease": "4.15.0-1112-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" ] }, { @@ -17293,9 +17467,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" ] }, { @@ -17303,10 +17477,10 @@ "kernelrelease": "4.15.0-1112-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" ] }, { @@ -17314,10 +17488,10 @@ "kernelrelease": "4.15.0-1113-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb" ] }, { @@ -17325,10 +17499,10 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" ] }, { @@ -17336,10 +17510,10 @@ "kernelrelease": "4.15.0-1114-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" ] }, { @@ -17348,8 +17522,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" ] }, @@ -17358,10 +17532,10 @@ "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" ] }, { @@ -17369,10 +17543,10 @@ "kernelrelease": "4.15.0-1115-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" ] }, { @@ -17380,10 +17554,10 @@ "kernelrelease": "4.15.0-1115-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb" ] }, { @@ -17391,10 +17565,10 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" ] }, { @@ -17402,10 +17576,10 @@ "kernelrelease": "4.15.0-1118-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" ] }, { @@ -17413,10 +17587,10 @@ "kernelrelease": "4.15.0-1118-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" ] }, { @@ -17424,10 +17598,10 @@ "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" ] }, { @@ -17435,10 +17609,10 @@ "kernelrelease": "4.15.0-1119-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" ] }, { @@ -17446,12 +17620,12 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" ] }, { @@ -17461,8 +17635,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" ] }, { @@ -17472,8 +17646,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" ] }, { @@ -17481,10 +17655,10 @@ "kernelrelease": "4.15.0-1122-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" ] }, { @@ -17492,10 +17666,10 @@ "kernelrelease": "4.15.0-1123-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" ] }, { @@ -17503,10 +17677,10 @@ "kernelrelease": "4.15.0-1123-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb" ] }, { @@ -17514,10 +17688,10 @@ "kernelrelease": "4.15.0-1124-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" ] }, { @@ -17525,10 +17699,10 @@ "kernelrelease": "4.15.0-1125-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb" ] }, { @@ -17538,8 +17712,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb" ] }, { @@ -17547,10 +17721,10 @@ "kernelrelease": "4.15.0-1126-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb" ] }, { @@ -17558,10 +17732,10 @@ "kernelrelease": "4.15.0-1127-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" ] }, { @@ -17580,10 +17754,10 @@ "kernelrelease": "4.15.0-1133-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb" ] }, { @@ -17591,10 +17765,10 @@ "kernelrelease": "4.15.0-1136-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb" ] }, { @@ -17602,8 +17776,8 @@ "kernelrelease": "4.15.0-1137-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb" ] @@ -17613,12 +17787,12 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" ] }, { @@ -17628,9 +17802,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" ] }, @@ -17639,10 +17813,10 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" ] @@ -17652,12 +17826,12 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" ] }, { @@ -17665,12 +17839,12 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" ] }, { @@ -17678,11 +17852,11 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb" ] }, @@ -17691,11 +17865,11 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb" ] }, @@ -17704,12 +17878,12 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb" ] }, { @@ -17718,11 +17892,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb" ] }, { @@ -17730,12 +17904,12 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" ] }, { @@ -17743,12 +17917,12 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb" ] }, { @@ -17756,12 +17930,12 @@ "kernelrelease": "4.15.0-136", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" ] }, { @@ -17769,12 +17943,12 @@ "kernelrelease": "4.15.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb" ] }, { @@ -17782,12 +17956,12 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" ] }, { @@ -17795,12 +17969,12 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" ] }, { @@ -17808,12 +17982,12 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" ] }, { @@ -17821,12 +17995,12 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb" ] }, { @@ -17834,12 +18008,12 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb" ] }, { @@ -17847,12 +18021,12 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" ] }, { @@ -17861,11 +18035,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, { @@ -17873,11 +18047,11 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" ] }, @@ -17886,12 +18060,12 @@ "kernelrelease": "4.15.0-153", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb" ] }, { @@ -17899,12 +18073,12 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb" ] }, { @@ -17912,12 +18086,12 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" ] }, { @@ -17925,12 +18099,12 @@ "kernelrelease": "4.15.0-158", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" ] }, { @@ -17938,12 +18112,12 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb" ] }, { @@ -17951,12 +18125,12 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" ] }, { @@ -17964,12 +18138,12 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" ] }, { @@ -17977,12 +18151,12 @@ "kernelrelease": "4.15.0-163", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" ] }, { @@ -17990,12 +18164,12 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" ] }, { @@ -18003,12 +18177,12 @@ "kernelrelease": "4.15.0-171", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb" ] }, { @@ -18016,12 +18190,12 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" ] }, { @@ -18029,12 +18203,12 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" ] }, { @@ -18042,12 +18216,12 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb" ] }, { @@ -18055,12 +18229,12 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb" ] }, { @@ -18068,11 +18242,11 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb" ] }, @@ -18081,12 +18255,12 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" ] }, { @@ -18094,12 +18268,12 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" ] }, { @@ -18107,11 +18281,11 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb" ] }, @@ -18121,11 +18295,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb" ] }, { @@ -18133,10 +18307,10 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" ] @@ -18146,12 +18320,12 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb" ] }, { @@ -18159,12 +18333,12 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb" ] }, { @@ -18174,10 +18348,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" ] }, { @@ -18186,11 +18360,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" ] }, { @@ -18199,11 +18373,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb" ] }, { @@ -18212,11 +18386,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" ] }, { @@ -18225,11 +18399,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb" ] }, { @@ -18237,12 +18411,12 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb" ] }, { @@ -18250,12 +18424,12 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb" ] }, { @@ -18263,12 +18437,12 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" ] }, { @@ -18276,12 +18450,12 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" ] }, { @@ -18290,11 +18464,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" ] }, { @@ -18302,12 +18476,12 @@ "kernelrelease": "4.15.0-58", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" ] }, { @@ -18315,12 +18489,12 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" ] }, { @@ -18328,12 +18502,12 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" ] }, { @@ -18341,12 +18515,12 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" ] }, { @@ -18354,12 +18528,12 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb" ] }, { @@ -18368,11 +18542,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" ] }, { @@ -18381,11 +18555,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" ] }, { @@ -18393,12 +18567,12 @@ "kernelrelease": "4.15.0-70", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb" ] }, { @@ -18406,12 +18580,12 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb" ] }, { @@ -18421,10 +18595,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb" ] }, { @@ -18434,10 +18608,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb" ] }, { @@ -18445,12 +18619,12 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb" ] }, { @@ -18458,12 +18632,12 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb" ] }, { @@ -18471,12 +18645,12 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb" ] }, { @@ -18484,12 +18658,12 @@ "kernelrelease": "4.15.0-99", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb" ] }, { @@ -18497,10 +18671,10 @@ "kernelrelease": "4.18.0-1004-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb" ] }, { @@ -18509,9 +18683,9 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" ] }, { @@ -18519,10 +18693,10 @@ "kernelrelease": "4.18.0-1006-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" ] }, { @@ -18530,10 +18704,10 @@ "kernelrelease": "4.18.0-1006-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb" ] }, { @@ -18542,9 +18716,9 @@ "target": "ubuntu-azure-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb" ] }, { @@ -18565,8 +18739,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" ] }, { @@ -18574,9 +18748,9 @@ "kernelrelease": "4.18.0-1008-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" ] }, @@ -18585,10 +18759,10 @@ "kernelrelease": "4.18.0-1011-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" ] }, { @@ -18598,8 +18772,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" ] }, { @@ -18607,10 +18781,10 @@ "kernelrelease": "4.18.0-1012-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -18629,10 +18803,10 @@ "kernelrelease": "4.18.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -18640,10 +18814,10 @@ "kernelrelease": "4.18.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" ] }, { @@ -18651,10 +18825,10 @@ "kernelrelease": "4.18.0-1015-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb" ] }, { @@ -18662,10 +18836,10 @@ "kernelrelease": "4.18.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" ] }, { @@ -18673,10 +18847,10 @@ "kernelrelease": "4.18.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" ] }, { @@ -18685,8 +18859,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" ] }, @@ -18696,9 +18870,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -18706,10 +18880,10 @@ "kernelrelease": "4.18.0-1024-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" ] }, { @@ -18717,10 +18891,10 @@ "kernelrelease": "4.18.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb" ] }, { @@ -18728,12 +18902,12 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" ] }, { @@ -18741,12 +18915,12 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" ] }, { @@ -18755,11 +18929,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb" ] }, { @@ -18767,12 +18941,12 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" ] }, { @@ -18780,12 +18954,12 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb" ] }, { @@ -18794,11 +18968,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" ] }, { @@ -18808,10 +18982,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb" ] }, { @@ -18820,11 +18994,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb" ] }, { @@ -18833,11 +19007,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb" ] }, { @@ -18845,12 +19019,12 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb" ] }, { @@ -18859,9 +19033,9 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" ] }, { @@ -18869,10 +19043,10 @@ "kernelrelease": "5.0.0-1008-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb" ] }, { @@ -18880,10 +19054,10 @@ "kernelrelease": "5.0.0-1009-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb" ] }, { @@ -18891,10 +19065,10 @@ "kernelrelease": "5.0.0-1010-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb" ] }, { @@ -18902,10 +19076,10 @@ "kernelrelease": "5.0.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -18914,8 +19088,8 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" ] }, @@ -18925,9 +19099,9 @@ "target": "ubuntu-azure-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb" ] }, { @@ -18946,9 +19120,9 @@ "kernelrelease": "5.0.0-1013-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" ] }, @@ -18957,10 +19131,10 @@ "kernelrelease": "5.0.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" ] }, { @@ -18969,9 +19143,9 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb" ] }, { @@ -18979,10 +19153,10 @@ "kernelrelease": "5.0.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb" ] }, { @@ -18990,10 +19164,10 @@ "kernelrelease": "5.0.0-1018-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19002,9 +19176,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -19012,10 +19186,10 @@ "kernelrelease": "5.0.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" ] }, { @@ -19024,9 +19198,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" ] }, { @@ -19034,10 +19208,10 @@ "kernelrelease": "5.0.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -19045,9 +19219,9 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" ] }, @@ -19057,8 +19231,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb" ] }, @@ -19069,8 +19243,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb" ] }, { @@ -19078,10 +19252,10 @@ "kernelrelease": "5.0.0-1023-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -19090,8 +19264,8 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" ] }, @@ -19100,10 +19274,10 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb" ] }, { @@ -19111,9 +19285,9 @@ "kernelrelease": "5.0.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" ] }, @@ -19122,9 +19296,9 @@ "kernelrelease": "5.0.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" ] }, @@ -19134,9 +19308,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -19144,9 +19318,9 @@ "kernelrelease": "5.0.0-1027-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" ] }, @@ -19155,10 +19329,10 @@ "kernelrelease": "5.0.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" ] }, { @@ -19166,10 +19340,10 @@ "kernelrelease": "5.0.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb" ] }, { @@ -19177,10 +19351,10 @@ "kernelrelease": "5.0.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -19188,10 +19362,10 @@ "kernelrelease": "5.0.0-1029-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -19199,10 +19373,10 @@ "kernelrelease": "5.0.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" ] }, { @@ -19210,10 +19384,10 @@ "kernelrelease": "5.0.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb" ] }, { @@ -19221,8 +19395,8 @@ "kernelrelease": "5.0.0-1031-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb" ] @@ -19232,10 +19406,10 @@ "kernelrelease": "5.0.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" ] }, { @@ -19243,10 +19417,10 @@ "kernelrelease": "5.0.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" ] }, { @@ -19254,10 +19428,10 @@ "kernelrelease": "5.0.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" ] }, { @@ -19265,10 +19439,10 @@ "kernelrelease": "5.0.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" ] }, { @@ -19276,10 +19450,10 @@ "kernelrelease": "5.0.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" ] }, { @@ -19287,12 +19461,12 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" ] }, { @@ -19300,12 +19474,12 @@ "kernelrelease": "5.0.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb" ] }, { @@ -19313,12 +19487,12 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb" ] }, { @@ -19326,12 +19500,12 @@ "kernelrelease": "5.0.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb" ] }, { @@ -19339,12 +19513,12 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb" ] }, { @@ -19353,11 +19527,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" ] }, { @@ -19365,12 +19539,12 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb" ] }, { @@ -19379,11 +19553,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb" ] }, { @@ -19391,12 +19565,12 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb" ] }, { @@ -19404,12 +19578,12 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" ] }, { @@ -19417,8 +19591,8 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", @@ -19430,12 +19604,12 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" ] }, { @@ -19443,12 +19617,12 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" ] }, { @@ -19457,11 +19631,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb" ] }, { @@ -19470,9 +19644,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" ] }, { @@ -19480,10 +19654,10 @@ "kernelrelease": "5.0.0-61-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb" ] }, { @@ -19491,9 +19665,9 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" ] }, @@ -19502,10 +19676,10 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" ] }, { @@ -19513,9 +19687,9 @@ "kernelrelease": "5.0.0-65-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" ] }, @@ -19524,43 +19698,32 @@ "kernelrelease": "5.3.0-1007-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb" ] }, - { - "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" - ] - }, { "kernelversion": "9~18.04.1", "kernelrelease": "5.3.0-1008-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { - "kernelversion": "10~18.04.1", - "kernelrelease": "5.3.0-1009-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelversion": "9~18.04.1", + "kernelrelease": "5.3.0-1008-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -19570,8 +19733,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb" + ] + }, + { + "kernelversion": "10~18.04.1", + "kernelrelease": "5.3.0-1009-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -19579,10 +19753,10 @@ "kernelrelease": "5.3.0-1010-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -19590,9 +19764,9 @@ "kernelrelease": "5.3.0-1010-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" ] }, @@ -19601,10 +19775,10 @@ "kernelrelease": "5.3.0-1011-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" ] }, { @@ -19612,10 +19786,10 @@ "kernelrelease": "5.3.0-1012-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -19623,10 +19797,10 @@ "kernelrelease": "5.3.0-1012-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb" ] }, { @@ -19635,9 +19809,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -19645,10 +19819,10 @@ "kernelrelease": "5.3.0-1013-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -19656,10 +19830,10 @@ "kernelrelease": "5.3.0-1014-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb" ] }, { @@ -19668,20 +19842,20 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1016-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19689,21 +19863,21 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1016-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19712,8 +19886,8 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb" ] }, @@ -19722,10 +19896,10 @@ "kernelrelease": "5.3.0-1017-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" ] }, { @@ -19733,21 +19907,10 @@ "kernelrelease": "5.3.0-1017-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { @@ -19756,20 +19919,31 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb" ] }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "5.3.0-1018-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" + ] + }, { "kernelversion": "20~18.04.1", "kernelrelease": "5.3.0-1018-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" ] }, { @@ -19777,10 +19951,10 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb" ] }, { @@ -19788,10 +19962,10 @@ "kernelrelease": "5.3.0-1019-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" ] }, { @@ -19799,10 +19973,10 @@ "kernelrelease": "5.3.0-1020-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -19810,10 +19984,10 @@ "kernelrelease": "5.3.0-1020-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" ] }, { @@ -19821,10 +19995,10 @@ "kernelrelease": "5.3.0-1022-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -19832,10 +20006,10 @@ "kernelrelease": "5.3.0-1023-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" ] }, { @@ -19843,10 +20017,10 @@ "kernelrelease": "5.3.0-1024-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" ] }, { @@ -19854,10 +20028,10 @@ "kernelrelease": "5.3.0-1026-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb" ] }, { @@ -19865,10 +20039,10 @@ "kernelrelease": "5.3.0-1027-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb" ] }, { @@ -19876,10 +20050,10 @@ "kernelrelease": "5.3.0-1028-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" ] }, { @@ -19887,10 +20061,10 @@ "kernelrelease": "5.3.0-1028-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb" ] }, { @@ -19898,10 +20072,10 @@ "kernelrelease": "5.3.0-1028-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb" ] }, { @@ -19909,21 +20083,10 @@ "kernelrelease": "5.3.0-1029-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -19931,10 +20094,10 @@ "kernelrelease": "5.3.0-1030-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -19943,9 +20106,20 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1030-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -19954,9 +20128,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" ] }, { @@ -19964,10 +20138,10 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" ] }, { @@ -19975,9 +20149,9 @@ "kernelrelease": "5.3.0-1032-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" ] }, @@ -19986,10 +20160,10 @@ "kernelrelease": "5.3.0-1032-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -19997,10 +20171,10 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" ] }, { @@ -20009,9 +20183,9 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb" ] }, { @@ -20019,10 +20193,10 @@ "kernelrelease": "5.3.0-1034-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" ] }, { @@ -20030,10 +20204,10 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" ] }, { @@ -20041,10 +20215,10 @@ "kernelrelease": "5.3.0-1035-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb" ] }, { @@ -20052,12 +20226,12 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" ] }, { @@ -20065,12 +20239,12 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb" ] }, { @@ -20078,12 +20252,12 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" ] }, { @@ -20091,12 +20265,12 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" ] }, { @@ -20104,12 +20278,12 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb" ] }, { @@ -20117,12 +20291,12 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" ] }, { @@ -20130,12 +20304,12 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" ] }, { @@ -20143,12 +20317,12 @@ "kernelrelease": "5.3.0-42-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" ] }, { @@ -20156,11 +20330,11 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb" ] }, @@ -20169,12 +20343,12 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb" ] }, { @@ -20182,11 +20356,11 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" ] }, @@ -20195,12 +20369,12 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb" ] }, { @@ -20208,12 +20382,12 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb" ] }, { @@ -20221,12 +20395,12 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" ] }, { @@ -20234,12 +20408,12 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb" ] }, { @@ -20247,12 +20421,12 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" ] }, { @@ -20260,12 +20434,12 @@ "kernelrelease": "5.3.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb" ] }, { @@ -20275,9 +20449,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb" ] }, @@ -20286,12 +20460,12 @@ "kernelrelease": "5.3.0-67-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb" ] }, { @@ -20299,12 +20473,12 @@ "kernelrelease": "5.3.0-68-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" ] }, { @@ -20312,12 +20486,12 @@ "kernelrelease": "5.3.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb" ] }, { @@ -20325,12 +20499,12 @@ "kernelrelease": "5.3.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" ] }, { @@ -20338,12 +20512,12 @@ "kernelrelease": "5.3.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" ] }, { @@ -20351,12 +20525,12 @@ "kernelrelease": "5.3.0-73-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" ] }, { @@ -20365,11 +20539,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb" ] }, { @@ -20377,12 +20551,12 @@ "kernelrelease": "5.3.0-75-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb" ] }, { @@ -20390,12 +20564,12 @@ "kernelrelease": "5.3.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb" ] }, { @@ -20403,32 +20577,32 @@ "kernelrelease": "5.4.0-1003-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" ] }, { "kernelversion": "5", - "kernelrelease": "5.4.0-1004-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1004-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb" ] }, { "kernelversion": "5", - "kernelrelease": "5.4.0-1004-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1004-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" ] }, { @@ -20436,9 +20610,9 @@ "kernelrelease": "5.4.0-1007-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" ] }, @@ -20447,10 +20621,10 @@ "kernelrelease": "5.4.0-1008-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -20459,9 +20633,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -20469,9 +20643,9 @@ "kernelrelease": "5.4.0-1010-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" ] }, @@ -20480,9 +20654,9 @@ "kernelrelease": "5.4.0-1011-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb" ] }, @@ -20491,10 +20665,10 @@ "kernelrelease": "5.4.0-1012-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb" ] }, { @@ -20502,8 +20676,8 @@ "kernelrelease": "5.4.0-1013-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" ] @@ -20513,10 +20687,10 @@ "kernelrelease": "5.4.0-1014-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" ] }, { @@ -20524,10 +20698,10 @@ "kernelrelease": "5.4.0-1015-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" ] }, { @@ -20535,10 +20709,10 @@ "kernelrelease": "5.4.0-1016-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb" ] }, { @@ -20548,8 +20722,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" ] }, { @@ -20557,32 +20731,32 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb" ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1021-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1021-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -20590,32 +20764,21 @@ "kernelrelease": "5.4.0-1021-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" ] }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb" - ] - }, { "kernelversion": "22~18.04.1", "kernelrelease": "5.4.0-1022-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { @@ -20623,10 +20786,10 @@ "kernelrelease": "5.4.0-1022-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20634,21 +20797,32 @@ "kernelrelease": "5.4.0-1022-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb" ] }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + ] + }, { "kernelversion": "23~18.04.1", "kernelrelease": "5.4.0-1022-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" ] }, { @@ -20667,10 +20841,10 @@ "kernelrelease": "5.4.0-1023-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -20678,32 +20852,32 @@ "kernelrelease": "5.4.0-1024-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1024-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1024-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20719,57 +20893,57 @@ }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1025-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1025-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1025-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1025-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1025-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -20777,10 +20951,10 @@ "kernelrelease": "5.4.0-1025-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -20788,10 +20962,10 @@ "kernelrelease": "5.4.0-1026-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" ] }, { @@ -20799,21 +20973,10 @@ "kernelrelease": "5.4.0-1026-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -20822,20 +20985,31 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" ] }, + { + "kernelversion": "28~18.04.1", + "kernelrelease": "5.4.0-1027-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" + ] + }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1028-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -20843,21 +21017,21 @@ "kernelrelease": "5.4.0-1028-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1028-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { @@ -20865,10 +21039,10 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb" ] }, { @@ -20876,32 +21050,32 @@ "kernelrelease": "5.4.0-1029-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1029-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1029-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -20909,32 +21083,32 @@ "kernelrelease": "5.4.0-1029-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1031-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1031-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb" ] }, { @@ -20942,10 +21116,10 @@ "kernelrelease": "5.4.0-1032-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -20953,21 +21127,10 @@ "kernelrelease": "5.4.0-1032-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -20981,15 +21144,37 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" ] }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1033-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb" + ] + }, { "kernelversion": "34~18.04.1", "kernelrelease": "5.4.0-1033-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1033-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb" ] }, { @@ -20997,9 +21182,9 @@ "kernelrelease": "5.4.0-1033-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] }, @@ -21014,26 +21199,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1033-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" - ] - }, { "kernelversion": "37~18.04.1", "kernelrelease": "5.4.0-1034-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb" ] }, { @@ -21041,32 +21215,32 @@ "kernelrelease": "5.4.0-1034-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb" ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1035-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1035-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -21074,10 +21248,10 @@ "kernelrelease": "5.4.0-1035-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" ] }, { @@ -21085,9 +21259,9 @@ "kernelrelease": "5.4.0-1035-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" ] }, @@ -21097,9 +21271,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb" ] }, { @@ -21107,10 +21281,10 @@ "kernelrelease": "5.4.0-1036-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" ] }, { @@ -21118,9 +21292,9 @@ "kernelrelease": "5.4.0-1036-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb" ] }, @@ -21129,10 +21303,21 @@ "kernelrelease": "5.4.0-1036-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "39~18.04.1", + "kernelrelease": "5.4.0-1037-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { @@ -21146,26 +21331,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" ] }, - { - "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" - ] - }, { "kernelversion": "40~18.04.1", "kernelrelease": "5.4.0-1037-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb" ] }, { @@ -21173,10 +21347,10 @@ "kernelrelease": "5.4.0-1037-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21184,10 +21358,10 @@ "kernelrelease": "5.4.0-1037-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb" ] }, { @@ -21206,10 +21380,10 @@ "kernelrelease": "5.4.0-1038-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb" ] }, { @@ -21217,10 +21391,10 @@ "kernelrelease": "5.4.0-1038-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { @@ -21229,9 +21403,20 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1039-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21241,8 +21426,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21250,21 +21435,10 @@ "kernelrelease": "5.4.0-1039-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21272,10 +21446,10 @@ "kernelrelease": "5.4.0-1039-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb" ] }, { @@ -21283,9 +21457,9 @@ "kernelrelease": "5.4.0-1039-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb" ] }, @@ -21294,12 +21468,12 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb" ] }, { @@ -21307,10 +21481,10 @@ "kernelrelease": "5.4.0-1040-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { @@ -21318,9 +21492,9 @@ "kernelrelease": "5.4.0-1040-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" ] }, @@ -21331,8 +21505,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" ] }, { @@ -21340,10 +21514,10 @@ "kernelrelease": "5.4.0-1041-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, { @@ -21351,32 +21525,32 @@ "kernelrelease": "5.4.0-1041-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" ] }, { "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1041-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" ] }, { "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1041-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { @@ -21384,10 +21558,10 @@ "kernelrelease": "5.4.0-1042-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" ] }, { @@ -21395,10 +21569,10 @@ "kernelrelease": "5.4.0-1042-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb" ] }, { @@ -21406,21 +21580,21 @@ "kernelrelease": "5.4.0-1042-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1043-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -21428,21 +21602,32 @@ "kernelrelease": "5.4.0-1043-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1043-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + ] + }, + { + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-1043-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" ] }, { @@ -21456,26 +21641,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb" ] }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1043-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" - ] - }, { "kernelversion": "46~18.04.1", "kernelrelease": "5.4.0-1044-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -21483,10 +21657,10 @@ "kernelrelease": "5.4.0-1044-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -21495,8 +21669,8 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" ] }, @@ -21516,32 +21690,32 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1046-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1046-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" ] }, { @@ -21549,10 +21723,10 @@ "kernelrelease": "5.4.0-1046-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" ] }, { @@ -21571,10 +21745,10 @@ "kernelrelease": "5.4.0-1047-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" ] }, { @@ -21582,10 +21756,10 @@ "kernelrelease": "5.4.0-1047-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" ] }, { @@ -21593,9 +21767,9 @@ "kernelrelease": "5.4.0-1048-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb" ] }, @@ -21604,10 +21778,10 @@ "kernelrelease": "5.4.0-1048-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" ] }, { @@ -21616,8 +21790,8 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" ] }, @@ -21628,8 +21802,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { @@ -21637,9 +21811,9 @@ "kernelrelease": "5.4.0-1049-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" ] }, @@ -21648,10 +21822,10 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -21659,10 +21833,10 @@ "kernelrelease": "5.4.0-1049-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -21670,32 +21844,32 @@ "kernelrelease": "5.4.0-1049-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1051-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1051-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" ] }, { @@ -21703,10 +21877,10 @@ "kernelrelease": "5.4.0-1051-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" ] }, { @@ -21714,21 +21888,10 @@ "kernelrelease": "5.4.0-1051-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" ] }, { @@ -21736,21 +21899,43 @@ "kernelrelease": "5.4.0-1052-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb" ] }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.4.0-1052-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb" + ] + }, { "kernelversion": "55~18.04.1", "kernelrelease": "5.4.0-1052-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1053-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -21764,37 +21949,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb" ] }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" - ] - }, { "kernelversion": "56~18.04.1", "kernelrelease": "5.4.0-1053-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" ] }, { @@ -21809,25 +21972,25 @@ ] }, { - "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1054-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1054-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1054-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" ] }, { @@ -21836,53 +21999,53 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb" ] }, + { + "kernelversion": "58~18.04.1", + "kernelrelease": "5.4.0-1055-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" + ] + }, { "kernelversion": "57~18.04.1", "kernelrelease": "5.4.0-1055-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" ] }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" - ] - }, { "kernelversion": "59~18.04.1", "kernelrelease": "5.4.0-1055-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1055-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" ] }, { @@ -21890,10 +22053,21 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + ] + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1056-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" ] }, { @@ -21901,32 +22075,32 @@ "kernelrelease": "5.4.0-1056-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb" ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1057-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1057-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" ] }, { @@ -21934,9 +22108,9 @@ "kernelrelease": "5.4.0-1057-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" ] }, @@ -21945,10 +22119,10 @@ "kernelrelease": "5.4.0-1057-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -21956,9 +22130,9 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" ] }, @@ -21968,20 +22142,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" ] }, { @@ -21989,9 +22152,9 @@ "kernelrelease": "5.4.0-1059-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" ] }, @@ -22000,21 +22163,21 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1059-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -22022,10 +22185,21 @@ "kernelrelease": "5.4.0-1059-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1059-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" ] }, { @@ -22034,8 +22208,8 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb" ] }, @@ -22044,9 +22218,9 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" ] }, @@ -22067,9 +22241,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { @@ -22077,10 +22251,10 @@ "kernelrelease": "5.4.0-1065-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -22088,10 +22262,10 @@ "kernelrelease": "5.4.0-1065-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -22099,10 +22273,10 @@ "kernelrelease": "5.4.0-1065-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -22110,32 +22284,32 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1067-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1067-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { @@ -22143,9 +22317,9 @@ "kernelrelease": "5.4.0-1067-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" ] }, @@ -22154,10 +22328,10 @@ "kernelrelease": "5.4.0-1068-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { @@ -22165,10 +22339,10 @@ "kernelrelease": "5.4.0-1068-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" ] }, { @@ -22177,9 +22351,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" ] }, { @@ -22187,12 +22361,12 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" ] }, { @@ -22211,10 +22385,10 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" ] }, { @@ -22223,9 +22397,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb" ] }, { @@ -22233,10 +22407,10 @@ "kernelrelease": "5.4.0-1073-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" ] }, { @@ -22244,10 +22418,10 @@ "kernelrelease": "5.4.0-1074-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" ] }, { @@ -22255,10 +22429,10 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" ] }, { @@ -22268,10 +22442,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb" ] }, { @@ -22279,12 +22453,12 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" ] }, { @@ -22293,11 +22467,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb" ] }, { @@ -22305,12 +22479,12 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb" ] }, { @@ -22318,12 +22492,12 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb" ] }, { @@ -22332,11 +22506,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb" ] }, { @@ -22345,11 +22519,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" ] }, { @@ -22358,11 +22532,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" ] }, { @@ -22370,12 +22544,12 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" ] }, { @@ -22383,12 +22557,12 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb" ] }, { @@ -22397,11 +22571,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb" ] }, { @@ -22409,12 +22583,12 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" ] }, { @@ -22422,12 +22596,12 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb" ] }, { @@ -22435,8 +22609,8 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", @@ -22448,12 +22622,12 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" ] }, { @@ -22461,12 +22635,12 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb" ] }, { @@ -22474,12 +22648,12 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb" ] }, { @@ -22487,11 +22661,11 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" ] }, @@ -22500,12 +22674,12 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" ] }, { @@ -22513,12 +22687,12 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb" ] }, { @@ -22526,12 +22700,12 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb" ] }, { @@ -22539,12 +22713,12 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" ] }, { @@ -22553,11 +22727,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb" ] }, { @@ -22565,12 +22739,12 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" ] }, { @@ -22579,11 +22753,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb" ] }, { @@ -22592,11 +22766,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb" ] }, { @@ -22604,12 +22778,12 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" ] }, { @@ -22617,12 +22791,12 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb" ] }, { @@ -22630,12 +22804,12 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb" ] }, { @@ -22643,11 +22817,11 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb" ] }, @@ -22657,11 +22831,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb" ] }, { @@ -22670,10 +22844,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" ] }, @@ -22682,12 +22856,12 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" ] }, { @@ -22695,12 +22869,12 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb" ] }, { @@ -22708,10 +22882,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" ] }, { @@ -22719,10 +22893,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" ] }, { @@ -22730,8 +22904,8 @@ "kernelrelease": "4.15.0-1024-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" ] @@ -22741,10 +22915,10 @@ "kernelrelease": "4.15.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" ] }, { @@ -22752,10 +22926,10 @@ "kernelrelease": "4.15.0-1025-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb" ] }, { @@ -22764,20 +22938,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-1030-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb" ] }, { @@ -22791,15 +22954,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" ] }, + { + "kernelversion": "32", + "kernelrelease": "4.15.0-1030-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" + ] + }, { "kernelversion": "32", "kernelrelease": "4.15.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb" ] }, { @@ -22807,9 +22981,9 @@ "kernelrelease": "4.15.0-1036-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb" ] }, @@ -22818,12 +22992,12 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" ] }, { @@ -22831,11 +23005,11 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb" ] }, @@ -22844,12 +23018,12 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb" ] }, { @@ -22857,12 +23031,12 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb" ] }, { @@ -22871,9 +23045,9 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -22881,12 +23055,12 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb" ] }, { @@ -22894,9 +23068,9 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" ] }, @@ -22905,10 +23079,10 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" ] }, { @@ -22916,10 +23090,10 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" ] }, { @@ -22927,10 +23101,10 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" ] }, { @@ -22938,10 +23112,10 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" ] }, { @@ -22949,10 +23123,10 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" ] }, { @@ -22960,10 +23134,10 @@ "kernelrelease": "5.0.0-58-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb" ] }, { @@ -22971,10 +23145,10 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" ] }, { @@ -22982,10 +23156,10 @@ "kernelrelease": "5.4.0-1001-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb" ] }, { @@ -22993,10 +23167,10 @@ "kernelrelease": "5.4.0-1018-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" ] }, { @@ -23004,10 +23178,10 @@ "kernelrelease": "5.4.0-1019-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" ] }, { @@ -23015,9 +23189,9 @@ "kernelrelease": "5.4.0-1019-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" ] }, @@ -23026,10 +23200,10 @@ "kernelrelease": "5.4.0-1020-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" ] }, { @@ -23037,12 +23211,12 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] }, { @@ -23051,11 +23225,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb" ] }, { @@ -23063,10 +23237,10 @@ "kernelrelease": "4.15.0-1004-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" ] }, { @@ -23074,10 +23248,10 @@ "kernelrelease": "4.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb" ] }, { @@ -23085,10 +23259,10 @@ "kernelrelease": "4.15.0-1007-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" ] }, { @@ -23096,11 +23270,11 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" ] }, @@ -23109,10 +23283,10 @@ "kernelrelease": "5.15.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb" ] }, { @@ -23120,10 +23294,21 @@ "kernelrelease": "5.15.0-1005-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" ] }, { @@ -23131,32 +23316,32 @@ "kernelrelease": "5.15.0-1005-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-azure", - "target": "ubuntu-azure", + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb" ] }, { "kernelversion": "5", - "kernelrelease": "5.15.0-1005-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.15.0-1005-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" ] }, { @@ -23175,10 +23360,10 @@ "kernelrelease": "5.15.0-27-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" ] }, { @@ -23186,10 +23371,10 @@ "kernelrelease": "5.15.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb" ] }, { @@ -23197,10 +23382,10 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" ] }, { @@ -23208,10 +23393,10 @@ "kernelrelease": "5.15.0-1003-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb" ] }, { @@ -23219,10 +23404,10 @@ "kernelrelease": "5.15.0-1003-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb" ] }, { @@ -23230,32 +23415,32 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-intel-iotg", - "target": "ubuntu-intel-iotg", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1004-intel-iotg", + "target": "ubuntu-intel-iotg", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" ] }, { @@ -23263,10 +23448,10 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" ] }, { @@ -23275,9 +23460,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" ] }, { @@ -23296,10 +23481,10 @@ "kernelrelease": "5.15.0-1004-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, { @@ -23307,10 +23492,10 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" ] }, { @@ -23318,9 +23503,9 @@ "kernelrelease": "5.17.0-1003-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" ] }, @@ -23329,10 +23514,10 @@ "kernelrelease": "5.10.0-1047-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb" ] }, { @@ -23340,21 +23525,10 @@ "kernelrelease": "5.10.0-1058-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb" ] }, { @@ -23362,10 +23536,10 @@ "kernelrelease": "5.11.0-1022-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -23373,19 +23547,30 @@ "kernelrelease": "5.11.0-1022-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" ] }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" + ] + }, { "kernelversion": "31~20.04.1", "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] @@ -23397,8 +23582,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -23417,10 +23602,10 @@ "kernelrelease": "5.11.0-1029-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -23429,9 +23614,9 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" ] }, { @@ -23440,9 +23625,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" ] }, { @@ -23452,8 +23637,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" ] }, { @@ -23462,11 +23647,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" ] }, { @@ -23474,12 +23659,12 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" ] }, { @@ -23487,12 +23672,12 @@ "kernelrelease": "5.11.0-42-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb" ] }, { @@ -23500,11 +23685,11 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb" ] }, @@ -23513,12 +23698,12 @@ "kernelrelease": "5.11.0-60-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" ] }, { @@ -23529,8 +23714,8 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb" ] }, @@ -23539,10 +23724,10 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" ] }, { @@ -23551,9 +23736,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" ] }, { @@ -23562,9 +23747,9 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" ] }, { @@ -23572,9 +23757,9 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" ] }, @@ -23583,32 +23768,32 @@ "kernelrelease": "5.13.0-1016-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1018-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1018-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" ] }, { @@ -23616,32 +23801,32 @@ "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -23649,21 +23834,10 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.13.0-1020-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" ] }, { @@ -23671,21 +23845,21 @@ "kernelrelease": "5.13.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1022-azure", - "target": "ubuntu-azure", + "kernelversion": "24", + "kernelrelease": "5.13.0-1020-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" ] }, { @@ -23693,10 +23867,10 @@ "kernelrelease": "5.13.0-1022-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" ] }, { @@ -23704,10 +23878,21 @@ "kernelrelease": "5.13.0-1022-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb" + ] + }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1022-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" ] }, { @@ -23715,10 +23900,10 @@ "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -23726,10 +23911,10 @@ "kernelrelease": "5.13.0-1023-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb" ] }, { @@ -23737,10 +23922,10 @@ "kernelrelease": "5.13.0-1023-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { @@ -23748,10 +23933,10 @@ "kernelrelease": "5.13.0-1023-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { @@ -23759,8 +23944,8 @@ "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb" ] @@ -23770,10 +23955,10 @@ "kernelrelease": "5.13.0-1025-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" ] }, { @@ -23781,8 +23966,8 @@ "kernelrelease": "5.13.0-1025-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" ] @@ -23792,10 +23977,10 @@ "kernelrelease": "5.13.0-1025-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb" ] }, { @@ -23803,10 +23988,32 @@ "kernelrelease": "5.13.0-1025-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + ] + }, + { + "kernelversion": "28~20.04.1", + "kernelrelease": "5.13.0-1026-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1026_5.13.0-1026.28~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1026_5.13.0-1026.28~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.13.0-1026-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1026-azure_5.13.0-1026.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1026-azure_5.13.0-1026.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb" ] }, { @@ -23814,10 +24021,32 @@ "kernelrelease": "5.13.0-1026-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { @@ -23825,23 +24054,34 @@ "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" ] }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1030-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + ] + }, { "kernelversion": "19~20.04.1", "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" ] }, { @@ -23849,12 +24089,12 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb" ] }, { @@ -23863,11 +24103,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" ] }, { @@ -23875,12 +24115,12 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb" ] }, { @@ -23888,12 +24128,12 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb" ] }, { @@ -23901,12 +24141,12 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb" ] }, { @@ -23914,12 +24154,12 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb" ] }, { @@ -23927,12 +24167,12 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" ] }, { @@ -23940,12 +24180,12 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" ] }, { @@ -23953,12 +24193,12 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" ] }, { @@ -23966,12 +24206,12 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" ] }, { @@ -23979,11 +24219,11 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" ] }, @@ -23992,12 +24232,25 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "51~20.04.1", + "kernelrelease": "5.13.0-46-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_amd64.deb" ] }, { @@ -24005,9 +24258,9 @@ "kernelrelease": "5.14.0-1006-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" ] }, @@ -24017,9 +24270,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb" ] }, { @@ -24027,10 +24280,10 @@ "kernelrelease": "5.14.0-1008-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb" ] }, { @@ -24038,8 +24291,8 @@ "kernelrelease": "5.14.0-1009-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" ] @@ -24049,10 +24302,10 @@ "kernelrelease": "5.14.0-1011-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" ] }, { @@ -24060,10 +24313,10 @@ "kernelrelease": "5.14.0-1012-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb" ] }, { @@ -24071,10 +24324,10 @@ "kernelrelease": "5.14.0-1013-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" ] }, { @@ -24082,10 +24335,10 @@ "kernelrelease": "5.14.0-1021-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb" ] }, { @@ -24093,10 +24346,10 @@ "kernelrelease": "5.14.0-1022-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" ] }, { @@ -24104,10 +24357,10 @@ "kernelrelease": "5.14.0-1023-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" ] }, { @@ -24116,8 +24369,8 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" ] }, @@ -24126,8 +24379,8 @@ "kernelrelease": "5.14.0-1028-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb" ] @@ -24137,10 +24390,10 @@ "kernelrelease": "5.14.0-1029-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" ] }, { @@ -24149,9 +24402,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" ] }, { @@ -24159,10 +24412,10 @@ "kernelrelease": "5.14.0-1032-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" ] }, { @@ -24170,10 +24423,10 @@ "kernelrelease": "5.14.0-1033-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb" ] }, { @@ -24182,9 +24435,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb" ] }, { @@ -24192,10 +24445,10 @@ "kernelrelease": "5.14.0-1036-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb" ] }, { @@ -24203,10 +24456,10 @@ "kernelrelease": "5.14.0-1037-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" ] }, { @@ -24214,10 +24467,21 @@ "kernelrelease": "5.14.0-1038-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb" + ] + }, + { + "kernelversion": "44", + "kernelrelease": "5.14.0-1040-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1040_5.14.0-1040.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1040-oem_5.14.0-1040.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1040_5.14.0-1040.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1040-oem_5.14.0-1040.44_amd64.deb" ] }, { @@ -24231,15 +24495,37 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb" ] }, + { + "kernelversion": "8~20.04.1", + "kernelrelease": "5.15.0-1007-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1008-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb" + ] + }, { "kernelversion": "24~20.04.3", "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" ] }, { @@ -24247,10 +24533,10 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" ] }, { @@ -24258,10 +24544,10 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" ] }, { @@ -24269,10 +24555,10 @@ "kernelrelease": "5.15.0-32-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" ] }, { @@ -24280,10 +24566,21 @@ "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { @@ -24291,23 +24588,12 @@ "kernelrelease": "5.4.0-100", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.4.0-1013-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb" ] }, { @@ -24315,21 +24601,21 @@ "kernelrelease": "5.4.0-1013-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.4.0-1015-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "14", + "kernelrelease": "5.4.0-1013-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { @@ -24337,23 +24623,34 @@ "kernelrelease": "5.4.0-1015-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb" ] }, + { + "kernelversion": "16", + "kernelrelease": "5.4.0-1015-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" + ] + }, { "kernelversion": "115", "kernelrelease": "5.4.0-102", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" ] }, { @@ -24361,32 +24658,32 @@ "kernelrelease": "5.4.0-1021-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws", + "kernelversion": "25", + "kernelrelease": "5.4.0-1023-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-kvm", - "target": "ubuntu-kvm", + "kernelversion": "26", + "kernelrelease": "5.4.0-1024-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1024_5.4.0-1024.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1024_5.4.0-1024.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1024-ibm_5.4.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1024-ibm_5.4.0-1024.26_amd64.deb" ] }, { @@ -24394,32 +24691,43 @@ "kernelrelease": "5.4.0-1032-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-kvm", + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" ] }, { @@ -24427,21 +24735,32 @@ "kernelrelease": "5.4.0-1034-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1034-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -24460,32 +24779,32 @@ "kernelrelease": "5.4.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1039-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1039-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1039-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1039-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" ] }, { @@ -24494,9 +24813,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" ] }, { @@ -24504,10 +24823,21 @@ "kernelrelease": "5.4.0-1040-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.4.0-1041-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, { @@ -24516,20 +24846,20 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.4.0-1041-gkeop", + "kernelversion": "44", + "kernelrelease": "5.4.0-1043-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" ] }, { @@ -24537,12 +24867,12 @@ "kernelrelease": "5.4.0-105", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb" ] }, { @@ -24550,21 +24880,10 @@ "kernelrelease": "5.4.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1054-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb" ] }, { @@ -24572,21 +24891,32 @@ "kernelrelease": "5.4.0-1054-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" ] }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1054-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb" + ] + }, { "kernelversion": "56", "kernelrelease": "5.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb" ] }, { @@ -24594,10 +24924,10 @@ "kernelrelease": "5.4.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" ] }, { @@ -24606,20 +24936,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1056-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" ] }, { @@ -24627,21 +24946,21 @@ "kernelrelease": "5.4.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "5.4.0-1057-oracle", - "target": "ubuntu-oracle", + "kernelversion": "58", + "kernelrelease": "5.4.0-1056-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb" ] }, { @@ -24649,21 +24968,21 @@ "kernelrelease": "5.4.0-1057-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-gcp", - "target": "ubuntu-gcp", + "kernelversion": "61", + "kernelrelease": "5.4.0-1057-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" ] }, { @@ -24673,19 +24992,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1058-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" ] }, { @@ -24694,9 +25024,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" ] }, { @@ -24704,21 +25034,21 @@ "kernelrelease": "5.4.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1059-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb" ] }, { @@ -24726,12 +25056,23 @@ "kernelrelease": "5.4.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" + ] + }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1060-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { @@ -24739,10 +25080,10 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb" ] }, { @@ -24752,19 +25093,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" ] }, { - "kernelversion": "63", - "kernelrelease": "5.4.0-1060-kvm", + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" ] }, { @@ -24772,21 +25113,10 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb" ] }, { @@ -24794,21 +25124,21 @@ "kernelrelease": "5.4.0-1061-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1061-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1061-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -24816,9 +25146,9 @@ "kernelrelease": "5.4.0-1062-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" ] }, @@ -24827,9 +25157,9 @@ "kernelrelease": "5.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" ] }, @@ -24838,21 +25168,10 @@ "kernelrelease": "5.4.0-1062-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1062-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" ] }, { @@ -24860,21 +25179,21 @@ "kernelrelease": "5.4.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1062-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" ] }, { @@ -24888,15 +25207,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + ] + }, { "kernelversion": "66", "kernelrelease": "5.4.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { @@ -24904,10 +25234,10 @@ "kernelrelease": "5.4.0-1063-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" ] }, { @@ -24915,8 +25245,8 @@ "kernelrelease": "5.4.0-1063-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb" ] @@ -24926,8 +25256,8 @@ "kernelrelease": "5.4.0-1063-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb" ] @@ -24937,32 +25267,32 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1064-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1064-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1064-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1064-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb" ] }, { @@ -24971,9 +25301,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -24981,10 +25311,10 @@ "kernelrelease": "5.4.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" ] }, { @@ -24994,8 +25324,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" ] }, { @@ -25003,10 +25333,10 @@ "kernelrelease": "5.4.0-1065-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb" ] }, { @@ -25014,9 +25344,9 @@ "kernelrelease": "5.4.0-1065-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" ] }, @@ -25025,32 +25355,32 @@ "kernelrelease": "5.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1065-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1065-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { @@ -25059,9 +25389,9 @@ "target": "ubuntu-gke", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb" ] }, { @@ -25069,21 +25399,32 @@ "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" ] }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1066-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1066-kvm_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1066-kvm_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + ] + }, { "kernelversion": "72", "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" ] }, { @@ -25092,9 +25433,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" ] }, { @@ -25102,9 +25443,9 @@ "kernelrelease": "5.4.0-1068-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" ] }, @@ -25113,10 +25454,10 @@ "kernelrelease": "5.4.0-1068-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb" ] }, { @@ -25125,20 +25466,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" ] }, { @@ -25146,21 +25476,21 @@ "kernelrelease": "5.4.0-1069-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1069-azure", - "target": "ubuntu-azure", + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb" ] }, { @@ -25168,23 +25498,34 @@ "kernelrelease": "5.4.0-1069-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb" ] }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1069-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb" + ] + }, { "kernelversion": "121", "kernelrelease": "5.4.0-107", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb" ] }, { @@ -25192,9 +25533,9 @@ "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" ] }, @@ -25203,10 +25544,10 @@ "kernelrelease": "5.4.0-1070-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" ] }, { @@ -25225,10 +25566,10 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" ] }, { @@ -25236,10 +25577,10 @@ "kernelrelease": "5.4.0-1071-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" ] }, { @@ -25247,32 +25588,32 @@ "kernelrelease": "5.4.0-1071-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" ] }, { @@ -25280,10 +25621,10 @@ "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" ] }, { @@ -25291,10 +25632,21 @@ "kernelrelease": "5.4.0-1072-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" ] }, { @@ -25303,31 +25655,31 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", + "kernelversion": "78", + "kernelrelease": "5.4.0-1072-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb" ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1072-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1073-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" ] }, { @@ -25335,32 +25687,21 @@ "kernelrelease": "5.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" ] }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" - ] - }, { "kernelversion": "76", "kernelrelease": "5.4.0-1073-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb" ] }, { @@ -25368,10 +25709,21 @@ "kernelrelease": "5.4.0-1073-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" + ] + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1073-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb" ] }, { @@ -25379,10 +25731,10 @@ "kernelrelease": "5.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb" ] }, { @@ -25390,10 +25742,10 @@ "kernelrelease": "5.4.0-1074-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" ] }, { @@ -25401,32 +25753,32 @@ "kernelrelease": "5.4.0-1074-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" ] }, { "kernelversion": "80", - "kernelrelease": "5.4.0-1075-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1075-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb" ] }, { "kernelversion": "80", - "kernelrelease": "5.4.0-1075-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1075-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb" ] }, { @@ -25436,8 +25788,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + ] + }, + { + "kernelversion": "81", + "kernelrelease": "5.4.0-1076-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1076_5.4.0-1076.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1076_5.4.0-1076.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_amd64.deb" ] }, { @@ -25445,10 +25808,10 @@ "kernelrelease": "5.4.0-1076-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb" ] }, { @@ -25456,10 +25819,10 @@ "kernelrelease": "5.4.0-1078-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" ] }, { @@ -25467,10 +25830,10 @@ "kernelrelease": "5.4.0-1078-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" ] }, { @@ -25478,12 +25841,12 @@ "kernelrelease": "5.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" ] }, { @@ -25491,10 +25854,32 @@ "kernelrelease": "5.4.0-1080-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" + ] + }, + { + "kernelversion": "83+cvm1", + "kernelrelease": "5.4.0-1080-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" + ] + }, + { + "kernelversion": "84", + "kernelrelease": "5.4.0-1081-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb" ] }, { @@ -25502,12 +25887,12 @@ "kernelrelease": "5.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb" ] }, { @@ -25515,11 +25900,11 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" ] }, @@ -25528,11 +25913,11 @@ "kernelrelease": "5.4.0-112", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb" ] }, @@ -25541,12 +25926,38 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb" + ] + }, + { + "kernelversion": "128", + "kernelrelease": "5.4.0-114", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb" + ] + }, + { + "kernelversion": "129", + "kernelrelease": "5.4.0-115", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-generic_5.4.0-115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-generic_5.4.0-115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb" ] }, { @@ -25554,12 +25965,12 @@ "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" ] }, { @@ -25567,12 +25978,12 @@ "kernelrelease": "5.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" ] }, { @@ -25580,12 +25991,12 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" ] }, { @@ -25593,10 +26004,10 @@ "kernelrelease": "5.8.0-1033-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { @@ -25604,32 +26015,32 @@ "kernelrelease": "5.8.0-1033-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelrelease": "5.8.0-1036-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb" ] }, { "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelrelease": "5.8.0-1036-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" ] }, { @@ -25637,12 +26048,12 @@ "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb" ] }, { @@ -25650,10 +26061,10 @@ "kernelrelease": "5.10.0-1013-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb" ] }, { @@ -25662,9 +26073,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb" ] }, { @@ -25672,9 +26083,9 @@ "kernelrelease": "5.10.0-1016-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb" ] }, @@ -25683,10 +26094,10 @@ "kernelrelease": "5.10.0-1017-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb" ] }, { @@ -25694,10 +26105,10 @@ "kernelrelease": "5.10.0-1019-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" ] }, { @@ -25705,10 +26116,10 @@ "kernelrelease": "5.10.0-1021-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" ] }, { @@ -25716,10 +26127,10 @@ "kernelrelease": "5.10.0-1022-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" ] }, { @@ -25727,10 +26138,10 @@ "kernelrelease": "5.10.0-1023-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb" ] }, { @@ -25738,10 +26149,10 @@ "kernelrelease": "5.10.0-1025-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" ] }, { @@ -25749,10 +26160,10 @@ "kernelrelease": "5.10.0-1026-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" ] }, { @@ -25760,10 +26171,10 @@ "kernelrelease": "5.10.0-1029-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb" ] }, { @@ -25772,9 +26183,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb" ] }, { @@ -25782,10 +26193,10 @@ "kernelrelease": "5.10.0-1038-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" ] }, { @@ -25793,10 +26204,10 @@ "kernelrelease": "5.10.0-1044-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" ] }, { @@ -25804,10 +26215,10 @@ "kernelrelease": "5.10.0-1045-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" ] }, { @@ -25815,10 +26226,10 @@ "kernelrelease": "5.10.0-1049-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" ] }, { @@ -25826,10 +26237,10 @@ "kernelrelease": "5.10.0-1050-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" ] }, { @@ -25838,8 +26249,8 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" ] }, @@ -25849,9 +26260,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb" ] }, { @@ -25859,10 +26270,10 @@ "kernelrelease": "5.10.0-1055-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb" ] }, { @@ -25871,9 +26282,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb" ] }, { @@ -25881,32 +26292,32 @@ "kernelrelease": "5.11.0-1012-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb" ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1013-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb" ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1013-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, { @@ -25927,8 +26338,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" ] }, { @@ -25936,21 +26347,10 @@ "kernelrelease": "5.11.0-1015-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" ] }, { @@ -25958,32 +26358,32 @@ "kernelrelease": "5.11.0-1016-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1017-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -25992,11 +26392,22 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + ] + }, { "kernelversion": "19~20.04.1", "kernelrelease": "5.11.0-1017-gcp-5.11", @@ -26013,21 +26424,10 @@ "kernelrelease": "5.11.0-1018-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb" ] }, { @@ -26035,8 +26435,8 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" ] @@ -26046,10 +26446,21 @@ "kernelrelease": "5.11.0-1019-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + ] + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -26058,8 +26469,8 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" ] }, @@ -26069,9 +26480,9 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb" ] }, { @@ -26079,10 +26490,10 @@ "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" ] }, { @@ -26091,8 +26502,8 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" ] }, @@ -26101,8 +26512,8 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" ] @@ -26112,10 +26523,10 @@ "kernelrelease": "5.11.0-1021-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, { @@ -26123,10 +26534,10 @@ "kernelrelease": "5.11.0-1021-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, { @@ -26134,10 +26545,10 @@ "kernelrelease": "5.11.0-1021-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" ] }, { @@ -26145,23 +26556,12 @@ "kernelrelease": "5.11.0-1022-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" ] }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" - ] - }, { "kernelversion": "24~20.04.1", "kernelrelease": "5.11.0-1023-oracle-5.11", @@ -26173,15 +26573,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" ] }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" + ] + }, { "kernelversion": "24~20.04.1", "kernelrelease": "5.11.0-1023-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { @@ -26191,8 +26602,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -26200,30 +26611,19 @@ "kernelrelease": "5.11.0-1024-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb" ] }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" - ] - }, { "kernelversion": "27~20.04.1", "kernelrelease": "5.11.0-1025-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] @@ -26233,21 +26633,32 @@ "kernelrelease": "5.11.0-1025-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" ] }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb" + ] + }, { "kernelversion": "29~20.04.1", "kernelrelease": "5.11.0-1026-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" ] }, { @@ -26255,32 +26666,32 @@ "kernelrelease": "5.11.0-1027-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1027-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -26288,10 +26699,10 @@ "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" ] }, { @@ -26299,10 +26710,10 @@ "kernelrelease": "5.11.0-1028-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" ] }, { @@ -26310,12 +26721,12 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb" ] }, { @@ -26323,12 +26734,12 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" ] }, { @@ -26336,12 +26747,12 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" ] }, { @@ -26349,12 +26760,12 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" ] }, { @@ -26363,11 +26774,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" ] }, { @@ -26375,12 +26786,12 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb" ] }, { @@ -26388,12 +26799,12 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb" ] }, { @@ -26402,11 +26813,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" ] }, { @@ -26416,10 +26827,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" ] }, { @@ -26427,10 +26838,10 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" ] }, { @@ -26439,20 +26850,9 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.13.0-1008-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb" ] }, { @@ -26460,21 +26860,32 @@ "kernelrelease": "5.13.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb" ] }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1008-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb" + ] + }, { "kernelversion": "10~20.04.2", "kernelrelease": "5.13.0-1009-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb" ] }, { @@ -26482,32 +26893,21 @@ "kernelrelease": "5.13.0-1009-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb" ] }, - { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" - ] - }, { "kernelversion": "10", "kernelrelease": "5.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { @@ -26515,10 +26915,21 @@ "kernelrelease": "5.13.0-1009-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { @@ -26526,10 +26937,10 @@ "kernelrelease": "5.13.0-1010-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" ] }, { @@ -26538,9 +26949,9 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb" ] }, { @@ -26548,10 +26959,10 @@ "kernelrelease": "5.13.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb" ] }, { @@ -26560,8 +26971,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" ] }, @@ -26570,10 +26981,10 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb" ] }, { @@ -26581,10 +26992,10 @@ "kernelrelease": "5.13.0-1011-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb" ] }, { @@ -26593,9 +27004,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" ] }, { @@ -26604,8 +27015,8 @@ "target": "ubuntu-aws-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb" ] }, @@ -26614,10 +27025,10 @@ "kernelrelease": "5.13.0-1012-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" ] }, { @@ -26627,8 +27038,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" ] }, { @@ -26636,10 +27047,10 @@ "kernelrelease": "5.13.0-1012-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" ] }, { @@ -26647,10 +27058,10 @@ "kernelrelease": "5.13.0-1013-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" ] }, { @@ -26659,8 +27070,8 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" ] }, @@ -26669,10 +27080,10 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" ] }, { @@ -26680,21 +27091,10 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" ] }, { @@ -26702,21 +27102,21 @@ "kernelrelease": "5.13.0-1017-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-1017-oracle", - "target": "ubuntu-oracle", + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { @@ -26724,21 +27124,32 @@ "kernelrelease": "5.13.0-1017-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb" ] }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1017-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + ] + }, { "kernelversion": "23~20.04.1", "kernelrelease": "5.13.0-1019-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb" ] }, { @@ -26746,10 +27157,10 @@ "kernelrelease": "5.13.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" ] }, { @@ -26757,10 +27168,10 @@ "kernelrelease": "5.13.0-1019-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" ] }, { @@ -26768,10 +27179,10 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" ] }, { @@ -26780,9 +27191,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" ] }, { @@ -26790,10 +27201,10 @@ "kernelrelease": "5.13.0-1021-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb" ] }, { @@ -26801,10 +27212,10 @@ "kernelrelease": "5.13.0-1021-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" ] }, { @@ -26813,8 +27224,8 @@ "target": "ubuntu-aws-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" ] }, @@ -26824,9 +27235,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" ] }, { @@ -26835,9 +27246,9 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" ] }, { @@ -26845,21 +27256,10 @@ "kernelrelease": "5.13.0-1026-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" ] }, { @@ -26867,10 +27267,10 @@ "kernelrelease": "5.13.0-1028-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" ] }, { @@ -26878,10 +27278,10 @@ "kernelrelease": "5.13.0-1029-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb" ] }, { @@ -26889,12 +27289,12 @@ "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" ] }, { @@ -26902,10 +27302,10 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb" ] @@ -26916,11 +27316,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb" ] }, { @@ -26928,11 +27328,11 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" ] }, @@ -26941,12 +27341,12 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" ] }, { @@ -26954,10 +27354,10 @@ "kernelrelease": "5.14.0-1004-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb" ] }, { @@ -26966,9 +27366,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" ] }, { @@ -26976,10 +27376,10 @@ "kernelrelease": "5.14.0-1018-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" ] }, { @@ -26987,10 +27387,10 @@ "kernelrelease": "5.14.0-1020-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb" ] }, { @@ -26998,10 +27398,10 @@ "kernelrelease": "5.14.0-1027-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb" ] }, { @@ -27009,10 +27409,10 @@ "kernelrelease": "5.14.0-1031-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" ] }, { @@ -27021,9 +27421,9 @@ "target": "ubuntu-intel-iotg-5.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" ] }, { @@ -27031,10 +27431,10 @@ "kernelrelease": "5.4.0-1005-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" ] }, { @@ -27043,9 +27443,9 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" ] }, { @@ -27053,32 +27453,32 @@ "kernelrelease": "5.4.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1008-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1008-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1008-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1008-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" ] }, { @@ -27086,32 +27486,43 @@ "kernelrelease": "5.4.0-1009-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb" ] }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1010-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" + ] + }, { "kernelversion": "11", "kernelrelease": "5.4.0-1010-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1010-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" ] }, { @@ -27119,43 +27530,32 @@ "kernelrelease": "5.4.0-1011-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb" ] }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" - ] - }, { "kernelversion": "11", "kernelrelease": "5.4.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1011-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" ] }, { @@ -27163,10 +27563,10 @@ "kernelrelease": "5.4.0-1011-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb" ] }, { @@ -27174,32 +27574,32 @@ "kernelrelease": "5.4.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" ] }, { "kernelversion": "13", - "kernelrelease": "5.4.0-1012-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1012-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, { "kernelversion": "13", - "kernelrelease": "5.4.0-1012-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1012-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, { @@ -27207,10 +27607,10 @@ "kernelrelease": "5.4.0-1014-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb" ] }, { @@ -27218,10 +27618,10 @@ "kernelrelease": "5.4.0-1014-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb" ] }, { @@ -27229,10 +27629,10 @@ "kernelrelease": "5.4.0-1015-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { @@ -27242,19 +27642,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" ] }, { @@ -27262,20 +27651,31 @@ "kernelrelease": "5.4.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb" ] }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + ] + }, { "kernelversion": "16", "kernelrelease": "5.4.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" ] }, @@ -27284,10 +27684,10 @@ "kernelrelease": "5.4.0-1016-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" ] }, { @@ -27295,10 +27695,10 @@ "kernelrelease": "5.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" ] }, { @@ -27306,21 +27706,21 @@ "kernelrelease": "5.4.0-1017-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1018-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" ] }, { @@ -27328,10 +27728,10 @@ "kernelrelease": "5.4.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" ] }, { @@ -27339,21 +27739,21 @@ "kernelrelease": "5.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1018-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { @@ -27361,10 +27761,10 @@ "kernelrelease": "5.4.0-1018-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" ] }, { @@ -27373,31 +27773,31 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1019-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1019-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" ] }, { @@ -27405,10 +27805,10 @@ "kernelrelease": "5.4.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" ] }, { @@ -27416,21 +27816,21 @@ "kernelrelease": "5.4.0-1019-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1020-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -27438,21 +27838,21 @@ "kernelrelease": "5.4.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1020-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -27461,31 +27861,31 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1021-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" ] }, { @@ -27493,21 +27893,21 @@ "kernelrelease": "5.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1021-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" ] }, { @@ -27515,21 +27915,32 @@ "kernelrelease": "5.4.0-1021-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb" ] }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + ] + }, { "kernelversion": "22", "kernelrelease": "5.4.0-1022-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb" ] }, { @@ -27537,32 +27948,21 @@ "kernelrelease": "5.4.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" - ] - }, { "kernelversion": "22", "kernelrelease": "5.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { @@ -27570,10 +27970,10 @@ "kernelrelease": "5.4.0-1022-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" ] }, { @@ -27581,10 +27981,10 @@ "kernelrelease": "5.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb" ] }, { @@ -27593,9 +27993,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb" ] }, { @@ -27603,21 +28003,21 @@ "kernelrelease": "5.4.0-1023-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1024-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -27625,21 +28025,10 @@ "kernelrelease": "5.4.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" ] }, { @@ -27647,19 +28036,30 @@ "kernelrelease": "5.4.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" + ] + }, { "kernelversion": "25", "kernelrelease": "5.4.0-1024-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb" ] @@ -27677,24 +28077,24 @@ }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1025-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" ] }, { @@ -27703,9 +28103,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb" ] }, { @@ -27713,10 +28113,10 @@ "kernelrelease": "5.4.0-1025-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb" ] }, { @@ -27724,32 +28124,32 @@ "kernelrelease": "5.4.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.4.0-1026-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1026-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.4.0-1026-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1026-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" ] }, { @@ -27757,21 +28157,10 @@ "kernelrelease": "5.4.0-1027-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb" ] }, { @@ -27779,10 +28168,10 @@ "kernelrelease": "5.4.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" ] }, { @@ -27790,10 +28179,21 @@ "kernelrelease": "5.4.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" ] }, { @@ -27802,9 +28202,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" ] }, { @@ -27812,9 +28212,9 @@ "kernelrelease": "5.4.0-1029-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" ] }, @@ -27823,10 +28223,10 @@ "kernelrelease": "5.4.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" ] }, { @@ -27834,9 +28234,9 @@ "kernelrelease": "5.4.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" ] }, @@ -27846,20 +28246,20 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb" ] }, { "kernelversion": "32", - "kernelrelease": "5.4.0-1031-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1031-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { @@ -27867,32 +28267,21 @@ "kernelrelease": "5.4.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb" ] }, { "kernelversion": "32", - "kernelrelease": "5.4.0-1031-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.4.0-1032-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1031-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { @@ -27900,21 +28289,21 @@ "kernelrelease": "5.4.0-1032-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1033-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1032-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" ] }, { @@ -27922,21 +28311,32 @@ "kernelrelease": "5.4.0-1033-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" ] }, + { + "kernelversion": "34", + "kernelrelease": "5.4.0-1033-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + ] + }, { "kernelversion": "37", "kernelrelease": "5.4.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" ] }, { @@ -27945,31 +28345,31 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1035-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1035-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" ] }, { @@ -27977,32 +28377,32 @@ "kernelrelease": "5.4.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1036-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1036-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1036-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" ] }, { @@ -28010,32 +28410,32 @@ "kernelrelease": "5.4.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1036-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1036-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1036-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1036-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" ] }, { @@ -28044,9 +28444,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" ] }, { @@ -28055,31 +28455,31 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1037-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1037-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1037-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1037-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" ] }, { @@ -28087,10 +28487,10 @@ "kernelrelease": "5.4.0-1037-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb" ] }, { @@ -28100,8 +28500,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, { @@ -28109,10 +28509,10 @@ "kernelrelease": "5.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb" ] }, { @@ -28120,10 +28520,10 @@ "kernelrelease": "5.4.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb" ] }, { @@ -28131,10 +28531,10 @@ "kernelrelease": "5.4.0-1038-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" ] }, { @@ -28142,10 +28542,10 @@ "kernelrelease": "5.4.0-1038-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb" ] }, { @@ -28153,32 +28553,32 @@ "kernelrelease": "5.4.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1039-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1039-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1039-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1039-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { @@ -28186,10 +28586,10 @@ "kernelrelease": "5.4.0-1039-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb" ] }, { @@ -28197,10 +28597,10 @@ "kernelrelease": "5.4.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" ] }, { @@ -28208,12 +28608,12 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" ] }, { @@ -28222,9 +28622,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" ] }, { @@ -28232,10 +28632,10 @@ "kernelrelease": "5.4.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" ] }, { @@ -28244,31 +28644,31 @@ "target": "ubuntu-gke", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "5.4.0-1041-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { "kernelversion": "43", - "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1041-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb" ] }, { @@ -28276,10 +28676,10 @@ "kernelrelease": "5.4.0-1041-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" ] }, { @@ -28287,10 +28687,21 @@ "kernelrelease": "5.4.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" ] }, { @@ -28304,37 +28715,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" ] }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1042-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb" - ] - }, { "kernelversion": "44", "kernelrelease": "5.4.0-1042-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1043-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1043-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" ] }, { @@ -28342,21 +28742,21 @@ "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1043-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1043-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { @@ -28364,10 +28764,10 @@ "kernelrelease": "5.4.0-1043-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" ] }, { @@ -28376,9 +28776,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb" ] }, { @@ -28386,10 +28786,10 @@ "kernelrelease": "5.4.0-1044-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb" ] }, { @@ -28397,10 +28797,10 @@ "kernelrelease": "5.4.0-1044-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" ] }, { @@ -28408,9 +28808,9 @@ "kernelrelease": "5.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, @@ -28419,10 +28819,10 @@ "kernelrelease": "5.4.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb" ] }, { @@ -28430,10 +28830,10 @@ "kernelrelease": "5.4.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, { @@ -28441,8 +28841,8 @@ "kernelrelease": "5.4.0-1045-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] @@ -28454,8 +28854,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" ] }, { @@ -28463,10 +28863,10 @@ "kernelrelease": "5.4.0-1046-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" ] }, { @@ -28474,10 +28874,10 @@ "kernelrelease": "5.4.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { @@ -28485,10 +28885,10 @@ "kernelrelease": "5.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" ] }, { @@ -28496,10 +28896,10 @@ "kernelrelease": "5.4.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" ] }, { @@ -28507,21 +28907,21 @@ "kernelrelease": "5.4.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1047-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" ] }, { @@ -28529,43 +28929,43 @@ "kernelrelease": "5.4.0-1047-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1047-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1047-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { "kernelversion": "50", - "kernelrelease": "5.4.0-1048-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" ] }, { "kernelversion": "50", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1048-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb" ] }, { @@ -28573,10 +28973,10 @@ "kernelrelease": "5.4.0-1048-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb" ] }, { @@ -28584,21 +28984,10 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" ] }, { @@ -28607,33 +28996,33 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, + { + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + ] + }, { "kernelversion": "51", "kernelrelease": "5.4.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb" ] }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1049-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" - ] - }, { "kernelversion": "53", "kernelrelease": "5.4.0-1049-oracle", @@ -28645,26 +29034,37 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1049-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" + ] + }, { "kernelversion": "52", "kernelrelease": "5.4.0-1049-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1051-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1051-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" ] }, { @@ -28672,21 +29072,21 @@ "kernelrelease": "5.4.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1051-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1051-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb" ] }, { @@ -28695,9 +29095,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb" ] }, { @@ -28705,10 +29105,10 @@ "kernelrelease": "5.4.0-1051-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" ] }, { @@ -28716,9 +29116,9 @@ "kernelrelease": "5.4.0-1052-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" ] }, @@ -28727,9 +29127,9 @@ "kernelrelease": "5.4.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" ] }, @@ -28738,32 +29138,32 @@ "kernelrelease": "5.4.0-1052-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1053-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1053-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" ] }, { @@ -28772,8 +29172,8 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb" ] }, @@ -28793,10 +29193,10 @@ "kernelrelease": "5.4.0-1054-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb" ] }, { @@ -28806,19 +29206,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" ] }, { @@ -28826,21 +29215,21 @@ "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.4.0-1055-azure", - "target": "ubuntu-azure", + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" ] }, { @@ -28848,10 +29237,21 @@ "kernelrelease": "5.4.0-1055-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + ] + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1055-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" ] }, { @@ -28860,9 +29260,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" ] }, { @@ -28870,10 +29270,10 @@ "kernelrelease": "5.4.0-1056-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" ] }, { @@ -28882,9 +29282,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" ] }, { @@ -28892,21 +29292,10 @@ "kernelrelease": "5.4.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" ] }, { @@ -28914,21 +29303,32 @@ "kernelrelease": "5.4.0-1057-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" ] }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1057-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" + ] + }, { "kernelversion": "61", "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb" ] }, { @@ -28936,10 +29336,10 @@ "kernelrelease": "5.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { @@ -28947,43 +29347,43 @@ "kernelrelease": "5.4.0-1058-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb" ] }, - { - "kernelversion": "63", - "kernelrelease": "5.4.0-1059-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" - ] - }, { "kernelversion": "63", "kernelrelease": "5.4.0-1059-oracle", "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" ] }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1059-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" + ] + }, { "kernelversion": "64", "kernelrelease": "5.4.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" ] }, { @@ -28991,10 +29391,10 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" ] }, { @@ -29002,10 +29402,10 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" ] }, { @@ -29013,9 +29413,9 @@ "kernelrelease": "5.4.0-1067-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb" ] }, @@ -29024,10 +29424,10 @@ "kernelrelease": "5.4.0-1067-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" ] }, { @@ -29036,8 +29436,8 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb" ] }, @@ -29046,9 +29446,9 @@ "kernelrelease": "5.4.0-1067-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb" ] }, @@ -29057,10 +29457,10 @@ "kernelrelease": "5.4.0-1068-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" ] }, { @@ -29069,9 +29469,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb" ] }, { @@ -29079,10 +29479,10 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" ] }, { @@ -29090,10 +29490,10 @@ "kernelrelease": "5.4.0-1072-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb" ] }, { @@ -29101,10 +29501,10 @@ "kernelrelease": "5.4.0-1072-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb" ] }, { @@ -29112,10 +29512,10 @@ "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" ] }, { @@ -29123,11 +29523,11 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb" ] }, @@ -29137,11 +29537,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" ] }, { @@ -29149,11 +29549,11 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb" ] }, @@ -29162,11 +29562,11 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb" ] }, @@ -29175,12 +29575,12 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" ] }, { @@ -29188,12 +29588,12 @@ "kernelrelease": "5.4.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb" ] }, { @@ -29201,12 +29601,12 @@ "kernelrelease": "5.4.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb" ] }, { @@ -29214,12 +29614,12 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb" ] }, { @@ -29227,12 +29627,12 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" ] }, { @@ -29240,12 +29640,12 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb" ] }, { @@ -29253,12 +29653,12 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb" ] }, { @@ -29267,11 +29667,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" ] }, { @@ -29279,12 +29679,12 @@ "kernelrelease": "5.4.0-52", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb" ] }, { @@ -29292,12 +29692,12 @@ "kernelrelease": "5.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" ] }, { @@ -29305,12 +29705,12 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" ] }, { @@ -29318,12 +29718,12 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" ] }, { @@ -29332,11 +29732,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" ] }, { @@ -29344,10 +29744,10 @@ "kernelrelease": "5.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb" ] @@ -29357,12 +29757,12 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" ] }, { @@ -29370,12 +29770,12 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb" ] }, { @@ -29383,12 +29783,12 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" ] }, { @@ -29396,11 +29796,11 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" ] }, @@ -29409,12 +29809,12 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" ] }, { @@ -29422,12 +29822,12 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" ] }, { @@ -29435,12 +29835,12 @@ "kernelrelease": "5.4.0-73", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb" ] }, { @@ -29448,12 +29848,12 @@ "kernelrelease": "5.4.0-74", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb" ] }, { @@ -29461,12 +29861,12 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb" ] }, { @@ -29474,12 +29874,12 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb" ] }, { @@ -29487,12 +29887,12 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" ] }, { @@ -29500,12 +29900,12 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" ] }, { @@ -29513,12 +29913,12 @@ "kernelrelease": "5.4.0-86", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" ] }, { @@ -29526,12 +29926,12 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" ] }, { @@ -29539,12 +29939,12 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" ] }, { @@ -29552,12 +29952,12 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" ] }, { @@ -29565,12 +29965,12 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" ] }, { @@ -29578,12 +29978,12 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" ] }, { @@ -29591,12 +29991,12 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb" ] }, { @@ -29604,12 +30004,12 @@ "kernelrelease": "5.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb" ] }, { @@ -29617,10 +30017,10 @@ "kernelrelease": "5.6.0-1008-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" ] }, { @@ -29628,10 +30028,10 @@ "kernelrelease": "5.6.0-1010-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb" ] }, { @@ -29639,10 +30039,10 @@ "kernelrelease": "5.6.0-1011-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" ] }, { @@ -29650,10 +30050,10 @@ "kernelrelease": "5.6.0-1013-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" ] }, { @@ -29662,9 +30062,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb" ] }, { @@ -29673,9 +30073,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" ] }, { @@ -29683,9 +30083,9 @@ "kernelrelease": "5.6.0-1020-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb" ] }, @@ -29694,10 +30094,10 @@ "kernelrelease": "5.6.0-1023-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" ] }, { @@ -29706,9 +30106,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb" ] }, { @@ -29716,10 +30116,10 @@ "kernelrelease": "5.6.0-1028-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" ] }, { @@ -29727,9 +30127,9 @@ "kernelrelease": "5.6.0-1031-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb" ] }, @@ -29738,10 +30138,10 @@ "kernelrelease": "5.6.0-1032-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" ] }, { @@ -29749,10 +30149,10 @@ "kernelrelease": "5.6.0-1033-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb" ] }, { @@ -29760,10 +30160,10 @@ "kernelrelease": "5.6.0-1039-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" ] }, { @@ -29771,10 +30171,10 @@ "kernelrelease": "5.6.0-1042-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb" ] }, { @@ -29782,10 +30182,10 @@ "kernelrelease": "5.6.0-1047-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" ] }, { @@ -29793,10 +30193,10 @@ "kernelrelease": "5.6.0-1048-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" ] }, { @@ -29805,9 +30205,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb" ] }, { @@ -29815,10 +30215,10 @@ "kernelrelease": "5.6.0-1052-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb" ] }, { @@ -29826,10 +30226,10 @@ "kernelrelease": "5.6.0-1053-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" ] }, { @@ -29848,8 +30248,8 @@ "kernelrelease": "5.6.0-1055-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb" ] @@ -29860,9 +30260,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb" ] }, { @@ -29870,10 +30270,10 @@ "kernelrelease": "5.8.0-1031-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, { @@ -29881,9 +30281,9 @@ "kernelrelease": "5.8.0-1032-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" ] }, @@ -29892,10 +30292,10 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" ] }, { @@ -29903,10 +30303,10 @@ "kernelrelease": "5.8.0-1035-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { @@ -29914,10 +30314,10 @@ "kernelrelease": "5.8.0-1035-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { @@ -29925,9 +30325,9 @@ "kernelrelease": "5.8.0-1037-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, @@ -29937,9 +30337,9 @@ "target": "ubuntu-gcp-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { @@ -29947,10 +30347,10 @@ "kernelrelease": "5.8.0-1038-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { @@ -29958,10 +30358,10 @@ "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" ] }, { @@ -29969,10 +30369,10 @@ "kernelrelease": "5.8.0-1039-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb" ] }, { @@ -29980,9 +30380,9 @@ "kernelrelease": "5.8.0-1039-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" ] }, @@ -30004,8 +30404,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" ] }, { @@ -30013,10 +30413,10 @@ "kernelrelease": "5.8.0-1041-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb" ] }, { @@ -30024,10 +30424,10 @@ "kernelrelease": "5.8.0-1042-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" ] }, { @@ -30035,10 +30435,10 @@ "kernelrelease": "5.8.0-1043-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" ] }, { @@ -30046,12 +30446,12 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" ] }, { @@ -30060,11 +30460,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" ] }, { @@ -30072,12 +30472,12 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb" ] }, { @@ -30085,12 +30485,12 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" ] }, { @@ -30098,12 +30498,12 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" ] }, { @@ -30111,12 +30511,12 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb" ] }, { @@ -30125,10 +30525,10 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" ] }, @@ -30137,11 +30537,11 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb" ] }, @@ -30150,12 +30550,12 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" ] }, { @@ -30163,12 +30563,12 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb" ] }, { @@ -30176,12 +30576,12 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb" ] }, { @@ -30189,12 +30589,12 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb" ] }, { @@ -30203,11 +30603,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" ] }, { @@ -30215,12 +30615,12 @@ "kernelrelease": "5.8.0-59-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" ] }, { @@ -30228,12 +30628,12 @@ "kernelrelease": "5.8.0-63-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" ] }, { @@ -30241,10 +30641,10 @@ "kernelrelease": "5.10.0-1011-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" ] }, { @@ -30252,10 +30652,10 @@ "kernelrelease": "5.10.0-1032-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" ] }, { @@ -30264,9 +30664,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" ] }, { @@ -30274,10 +30674,10 @@ "kernelrelease": "5.10.0-1052-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" ] }, { @@ -30285,8 +30685,8 @@ "kernelrelease": "5.11.0-1007-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb" ] @@ -30297,9 +30697,9 @@ "target": "ubuntu-oracle-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" ] }, { @@ -30307,9 +30707,9 @@ "kernelrelease": "5.11.0-1009-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb" ] }, @@ -30318,32 +30718,32 @@ "kernelrelease": "5.11.0-1009-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1007-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelrelease": "5.13.0-1007-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1007-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.13.0-1007-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb" ] }, { @@ -30351,32 +30751,32 @@ "kernelrelease": "5.13.0-1013-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1021-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1021-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" ] }, { @@ -30386,8 +30786,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" ] }, { @@ -30395,10 +30795,10 @@ "kernelrelease": "5.14.0-1034-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" ] }, { @@ -30406,10 +30806,10 @@ "kernelrelease": "5.4.0-1064-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" ] }, { @@ -30417,10 +30817,10 @@ "kernelrelease": "5.4.0-1065-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" ] }, { @@ -30429,9 +30829,9 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" ] }, { @@ -30440,9 +30840,9 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb" ] }, { @@ -30461,12 +30861,12 @@ "kernelrelease": "5.4.0-54", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb" ] }, { @@ -30477,9 +30877,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" ] }, { @@ -30487,10 +30887,10 @@ "kernelrelease": "5.6.0-1021-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" ] }, { @@ -30498,10 +30898,10 @@ "kernelrelease": "5.6.0-1027-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" ] }, { @@ -30509,10 +30909,10 @@ "kernelrelease": "5.6.0-1034-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" ] }, { @@ -30521,9 +30921,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" ] }, { @@ -30531,10 +30931,10 @@ "kernelrelease": "5.6.0-1036-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" ] }, { @@ -30542,9 +30942,9 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" ] }, @@ -30554,9 +30954,9 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb" ] }, { @@ -30565,11 +30965,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb" ] }, { @@ -30577,12 +30977,12 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" ] }, { @@ -30590,12 +30990,12 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" ] }, { @@ -30603,12 +31003,12 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" ] }, { @@ -30616,12 +31016,12 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" ] }, { @@ -30629,21 +31029,21 @@ "kernelrelease": "5.4.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1009-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1009-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb" ] }, { @@ -30652,20 +31052,20 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1009-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1009-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb" ] }, { @@ -30673,10 +31073,10 @@ "kernelrelease": "5.4.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" ] }, { @@ -30684,12 +31084,12 @@ "kernelrelease": "5.4.0-26", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" ] }, { @@ -30697,10 +31097,10 @@ "kernelrelease": "5.6.0-1007-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" ] }, { @@ -30708,10 +31108,10 @@ "kernelrelease": "5.11.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" ] }, { @@ -30720,31 +31120,31 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { @@ -30752,32 +31152,32 @@ "kernelrelease": "5.11.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb" ] }, { @@ -30785,10 +31185,10 @@ "kernelrelease": "5.11.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -30796,10 +31196,10 @@ "kernelrelease": "5.11.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" ] }, { @@ -30807,12 +31207,12 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb" ] }, { @@ -30821,8 +31221,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" ] }, @@ -30831,21 +31231,21 @@ "kernelrelease": "5.11.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.11.0-1006-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.11.0-1006-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" ] }, { @@ -30854,20 +31254,20 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.11.0-1006-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1006-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" ] }, { @@ -30875,12 +31275,12 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" ] }, { @@ -30888,12 +31288,23 @@ "kernelrelease": "5.13.0-1005-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1006-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + ] + }, { "kernelversion": "7", "kernelrelease": "5.13.0-1006-azure", @@ -30901,8 +31312,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { @@ -30910,21 +31321,10 @@ "kernelrelease": "5.13.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.13.0-1006-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" ] }, { @@ -30932,10 +31332,10 @@ "kernelrelease": "5.13.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" ] }, { @@ -30943,10 +31343,21 @@ "kernelrelease": "5.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1007-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, { @@ -30954,21 +31365,21 @@ "kernelrelease": "5.13.0-1007-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.13.0-1007-aws", + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" ] }, { @@ -30976,10 +31387,10 @@ "kernelrelease": "5.13.0-1008-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" ] }, { @@ -30987,21 +31398,21 @@ "kernelrelease": "5.13.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", + "kernelversion": "12", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" ] }, { @@ -31010,31 +31421,20 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" ] }, - { - "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" - ] - }, { "kernelversion": "12", "kernelrelease": "5.13.0-1011-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" ] }, { @@ -31064,43 +31464,32 @@ "kernelrelease": "5.13.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb" ] }, - { - "kernelversion": "14", - "kernelrelease": "5.13.0-1013-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb" - ] - }, { "kernelversion": "14", "kernelrelease": "5.13.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1013-gcp", - "target": "ubuntu-gcp", + "kernelversion": "14", + "kernelrelease": "5.13.0-1013-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, { @@ -31108,21 +31497,32 @@ "kernelrelease": "5.13.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" ] }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1013-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb" + ] + }, { "kernelversion": "15", "kernelrelease": "5.13.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" ] }, { @@ -31131,9 +31531,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb" ] }, { @@ -31141,10 +31541,10 @@ "kernelrelease": "5.13.0-1014-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb" ] }, { @@ -31163,10 +31563,10 @@ "kernelrelease": "5.13.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb" ] }, { @@ -31174,10 +31574,10 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb" ] }, { @@ -31185,10 +31585,10 @@ "kernelrelease": "5.13.0-1018-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" ] }, { @@ -31196,10 +31596,10 @@ "kernelrelease": "5.13.0-1019-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { @@ -31207,10 +31607,10 @@ "kernelrelease": "5.13.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb" ] }, { @@ -31218,21 +31618,10 @@ "kernelrelease": "5.13.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" ] }, { @@ -31241,20 +31630,31 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + ] + }, { "kernelversion": "22", "kernelrelease": "5.13.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb" ] }, { @@ -31262,10 +31662,10 @@ "kernelrelease": "5.13.0-1022-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb" ] }, { @@ -31273,10 +31673,10 @@ "kernelrelease": "5.13.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" ] }, { @@ -31284,9 +31684,9 @@ "kernelrelease": "5.13.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb" ] }, @@ -31295,9 +31695,9 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" ] }, @@ -31306,10 +31706,21 @@ "kernelrelease": "5.13.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1023-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb" ] }, { @@ -31323,26 +31734,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" ] }, - { - "kernelversion": "28", - "kernelrelease": "5.13.0-1023-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb" - ] - }, { "kernelversion": "26", "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb" ] }, { @@ -31350,10 +31750,10 @@ "kernelrelease": "5.13.0-1024-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" ] }, { @@ -31361,32 +31761,32 @@ "kernelrelease": "5.13.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.13.0-1024-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1024-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.13.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1024-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb" ] }, { @@ -31394,9 +31794,9 @@ "kernelrelease": "5.13.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" ] }, @@ -31405,10 +31805,21 @@ "kernelrelease": "5.13.0-1025-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1025-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" ] }, { @@ -31416,21 +31827,43 @@ "kernelrelease": "5.13.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1026-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.13.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1026-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-1026-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb" ] }, { @@ -31438,21 +31871,32 @@ "kernelrelease": "5.13.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.13.0-1026-gcp", + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" ] }, { @@ -31461,9 +31905,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" ] }, { @@ -31472,9 +31916,20 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.13.0-1030-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb" ] }, { @@ -31482,12 +31937,12 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb" ] }, { @@ -31495,12 +31950,12 @@ "kernelrelease": "5.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb" ] }, { @@ -31508,12 +31963,12 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" ] }, { @@ -31521,12 +31976,12 @@ "kernelrelease": "5.13.0-32", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb" ] }, { @@ -31534,10 +31989,10 @@ "kernelrelease": "5.13.0-36", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb" ] @@ -31547,12 +32002,12 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb" ] }, { @@ -31560,11 +32015,11 @@ "kernelrelease": "5.13.0-38", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb" ] }, @@ -31573,12 +32028,12 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb" ] }, { @@ -31586,12 +32041,12 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb" ] }, { @@ -31599,12 +32054,12 @@ "kernelrelease": "5.13.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb" ] }, { @@ -31612,11 +32067,11 @@ "kernelrelease": "5.13.0-43", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb" ] }, @@ -31626,11 +32081,37 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.13.0-45", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb" + ] + }, + { + "kernelversion": "51", + "kernelrelease": "5.13.0-46", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb" ] }, { @@ -31638,10 +32119,10 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" ] }, { @@ -31649,8 +32130,8 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" ] @@ -31660,10 +32141,10 @@ "kernelrelease": "5.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" ] }, { @@ -31682,8 +32163,8 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" ] @@ -31694,31 +32175,31 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, { @@ -31727,9 +32208,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" ] }, { @@ -31748,10 +32229,10 @@ "kernelrelease": "5.13.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" ] }, { @@ -31760,9 +32241,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" ] }, { @@ -31771,20 +32252,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" ] }, { @@ -31792,12 +32262,12 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb" ] }, { @@ -31805,12 +32275,12 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" ] }, { @@ -31818,12 +32288,12 @@ "kernelrelease": "5.13.0-23", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" ] }, { @@ -31831,12 +32301,12 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" ] }, { @@ -31844,11 +32314,11 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb" ] }, @@ -31858,11 +32328,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb" ] }, { @@ -31871,11 +32341,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb" ] }, { @@ -31883,10 +32353,10 @@ "kernelrelease": "5.13.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb" ] }, { @@ -31894,12 +32364,12 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" ] }, { @@ -31908,9 +32378,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb" ] }, { @@ -31918,10 +32388,10 @@ "kernelrelease": "5.13.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" ] }, { @@ -31930,9 +32400,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" ] }, { @@ -31940,9 +32410,9 @@ "kernelrelease": "5.13.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" ] }, @@ -31951,12 +32421,12 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" ] }, { @@ -31965,9 +32435,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" ] }, { @@ -31976,9 +32446,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb" ] }, { @@ -31986,10 +32456,10 @@ "kernelrelease": "5.15.0-1006-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb" ] }, { @@ -31998,20 +32468,42 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1006-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb" + ] + }, { "kernelversion": "7", "kernelrelease": "5.15.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1006-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb" ] }, { @@ -32020,8 +32512,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb" ] }, @@ -32030,10 +32522,10 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { @@ -32042,31 +32534,75 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.15.0-29", - "target": "ubuntu-generic", + "kernelversion": "9", + "kernelrelease": "5.15.0-1007-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.15.0-30", + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1008-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1008-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.15.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb" ] }, { @@ -32075,18 +32611,29 @@ "target": "ubuntu-lowlatency", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, + { + "kernelversion": "31", + "kernelrelease": "5.15.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" + ] + }, { "kernelversion": "33", "kernelrelease": "5.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb" ] @@ -32096,10 +32643,21 @@ "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb" ] }, { @@ -32107,21 +32665,32 @@ "kernelrelease": "5.15.0-33-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.15.0-33", + "kernelversion": "36", + "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" ] }, { @@ -32129,9 +32698,9 @@ "kernelrelease": "5.17.0-1004-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" ] }, @@ -32142,8 +32711,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" ] }, { @@ -32151,32 +32720,32 @@ "kernelrelease": "5.17.0-1006-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb" ] }, { "kernelversion": "2", - "kernelrelease": "5.15.0-1002-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1002-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" ] }, { "kernelversion": "2", - "kernelrelease": "5.15.0-1002-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.15.0-1002-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb" ] }, { @@ -32196,9 +32765,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" ] }, { @@ -32206,10 +32775,10 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" ] }, { @@ -32217,10 +32786,10 @@ "kernelrelease": "4.15.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" ] }, { @@ -32228,12 +32797,12 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb" ] }, { @@ -32241,12 +32810,12 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" ] }, { @@ -32254,12 +32823,12 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb" ] }, { @@ -32267,12 +32836,12 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb" ] }, { @@ -32280,12 +32849,12 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" ] }, { @@ -32293,11 +32862,11 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" ] }, @@ -32307,11 +32876,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb" ] }, { @@ -32319,12 +32888,12 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb" ] }, { @@ -32332,11 +32901,11 @@ "kernelrelease": "3.13.0-110", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" ] }, @@ -32346,11 +32915,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb" ] }, { @@ -32358,12 +32927,12 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb" ] }, { @@ -32371,12 +32940,12 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" ] }, { @@ -32384,12 +32953,12 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" ] }, { @@ -32397,12 +32966,12 @@ "kernelrelease": "3.13.0-119", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" ] }, { @@ -32410,11 +32979,11 @@ "kernelrelease": "3.13.0-121", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb" ] }, @@ -32423,11 +32992,11 @@ "kernelrelease": "3.13.0-123", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" ] }, @@ -32436,12 +33005,12 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb" ] }, { @@ -32450,10 +33019,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" ] }, @@ -32475,12 +33044,12 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb" ] }, { @@ -32489,11 +33058,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" ] }, { @@ -32501,12 +33070,12 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" ] }, { @@ -32514,12 +33083,12 @@ "kernelrelease": "3.13.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb" ] }, { @@ -32527,12 +33096,12 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" ] }, { @@ -32540,11 +33109,11 @@ "kernelrelease": "3.13.0-139", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" ] }, @@ -32553,12 +33122,12 @@ "kernelrelease": "3.13.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" ] }, { @@ -32566,11 +33135,11 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb" ] }, @@ -32579,12 +33148,12 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb" ] }, { @@ -32592,12 +33161,12 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" ] }, { @@ -32605,12 +33174,12 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" ] }, { @@ -32618,12 +33187,12 @@ "kernelrelease": "3.13.0-149", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" ] }, { @@ -32631,12 +33200,12 @@ "kernelrelease": "3.13.0-151", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" ] }, { @@ -32644,12 +33213,12 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb" ] }, { @@ -32657,12 +33226,12 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb" ] }, { @@ -32670,12 +33239,12 @@ "kernelrelease": "3.13.0-156", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb" ] }, { @@ -32683,12 +33252,12 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb" ] }, { @@ -32696,12 +33265,12 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb" ] }, { @@ -32709,12 +33278,12 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" ] }, { @@ -32722,12 +33291,12 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb" ] }, { @@ -32735,12 +33304,12 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" ] }, { @@ -32749,11 +33318,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" ] }, { @@ -32762,10 +33331,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" ] }, @@ -32774,12 +33343,12 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb" ] }, { @@ -32787,12 +33356,12 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" ] }, { @@ -32800,12 +33369,12 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb" ] }, { @@ -32813,12 +33382,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb" ] }, { @@ -32826,12 +33395,12 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb" ] }, { @@ -32839,12 +33408,12 @@ "kernelrelease": "3.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb" ] }, { @@ -32852,12 +33421,12 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb" ] }, { @@ -32865,12 +33434,12 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" ] }, { @@ -32878,12 +33447,12 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" ] }, { @@ -32891,12 +33460,12 @@ "kernelrelease": "3.13.0-34", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" ] }, { @@ -32904,12 +33473,12 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb" ] }, { @@ -32917,12 +33486,12 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb" ] }, { @@ -32930,12 +33499,12 @@ "kernelrelease": "3.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb" ] }, { @@ -32943,12 +33512,12 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb" ] }, { @@ -32956,12 +33525,12 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb" ] }, { @@ -32969,12 +33538,12 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb" ] }, { @@ -32982,12 +33551,12 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" ] }, { @@ -32995,12 +33564,12 @@ "kernelrelease": "3.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" ] }, { @@ -33008,12 +33577,12 @@ "kernelrelease": "3.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb" ] }, { @@ -33021,12 +33590,12 @@ "kernelrelease": "3.13.0-48", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb" ] }, { @@ -33034,11 +33603,11 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, @@ -33047,12 +33616,12 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" ] }, { @@ -33060,11 +33629,11 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" ] }, @@ -33073,12 +33642,12 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb" ] }, { @@ -33086,12 +33655,12 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb" ] }, { @@ -33099,12 +33668,12 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb" ] }, { @@ -33112,11 +33681,11 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" ] }, @@ -33125,12 +33694,12 @@ "kernelrelease": "3.13.0-58", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb" ] }, { @@ -33138,12 +33707,12 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb" ] }, { @@ -33151,12 +33720,12 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" ] }, { @@ -33164,12 +33733,12 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb" ] }, { @@ -33177,11 +33746,11 @@ "kernelrelease": "3.13.0-63", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb" ] }, @@ -33190,12 +33759,12 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb" ] }, { @@ -33205,10 +33774,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb" ] }, { @@ -33216,11 +33785,11 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb" ] }, @@ -33229,11 +33798,11 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb" ] }, @@ -33243,11 +33812,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" ] }, { @@ -33255,11 +33824,11 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" ] }, @@ -33268,12 +33837,12 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb" ] }, { @@ -33281,11 +33850,11 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb" ] }, @@ -33294,12 +33863,12 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" ] }, { @@ -33308,11 +33877,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" ] }, { @@ -33320,12 +33889,12 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" ] }, { @@ -33333,11 +33902,11 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb" ] }, @@ -33346,9 +33915,9 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb" @@ -33359,12 +33928,12 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" ] }, { @@ -33372,12 +33941,12 @@ "kernelrelease": "3.13.0-87", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" ] }, { @@ -33385,12 +33954,12 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" ] }, { @@ -33399,11 +33968,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb" ] }, { @@ -33412,11 +33981,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb" ] }, { @@ -33424,9 +33993,9 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb" @@ -33438,11 +34007,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb" ] }, { @@ -33450,12 +34019,12 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" ] }, { @@ -33463,12 +34032,12 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb" ] }, { @@ -33476,10 +34045,10 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb" ] @@ -33489,12 +34058,12 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb" ] }, { @@ -33502,12 +34071,12 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb" ] }, { @@ -33515,12 +34084,12 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" ] }, { @@ -33528,11 +34097,11 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb" ] }, @@ -33541,12 +34110,12 @@ "kernelrelease": "3.16.0-33-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" ] }, { @@ -33555,11 +34124,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb" ] }, { @@ -33567,12 +34136,12 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" ] }, { @@ -33580,11 +34149,11 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" ] }, @@ -33593,12 +34162,12 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb" ] }, { @@ -33606,12 +34175,12 @@ "kernelrelease": "3.16.0-39-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" ] }, { @@ -33619,11 +34188,11 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" ] }, @@ -33632,12 +34201,12 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb" ] }, { @@ -33645,12 +34214,12 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" ] }, { @@ -33658,12 +34227,12 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" ] }, { @@ -33671,12 +34240,12 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb" ] }, { @@ -33684,12 +34253,12 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" ] }, { @@ -33697,12 +34266,12 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" ] }, { @@ -33710,11 +34279,11 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" ] }, @@ -33723,12 +34292,12 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb" ] }, { @@ -33736,12 +34305,12 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" ] }, { @@ -33749,12 +34318,12 @@ "kernelrelease": "3.16.0-53-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb" ] }, { @@ -33762,12 +34331,12 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" ] }, { @@ -33775,10 +34344,10 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" ] @@ -33788,12 +34357,12 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" ] }, { @@ -33801,12 +34370,12 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb" ] }, { @@ -33814,12 +34383,12 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb" ] }, { @@ -33827,10 +34396,10 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" ] @@ -33841,11 +34410,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" ] }, { @@ -33853,12 +34422,12 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb" ] }, { @@ -33866,12 +34435,12 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" ] }, { @@ -33879,12 +34448,12 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb" ] }, { @@ -33892,12 +34461,12 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb" ] }, { @@ -33905,12 +34474,12 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb" ] }, { @@ -33918,12 +34487,12 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb" ] }, { @@ -33931,12 +34500,12 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" ] }, { @@ -33944,12 +34513,12 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb" ] }, { @@ -33958,11 +34527,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" ] }, { @@ -33970,12 +34539,12 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb" ] }, { @@ -33983,12 +34552,12 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb" ] }, { @@ -33996,12 +34565,12 @@ "kernelrelease": "3.19.0-26-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" ] }, { @@ -34011,9 +34580,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb" ] }, @@ -34023,11 +34592,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" ] }, { @@ -34036,10 +34605,10 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb" ] }, @@ -34048,12 +34617,12 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" ] }, { @@ -34062,11 +34631,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb" ] }, { @@ -34074,12 +34643,12 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" ] }, { @@ -34089,9 +34658,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb" ] }, @@ -34100,12 +34669,12 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" ] }, { @@ -34113,12 +34682,12 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" ] }, { @@ -34126,12 +34695,12 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb" ] }, { @@ -34139,11 +34708,11 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" ] }, @@ -34152,11 +34721,11 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb" ] }, @@ -34165,12 +34734,12 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" ] }, { @@ -34178,12 +34747,12 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb" ] }, { @@ -34191,12 +34760,12 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb" ] }, { @@ -34204,12 +34773,12 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" ] }, { @@ -34217,11 +34786,11 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb" ] }, @@ -34230,12 +34799,12 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb" ] }, { @@ -34244,11 +34813,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb" ] }, { @@ -34256,12 +34825,12 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" ] }, { @@ -34269,11 +34838,11 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb" ] }, @@ -34282,12 +34851,12 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" ] }, { @@ -34295,12 +34864,12 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb" ] }, { @@ -34308,12 +34877,12 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb" ] }, { @@ -34321,12 +34890,12 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" ] }, { @@ -34334,12 +34903,12 @@ "kernelrelease": "3.19.0-75-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" ] }, { @@ -34347,12 +34916,12 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb" ] }, { @@ -34360,12 +34929,12 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb" ] }, { @@ -34373,12 +34942,12 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb" ] }, { @@ -34386,12 +34955,12 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb" ] }, { @@ -34399,9 +34968,9 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb" ] }, @@ -34410,9 +34979,9 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb" ] }, @@ -34421,9 +34990,9 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" ] }, @@ -34432,8 +35001,8 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" ] @@ -34443,10 +35012,10 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb" ] }, { @@ -34454,10 +35023,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" ] }, { @@ -34465,10 +35034,10 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" ] }, { @@ -34476,8 +35045,8 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" ] @@ -34487,10 +35056,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" ] }, { @@ -34499,9 +35068,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" ] }, { @@ -34509,12 +35078,12 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" ] }, { @@ -34526,8 +35095,8 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" ] }, { @@ -34535,12 +35104,12 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb" ] }, { @@ -34548,12 +35117,12 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb" ] }, { @@ -34561,12 +35130,12 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" ] }, { @@ -34574,12 +35143,12 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb" ] }, { @@ -34587,12 +35156,12 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb" ] }, { @@ -34600,12 +35169,12 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" ] }, { @@ -34613,12 +35182,12 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" ] }, { @@ -34626,12 +35195,12 @@ "kernelrelease": "4.2.0-35-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb" ] }, { @@ -34639,12 +35208,12 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" ] }, { @@ -34653,11 +35222,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" ] }, { @@ -34665,12 +35234,12 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb" ] }, { @@ -34678,12 +35247,12 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb" ] }, { @@ -34691,12 +35260,12 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb" ] }, { @@ -34704,12 +35273,12 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb" ] }, { @@ -34717,11 +35286,11 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb" ] }, @@ -34731,11 +35300,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb" ] }, { @@ -34743,12 +35312,12 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb" ] }, { @@ -34756,12 +35325,12 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb" ] }, { @@ -34769,12 +35338,12 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" ] }, { @@ -34782,12 +35351,12 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" ] }, { @@ -34795,12 +35364,12 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb" ] }, { @@ -34808,12 +35377,12 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" ] }, { @@ -34821,11 +35390,11 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb" ] }, @@ -34835,11 +35404,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" ] }, { @@ -34847,12 +35416,12 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb" ] }, { @@ -34861,11 +35430,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" ] }, { @@ -34874,11 +35443,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb" ] }, { @@ -34886,12 +35455,12 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" ] }, { @@ -34899,12 +35468,12 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" ] }, { @@ -34912,12 +35481,12 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" ] }, { @@ -34925,12 +35494,12 @@ "kernelrelease": "4.4.0-139-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb" ] }, { @@ -34939,10 +35508,10 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb" ] }, @@ -34952,10 +35521,10 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" ] }, @@ -34964,11 +35533,11 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb" ] }, @@ -34977,12 +35546,12 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" ] }, { @@ -34991,11 +35560,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" ] }, { @@ -35003,12 +35572,12 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" ] }, { @@ -35016,12 +35585,12 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb" ] }, { @@ -35029,12 +35598,12 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb" ] }, { @@ -35042,12 +35611,12 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb" ] }, { @@ -35055,12 +35624,12 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb" ] }, { @@ -35068,11 +35637,11 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" ] }, @@ -35082,11 +35651,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" ] }, { @@ -35094,12 +35663,12 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb" ] }, { @@ -35107,12 +35676,12 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" ] }, { @@ -35120,12 +35689,12 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" ] }, { @@ -35133,12 +35702,12 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" ] }, { @@ -35146,12 +35715,12 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb" ] }, { @@ -35159,12 +35728,12 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" ] }, { @@ -35172,12 +35741,12 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb" ] }, { @@ -35185,11 +35754,11 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" ] }, @@ -35198,12 +35767,12 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb" ] }, { @@ -35211,12 +35780,12 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" ] }, { @@ -35225,11 +35794,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb" ] }, { @@ -35237,12 +35806,12 @@ "kernelrelease": "4.4.0-66-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb" ] }, { @@ -35250,12 +35819,12 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" ] }, { @@ -35264,11 +35833,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb" ] }, { @@ -35276,12 +35845,12 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb" ] }, { @@ -35289,12 +35858,12 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb" ] }, { @@ -35302,12 +35871,12 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb" ] }, { @@ -35315,12 +35884,12 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" ] }, { @@ -35328,10 +35897,10 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb" ] @@ -35341,12 +35910,12 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb" ] }, { @@ -35354,11 +35923,11 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" ] }, @@ -35367,12 +35936,12 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb" ] }, { @@ -35380,12 +35949,12 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb" ] }, { @@ -35393,12 +35962,12 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" ] }, { @@ -35406,12 +35975,12 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb" ] }, { @@ -35419,12 +35988,12 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" ] }, { @@ -35432,12 +36001,12 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb" ] }, { @@ -35445,12 +36014,12 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" ] }, { @@ -35458,11 +36027,11 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" ] }, @@ -35471,12 +36040,12 @@ "kernelrelease": "3.13.0-113", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb" ] }, { @@ -35484,12 +36053,12 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb" ] }, { @@ -35497,12 +36066,12 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb" ] }, { @@ -35510,12 +36079,12 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb" ] }, { @@ -35523,12 +36092,12 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb" ] }, { @@ -35536,12 +36105,12 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb" ] }, { @@ -35550,11 +36119,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb" ] }, { @@ -35562,11 +36131,11 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" ] }, @@ -35575,12 +36144,12 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" ] }, { @@ -35588,10 +36157,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb" ] }, { @@ -35599,9 +36168,9 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb" ] }, @@ -35610,11 +36179,11 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb" ] }, @@ -35623,10 +36192,10 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb" ] @@ -35636,12 +36205,12 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb" ] }, { @@ -35649,12 +36218,12 @@ "kernelrelease": "4.4.0-146-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" ] }, { @@ -35662,12 +36231,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" ] }, { @@ -35675,10 +36244,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb" ] }, { @@ -35686,10 +36255,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb" ] }, { @@ -35697,8 +36266,8 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" ] @@ -35708,10 +36277,10 @@ "kernelrelease": "4.15.0-1095-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb" ] }, { @@ -35719,10 +36288,10 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb" ] }, { @@ -35731,8 +36300,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" ] }, @@ -35742,8 +36311,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb" ] }, @@ -35753,11 +36322,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb" ] }, { @@ -35767,8 +36336,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" ] @@ -35778,12 +36347,12 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" ] }, { @@ -35791,12 +36360,12 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" ] }, { @@ -35807,9 +36376,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb" ] }, { @@ -35818,10 +36387,10 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" ] }, @@ -35830,12 +36399,12 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" ] }, { @@ -35843,12 +36412,12 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" ] }, { @@ -35856,12 +36425,12 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" ] }, { @@ -35870,10 +36439,10 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb" ] }, @@ -35883,10 +36452,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb" ] }, @@ -35897,10 +36466,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" ] }, { @@ -35908,12 +36477,12 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb" ] }, { @@ -35921,12 +36490,12 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb" ] }, { @@ -35934,12 +36503,12 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb" ] }, { @@ -35948,11 +36517,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb" ] }, { @@ -35960,12 +36529,12 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb" ] }, { @@ -35974,9 +36543,9 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" ] @@ -35986,12 +36555,12 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" ] }, { @@ -35999,9 +36568,9 @@ "kernelrelease": "4.11.0-1015-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb" ] }, @@ -36011,9 +36580,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb" ] }, { @@ -36021,12 +36590,12 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" ] }, { @@ -36034,12 +36603,12 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb" ] }, { @@ -36047,10 +36616,10 @@ "kernelrelease": "4.13.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" ] }, { @@ -36058,10 +36627,10 @@ "kernelrelease": "4.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" ] }, { @@ -36069,8 +36638,8 @@ "kernelrelease": "4.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" ] @@ -36080,9 +36649,9 @@ "kernelrelease": "4.13.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb" ] }, @@ -36091,10 +36660,10 @@ "kernelrelease": "4.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb" ] }, { @@ -36102,9 +36671,9 @@ "kernelrelease": "4.13.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" ] }, @@ -36113,10 +36682,10 @@ "kernelrelease": "4.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb" ] }, { @@ -36124,12 +36693,12 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb" ] }, { @@ -36137,12 +36706,12 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" ] }, { @@ -36150,12 +36719,12 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb" ] }, { @@ -36163,12 +36732,12 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb" ] }, { @@ -36176,12 +36745,12 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" ] }, { @@ -36189,12 +36758,12 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" ] }, { @@ -36202,12 +36771,12 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb" ] }, { @@ -36215,12 +36784,12 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" ] }, { @@ -36228,11 +36797,11 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" ] }, @@ -36241,12 +36810,12 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb" ] }, { @@ -36254,12 +36823,12 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" ] }, { @@ -36267,12 +36836,12 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" ] }, { @@ -36280,12 +36849,12 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb" ] }, { @@ -36293,12 +36862,12 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb" ] }, { @@ -36306,12 +36875,12 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" ] }, { @@ -36319,10 +36888,10 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb" ] }, { @@ -36341,12 +36910,12 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" ] }, { @@ -36355,9 +36924,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" ] }, { @@ -36365,9 +36934,9 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" ] }, @@ -36376,10 +36945,10 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" ] }, { @@ -36387,10 +36956,10 @@ "kernelrelease": "4.15.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb" ] }, { @@ -36398,9 +36967,9 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" ] }, @@ -36409,10 +36978,10 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" ] }, { @@ -36420,10 +36989,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" ] }, { @@ -36431,10 +37000,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" ] }, { @@ -36443,9 +37012,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" ] }, { @@ -36453,10 +37022,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" ] }, { @@ -36464,9 +37033,9 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" ] }, @@ -36475,9 +37044,9 @@ "kernelrelease": "4.15.0-1019-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" ] }, @@ -36486,10 +37055,10 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" ] }, { @@ -36498,9 +37067,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb" ] }, { @@ -36508,10 +37077,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" ] }, { @@ -36519,10 +37088,10 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb" ] }, { @@ -36530,10 +37099,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb" ] }, { @@ -36541,32 +37110,32 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1023-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-1023-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" ] }, { @@ -36574,10 +37143,10 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb" ] }, { @@ -36585,32 +37154,32 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" ] }, { @@ -36619,9 +37188,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb" ] }, { @@ -36629,10 +37198,10 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb" ] }, { @@ -36641,9 +37210,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb" ] }, { @@ -36653,8 +37222,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" ] }, { @@ -36662,32 +37231,32 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -36695,10 +37264,10 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" ] }, { @@ -36706,8 +37275,8 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" ] @@ -36717,10 +37286,10 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" ] }, { @@ -36728,10 +37297,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb" ] }, { @@ -36739,8 +37308,8 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb" ] @@ -36750,10 +37319,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" ] }, { @@ -36761,10 +37330,10 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" ] }, { @@ -36772,9 +37341,9 @@ "kernelrelease": "4.15.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" ] }, @@ -36783,10 +37352,10 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb" ] }, { @@ -36794,10 +37363,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" ] }, { @@ -36805,10 +37374,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb" ] }, { @@ -36817,20 +37386,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" - ] - }, - { - "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" ] }, { @@ -36838,21 +37396,21 @@ "kernelrelease": "4.15.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { - "kernelversion": "39~16.04.1", - "kernelrelease": "4.15.0-1037-gcp", - "target": "ubuntu-gcp", + "kernelversion": "38~16.04.1", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { @@ -36866,15 +37424,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb" ] }, + { + "kernelversion": "39~16.04.1", + "kernelrelease": "4.15.0-1037-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" + ] + }, { "kernelversion": "41~16.04.1", "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" ] }, { @@ -36882,10 +37451,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" ] }, { @@ -36893,10 +37462,10 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb" ] }, { @@ -36904,10 +37473,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" ] }, { @@ -36915,10 +37484,10 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" ] }, { @@ -36926,10 +37495,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb" ] }, { @@ -36937,10 +37506,10 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" ] }, { @@ -36948,10 +37517,10 @@ "kernelrelease": "4.15.0-1046-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" ] }, { @@ -36960,9 +37529,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" ] }, { @@ -36970,9 +37539,9 @@ "kernelrelease": "4.15.0-1047-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb" ] }, @@ -36981,10 +37550,10 @@ "kernelrelease": "4.15.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" ] }, { @@ -36992,9 +37561,9 @@ "kernelrelease": "4.15.0-1050-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" ] }, @@ -37003,10 +37572,10 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" ] }, { @@ -37016,8 +37585,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" ] }, { @@ -37026,9 +37595,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" ] }, { @@ -37036,10 +37605,10 @@ "kernelrelease": "4.15.0-1052-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb" ] }, { @@ -37048,9 +37617,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" ] }, { @@ -37058,10 +37627,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" ] }, { @@ -37070,9 +37639,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb" ] }, { @@ -37080,9 +37649,9 @@ "kernelrelease": "4.15.0-1055-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb" ] }, @@ -37091,10 +37660,10 @@ "kernelrelease": "4.15.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" ] }, { @@ -37102,10 +37671,10 @@ "kernelrelease": "4.15.0-1056-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" ] }, { @@ -37113,10 +37682,10 @@ "kernelrelease": "4.15.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb" ] }, { @@ -37125,9 +37694,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" ] }, { @@ -37136,9 +37705,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb" ] }, { @@ -37146,9 +37715,9 @@ "kernelrelease": "4.15.0-1059-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" ] }, @@ -37157,11 +37726,11 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb" ] }, @@ -37170,10 +37739,10 @@ "kernelrelease": "4.15.0-1060-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb" ] }, { @@ -37181,10 +37750,10 @@ "kernelrelease": "4.15.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb" ] }, { @@ -37192,10 +37761,10 @@ "kernelrelease": "4.15.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" ] }, { @@ -37205,8 +37774,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" ] }, { @@ -37214,10 +37783,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" ] }, { @@ -37227,8 +37796,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" ] }, { @@ -37237,9 +37806,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" ] }, { @@ -37247,10 +37816,10 @@ "kernelrelease": "4.15.0-1064-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" ] }, { @@ -37259,8 +37828,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" ] }, @@ -37269,10 +37838,10 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb" ] }, { @@ -37280,10 +37849,10 @@ "kernelrelease": "4.15.0-1066-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb" ] }, { @@ -37291,10 +37860,10 @@ "kernelrelease": "4.15.0-1067-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb" ] }, { @@ -37302,10 +37871,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" ] }, { @@ -37315,8 +37884,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb" ] }, { @@ -37324,10 +37893,10 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" ] }, { @@ -37335,11 +37904,11 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb" ] }, @@ -37350,8 +37919,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb" ] }, { @@ -37360,9 +37929,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb" ] }, { @@ -37371,9 +37940,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" ] }, { @@ -37381,10 +37950,10 @@ "kernelrelease": "4.15.0-1075-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" ] }, { @@ -37403,10 +37972,10 @@ "kernelrelease": "4.15.0-1078-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb" ] }, { @@ -37414,10 +37983,10 @@ "kernelrelease": "4.15.0-1080-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" ] }, { @@ -37426,9 +37995,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" ] }, { @@ -37436,10 +38005,10 @@ "kernelrelease": "4.15.0-1082-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" ] }, { @@ -37447,10 +38016,10 @@ "kernelrelease": "4.15.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" ] }, { @@ -37458,10 +38027,10 @@ "kernelrelease": "4.15.0-1083-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" ] }, { @@ -37470,9 +38039,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" ] }, { @@ -37480,10 +38049,10 @@ "kernelrelease": "4.15.0-1086-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" ] }, { @@ -37491,9 +38060,9 @@ "kernelrelease": "4.15.0-1087-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" ] }, @@ -37502,10 +38071,10 @@ "kernelrelease": "4.15.0-1089-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" ] }, { @@ -37513,9 +38082,9 @@ "kernelrelease": "4.15.0-1090-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" ] }, @@ -37525,8 +38094,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" ] }, @@ -37535,10 +38104,10 @@ "kernelrelease": "4.15.0-1091-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" ] }, { @@ -37546,10 +38115,10 @@ "kernelrelease": "4.15.0-1092-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb" ] }, { @@ -37557,10 +38126,10 @@ "kernelrelease": "4.15.0-1092-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb" ] }, { @@ -37568,10 +38137,10 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" ] }, { @@ -37580,9 +38149,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" ] }, { @@ -37601,10 +38170,10 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" ] }, { @@ -37612,10 +38181,10 @@ "kernelrelease": "4.15.0-1094-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb" ] }, { @@ -37623,10 +38192,10 @@ "kernelrelease": "4.15.0-1095-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" ] }, { @@ -37634,9 +38203,9 @@ "kernelrelease": "4.15.0-1096-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" ] }, @@ -37645,10 +38214,10 @@ "kernelrelease": "4.15.0-1096-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb" ] }, { @@ -37656,10 +38225,10 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" ] }, { @@ -37669,8 +38238,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb" ] }, { @@ -37678,10 +38247,10 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" ] }, { @@ -37689,10 +38258,10 @@ "kernelrelease": "4.15.0-1098-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb" ] }, { @@ -37700,10 +38269,10 @@ "kernelrelease": "4.15.0-1098-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb" ] }, { @@ -37711,10 +38280,10 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" ] }, { @@ -37724,8 +38293,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" ] }, { @@ -37733,10 +38302,10 @@ "kernelrelease": "4.15.0-1103-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" ] }, { @@ -37744,10 +38313,10 @@ "kernelrelease": "4.15.0-1106-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" ] }, { @@ -37755,10 +38324,10 @@ "kernelrelease": "4.15.0-1108-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" ] }, { @@ -37766,10 +38335,10 @@ "kernelrelease": "4.15.0-1109-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" ] }, { @@ -37778,8 +38347,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb" ] }, @@ -37788,10 +38357,10 @@ "kernelrelease": "4.15.0-1112-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" ] }, { @@ -37799,10 +38368,10 @@ "kernelrelease": "4.15.0-1113-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb" ] }, { @@ -37810,12 +38379,12 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb" ] }, { @@ -37823,12 +38392,12 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb" ] }, { @@ -37837,11 +38406,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" ] }, { @@ -37849,12 +38418,12 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb" ] }, { @@ -37862,12 +38431,12 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb" ] }, { @@ -37875,12 +38444,12 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb" ] }, { @@ -37888,12 +38457,12 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb" ] }, { @@ -37901,12 +38470,12 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" ] }, { @@ -37915,11 +38484,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb" ] }, { @@ -37927,12 +38496,12 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb" ] }, { @@ -37941,11 +38510,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" ] }, { @@ -37953,11 +38522,11 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb" ] }, @@ -37966,12 +38535,12 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" ] }, { @@ -37979,12 +38548,12 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb" ] }, { @@ -37992,12 +38561,12 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb" ] }, { @@ -38005,12 +38574,12 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" ] }, { @@ -38018,12 +38587,12 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb" ] }, { @@ -38034,9 +38603,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb" ] }, { @@ -38044,12 +38613,12 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" ] }, { @@ -38057,12 +38626,12 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" ] }, { @@ -38070,12 +38639,12 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" ] }, { @@ -38085,10 +38654,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" ] }, { @@ -38096,12 +38665,12 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb" ] }, { @@ -38109,12 +38678,12 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb" ] }, { @@ -38122,12 +38691,12 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb" ] }, { @@ -38135,12 +38704,12 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" ] }, { @@ -38148,12 +38717,12 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" ] }, { @@ -38161,12 +38730,12 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb" ] }, { @@ -38174,11 +38743,11 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" ] }, @@ -38187,11 +38756,11 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" ] }, @@ -38200,12 +38769,12 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" ] }, { @@ -38213,12 +38782,12 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" ] }, { @@ -38226,12 +38795,12 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb" ] }, { @@ -38239,12 +38808,12 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" ] }, { @@ -38252,12 +38821,12 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb" ] }, { @@ -38265,12 +38834,12 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb" ] }, { @@ -38278,12 +38847,12 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb" ] }, { @@ -38291,12 +38860,12 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" ] }, { @@ -38305,11 +38874,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb" ] }, { @@ -38317,10 +38886,10 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb" ] @@ -38331,11 +38900,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb" ] }, { @@ -38343,11 +38912,11 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb" ] }, @@ -38357,11 +38926,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb" ] }, { @@ -38369,12 +38938,12 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb" ] }, { @@ -38382,10 +38951,10 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" ] @@ -38395,12 +38964,12 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" ] }, { @@ -38408,12 +38977,12 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb" ] }, { @@ -38423,10 +38992,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" ] }, { @@ -38434,12 +39003,12 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, { @@ -38448,11 +39017,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" ] }, { @@ -38460,12 +39029,12 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb" ] }, { @@ -38473,12 +39042,12 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb" ] }, { @@ -38486,12 +39055,12 @@ "kernelrelease": "4.15.0-96-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb" ] }, { @@ -38499,12 +39068,12 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb" ] }, { @@ -38512,10 +39081,10 @@ "kernelrelease": "4.4.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" ] }, { @@ -38524,8 +39093,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" ] }, @@ -38534,10 +39103,10 @@ "kernelrelease": "4.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" ] }, { @@ -38546,10 +39115,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb" ] }, @@ -38558,10 +39127,10 @@ "kernelrelease": "4.4.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" ] }, { @@ -38569,9 +39138,9 @@ "kernelrelease": "4.4.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" ] }, @@ -38581,9 +39150,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" ] }, { @@ -38591,10 +39160,10 @@ "kernelrelease": "4.4.0-1013-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb" ] }, { @@ -38604,8 +39173,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb" ] }, { @@ -38613,10 +39182,10 @@ "kernelrelease": "4.4.0-1016-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb" ] }, { @@ -38624,10 +39193,10 @@ "kernelrelease": "4.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" ] }, { @@ -38635,10 +39204,10 @@ "kernelrelease": "4.4.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" ] }, { @@ -38646,9 +39215,9 @@ "kernelrelease": "4.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" ] }, @@ -38658,8 +39227,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb" ] }, @@ -38668,9 +39237,9 @@ "kernelrelease": "4.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" ] }, @@ -38679,10 +39248,10 @@ "kernelrelease": "4.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" ] }, { @@ -38690,10 +39259,10 @@ "kernelrelease": "4.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb" ] }, { @@ -38702,9 +39271,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb" ] }, { @@ -38712,10 +39281,10 @@ "kernelrelease": "4.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" ] }, { @@ -38723,10 +39292,10 @@ "kernelrelease": "4.4.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb" ] }, { @@ -38734,10 +39303,10 @@ "kernelrelease": "4.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb" ] }, { @@ -38745,10 +39314,10 @@ "kernelrelease": "4.4.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb" ] }, { @@ -38756,9 +39325,9 @@ "kernelrelease": "4.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" ] }, @@ -38767,10 +39336,10 @@ "kernelrelease": "4.4.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" ] }, { @@ -38778,12 +39347,12 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" ] }, { @@ -38791,10 +39360,10 @@ "kernelrelease": "4.4.0-1030-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb" ] }, { @@ -38802,10 +39371,10 @@ "kernelrelease": "4.4.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb" ] }, { @@ -38813,10 +39382,10 @@ "kernelrelease": "4.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb" ] }, { @@ -38824,10 +39393,10 @@ "kernelrelease": "4.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" ] }, { @@ -38835,10 +39404,10 @@ "kernelrelease": "4.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb" ] }, { @@ -38846,10 +39415,10 @@ "kernelrelease": "4.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb" ] }, { @@ -38858,9 +39427,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb" ] }, { @@ -38868,10 +39437,10 @@ "kernelrelease": "4.4.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb" ] }, { @@ -38880,9 +39449,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb" ] }, { @@ -38890,10 +39459,10 @@ "kernelrelease": "4.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb" ] }, { @@ -38901,10 +39470,10 @@ "kernelrelease": "4.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" ] }, { @@ -38912,10 +39481,10 @@ "kernelrelease": "4.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb" ] }, { @@ -38923,11 +39492,11 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" ] }, @@ -38936,9 +39505,9 @@ "kernelrelease": "4.4.0-1040-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" ] }, @@ -38947,10 +39516,10 @@ "kernelrelease": "4.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" ] }, { @@ -38958,10 +39527,10 @@ "kernelrelease": "4.4.0-1041-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb" ] }, { @@ -38969,10 +39538,10 @@ "kernelrelease": "4.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" ] }, { @@ -38980,10 +39549,10 @@ "kernelrelease": "4.4.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb" ] }, { @@ -38992,9 +39561,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" ] }, { @@ -39002,10 +39571,10 @@ "kernelrelease": "4.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb" ] }, { @@ -39013,10 +39582,10 @@ "kernelrelease": "4.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb" ] }, { @@ -39024,10 +39593,10 @@ "kernelrelease": "4.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" ] }, { @@ -39046,10 +39615,10 @@ "kernelrelease": "4.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb" ] }, { @@ -39057,10 +39626,10 @@ "kernelrelease": "4.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" ] }, { @@ -39068,10 +39637,10 @@ "kernelrelease": "4.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb" ] }, { @@ -39080,9 +39649,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb" ] }, { @@ -39090,10 +39659,10 @@ "kernelrelease": "4.4.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb" ] }, { @@ -39101,10 +39670,10 @@ "kernelrelease": "4.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb" ] }, { @@ -39114,8 +39683,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb" ] }, { @@ -39124,9 +39693,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" ] }, { @@ -39134,10 +39703,10 @@ "kernelrelease": "4.4.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" ] }, { @@ -39156,10 +39725,10 @@ "kernelrelease": "4.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb" ] }, { @@ -39178,10 +39747,10 @@ "kernelrelease": "4.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb" ] }, { @@ -39189,10 +39758,10 @@ "kernelrelease": "4.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" ] }, { @@ -39200,10 +39769,10 @@ "kernelrelease": "4.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb" ] }, { @@ -39211,10 +39780,10 @@ "kernelrelease": "4.4.0-1062-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" ] }, { @@ -39222,10 +39791,10 @@ "kernelrelease": "4.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb" ] }, { @@ -39233,10 +39802,10 @@ "kernelrelease": "4.4.0-1063-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" ] }, { @@ -39244,10 +39813,10 @@ "kernelrelease": "4.4.0-1064-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb" ] }, { @@ -39255,10 +39824,10 @@ "kernelrelease": "4.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb" ] }, { @@ -39266,9 +39835,9 @@ "kernelrelease": "4.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" ] }, @@ -39277,9 +39846,9 @@ "kernelrelease": "4.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" ] }, @@ -39288,9 +39857,9 @@ "kernelrelease": "4.4.0-1066-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" ] }, @@ -39299,10 +39868,10 @@ "kernelrelease": "4.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb" ] }, { @@ -39310,10 +39879,10 @@ "kernelrelease": "4.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" ] }, { @@ -39332,10 +39901,10 @@ "kernelrelease": "4.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb" ] }, { @@ -39343,10 +39912,10 @@ "kernelrelease": "4.4.0-1070-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" ] }, { @@ -39354,10 +39923,10 @@ "kernelrelease": "4.4.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb" ] }, { @@ -39365,10 +39934,10 @@ "kernelrelease": "4.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb" ] }, { @@ -39376,10 +39945,10 @@ "kernelrelease": "4.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" ] }, { @@ -39388,9 +39957,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" ] }, { @@ -39398,10 +39967,10 @@ "kernelrelease": "4.4.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" ] }, { @@ -39409,10 +39978,10 @@ "kernelrelease": "4.4.0-1076-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb" ] }, { @@ -39420,10 +39989,10 @@ "kernelrelease": "4.4.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" ] }, { @@ -39431,10 +40000,10 @@ "kernelrelease": "4.4.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" ] }, { @@ -39442,9 +40011,9 @@ "kernelrelease": "4.4.0-1078-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" ] }, @@ -39453,10 +40022,10 @@ "kernelrelease": "4.4.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" ] }, { @@ -39465,9 +40034,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb" ] }, { @@ -39475,11 +40044,11 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" ] }, @@ -39488,10 +40057,10 @@ "kernelrelease": "4.4.0-1080-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" ] }, { @@ -39499,10 +40068,10 @@ "kernelrelease": "4.4.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb" ] }, { @@ -39510,10 +40079,10 @@ "kernelrelease": "4.4.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb" ] }, { @@ -39521,10 +40090,10 @@ "kernelrelease": "4.4.0-1084-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb" ] }, { @@ -39533,9 +40102,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb" ] }, { @@ -39544,9 +40113,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb" ] }, { @@ -39555,9 +40124,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb" ] }, { @@ -39566,8 +40135,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb" ] }, @@ -39577,8 +40146,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" ] }, @@ -39587,10 +40156,10 @@ "kernelrelease": "4.4.0-1088-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb" ] }, { @@ -39598,10 +40167,10 @@ "kernelrelease": "4.4.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" ] }, { @@ -39609,10 +40178,10 @@ "kernelrelease": "4.4.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" ] }, { @@ -39621,11 +40190,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb" ] }, { @@ -39633,10 +40202,10 @@ "kernelrelease": "4.4.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" ] }, { @@ -39644,9 +40213,9 @@ "kernelrelease": "4.4.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" ] }, @@ -39666,10 +40235,10 @@ "kernelrelease": "4.4.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" ] }, { @@ -39677,10 +40246,10 @@ "kernelrelease": "4.4.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" ] }, { @@ -39688,10 +40257,10 @@ "kernelrelease": "4.4.0-1093-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb" ] }, { @@ -39700,9 +40269,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb" ] }, { @@ -39711,9 +40280,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" ] }, { @@ -39721,10 +40290,10 @@ "kernelrelease": "4.4.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb" ] }, { @@ -39733,9 +40302,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" ] }, { @@ -39743,9 +40312,9 @@ "kernelrelease": "4.4.0-1099-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" ] }, @@ -39754,10 +40323,10 @@ "kernelrelease": "4.4.0-1100-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" ] }, { @@ -39766,9 +40335,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb" ] }, { @@ -39777,9 +40346,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" ] }, { @@ -39789,8 +40358,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" ] }, { @@ -39798,10 +40367,10 @@ "kernelrelease": "4.4.0-1105-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb" ] }, { @@ -39809,10 +40378,10 @@ "kernelrelease": "4.4.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" ] }, { @@ -39820,10 +40389,10 @@ "kernelrelease": "4.4.0-1107-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" ] }, { @@ -39831,10 +40400,10 @@ "kernelrelease": "4.4.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb" ] }, { @@ -39842,9 +40411,9 @@ "kernelrelease": "4.4.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" ] }, @@ -39854,9 +40423,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb" ] }, { @@ -39864,9 +40433,9 @@ "kernelrelease": "4.4.0-1112-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb" ] }, @@ -39876,9 +40445,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" ] }, { @@ -39886,8 +40455,8 @@ "kernelrelease": "4.4.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb" ] @@ -39897,10 +40466,10 @@ "kernelrelease": "4.4.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" ] }, { @@ -39909,9 +40478,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" ] }, { @@ -39930,11 +40499,11 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb" ] }, @@ -39943,10 +40512,10 @@ "kernelrelease": "4.4.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb" ] }, { @@ -39956,8 +40525,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" ] }, { @@ -39966,9 +40535,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" ] }, { @@ -39976,10 +40545,10 @@ "kernelrelease": "4.4.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb" ] }, { @@ -39987,8 +40556,8 @@ "kernelrelease": "4.4.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" ] @@ -39998,9 +40567,9 @@ "kernelrelease": "4.4.0-1127-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" ] }, @@ -40009,10 +40578,10 @@ "kernelrelease": "4.4.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb" ] }, { @@ -40020,12 +40589,12 @@ "kernelrelease": "4.4.0-116", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" ] }, { @@ -40034,11 +40603,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb" ] }, { @@ -40046,11 +40615,11 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb" ] }, @@ -40059,11 +40628,11 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb" ] }, @@ -40072,12 +40641,12 @@ "kernelrelease": "4.4.0-127", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" ] }, { @@ -40085,11 +40654,11 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" ] }, @@ -40098,12 +40667,12 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb" ] }, { @@ -40111,12 +40680,12 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb" ] }, { @@ -40124,12 +40693,12 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" ] }, { @@ -40137,12 +40706,12 @@ "kernelrelease": "4.4.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb" ] }, { @@ -40150,12 +40719,12 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" ] }, { @@ -40163,12 +40732,12 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" ] }, { @@ -40176,11 +40745,11 @@ "kernelrelease": "4.4.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb" ] }, @@ -40189,12 +40758,12 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb" ] }, { @@ -40202,12 +40771,12 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" ] }, { @@ -40215,12 +40784,12 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb" ] }, { @@ -40229,11 +40798,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb" ] }, { @@ -40241,12 +40810,12 @@ "kernelrelease": "4.4.0-150", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb" ] }, { @@ -40254,12 +40823,12 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb" ] }, { @@ -40267,12 +40836,12 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb" ] }, { @@ -40280,12 +40849,12 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" ] }, { @@ -40293,12 +40862,12 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" ] }, { @@ -40306,12 +40875,12 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" ] }, { @@ -40319,12 +40888,12 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb" ] }, { @@ -40332,11 +40901,11 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb" ] }, @@ -40345,11 +40914,11 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" ] }, @@ -40358,11 +40927,11 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb" ] }, @@ -40371,12 +40940,12 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb" ] }, { @@ -40384,12 +40953,12 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb" ] }, { @@ -40397,11 +40966,11 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb" ] }, @@ -40410,11 +40979,11 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb" ] }, @@ -40423,12 +40992,12 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" ] }, { @@ -40436,12 +41005,12 @@ "kernelrelease": "4.4.0-176", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb" ] }, { @@ -40449,12 +41018,12 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb" ] }, { @@ -40462,11 +41031,11 @@ "kernelrelease": "4.4.0-178", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" ] }, @@ -40475,10 +41044,10 @@ "kernelrelease": "4.4.0-179", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" ] @@ -40488,12 +41057,12 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" ] }, { @@ -40502,11 +41071,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb" ] }, { @@ -40514,12 +41083,12 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" ] }, { @@ -40527,12 +41096,12 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb" ] }, { @@ -40540,12 +41109,12 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" ] }, { @@ -40553,12 +41122,12 @@ "kernelrelease": "4.4.0-190", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" ] }, { @@ -40566,12 +41135,12 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb" ] }, { @@ -40579,12 +41148,12 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb" ] }, { @@ -40592,12 +41161,12 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" ] }, { @@ -40605,12 +41174,12 @@ "kernelrelease": "4.4.0-198", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" ] }, { @@ -40619,11 +41188,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" ] }, { @@ -40631,12 +41200,12 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" ] }, { @@ -40644,12 +41213,12 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" ] }, { @@ -40657,12 +41226,12 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb" ] }, { @@ -40671,11 +41240,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb" ] }, { @@ -40683,11 +41252,11 @@ "kernelrelease": "4.4.0-209", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" ] }, @@ -40696,12 +41265,12 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" ] }, { @@ -40709,12 +41278,12 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" ] }, { @@ -40722,12 +41291,12 @@ "kernelrelease": "4.4.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" ] }, { @@ -40735,11 +41304,11 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb" ] }, @@ -40749,11 +41318,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb" ] }, { @@ -40761,12 +41330,12 @@ "kernelrelease": "4.4.0-34", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb" ] }, { @@ -40774,11 +41343,11 @@ "kernelrelease": "4.4.0-36", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" ] }, @@ -40787,12 +41356,12 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" ] }, { @@ -40800,12 +41369,12 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb" ] }, { @@ -40813,12 +41382,12 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb" ] }, { @@ -40826,12 +41395,12 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb" ] }, { @@ -40839,12 +41408,12 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" ] }, { @@ -40852,12 +41421,12 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" ] }, { @@ -40865,12 +41434,12 @@ "kernelrelease": "4.4.0-57", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb" ] }, { @@ -40878,12 +41447,12 @@ "kernelrelease": "4.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb" ] }, { @@ -40891,11 +41460,11 @@ "kernelrelease": "4.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" ] }, @@ -40904,12 +41473,12 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" ] }, { @@ -40917,12 +41486,12 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" ] }, { @@ -40930,12 +41499,12 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" ] }, { @@ -40943,12 +41512,12 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb" ] }, { @@ -40957,11 +41526,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb" ] }, { @@ -40969,10 +41538,10 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" ] @@ -40982,12 +41551,12 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" ] }, { @@ -40995,10 +41564,10 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" ] @@ -41009,9 +41578,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb" ] @@ -41022,11 +41591,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" ] }, { @@ -41036,10 +41605,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" ] }, { @@ -41047,11 +41616,11 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb" ] }, @@ -41060,12 +41629,12 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb" ] }, { @@ -41073,12 +41642,12 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb" ] }, { @@ -41086,12 +41655,12 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb" ] }, { @@ -41100,11 +41669,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb" ] }, { @@ -41112,12 +41681,12 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb" ] }, { @@ -41125,12 +41694,12 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb" ] }, { @@ -41138,11 +41707,11 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb" ] }, @@ -41151,12 +41720,12 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb" ] }, { @@ -41165,10 +41734,10 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb" ] }, @@ -41177,12 +41746,12 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" ] }, { @@ -41191,11 +41760,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" ] }, { @@ -41203,12 +41772,12 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb" ] }, { @@ -41216,10 +41785,10 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb" ] @@ -41229,12 +41798,12 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb" ] }, { @@ -41242,12 +41811,12 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" ] }, { @@ -41255,12 +41824,12 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb" ] }, { @@ -41269,11 +41838,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" ] }, { @@ -41281,11 +41850,11 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" ] }, @@ -41294,12 +41863,12 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb" ] }, { @@ -41308,8 +41877,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb" ] }, @@ -41318,10 +41887,10 @@ "kernelrelease": "4.11.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" ] }, { @@ -41329,10 +41898,10 @@ "kernelrelease": "4.11.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" ] }, { @@ -41340,10 +41909,10 @@ "kernelrelease": "4.11.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" ] }, { @@ -41351,10 +41920,10 @@ "kernelrelease": "4.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" ] }, { @@ -41362,10 +41931,10 @@ "kernelrelease": "4.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" ] }, { @@ -41373,10 +41942,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" ] }, { @@ -41384,10 +41953,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" ] }, { @@ -41395,10 +41964,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" ] }, { @@ -41407,9 +41976,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" ] }, { @@ -41417,10 +41986,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" ] }, { @@ -41428,12 +41997,12 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" ] }, { @@ -41441,12 +42010,12 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb" ] }, { @@ -41454,10 +42023,10 @@ "kernelrelease": "4.4.0-1033-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" ] }, { @@ -41465,9 +42034,9 @@ "kernelrelease": "4.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" ] }, @@ -41476,10 +42045,10 @@ "kernelrelease": "4.4.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb" ] }, { @@ -41487,10 +42056,10 @@ "kernelrelease": "4.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" ] }, { @@ -41498,10 +42067,10 @@ "kernelrelease": "4.4.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" ] }, { @@ -41509,10 +42078,10 @@ "kernelrelease": "4.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb" ] }, { @@ -41531,10 +42100,10 @@ "kernelrelease": "4.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" ] }, { @@ -41544,8 +42113,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" ] }, { @@ -41553,12 +42122,12 @@ "kernelrelease": "4.4.0-122", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" ] }, { @@ -41567,11 +42136,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb" ] }, { @@ -41579,11 +42148,11 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb" ] }, @@ -41593,11 +42162,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" ] }, { @@ -41605,12 +42174,12 @@ "kernelrelease": "4.4.0-146", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" ] }, { @@ -41618,12 +42187,12 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" ] }, { @@ -41631,12 +42200,12 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb" ] }, { @@ -41644,12 +42213,12 @@ "kernelrelease": "4.8.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" ] }, { @@ -41657,12 +42226,12 @@ "kernelrelease": "4.8.0-44-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb" ] }, { @@ -41670,12 +42239,12 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" ] }, { @@ -41684,11 +42253,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" ] }, { @@ -41698,10 +42267,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" ] } ], From 596fa4c6aaa59e0cc2f65afff6bbfe0d96f2b61e Mon Sep 17 00:00:00 2001 From: poiana Date: Sun, 5 Jun 2022 01:05:52 +0000 Subject: [PATCH 115/259] update(kernels): updated kernel json lists. Signed-off-by: GitHub --- kernels/aarch64/list.json | 3523 ++++---- kernels/x86_64/list.json | 16602 ++++++++++++++++++------------------ 2 files changed, 10289 insertions(+), 9836 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 36a173c..14de7d6 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -912,7 +912,7 @@ "kernelrelease": "5.10.75-82.359.amzn2022.aarch64", "target": "amazonlinux2022", "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/440a6228082d68b5e322f6a4d372b09207a8f4b22eb133cf08d3bbcd2581cd5d/kernel-devel-5.10.75-82.359.amzn2022.aarch64.rpm" + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/db05fcc4b022af5ce6a038ac10b7ed311f7611a5a0c69c9df6233bf2d6bc6c73/aarch64/../../../../blobstore/440a6228082d68b5e322f6a4d372b09207a8f4b22eb133cf08d3bbcd2581cd5d/kernel-devel-5.10.75-82.359.amzn2022.aarch64.rpm" ] }, { @@ -1916,6 +1916,14 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.241-2.ph3.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.245-1.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.245-1.ph3.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.29-1.ph3.aarch64", @@ -2145,7 +2153,7 @@ "kernelrelease": "1.4.0-4.ph4.aarch64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" ] }, { @@ -2193,7 +2201,7 @@ "kernelrelease": "5.10.109-3.ph4.aarch64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.109-3.ph4.aarch64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.109-3.ph4.aarch64.rpm" ] }, { @@ -2499,10 +2507,10 @@ "kernelrelease": "5.17.3-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-arm64_5.17.3-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-arm64_5.17.3-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-arm64_5.17.3-1_arm64.deb" ] }, @@ -2511,10 +2519,10 @@ "kernelrelease": "5.10.113-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" ] }, @@ -2523,8 +2531,8 @@ "kernelrelease": "5.14.9-2~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-arm64_5.14.9-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-arm64_5.14.9-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-arm64_5.14.9-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb" ] }, @@ -2533,11 +2541,11 @@ "kernelrelease": "5.15.5-2~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-arm64_5.15.5-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-arm64_5.15.5-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-arm64_5.15.5-2~bpo11+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-arm64_5.15.5-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-arm64_5.15.5-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-arm64_5.15.5-2~bpo11+1_arm64.deb" ] }, { @@ -2545,8 +2553,8 @@ "kernelrelease": "5.15.15-2~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-arm64_5.15.15-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-arm64_5.15.15-2~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-arm64_5.15.15-2~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-arm64_5.15.15-2~bpo11+1_arm64.deb" @@ -2558,8 +2566,8 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-arm64_5.16.11-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-arm64_5.16.11-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-arm64_5.16.11-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-arm64_5.16.11-1~bpo11+1_arm64.deb" ] @@ -2570,9 +2578,9 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb" ] }, @@ -2581,11 +2589,11 @@ "kernelrelease": "5.10.84-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb" ] }, { @@ -2593,11 +2601,11 @@ "kernelrelease": "5.10.106-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" ] }, { @@ -2605,11 +2613,11 @@ "kernelrelease": "5.10.92-1~bpo10+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-arm64_5.10.92-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-arm64_5.10.92-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-arm64_5.10.92-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-arm64_5.10.92-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-arm64_5.10.92-1~bpo10+1_arm64.deb" ] }, { @@ -2617,11 +2625,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb" ] }, { @@ -2629,11 +2637,11 @@ "kernelrelease": "5.10.70-1~bpo10+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-arm64_5.10.70-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-arm64_5.10.70-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-arm64_5.10.70-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-arm64_5.10.70-1~bpo10+1_arm64.deb" ] }, { @@ -2641,10 +2649,10 @@ "kernelrelease": "4.19.208-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" ] }, { @@ -2652,10 +2660,10 @@ "kernelrelease": "4.19.235-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" ] }, { @@ -2663,23 +2671,23 @@ "kernelrelease": "5.18-1~exp1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-cloud-arm64_5.18-1~exp1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common_5.18-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-rt-arm64_5.18-1~exp1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-arm64_5.18-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common-rt_5.18-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-cloud-arm64_5.18-1~exp1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-rt-arm64_5.18-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common-rt_5.18-1~exp1_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.6-1+b1-arm64", + "kernelrelease": "5.17.11-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common_5.17.6-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-common-rt_5.17.6-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-arm64_5.17.6-1+b1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-rt-arm64_5.17.6-1+b1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-2-cloud-arm64_5.17.6-1+b1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-cloud-arm64_5.17.11-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common_5.17.11-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-arm64_5.17.11-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-rt-arm64_5.17.11-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common-rt_5.17.11-1_all.deb" ] }, { @@ -2687,10 +2695,10 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb" ] }, { @@ -2707,11 +2715,11 @@ "kernelrelease": "5.10.103-1-arm64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb" ] }, { @@ -2719,10 +2727,10 @@ "kernelrelease": "4.19.232-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb" ] }, { @@ -2739,9 +2747,9 @@ "kernelrelease": "4.19.232-1~deb9u1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb" ] } @@ -2770,8 +2778,8 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb" ] }, { @@ -2806,8 +2814,8 @@ "kernelrelease": "4.15.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" ] }, { @@ -2819,15 +2827,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb" ] }, - { - "kernelversion": "132", - "kernelrelease": "4.15.0-1123-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb" - ] - }, { "kernelversion": "132", "kernelrelease": "4.15.0-1123-aws", @@ -2838,12 +2837,12 @@ ] }, { - "kernelversion": "133", - "kernelrelease": "4.15.0-1124-snapdragon", + "kernelversion": "132", + "kernelrelease": "4.15.0-1123-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" ] }, { @@ -2851,8 +2850,17 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb" + ] + }, + { + "kernelversion": "133", + "kernelrelease": "4.15.0-1124-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb" ] }, { @@ -2860,8 +2868,8 @@ "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" ] }, { @@ -2875,20 +2883,20 @@ }, { "kernelversion": "136", - "kernelrelease": "4.15.0-1127-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1127-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" ] }, { "kernelversion": "136", - "kernelrelease": "4.15.0-1127-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1127-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" ] }, { @@ -2900,6 +2908,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb" ] }, + { + "kernelversion": "138", + "kernelrelease": "4.15.0-1129-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" + ] + }, { "kernelversion": "138", "kernelrelease": "4.15.0-1129-snapdragon", @@ -2910,12 +2927,12 @@ ] }, { - "kernelversion": "138", - "kernelrelease": "4.15.0-1129-aws", - "target": "ubuntu-aws", + "kernelversion": "139", + "kernelrelease": "4.15.0-1130-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1130-snapdragon_4.15.0-1130.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1130_4.15.0-1130.139_arm64.deb" ] }, { @@ -2932,8 +2949,8 @@ "kernelrelease": "4.15.0-1131-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb" ] }, { @@ -2950,8 +2967,8 @@ "kernelrelease": "4.15.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb" ] }, { @@ -2959,8 +2976,8 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" ] }, { @@ -2986,8 +3003,8 @@ "kernelrelease": "4.15.0-173", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb" ] }, { @@ -3013,8 +3030,8 @@ "kernelrelease": "4.15.0-177", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" ] }, { @@ -3022,8 +3039,8 @@ "kernelrelease": "4.15.0-179", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb" ] }, { @@ -3040,8 +3057,8 @@ "kernelrelease": "4.15.0-181", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_arm64.deb" ] }, { @@ -3067,8 +3084,8 @@ "kernelrelease": "5.4.0-100-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" ] }, { @@ -3094,8 +3111,8 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb" ] }, { @@ -3103,8 +3120,8 @@ "kernelrelease": "5.4.0-1062-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" ] }, { @@ -3121,8 +3138,8 @@ "kernelrelease": "5.4.0-1064-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" ] }, { @@ -3166,8 +3183,8 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" ] }, { @@ -3175,8 +3192,8 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" ] }, { @@ -3184,35 +3201,8 @@ "kernelrelease": "5.4.0-1071-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb" ] }, { @@ -3224,13 +3214,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb" ] }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1073-gke_5.4.0-1073.78~18.04.1_arm64.deb" + ] + }, { "kernelversion": "78~18.04.1", "kernelrelease": "5.4.0-1073-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb" ] }, { @@ -3243,12 +3242,21 @@ ] }, { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1073-oracle-5.4", + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1074-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1074_5.4.0-1074.80~18.04.1_all.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb" ] }, { @@ -3256,17 +3264,17 @@ "kernelrelease": "5.4.0-1075-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb" ] }, { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-gcp-5.4", + "kernelversion": "81~18.04.1", + "kernelrelease": "5.4.0-1076-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_arm64.deb" ] }, { @@ -3283,8 +3291,8 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" ] }, { @@ -3292,8 +3300,8 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb" ] }, { @@ -3301,8 +3309,8 @@ "kernelrelease": "5.4.0-1079-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" ] }, { @@ -3315,12 +3323,12 @@ ] }, { - "kernelversion": "83~18.04.2", - "kernelrelease": "5.4.0-1080-azure-5.4", + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1081-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1081_5.4.0-1081.84~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1081-azure_5.4.0-1081.84~18.04.1_arm64.deb" ] }, { @@ -3337,17 +3345,8 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" - ] - }, - { - "kernelversion": "127~18.04.1", - "kernelrelease": "5.4.0-113-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_arm64.deb" ] }, { @@ -3391,8 +3390,8 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" ] }, { @@ -3400,8 +3399,8 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb" ] }, { @@ -3418,8 +3417,8 @@ "kernelrelease": "4.15.0-1031-raspi2", "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb" ] }, { @@ -3436,8 +3435,8 @@ "kernelrelease": "4.15.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb" ] }, { @@ -3454,8 +3453,8 @@ "kernelrelease": "4.15.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" ] }, { @@ -3472,8 +3471,8 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" ] }, { @@ -3553,8 +3552,8 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { @@ -3580,8 +3579,8 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb" ] }, { @@ -3625,8 +3624,8 @@ "kernelrelease": "4.15.0-1057-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb" ] }, { @@ -3688,8 +3687,8 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] }, { @@ -3697,8 +3696,8 @@ "kernelrelease": "4.15.0-1064-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" ] }, { @@ -3706,8 +3705,8 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb" ] }, { @@ -3724,8 +3723,8 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { @@ -3733,8 +3732,8 @@ "kernelrelease": "4.15.0-1066-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb" ] }, { @@ -3760,8 +3759,8 @@ "kernelrelease": "4.15.0-1069-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb" ] }, { @@ -3778,8 +3777,8 @@ "kernelrelease": "4.15.0-1071-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb" ] }, { @@ -3796,8 +3795,8 @@ "kernelrelease": "4.15.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb" ] }, { @@ -3805,8 +3804,8 @@ "kernelrelease": "4.15.0-1074-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb" ] }, { @@ -3814,8 +3813,8 @@ "kernelrelease": "4.15.0-1076-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb" ] }, { @@ -3823,8 +3822,8 @@ "kernelrelease": "4.15.0-1076-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb" ] }, { @@ -3841,8 +3840,8 @@ "kernelrelease": "4.15.0-1077-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb" ] }, { @@ -3850,8 +3849,8 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" ] }, { @@ -3868,8 +3867,8 @@ "kernelrelease": "4.15.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb" ] }, { @@ -3904,8 +3903,8 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" ] }, { @@ -3949,8 +3948,8 @@ "kernelrelease": "4.15.0-1086-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb" ] }, { @@ -3967,8 +3966,8 @@ "kernelrelease": "4.15.0-1087-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" ] }, { @@ -3985,8 +3984,8 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb" ] }, { @@ -3994,8 +3993,8 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb" ] }, { @@ -4003,8 +4002,8 @@ "kernelrelease": "4.15.0-1090-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb" ] }, { @@ -4012,8 +4011,8 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" ] }, { @@ -4066,8 +4065,8 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb" ] }, { @@ -4075,8 +4074,8 @@ "kernelrelease": "4.15.0-1095-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb" ] }, { @@ -4084,8 +4083,8 @@ "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" ] }, { @@ -4093,8 +4092,8 @@ "kernelrelease": "4.15.0-1096-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb" ] }, { @@ -4102,8 +4101,8 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb" ] }, { @@ -4120,8 +4119,8 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb" ] }, { @@ -4129,8 +4128,8 @@ "kernelrelease": "4.15.0-1098-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb" ] }, { @@ -4138,8 +4137,8 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { @@ -4147,8 +4146,8 @@ "kernelrelease": "4.15.0-1099-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb" ] }, { @@ -4255,8 +4254,8 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" ] }, { @@ -4282,8 +4281,8 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb" ] }, { @@ -4318,8 +4317,8 @@ "kernelrelease": "4.15.0-1113-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb" ] }, { @@ -4363,8 +4362,8 @@ "kernelrelease": "4.15.0-1116-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb" ] }, { @@ -4381,8 +4380,8 @@ "kernelrelease": "4.15.0-1118-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb" ] }, { @@ -4399,8 +4398,8 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" ] }, { @@ -4414,20 +4413,20 @@ }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1126-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" ] }, { @@ -4435,8 +4434,8 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb" ] }, { @@ -4480,8 +4479,8 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" ] }, { @@ -4498,8 +4497,8 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb" ] }, { @@ -4552,8 +4551,8 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb" ] }, { @@ -4561,8 +4560,8 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb" ] }, { @@ -4579,8 +4578,8 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb" ] }, { @@ -4588,8 +4587,8 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb" ] }, { @@ -4597,8 +4596,8 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb" ] }, { @@ -4606,8 +4605,8 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb" ] }, { @@ -4651,8 +4650,8 @@ "kernelrelease": "4.15.0-158", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" ] }, { @@ -4678,8 +4677,8 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb" ] }, { @@ -4723,8 +4722,8 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb" ] }, @@ -4733,9 +4732,9 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb" ] }, { @@ -4744,8 +4743,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" ] }, { @@ -4764,8 +4763,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb" ] }, { @@ -4773,9 +4772,9 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb" ] }, { @@ -4783,9 +4782,9 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb" ] }, { @@ -4794,8 +4793,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" ] }, { @@ -4803,9 +4802,9 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb" ] }, { @@ -4813,9 +4812,9 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb" ] }, { @@ -4823,9 +4822,9 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb" ] }, { @@ -4833,9 +4832,9 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb" ] }, { @@ -4853,8 +4852,8 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb" ] }, @@ -4863,8 +4862,8 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb" ] }, @@ -4873,9 +4872,9 @@ "kernelrelease": "4.15.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb" ] }, { @@ -4901,8 +4900,8 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb" ] }, { @@ -4937,8 +4936,8 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb" ] }, { @@ -4946,8 +4945,8 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb" ] }, { @@ -4964,8 +4963,8 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" ] }, { @@ -5027,8 +5026,8 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb" ] }, { @@ -5054,8 +5053,8 @@ "kernelrelease": "4.15.0-99", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" ] }, { @@ -5063,9 +5062,9 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb" ] }, { @@ -5073,9 +5072,9 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb" ] }, { @@ -5083,9 +5082,9 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb" ] }, { @@ -5093,9 +5092,9 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" ] }, { @@ -5103,8 +5102,8 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb" ] }, @@ -5113,9 +5112,9 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" ] }, { @@ -5124,8 +5123,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, { @@ -5133,9 +5132,9 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" ] }, { @@ -5143,9 +5142,9 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb" ] }, { @@ -5153,8 +5152,8 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb" ] }, @@ -5190,8 +5189,8 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" ] }, { @@ -5208,8 +5207,8 @@ "kernelrelease": "5.0.0-1027-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" ] }, { @@ -5235,8 +5234,8 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" ] }, { @@ -5253,8 +5252,8 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" ] }, { @@ -5262,8 +5261,8 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb" ] }, { @@ -5280,8 +5279,8 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb" ] }, { @@ -5316,8 +5315,8 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" ] }, { @@ -5343,8 +5342,8 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" ] }, { @@ -5361,8 +5360,8 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb" ] }, { @@ -5388,8 +5387,8 @@ "kernelrelease": "5.3.0-1017-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" ] }, { @@ -5397,8 +5396,8 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" ] }, { @@ -5451,8 +5450,8 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" ] }, { @@ -5460,8 +5459,8 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" ] }, { @@ -5478,8 +5477,8 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb" ] }, { @@ -5487,8 +5486,8 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" ] }, { @@ -5496,8 +5495,8 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" ] }, { @@ -5505,8 +5504,8 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb" ] }, { @@ -5541,8 +5540,8 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" ] }, { @@ -5550,8 +5549,8 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb" ] }, { @@ -5559,8 +5558,8 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" ] }, { @@ -5568,8 +5567,8 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb" ] }, { @@ -5577,8 +5576,8 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" ] }, { @@ -5595,8 +5594,8 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" ] }, { @@ -5613,8 +5612,8 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb" ] }, { @@ -5640,8 +5639,8 @@ "kernelrelease": "5.4.0-1025-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb" ] }, { @@ -5658,8 +5657,8 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" ] }, { @@ -5667,8 +5666,8 @@ "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb" ] }, { @@ -5703,8 +5702,8 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb" ] }, { @@ -5721,8 +5720,8 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" ] }, { @@ -5748,8 +5747,8 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb" ] }, { @@ -5775,8 +5774,8 @@ "kernelrelease": "5.4.0-1048-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb" ] }, { @@ -5784,8 +5783,8 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" ] }, { @@ -5811,8 +5810,8 @@ "kernelrelease": "5.4.0-1052-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" ] }, { @@ -5820,8 +5819,8 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" ] }, { @@ -5838,8 +5837,8 @@ "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb" ] }, { @@ -5865,8 +5864,8 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb" ] }, { @@ -5892,8 +5891,8 @@ "kernelrelease": "5.4.0-1057-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" ] }, { @@ -5910,8 +5909,8 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" ] }, { @@ -6009,8 +6008,8 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb" ] }, { @@ -6018,8 +6017,8 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb" ] }, { @@ -6031,13 +6030,58 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" ] }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-1073-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" + ] + }, { "kernelversion": "80~18.04.1", "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" + ] + }, + { + "kernelversion": "83~18.04.2", + "kernelrelease": "5.4.0-1080-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" ] }, { @@ -6049,13 +6093,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_arm64.deb" ] }, + { + "kernelversion": "127~18.04.1", + "kernelrelease": "5.4.0-113-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb" + ] + }, { "kernelversion": "41~18.04.1", "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" ] }, { @@ -6063,8 +6116,8 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" ] }, { @@ -6072,8 +6125,8 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb" ] }, { @@ -6081,8 +6134,8 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" ] }, { @@ -6090,8 +6143,8 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb" ] }, { @@ -6108,8 +6161,8 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" ] }, { @@ -6117,8 +6170,8 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb" ] }, { @@ -6126,8 +6179,8 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" ] }, { @@ -6135,8 +6188,8 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" ] }, { @@ -6144,8 +6197,8 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" ] }, { @@ -6171,8 +6224,8 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb" ] }, { @@ -6180,8 +6233,8 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" ] }, { @@ -6189,8 +6242,8 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" ] }, { @@ -6198,8 +6251,8 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb" ] }, { @@ -6216,8 +6269,8 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb" ] }, { @@ -6252,8 +6305,8 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" ] }, { @@ -6261,8 +6314,8 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb" ] }, { @@ -6279,8 +6332,8 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb" ] }, { @@ -6297,8 +6350,8 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb" ] }, { @@ -6324,8 +6377,8 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" ] }, { @@ -6342,8 +6395,8 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb" ] }, { @@ -6360,8 +6413,8 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" ] }, { @@ -6378,9 +6431,9 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" ] }, { @@ -6388,9 +6441,9 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb" ] }, { @@ -6399,8 +6452,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb" ] }, { @@ -6417,8 +6470,8 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" ] }, { @@ -6444,8 +6497,8 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb" ] }, { @@ -6471,8 +6524,8 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb" ] }, { @@ -6480,8 +6533,8 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { @@ -6507,8 +6560,8 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" ] }, { @@ -6516,8 +6569,8 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" ] }, { @@ -6525,36 +6578,27 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb" ] }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" - ] - }, { "kernelversion": "7", "kernelrelease": "5.15.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-gke", - "target": "ubuntu-gke", + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" ] }, { @@ -6562,27 +6606,26 @@ "kernelrelease": "5.15.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1006-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.15.0-1005-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.15.0-27", - "target": "ubuntu-generic", + "kernelversion": "6", + "kernelrelease": "5.15.0-1006-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" ] }, { @@ -6596,15 +6639,45 @@ ] }, { - "kernelversion": "29", - "kernelrelease": "5.15.0-28", - "target": "ubuntu-generic", + "kernelversion": "28", + "kernelrelease": "5.15.0-27", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.15.0-28", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_arm64.deb" ] }, + { + "kernelversion": "36+22.10.1", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + ] + }, + { + "kernelversion": "36+22.10.1", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + ] + }, { "kernelversion": "4", "kernelrelease": "5.15.0-1003-azure", @@ -6619,26 +6692,26 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1004-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -6646,8 +6719,8 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_arm64.deb" ] }, { @@ -6655,9 +6728,9 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" ] }, { @@ -6665,8 +6738,8 @@ "kernelrelease": "5.11.0-1022-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -6680,20 +6753,20 @@ }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1028-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1028-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb" ] }, { @@ -6701,8 +6774,8 @@ "kernelrelease": "5.11.0-1029-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb" ] }, { @@ -6710,8 +6783,8 @@ "kernelrelease": "5.11.0-1029-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" ] }, { @@ -6719,8 +6792,8 @@ "kernelrelease": "5.11.0-1029-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb" ] }, { @@ -6738,8 +6811,8 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" ] }, @@ -6748,9 +6821,9 @@ "kernelrelease": "5.11.0-42-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb" ] }, { @@ -6758,9 +6831,9 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb" ] }, { @@ -6768,9 +6841,9 @@ "kernelrelease": "5.11.0-60-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" ] }, { @@ -6778,9 +6851,9 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" ] }, { @@ -6812,20 +6885,20 @@ }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" ] }, { @@ -6833,8 +6906,8 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb" ] }, { @@ -6842,8 +6915,8 @@ "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb" ] }, { @@ -6860,8 +6933,8 @@ "kernelrelease": "5.13.0-1023-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb" ] }, { @@ -6873,24 +6946,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb" ] }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.13.0-1025-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1025-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" - ] - }, { "kernelversion": "28~20.04.1", "kernelrelease": "5.13.0-1026-aws-5.13", @@ -6923,17 +6978,17 @@ "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" ] }, { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1030-oracle-5.13", + "kernelversion": "36~20.04.1", + "kernelrelease": "5.13.0-1031-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1031_5.13.0-1031.36~20.04.1_all.deb" ] }, { @@ -6941,8 +6996,8 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" ] }, @@ -6961,9 +7016,9 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb" ] }, { @@ -7001,9 +7056,9 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb" ] }, { @@ -7011,9 +7066,9 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb" ] }, { @@ -7022,8 +7077,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb" ] }, { @@ -7031,8 +7086,8 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" ] }, @@ -7041,9 +7096,9 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb" ] }, { @@ -7062,8 +7117,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" ] }, { @@ -7071,9 +7126,9 @@ "kernelrelease": "5.13.0-46-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic-64k_5.13.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb" ] }, { @@ -7099,9 +7154,9 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb" ] }, { @@ -7109,8 +7164,8 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" ] }, @@ -7119,9 +7174,9 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb" ] }, { @@ -7129,9 +7184,9 @@ "kernelrelease": "5.15.0-32-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb" ] }, { @@ -7139,8 +7194,8 @@ "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, @@ -7150,8 +7205,8 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb" ] }, { @@ -7174,20 +7229,20 @@ }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1026-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1026-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb" ] }, { @@ -7201,20 +7256,20 @@ }, { "kernelversion": "31", - "kernelrelease": "5.4.0-1028-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1028-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb" ] }, { "kernelversion": "31", - "kernelrelease": "5.4.0-1028-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1028-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" ] }, { @@ -7226,22 +7281,31 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1031_5.4.0-1031.34_all.deb" ] }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1033-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb" + ] + }, { "kernelversion": "36", "kernelrelease": "5.4.0-1033-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.4.0-1033-bluefield", - "target": "ubuntu-bluefield", + "kernelversion": "37", + "kernelrelease": "5.4.0-1034-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" ] }, { @@ -7254,12 +7318,12 @@ ] }, { - "kernelversion": "37", - "kernelrelease": "5.4.0-1034-raspi", - "target": "ubuntu-raspi", + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb" ] }, { @@ -7267,17 +7331,17 @@ "kernelrelease": "5.4.0-1035-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-bluefield", - "target": "ubuntu-bluefield", + "kernelversion": "39", + "kernelrelease": "5.4.0-1036-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb" ] }, { @@ -7290,12 +7354,12 @@ ] }, { - "kernelversion": "39", - "kernelrelease": "5.4.0-1036-raspi", - "target": "ubuntu-raspi", + "kernelversion": "40", + "kernelrelease": "5.4.0-1037-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1037-bluefield_5.4.0-1037.40_arm64.deb" ] }, { @@ -7312,8 +7376,8 @@ "kernelrelease": "5.4.0-1046-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb" ] }, { @@ -7348,8 +7412,8 @@ "kernelrelease": "5.4.0-1053-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" ] }, { @@ -7375,8 +7439,8 @@ "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" ] }, { @@ -7384,8 +7448,8 @@ "kernelrelease": "5.4.0-106", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" ] }, { @@ -7402,8 +7466,8 @@ "kernelrelease": "5.4.0-1061-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1061_5.4.0-1061.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1061-raspi_5.4.0-1061.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1061-raspi_5.4.0-1061.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1061_5.4.0-1061.69_arm64.deb" ] }, { @@ -7411,17 +7475,17 @@ "kernelrelease": "5.4.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, { - "kernelversion": "70", - "kernelrelease": "5.4.0-1062-raspi", + "kernelversion": "72", + "kernelrelease": "5.4.0-1063-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1063_5.4.0-1063.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1063-raspi_5.4.0-1063.72_arm64.deb" ] }, { @@ -7429,8 +7493,8 @@ "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" ] }, { @@ -7456,8 +7520,8 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb" ] }, { @@ -7465,8 +7529,8 @@ "kernelrelease": "5.4.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" ] }, { @@ -7474,8 +7538,8 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" ] }, { @@ -7483,8 +7547,8 @@ "kernelrelease": "5.4.0-107", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb" ] }, { @@ -7492,8 +7556,8 @@ "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" ] }, { @@ -7505,15 +7569,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" ] }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" - ] - }, { "kernelversion": "76", "kernelrelease": "5.4.0-1071-gke", @@ -7533,39 +7588,21 @@ ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1071-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb" ] }, { @@ -7579,11 +7616,11 @@ }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1073-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1073-gke_5.4.0-1073.78_arm64.deb" ] }, { @@ -7596,12 +7633,12 @@ ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1073-oracle", - "target": "ubuntu-oracle", + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" ] }, { @@ -7618,17 +7655,17 @@ "kernelrelease": "5.4.0-1074-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb" ] }, { "kernelversion": "80", - "kernelrelease": "5.4.0-1075-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1074-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1074_5.4.0-1074.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80_arm64.deb" ] }, { @@ -7636,8 +7673,17 @@ "kernelrelease": "5.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb" + ] + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb" ] }, { @@ -7645,8 +7691,8 @@ "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" ] }, { @@ -7658,13 +7704,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_arm64.deb" ] }, + { + "kernelversion": "81", + "kernelrelease": "5.4.0-1076-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1076_5.4.0-1076.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81_arm64.deb" + ] + }, { "kernelversion": "79", "kernelrelease": "5.4.0-1076-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_arm64.deb" ] }, { @@ -7699,8 +7754,8 @@ "kernelrelease": "5.4.0-1081-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb" ] }, { @@ -7717,8 +7772,8 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" ] }, { @@ -7744,8 +7799,8 @@ "kernelrelease": "5.4.0-114", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_arm64.deb" ] }, { @@ -7762,8 +7817,8 @@ "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb" ] }, { @@ -7771,8 +7826,8 @@ "kernelrelease": "5.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb" ] }, { @@ -7789,9 +7844,9 @@ "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb" ] }, { @@ -7808,8 +7863,8 @@ "kernelrelease": "5.11.0-1016-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { @@ -7817,17 +7872,8 @@ "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb" ] }, { @@ -7835,17 +7881,17 @@ "kernelrelease": "5.11.0-1017-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb" ] }, { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" ] }, { @@ -7857,13 +7903,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" ] }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb" + ] + }, { "kernelversion": "21~20.04.2", "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" ] }, { @@ -7871,8 +7926,8 @@ "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { @@ -7889,8 +7944,17 @@ "kernelrelease": "5.11.0-1021-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { @@ -7907,26 +7971,26 @@ "kernelrelease": "5.11.0-1023-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { @@ -7938,22 +8002,13 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" - ] - }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1027-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -7967,11 +8022,11 @@ }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -7988,9 +8043,9 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb" ] }, { @@ -7998,8 +8053,8 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb" ] }, @@ -8008,8 +8063,8 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb" ] }, @@ -8019,8 +8074,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" ] }, { @@ -8038,9 +8093,9 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" ] }, { @@ -8048,9 +8103,9 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb" ] }, { @@ -8059,8 +8114,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" ] }, { @@ -8068,8 +8123,8 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb" ] }, @@ -8087,8 +8142,8 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb" ] }, { @@ -8105,8 +8160,8 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" ] }, { @@ -8123,8 +8178,8 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" ] }, { @@ -8132,8 +8187,8 @@ "kernelrelease": "5.13.0-1017-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb" ] }, { @@ -8141,8 +8196,8 @@ "kernelrelease": "5.13.0-1017-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { @@ -8186,8 +8241,26 @@ "kernelrelease": "5.13.0-1022-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.13.0-1025-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" + ] + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1025-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" ] }, { @@ -8204,8 +8277,17 @@ "kernelrelease": "5.13.0-1027-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1030-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" ] }, { @@ -8213,9 +8295,9 @@ "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" ] }, { @@ -8223,9 +8305,9 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" ] }, { @@ -8234,8 +8316,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb" ] }, { @@ -8243,9 +8325,9 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb" ] }, { @@ -8254,26 +8336,26 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1011-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { @@ -8281,8 +8363,8 @@ "kernelrelease": "5.4.0-1011-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb" ] }, { @@ -8299,8 +8381,8 @@ "kernelrelease": "5.4.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb" ] }, { @@ -8308,8 +8390,8 @@ "kernelrelease": "5.4.0-1013-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb" ] }, { @@ -8335,8 +8417,8 @@ "kernelrelease": "5.4.0-1015-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb" ] }, { @@ -8380,8 +8462,8 @@ "kernelrelease": "5.4.0-1018-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb" ] }, { @@ -8407,8 +8489,8 @@ "kernelrelease": "5.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -8416,8 +8498,8 @@ "kernelrelease": "5.4.0-1020-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb" ] }, { @@ -8425,26 +8507,26 @@ "kernelrelease": "5.4.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1021-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1021-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1021-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1021-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb" ] }, { @@ -8452,26 +8534,26 @@ "kernelrelease": "5.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_arm64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1022-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1022-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1022-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1022-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb" ] }, { @@ -8506,8 +8588,8 @@ "kernelrelease": "5.4.0-1025-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb" ] }, { @@ -8548,20 +8630,20 @@ }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1030-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1030-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1030-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1030-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" ] }, { @@ -8596,8 +8678,8 @@ "kernelrelease": "5.4.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb" ] }, { @@ -8605,8 +8687,8 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" ] }, { @@ -8632,8 +8714,8 @@ "kernelrelease": "5.4.0-1038-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" ] }, { @@ -8650,8 +8732,8 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb" ] }, { @@ -8659,8 +8741,8 @@ "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb" ] }, { @@ -8686,8 +8768,8 @@ "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb" ] }, { @@ -8695,8 +8777,8 @@ "kernelrelease": "5.4.0-1043-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb" ] }, { @@ -8704,8 +8786,8 @@ "kernelrelease": "5.4.0-1044-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb" ] }, { @@ -8713,8 +8795,8 @@ "kernelrelease": "5.4.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, { @@ -8767,8 +8849,8 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" ] }, { @@ -8776,8 +8858,8 @@ "kernelrelease": "5.4.0-1048-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" ] }, { @@ -8794,8 +8876,8 @@ "kernelrelease": "5.4.0-1050-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb" ] }, { @@ -8803,8 +8885,8 @@ "kernelrelease": "5.4.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb" ] }, { @@ -8866,8 +8948,8 @@ "kernelrelease": "5.4.0-1055-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb" ] }, { @@ -8893,8 +8975,8 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" ] }, { @@ -8902,8 +8984,8 @@ "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { @@ -8920,8 +9002,8 @@ "kernelrelease": "5.4.0-1059-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb" ] }, { @@ -8929,8 +9011,8 @@ "kernelrelease": "5.4.0-1059-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" ] }, { @@ -8947,8 +9029,8 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb" ] }, { @@ -8956,8 +9038,8 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" ] }, { @@ -8969,6 +9051,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb" ] }, + { + "kernelversion": "70", + "kernelrelease": "5.4.0-1062-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb" + ] + }, { "kernelversion": "66", "kernelrelease": "5.4.0-1063-aws", @@ -9019,8 +9110,44 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + ] + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1073-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" ] }, { @@ -9055,8 +9182,8 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb" ] }, { @@ -9064,8 +9191,8 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" ] }, { @@ -9091,8 +9218,8 @@ "kernelrelease": "5.4.0-40", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_arm64.deb" ] }, { @@ -9100,8 +9227,8 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb" ] }, { @@ -9118,8 +9245,8 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" ] }, { @@ -9127,8 +9254,8 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb" ] }, { @@ -9136,8 +9263,8 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb" ] }, { @@ -9163,8 +9290,8 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" ] }, { @@ -9181,8 +9308,8 @@ "kernelrelease": "5.4.0-60", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb" ] }, { @@ -9190,8 +9317,8 @@ "kernelrelease": "5.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb" ] }, { @@ -9208,8 +9335,8 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb" ] }, { @@ -9226,8 +9353,8 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb" ] }, { @@ -9244,8 +9371,8 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" ] }, { @@ -9262,8 +9389,8 @@ "kernelrelease": "5.4.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" ] }, { @@ -9280,8 +9407,8 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb" ] }, { @@ -9298,8 +9425,8 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" ] }, { @@ -9316,8 +9443,8 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" ] }, { @@ -9325,8 +9452,8 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb" ] }, { @@ -9334,8 +9461,8 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb" ] }, { @@ -9343,8 +9470,8 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" ] }, { @@ -9352,8 +9479,8 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" ] }, { @@ -9370,8 +9497,8 @@ "kernelrelease": "5.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" ] }, { @@ -9388,8 +9515,8 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb" ] }, { @@ -9461,9 +9588,9 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" ] }, { @@ -9471,8 +9598,8 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb" ] }, @@ -9481,9 +9608,9 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" ] }, { @@ -9491,9 +9618,9 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb" ] }, { @@ -9512,8 +9639,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb" ] }, { @@ -9521,9 +9648,9 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb" ] }, { @@ -9531,8 +9658,8 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" ] }, @@ -9541,9 +9668,9 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" ] }, { @@ -9552,8 +9679,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb" ] }, { @@ -9561,9 +9688,9 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb" ] }, { @@ -9582,8 +9709,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb" ] }, { @@ -9591,9 +9718,9 @@ "kernelrelease": "5.8.0-63-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" ] }, { @@ -9628,8 +9755,8 @@ "kernelrelease": "5.4.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" ] }, { @@ -9637,8 +9764,8 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb" ] }, { @@ -9646,8 +9773,8 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" ] }, { @@ -9655,9 +9782,9 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb" ] }, { @@ -9675,9 +9802,9 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" ] }, { @@ -9685,9 +9812,9 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" ] }, { @@ -9695,9 +9822,9 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb" ] }, { @@ -9705,8 +9832,8 @@ "kernelrelease": "5.4.0-1008-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb" ] }, { @@ -9714,8 +9841,8 @@ "kernelrelease": "5.4.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { @@ -9732,8 +9859,8 @@ "kernelrelease": "5.11.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" ] }, { @@ -9756,11 +9883,11 @@ }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb" ] }, { @@ -9768,26 +9895,26 @@ "kernelrelease": "5.11.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1027-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" ] }, { @@ -9795,8 +9922,8 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb" ] }, @@ -9805,8 +9932,8 @@ "kernelrelease": "5.11.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" ] }, { @@ -9814,8 +9941,8 @@ "kernelrelease": "5.11.0-1007-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb" ] }, { @@ -9823,9 +9950,9 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb" ] }, { @@ -9839,20 +9966,20 @@ }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1010-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" ] }, { @@ -9878,8 +10005,8 @@ "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" ] }, { @@ -9905,8 +10032,8 @@ "kernelrelease": "5.13.0-1017-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" ] }, { @@ -9932,8 +10059,8 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" ] }, { @@ -9941,8 +10068,8 @@ "kernelrelease": "5.13.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, { @@ -9968,17 +10095,8 @@ "kernelrelease": "5.13.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb" ] }, { @@ -9986,17 +10104,17 @@ "kernelrelease": "5.13.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1021-aws", - "target": "ubuntu-aws", + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb" ] }, { @@ -10008,6 +10126,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb" ] }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-1021-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" + ] + }, { "kernelversion": "27", "kernelrelease": "5.13.0-1022-oracle", @@ -10022,8 +10149,8 @@ "kernelrelease": "5.13.0-1022-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" ] }, { @@ -10085,8 +10212,8 @@ "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" ] }, { @@ -10109,20 +10236,20 @@ }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1025-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb" ] }, { @@ -10175,8 +10302,8 @@ "kernelrelease": "5.13.0-1027-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb" ] }, { @@ -10193,8 +10320,8 @@ "kernelrelease": "5.13.0-1028-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb" ] }, { @@ -10216,12 +10343,12 @@ ] }, { - "kernelversion": "35", - "kernelrelease": "5.13.0-1030-oracle", + "kernelversion": "36", + "kernelrelease": "5.13.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_arm64.deb" ] }, { @@ -10229,9 +10356,9 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb" ] }, { @@ -10240,8 +10367,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb" ] }, { @@ -10249,9 +10376,9 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb" ] }, { @@ -10269,8 +10396,8 @@ "kernelrelease": "5.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb" ] }, @@ -10299,9 +10426,9 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb" ] }, { @@ -10309,9 +10436,9 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb" ] }, { @@ -10319,9 +10446,9 @@ "kernelrelease": "5.13.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic-64k_5.13.0-42.47_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic-64k_5.13.0-42.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb" ] }, { @@ -10329,9 +10456,9 @@ "kernelrelease": "5.13.0-43", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_arm64.deb" ] }, { @@ -10339,8 +10466,8 @@ "kernelrelease": "5.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb" ] }, @@ -10349,9 +10476,9 @@ "kernelrelease": "5.13.0-45", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic-64k_5.13.0-45.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic-64k_5.13.0-45.50_arm64.deb" ] }, { @@ -10369,26 +10496,26 @@ "kernelrelease": "5.13.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1008-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" ] }, { @@ -10441,8 +10568,8 @@ "kernelrelease": "5.13.0-1011-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" ] }, { @@ -10450,8 +10577,8 @@ "kernelrelease": "5.13.0-1012-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb" ] }, { @@ -10459,8 +10586,8 @@ "kernelrelease": "5.13.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb" ] }, { @@ -10486,8 +10613,8 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb" ] }, { @@ -10495,8 +10622,8 @@ "kernelrelease": "5.13.0-1015-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb" ] }, { @@ -10522,8 +10649,8 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb" ] }, { @@ -10553,14 +10680,23 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" ] }, + { + "kernelversion": "35", + "kernelrelease": "5.13.0-1030-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb" + ] + }, { "kernelversion": "21", "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb" ] }, { @@ -10569,8 +10705,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" ] }, { @@ -10578,8 +10714,8 @@ "kernelrelease": "5.13.0-23", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" ] }, @@ -10588,9 +10724,9 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb" ] }, { @@ -10608,9 +10744,9 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb" ] }, { @@ -10628,9 +10764,9 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb" ] }, { @@ -10638,8 +10774,8 @@ "kernelrelease": "5.13.0-1005-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb" ] }, { @@ -10647,8 +10783,8 @@ "kernelrelease": "5.13.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb" ] }, { @@ -10657,8 +10793,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" ] }, { @@ -10684,8 +10820,8 @@ "kernelrelease": "5.15.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { @@ -10699,20 +10835,20 @@ }, { "kernelversion": "7", - "kernelrelease": "5.15.0-1006-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1006-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.15.0-1006-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.15.0-1006-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb" ] }, { @@ -10729,8 +10865,8 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb" ] }, { @@ -10738,8 +10874,8 @@ "kernelrelease": "5.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb" ] }, { @@ -10756,8 +10892,8 @@ "kernelrelease": "5.15.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" ] }, { @@ -10765,17 +10901,8 @@ "kernelrelease": "5.15.0-1008-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1008-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb" ] }, { @@ -10787,14 +10914,23 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb" ] }, + { + "kernelversion": "10", + "kernelrelease": "5.15.0-1009-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1009-raspi_5.15.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1009_5.15.0-1009.10_arm64.deb" + ] + }, { "kernelversion": "30", "kernelrelease": "5.15.0-29", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb" ] }, { @@ -10802,8 +10938,8 @@ "kernelrelease": "5.15.0-30-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb" ] }, @@ -10812,8 +10948,8 @@ "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb" ] }, @@ -10832,19 +10968,9 @@ "kernelrelease": "5.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.15.0-33", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33_arm64.deb" ] }, { @@ -10857,14 +10983,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb" ] }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb" + ] + }, { "kernelversion": "36", "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb" ] }, { @@ -10872,11 +11008,30 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb" ] }, + { + "kernelversion": "37", + "kernelrelease": "5.15.0-36", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-36_5.15.0-36.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-36-generic_5.15.0-36.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-36-generic-64k_5.15.0-36.37_arm64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1008-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb" + ] + }, { "kernelversion": "4", "kernelrelease": "5.15.0-1002-oracle", @@ -10900,8 +11055,8 @@ "kernelrelease": "5.15.0-1005-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb" ] }, { @@ -10910,8 +11065,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" ] }, { @@ -10919,8 +11074,8 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" ] }, { @@ -10928,8 +11083,8 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb" ] }, { @@ -10937,8 +11092,8 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb" ] }, { @@ -10964,8 +11119,8 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb" ] }, { @@ -10973,8 +11128,8 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" ] }, { @@ -10982,8 +11137,8 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" ] }, { @@ -11000,8 +11155,8 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" ] }, { @@ -11009,8 +11164,8 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" ] }, { @@ -11045,8 +11200,8 @@ "kernelrelease": "3.13.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb" ] }, { @@ -11063,8 +11218,8 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" ] }, { @@ -11090,8 +11245,8 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb" ] }, { @@ -11099,8 +11254,8 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb" ] }, { @@ -11126,8 +11281,8 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb" ] }, { @@ -11153,8 +11308,8 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" ] }, { @@ -11162,8 +11317,8 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb" ] }, { @@ -11216,8 +11371,8 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" ] }, { @@ -11234,8 +11389,8 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb" ] }, { @@ -11243,8 +11398,8 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb" ] }, { @@ -11252,8 +11407,8 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" ] }, { @@ -11261,8 +11416,8 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" ] }, { @@ -11270,8 +11425,8 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" ] }, { @@ -11288,8 +11443,8 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb" ] }, { @@ -11297,8 +11452,8 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb" ] }, { @@ -11306,8 +11461,8 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb" ] }, { @@ -11324,8 +11479,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb" ] }, { @@ -11360,8 +11515,8 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb" ] }, { @@ -11378,8 +11533,8 @@ "kernelrelease": "3.13.0-34", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" ] }, { @@ -11396,8 +11551,8 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb" ] }, { @@ -11405,8 +11560,8 @@ "kernelrelease": "3.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb" ] }, { @@ -11414,8 +11569,8 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb" ] }, { @@ -11423,8 +11578,8 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb" ] }, { @@ -11432,8 +11587,8 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" ] }, { @@ -11486,8 +11641,8 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" ] }, { @@ -11504,8 +11659,8 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb" ] }, { @@ -11549,8 +11704,8 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb" ] }, { @@ -11558,8 +11713,8 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" ] }, { @@ -11567,8 +11722,8 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" ] }, { @@ -11594,8 +11749,8 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" ] }, { @@ -11612,8 +11767,8 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" ] }, { @@ -11621,8 +11776,8 @@ "kernelrelease": "3.13.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb" ] }, { @@ -11630,8 +11785,8 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb" ] }, { @@ -11648,8 +11803,8 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb" ] }, { @@ -11666,8 +11821,8 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb" ] }, { @@ -11702,8 +11857,8 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" ] }, { @@ -11738,8 +11893,8 @@ "kernelrelease": "3.13.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb" ] }, { @@ -11756,8 +11911,8 @@ "kernelrelease": "3.13.0-95", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb" ] }, { @@ -11765,8 +11920,8 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" ] }, { @@ -11801,8 +11956,8 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" ] }, { @@ -11855,8 +12010,8 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" ] }, { @@ -11864,8 +12019,8 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb" ] }, { @@ -11873,8 +12028,8 @@ "kernelrelease": "3.16.0-39-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb" ] }, { @@ -11900,8 +12055,8 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" ] }, { @@ -11918,8 +12073,8 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb" ] }, { @@ -11945,8 +12100,8 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb" ] }, { @@ -11963,8 +12118,8 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb" ] }, { @@ -11972,8 +12127,8 @@ "kernelrelease": "3.16.0-53-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" ] }, { @@ -11981,8 +12136,8 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb" ] }, { @@ -11999,8 +12154,8 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb" ] }, { @@ -12017,8 +12172,8 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" ] }, { @@ -12035,8 +12190,8 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb" ] }, { @@ -12053,8 +12208,8 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb" ] }, { @@ -12062,8 +12217,8 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" ] }, { @@ -12071,8 +12226,8 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb" ] }, { @@ -12080,8 +12235,8 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb" ] }, { @@ -12098,8 +12253,8 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb" ] }, { @@ -12116,8 +12271,8 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" ] }, { @@ -12125,8 +12280,8 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb" ] }, { @@ -12152,8 +12307,8 @@ "kernelrelease": "3.19.0-28-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb" ] }, { @@ -12161,8 +12316,8 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb" ] }, { @@ -12188,8 +12343,8 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" ] }, { @@ -12206,8 +12361,8 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" ] }, { @@ -12224,8 +12379,8 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb" ] }, { @@ -12233,8 +12388,8 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" ] }, { @@ -12242,8 +12397,8 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb" ] }, { @@ -12269,8 +12424,8 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb" ] }, { @@ -12278,8 +12433,8 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" ] }, { @@ -12323,8 +12478,8 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" ] }, { @@ -12332,8 +12487,8 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb" ] }, { @@ -12341,8 +12496,8 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" ] }, { @@ -12350,8 +12505,8 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" ] }, { @@ -12359,8 +12514,8 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" ] }, { @@ -12413,8 +12568,8 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb" ] }, { @@ -12422,8 +12577,8 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb" ] }, { @@ -12431,8 +12586,8 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" ] }, { @@ -12458,8 +12613,8 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb" ] }, { @@ -12467,8 +12622,8 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" ] }, { @@ -12476,8 +12631,8 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb" ] }, { @@ -12512,8 +12667,8 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb" ] }, { @@ -12521,8 +12676,8 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" ] }, { @@ -12530,8 +12685,8 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" ] }, { @@ -12539,8 +12694,8 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" ] }, { @@ -12566,8 +12721,8 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb" ] }, { @@ -12575,8 +12730,8 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" ] }, { @@ -12620,8 +12775,8 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" ] }, { @@ -12638,8 +12793,8 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb" ] }, { @@ -12674,8 +12829,8 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb" ] }, { @@ -12683,8 +12838,8 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb" ] }, { @@ -12692,8 +12847,8 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" ] }, { @@ -12701,8 +12856,8 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" ] }, { @@ -12710,8 +12865,8 @@ "kernelrelease": "4.4.0-139-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb" ] }, { @@ -12719,8 +12874,8 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" ] }, { @@ -12728,8 +12883,8 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb" ] }, { @@ -12773,8 +12928,8 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb" ] }, { @@ -12791,8 +12946,8 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" ] }, { @@ -12809,8 +12964,8 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" ] }, { @@ -12863,8 +13018,8 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb" ] }, { @@ -12872,8 +13027,8 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb" ] }, { @@ -12890,8 +13045,8 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb" ] }, { @@ -12899,8 +13054,8 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" ] }, { @@ -12908,8 +13063,8 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" ] }, { @@ -12917,8 +13072,8 @@ "kernelrelease": "4.4.0-64-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb" ] }, { @@ -12953,8 +13108,8 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" ] }, { @@ -12962,8 +13117,8 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" ] }, { @@ -12989,8 +13144,8 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" ] }, { @@ -12998,8 +13153,8 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" ] }, { @@ -13007,8 +13162,8 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" ] }, { @@ -13016,8 +13171,8 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" ] }, { @@ -13034,8 +13189,8 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb" ] }, { @@ -13043,8 +13198,8 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" ] }, { @@ -13052,8 +13207,8 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" ] }, { @@ -13070,8 +13225,8 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" ] }, { @@ -13133,8 +13288,8 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" ] }, { @@ -13151,8 +13306,8 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb" ] }, { @@ -13169,8 +13324,8 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" ] }, { @@ -13196,8 +13351,8 @@ "kernelrelease": "4.4.0-146-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb" ] }, { @@ -13205,8 +13360,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" ] }, { @@ -13223,8 +13378,8 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb" ] }, { @@ -13250,8 +13405,8 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" ] }, { @@ -13277,8 +13432,8 @@ "kernelrelease": "4.10.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb" ] }, { @@ -13286,8 +13441,8 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb" ] }, { @@ -13304,8 +13459,8 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb" ] }, { @@ -13322,8 +13477,8 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb" ] }, { @@ -13340,8 +13495,8 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb" ] }, { @@ -13358,8 +13513,8 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb" ] }, { @@ -13376,8 +13531,8 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" ] }, { @@ -13385,8 +13540,8 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb" ] }, { @@ -13421,8 +13576,8 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb" ] }, { @@ -13430,8 +13585,8 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb" ] }, { @@ -13439,8 +13594,8 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" ] }, { @@ -13466,8 +13621,8 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb" ] }, { @@ -13475,8 +13630,8 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" ] }, { @@ -13484,8 +13639,8 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb" ] }, { @@ -13529,8 +13684,8 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" ] }, { @@ -13538,8 +13693,8 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" ] }, { @@ -13556,8 +13711,8 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" ] }, { @@ -13583,8 +13738,8 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb" ] }, { @@ -13646,8 +13801,8 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb" ] }, { @@ -13673,8 +13828,8 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" ] }, { @@ -13682,8 +13837,8 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb" ] }, { @@ -13691,8 +13846,8 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb" ] }, { @@ -13727,8 +13882,8 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" ] }, { @@ -13763,8 +13918,8 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb" ] }, { @@ -13781,8 +13936,8 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb" ] }, { @@ -13790,8 +13945,8 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" ] }, { @@ -13835,8 +13990,8 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb" ] }, { @@ -13862,8 +14017,8 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb" ] }, { @@ -13880,8 +14035,8 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" ] }, { @@ -13898,8 +14053,8 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb" ] }, { @@ -13925,8 +14080,8 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" ] }, { @@ -13934,8 +14089,8 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" ] }, { @@ -13943,8 +14098,8 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" ] }, { @@ -13961,8 +14116,8 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb" ] }, { @@ -13970,8 +14125,8 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" ] }, { @@ -13997,8 +14152,8 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb" ] }, { @@ -14006,8 +14161,8 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" ] }, { @@ -14015,8 +14170,8 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" ] }, { @@ -14051,8 +14206,8 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" ] }, { @@ -14060,8 +14215,8 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" ] }, { @@ -14069,8 +14224,8 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" ] }, { @@ -14105,8 +14260,8 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" ] }, { @@ -14114,8 +14269,8 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb" ] }, { @@ -14123,8 +14278,8 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" ] }, { @@ -14132,8 +14287,8 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb" ] }, { @@ -14141,8 +14296,8 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb" ] }, { @@ -14159,8 +14314,8 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb" ] }, { @@ -14168,8 +14323,8 @@ "kernelrelease": "4.4.0-116", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" ] }, { @@ -14195,8 +14350,8 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb" ] }, { @@ -14204,8 +14359,8 @@ "kernelrelease": "4.4.0-127", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb" ] }, { @@ -14213,8 +14368,8 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" ] }, { @@ -14222,8 +14377,8 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb" ] }, { @@ -14231,8 +14386,8 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" ] }, { @@ -14240,8 +14395,8 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb" ] }, { @@ -14285,8 +14440,8 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb" ] }, { @@ -14294,8 +14449,8 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb" ] }, { @@ -14303,8 +14458,8 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" ] }, { @@ -14312,8 +14467,8 @@ "kernelrelease": "4.4.0-148", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_arm64.deb" ] }, { @@ -14339,8 +14494,8 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb" ] }, { @@ -14366,8 +14521,8 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" ] }, { @@ -14384,8 +14539,8 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" ] }, { @@ -14402,8 +14557,8 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" ] }, { @@ -14411,8 +14566,8 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" ] }, { @@ -14429,8 +14584,8 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" ] }, { @@ -14465,8 +14620,8 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb" ] }, { @@ -14519,8 +14674,8 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" ] }, { @@ -14528,8 +14683,8 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb" ] }, { @@ -14546,8 +14701,8 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb" ] }, { @@ -14564,8 +14719,8 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb" ] }, { @@ -14591,8 +14746,8 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb" ] }, { @@ -14609,8 +14764,8 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb" ] }, { @@ -14636,8 +14791,8 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb" ] }, { @@ -14645,8 +14800,8 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb" ] }, { @@ -14717,8 +14872,8 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb" ] }, { @@ -14735,8 +14890,8 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" ] }, { @@ -14744,8 +14899,8 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" ] }, { @@ -14753,8 +14908,8 @@ "kernelrelease": "4.4.0-57", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_arm64.deb" ] }, { @@ -14780,8 +14935,8 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb" ] }, { @@ -14816,8 +14971,8 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb" ] }, { @@ -14825,8 +14980,8 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb" ] }, { @@ -14843,8 +14998,8 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb" ] }, { @@ -14861,8 +15016,8 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" ] }, { @@ -14897,8 +15052,8 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" ] }, { @@ -14933,8 +15088,8 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb" ] }, { @@ -14960,8 +15115,8 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb" ] }, { @@ -14969,8 +15124,8 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb" ] }, { @@ -14996,8 +15151,8 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" ] }, { @@ -15014,8 +15169,8 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb" ] }, { @@ -15023,8 +15178,8 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb" ] }, { @@ -15041,8 +15196,8 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb" ] }, { @@ -15050,8 +15205,8 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb" ] }, { @@ -15068,8 +15223,8 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" ] }, { @@ -15077,8 +15232,8 @@ "kernelrelease": "4.4.0-122", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" ] }, { @@ -15095,8 +15250,8 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" ] }, { @@ -15158,8 +15313,8 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" ] }, { @@ -15167,8 +15322,8 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" ] }, { @@ -15176,8 +15331,8 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" ] } ], @@ -15238,6 +15393,14 @@ "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.1/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3139.2.2", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.2/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "3033.1.0", @@ -15310,6 +15473,14 @@ "https://beta.release.flatcar-linux.net/arm64-usr/3185.1.1/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3227.1.0", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3227.1.0/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "2345.0.1", @@ -15669,6 +15840,14 @@ "headers": [ "https://alpha.release.flatcar-linux.net/arm64-usr/3227.0.0/flatcar_developer_container.bin.bz2" ] + }, + { + "kernelversion": 1, + "kernelrelease": "3255.0.0", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3255.0.0/flatcar_developer_container.bin.bz2" + ] } ] } diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index 97b58cc..941fa5f 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -1801,7 +1801,7 @@ "kernelrelease": "5.10.75-82.359.amzn2022.x86_64", "target": "amazonlinux2022", "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/c9592b941a6713c183a21e4f4f29a4dcf062a1794265426996ffedb0992cebe6/kernel-devel-5.10.75-82.359.amzn2022.x86_64.rpm" + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/db05fcc4b022af5ce6a038ac10b7ed311f7611a5a0c69c9df6233bf2d6bc6c73/x86_64/../../../../blobstore/c9592b941a6713c183a21e4f4f29a4dcf062a1794265426996ffedb0992cebe6/kernel-devel-5.10.75-82.359.amzn2022.x86_64.rpm" ] } ], @@ -1811,7 +1811,7 @@ "kernelrelease": "3.10.0-1160.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" ] }, { @@ -1827,7 +1827,7 @@ "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" ] }, { @@ -1851,7 +1851,7 @@ "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" ] }, { @@ -1859,7 +1859,7 @@ "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" ] }, { @@ -1899,7 +1899,7 @@ "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" ] }, { @@ -1915,7 +1915,7 @@ "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" ] }, { @@ -1923,7 +1923,7 @@ "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" ] }, { @@ -1947,7 +1947,7 @@ "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" ] }, { @@ -1955,7 +1955,7 @@ "kernelrelease": "3.10.0-1160.66.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" ] }, { @@ -10221,7 +10221,7 @@ "kernelrelease": "4.19.15-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-devel-4.19.15-2.ph3.x86_64.rpm" ] }, { @@ -10229,7 +10229,7 @@ "kernelrelease": "4.19.15-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" ] }, { @@ -10245,7 +10245,7 @@ "kernelrelease": "4.19.104-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-3.ph3.x86_64.rpm" ] }, { @@ -10261,7 +10261,7 @@ "kernelrelease": "4.19.115-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm" ] }, { @@ -10293,7 +10293,7 @@ "kernelrelease": "4.19.115-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-5.ph3.x86_64.rpm" ] }, { @@ -10301,7 +10301,7 @@ "kernelrelease": "4.19.115-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-6.ph3.x86_64.rpm" ] }, { @@ -10325,7 +10325,7 @@ "kernelrelease": "4.19.124-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-1.ph3.x86_64.rpm" ] }, { @@ -10341,7 +10341,7 @@ "kernelrelease": "4.19.126-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.126-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" ] }, { @@ -10381,7 +10381,7 @@ "kernelrelease": "4.19.132-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-1.ph3.x86_64.rpm" ] }, { @@ -10397,7 +10397,7 @@ "kernelrelease": "4.19.132-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-3.ph3.x86_64.rpm" ] }, { @@ -10405,7 +10405,7 @@ "kernelrelease": "4.19.132-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-5.ph3.x86_64.rpm" ] }, { @@ -10421,7 +10421,7 @@ "kernelrelease": "4.19.138-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-1.ph3.x86_64.rpm" ] }, { @@ -10429,7 +10429,7 @@ "kernelrelease": "4.19.138-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.138-2.ph3.x86_64.rpm" ] }, { @@ -10445,7 +10445,7 @@ "kernelrelease": "4.19.145-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-1.ph3.x86_64.rpm" ] }, { @@ -10453,7 +10453,7 @@ "kernelrelease": "4.19.145-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-2.ph3.x86_64.rpm" ] }, { @@ -10461,7 +10461,7 @@ "kernelrelease": "4.19.145-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm" ] }, { @@ -10469,7 +10469,7 @@ "kernelrelease": "4.19.148-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-1.ph3.x86_64.rpm" ] }, { @@ -10477,7 +10477,7 @@ "kernelrelease": "4.19.148-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" ] }, { @@ -10485,7 +10485,7 @@ "kernelrelease": "4.19.148-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-3.ph3.x86_64.rpm" ] }, { @@ -10517,7 +10517,7 @@ "kernelrelease": "4.19.150-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.150-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm" ] }, { @@ -10525,7 +10525,7 @@ "kernelrelease": "4.19.154-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-1.ph3.x86_64.rpm" ] }, { @@ -10549,7 +10549,7 @@ "kernelrelease": "4.19.154-8.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-8.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" ] }, { @@ -10573,7 +10573,7 @@ "kernelrelease": "4.19.160-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm" ] }, { @@ -10597,7 +10597,7 @@ "kernelrelease": "4.19.164-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.164-1.ph3.x86_64.rpm" ] }, { @@ -10605,7 +10605,7 @@ "kernelrelease": "4.19.164-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm" ] }, { @@ -10613,7 +10613,7 @@ "kernelrelease": "4.19.174-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-2.ph3.x86_64.rpm" ] }, { @@ -10653,7 +10653,7 @@ "kernelrelease": "4.19.182-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-1.ph3.x86_64.rpm" ] }, { @@ -10661,7 +10661,7 @@ "kernelrelease": "4.19.182-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.182-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-2.ph3.x86_64.rpm" ] }, { @@ -10669,7 +10669,7 @@ "kernelrelease": "4.19.186-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-1.ph3.x86_64.rpm" ] }, { @@ -10701,7 +10701,7 @@ "kernelrelease": "4.19.189-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-2.ph3.x86_64.rpm" ] }, { @@ -10717,7 +10717,7 @@ "kernelrelease": "4.19.189-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" ] }, { @@ -10733,7 +10733,7 @@ "kernelrelease": "4.19.190-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.190-1.ph3.x86_64.rpm" ] }, { @@ -10741,7 +10741,7 @@ "kernelrelease": "4.19.190-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" ] }, { @@ -10757,7 +10757,7 @@ "kernelrelease": "4.19.191-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-1.ph3.x86_64.rpm" ] }, { @@ -10773,7 +10773,7 @@ "kernelrelease": "4.19.191-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm" ] }, { @@ -10781,7 +10781,7 @@ "kernelrelease": "4.19.198-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.198-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-1.ph3.x86_64.rpm" ] }, { @@ -10789,7 +10789,7 @@ "kernelrelease": "4.19.198-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-2.ph3.x86_64.rpm" ] }, { @@ -10797,7 +10797,7 @@ "kernelrelease": "4.19.198-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-3.ph3.x86_64.rpm" ] }, { @@ -10813,7 +10813,7 @@ "kernelrelease": "4.19.205-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.205-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.205-1.ph3.x86_64.rpm" ] }, { @@ -10821,7 +10821,7 @@ "kernelrelease": "4.19.208-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.208-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.208-1.ph3.x86_64.rpm" ] }, { @@ -10845,7 +10845,7 @@ "kernelrelease": "4.19.217-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" ] }, { @@ -10853,7 +10853,7 @@ "kernelrelease": "4.19.219-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-1.ph3.x86_64.rpm" ] }, { @@ -10861,7 +10861,7 @@ "kernelrelease": "4.19.219-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-3.ph3.x86_64.rpm" ] }, { @@ -10869,7 +10869,7 @@ "kernelrelease": "4.19.219-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm" ] }, { @@ -10877,7 +10877,7 @@ "kernelrelease": "4.19.219-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-5.ph3.x86_64.rpm" ] }, { @@ -10885,7 +10885,7 @@ "kernelrelease": "4.19.224-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-1.ph3.x86_64.rpm" ] }, { @@ -10901,7 +10901,7 @@ "kernelrelease": "4.19.225-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-3.ph3.x86_64.rpm" ] }, { @@ -10917,7 +10917,7 @@ "kernelrelease": "4.19.229-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.229-1.ph3.x86_64.rpm" ] }, { @@ -10925,7 +10925,7 @@ "kernelrelease": "4.19.229-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" ] }, { @@ -10941,7 +10941,7 @@ "kernelrelease": "4.19.232-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm" ] }, { @@ -10949,7 +10949,7 @@ "kernelrelease": "4.19.232-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-2.ph3.x86_64.rpm" ] }, { @@ -10957,7 +10957,7 @@ "kernelrelease": "4.19.232-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-3.ph3.x86_64.rpm" ] }, { @@ -10973,7 +10973,7 @@ "kernelrelease": "4.19.241-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.241-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.241-1.ph3.x86_64.rpm" ] }, { @@ -10984,6 +10984,14 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.241-2.ph3.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.245-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.245-1.ph3.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.29-1.ph3.x86_64", @@ -11005,7 +11013,7 @@ "kernelrelease": "4.19.40-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-2.ph3.x86_64.rpm" ] }, { @@ -11013,7 +11021,7 @@ "kernelrelease": "4.19.40-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-3.ph3.x86_64.rpm" ] }, { @@ -11021,7 +11029,7 @@ "kernelrelease": "4.19.52-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.52-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm" ] }, { @@ -11053,7 +11061,7 @@ "kernelrelease": "4.19.69-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.69-1.ph3.x86_64.rpm" ] }, { @@ -11061,7 +11069,7 @@ "kernelrelease": "4.19.72-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-1.ph3.x86_64.rpm" ] }, { @@ -11069,7 +11077,7 @@ "kernelrelease": "4.19.72-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-2.ph3.x86_64.rpm" ] }, { @@ -11093,7 +11101,7 @@ "kernelrelease": "4.19.79-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.79-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" ] }, { @@ -11109,7 +11117,7 @@ "kernelrelease": "4.19.82-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.82-1.ph3.x86_64.rpm" ] }, { @@ -11117,7 +11125,7 @@ "kernelrelease": "4.19.84-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.84-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-1.ph3.x86_64.rpm" ] }, { @@ -11141,7 +11149,7 @@ "kernelrelease": "4.19.87-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" ] }, { @@ -11157,7 +11165,7 @@ "kernelrelease": "4.19.97-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" ] }, { @@ -11165,7 +11173,7 @@ "kernelrelease": "4.19.97-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-2.ph3.x86_64.rpm" ] }, { @@ -11189,7 +11197,7 @@ "kernelrelease": "4.19.97-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-5.ph3.x86_64.rpm" ] }, { @@ -11237,7 +11245,7 @@ "kernelrelease": "4.19.174-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-1.ph3.x86_64.rpm" ] }, { @@ -11277,7 +11285,7 @@ "kernelrelease": "4.19.65-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.65-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.65-1.ph3.x86_64.rpm" ] }, { @@ -11301,7 +11309,7 @@ "kernelrelease": "4.19.132-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-4.ph3.x86_64.rpm" ] }, { @@ -11341,7 +11349,7 @@ "kernelrelease": "4.19.191-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" ] }, { @@ -11405,7 +11413,7 @@ "kernelrelease": "5.10.103-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-1.ph4.x86_64.rpm" ] }, { @@ -11413,7 +11421,7 @@ "kernelrelease": "5.10.103-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-2.ph4.x86_64.rpm" ] }, { @@ -11421,7 +11429,7 @@ "kernelrelease": "5.10.103-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-3.ph4.x86_64.rpm" ] }, { @@ -11437,7 +11445,7 @@ "kernelrelease": "5.10.109-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-2.ph4.x86_64.rpm" ] }, { @@ -11445,7 +11453,7 @@ "kernelrelease": "5.10.109-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-3.ph4.x86_64.rpm" ] }, { @@ -11453,7 +11461,7 @@ "kernelrelease": "5.10.25-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-1.ph4.x86_64.rpm" ] }, { @@ -11469,7 +11477,7 @@ "kernelrelease": "5.10.25-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-2.ph4.x86_64.rpm" ] }, { @@ -11477,7 +11485,7 @@ "kernelrelease": "5.10.25-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-3.ph4.x86_64.rpm" ] }, { @@ -11485,7 +11493,7 @@ "kernelrelease": "5.10.25-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-5.ph4.x86_64.rpm" ] }, { @@ -11493,7 +11501,7 @@ "kernelrelease": "5.10.25-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm" ] }, { @@ -11501,7 +11509,7 @@ "kernelrelease": "5.10.25-7.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-7.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-7.ph4.x86_64.rpm" ] }, { @@ -11509,7 +11517,7 @@ "kernelrelease": "5.10.25-9.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-9.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-9.ph4.x86_64.rpm" ] }, { @@ -11517,7 +11525,7 @@ "kernelrelease": "5.10.35-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" ] }, { @@ -11533,7 +11541,7 @@ "kernelrelease": "5.10.35-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-3.ph4.x86_64.rpm" ] }, { @@ -11557,7 +11565,7 @@ "kernelrelease": "5.10.42-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm" ] }, { @@ -11565,7 +11573,7 @@ "kernelrelease": "5.10.42-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-2.ph4.x86_64.rpm" ] }, { @@ -11573,7 +11581,7 @@ "kernelrelease": "5.10.42-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-3.ph4.x86_64.rpm" ] }, { @@ -11581,7 +11589,7 @@ "kernelrelease": "5.10.46-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-1.ph4.x86_64.rpm" ] }, { @@ -11597,7 +11605,7 @@ "kernelrelease": "5.10.52-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.52-1.ph4.x86_64.rpm" ] }, { @@ -11613,7 +11621,7 @@ "kernelrelease": "5.10.61-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-1.ph4.x86_64.rpm" ] }, { @@ -11621,7 +11629,7 @@ "kernelrelease": "5.10.61-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-2.ph4.x86_64.rpm" ] }, { @@ -11661,7 +11669,7 @@ "kernelrelease": "5.10.83-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-2.ph4.x86_64.rpm" ] }, { @@ -11669,7 +11677,7 @@ "kernelrelease": "5.10.83-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm" ] }, { @@ -11677,7 +11685,7 @@ "kernelrelease": "5.10.83-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-4.ph4.x86_64.rpm" ] }, { @@ -11693,7 +11701,7 @@ "kernelrelease": "5.10.83-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-6.ph4.x86_64.rpm" ] }, { @@ -11717,7 +11725,7 @@ "kernelrelease": "5.10.93-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-3.ph4.x86_64.rpm" ] }, { @@ -11725,7 +11733,7 @@ "kernelrelease": "5.10.93-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-4.ph4.x86_64.rpm" ] }, { @@ -11733,7 +11741,7 @@ "kernelrelease": "5.10.93-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-5.ph4.x86_64.rpm" ] }, { @@ -11863,11 +11871,11 @@ "kernelrelease": "5.17.3-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-amd64_5.17.3-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-amd64_5.17.3-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb" ] }, { @@ -11886,10 +11894,10 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb" ] }, { @@ -11897,11 +11905,11 @@ "kernelrelease": "5.15.15-2~bpo11+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb" ] }, { @@ -11909,11 +11917,11 @@ "kernelrelease": "5.16.11-1~bpo11+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-amd64_5.16.11-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb" ] }, { @@ -11923,9 +11931,9 @@ "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb" ] }, { @@ -11936,8 +11944,8 @@ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb" ] }, { @@ -11945,11 +11953,11 @@ "kernelrelease": "5.10.84-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb" ] }, { @@ -11957,10 +11965,10 @@ "kernelrelease": "5.10.106-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb" ] }, @@ -11969,11 +11977,11 @@ "kernelrelease": "5.10.92-1~bpo10+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb" ] }, { @@ -11981,11 +11989,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb" ] }, { @@ -11993,11 +12001,11 @@ "kernelrelease": "5.10.70-1~bpo10+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb" ] }, { @@ -12005,10 +12013,10 @@ "kernelrelease": "4.19.208-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb" ] }, @@ -12017,11 +12025,11 @@ "kernelrelease": "4.19.235-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb" ] }, { @@ -12029,11 +12037,11 @@ "kernelrelease": "5.18-1~exp1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-cloud-amd64_5.18-1~exp1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-rt-amd64_5.18-1~exp1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common-rt_5.18-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-amd64_5.18-1~exp1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common_5.18-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-cloud-amd64_5.18-1~exp1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-amd64_5.18-1~exp1_amd64.deb" ] }, { @@ -12050,11 +12058,11 @@ "kernelrelease": "5.17.11-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-cloud-amd64_5.17.11-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common-rt_5.17.11-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common_5.17.11-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common-rt_5.17.11-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-rt-amd64_5.17.11-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-amd64_5.17.11-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-rt-amd64_5.17.11-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-cloud-amd64_5.17.11-1_amd64.deb" ] }, { @@ -12062,11 +12070,11 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb" ] }, { @@ -12074,8 +12082,8 @@ "kernelrelease": "4.9.65-2+grsecunoff1~bpo9+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-common-grsec_4.9.65-2+grsecunoff1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-common-grsec_4.9.65-2+grsecunoff1~bpo9+1_all.deb" ] }, { @@ -12083,10 +12091,10 @@ "kernelrelease": "4.9.228-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb" ] }, { @@ -12094,11 +12102,11 @@ "kernelrelease": "5.10.103-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb" ] }, { @@ -12106,11 +12114,11 @@ "kernelrelease": "4.19.232-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb" ] }, { @@ -12136,10 +12144,10 @@ "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb" ] }, { @@ -12147,10 +12155,10 @@ "kernelrelease": "4.9.210-1+deb9u1~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" ] }, { @@ -12158,10 +12166,10 @@ "kernelrelease": "4.9.303-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" ] }, { @@ -12169,11 +12177,11 @@ "kernelrelease": "4.19.232-1~deb9u1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb" ] } ], @@ -12183,9 +12191,9 @@ "kernelrelease": "4.15.0-1087-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb" ] }, @@ -12194,8 +12202,8 @@ "kernelrelease": "4.15.0-1088-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb" ] @@ -12206,8 +12214,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb" ] }, @@ -12217,20 +12225,20 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb" ] }, { - "kernelversion": "104", - "kernelrelease": "4.15.0-1095-oracle", + "kernelversion": "105", + "kernelrelease": "4.15.0-1096-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1096-oracle_4.15.0-1096.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1096_4.15.0-1096.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1096_4.15.0-1096.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1096-oracle_4.15.0-1096.105_amd64.deb" ] }, { @@ -12238,10 +12246,10 @@ "kernelrelease": "4.15.0-1103-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb" ] }, { @@ -12249,10 +12257,10 @@ "kernelrelease": "4.15.0-1104-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb" ] }, { @@ -12260,10 +12268,10 @@ "kernelrelease": "4.15.0-1104-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" ] }, { @@ -12271,10 +12279,10 @@ "kernelrelease": "4.15.0-1107-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb" ] }, { @@ -12282,10 +12290,10 @@ "kernelrelease": "4.15.0-1110-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" ] }, { @@ -12294,9 +12302,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" ] }, { @@ -12304,10 +12312,10 @@ "kernelrelease": "4.15.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" ] }, { @@ -12315,10 +12323,10 @@ "kernelrelease": "4.15.0-1113-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb" ] }, { @@ -12326,10 +12334,10 @@ "kernelrelease": "4.15.0-1113-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb" ] }, { @@ -12337,10 +12345,10 @@ "kernelrelease": "4.15.0-1114-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb" ] }, { @@ -12348,9 +12356,9 @@ "kernelrelease": "4.15.0-1115-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" ] }, @@ -12359,10 +12367,10 @@ "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" ] }, { @@ -12370,9 +12378,9 @@ "kernelrelease": "4.15.0-1116-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" ] }, @@ -12381,10 +12389,10 @@ "kernelrelease": "4.15.0-1116-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb" ] }, { @@ -12394,8 +12402,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" ] }, { @@ -12403,10 +12411,10 @@ "kernelrelease": "4.15.0-1117-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb" ] }, { @@ -12414,9 +12422,9 @@ "kernelrelease": "4.15.0-1117-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1117_4.15.0-1117.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1117-kvm_4.15.0-1117.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1117_4.15.0-1117.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1117_4.15.0-1117.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1117-kvm_4.15.0-1117.120_amd64.deb" ] }, @@ -12425,8 +12433,8 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb" ] @@ -12436,10 +12444,10 @@ "kernelrelease": "4.15.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" ] }, { @@ -12447,9 +12455,9 @@ "kernelrelease": "4.15.0-1121-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb" ] }, @@ -12458,9 +12466,9 @@ "kernelrelease": "4.15.0-1122-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" ] }, @@ -12469,10 +12477,10 @@ "kernelrelease": "4.15.0-1123-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb" ] }, { @@ -12480,21 +12488,10 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "4.15.0-1124-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" ] }, { @@ -12503,9 +12500,20 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + ] + }, + { + "kernelversion": "139", + "kernelrelease": "4.15.0-1125-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1125-gcp_4.15.0-1125.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1125_4.15.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1125_4.15.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1125-gcp_4.15.0-1125.139_amd64.deb" ] }, { @@ -12513,10 +12521,10 @@ "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" ] }, { @@ -12525,8 +12533,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb" ] }, @@ -12535,32 +12543,21 @@ "kernelrelease": "4.15.0-1129-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" ] }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-1130-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" - ] - }, { "kernelversion": "143", "kernelrelease": "4.15.0-1130-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" ] }, { @@ -12570,8 +12567,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb" ] }, { @@ -12579,10 +12576,10 @@ "kernelrelease": "4.15.0-1131-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" ] }, { @@ -12590,8 +12587,8 @@ "kernelrelease": "4.15.0-1134-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" ] @@ -12601,10 +12598,10 @@ "kernelrelease": "4.15.0-1135-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" ] }, { @@ -12612,10 +12609,10 @@ "kernelrelease": "4.15.0-1138-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb" ] }, { @@ -12623,10 +12620,10 @@ "kernelrelease": "4.15.0-1139-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb" ] }, { @@ -12634,10 +12631,10 @@ "kernelrelease": "4.15.0-1140-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1140_4.15.0-1140.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1140-azure_4.15.0-1140.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1140-azure_4.15.0-1140.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1140_4.15.0-1140.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1140-azure_4.15.0-1140.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1140_4.15.0-1140.153_all.deb" ] }, { @@ -12645,12 +12642,12 @@ "kernelrelease": "4.15.0-167", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb" ] }, { @@ -12659,11 +12656,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb" ] }, { @@ -12671,12 +12668,12 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" ] }, { @@ -12684,11 +12681,11 @@ "kernelrelease": "4.15.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb" ] }, @@ -12697,12 +12694,12 @@ "kernelrelease": "4.15.0-172", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb" ] }, { @@ -12711,11 +12708,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb" ] }, { @@ -12723,9 +12720,9 @@ "kernelrelease": "4.15.0-174", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" @@ -12736,12 +12733,12 @@ "kernelrelease": "4.15.0-176", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" ] }, { @@ -12749,12 +12746,12 @@ "kernelrelease": "4.15.0-177", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" ] }, { @@ -12762,12 +12759,12 @@ "kernelrelease": "4.15.0-179", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb" ] }, { @@ -12775,12 +12772,12 @@ "kernelrelease": "4.15.0-180", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb" ] }, { @@ -12788,11 +12785,11 @@ "kernelrelease": "4.15.0-181", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb" ] }, @@ -12803,10 +12800,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182_4.15.0-182.191_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-generic_4.15.0-182.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-lowlatency_4.15.0-182.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182_4.15.0-182.191_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-lowlatency_4.15.0-182.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-generic_4.15.0-182.191_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-generic_4.15.0-182.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-lowlatency_4.15.0-182.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-lowlatency_4.15.0-182.191_amd64.deb" ] }, { @@ -12815,9 +12812,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" ] }, { @@ -12826,10 +12823,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" ] }, @@ -12839,9 +12836,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { @@ -12850,8 +12847,8 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb" ] }, @@ -12860,10 +12857,10 @@ "kernelrelease": "5.4.0-1034-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -12871,8 +12868,8 @@ "kernelrelease": "5.4.0-1034-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" ] @@ -12882,10 +12879,10 @@ "kernelrelease": "5.4.0-1034-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -12893,10 +12890,10 @@ "kernelrelease": "5.4.0-1040-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb" ] }, { @@ -12904,10 +12901,21 @@ "kernelrelease": "5.4.0-1043-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb" + ] + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1044-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1044_5.4.0-1044.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1044-gkeop_5.4.0-1044.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1044_5.4.0-1044.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1044-gkeop_5.4.0-1044.45~18.04.1_amd64.deb" ] }, { @@ -12915,12 +12923,12 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb" ] }, { @@ -12928,10 +12936,10 @@ "kernelrelease": "5.4.0-1056-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { @@ -12939,10 +12947,10 @@ "kernelrelease": "5.4.0-1056-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" ] }, { @@ -12950,10 +12958,10 @@ "kernelrelease": "5.4.0-1058-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb" ] }, { @@ -12961,9 +12969,9 @@ "kernelrelease": "5.4.0-1058-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" ] }, @@ -12972,34 +12980,34 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1060-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1060-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { @@ -13007,21 +13015,10 @@ "kernelrelease": "5.4.0-1061-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { @@ -13030,20 +13027,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { @@ -13051,21 +13048,21 @@ "kernelrelease": "5.4.0-1062-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-oracle-5.4", + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb" ] }, { @@ -13075,8 +13072,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1063-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" ] }, { @@ -13084,9 +13092,9 @@ "kernelrelease": "5.4.0-1063-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" ] }, @@ -13095,10 +13103,10 @@ "kernelrelease": "5.4.0-1063-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" ] }, { @@ -13108,19 +13116,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" ] }, { @@ -13129,20 +13126,20 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { @@ -13150,32 +13147,32 @@ "kernelrelease": "5.4.0-1064-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1065-gcp-5.4", + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1065-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb" ] }, { @@ -13183,10 +13180,21 @@ "kernelrelease": "5.4.0-1066-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { @@ -13194,10 +13202,10 @@ "kernelrelease": "5.4.0-1067-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" ] }, { @@ -13206,9 +13214,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { @@ -13216,10 +13224,10 @@ "kernelrelease": "5.4.0-1068-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { @@ -13227,10 +13235,10 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" ] }, { @@ -13238,10 +13246,10 @@ "kernelrelease": "5.4.0-1069-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { @@ -13249,10 +13257,10 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { @@ -13260,10 +13268,10 @@ "kernelrelease": "5.4.0-1069-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { @@ -13271,10 +13279,10 @@ "kernelrelease": "5.4.0-1069-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" ] }, { @@ -13282,10 +13290,10 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" ] }, { @@ -13293,10 +13301,10 @@ "kernelrelease": "5.4.0-1070-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" ] }, { @@ -13304,10 +13312,10 @@ "kernelrelease": "5.4.0-1071-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb" ] }, { @@ -13316,9 +13324,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb" ] }, { @@ -13326,9 +13334,9 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb" ] }, @@ -13337,43 +13345,10 @@ "kernelrelease": "5.4.0-1071-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" ] }, { @@ -13381,10 +13356,21 @@ "kernelrelease": "5.4.0-1072-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" + ] + }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" ] }, { @@ -13392,32 +13378,32 @@ "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" ] }, { "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1073-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1073-gke_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1073-gke_5.4.0-1073.78~18.04.1_amd64.deb" ] }, { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1073-oracle-5.4", + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1074-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1074_5.4.0-1074.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1074_5.4.0-1074.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80~18.04.1_amd64.deb" ] }, { @@ -13426,9 +13412,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb" ] }, { @@ -13436,10 +13422,10 @@ "kernelrelease": "5.4.0-1075-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb" ] }, { @@ -13448,9 +13434,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1076-aws_5.4.0-1076.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1076-aws_5.4.0-1076.81~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1076-aws_5.4.0-1076.81~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_all.deb" + ] + }, + { + "kernelversion": "81~18.04.1", + "kernelrelease": "5.4.0-1076-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_amd64.deb" ] }, { @@ -13458,10 +13455,10 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" ] }, { @@ -13469,10 +13466,10 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb" ] }, { @@ -13480,9 +13477,9 @@ "kernelrelease": "5.4.0-1079-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" ] }, @@ -13491,23 +13488,23 @@ "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb" ] }, { - "kernelversion": "83~18.04.2", - "kernelrelease": "5.4.0-1080-azure-5.4", + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1081-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1081_5.4.0-1081.84~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1081-azure_5.4.0-1081.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1081_5.4.0-1081.84~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1081-azure_5.4.0-1081.84~18.04.1_amd64.deb" ] }, { @@ -13515,12 +13512,12 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb" ] }, { @@ -13528,25 +13525,12 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" - ] - }, - { - "kernelversion": "127~18.04.1", - "kernelrelease": "5.4.0-113-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb" ] }, { @@ -13554,12 +13538,12 @@ "kernelrelease": "5.4.0-115-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-115_5.4.0-115.129~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-115_5.4.0-115.129~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-115_5.4.0-115.129~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129~18.04.1_amd64.deb" ] }, { @@ -13567,12 +13551,12 @@ "kernelrelease": "5.4.0-91-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb" ] }, { @@ -13580,11 +13564,11 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" ] }, @@ -13593,12 +13577,12 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" ] }, { @@ -13606,9 +13590,9 @@ "kernelrelease": "4.15.0-1006-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" ] }, @@ -13617,8 +13601,8 @@ "kernelrelease": "4.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" ] @@ -13628,10 +13612,10 @@ "kernelrelease": "4.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb" ] }, { @@ -13639,8 +13623,8 @@ "kernelrelease": "4.15.0-1008-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" ] @@ -13650,21 +13634,21 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb" ] }, { @@ -13672,21 +13656,21 @@ "kernelrelease": "4.15.0-1009-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1009-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" ] }, { @@ -13695,9 +13679,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb" ] }, { @@ -13705,8 +13689,8 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb" ] @@ -13716,34 +13700,34 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1010-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1010-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb" ] }, { @@ -13751,10 +13735,10 @@ "kernelrelease": "4.15.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" ] }, { @@ -13763,31 +13747,42 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" ] }, + { + "kernelversion": "11", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + ] + }, { "kernelversion": "11", "kernelrelease": "4.15.0-1011-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws", + "kernelversion": "12", + "kernelrelease": "4.15.0-1012-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" ] }, { @@ -13796,20 +13791,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "4.15.0-1012-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb" ] }, { @@ -13817,10 +13801,10 @@ "kernelrelease": "4.15.0-1012-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb" ] }, { @@ -13828,9 +13812,9 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" ] }, @@ -13839,10 +13823,10 @@ "kernelrelease": "4.15.0-1013-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb" ] }, { @@ -13850,32 +13834,32 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1014-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb" ] }, { @@ -13883,10 +13867,10 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" ] }, { @@ -13894,10 +13878,10 @@ "kernelrelease": "4.15.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb" ] }, { @@ -13906,9 +13890,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" ] }, { @@ -13916,10 +13900,10 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" ] }, { @@ -13928,9 +13912,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" ] }, { @@ -13938,9 +13922,9 @@ "kernelrelease": "4.15.0-1016-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb" ] }, @@ -13949,10 +13933,10 @@ "kernelrelease": "4.15.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" ] }, { @@ -13960,10 +13944,10 @@ "kernelrelease": "4.15.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" ] }, { @@ -13971,10 +13955,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" ] }, { @@ -13982,10 +13966,10 @@ "kernelrelease": "4.15.0-1017-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb" ] }, { @@ -13993,10 +13977,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" ] }, { @@ -14004,9 +13988,9 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb" ] }, @@ -14015,8 +13999,8 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" ] @@ -14026,10 +14010,10 @@ "kernelrelease": "4.15.0-1018-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" ] }, { @@ -14037,10 +14021,10 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb" ] }, { @@ -14048,10 +14032,10 @@ "kernelrelease": "4.15.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb" ] }, { @@ -14059,10 +14043,10 @@ "kernelrelease": "4.15.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" ] }, { @@ -14070,10 +14054,10 @@ "kernelrelease": "4.15.0-1019-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" ] }, { @@ -14081,10 +14065,21 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" + ] + }, + { + "kernelversion": "20", + "kernelrelease": "4.15.0-1020-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { @@ -14092,21 +14087,21 @@ "kernelrelease": "4.15.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "4.15.0-1020-aws", + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { @@ -14114,21 +14109,10 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { @@ -14137,9 +14121,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { @@ -14148,9 +14132,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" ] }, { @@ -14158,8 +14142,8 @@ "kernelrelease": "4.15.0-1021-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb" ] @@ -14169,10 +14153,10 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" ] }, { @@ -14180,10 +14164,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" ] }, { @@ -14191,21 +14175,10 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "4.15.0-1023-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" ] }, { @@ -14214,20 +14187,31 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, + { + "kernelversion": "23", + "kernelrelease": "4.15.0-1023-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + ] + }, { "kernelversion": "24", "kernelrelease": "4.15.0-1023-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb" ] }, { @@ -14235,9 +14219,9 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" ] }, @@ -14246,10 +14230,10 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb" ] }, { @@ -14257,32 +14241,32 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" ] }, { @@ -14290,10 +14274,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb" ] }, { @@ -14301,10 +14285,10 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" ] }, { @@ -14312,9 +14296,9 @@ "kernelrelease": "4.15.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" ] }, @@ -14323,9 +14307,9 @@ "kernelrelease": "4.15.0-1026-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" ] }, @@ -14334,32 +14318,32 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" ] }, { "kernelversion": "27", - "kernelrelease": "4.15.0-1027-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1027-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "4.15.0-1027-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1027-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, { @@ -14367,10 +14351,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" ] }, { @@ -14378,10 +14362,10 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" ] }, { @@ -14391,8 +14375,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" ] }, { @@ -14400,10 +14384,10 @@ "kernelrelease": "4.15.0-1028-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" ] }, { @@ -14413,8 +14397,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb" ] }, { @@ -14422,9 +14406,9 @@ "kernelrelease": "4.15.0-1028-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" ] }, @@ -14433,9 +14417,9 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" ] }, @@ -14444,10 +14428,10 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb" ] }, { @@ -14455,10 +14439,10 @@ "kernelrelease": "4.15.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" ] }, { @@ -14466,10 +14450,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" ] }, { @@ -14478,9 +14462,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" ] }, { @@ -14488,10 +14472,10 @@ "kernelrelease": "4.15.0-1030-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" ] }, { @@ -14499,10 +14483,10 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" ] }, { @@ -14510,10 +14494,10 @@ "kernelrelease": "4.15.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" ] }, { @@ -14521,8 +14505,8 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb" ] @@ -14533,9 +14517,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" ] }, { @@ -14543,10 +14527,10 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" ] }, { @@ -14554,32 +14538,32 @@ "kernelrelease": "4.15.0-1032-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1032-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" ] }, { @@ -14587,32 +14571,32 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1033-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1033-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1033-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" ] }, { @@ -14620,10 +14604,10 @@ "kernelrelease": "4.15.0-1033-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" ] }, { @@ -14632,9 +14616,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" ] }, { @@ -14642,21 +14626,10 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" ] }, { @@ -14664,21 +14637,32 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" ] }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" + ] + }, { "kernelversion": "36", "kernelrelease": "4.15.0-1034-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" ] }, { @@ -14686,10 +14670,10 @@ "kernelrelease": "4.15.0-1034-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb" ] }, { @@ -14697,10 +14681,10 @@ "kernelrelease": "4.15.0-1034-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb" ] }, { @@ -14709,8 +14693,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" ] }, @@ -14719,10 +14703,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" ] }, { @@ -14730,10 +14714,10 @@ "kernelrelease": "4.15.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" ] }, { @@ -14743,8 +14727,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb" ] }, { @@ -14752,21 +14736,21 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" ] }, { @@ -14774,21 +14758,21 @@ "kernelrelease": "4.15.0-1036-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb" ] }, { @@ -14796,32 +14780,32 @@ "kernelrelease": "4.15.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1037-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb" ] }, { @@ -14830,20 +14814,20 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1037-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" ] }, { @@ -14851,10 +14835,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" ] }, { @@ -14862,9 +14846,9 @@ "kernelrelease": "4.15.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb" ] }, @@ -14873,10 +14857,10 @@ "kernelrelease": "4.15.0-1038-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" ] }, { @@ -14884,10 +14868,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" ] }, { @@ -14895,10 +14879,10 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" ] }, { @@ -14906,10 +14890,10 @@ "kernelrelease": "4.15.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" ] }, { @@ -14917,10 +14901,21 @@ "kernelrelease": "4.15.0-1039-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1039-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] }, { @@ -14928,21 +14923,21 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "4.15.0-1039-oracle", - "target": "ubuntu-oracle", + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" ] }, { @@ -14950,10 +14945,10 @@ "kernelrelease": "4.15.0-1040-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" ] }, { @@ -14961,32 +14956,10 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb" ] }, { @@ -14994,10 +14967,10 @@ "kernelrelease": "4.15.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" ] }, { @@ -15005,12 +14978,23 @@ "kernelrelease": "4.15.0-1041-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, + { + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb" + ] + }, { "kernelversion": "45", "kernelrelease": "4.15.0-1042-gcp", @@ -15018,8 +15002,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb" ] }, { @@ -15027,10 +15011,10 @@ "kernelrelease": "4.15.0-1042-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" ] }, { @@ -15038,10 +15022,10 @@ "kernelrelease": "4.15.0-1042-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" ] }, { @@ -15050,9 +15034,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" ] }, { @@ -15060,9 +15044,9 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb" ] }, @@ -15071,10 +15055,10 @@ "kernelrelease": "4.15.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb" ] }, { @@ -15082,21 +15066,21 @@ "kernelrelease": "4.15.0-1043-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1044-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { @@ -15105,20 +15089,20 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1044-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" ] }, { @@ -15126,9 +15110,9 @@ "kernelrelease": "4.15.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" ] }, @@ -15139,8 +15123,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb" ] }, { @@ -15148,9 +15132,9 @@ "kernelrelease": "4.15.0-1045-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" ] }, @@ -15159,10 +15143,10 @@ "kernelrelease": "4.15.0-1045-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" ] }, { @@ -15170,10 +15154,10 @@ "kernelrelease": "4.15.0-1045-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" ] }, { @@ -15181,10 +15165,10 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb" ] }, { @@ -15192,8 +15176,8 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb" ] @@ -15203,10 +15187,10 @@ "kernelrelease": "4.15.0-1046-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" ] }, { @@ -15214,10 +15198,10 @@ "kernelrelease": "4.15.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" ] }, { @@ -15225,10 +15209,10 @@ "kernelrelease": "4.15.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb" ] }, { @@ -15236,10 +15220,10 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" ] }, { @@ -15247,10 +15231,10 @@ "kernelrelease": "4.15.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" ] }, { @@ -15258,10 +15242,10 @@ "kernelrelease": "4.15.0-1047-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" ] }, { @@ -15269,10 +15253,10 @@ "kernelrelease": "4.15.0-1047-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" ] }, { @@ -15280,10 +15264,10 @@ "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" ] }, { @@ -15302,9 +15286,9 @@ "kernelrelease": "4.15.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb" ] }, @@ -15313,10 +15297,10 @@ "kernelrelease": "4.15.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" ] }, { @@ -15324,10 +15308,10 @@ "kernelrelease": "4.15.0-1049-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb" ] }, { @@ -15335,10 +15319,10 @@ "kernelrelease": "4.15.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" ] }, { @@ -15346,21 +15330,10 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" ] }, { @@ -15374,15 +15347,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" ] }, + { + "kernelversion": "53", + "kernelrelease": "4.15.0-1050-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + ] + }, { "kernelversion": "50", "kernelrelease": "4.15.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" ] }, { @@ -15390,10 +15374,10 @@ "kernelrelease": "4.15.0-1050-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" ] }, { @@ -15402,9 +15386,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb" ] }, { @@ -15412,9 +15396,9 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb" ] }, @@ -15423,10 +15407,10 @@ "kernelrelease": "4.15.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" ] }, { @@ -15434,9 +15418,9 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" ] }, @@ -15445,9 +15429,9 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" ] }, @@ -15456,10 +15440,10 @@ "kernelrelease": "4.15.0-1052-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb" ] }, { @@ -15467,10 +15451,10 @@ "kernelrelease": "4.15.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" ] }, { @@ -15478,9 +15462,9 @@ "kernelrelease": "4.15.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" ] }, @@ -15490,9 +15474,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" ] }, { @@ -15500,10 +15484,10 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" ] }, { @@ -15511,10 +15495,10 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" ] }, { @@ -15522,10 +15506,10 @@ "kernelrelease": "4.15.0-1055-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" ] }, { @@ -15533,9 +15517,9 @@ "kernelrelease": "4.15.0-1056-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" ] }, @@ -15546,8 +15530,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" ] }, { @@ -15555,10 +15539,10 @@ "kernelrelease": "4.15.0-1056-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" ] }, { @@ -15566,10 +15550,10 @@ "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" ] }, { @@ -15578,8 +15562,8 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb" ] }, @@ -15588,10 +15572,10 @@ "kernelrelease": "4.15.0-1057-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb" ] }, { @@ -15599,10 +15583,10 @@ "kernelrelease": "4.15.0-1057-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" ] }, { @@ -15610,10 +15594,10 @@ "kernelrelease": "4.15.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" ] }, { @@ -15621,9 +15605,9 @@ "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" ] }, @@ -15632,10 +15616,10 @@ "kernelrelease": "4.15.0-1058-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb" ] }, { @@ -15643,10 +15627,10 @@ "kernelrelease": "4.15.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" ] }, { @@ -15654,10 +15638,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" ] }, { @@ -15665,10 +15649,10 @@ "kernelrelease": "4.15.0-1059-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" ] }, { @@ -15676,10 +15660,10 @@ "kernelrelease": "4.15.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb" ] }, { @@ -15687,10 +15671,10 @@ "kernelrelease": "4.15.0-1059-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" ] }, { @@ -15698,12 +15682,12 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" ] }, { @@ -15712,9 +15696,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" ] }, { @@ -15722,10 +15706,10 @@ "kernelrelease": "4.15.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" ] }, { @@ -15733,9 +15717,9 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb" ] }, @@ -15744,10 +15728,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" ] }, { @@ -15755,8 +15739,8 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] @@ -15766,10 +15750,10 @@ "kernelrelease": "4.15.0-1063-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" ] }, { @@ -15777,10 +15761,10 @@ "kernelrelease": "4.15.0-1063-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" ] }, { @@ -15788,10 +15772,10 @@ "kernelrelease": "4.15.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb" ] }, { @@ -15799,10 +15783,10 @@ "kernelrelease": "4.15.0-1064-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" ] }, { @@ -15810,10 +15794,10 @@ "kernelrelease": "4.15.0-1064-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" ] }, { @@ -15821,10 +15805,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" ] }, { @@ -15833,8 +15817,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, @@ -15843,10 +15827,10 @@ "kernelrelease": "4.15.0-1065-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb" ] }, { @@ -15854,8 +15838,8 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb" ] @@ -15865,9 +15849,9 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, @@ -15876,10 +15860,10 @@ "kernelrelease": "4.15.0-1066-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb" ] }, { @@ -15888,9 +15872,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" ] }, { @@ -15898,10 +15882,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb" ] }, { @@ -15909,10 +15893,10 @@ "kernelrelease": "4.15.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" ] }, { @@ -15920,10 +15904,10 @@ "kernelrelease": "4.15.0-1067-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" ] }, { @@ -15933,8 +15917,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb" ] }, { @@ -15942,9 +15926,9 @@ "kernelrelease": "4.15.0-1067-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb" ] }, @@ -15953,10 +15937,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" ] }, { @@ -15964,9 +15948,9 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" ] }, @@ -15975,10 +15959,10 @@ "kernelrelease": "4.15.0-1069-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb" ] }, { @@ -15986,10 +15970,10 @@ "kernelrelease": "4.15.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb" ] }, { @@ -15997,10 +15981,10 @@ "kernelrelease": "4.15.0-1069-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb" ] }, { @@ -16019,10 +16003,10 @@ "kernelrelease": "4.15.0-1070-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb" ] }, { @@ -16030,10 +16014,10 @@ "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" ] }, { @@ -16042,9 +16026,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" ] }, { @@ -16052,9 +16036,9 @@ "kernelrelease": "4.15.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" ] }, @@ -16063,9 +16047,9 @@ "kernelrelease": "4.15.0-1072-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb" ] }, @@ -16074,10 +16058,10 @@ "kernelrelease": "4.15.0-1072-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" ] }, { @@ -16085,10 +16069,10 @@ "kernelrelease": "4.15.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" ] }, { @@ -16097,9 +16081,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb" ] }, { @@ -16108,9 +16092,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" ] }, { @@ -16118,10 +16102,10 @@ "kernelrelease": "4.15.0-1073-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" ] }, { @@ -16129,8 +16113,8 @@ "kernelrelease": "4.15.0-1074-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" ] @@ -16140,8 +16124,8 @@ "kernelrelease": "4.15.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" ] @@ -16152,9 +16136,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb" ] }, { @@ -16163,8 +16147,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" ] }, @@ -16173,9 +16157,9 @@ "kernelrelease": "4.15.0-1076-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" ] }, @@ -16184,10 +16168,10 @@ "kernelrelease": "4.15.0-1076-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" ] }, { @@ -16196,31 +16180,31 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" ] }, { "kernelversion": "82", - "kernelrelease": "4.15.0-1077-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1077-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" ] }, { "kernelversion": "82", - "kernelrelease": "4.15.0-1077-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1077-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" ] }, { @@ -16228,10 +16212,10 @@ "kernelrelease": "4.15.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb" ] }, { @@ -16239,9 +16223,9 @@ "kernelrelease": "4.15.0-1078-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" ] }, @@ -16250,10 +16234,10 @@ "kernelrelease": "4.15.0-1078-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" ] }, { @@ -16261,9 +16245,9 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" ] }, @@ -16272,9 +16256,9 @@ "kernelrelease": "4.15.0-1079-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" ] }, @@ -16283,10 +16267,10 @@ "kernelrelease": "4.15.0-1079-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb" ] }, { @@ -16294,10 +16278,10 @@ "kernelrelease": "4.15.0-1079-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" ] }, { @@ -16306,11 +16290,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb" ] }, { @@ -16318,9 +16302,9 @@ "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" ] }, @@ -16330,8 +16314,8 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" ] }, @@ -16341,8 +16325,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb" ] }, @@ -16351,10 +16335,10 @@ "kernelrelease": "4.15.0-1081-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb" ] }, { @@ -16363,9 +16347,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" ] }, { @@ -16373,9 +16357,9 @@ "kernelrelease": "4.15.0-1081-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" ] }, @@ -16386,8 +16370,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" ] }, { @@ -16395,10 +16379,10 @@ "kernelrelease": "4.15.0-1082-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" ] }, { @@ -16407,9 +16391,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" ] }, { @@ -16417,10 +16401,10 @@ "kernelrelease": "4.15.0-1082-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb" ] }, { @@ -16429,8 +16413,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" ] }, @@ -16439,10 +16423,10 @@ "kernelrelease": "4.15.0-1083-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" ] }, { @@ -16450,10 +16434,10 @@ "kernelrelease": "4.15.0-1083-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" ] }, { @@ -16461,10 +16445,10 @@ "kernelrelease": "4.15.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" ] }, { @@ -16472,8 +16456,8 @@ "kernelrelease": "4.15.0-1084-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" ] @@ -16496,8 +16480,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" ] }, { @@ -16506,9 +16490,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" ] }, { @@ -16516,10 +16500,10 @@ "kernelrelease": "4.15.0-1086-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" ] }, { @@ -16527,10 +16511,10 @@ "kernelrelease": "4.15.0-1086-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" ] }, { @@ -16539,9 +16523,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb" ] }, { @@ -16550,9 +16534,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" ] }, { @@ -16560,10 +16544,10 @@ "kernelrelease": "4.15.0-1087-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb" ] }, { @@ -16571,10 +16555,10 @@ "kernelrelease": "4.15.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" ] }, { @@ -16582,8 +16566,8 @@ "kernelrelease": "4.15.0-1089-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" ] @@ -16594,9 +16578,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" ] }, { @@ -16604,10 +16588,10 @@ "kernelrelease": "4.15.0-1089-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" ] }, { @@ -16615,12 +16599,12 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb" ] }, { @@ -16628,10 +16612,10 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { @@ -16639,10 +16623,10 @@ "kernelrelease": "4.15.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" ] }, { @@ -16650,10 +16634,10 @@ "kernelrelease": "4.15.0-1090-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb" ] }, { @@ -16662,9 +16646,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb" ] }, { @@ -16672,10 +16656,10 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb" ] }, { @@ -16683,10 +16667,10 @@ "kernelrelease": "4.15.0-1091-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb" ] }, { @@ -16696,8 +16680,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, { @@ -16705,8 +16689,8 @@ "kernelrelease": "4.15.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" ] @@ -16717,8 +16701,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" ] }, @@ -16738,10 +16722,10 @@ "kernelrelease": "4.15.0-1092-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb" ] }, { @@ -16749,10 +16733,10 @@ "kernelrelease": "4.15.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb" ] }, { @@ -16761,9 +16745,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" ] }, { @@ -16771,10 +16755,10 @@ "kernelrelease": "4.15.0-1093-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" ] }, { @@ -16782,10 +16766,10 @@ "kernelrelease": "4.15.0-1093-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" ] }, { @@ -16793,10 +16777,10 @@ "kernelrelease": "4.15.0-1093-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb" ] }, { @@ -16804,10 +16788,10 @@ "kernelrelease": "4.15.0-1093-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" ] }, { @@ -16815,10 +16799,10 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" ] }, { @@ -16826,10 +16810,10 @@ "kernelrelease": "4.15.0-1094-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb" ] }, { @@ -16837,10 +16821,10 @@ "kernelrelease": "4.15.0-1094-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb" ] }, { @@ -16848,10 +16832,10 @@ "kernelrelease": "4.15.0-1094-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" ] }, { @@ -16859,10 +16843,10 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" ] }, { @@ -16870,10 +16854,10 @@ "kernelrelease": "4.15.0-1095-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" ] }, { @@ -16881,21 +16865,32 @@ "kernelrelease": "4.15.0-1095-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb" ] }, + { + "kernelversion": "104", + "kernelrelease": "4.15.0-1095-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb" + ] + }, { "kernelversion": "103", "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" ] }, { @@ -16903,9 +16898,9 @@ "kernelrelease": "4.15.0-1096-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" ] }, @@ -16914,10 +16909,10 @@ "kernelrelease": "4.15.0-1096-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb" ] }, { @@ -16926,9 +16921,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" ] }, { @@ -16936,10 +16931,10 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" ] }, { @@ -16947,10 +16942,10 @@ "kernelrelease": "4.15.0-1097-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb" ] }, { @@ -16958,10 +16953,10 @@ "kernelrelease": "4.15.0-1097-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" ] }, { @@ -16970,8 +16965,8 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" ] }, @@ -16980,10 +16975,10 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" ] }, { @@ -16991,10 +16986,10 @@ "kernelrelease": "4.15.0-1098-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" ] }, { @@ -17002,10 +16997,10 @@ "kernelrelease": "4.15.0-1098-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb" ] }, { @@ -17014,9 +17009,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { @@ -17025,9 +17020,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" ] }, { @@ -17035,8 +17030,8 @@ "kernelrelease": "4.15.0-1099-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" ] @@ -17047,9 +17042,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" ] }, { @@ -17057,10 +17052,10 @@ "kernelrelease": "4.15.0-1099-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" ] }, { @@ -17068,10 +17063,10 @@ "kernelrelease": "4.15.0-1100-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" ] }, { @@ -17079,10 +17074,10 @@ "kernelrelease": "4.15.0-1100-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" ] }, { @@ -17090,10 +17085,10 @@ "kernelrelease": "4.15.0-1100-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" ] }, { @@ -17101,9 +17096,9 @@ "kernelrelease": "4.15.0-1101-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" ] }, @@ -17112,10 +17107,10 @@ "kernelrelease": "4.15.0-1101-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" ] }, { @@ -17123,10 +17118,10 @@ "kernelrelease": "4.15.0-1101-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb" ] }, { @@ -17134,9 +17129,9 @@ "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" ] }, @@ -17145,10 +17140,10 @@ "kernelrelease": "4.15.0-1102-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" ] }, { @@ -17156,10 +17151,10 @@ "kernelrelease": "4.15.0-1102-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" ] }, { @@ -17167,8 +17162,8 @@ "kernelrelease": "4.15.0-1102-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" ] @@ -17179,8 +17174,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" ] }, @@ -17189,10 +17184,10 @@ "kernelrelease": "4.15.0-1103-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { @@ -17200,10 +17195,10 @@ "kernelrelease": "4.15.0-1103-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { @@ -17211,10 +17206,10 @@ "kernelrelease": "4.15.0-1103-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" ] }, { @@ -17223,9 +17218,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" ] }, { @@ -17233,10 +17228,10 @@ "kernelrelease": "4.15.0-1105-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" ] }, { @@ -17255,10 +17250,10 @@ "kernelrelease": "4.15.0-1106-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" ] }, { @@ -17266,10 +17261,10 @@ "kernelrelease": "4.15.0-1106-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" ] }, { @@ -17277,10 +17272,10 @@ "kernelrelease": "4.15.0-1106-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb" ] }, { @@ -17288,10 +17283,10 @@ "kernelrelease": "4.15.0-1107-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" ] }, { @@ -17299,10 +17294,10 @@ "kernelrelease": "4.15.0-1108-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" ] }, { @@ -17310,10 +17305,10 @@ "kernelrelease": "4.15.0-1108-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb" ] }, { @@ -17321,9 +17316,9 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, @@ -17332,10 +17327,10 @@ "kernelrelease": "4.15.0-1109-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" ] }, { @@ -17343,8 +17338,8 @@ "kernelrelease": "4.15.0-1109-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" ] @@ -17355,9 +17350,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" ] }, { @@ -17366,9 +17361,9 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" ] @@ -17378,10 +17373,10 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" ] }, { @@ -17390,8 +17385,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" ] }, @@ -17400,10 +17395,10 @@ "kernelrelease": "4.15.0-1110-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" ] }, { @@ -17411,10 +17406,10 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" ] }, { @@ -17422,10 +17417,10 @@ "kernelrelease": "4.15.0-1111-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb" ] }, { @@ -17433,9 +17428,9 @@ "kernelrelease": "4.15.0-1111-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" ] }, @@ -17446,8 +17441,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" ] }, { @@ -17455,10 +17450,10 @@ "kernelrelease": "4.15.0-1112-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" ] }, { @@ -17466,10 +17461,10 @@ "kernelrelease": "4.15.0-1112-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" ] }, { @@ -17477,10 +17472,10 @@ "kernelrelease": "4.15.0-1112-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" ] }, { @@ -17500,9 +17495,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb" ] }, { @@ -17510,10 +17505,10 @@ "kernelrelease": "4.15.0-1114-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" ] }, { @@ -17523,8 +17518,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" ] }, { @@ -17532,10 +17527,10 @@ "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" ] }, { @@ -17543,10 +17538,10 @@ "kernelrelease": "4.15.0-1115-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb" ] }, { @@ -17554,10 +17549,10 @@ "kernelrelease": "4.15.0-1115-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" ] }, { @@ -17565,9 +17560,9 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" ] }, @@ -17576,10 +17571,10 @@ "kernelrelease": "4.15.0-1118-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb" ] }, { @@ -17588,8 +17583,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" ] }, @@ -17598,10 +17593,10 @@ "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" ] }, { @@ -17609,10 +17604,10 @@ "kernelrelease": "4.15.0-1119-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" ] }, { @@ -17620,12 +17615,12 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" ] }, { @@ -17633,10 +17628,10 @@ "kernelrelease": "4.15.0-1120-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" ] }, { @@ -17644,10 +17639,10 @@ "kernelrelease": "4.15.0-1121-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" ] }, { @@ -17655,9 +17650,9 @@ "kernelrelease": "4.15.0-1122-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" ] }, @@ -17666,10 +17661,10 @@ "kernelrelease": "4.15.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" ] }, { @@ -17677,10 +17672,10 @@ "kernelrelease": "4.15.0-1123-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" ] }, { @@ -17688,12 +17683,23 @@ "kernelrelease": "4.15.0-1124-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" ] }, + { + "kernelversion": "138", + "kernelrelease": "4.15.0-1124-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb" + ] + }, { "kernelversion": "138", "kernelrelease": "4.15.0-1125-azure-4.15", @@ -17710,10 +17716,10 @@ "kernelrelease": "4.15.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb" ] }, { @@ -17721,10 +17727,10 @@ "kernelrelease": "4.15.0-1126-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb" ] }, { @@ -17732,10 +17738,10 @@ "kernelrelease": "4.15.0-1127-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" ] }, { @@ -17743,10 +17749,21 @@ "kernelrelease": "4.15.0-1129-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" + ] + }, + { + "kernelversion": "139", + "kernelrelease": "4.15.0-1130-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" ] }, { @@ -17776,10 +17793,10 @@ "kernelrelease": "4.15.0-1137-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb" ] }, { @@ -17787,12 +17804,12 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" ] }, { @@ -17800,11 +17817,11 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" ] }, @@ -17813,12 +17830,12 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" ] }, { @@ -17826,12 +17843,12 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb" ] }, { @@ -17840,11 +17857,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb" ] }, { @@ -17852,12 +17869,12 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" ] }, { @@ -17865,12 +17882,12 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" ] }, { @@ -17878,12 +17895,12 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" ] }, { @@ -17891,11 +17908,11 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb" ] }, @@ -17904,12 +17921,12 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb" ] }, { @@ -17918,11 +17935,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" ] }, { @@ -17931,11 +17948,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" ] }, { @@ -17943,12 +17960,12 @@ "kernelrelease": "4.15.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb" ] }, { @@ -17956,11 +17973,11 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" ] }, @@ -17969,12 +17986,12 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb" ] }, { @@ -17982,12 +17999,12 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" ] }, { @@ -17995,12 +18012,12 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb" ] }, { @@ -18008,12 +18025,12 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" ] }, { @@ -18021,12 +18038,12 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" ] }, { @@ -18034,12 +18051,12 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, { @@ -18047,12 +18064,12 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" ] }, { @@ -18060,11 +18077,11 @@ "kernelrelease": "4.15.0-153", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb" ] }, @@ -18073,12 +18090,12 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" ] }, { @@ -18086,12 +18103,12 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" ] }, { @@ -18099,12 +18116,12 @@ "kernelrelease": "4.15.0-158", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb" ] }, { @@ -18112,12 +18129,12 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb" ] }, { @@ -18125,12 +18142,12 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb" ] }, { @@ -18138,12 +18155,12 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" ] }, { @@ -18153,10 +18170,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb" ] }, { @@ -18164,12 +18181,12 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb" ] }, { @@ -18177,12 +18194,12 @@ "kernelrelease": "4.15.0-171", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" ] }, { @@ -18190,12 +18207,12 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" ] }, { @@ -18203,12 +18220,12 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb" ] }, { @@ -18217,11 +18234,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb" ] }, { @@ -18229,11 +18246,11 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb" ] }, @@ -18242,12 +18259,12 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" ] }, { @@ -18255,11 +18272,11 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" ] }, @@ -18268,11 +18285,11 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" ] }, @@ -18281,12 +18298,12 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb" ] }, { @@ -18294,11 +18311,11 @@ "kernelrelease": "4.15.0-34", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb" ] }, @@ -18309,10 +18326,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb" ] }, { @@ -18320,12 +18337,12 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" ] }, { @@ -18333,12 +18350,12 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb" ] }, { @@ -18346,12 +18363,12 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb" ] }, { @@ -18359,10 +18376,10 @@ "kernelrelease": "4.15.0-44", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" ] @@ -18372,12 +18389,12 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb" ] }, { @@ -18386,10 +18403,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" ] }, @@ -18399,10 +18416,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb" ] }, @@ -18411,12 +18428,12 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb" ] }, { @@ -18424,11 +18441,11 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb" ] }, @@ -18437,12 +18454,12 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" ] }, { @@ -18450,12 +18467,12 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb" ] }, { @@ -18464,11 +18481,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" ] }, { @@ -18476,12 +18493,12 @@ "kernelrelease": "4.15.0-58", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb" ] }, { @@ -18489,12 +18506,12 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" ] }, { @@ -18503,10 +18520,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" ] }, @@ -18515,12 +18532,12 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb" ] }, { @@ -18528,12 +18545,12 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" ] }, { @@ -18541,12 +18558,12 @@ "kernelrelease": "4.15.0-66", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb" ] }, { @@ -18554,12 +18571,12 @@ "kernelrelease": "4.15.0-69", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb" ] }, { @@ -18567,12 +18584,12 @@ "kernelrelease": "4.15.0-70", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" ] }, { @@ -18580,10 +18597,10 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb" ] @@ -18593,12 +18610,12 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" ] }, { @@ -18606,12 +18623,12 @@ "kernelrelease": "4.15.0-76", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" ] }, { @@ -18619,11 +18636,11 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb" ] }, @@ -18632,12 +18649,12 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" ] }, { @@ -18645,11 +18662,11 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb" ] }, @@ -18658,12 +18675,12 @@ "kernelrelease": "4.15.0-99", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb" ] }, { @@ -18671,10 +18688,10 @@ "kernelrelease": "4.18.0-1004-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" ] }, { @@ -18682,10 +18699,10 @@ "kernelrelease": "4.18.0-1005-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb" ] }, { @@ -18693,10 +18710,10 @@ "kernelrelease": "4.18.0-1006-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb" ] }, { @@ -18704,10 +18721,10 @@ "kernelrelease": "4.18.0-1006-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" ] }, { @@ -18715,9 +18732,9 @@ "kernelrelease": "4.18.0-1007-azure-edge", "target": "ubuntu-azure-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb" ] }, @@ -18726,10 +18743,10 @@ "kernelrelease": "4.18.0-1007-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb" ] }, { @@ -18737,9 +18754,9 @@ "kernelrelease": "4.18.0-1008-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" ] }, @@ -18748,9 +18765,9 @@ "kernelrelease": "4.18.0-1008-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" ] }, @@ -18759,10 +18776,10 @@ "kernelrelease": "4.18.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -18770,9 +18787,9 @@ "kernelrelease": "4.18.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" ] }, @@ -18782,8 +18799,8 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb" ] }, @@ -18792,10 +18809,10 @@ "kernelrelease": "4.18.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" ] }, { @@ -18803,9 +18820,9 @@ "kernelrelease": "4.18.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb" ] }, @@ -18814,10 +18831,10 @@ "kernelrelease": "4.18.0-1014-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb" ] }, { @@ -18825,10 +18842,10 @@ "kernelrelease": "4.18.0-1015-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" ] }, { @@ -18836,10 +18853,10 @@ "kernelrelease": "4.18.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb" ] }, { @@ -18848,9 +18865,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb" ] }, { @@ -18858,9 +18875,9 @@ "kernelrelease": "4.18.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" ] }, @@ -18870,9 +18887,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb" ] }, { @@ -18880,10 +18897,10 @@ "kernelrelease": "4.18.0-1024-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" ] }, { @@ -18891,10 +18908,10 @@ "kernelrelease": "4.18.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb" ] }, { @@ -18902,12 +18919,12 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" ] }, { @@ -18917,10 +18934,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" ] }, { @@ -18928,11 +18945,11 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb" ] }, @@ -18941,11 +18958,11 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" ] }, @@ -18954,12 +18971,12 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" ] }, { @@ -18968,11 +18985,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" ] }, { @@ -18980,12 +18997,12 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, { @@ -18993,12 +19010,12 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb" ] }, { @@ -19007,11 +19024,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" ] }, { @@ -19019,12 +19036,12 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb" ] }, { @@ -19033,8 +19050,8 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" ] }, @@ -19054,10 +19071,10 @@ "kernelrelease": "5.0.0-1009-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" ] }, { @@ -19065,10 +19082,10 @@ "kernelrelease": "5.0.0-1010-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb" ] }, { @@ -19076,8 +19093,8 @@ "kernelrelease": "5.0.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" ] @@ -19087,9 +19104,9 @@ "kernelrelease": "5.0.0-1011-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" ] }, @@ -19098,10 +19115,10 @@ "kernelrelease": "5.0.0-1012-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb" ] }, { @@ -19111,8 +19128,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" ] }, { @@ -19121,8 +19138,8 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" ] }, @@ -19131,10 +19148,10 @@ "kernelrelease": "5.0.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb" ] }, { @@ -19142,10 +19159,10 @@ "kernelrelease": "5.0.0-1014-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" ] }, { @@ -19153,10 +19170,10 @@ "kernelrelease": "5.0.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19164,10 +19181,10 @@ "kernelrelease": "5.0.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19175,10 +19192,10 @@ "kernelrelease": "5.0.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb" ] }, { @@ -19186,10 +19203,10 @@ "kernelrelease": "5.0.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb" ] }, { @@ -19199,8 +19216,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" ] }, { @@ -19208,9 +19225,9 @@ "kernelrelease": "5.0.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" ] }, @@ -19219,10 +19236,10 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb" ] }, { @@ -19230,10 +19247,10 @@ "kernelrelease": "5.0.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -19241,10 +19258,10 @@ "kernelrelease": "5.0.0-1023-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" ] }, { @@ -19252,10 +19269,10 @@ "kernelrelease": "5.0.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -19263,10 +19280,10 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" ] }, { @@ -19274,10 +19291,10 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" ] }, { @@ -19285,10 +19302,10 @@ "kernelrelease": "5.0.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" ] }, { @@ -19307,9 +19324,9 @@ "kernelrelease": "5.0.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" ] }, @@ -19318,10 +19335,10 @@ "kernelrelease": "5.0.0-1027-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" ] }, { @@ -19329,10 +19346,10 @@ "kernelrelease": "5.0.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" ] }, { @@ -19341,9 +19358,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb" ] }, { @@ -19351,8 +19368,8 @@ "kernelrelease": "5.0.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" ] @@ -19362,10 +19379,10 @@ "kernelrelease": "5.0.0-1029-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -19374,9 +19391,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" ] }, { @@ -19385,9 +19402,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" ] }, { @@ -19395,10 +19412,10 @@ "kernelrelease": "5.0.0-1031-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" ] }, { @@ -19406,10 +19423,10 @@ "kernelrelease": "5.0.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" ] }, { @@ -19417,10 +19434,10 @@ "kernelrelease": "5.0.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" ] }, { @@ -19429,9 +19446,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" ] }, { @@ -19439,10 +19456,10 @@ "kernelrelease": "5.0.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" ] }, { @@ -19450,9 +19467,9 @@ "kernelrelease": "5.0.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" ] }, @@ -19461,12 +19478,12 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" ] }, { @@ -19474,12 +19491,12 @@ "kernelrelease": "5.0.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb" ] }, { @@ -19487,12 +19504,12 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" ] }, { @@ -19500,12 +19517,12 @@ "kernelrelease": "5.0.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb" ] }, { @@ -19514,11 +19531,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" ] }, { @@ -19526,12 +19543,12 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb" ] }, { @@ -19539,9 +19556,9 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb" @@ -19552,12 +19569,12 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb" ] }, { @@ -19565,12 +19582,12 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" ] }, { @@ -19578,12 +19595,12 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb" ] }, { @@ -19591,12 +19608,12 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb" ] }, { @@ -19604,12 +19621,12 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" ] }, { @@ -19617,11 +19634,11 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" ] }, @@ -19630,12 +19647,12 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" ] }, { @@ -19643,10 +19660,10 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" ] }, { @@ -19654,10 +19671,10 @@ "kernelrelease": "5.0.0-61-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" ] }, { @@ -19665,10 +19682,10 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" ] }, { @@ -19676,10 +19693,10 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb" ] }, { @@ -19687,9 +19704,9 @@ "kernelrelease": "5.0.0-65-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" ] }, @@ -19699,9 +19716,20 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" + ] + }, + { + "kernelversion": "9~18.04.1", + "kernelrelease": "5.3.0-1008-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -19709,21 +19737,21 @@ "kernelrelease": "5.3.0-1008-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { - "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelversion": "10~18.04.1", + "kernelrelease": "5.3.0-1009-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -19733,19 +19761,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb" - ] - }, - { - "kernelversion": "10~18.04.1", - "kernelrelease": "5.3.0-1009-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -19754,9 +19771,9 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -19764,9 +19781,9 @@ "kernelrelease": "5.3.0-1010-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" ] }, @@ -19775,10 +19792,10 @@ "kernelrelease": "5.3.0-1011-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" ] }, { @@ -19786,10 +19803,10 @@ "kernelrelease": "5.3.0-1012-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -19797,10 +19814,10 @@ "kernelrelease": "5.3.0-1012-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -19808,10 +19825,10 @@ "kernelrelease": "5.3.0-1013-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -19819,10 +19836,10 @@ "kernelrelease": "5.3.0-1013-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -19830,10 +19847,10 @@ "kernelrelease": "5.3.0-1014-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { @@ -19841,21 +19858,10 @@ "kernelrelease": "5.3.0-1014-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { @@ -19865,8 +19871,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { @@ -19874,10 +19880,21 @@ "kernelrelease": "5.3.0-1016-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" + ] + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.3.0-1016-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19893,24 +19910,24 @@ }, { "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1017-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1017-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1017-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1017-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { @@ -19919,9 +19936,9 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19940,10 +19957,10 @@ "kernelrelease": "5.3.0-1018-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb" ] }, { @@ -19951,10 +19968,10 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" ] }, { @@ -19962,10 +19979,10 @@ "kernelrelease": "5.3.0-1019-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" ] }, { @@ -19973,10 +19990,10 @@ "kernelrelease": "5.3.0-1020-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -19984,10 +20001,10 @@ "kernelrelease": "5.3.0-1020-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" ] }, { @@ -19995,10 +20012,10 @@ "kernelrelease": "5.3.0-1022-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb" ] }, { @@ -20017,9 +20034,9 @@ "kernelrelease": "5.3.0-1024-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" ] }, @@ -20030,8 +20047,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb" ] }, { @@ -20039,32 +20056,32 @@ "kernelrelease": "5.3.0-1027-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1028-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1028-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" ] }, { @@ -20072,10 +20089,10 @@ "kernelrelease": "5.3.0-1028-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb" ] }, { @@ -20083,20 +20100,31 @@ "kernelrelease": "5.3.0-1029-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" ] }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1030-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" + ] + }, { "kernelversion": "32~18.04.1", "kernelrelease": "5.3.0-1030-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, @@ -20105,21 +20133,10 @@ "kernelrelease": "5.3.0-1030-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20127,10 +20144,10 @@ "kernelrelease": "5.3.0-1031-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb" ] }, { @@ -20138,10 +20155,10 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" ] }, { @@ -20150,9 +20167,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb" ] }, { @@ -20171,10 +20188,10 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" ] }, { @@ -20182,8 +20199,8 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb" ] @@ -20193,9 +20210,9 @@ "kernelrelease": "5.3.0-1034-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" ] }, @@ -20204,10 +20221,10 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" ] }, { @@ -20215,10 +20232,10 @@ "kernelrelease": "5.3.0-1035-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" ] }, { @@ -20226,12 +20243,12 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb" ] }, { @@ -20239,10 +20256,10 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb" ] @@ -20252,12 +20269,12 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" ] }, { @@ -20265,11 +20282,11 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" ] }, @@ -20278,12 +20295,12 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" ] }, { @@ -20292,11 +20309,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" ] }, { @@ -20304,12 +20321,12 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" ] }, { @@ -20318,8 +20335,8 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" @@ -20331,11 +20348,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" ] }, { @@ -20343,12 +20360,12 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb" ] }, { @@ -20356,12 +20373,12 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb" ] }, { @@ -20369,12 +20386,12 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" ] }, { @@ -20382,12 +20399,12 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" ] }, { @@ -20395,12 +20412,12 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb" ] }, { @@ -20408,12 +20425,12 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" ] }, { @@ -20421,12 +20438,12 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" ] }, { @@ -20434,12 +20451,12 @@ "kernelrelease": "5.3.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb" ] }, { @@ -20447,12 +20464,12 @@ "kernelrelease": "5.3.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" ] }, { @@ -20461,11 +20478,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb" ] }, { @@ -20473,12 +20490,12 @@ "kernelrelease": "5.3.0-68-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" ] }, { @@ -20486,12 +20503,12 @@ "kernelrelease": "5.3.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" ] }, { @@ -20499,12 +20516,12 @@ "kernelrelease": "5.3.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" ] }, { @@ -20512,11 +20529,11 @@ "kernelrelease": "5.3.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" ] }, @@ -20525,12 +20542,12 @@ "kernelrelease": "5.3.0-73-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" ] }, { @@ -20539,10 +20556,10 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb" ] }, @@ -20552,11 +20569,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb" ] }, { @@ -20564,12 +20581,12 @@ "kernelrelease": "5.3.0-76-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb" ] }, { @@ -20577,21 +20594,10 @@ "kernelrelease": "5.4.0-1003-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.4.0-1004-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" ] }, { @@ -20599,21 +20605,32 @@ "kernelrelease": "5.4.0-1004-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" ] }, + { + "kernelversion": "5", + "kernelrelease": "5.4.0-1004-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + ] + }, { "kernelversion": "8~18.04.1", "kernelrelease": "5.4.0-1007-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" ] }, { @@ -20621,9 +20638,9 @@ "kernelrelease": "5.4.0-1008-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb" ] }, @@ -20632,10 +20649,10 @@ "kernelrelease": "5.4.0-1009-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" ] }, { @@ -20644,9 +20661,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -20654,10 +20671,10 @@ "kernelrelease": "5.4.0-1011-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb" ] }, { @@ -20666,9 +20683,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb" ] }, { @@ -20676,10 +20693,10 @@ "kernelrelease": "5.4.0-1013-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -20687,9 +20704,9 @@ "kernelrelease": "5.4.0-1014-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" ] }, @@ -20698,10 +20715,10 @@ "kernelrelease": "5.4.0-1015-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" ] }, { @@ -20710,8 +20727,8 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb" ] }, @@ -20720,10 +20737,10 @@ "kernelrelease": "5.4.0-1018-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" ] }, { @@ -20731,10 +20748,10 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" ] }, { @@ -20742,10 +20759,10 @@ "kernelrelease": "5.4.0-1021-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -20753,10 +20770,10 @@ "kernelrelease": "5.4.0-1021-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" ] }, { @@ -20764,54 +20781,54 @@ "kernelrelease": "5.4.0-1021-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1022-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1022-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1022-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1022-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { @@ -20819,10 +20836,10 @@ "kernelrelease": "5.4.0-1022-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -20830,10 +20847,10 @@ "kernelrelease": "5.4.0-1023-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" ] }, { @@ -20842,31 +20859,31 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1024-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1024-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20875,8 +20892,8 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" ] }, @@ -20885,10 +20902,10 @@ "kernelrelease": "5.4.0-1024-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" ] }, { @@ -20896,21 +20913,10 @@ "kernelrelease": "5.4.0-1025-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { @@ -20924,26 +20930,37 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" ] }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" + ] + }, { "kernelversion": "25~18.04.1", "kernelrelease": "5.4.0-1025-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1025-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -20951,10 +20968,10 @@ "kernelrelease": "5.4.0-1025-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" ] }, { @@ -20962,10 +20979,10 @@ "kernelrelease": "5.4.0-1026-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" ] }, { @@ -20973,21 +20990,10 @@ "kernelrelease": "5.4.0-1026-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" ] }, { @@ -20995,21 +21001,21 @@ "kernelrelease": "5.4.0-1027-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "28~18.04.1", + "kernelrelease": "5.4.0-1027-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb" ] }, { @@ -21017,10 +21023,10 @@ "kernelrelease": "5.4.0-1028-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { @@ -21028,32 +21034,32 @@ "kernelrelease": "5.4.0-1028-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.4.0-1029-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "29~18.04.1", + "kernelrelease": "5.4.0-1028-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "30~18.04.1", + "kernelrelease": "5.4.0-1029-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" ] }, { @@ -21063,8 +21069,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21072,10 +21078,21 @@ "kernelrelease": "5.4.0-1029-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.4.0-1029-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21083,9 +21100,9 @@ "kernelrelease": "5.4.0-1029-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb" ] }, @@ -21094,10 +21111,10 @@ "kernelrelease": "5.4.0-1031-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" ] }, { @@ -21105,10 +21122,10 @@ "kernelrelease": "5.4.0-1031-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" ] }, { @@ -21116,10 +21133,10 @@ "kernelrelease": "5.4.0-1032-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21127,10 +21144,10 @@ "kernelrelease": "5.4.0-1032-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21138,10 +21155,10 @@ "kernelrelease": "5.4.0-1033-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21149,10 +21166,10 @@ "kernelrelease": "5.4.0-1033-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21160,21 +21177,10 @@ "kernelrelease": "5.4.0-1033-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1033-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" ] }, { @@ -21182,8 +21188,8 @@ "kernelrelease": "5.4.0-1033-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] @@ -21193,10 +21199,21 @@ "kernelrelease": "5.4.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1033-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" ] }, { @@ -21204,10 +21221,10 @@ "kernelrelease": "5.4.0-1034-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" ] }, { @@ -21215,10 +21232,10 @@ "kernelrelease": "5.4.0-1034-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" ] }, { @@ -21226,10 +21243,10 @@ "kernelrelease": "5.4.0-1035-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -21237,10 +21254,10 @@ "kernelrelease": "5.4.0-1035-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -21248,10 +21265,10 @@ "kernelrelease": "5.4.0-1035-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" ] }, { @@ -21260,9 +21277,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb" ] }, { @@ -21270,10 +21287,10 @@ "kernelrelease": "5.4.0-1036-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" ] }, { @@ -21281,8 +21298,8 @@ "kernelrelease": "5.4.0-1036-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" ] @@ -21292,10 +21309,10 @@ "kernelrelease": "5.4.0-1036-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" ] }, { @@ -21303,32 +21320,32 @@ "kernelrelease": "5.4.0-1036-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1037-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1037-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { @@ -21336,10 +21353,10 @@ "kernelrelease": "5.4.0-1037-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21347,10 +21364,10 @@ "kernelrelease": "5.4.0-1037-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21358,10 +21375,10 @@ "kernelrelease": "5.4.0-1037-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb" ] }, { @@ -21369,10 +21386,10 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" ] }, { @@ -21380,8 +21397,8 @@ "kernelrelease": "5.4.0-1038-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb" ] @@ -21391,10 +21408,10 @@ "kernelrelease": "5.4.0-1038-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { @@ -21402,10 +21419,10 @@ "kernelrelease": "5.4.0-1038-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" ] }, { @@ -21413,10 +21430,10 @@ "kernelrelease": "5.4.0-1039-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21424,10 +21441,10 @@ "kernelrelease": "5.4.0-1039-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { @@ -21435,10 +21452,10 @@ "kernelrelease": "5.4.0-1039-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21446,10 +21463,10 @@ "kernelrelease": "5.4.0-1039-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" ] }, { @@ -21457,10 +21474,10 @@ "kernelrelease": "5.4.0-1039-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" ] }, { @@ -21469,11 +21486,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb" ] }, { @@ -21481,9 +21498,9 @@ "kernelrelease": "5.4.0-1040-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb" ] }, @@ -21492,9 +21509,9 @@ "kernelrelease": "5.4.0-1040-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" ] }, @@ -21503,10 +21520,21 @@ "kernelrelease": "5.4.0-1040-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-1041-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, { @@ -21514,21 +21542,21 @@ "kernelrelease": "5.4.0-1041-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb" ] }, { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1041-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1041-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { @@ -21536,21 +21564,21 @@ "kernelrelease": "5.4.0-1041-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1042-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" ] }, { @@ -21558,32 +21586,32 @@ "kernelrelease": "5.4.0-1042-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" ] }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1042-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb" - ] - }, { "kernelversion": "44~18.04.1", "kernelrelease": "5.4.0-1042-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1043-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, { @@ -21591,10 +21619,10 @@ "kernelrelease": "5.4.0-1043-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -21604,19 +21632,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-1043-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb" ] }, { @@ -21624,21 +21652,21 @@ "kernelrelease": "5.4.0-1043-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" ] }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1043-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1044-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -21646,32 +21674,21 @@ "kernelrelease": "5.4.0-1044-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" ] }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" - ] - }, { "kernelversion": "47~18.04.2", "kernelrelease": "5.4.0-1044-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" ] }, { @@ -21679,10 +21696,10 @@ "kernelrelease": "5.4.0-1044-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" ] }, { @@ -21690,32 +21707,32 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1046-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1046-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -21723,10 +21740,10 @@ "kernelrelease": "5.4.0-1046-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" ] }, { @@ -21734,32 +21751,32 @@ "kernelrelease": "5.4.0-1046-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" ] }, { "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1047-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" ] }, { "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1047-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" ] }, { @@ -21767,9 +21784,9 @@ "kernelrelease": "5.4.0-1048-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb" ] }, @@ -21791,8 +21808,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.4.0-1049-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { @@ -21807,14 +21835,14 @@ ] }, { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1049-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -21822,21 +21850,10 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" ] }, { @@ -21844,10 +21861,10 @@ "kernelrelease": "5.4.0-1049-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" ] }, { @@ -21855,10 +21872,10 @@ "kernelrelease": "5.4.0-1051-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" ] }, { @@ -21866,10 +21883,10 @@ "kernelrelease": "5.4.0-1051-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" ] }, { @@ -21877,10 +21894,10 @@ "kernelrelease": "5.4.0-1051-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" ] }, { @@ -21890,30 +21907,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb" ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1052-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1052-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb" ] }, { @@ -21921,10 +21938,10 @@ "kernelrelease": "5.4.0-1052-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb" ] }, { @@ -21932,10 +21949,10 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -21943,10 +21960,10 @@ "kernelrelease": "5.4.0-1053-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -21954,21 +21971,10 @@ "kernelrelease": "5.4.0-1053-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" ] }, { @@ -21976,43 +21982,54 @@ "kernelrelease": "5.4.0-1054-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" ] }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1054-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" + ] + }, { "kernelversion": "58~18.04.1", "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1055-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1055-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" ] }, { @@ -22020,21 +22037,10 @@ "kernelrelease": "5.4.0-1055-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" ] }, { @@ -22042,20 +22048,31 @@ "kernelrelease": "5.4.0-1055-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" ] }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1055-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" + ] + }, { "kernelversion": "59~18.04.1", "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" ] }, @@ -22065,9 +22082,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" ] }, { @@ -22075,10 +22092,10 @@ "kernelrelease": "5.4.0-1056-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" ] }, { @@ -22086,10 +22103,10 @@ "kernelrelease": "5.4.0-1057-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" ] }, { @@ -22097,32 +22114,32 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" ] }, { "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1057-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" ] }, { "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1057-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -22130,10 +22147,10 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb" ] }, { @@ -22143,8 +22160,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" ] }, { @@ -22152,9 +22169,9 @@ "kernelrelease": "5.4.0-1059-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" ] }, @@ -22163,10 +22180,10 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { @@ -22174,10 +22191,10 @@ "kernelrelease": "5.4.0-1059-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { @@ -22186,9 +22203,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb" ] }, { @@ -22198,8 +22215,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" ] }, { @@ -22207,10 +22224,10 @@ "kernelrelease": "5.4.0-1060-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" ] }, { @@ -22218,43 +22235,43 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb" ] }, { "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1062-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1062-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1062-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1062-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb" ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1065-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" ] }, { @@ -22262,21 +22279,21 @@ "kernelrelease": "5.4.0-1065-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1065-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -22284,9 +22301,9 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" ] }, @@ -22295,9 +22312,9 @@ "kernelrelease": "5.4.0-1067-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" ] }, @@ -22306,9 +22323,9 @@ "kernelrelease": "5.4.0-1067-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb" ] }, @@ -22317,9 +22334,9 @@ "kernelrelease": "5.4.0-1067-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" ] }, @@ -22328,10 +22345,10 @@ "kernelrelease": "5.4.0-1068-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { @@ -22339,10 +22356,10 @@ "kernelrelease": "5.4.0-1068-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" ] }, { @@ -22350,10 +22367,10 @@ "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" ] }, { @@ -22361,10 +22378,10 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" ] @@ -22374,9 +22391,9 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" ] }, @@ -22386,20 +22403,53 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" ] }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + ] + }, { "kernelversion": "75~18.04.1", "kernelrelease": "5.4.0-1072-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" ] }, { @@ -22409,8 +22459,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-1073-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb" ] }, { @@ -22419,9 +22480,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb" ] }, { @@ -22435,17 +22496,41 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" ] }, + { + "kernelversion": "83~18.04.2", + "kernelrelease": "5.4.0-1080-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" + ] + }, { "kernelversion": "123~18.04.1", "kernelrelease": "5.4.0-109-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" + ] + }, + { + "kernelversion": "127~18.04.1", + "kernelrelease": "5.4.0-113-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" ] }, { @@ -22455,8 +22540,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" ] @@ -22466,12 +22551,12 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" ] }, { @@ -22479,12 +22564,12 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" ] }, { @@ -22492,12 +22577,12 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb" ] }, { @@ -22505,12 +22590,12 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" ] }, { @@ -22518,12 +22603,12 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb" ] }, { @@ -22531,11 +22616,11 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" ] }, @@ -22544,12 +22629,12 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb" ] }, { @@ -22558,11 +22643,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" ] }, { @@ -22570,12 +22655,12 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" ] }, { @@ -22583,12 +22668,12 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" ] }, { @@ -22596,12 +22681,12 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb" ] }, { @@ -22609,12 +22694,12 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" ] }, { @@ -22622,12 +22707,12 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb" ] }, { @@ -22635,12 +22720,12 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" ] }, { @@ -22648,12 +22733,12 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb" ] }, { @@ -22661,12 +22746,12 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" ] }, { @@ -22675,11 +22760,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb" ] }, { @@ -22687,12 +22772,12 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb" ] }, { @@ -22701,11 +22786,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" ] }, { @@ -22713,12 +22798,12 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb" ] }, { @@ -22726,12 +22811,12 @@ "kernelrelease": "5.4.0-74-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" ] }, { @@ -22739,12 +22824,12 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb" ] }, { @@ -22754,10 +22839,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb" ] }, { @@ -22765,12 +22850,12 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" ] }, { @@ -22778,12 +22863,12 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" ] }, { @@ -22791,12 +22876,12 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb" ] }, { @@ -22804,12 +22889,12 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb" ] }, { @@ -22818,9 +22903,9 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb" ] @@ -22830,12 +22915,12 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" ] }, { @@ -22843,12 +22928,12 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" ] }, { @@ -22856,11 +22941,11 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" ] }, @@ -22869,12 +22954,12 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb" ] }, { @@ -22882,10 +22967,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" ] }, { @@ -22893,10 +22978,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb" ] }, { @@ -22904,32 +22989,32 @@ "kernelrelease": "4.15.0-1024-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1025-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-1025-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" ] }, { @@ -22937,10 +23022,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb" ] }, { @@ -22948,10 +23033,10 @@ "kernelrelease": "4.15.0-1030-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" ] }, { @@ -22959,10 +23044,10 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" ] }, { @@ -22970,8 +23055,8 @@ "kernelrelease": "4.15.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb" ] @@ -22981,10 +23066,10 @@ "kernelrelease": "4.15.0-1036-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" ] }, { @@ -22992,11 +23077,11 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" ] }, @@ -23005,11 +23090,11 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb" ] }, @@ -23018,12 +23103,12 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb" ] }, { @@ -23031,12 +23116,12 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, { @@ -23046,8 +23131,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -23055,12 +23140,12 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" ] }, { @@ -23068,10 +23153,10 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb" ] }, { @@ -23079,10 +23164,10 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" ] }, { @@ -23090,10 +23175,10 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" ] }, { @@ -23101,9 +23186,9 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" ] }, @@ -23113,9 +23198,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" ] }, { @@ -23123,10 +23208,10 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" ] }, { @@ -23135,9 +23220,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" ] }, { @@ -23145,8 +23230,8 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" ] @@ -23156,10 +23241,10 @@ "kernelrelease": "5.4.0-1001-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" ] }, { @@ -23167,10 +23252,10 @@ "kernelrelease": "5.4.0-1018-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" ] }, { @@ -23178,10 +23263,10 @@ "kernelrelease": "5.4.0-1019-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" ] }, { @@ -23190,9 +23275,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb" ] }, { @@ -23200,10 +23285,10 @@ "kernelrelease": "5.4.0-1020-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" ] }, { @@ -23211,11 +23296,11 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] }, @@ -23224,11 +23309,11 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb" ] }, @@ -23237,10 +23322,10 @@ "kernelrelease": "4.15.0-1004-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb" ] }, { @@ -23249,8 +23334,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb" ] }, @@ -23259,10 +23344,10 @@ "kernelrelease": "4.15.0-1007-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" ] }, { @@ -23270,34 +23355,34 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.15.0-1005-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1005-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb" ] }, { @@ -23305,10 +23390,10 @@ "kernelrelease": "5.15.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" ] }, { @@ -23316,10 +23401,21 @@ "kernelrelease": "5.15.0-1005-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" + ] + }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" ] }, { @@ -23327,21 +23423,21 @@ "kernelrelease": "5.15.0-1005-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-ibm", - "target": "ubuntu-ibm", + "kernelversion": "8+22.10.1", + "kernelrelease": "5.15.0-1008-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb" ] }, { @@ -23349,10 +23445,10 @@ "kernelrelease": "5.15.0-27", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, { @@ -23360,10 +23456,10 @@ "kernelrelease": "5.15.0-27-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" ] }, { @@ -23371,10 +23467,32 @@ "kernelrelease": "5.15.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb" + ] + }, + { + "kernelversion": "36+22.10.1", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + ] + }, + { + "kernelversion": "36+22.10.1", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" ] }, { @@ -23382,32 +23500,32 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" ] }, { "kernelversion": "3", - "kernelrelease": "5.15.0-1003-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.15.0-1003-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" ] }, { "kernelversion": "3", - "kernelrelease": "5.15.0-1003-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1003-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" ] }, { @@ -23415,8 +23533,8 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" ] @@ -23427,8 +23545,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, @@ -23437,10 +23555,10 @@ "kernelrelease": "5.15.0-1004-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" ] }, { @@ -23448,10 +23566,10 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23460,9 +23578,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" ] }, { @@ -23470,9 +23588,9 @@ "kernelrelease": "5.15.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, @@ -23481,9 +23599,9 @@ "kernelrelease": "5.15.0-1004-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, @@ -23492,10 +23610,10 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" ] }, { @@ -23503,8 +23621,8 @@ "kernelrelease": "5.17.0-1003-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" ] @@ -23516,8 +23634,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb" ] }, { @@ -23525,23 +23643,12 @@ "kernelrelease": "5.10.0-1058-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb" ] }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" - ] - }, { "kernelversion": "23~20.04.1", "kernelrelease": "5.11.0-1022-oracle-5.11", @@ -23549,8 +23656,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -23559,20 +23666,20 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -23580,21 +23687,21 @@ "kernelrelease": "5.11.0-1028-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-oracle-5.11", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -23602,10 +23709,21 @@ "kernelrelease": "5.11.0-1029-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.11.0-1029-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" ] }, { @@ -23614,8 +23732,8 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" ] }, @@ -23624,10 +23742,10 @@ "kernelrelease": "5.11.0-1029-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb" ] }, { @@ -23635,10 +23753,10 @@ "kernelrelease": "5.11.0-1030-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb" ] }, { @@ -23646,12 +23764,12 @@ "kernelrelease": "5.11.0-40-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb" ] }, { @@ -23659,12 +23777,12 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb" ] }, { @@ -23672,12 +23790,12 @@ "kernelrelease": "5.11.0-42-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb" ] }, { @@ -23685,12 +23803,12 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" ] }, { @@ -23698,12 +23816,12 @@ "kernelrelease": "5.11.0-60-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" ] }, { @@ -23711,12 +23829,23 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1012-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1012_5.13.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1012-intel_5.13.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1012_5.13.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1012-intel_5.13.0-1012.12_amd64.deb" ] }, { @@ -23724,10 +23853,10 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb" ] }, { @@ -23735,10 +23864,10 @@ "kernelrelease": "5.13.0-1014-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" ] }, { @@ -23746,32 +23875,32 @@ "kernelrelease": "5.13.0-1015-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1016-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1016-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" ] }, { @@ -23779,10 +23908,10 @@ "kernelrelease": "5.13.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, { @@ -23790,10 +23919,10 @@ "kernelrelease": "5.13.0-1018-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" ] }, { @@ -23801,10 +23930,10 @@ "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" ] }, { @@ -23814,8 +23943,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" ] }, { @@ -23823,10 +23952,10 @@ "kernelrelease": "5.13.0-1019-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -23834,21 +23963,10 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.13.0-1020-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" ] }, { @@ -23856,21 +23974,21 @@ "kernelrelease": "5.13.0-1020-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1022-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "24", + "kernelrelease": "5.13.0-1020-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" ] }, { @@ -23878,10 +23996,10 @@ "kernelrelease": "5.13.0-1022-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" ] }, { @@ -23890,20 +24008,31 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" ] }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1022-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" + ] + }, { "kernelversion": "25~20.04.1", "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" ] }, { @@ -23911,32 +24040,32 @@ "kernelrelease": "5.13.0-1023-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" ] }, { "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1023-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelrelease": "5.13.0-1023-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { @@ -23944,32 +24073,10 @@ "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.13.0-1025-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1025-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" ] }, { @@ -23977,8 +24084,8 @@ "kernelrelease": "5.13.0-1025-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb" ] @@ -23989,9 +24096,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb" ] }, { @@ -23999,10 +24106,10 @@ "kernelrelease": "5.13.0-1026-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1026_5.13.0-1026.28~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1026_5.13.0-1026.28~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1026_5.13.0-1026.28~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_amd64.deb" ] }, { @@ -24011,9 +24118,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1026-azure_5.13.0-1026.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1026-azure_5.13.0-1026.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb" ] }, { @@ -24023,30 +24130,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-gcp-5.13", + "kernelversion": "33~20.04.1", + "kernelrelease": "5.13.0-1028-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33~20.04.1_amd64.deb" ] }, { @@ -24054,21 +24150,21 @@ "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" ] }, { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1030-oracle-5.13", + "kernelversion": "36~20.04.1", + "kernelrelease": "5.13.0-1031-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1031_5.13.0-1031.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1031_5.13.0-1031.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36~20.04.1_amd64.deb" ] }, { @@ -24076,12 +24172,12 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb" ] }, { @@ -24089,12 +24185,12 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb" ] }, { @@ -24103,11 +24199,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" ] }, { @@ -24115,12 +24211,12 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" ] }, { @@ -24128,12 +24224,12 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" ] }, { @@ -24141,12 +24237,12 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb" ] }, { @@ -24155,11 +24251,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb" ] }, { @@ -24169,10 +24265,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" ] }, { @@ -24180,12 +24276,12 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb" ] }, { @@ -24194,10 +24290,10 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" ] }, @@ -24206,12 +24302,12 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb" ] }, { @@ -24220,10 +24316,10 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" ] }, @@ -24232,12 +24328,12 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" ] }, { @@ -24246,11 +24342,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb" ] }, { @@ -24258,10 +24354,10 @@ "kernelrelease": "5.14.0-1006-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" ] }, { @@ -24269,9 +24365,9 @@ "kernelrelease": "5.14.0-1007-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb" ] }, @@ -24280,9 +24376,9 @@ "kernelrelease": "5.14.0-1008-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb" ] }, @@ -24291,10 +24387,10 @@ "kernelrelease": "5.14.0-1009-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb" ] }, { @@ -24302,10 +24398,10 @@ "kernelrelease": "5.14.0-1011-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" ] }, { @@ -24313,10 +24409,10 @@ "kernelrelease": "5.14.0-1012-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb" ] }, { @@ -24324,10 +24420,10 @@ "kernelrelease": "5.14.0-1013-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb" ] }, { @@ -24335,10 +24431,10 @@ "kernelrelease": "5.14.0-1021-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb" ] }, { @@ -24346,9 +24442,9 @@ "kernelrelease": "5.14.0-1022-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" ] }, @@ -24357,9 +24453,9 @@ "kernelrelease": "5.14.0-1023-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" ] }, @@ -24368,10 +24464,10 @@ "kernelrelease": "5.14.0-1024-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb" ] }, { @@ -24379,10 +24475,10 @@ "kernelrelease": "5.14.0-1028-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb" ] }, { @@ -24392,8 +24488,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" ] }, { @@ -24401,10 +24497,10 @@ "kernelrelease": "5.14.0-1030-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" ] }, { @@ -24412,10 +24508,10 @@ "kernelrelease": "5.14.0-1032-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb" ] }, { @@ -24434,10 +24530,10 @@ "kernelrelease": "5.14.0-1035-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb" ] }, { @@ -24445,8 +24541,8 @@ "kernelrelease": "5.14.0-1036-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb" ] @@ -24456,10 +24552,10 @@ "kernelrelease": "5.14.0-1037-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" ] }, { @@ -24468,9 +24564,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb" ] }, { @@ -24479,9 +24575,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1040_5.14.0-1040.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1040-oem_5.14.0-1040.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1040-oem_5.14.0-1040.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1040_5.14.0-1040.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1040-oem_5.14.0-1040.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1040-oem_5.14.0-1040.44_amd64.deb" ] }, { @@ -24489,9 +24585,9 @@ "kernelrelease": "5.15.0-1002-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb" ] }, @@ -24511,9 +24607,9 @@ "kernelrelease": "5.15.0-1008-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb" ] }, @@ -24534,9 +24630,9 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" ] }, { @@ -24544,10 +24640,10 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb" ] }, { @@ -24556,31 +24652,31 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb" ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { @@ -24589,33 +24685,33 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb" ] }, { "kernelversion": "14", - "kernelrelease": "5.4.0-1013-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1013-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { "kernelversion": "14", - "kernelrelease": "5.4.0-1013-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1013-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb" ] }, { @@ -24623,10 +24719,10 @@ "kernelrelease": "5.4.0-1015-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" ] }, { @@ -24634,10 +24730,10 @@ "kernelrelease": "5.4.0-1015-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" ] }, { @@ -24645,12 +24741,12 @@ "kernelrelease": "5.4.0-102", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" ] }, { @@ -24658,32 +24754,21 @@ "kernelrelease": "5.4.0-1021-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb" ] }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1023-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb" - ] - }, { "kernelversion": "26", "kernelrelease": "5.4.0-1024-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1024_5.4.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1024_5.4.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1024-ibm_5.4.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1024-ibm_5.4.0-1024.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1024-ibm_5.4.0-1024.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1024_5.4.0-1024.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1024_5.4.0-1024.26_all.deb" ] }, { @@ -24691,21 +24776,10 @@ "kernelrelease": "5.4.0-1032-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { @@ -24713,32 +24787,32 @@ "kernelrelease": "5.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1034-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -24746,32 +24820,32 @@ "kernelrelease": "5.4.0-1034-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.4.0-1035-gkeop", + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb" ] }, { @@ -24779,21 +24853,32 @@ "kernelrelease": "5.4.0-1035-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" ] }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1035-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb" + ] + }, { "kernelversion": "40", "kernelrelease": "5.4.0-1039-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb" ] }, { @@ -24802,31 +24887,31 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1040-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1040-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1040-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1040-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb" ] }, { @@ -24834,9 +24919,9 @@ "kernelrelease": "5.4.0-1041-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, @@ -24852,14 +24937,14 @@ ] }, { - "kernelversion": "44", - "kernelrelease": "5.4.0-1043-gkeop", + "kernelversion": "45", + "kernelrelease": "5.4.0-1044-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1044_5.4.0-1044.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1044-gkeop_5.4.0-1044.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1044-gkeop_5.4.0-1044.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1044_5.4.0-1044.45_all.deb" ] }, { @@ -24867,12 +24952,12 @@ "kernelrelease": "5.4.0-105", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb" ] }, { @@ -24880,32 +24965,32 @@ "kernelrelease": "5.4.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1054-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1054-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" ] }, { @@ -24915,30 +25000,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-1055-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1055-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-1055-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1055-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" ] }, { @@ -24947,9 +25032,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb" ] }, { @@ -24957,21 +25042,10 @@ "kernelrelease": "5.4.0-1056-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.4.0-1057-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb" ] }, { @@ -24986,14 +25060,14 @@ ] }, { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-oracle", - "target": "ubuntu-oracle", + "kernelversion": "61", + "kernelrelease": "5.4.0-1057-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb" ] }, { @@ -25001,43 +25075,43 @@ "kernelrelease": "5.4.0-1058-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1058-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1059-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" ] }, { @@ -25045,10 +25119,21 @@ "kernelrelease": "5.4.0-1059-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" ] }, { @@ -25056,23 +25141,12 @@ "kernelrelease": "5.4.0-106", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "5.4.0-1060-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb" ] }, { @@ -25080,10 +25154,10 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { @@ -25091,21 +25165,21 @@ "kernelrelease": "5.4.0-1060-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" ] }, { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-kvm", + "kernelversion": "63", + "kernelrelease": "5.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" ] }, { @@ -25113,21 +25187,10 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -25137,30 +25200,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-gke", - "target": "ubuntu-gke", + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" ] }, { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-kvm", - "target": "ubuntu-kvm", + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" ] }, { @@ -25168,21 +25231,32 @@ "kernelrelease": "5.4.0-1062-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "5.4.0-1062-oracle", - "target": "ubuntu-oracle", + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" + ] + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb" ] }, { @@ -25192,8 +25266,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" + ] + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1062-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, { @@ -25201,10 +25286,10 @@ "kernelrelease": "5.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb" ] }, { @@ -25212,32 +25297,32 @@ "kernelrelease": "5.4.0-1063-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1063-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1063-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { @@ -25245,10 +25330,10 @@ "kernelrelease": "5.4.0-1063-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" ] }, { @@ -25256,10 +25341,10 @@ "kernelrelease": "5.4.0-1063-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" ] }, { @@ -25267,32 +25352,32 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1064-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1064-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1064-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1064-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -25301,9 +25386,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" ] }, { @@ -25313,8 +25398,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" ] }, { @@ -25322,10 +25407,10 @@ "kernelrelease": "5.4.0-1064-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb" ] }, { @@ -25333,32 +25418,32 @@ "kernelrelease": "5.4.0-1065-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1065-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1065-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb" ] }, { @@ -25377,10 +25462,21 @@ "kernelrelease": "5.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" + ] + }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1066-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1066-kvm_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1066-kvm_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1066_5.4.0-1066.69_all.deb" ] }, { @@ -25388,10 +25484,10 @@ "kernelrelease": "5.4.0-1066-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" ] }, { @@ -25399,21 +25495,10 @@ "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "5.4.0-1066-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1066-kvm_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1066-kvm_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" ] }, { @@ -25421,21 +25506,10 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "5.4.0-1068-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb" ] }, { @@ -25444,19 +25518,30 @@ "target": "ubuntu-gke", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" ] }, + { + "kernelversion": "71", + "kernelrelease": "5.4.0-1068-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb" + ] + }, { "kernelversion": "71+cvm1", "kernelrelease": "5.4.0-1068-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb" ] }, @@ -25466,9 +25551,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" ] }, { @@ -25476,10 +25561,10 @@ "kernelrelease": "5.4.0-1069-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" ] }, { @@ -25487,8 +25572,8 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb" ] @@ -25500,8 +25585,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb" ] }, { @@ -25509,10 +25594,10 @@ "kernelrelease": "5.4.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" ] }, { @@ -25521,11 +25606,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb" ] }, { @@ -25533,10 +25618,10 @@ "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" ] }, { @@ -25544,10 +25629,10 @@ "kernelrelease": "5.4.0-1070-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" ] }, { @@ -25555,10 +25640,10 @@ "kernelrelease": "5.4.0-1070-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" ] }, { @@ -25566,10 +25651,10 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb" ] }, { @@ -25577,10 +25662,21 @@ "kernelrelease": "5.4.0-1071-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" + ] + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb" ] }, { @@ -25589,9 +25685,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb" ] }, { @@ -25599,21 +25695,10 @@ "kernelrelease": "5.4.0-1071-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb" ] }, { @@ -25621,54 +25706,43 @@ "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", + "kernelversion": "78", + "kernelrelease": "5.4.0-1072-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1073-gke_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1073-gke_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1072-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1073-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" ] }, { @@ -25676,21 +25750,10 @@ "kernelrelease": "5.4.0-1073-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" ] }, { @@ -25699,9 +25762,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" ] }, { @@ -25709,21 +25772,21 @@ "kernelrelease": "5.4.0-1073-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1073-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1074-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" ] }, { @@ -25731,21 +25794,10 @@ "kernelrelease": "5.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" ] }, { @@ -25753,10 +25805,21 @@ "kernelrelease": "5.4.0-1074-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb" + ] + }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1074-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1074_5.4.0-1074.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1074_5.4.0-1074.80_all.deb" ] }, { @@ -25764,10 +25827,10 @@ "kernelrelease": "5.4.0-1075-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb" ] }, { @@ -25775,10 +25838,10 @@ "kernelrelease": "5.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" ] }, { @@ -25786,10 +25849,10 @@ "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb" ] }, { @@ -25797,10 +25860,21 @@ "kernelrelease": "5.4.0-1076-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1076_5.4.0-1076.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1076_5.4.0-1076.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_amd64.deb" + ] + }, + { + "kernelversion": "81", + "kernelrelease": "5.4.0-1076-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1076_5.4.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1076_5.4.0-1076.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81_amd64.deb" ] }, { @@ -25808,8 +25882,8 @@ "kernelrelease": "5.4.0-1076-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb" ] @@ -25819,10 +25893,10 @@ "kernelrelease": "5.4.0-1078-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb" ] }, { @@ -25830,10 +25904,10 @@ "kernelrelease": "5.4.0-1078-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" ] }, { @@ -25841,12 +25915,12 @@ "kernelrelease": "5.4.0-108", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" ] }, { @@ -25854,21 +25928,10 @@ "kernelrelease": "5.4.0-1080-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" - ] - }, - { - "kernelversion": "83+cvm1", - "kernelrelease": "5.4.0-1080-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" ] }, { @@ -25876,10 +25939,10 @@ "kernelrelease": "5.4.0-1081-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_amd64.deb" ] }, { @@ -25888,11 +25951,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb" ] }, { @@ -25900,12 +25963,12 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" ] }, { @@ -25913,12 +25976,12 @@ "kernelrelease": "5.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb" ] }, { @@ -25926,12 +25989,12 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb" ] }, { @@ -25939,12 +26002,12 @@ "kernelrelease": "5.4.0-114", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb" ] }, { @@ -25952,12 +26015,12 @@ "kernelrelease": "5.4.0-115", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-generic_5.4.0-115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-generic_5.4.0-115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129_amd64.deb" ] }, { @@ -25965,12 +26028,12 @@ "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" ] }, { @@ -25979,11 +26042,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" ] }, { @@ -25991,10 +26054,10 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" ] @@ -26004,10 +26067,10 @@ "kernelrelease": "5.8.0-1033-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { @@ -26015,10 +26078,10 @@ "kernelrelease": "5.8.0-1033-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { @@ -26026,10 +26089,10 @@ "kernelrelease": "5.8.0-1036-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" ] }, { @@ -26037,10 +26100,10 @@ "kernelrelease": "5.8.0-1036-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb" ] }, { @@ -26048,12 +26111,12 @@ "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" ] }, { @@ -26061,10 +26124,10 @@ "kernelrelease": "5.10.0-1013-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" ] }, { @@ -26072,9 +26135,9 @@ "kernelrelease": "5.10.0-1014-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb" ] }, @@ -26084,9 +26147,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb" ] }, { @@ -26094,10 +26157,10 @@ "kernelrelease": "5.10.0-1017-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb" ] }, { @@ -26105,10 +26168,10 @@ "kernelrelease": "5.10.0-1019-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" ] }, { @@ -26116,9 +26179,9 @@ "kernelrelease": "5.10.0-1021-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" ] }, @@ -26128,9 +26191,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb" ] }, { @@ -26138,10 +26201,10 @@ "kernelrelease": "5.10.0-1023-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb" ] }, { @@ -26149,8 +26212,8 @@ "kernelrelease": "5.10.0-1025-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" ] @@ -26160,10 +26223,10 @@ "kernelrelease": "5.10.0-1026-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb" ] }, { @@ -26171,10 +26234,10 @@ "kernelrelease": "5.10.0-1029-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" ] }, { @@ -26183,9 +26246,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" ] }, { @@ -26193,10 +26256,10 @@ "kernelrelease": "5.10.0-1038-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" ] }, { @@ -26205,8 +26268,8 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" ] }, @@ -26215,10 +26278,10 @@ "kernelrelease": "5.10.0-1045-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" ] }, { @@ -26226,9 +26289,9 @@ "kernelrelease": "5.10.0-1049-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" ] }, @@ -26237,9 +26300,9 @@ "kernelrelease": "5.10.0-1050-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" ] }, @@ -26248,10 +26311,10 @@ "kernelrelease": "5.10.0-1051-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb" ] }, { @@ -26259,10 +26322,10 @@ "kernelrelease": "5.10.0-1053-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" ] }, { @@ -26270,10 +26333,10 @@ "kernelrelease": "5.10.0-1055-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" ] }, { @@ -26281,9 +26344,9 @@ "kernelrelease": "5.10.0-1057-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb" ] }, @@ -26293,31 +26356,31 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1013-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1013-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb" ] }, { @@ -26325,10 +26388,10 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" ] }, { @@ -26347,9 +26410,9 @@ "kernelrelease": "5.11.0-1015-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" ] }, @@ -26359,8 +26422,8 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, @@ -26369,10 +26432,21 @@ "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + ] + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -26380,10 +26454,10 @@ "kernelrelease": "5.11.0-1017-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -26393,19 +26467,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -26414,9 +26477,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" ] }, { @@ -26424,10 +26487,10 @@ "kernelrelease": "5.11.0-1018-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" ] }, { @@ -26435,32 +26498,32 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1019-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -26468,32 +26531,32 @@ "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1020-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1020-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { @@ -26501,10 +26564,10 @@ "kernelrelease": "5.11.0-1020-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" ] }, { @@ -26512,10 +26575,10 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" ] }, { @@ -26523,10 +26586,10 @@ "kernelrelease": "5.11.0-1021-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" ] }, { @@ -26535,8 +26598,8 @@ "target": "ubuntu-oracle-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, @@ -26545,10 +26608,10 @@ "kernelrelease": "5.11.0-1021-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" ] }, { @@ -26564,13 +26627,13 @@ }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1023-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -26578,21 +26641,21 @@ "kernelrelease": "5.11.0-1023-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -26600,10 +26663,10 @@ "kernelrelease": "5.11.0-1023-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -26612,31 +26675,31 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -26644,10 +26707,10 @@ "kernelrelease": "5.11.0-1025-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb" ] }, { @@ -26655,10 +26718,21 @@ "kernelrelease": "5.11.0-1026-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { @@ -26667,9 +26741,9 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -26677,21 +26751,10 @@ "kernelrelease": "5.11.0-1027-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -26699,10 +26762,10 @@ "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" ] }, { @@ -26710,10 +26773,10 @@ "kernelrelease": "5.11.0-1028-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" ] }, { @@ -26722,10 +26785,10 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb" ] }, @@ -26734,12 +26797,12 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb" ] }, { @@ -26747,12 +26810,12 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" ] }, { @@ -26760,12 +26823,12 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb" ] }, { @@ -26773,12 +26836,12 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" ] }, { @@ -26786,12 +26849,12 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" ] }, { @@ -26799,12 +26862,12 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb" ] }, { @@ -26813,11 +26876,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" ] }, { @@ -26825,11 +26888,11 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" ] }, @@ -26838,10 +26901,10 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" ] }, { @@ -26849,32 +26912,32 @@ "kernelrelease": "5.13.0-1008-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1008-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.13.0-1008-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1008-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelrelease": "5.13.0-1008-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb" ] }, { @@ -26882,10 +26945,10 @@ "kernelrelease": "5.13.0-1009-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" ] }, { @@ -26894,9 +26957,9 @@ "target": "ubuntu-intel-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" ] }, { @@ -26904,21 +26967,10 @@ "kernelrelease": "5.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" ] }, { @@ -26926,21 +26978,43 @@ "kernelrelease": "5.13.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + ] + }, { "kernelversion": "10", "kernelrelease": "5.13.0-1010-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1010-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" ] }, { @@ -26948,9 +27022,9 @@ "kernelrelease": "5.13.0-1010-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb" ] }, @@ -26959,21 +27033,10 @@ "kernelrelease": "5.13.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.13.0-1010-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb" ] }, { @@ -26981,10 +27044,10 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" ] }, { @@ -26992,10 +27055,10 @@ "kernelrelease": "5.13.0-1011-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" ] }, { @@ -27003,10 +27066,10 @@ "kernelrelease": "5.13.0-1011-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" ] }, { @@ -27014,10 +27077,10 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb" ] }, { @@ -27025,10 +27088,10 @@ "kernelrelease": "5.13.0-1012-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" ] }, { @@ -27036,10 +27099,10 @@ "kernelrelease": "5.13.0-1012-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" ] }, { @@ -27047,10 +27110,10 @@ "kernelrelease": "5.13.0-1012-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb" ] }, { @@ -27058,10 +27121,10 @@ "kernelrelease": "5.13.0-1013-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" ] }, { @@ -27069,10 +27132,10 @@ "kernelrelease": "5.13.0-1014-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb" ] }, { @@ -27080,10 +27143,10 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" ] }, { @@ -27091,32 +27154,32 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { @@ -27124,9 +27187,9 @@ "kernelrelease": "5.13.0-1017-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb" ] }, @@ -27135,9 +27198,9 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" ] }, @@ -27146,10 +27209,10 @@ "kernelrelease": "5.13.0-1019-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" ] }, { @@ -27157,10 +27220,10 @@ "kernelrelease": "5.13.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb" ] }, { @@ -27169,8 +27232,8 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" ] }, @@ -27179,10 +27242,10 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb" ] }, { @@ -27190,10 +27253,10 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" ] }, { @@ -27201,10 +27264,10 @@ "kernelrelease": "5.13.0-1021-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb" ] }, { @@ -27212,9 +27275,9 @@ "kernelrelease": "5.13.0-1021-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" ] }, @@ -27234,10 +27297,10 @@ "kernelrelease": "5.13.0-1022-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" ] }, { @@ -27245,10 +27308,32 @@ "kernelrelease": "5.13.0-1024-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.13.0-1025-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" + ] + }, + { + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1025-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" ] }, { @@ -27256,10 +27341,32 @@ "kernelrelease": "5.13.0-1026-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { @@ -27267,10 +27374,10 @@ "kernelrelease": "5.13.0-1028-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" ] }, { @@ -27278,23 +27385,34 @@ "kernelrelease": "5.13.0-1029-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb" ] }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1030-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + ] + }, { "kernelversion": "23~20.04.2", "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb" ] }, { @@ -27302,12 +27420,12 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb" ] }, { @@ -27315,12 +27433,12 @@ "kernelrelease": "5.13.0-27-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" ] }, { @@ -27328,12 +27446,12 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" ] }, { @@ -27341,12 +27459,12 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb" ] }, { @@ -27354,10 +27472,10 @@ "kernelrelease": "5.14.0-1004-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" ] }, { @@ -27366,9 +27484,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" ] }, { @@ -27387,9 +27505,9 @@ "kernelrelease": "5.14.0-1020-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb" ] }, @@ -27398,10 +27516,10 @@ "kernelrelease": "5.14.0-1027-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" ] }, { @@ -27409,10 +27527,10 @@ "kernelrelease": "5.14.0-1031-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" ] }, { @@ -27420,10 +27538,10 @@ "kernelrelease": "5.15.0-1003-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb" ] }, { @@ -27432,9 +27550,9 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" ] }, { @@ -27442,10 +27560,10 @@ "kernelrelease": "5.4.0-1006-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" ] }, { @@ -27453,43 +27571,43 @@ "kernelrelease": "5.4.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb" ] }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1008-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" - ] - }, { "kernelversion": "9", "kernelrelease": "5.4.0-1008-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" ] }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1008-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + ] + }, { "kernelversion": "10", "kernelrelease": "5.4.0-1009-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" ] }, { @@ -27497,10 +27615,10 @@ "kernelrelease": "5.4.0-1010-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { @@ -27508,32 +27626,21 @@ "kernelrelease": "5.4.0-1010-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1011-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" ] }, { @@ -27549,13 +27656,24 @@ }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { @@ -27565,8 +27683,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" ] }, { @@ -27575,9 +27693,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" ] }, { @@ -27585,10 +27703,10 @@ "kernelrelease": "5.4.0-1012-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" ] }, { @@ -27596,32 +27714,32 @@ "kernelrelease": "5.4.0-1012-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1014-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1014-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1014-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1014-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb" ] }, { @@ -27629,32 +27747,32 @@ "kernelrelease": "5.4.0-1015-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1015-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1015-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" ] }, { @@ -27662,9 +27780,9 @@ "kernelrelease": "5.4.0-1015-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, @@ -27673,10 +27791,10 @@ "kernelrelease": "5.4.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" ] }, { @@ -27684,10 +27802,10 @@ "kernelrelease": "5.4.0-1016-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" ] }, { @@ -27695,10 +27813,10 @@ "kernelrelease": "5.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" ] }, { @@ -27707,9 +27825,9 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb" ] }, { @@ -27717,10 +27835,21 @@ "kernelrelease": "5.4.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + ] + }, + { + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" ] }, { @@ -27728,9 +27857,9 @@ "kernelrelease": "5.4.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" ] }, @@ -27745,25 +27874,14 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb" ] }, - { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb" - ] - }, { "kernelversion": "19", "kernelrelease": "5.4.0-1018-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" ] }, @@ -27773,9 +27891,9 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" ] }, { @@ -27783,10 +27901,10 @@ "kernelrelease": "5.4.0-1019-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb" ] }, { @@ -27794,10 +27912,10 @@ "kernelrelease": "5.4.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" ] }, { @@ -27805,10 +27923,10 @@ "kernelrelease": "5.4.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" ] }, { @@ -27816,32 +27934,32 @@ "kernelrelease": "5.4.0-1019-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1020-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1020-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" ] }, { @@ -27850,8 +27968,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, @@ -27860,32 +27978,32 @@ "kernelrelease": "5.4.0-1020-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1021-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" ] }, { @@ -27893,8 +28011,8 @@ "kernelrelease": "5.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] @@ -27904,10 +28022,10 @@ "kernelrelease": "5.4.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { @@ -27927,20 +28045,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb" ] }, { @@ -27949,9 +28056,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" ] }, { @@ -27959,32 +28066,32 @@ "kernelrelease": "5.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.4.0-1022-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.4.0-1023-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1022-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" ] }, { @@ -27993,31 +28100,42 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb" ] }, + { + "kernelversion": "23", + "kernelrelease": "5.4.0-1023-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" + ] + }, { "kernelversion": "24", "kernelrelease": "5.4.0-1023-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-kvm", - "target": "ubuntu-kvm", + "kernelversion": "25", + "kernelrelease": "5.4.0-1023-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb" ] }, { @@ -28025,32 +28143,43 @@ "kernelrelease": "5.4.0-1024-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" ] }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" + ] + }, { "kernelversion": "24", "kernelrelease": "5.4.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1024-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb" ] }, { @@ -28058,54 +28187,54 @@ "kernelrelease": "5.4.0-1024-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb" ] }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb" - ] - }, { "kernelversion": "25", "kernelrelease": "5.4.0-1025-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" ] }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + ] + }, { "kernelversion": "25", "kernelrelease": "5.4.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" ] }, { @@ -28115,8 +28244,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" ] }, { @@ -28124,32 +28253,32 @@ "kernelrelease": "5.4.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.4.0-1026-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1026-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.4.0-1026-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1026-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb" ] }, { @@ -28157,10 +28286,21 @@ "kernelrelease": "5.4.0-1027-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" ] }, { @@ -28168,10 +28308,10 @@ "kernelrelease": "5.4.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" ] }, { @@ -28180,20 +28320,20 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws", + "kernelversion": "30", + "kernelrelease": "5.4.0-1029-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" ] }, { @@ -28201,21 +28341,21 @@ "kernelrelease": "5.4.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.4.0-1029-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "31", + "kernelrelease": "5.4.0-1029-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb" ] }, { @@ -28229,26 +28369,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" ] }, - { - "kernelversion": "31", - "kernelrelease": "5.4.0-1029-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" - ] - }, { "kernelversion": "31", "kernelrelease": "5.4.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb" ] }, { @@ -28256,10 +28385,10 @@ "kernelrelease": "5.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { @@ -28268,9 +28397,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { @@ -28278,9 +28407,9 @@ "kernelrelease": "5.4.0-1031-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, @@ -28290,9 +28419,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb" ] }, { @@ -28300,43 +28429,43 @@ "kernelrelease": "5.4.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" ] }, - { - "kernelversion": "34", - "kernelrelease": "5.4.0-1033-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" - ] - }, { "kernelversion": "34", "kernelrelease": "5.4.0-1033-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb" ] }, + { + "kernelversion": "34", + "kernelrelease": "5.4.0-1033-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + ] + }, { "kernelversion": "37", "kernelrelease": "5.4.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" ] }, { @@ -28344,10 +28473,10 @@ "kernelrelease": "5.4.0-1034-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb" ] }, { @@ -28357,8 +28486,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb" ] }, { @@ -28366,10 +28495,10 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" ] }, { @@ -28377,10 +28506,10 @@ "kernelrelease": "5.4.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" ] }, { @@ -28388,10 +28517,10 @@ "kernelrelease": "5.4.0-1036-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb" ] }, { @@ -28399,10 +28528,10 @@ "kernelrelease": "5.4.0-1036-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" ] }, { @@ -28410,10 +28539,10 @@ "kernelrelease": "5.4.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" ] }, { @@ -28421,8 +28550,8 @@ "kernelrelease": "5.4.0-1036-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb" ] @@ -28432,32 +28561,32 @@ "kernelrelease": "5.4.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1037-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1037-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1037-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1037-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" ] }, { @@ -28465,10 +28594,10 @@ "kernelrelease": "5.4.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" ] }, { @@ -28476,10 +28605,10 @@ "kernelrelease": "5.4.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb" ] }, { @@ -28487,10 +28616,10 @@ "kernelrelease": "5.4.0-1037-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, { @@ -28498,10 +28627,10 @@ "kernelrelease": "5.4.0-1037-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, { @@ -28509,9 +28638,9 @@ "kernelrelease": "5.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb" ] }, @@ -28520,10 +28649,10 @@ "kernelrelease": "5.4.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb" ] }, { @@ -28533,41 +28662,41 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1038-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1038-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1038-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1038-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1039-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1039-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb" ] }, { @@ -28575,21 +28704,21 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1039-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1039-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb" ] }, { @@ -28597,10 +28726,10 @@ "kernelrelease": "5.4.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" ] }, { @@ -28608,12 +28737,12 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" ] }, { @@ -28622,8 +28751,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" ] }, @@ -28632,10 +28761,10 @@ "kernelrelease": "5.4.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" ] }, { @@ -28643,21 +28772,10 @@ "kernelrelease": "5.4.0-1041-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" ] }, { @@ -28666,20 +28784,20 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "5.4.0-1041-oracle", - "target": "ubuntu-oracle", + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" ] }, { @@ -28687,21 +28805,21 @@ "kernelrelease": "5.4.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.4.0-1042-gcp", - "target": "ubuntu-gcp", + "kernelversion": "44", + "kernelrelease": "5.4.0-1041-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb" ] }, { @@ -28709,10 +28827,21 @@ "kernelrelease": "5.4.0-1042-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" ] }, { @@ -28720,10 +28849,21 @@ "kernelrelease": "5.4.0-1042-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1043-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb" ] }, { @@ -28731,8 +28871,8 @@ "kernelrelease": "5.4.0-1043-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" ] @@ -28742,21 +28882,21 @@ "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.4.0-1043-azure", - "target": "ubuntu-azure", + "kernelversion": "46", + "kernelrelease": "5.4.0-1043-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb" ] }, { @@ -28764,21 +28904,21 @@ "kernelrelease": "5.4.0-1043-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "5.4.0-1043-oracle", - "target": "ubuntu-oracle", + "kernelversion": "44", + "kernelrelease": "5.4.0-1043-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb" ] }, { @@ -28786,10 +28926,10 @@ "kernelrelease": "5.4.0-1044-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" ] }, { @@ -28797,10 +28937,10 @@ "kernelrelease": "5.4.0-1044-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, { @@ -28808,10 +28948,10 @@ "kernelrelease": "5.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, { @@ -28819,10 +28959,10 @@ "kernelrelease": "5.4.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" ] }, { @@ -28830,10 +28970,10 @@ "kernelrelease": "5.4.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb" ] }, { @@ -28841,9 +28981,9 @@ "kernelrelease": "5.4.0-1045-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, @@ -28852,21 +28992,10 @@ "kernelrelease": "5.4.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" ] }, { @@ -28874,21 +29003,32 @@ "kernelrelease": "5.4.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, + { + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" + ] + }, { "kernelversion": "48", "kernelrelease": "5.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { @@ -28896,9 +29036,9 @@ "kernelrelease": "5.4.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" ] }, @@ -28907,10 +29047,21 @@ "kernelrelease": "5.4.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { @@ -28918,9 +29069,9 @@ "kernelrelease": "5.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" ] }, @@ -28929,32 +29080,10 @@ "kernelrelease": "5.4.0-1047-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb" ] }, { @@ -28963,9 +29092,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" ] }, { @@ -28973,10 +29102,21 @@ "kernelrelease": "5.4.0-1048-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" ] }, { @@ -28984,10 +29124,10 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb" ] }, { @@ -28995,10 +29135,10 @@ "kernelrelease": "5.4.0-1049-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb" ] }, { @@ -29006,9 +29146,9 @@ "kernelrelease": "5.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, @@ -29017,10 +29157,10 @@ "kernelrelease": "5.4.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { @@ -29028,10 +29168,10 @@ "kernelrelease": "5.4.0-1049-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb" ] }, { @@ -29040,9 +29180,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" ] }, { @@ -29051,31 +29191,31 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1051-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1051-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1051-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1051-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" ] }, { @@ -29083,10 +29223,10 @@ "kernelrelease": "5.4.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { @@ -29096,8 +29236,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" ] }, { @@ -29105,21 +29245,10 @@ "kernelrelease": "5.4.0-1051-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-1052-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" ] }, { @@ -29127,21 +29256,32 @@ "kernelrelease": "5.4.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" ] }, + { + "kernelversion": "56", + "kernelrelease": "5.4.0-1052-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb" + ] + }, { "kernelversion": "55", "kernelrelease": "5.4.0-1052-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" ] }, { @@ -29160,10 +29300,10 @@ "kernelrelease": "5.4.0-1053-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb" ] }, { @@ -29171,10 +29311,10 @@ "kernelrelease": "5.4.0-1053-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" ] }, { @@ -29183,20 +29323,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" ] }, { @@ -29205,20 +29334,20 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-aws", - "target": "ubuntu-aws", + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" ] }, { @@ -29226,10 +29355,21 @@ "kernelrelease": "5.4.0-1055-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" ] }, { @@ -29249,31 +29389,31 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb" ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-1056-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1056-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb" ] }, { "kernelversion": "59", - "kernelrelease": "5.4.0-1056-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1056-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" ] }, { @@ -29281,10 +29421,10 @@ "kernelrelease": "5.4.0-1056-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" ] }, { @@ -29292,21 +29432,10 @@ "kernelrelease": "5.4.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" ] }, { @@ -29315,20 +29444,20 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws", + "kernelversion": "60", + "kernelrelease": "5.4.0-1057-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb" ] }, { @@ -29336,21 +29465,32 @@ "kernelrelease": "5.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, + { + "kernelversion": "61", + "kernelrelease": "5.4.0-1058-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + ] + }, { "kernelversion": "60", "kernelrelease": "5.4.0-1058-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" ] }, { @@ -29358,10 +29498,10 @@ "kernelrelease": "5.4.0-1059-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" ] }, { @@ -29370,9 +29510,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" ] }, { @@ -29381,8 +29521,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" ] }, @@ -29391,10 +29531,10 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" ] }, { @@ -29402,10 +29542,10 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" ] }, { @@ -29413,10 +29553,10 @@ "kernelrelease": "5.4.0-1067-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb" ] }, { @@ -29424,10 +29564,10 @@ "kernelrelease": "5.4.0-1067-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" ] }, { @@ -29435,10 +29575,10 @@ "kernelrelease": "5.4.0-1067-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" ] }, { @@ -29446,32 +29586,32 @@ "kernelrelease": "5.4.0-1067-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1068-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1068-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1068-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1068-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" ] }, { @@ -29479,10 +29619,43 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb" ] }, { @@ -29491,8 +29664,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb" ] }, @@ -29501,12 +29674,23 @@ "kernelrelease": "5.4.0-1072-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb" ] }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1073-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb" + ] + }, { "kernelversion": "80", "kernelrelease": "5.4.0-1077-azure", @@ -29514,8 +29698,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" ] }, { @@ -29523,12 +29707,12 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" ] }, { @@ -29536,11 +29720,11 @@ "kernelrelease": "5.4.0-29", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" ] }, @@ -29549,12 +29733,12 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb" ] }, { @@ -29562,12 +29746,12 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb" ] }, { @@ -29575,12 +29759,12 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" ] }, { @@ -29588,12 +29772,12 @@ "kernelrelease": "5.4.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" ] }, { @@ -29601,11 +29785,11 @@ "kernelrelease": "5.4.0-40", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb" ] }, @@ -29614,11 +29798,11 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb" ] }, @@ -29627,12 +29811,12 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb" ] }, { @@ -29640,12 +29824,12 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" ] }, { @@ -29653,12 +29837,12 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" ] }, { @@ -29666,12 +29850,12 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" ] }, { @@ -29681,10 +29865,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" ] }, { @@ -29692,11 +29876,11 @@ "kernelrelease": "5.4.0-53", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" ] }, @@ -29705,10 +29889,10 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" ] @@ -29718,12 +29902,12 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb" ] }, { @@ -29732,11 +29916,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb" ] }, { @@ -29744,11 +29928,11 @@ "kernelrelease": "5.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb" ] }, @@ -29757,12 +29941,12 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" ] }, { @@ -29770,12 +29954,12 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb" ] }, { @@ -29783,12 +29967,12 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb" ] }, { @@ -29796,12 +29980,12 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb" ] }, { @@ -29809,12 +29993,12 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" ] }, { @@ -29822,12 +30006,12 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" ] }, { @@ -29835,12 +30019,12 @@ "kernelrelease": "5.4.0-73", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" ] }, { @@ -29848,12 +30032,12 @@ "kernelrelease": "5.4.0-74", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" ] }, { @@ -29861,12 +30045,12 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb" ] }, { @@ -29874,11 +30058,11 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb" ] }, @@ -29887,12 +30071,12 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" ] }, { @@ -29900,12 +30084,12 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" ] }, { @@ -29913,12 +30097,12 @@ "kernelrelease": "5.4.0-86", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" ] }, { @@ -29926,12 +30110,12 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" ] }, { @@ -29940,11 +30124,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb" ] }, { @@ -29952,12 +30136,12 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" ] }, { @@ -29965,12 +30149,12 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb" ] }, { @@ -29978,12 +30162,12 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb" ] }, { @@ -29991,12 +30175,12 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb" ] }, { @@ -30004,12 +30188,12 @@ "kernelrelease": "5.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb" ] }, { @@ -30017,10 +30201,10 @@ "kernelrelease": "5.6.0-1008-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb" ] }, { @@ -30028,10 +30212,10 @@ "kernelrelease": "5.6.0-1010-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" ] }, { @@ -30039,9 +30223,9 @@ "kernelrelease": "5.6.0-1011-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" ] }, @@ -30050,10 +30234,10 @@ "kernelrelease": "5.6.0-1013-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" ] }, { @@ -30061,10 +30245,10 @@ "kernelrelease": "5.6.0-1017-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb" ] }, { @@ -30072,10 +30256,10 @@ "kernelrelease": "5.6.0-1018-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" ] }, { @@ -30083,10 +30267,10 @@ "kernelrelease": "5.6.0-1020-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb" ] }, { @@ -30094,10 +30278,10 @@ "kernelrelease": "5.6.0-1023-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb" ] }, { @@ -30105,10 +30289,10 @@ "kernelrelease": "5.6.0-1026-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" ] }, { @@ -30116,10 +30300,10 @@ "kernelrelease": "5.6.0-1028-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb" ] }, { @@ -30128,9 +30312,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" ] }, { @@ -30138,10 +30322,10 @@ "kernelrelease": "5.6.0-1032-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" ] }, { @@ -30149,10 +30333,10 @@ "kernelrelease": "5.6.0-1033-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" ] }, { @@ -30160,8 +30344,8 @@ "kernelrelease": "5.6.0-1039-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" ] @@ -30171,10 +30355,10 @@ "kernelrelease": "5.6.0-1042-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" ] }, { @@ -30182,10 +30366,10 @@ "kernelrelease": "5.6.0-1047-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" ] }, { @@ -30193,10 +30377,10 @@ "kernelrelease": "5.6.0-1048-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" ] }, { @@ -30204,10 +30388,10 @@ "kernelrelease": "5.6.0-1050-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" ] }, { @@ -30226,10 +30410,10 @@ "kernelrelease": "5.6.0-1053-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb" ] }, { @@ -30237,9 +30421,9 @@ "kernelrelease": "5.6.0-1054-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" ] }, @@ -30249,9 +30433,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" ] }, { @@ -30259,10 +30443,10 @@ "kernelrelease": "5.6.0-1056-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" ] }, { @@ -30270,9 +30454,9 @@ "kernelrelease": "5.8.0-1031-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, @@ -30281,10 +30465,10 @@ "kernelrelease": "5.8.0-1032-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb" ] }, { @@ -30293,9 +30477,9 @@ "target": "ubuntu-oracle-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" ] }, { @@ -30316,8 +30500,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { @@ -30326,31 +30510,31 @@ "target": "ubuntu-oracle-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb" ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelrelease": "5.8.0-1038-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws-5.8", - "target": "ubuntu-aws-5.8", + "kernelrelease": "5.8.0-1038-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { @@ -30358,10 +30542,10 @@ "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" ] }, { @@ -30371,8 +30555,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" ] }, { @@ -30381,8 +30565,8 @@ "target": "ubuntu-gcp-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" ] }, @@ -30391,10 +30575,10 @@ "kernelrelease": "5.8.0-1040-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb" ] }, { @@ -30402,9 +30586,9 @@ "kernelrelease": "5.8.0-1041-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" ] }, @@ -30414,8 +30598,8 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb" ] }, @@ -30424,10 +30608,10 @@ "kernelrelease": "5.8.0-1042-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" ] }, { @@ -30436,8 +30620,8 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" ] }, @@ -30446,12 +30630,12 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" ] }, { @@ -30459,12 +30643,12 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" ] }, { @@ -30472,12 +30656,12 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb" ] }, { @@ -30485,12 +30669,12 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb" ] }, { @@ -30499,10 +30683,10 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" ] }, @@ -30512,11 +30696,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb" ] }, { @@ -30524,12 +30708,12 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" ] }, { @@ -30537,12 +30721,12 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb" ] }, { @@ -30550,12 +30734,12 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb" ] }, { @@ -30563,12 +30747,12 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" ] }, { @@ -30576,12 +30760,12 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" ] }, { @@ -30589,12 +30773,12 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" ] }, { @@ -30602,12 +30786,12 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb" ] }, { @@ -30615,12 +30799,12 @@ "kernelrelease": "5.8.0-59-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb" ] }, { @@ -30629,11 +30813,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" ] }, { @@ -30641,10 +30825,10 @@ "kernelrelease": "5.10.0-1011-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" ] }, { @@ -30652,9 +30836,9 @@ "kernelrelease": "5.10.0-1032-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" ] }, @@ -30663,10 +30847,10 @@ "kernelrelease": "5.10.0-1034-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" ] }, { @@ -30674,10 +30858,10 @@ "kernelrelease": "5.10.0-1052-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" ] }, { @@ -30685,9 +30869,9 @@ "kernelrelease": "5.11.0-1007-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb" ] }, @@ -30696,10 +30880,10 @@ "kernelrelease": "5.11.0-1008-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb" ] }, { @@ -30707,9 +30891,9 @@ "kernelrelease": "5.11.0-1009-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb" ] }, @@ -30718,21 +30902,10 @@ "kernelrelease": "5.11.0-1009-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.13.0-1007-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" ] }, { @@ -30740,43 +30913,54 @@ "kernelrelease": "5.13.0-1007-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1007-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" + ] + }, { "kernelversion": "15~20.04.1", "kernelrelease": "5.13.0-1013-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1021-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1021-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb" ] }, { @@ -30784,10 +30968,10 @@ "kernelrelease": "5.14.0-1010-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" ] }, { @@ -30795,10 +30979,10 @@ "kernelrelease": "5.14.0-1034-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" ] }, { @@ -30806,10 +30990,10 @@ "kernelrelease": "5.4.0-1064-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb" ] }, { @@ -30817,10 +31001,10 @@ "kernelrelease": "5.4.0-1065-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" ] }, { @@ -30828,10 +31012,10 @@ "kernelrelease": "5.4.0-1069-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" ] }, { @@ -30840,8 +31024,8 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb" ] }, @@ -30851,9 +31035,20 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb" + ] + }, + { + "kernelversion": "83+cvm1", + "kernelrelease": "5.4.0-1080-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" ] }, { @@ -30861,12 +31056,12 @@ "kernelrelease": "5.4.0-54", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb" ] }, { @@ -30874,12 +31069,12 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" ] }, { @@ -30888,9 +31083,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb" ] }, { @@ -30898,10 +31093,10 @@ "kernelrelease": "5.6.0-1027-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" ] }, { @@ -30909,9 +31104,9 @@ "kernelrelease": "5.6.0-1034-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" ] }, @@ -30920,10 +31115,10 @@ "kernelrelease": "5.6.0-1035-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb" ] }, { @@ -30932,8 +31127,8 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" ] }, @@ -30942,9 +31137,9 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" ] }, @@ -30953,9 +31148,9 @@ "kernelrelease": "5.8.0-1042-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb" ] }, @@ -30964,12 +31159,12 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb" ] }, { @@ -30977,12 +31172,12 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" ] }, { @@ -30990,12 +31185,12 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" ] }, { @@ -31003,12 +31198,12 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" ] }, { @@ -31016,23 +31211,12 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" ] }, { @@ -31041,31 +31225,42 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1009-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1009-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1009-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { @@ -31073,10 +31268,10 @@ "kernelrelease": "5.4.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" ] }, { @@ -31084,12 +31279,12 @@ "kernelrelease": "5.4.0-26", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" ] }, { @@ -31097,10 +31292,10 @@ "kernelrelease": "5.6.0-1007-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb" ] }, { @@ -31108,10 +31303,10 @@ "kernelrelease": "5.11.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb" ] }, { @@ -31120,9 +31315,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" ] }, { @@ -31130,10 +31325,10 @@ "kernelrelease": "5.11.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" ] }, { @@ -31141,10 +31336,10 @@ "kernelrelease": "5.11.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" ] }, { @@ -31152,21 +31347,10 @@ "kernelrelease": "5.11.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb" ] }, { @@ -31174,10 +31358,10 @@ "kernelrelease": "5.11.0-1027-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -31185,10 +31369,21 @@ "kernelrelease": "5.11.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -31196,10 +31391,10 @@ "kernelrelease": "5.11.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb" ] }, { @@ -31207,11 +31402,11 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb" ] }, @@ -31220,10 +31415,10 @@ "kernelrelease": "5.11.0-1004-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb" ] }, { @@ -31231,21 +31426,10 @@ "kernelrelease": "5.11.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.11.0-1006-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb" ] }, { @@ -31253,10 +31437,10 @@ "kernelrelease": "5.11.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb" ] }, { @@ -31264,10 +31448,21 @@ "kernelrelease": "5.11.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.11.0-1006-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" ] }, { @@ -31275,12 +31470,12 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb" ] }, { @@ -31288,21 +31483,10 @@ "kernelrelease": "5.13.0-1005-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.13.0-1006-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb" ] }, { @@ -31316,6 +31500,17 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1006-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb" + ] + }, { "kernelversion": "7", "kernelrelease": "5.13.0-1006-gcp", @@ -31323,8 +31518,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb" ] }, { @@ -31332,43 +31527,43 @@ "kernelrelease": "5.13.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" ] }, - { - "kernelversion": "8", - "kernelrelease": "5.13.0-1007-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" - ] - }, { "kernelversion": "8", "kernelrelease": "5.13.0-1007-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1007-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" + ] + }, { "kernelversion": "8", "kernelrelease": "5.13.0-1007-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" ] }, { @@ -31376,43 +31571,32 @@ "kernelrelease": "5.13.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" ] }, - { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" - ] - }, { "kernelversion": "9", "kernelrelease": "5.13.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb" ] }, { @@ -31420,10 +31604,21 @@ "kernelrelease": "5.13.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" ] }, { @@ -31431,9 +31626,9 @@ "kernelrelease": "5.13.0-1011-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" ] }, @@ -31442,21 +31637,10 @@ "kernelrelease": "5.13.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.13.0-1012-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" ] }, { @@ -31466,19 +31650,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.13.0-1013-aws", + "kernelversion": "13", + "kernelrelease": "5.13.0-1012-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb" ] }, { @@ -31486,21 +31670,21 @@ "kernelrelease": "5.13.0-1013-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1013-oracle", - "target": "ubuntu-oracle", + "kernelversion": "14", + "kernelrelease": "5.13.0-1013-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb" ] }, { @@ -31508,10 +31692,21 @@ "kernelrelease": "5.13.0-1013-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" + ] + }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1013-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb" ] }, { @@ -31519,10 +31714,10 @@ "kernelrelease": "5.13.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" ] }, { @@ -31530,9 +31725,9 @@ "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb" ] }, @@ -31541,10 +31736,10 @@ "kernelrelease": "5.13.0-1014-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb" ] }, { @@ -31552,8 +31747,8 @@ "kernelrelease": "5.13.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb" ] @@ -31564,9 +31759,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb" ] }, { @@ -31574,10 +31769,10 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb" ] }, { @@ -31585,32 +31780,32 @@ "kernelrelease": "5.13.0-1018-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb" ] }, { @@ -31618,10 +31813,21 @@ "kernelrelease": "5.13.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, { @@ -31635,26 +31841,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, - { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" - ] - }, { "kernelversion": "22", "kernelrelease": "5.13.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" ] }, { @@ -31662,10 +31857,10 @@ "kernelrelease": "5.13.0-1022-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb" ] }, { @@ -31674,9 +31869,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" ] }, { @@ -31684,10 +31879,10 @@ "kernelrelease": "5.13.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" ] }, { @@ -31695,10 +31890,10 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb" ] }, { @@ -31706,10 +31901,10 @@ "kernelrelease": "5.13.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb" ] }, { @@ -31717,10 +31912,10 @@ "kernelrelease": "5.13.0-1023-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb" ] }, { @@ -31728,10 +31923,10 @@ "kernelrelease": "5.13.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb" ] }, { @@ -31739,10 +31934,10 @@ "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb" ] }, { @@ -31750,21 +31945,21 @@ "kernelrelease": "5.13.0-1024-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.13.0-1024-kvm", - "target": "ubuntu-kvm", + "kernelversion": "29", + "kernelrelease": "5.13.0-1024-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb" ] }, { @@ -31772,21 +31967,10 @@ "kernelrelease": "5.13.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.13.0-1024-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" ] }, { @@ -31794,10 +31978,10 @@ "kernelrelease": "5.13.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" ] }, { @@ -31805,10 +31989,21 @@ "kernelrelease": "5.13.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1025-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" ] }, { @@ -31816,21 +32011,21 @@ "kernelrelease": "5.13.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.13.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelversion": "26", + "kernelrelease": "5.13.0-1025-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1025_5.13.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1025-kvm_5.13.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1025_5.13.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1025-kvm_5.13.0-1025.26_amd64.deb" ] }, { @@ -31838,10 +32033,10 @@ "kernelrelease": "5.13.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb" ] }, { @@ -31849,8 +32044,8 @@ "kernelrelease": "5.13.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb" ] @@ -31861,8 +32056,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb" ] }, @@ -31871,32 +32066,10 @@ "kernelrelease": "5.13.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb" ] }, { @@ -31904,32 +32077,43 @@ "kernelrelease": "5.13.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" ] }, + { + "kernelversion": "33", + "kernelrelease": "5.13.0-1028-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb" + ] + }, { "kernelversion": "34", "kernelrelease": "5.13.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.13.0-1030-oracle", + "kernelversion": "36", + "kernelrelease": "5.13.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" ] }, { @@ -31937,12 +32121,12 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb" ] }, { @@ -31950,12 +32134,12 @@ "kernelrelease": "5.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb" ] }, { @@ -31963,11 +32147,11 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" ] }, @@ -31976,12 +32160,12 @@ "kernelrelease": "5.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" ] }, { @@ -31989,12 +32173,12 @@ "kernelrelease": "5.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb" ] }, { @@ -32002,12 +32186,12 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" ] }, { @@ -32015,12 +32199,12 @@ "kernelrelease": "5.13.0-38", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb" ] }, { @@ -32028,12 +32212,12 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb" ] }, { @@ -32041,12 +32225,12 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb" ] }, { @@ -32055,11 +32239,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb" ] }, { @@ -32069,9 +32253,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb" ] }, @@ -32081,11 +32265,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb" ] }, { @@ -32093,12 +32277,12 @@ "kernelrelease": "5.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb" ] }, { @@ -32106,12 +32290,12 @@ "kernelrelease": "5.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb" ] }, { @@ -32119,10 +32303,10 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" ] }, { @@ -32130,9 +32314,9 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" ] }, @@ -32141,10 +32325,10 @@ "kernelrelease": "5.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" ] }, { @@ -32153,9 +32337,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb" ] }, { @@ -32163,10 +32347,10 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" ] }, { @@ -32175,20 +32359,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" ] }, { @@ -32202,15 +32375,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + ] + }, { "kernelversion": "21", "kernelrelease": "5.13.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb" ] }, { @@ -32218,9 +32402,9 @@ "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb" ] }, @@ -32229,10 +32413,10 @@ "kernelrelease": "5.13.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" ] }, { @@ -32242,8 +32426,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" ] }, { @@ -32251,10 +32435,54 @@ "kernelrelease": "5.13.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + ] + }, + { + "kernelversion": "25", + "kernelrelease": "5.13.0-1024-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.13.0-1030-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb" ] }, { @@ -32262,12 +32490,12 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" ] }, { @@ -32275,12 +32503,12 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" ] }, { @@ -32288,11 +32516,11 @@ "kernelrelease": "5.13.0-23", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" ] }, @@ -32301,12 +32529,12 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" ] }, { @@ -32314,12 +32542,12 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" ] }, { @@ -32328,11 +32556,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" ] }, { @@ -32340,11 +32568,11 @@ "kernelrelease": "5.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb" ] }, @@ -32353,10 +32581,10 @@ "kernelrelease": "5.13.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb" ] }, { @@ -32364,12 +32592,12 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" ] }, { @@ -32377,32 +32605,32 @@ "kernelrelease": "5.13.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.13.0-1005-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.13.0-1005-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1005-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" ] }, { @@ -32411,8 +32639,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" ] }, @@ -32421,12 +32649,12 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" ] }, { @@ -32434,9 +32662,9 @@ "kernelrelease": "5.15.0-1004-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" ] }, @@ -32445,21 +32673,10 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1006-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb" ] }, { @@ -32467,21 +32684,21 @@ "kernelrelease": "5.15.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1006-gke", - "target": "ubuntu-gke", + "kernelversion": "8", + "kernelrelease": "5.15.0-1006-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { @@ -32490,19 +32707,30 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1006-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb" + ] + }, { "kernelversion": "9", "kernelrelease": "5.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb" ] }, @@ -32511,10 +32739,10 @@ "kernelrelease": "5.15.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb" ] }, { @@ -32522,10 +32750,10 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { @@ -32533,10 +32761,10 @@ "kernelrelease": "5.15.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" ] }, { @@ -32544,10 +32772,10 @@ "kernelrelease": "5.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" ] }, { @@ -32555,10 +32783,10 @@ "kernelrelease": "5.15.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" ] }, { @@ -32566,10 +32794,10 @@ "kernelrelease": "5.15.0-1008-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" ] }, { @@ -32577,10 +32805,10 @@ "kernelrelease": "5.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb" ] }, { @@ -32588,9 +32816,9 @@ "kernelrelease": "5.15.0-1009-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" ] }, @@ -32599,21 +32827,10 @@ "kernelrelease": "5.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.15.0-30-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb" ] }, { @@ -32621,21 +32838,21 @@ "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.15.0-32", - "target": "ubuntu-generic", + "kernelversion": "31", + "kernelrelease": "5.15.0-30-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" ] }, { @@ -32644,9 +32861,20 @@ "target": "ubuntu-lowlatency", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.15.0-32", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb" ] }, { @@ -32654,10 +32882,10 @@ "kernelrelease": "5.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" ] }, { @@ -32665,10 +32893,21 @@ "kernelrelease": "5.15.0-33-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" ] }, { @@ -32678,19 +32917,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "37", + "kernelrelease": "5.15.0-36", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-36-generic_5.15.0-36.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-36_5.15.0-36.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-36-generic_5.15.0-36.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-36_5.15.0-36.37_all.deb" ] }, { @@ -32698,10 +32937,10 @@ "kernelrelease": "5.17.0-1004-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb" ] }, { @@ -32709,43 +32948,54 @@ "kernelrelease": "5.17.0-1005-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" ] }, + { + "kernelversion": "9", + "kernelrelease": "5.17.0-1009-oem-5.17", + "target": "ubuntu-oem-5.17", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1009_5.17.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1009-oem_5.17.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1009-oem_5.17.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1009_5.17.0-1009.9_all.deb" + ] + }, { "kernelversion": "6", "kernelrelease": "5.17.0-1006-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb" ] }, { "kernelversion": "2", - "kernelrelease": "5.15.0-1002-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.15.0-1002-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" ] }, { "kernelversion": "2", - "kernelrelease": "5.15.0-1002-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1002-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb" ] }, { @@ -32753,9 +33003,9 @@ "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" ] }, @@ -32764,10 +33014,10 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" ] }, { @@ -32775,8 +33025,8 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" ] @@ -32786,10 +33036,10 @@ "kernelrelease": "4.15.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" ] }, { @@ -32797,12 +33047,12 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb" ] }, { @@ -32810,12 +33060,12 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb" ] }, { @@ -32823,12 +33073,12 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" ] }, { @@ -32836,12 +33086,12 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb" ] }, { @@ -32849,12 +33099,12 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb" ] }, { @@ -32862,11 +33112,11 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" ] }, @@ -32877,10 +33127,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" ] }, { @@ -32888,11 +33138,11 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb" ] }, @@ -32902,11 +33152,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb" ] }, { @@ -32914,12 +33164,12 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" ] }, { @@ -32927,11 +33177,11 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb" ] }, @@ -32940,12 +33190,12 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" ] }, { @@ -32953,12 +33203,12 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" ] }, { @@ -32966,11 +33216,11 @@ "kernelrelease": "3.13.0-119", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" ] }, @@ -32980,10 +33230,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb" ] }, @@ -32993,11 +33243,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" ] }, { @@ -33005,12 +33255,12 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" ] }, { @@ -33018,12 +33268,12 @@ "kernelrelease": "3.13.0-126", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" ] }, { @@ -33031,12 +33281,12 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" ] }, { @@ -33044,12 +33294,12 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb" ] }, { @@ -33057,12 +33307,12 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb" ] }, { @@ -33070,12 +33320,12 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb" ] }, { @@ -33084,11 +33334,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb" ] }, { @@ -33096,12 +33346,12 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" ] }, { @@ -33109,12 +33359,12 @@ "kernelrelease": "3.13.0-139", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb" ] }, { @@ -33122,12 +33372,12 @@ "kernelrelease": "3.13.0-141", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb" ] }, { @@ -33135,12 +33385,12 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" ] }, { @@ -33148,12 +33398,12 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb" ] }, { @@ -33161,12 +33411,12 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb" ] }, { @@ -33174,11 +33424,11 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" ] }, @@ -33188,9 +33438,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" ] @@ -33200,12 +33450,12 @@ "kernelrelease": "3.13.0-151", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb" ] }, { @@ -33213,12 +33463,12 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" ] }, { @@ -33227,11 +33477,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb" ] }, { @@ -33239,12 +33489,12 @@ "kernelrelease": "3.13.0-156", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb" ] }, { @@ -33252,12 +33502,12 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb" ] }, { @@ -33265,12 +33515,12 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" ] }, { @@ -33278,12 +33528,12 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb" ] }, { @@ -33291,12 +33541,12 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb" ] }, { @@ -33304,12 +33554,12 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" ] }, { @@ -33317,12 +33567,12 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb" ] }, { @@ -33331,11 +33581,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb" ] }, { @@ -33343,11 +33593,11 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb" ] }, @@ -33356,12 +33606,12 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb" ] }, { @@ -33369,11 +33619,11 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb" ] }, @@ -33382,12 +33632,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb" ] }, { @@ -33395,12 +33645,12 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb" ] }, { @@ -33408,12 +33658,12 @@ "kernelrelease": "3.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb" ] }, { @@ -33421,12 +33671,12 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb" ] }, { @@ -33434,12 +33684,12 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" ] }, { @@ -33447,12 +33697,12 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb" ] }, { @@ -33460,12 +33710,12 @@ "kernelrelease": "3.13.0-34", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb" ] }, { @@ -33473,12 +33723,12 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb" ] }, { @@ -33486,11 +33736,11 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb" ] }, @@ -33499,12 +33749,12 @@ "kernelrelease": "3.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" ] }, { @@ -33512,12 +33762,12 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" ] }, { @@ -33525,12 +33775,12 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb" ] }, { @@ -33538,12 +33788,12 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" ] }, { @@ -33551,10 +33801,10 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" ] @@ -33564,12 +33814,12 @@ "kernelrelease": "3.13.0-44", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb" ] }, { @@ -33577,12 +33827,12 @@ "kernelrelease": "3.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" ] }, { @@ -33590,11 +33840,11 @@ "kernelrelease": "3.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb" ] }, @@ -33603,12 +33853,12 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb" ] }, { @@ -33616,12 +33866,12 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" ] }, { @@ -33630,11 +33880,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb" ] }, { @@ -33643,10 +33893,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb" ] }, @@ -33655,12 +33905,12 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb" ] }, { @@ -33668,11 +33918,11 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb" ] }, @@ -33681,12 +33931,12 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb" ] }, { @@ -33695,10 +33945,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb" ] }, @@ -33707,12 +33957,12 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" ] }, { @@ -33720,12 +33970,12 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb" ] }, { @@ -33733,12 +33983,12 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb" ] }, { @@ -33747,11 +33997,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb" ] }, { @@ -33759,12 +34009,12 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" ] }, { @@ -33772,12 +34022,12 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" ] }, { @@ -33785,9 +34035,9 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb" @@ -33798,12 +34048,12 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" ] }, { @@ -33811,12 +34061,12 @@ "kernelrelease": "3.13.0-70", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" ] }, { @@ -33824,12 +34074,12 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb" ] }, { @@ -33837,12 +34087,12 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb" ] }, { @@ -33850,12 +34100,12 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb" ] }, { @@ -33863,11 +34113,11 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" ] }, @@ -33876,12 +34126,12 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb" ] }, { @@ -33889,12 +34139,12 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" ] }, { @@ -33902,12 +34152,12 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" ] }, { @@ -33915,12 +34165,12 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb" ] }, { @@ -33928,12 +34178,12 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb" ] }, { @@ -33941,11 +34191,11 @@ "kernelrelease": "3.13.0-87", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" ] }, @@ -33954,12 +34204,12 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" ] }, { @@ -33967,12 +34217,12 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb" ] }, { @@ -33980,12 +34230,12 @@ "kernelrelease": "3.13.0-92", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb" ] }, { @@ -33993,12 +34243,12 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" ] }, { @@ -34006,12 +34256,12 @@ "kernelrelease": "3.13.0-95", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" ] }, { @@ -34020,11 +34270,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb" ] }, { @@ -34032,12 +34282,12 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" ] }, { @@ -34045,12 +34295,12 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb" ] }, { @@ -34058,12 +34308,12 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" ] }, { @@ -34071,12 +34321,12 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb" ] }, { @@ -34084,12 +34334,12 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" ] }, { @@ -34097,12 +34347,12 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" ] }, { @@ -34110,12 +34360,12 @@ "kernelrelease": "3.16.0-33-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" ] }, { @@ -34123,12 +34373,12 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb" ] }, { @@ -34136,8 +34386,8 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", @@ -34149,12 +34399,12 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb" ] }, { @@ -34162,12 +34412,12 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" ] }, { @@ -34175,8 +34425,8 @@ "kernelrelease": "3.16.0-39-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", @@ -34188,11 +34438,11 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" ] }, @@ -34201,12 +34451,12 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" ] }, { @@ -34215,11 +34465,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" ] }, { @@ -34227,12 +34477,12 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb" ] }, { @@ -34240,12 +34490,12 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb" ] }, { @@ -34254,11 +34504,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" ] }, { @@ -34267,11 +34517,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb" ] }, { @@ -34279,12 +34529,12 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb" ] }, { @@ -34293,11 +34543,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb" ] }, { @@ -34307,10 +34557,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" ] }, { @@ -34320,10 +34570,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb" ] }, { @@ -34331,12 +34581,12 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb" ] }, { @@ -34344,12 +34594,12 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" ] }, { @@ -34357,12 +34607,12 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" ] }, { @@ -34370,12 +34620,12 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" ] }, { @@ -34383,12 +34633,12 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" ] }, { @@ -34396,12 +34646,12 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb" ] }, { @@ -34409,12 +34659,12 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" ] }, { @@ -34422,12 +34672,12 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" ] }, { @@ -34435,12 +34685,12 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" ] }, { @@ -34448,12 +34698,12 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" ] }, { @@ -34461,12 +34711,12 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" ] }, { @@ -34474,12 +34724,12 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" ] }, { @@ -34487,12 +34737,12 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" ] }, { @@ -34500,12 +34750,12 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" ] }, { @@ -34513,10 +34763,10 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb" ] @@ -34526,12 +34776,12 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb" ] }, { @@ -34539,12 +34789,12 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" ] }, { @@ -34552,12 +34802,12 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" ] }, { @@ -34566,11 +34816,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb" ] }, { @@ -34579,11 +34829,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb" ] }, { @@ -34591,12 +34841,12 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" ] }, { @@ -34604,11 +34854,11 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb" ] }, @@ -34617,12 +34867,12 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb" ] }, { @@ -34630,12 +34880,12 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" ] }, { @@ -34643,12 +34893,12 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb" ] }, { @@ -34656,12 +34906,12 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb" ] }, { @@ -34669,11 +34919,11 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" ] }, @@ -34684,10 +34934,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" ] }, { @@ -34695,12 +34945,12 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb" ] }, { @@ -34708,12 +34958,12 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" ] }, { @@ -34721,12 +34971,12 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" ] }, { @@ -34734,12 +34984,12 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb" ] }, { @@ -34747,12 +34997,12 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" ] }, { @@ -34760,12 +35010,12 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb" ] }, { @@ -34773,11 +35023,11 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" ] }, @@ -34786,12 +35036,12 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" ] }, { @@ -34799,12 +35049,12 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" ] }, { @@ -34812,12 +35062,12 @@ "kernelrelease": "3.19.0-65-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" ] }, { @@ -34827,10 +35077,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb" ] }, { @@ -34838,12 +35088,12 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb" ] }, { @@ -34851,12 +35101,12 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb" ] }, { @@ -34864,12 +35114,12 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb" ] }, { @@ -34878,11 +35128,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" ] }, { @@ -34891,10 +35141,10 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" ] }, @@ -34903,12 +35153,12 @@ "kernelrelease": "3.19.0-75-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" ] }, { @@ -34916,12 +35166,12 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" ] }, { @@ -34929,12 +35179,12 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" ] }, { @@ -34942,12 +35192,12 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb" ] }, { @@ -34955,12 +35205,12 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb" ] }, { @@ -34968,10 +35218,10 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb" ] }, { @@ -34979,10 +35229,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" ] }, { @@ -34990,10 +35240,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" ] }, { @@ -35001,10 +35251,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb" ] }, { @@ -35012,10 +35262,10 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" ] }, { @@ -35024,8 +35274,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" ] }, @@ -35034,10 +35284,10 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb" ] }, { @@ -35045,10 +35295,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" ] }, { @@ -35057,9 +35307,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" ] }, { @@ -35067,9 +35317,9 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" ] }, @@ -35078,12 +35328,12 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" ] }, { @@ -35091,12 +35341,12 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" ] }, { @@ -35104,12 +35354,12 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb" ] }, { @@ -35118,11 +35368,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" ] }, { @@ -35130,12 +35380,12 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb" ] }, { @@ -35143,12 +35393,12 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" ] }, { @@ -35156,12 +35406,12 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" ] }, { @@ -35171,10 +35421,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" ] }, { @@ -35182,12 +35432,12 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb" ] }, { @@ -35195,12 +35445,12 @@ "kernelrelease": "4.2.0-35-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" ] }, { @@ -35208,12 +35458,12 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb" ] }, { @@ -35223,10 +35473,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb" ] }, { @@ -35234,12 +35484,12 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" ] }, { @@ -35248,10 +35498,10 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb" ] }, @@ -35260,11 +35510,11 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb" ] }, @@ -35273,11 +35523,11 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb" ] }, @@ -35286,12 +35536,12 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb" ] }, { @@ -35299,12 +35549,12 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" ] }, { @@ -35313,11 +35563,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb" ] }, { @@ -35325,12 +35575,12 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb" ] }, { @@ -35338,12 +35588,12 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb" ] }, { @@ -35351,12 +35601,12 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" ] }, { @@ -35364,12 +35614,12 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb" ] }, { @@ -35377,12 +35627,12 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" ] }, { @@ -35390,11 +35640,11 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb" ] }, @@ -35403,12 +35653,12 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb" ] }, { @@ -35416,12 +35666,12 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb" ] }, { @@ -35432,9 +35682,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb" ] }, { @@ -35442,12 +35692,12 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb" ] }, { @@ -35455,12 +35705,12 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" ] }, { @@ -35469,11 +35719,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" ] }, { @@ -35481,10 +35731,10 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" ] @@ -35494,12 +35744,12 @@ "kernelrelease": "4.4.0-139-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb" ] }, { @@ -35508,11 +35758,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" ] }, { @@ -35521,11 +35771,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" ] }, { @@ -35533,12 +35783,12 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb" ] }, { @@ -35546,12 +35796,12 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" ] }, { @@ -35559,12 +35809,12 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" ] }, { @@ -35572,12 +35822,12 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" ] }, { @@ -35585,11 +35835,11 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb" ] }, @@ -35598,12 +35848,12 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb" ] }, { @@ -35612,11 +35862,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" ] }, { @@ -35624,12 +35874,12 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb" ] }, { @@ -35637,12 +35887,12 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" ] }, { @@ -35650,12 +35900,12 @@ "kernelrelease": "4.4.0-36-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb" ] }, { @@ -35663,11 +35913,11 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb" ] }, @@ -35676,12 +35926,12 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb" ] }, { @@ -35692,9 +35942,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" ] }, { @@ -35702,12 +35952,12 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb" ] }, { @@ -35715,12 +35965,12 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" ] }, { @@ -35728,12 +35978,12 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" ] }, { @@ -35741,11 +35991,11 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb" ] }, @@ -35754,12 +36004,12 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb" ] }, { @@ -35767,12 +36017,12 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" ] }, { @@ -35781,11 +36031,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb" ] }, { @@ -35794,10 +36044,10 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb" ] }, @@ -35806,12 +36056,12 @@ "kernelrelease": "4.4.0-66-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb" ] }, { @@ -35819,12 +36069,12 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb" ] }, { @@ -35832,12 +36082,12 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb" ] }, { @@ -35845,12 +36095,12 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" ] }, { @@ -35859,11 +36109,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb" ] }, { @@ -35872,11 +36122,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" ] }, { @@ -35884,11 +36134,11 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" ] }, @@ -35897,12 +36147,12 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb" ] }, { @@ -35910,12 +36160,12 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" ] }, { @@ -35923,12 +36173,12 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" ] }, { @@ -35936,12 +36186,12 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" ] }, { @@ -35949,12 +36199,12 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" ] }, { @@ -35962,12 +36212,12 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb" ] }, { @@ -35975,12 +36225,12 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" ] }, { @@ -35988,12 +36238,12 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb" ] }, { @@ -36001,12 +36251,12 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" ] }, { @@ -36015,11 +36265,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb" ] }, { @@ -36027,12 +36277,12 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb" ] }, { @@ -36040,12 +36290,12 @@ "kernelrelease": "3.13.0-113", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb" ] }, { @@ -36053,12 +36303,12 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" ] }, { @@ -36066,10 +36316,10 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb" ] @@ -36079,12 +36329,12 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" ] }, { @@ -36092,11 +36342,11 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb" ] }, @@ -36105,12 +36355,12 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb" ] }, { @@ -36118,12 +36368,12 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb" ] }, { @@ -36132,11 +36382,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" ] }, { @@ -36144,12 +36394,12 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" ] }, { @@ -36158,9 +36408,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" ] }, { @@ -36168,10 +36418,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb" ] }, { @@ -36179,12 +36429,12 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" ] }, { @@ -36192,12 +36442,12 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb" ] }, { @@ -36205,12 +36455,12 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb" ] }, { @@ -36218,12 +36468,12 @@ "kernelrelease": "4.4.0-146-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb" ] }, { @@ -36231,12 +36481,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" ] }, { @@ -36246,8 +36496,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" ] }, { @@ -36255,10 +36505,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" ] }, { @@ -36266,10 +36516,10 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" ] }, { @@ -36277,10 +36527,10 @@ "kernelrelease": "4.15.0-1095-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" ] }, { @@ -36288,10 +36538,10 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, { @@ -36299,10 +36549,10 @@ "kernelrelease": "4.15.0-1110-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb" ] }, { @@ -36310,10 +36560,10 @@ "kernelrelease": "4.4.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" ] }, { @@ -36321,12 +36571,12 @@ "kernelrelease": "4.4.0-206", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" ] }, { @@ -36334,12 +36584,12 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" ] }, { @@ -36347,12 +36597,12 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" ] }, { @@ -36360,12 +36610,12 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb" ] }, { @@ -36373,12 +36623,12 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb" ] }, { @@ -36388,10 +36638,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb" ] }, { @@ -36400,11 +36650,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" ] }, { @@ -36412,12 +36662,12 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" ] }, { @@ -36426,11 +36676,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb" ] }, { @@ -36438,12 +36688,12 @@ "kernelrelease": "4.10.0-27-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb" ] }, { @@ -36451,12 +36701,12 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb" ] }, { @@ -36464,12 +36714,12 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" ] }, { @@ -36480,9 +36730,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb" ] }, { @@ -36491,11 +36741,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb" ] }, { @@ -36503,11 +36753,11 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb" ] }, @@ -36516,12 +36766,12 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" ] }, { @@ -36529,12 +36779,12 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" ] }, { @@ -36542,11 +36792,11 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" ] }, @@ -36555,12 +36805,12 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" ] }, { @@ -36568,10 +36818,10 @@ "kernelrelease": "4.11.0-1015-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb" ] }, { @@ -36579,10 +36829,10 @@ "kernelrelease": "4.11.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" ] }, { @@ -36590,12 +36840,12 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb" ] }, { @@ -36603,12 +36853,12 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb" ] }, { @@ -36616,9 +36866,9 @@ "kernelrelease": "4.13.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" ] }, @@ -36627,9 +36877,9 @@ "kernelrelease": "4.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" ] }, @@ -36639,8 +36889,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" ] }, @@ -36650,9 +36900,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" ] }, { @@ -36660,8 +36910,8 @@ "kernelrelease": "4.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb" ] @@ -36671,10 +36921,10 @@ "kernelrelease": "4.13.0-1016-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb" ] }, { @@ -36683,8 +36933,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb" ] }, @@ -36693,12 +36943,12 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" ] }, { @@ -36706,12 +36956,12 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb" ] }, { @@ -36719,12 +36969,12 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" ] }, { @@ -36733,11 +36983,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" ] }, { @@ -36745,12 +36995,12 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb" ] }, { @@ -36759,10 +37009,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" ] }, @@ -36771,12 +37021,12 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" ] }, { @@ -36784,12 +37034,12 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb" ] }, { @@ -36797,12 +37047,12 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" ] }, { @@ -36811,11 +37061,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" ] }, { @@ -36823,10 +37073,10 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" ] @@ -36836,12 +37086,12 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" ] }, { @@ -36849,12 +37099,12 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" ] }, { @@ -36863,11 +37113,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb" ] }, { @@ -36875,11 +37125,11 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" ] }, @@ -36888,10 +37138,10 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" ] }, { @@ -36910,12 +37160,12 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb" ] }, { @@ -36923,10 +37173,10 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" ] }, { @@ -36934,10 +37184,10 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" ] }, { @@ -36945,10 +37195,10 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" ] }, { @@ -36956,10 +37206,10 @@ "kernelrelease": "4.15.0-1014-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" ] }, { @@ -36967,10 +37217,10 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb" ] }, { @@ -36978,9 +37228,9 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" ] }, @@ -36991,8 +37241,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" ] }, { @@ -37000,10 +37250,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" ] }, { @@ -37011,9 +37261,9 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" ] }, @@ -37022,10 +37272,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb" ] }, { @@ -37034,9 +37284,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb" ] }, { @@ -37045,9 +37295,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb" ] }, { @@ -37056,9 +37306,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" ] }, { @@ -37066,10 +37316,10 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" ] }, { @@ -37077,10 +37327,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb" ] }, { @@ -37088,10 +37338,10 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" ] }, { @@ -37099,10 +37349,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" ] }, { @@ -37110,32 +37360,32 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-1023-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1023-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { @@ -37143,8 +37393,8 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb" ] @@ -37155,9 +37405,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" ] }, { @@ -37165,10 +37415,10 @@ "kernelrelease": "4.15.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { @@ -37176,10 +37426,10 @@ "kernelrelease": "4.15.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { @@ -37187,9 +37437,9 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb" ] }, @@ -37198,8 +37448,8 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb" ] @@ -37209,10 +37459,10 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb" ] }, { @@ -37220,10 +37470,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" ] }, { @@ -37231,32 +37481,32 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -37264,10 +37514,10 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb" ] }, { @@ -37276,9 +37526,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" ] }, { @@ -37288,8 +37538,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb" ] }, { @@ -37298,8 +37548,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb" ] }, @@ -37309,8 +37559,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb" ] }, @@ -37320,9 +37570,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" ] }, { @@ -37331,8 +37581,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" ] }, @@ -37341,10 +37591,10 @@ "kernelrelease": "4.15.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" ] }, { @@ -37363,10 +37613,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" ] }, { @@ -37374,10 +37624,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" ] }, { @@ -37385,10 +37635,10 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" ] }, { @@ -37396,10 +37646,10 @@ "kernelrelease": "4.15.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { @@ -37407,10 +37657,10 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" ] }, { @@ -37418,10 +37668,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" ] }, { @@ -37441,9 +37691,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" ] }, { @@ -37453,8 +37703,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" ] }, { @@ -37462,10 +37712,10 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" ] }, { @@ -37473,10 +37723,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb" ] }, { @@ -37484,10 +37734,10 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb" ] }, { @@ -37496,9 +37746,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" ] }, { @@ -37508,8 +37758,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" ] }, { @@ -37517,10 +37767,10 @@ "kernelrelease": "4.15.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" ] }, { @@ -37530,8 +37780,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb" ] }, { @@ -37540,9 +37790,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" ] }, { @@ -37551,9 +37801,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" ] }, { @@ -37561,10 +37811,10 @@ "kernelrelease": "4.15.0-1050-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb" ] }, { @@ -37573,9 +37823,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" ] }, { @@ -37583,10 +37833,10 @@ "kernelrelease": "4.15.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" ] }, { @@ -37607,8 +37857,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" ] }, { @@ -37617,9 +37867,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" ] }, { @@ -37627,10 +37877,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" ] }, { @@ -37639,9 +37889,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" ] }, { @@ -37649,10 +37899,10 @@ "kernelrelease": "4.15.0-1055-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" ] }, { @@ -37660,9 +37910,9 @@ "kernelrelease": "4.15.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" ] }, @@ -37671,10 +37921,10 @@ "kernelrelease": "4.15.0-1056-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb" ] }, { @@ -37682,10 +37932,10 @@ "kernelrelease": "4.15.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" ] }, { @@ -37693,10 +37943,10 @@ "kernelrelease": "4.15.0-1058-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb" ] }, { @@ -37706,8 +37956,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb" ] }, { @@ -37716,9 +37966,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb" ] }, { @@ -37726,12 +37976,12 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" ] }, { @@ -37739,10 +37989,10 @@ "kernelrelease": "4.15.0-1060-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" ] }, { @@ -37750,10 +38000,10 @@ "kernelrelease": "4.15.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" ] }, { @@ -37763,8 +38013,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" ] }, { @@ -37773,9 +38023,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb" ] }, { @@ -37783,10 +38033,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" ] }, { @@ -37794,10 +38044,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb" ] }, { @@ -37805,9 +38055,9 @@ "kernelrelease": "4.15.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" ] }, @@ -37816,10 +38066,10 @@ "kernelrelease": "4.15.0-1064-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" ] }, { @@ -37827,10 +38077,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" ] }, { @@ -37839,8 +38089,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb" ] }, @@ -37849,10 +38099,10 @@ "kernelrelease": "4.15.0-1066-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" ] }, { @@ -37860,10 +38110,10 @@ "kernelrelease": "4.15.0-1067-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb" ] }, { @@ -37871,10 +38121,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" ] }, { @@ -37882,10 +38132,10 @@ "kernelrelease": "4.15.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" ] }, { @@ -37893,10 +38143,10 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" ] }, { @@ -37904,12 +38154,12 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" ] }, { @@ -37918,8 +38168,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb" ] }, @@ -37928,10 +38178,10 @@ "kernelrelease": "4.15.0-1071-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" ] }, { @@ -37950,9 +38200,9 @@ "kernelrelease": "4.15.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" ] }, @@ -37961,10 +38211,10 @@ "kernelrelease": "4.15.0-1077-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb" ] }, { @@ -37972,10 +38222,10 @@ "kernelrelease": "4.15.0-1078-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb" ] }, { @@ -37983,9 +38233,9 @@ "kernelrelease": "4.15.0-1080-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" ] }, @@ -37994,10 +38244,10 @@ "kernelrelease": "4.15.0-1081-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" ] }, { @@ -38005,9 +38255,9 @@ "kernelrelease": "4.15.0-1082-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" ] }, @@ -38016,10 +38266,10 @@ "kernelrelease": "4.15.0-1083-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" ] }, { @@ -38039,9 +38289,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" ] }, { @@ -38049,10 +38299,10 @@ "kernelrelease": "4.15.0-1086-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" ] }, { @@ -38060,10 +38310,10 @@ "kernelrelease": "4.15.0-1087-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" ] }, { @@ -38072,9 +38322,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" ] }, { @@ -38082,10 +38332,10 @@ "kernelrelease": "4.15.0-1090-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb" ] }, { @@ -38093,10 +38343,10 @@ "kernelrelease": "4.15.0-1091-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" ] }, { @@ -38104,10 +38354,10 @@ "kernelrelease": "4.15.0-1091-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" ] }, { @@ -38115,8 +38365,8 @@ "kernelrelease": "4.15.0-1092-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb" ] @@ -38127,8 +38377,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb" ] }, @@ -38137,8 +38387,8 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" ] @@ -38149,9 +38399,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" ] }, { @@ -38170,10 +38420,10 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" ] }, { @@ -38181,10 +38431,10 @@ "kernelrelease": "4.15.0-1094-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" ] }, { @@ -38192,10 +38442,10 @@ "kernelrelease": "4.15.0-1095-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" ] }, { @@ -38203,10 +38453,10 @@ "kernelrelease": "4.15.0-1096-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" ] }, { @@ -38214,8 +38464,8 @@ "kernelrelease": "4.15.0-1096-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb" ] @@ -38225,8 +38475,8 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" ] @@ -38236,10 +38486,10 @@ "kernelrelease": "4.15.0-1097-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" ] }, { @@ -38258,10 +38508,10 @@ "kernelrelease": "4.15.0-1098-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" ] }, { @@ -38269,10 +38519,10 @@ "kernelrelease": "4.15.0-1098-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb" ] }, { @@ -38280,10 +38530,10 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" ] }, { @@ -38292,8 +38542,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" ] }, @@ -38302,10 +38552,10 @@ "kernelrelease": "4.15.0-1103-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb" ] }, { @@ -38313,10 +38563,10 @@ "kernelrelease": "4.15.0-1106-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" ] }, { @@ -38326,8 +38576,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" ] }, { @@ -38335,10 +38585,10 @@ "kernelrelease": "4.15.0-1109-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb" ] }, { @@ -38346,10 +38596,10 @@ "kernelrelease": "4.15.0-1111-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb" ] }, { @@ -38358,9 +38608,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb" ] }, { @@ -38368,10 +38618,10 @@ "kernelrelease": "4.15.0-1113-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" ] }, { @@ -38379,12 +38629,12 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" ] }, { @@ -38392,12 +38642,12 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" ] }, { @@ -38406,11 +38656,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" ] }, { @@ -38418,12 +38668,12 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb" ] }, { @@ -38432,9 +38682,9 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb" ] @@ -38444,12 +38694,12 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb" ] }, { @@ -38457,12 +38707,12 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb" ] }, { @@ -38470,12 +38720,12 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb" ] }, { @@ -38483,12 +38733,12 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" ] }, { @@ -38496,11 +38746,11 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb" ] }, @@ -38509,12 +38759,12 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" ] }, { @@ -38522,12 +38772,12 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" ] }, { @@ -38535,12 +38785,12 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb" ] }, { @@ -38548,12 +38798,12 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" ] }, { @@ -38561,12 +38811,12 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb" ] }, { @@ -38574,11 +38824,11 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" ] }, @@ -38587,12 +38837,12 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb" ] }, { @@ -38600,12 +38850,12 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" ] }, { @@ -38613,12 +38863,12 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" ] }, { @@ -38626,12 +38876,12 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" ] }, { @@ -38640,11 +38890,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb" ] }, { @@ -38652,12 +38902,12 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" ] }, { @@ -38665,12 +38915,12 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb" ] }, { @@ -38678,12 +38928,12 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" ] }, { @@ -38691,12 +38941,12 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" ] }, { @@ -38704,12 +38954,12 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" ] }, { @@ -38717,12 +38967,12 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb" ] }, { @@ -38730,11 +38980,11 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb" ] }, @@ -38743,12 +38993,12 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb" ] }, { @@ -38756,12 +39006,12 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" ] }, { @@ -38769,12 +39019,12 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb" ] }, { @@ -38782,12 +39032,12 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb" ] }, { @@ -38796,11 +39046,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb" ] }, { @@ -38808,12 +39058,12 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" ] }, { @@ -38821,11 +39071,11 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb" ] }, @@ -38834,12 +39084,12 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" ] }, { @@ -38847,10 +39097,10 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb" ] @@ -38860,12 +39110,12 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" ] }, { @@ -38874,11 +39124,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb" ] }, { @@ -38886,12 +39136,12 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb" ] }, { @@ -38899,12 +39149,12 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" ] }, { @@ -38912,12 +39162,12 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb" ] }, { @@ -38926,11 +39176,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb" ] }, { @@ -38938,12 +39188,12 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" ] }, { @@ -38951,12 +39201,12 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" ] }, { @@ -38964,12 +39214,12 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" ] }, { @@ -38977,12 +39227,12 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" ] }, { @@ -38993,8 +39243,8 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" ] }, @@ -39003,11 +39253,11 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, @@ -39016,12 +39266,12 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" ] }, { @@ -39029,12 +39279,12 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb" ] }, { @@ -39044,10 +39294,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" ] }, { @@ -39055,12 +39305,12 @@ "kernelrelease": "4.15.0-96-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" ] }, { @@ -39068,12 +39318,12 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb" ] }, { @@ -39081,10 +39331,10 @@ "kernelrelease": "4.4.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb" ] }, { @@ -39092,10 +39342,10 @@ "kernelrelease": "4.4.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb" ] }, { @@ -39104,9 +39354,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" ] }, { @@ -39114,11 +39364,11 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb" ] }, @@ -39128,9 +39378,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" ] }, { @@ -39138,10 +39388,10 @@ "kernelrelease": "4.4.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb" ] }, { @@ -39149,10 +39399,10 @@ "kernelrelease": "4.4.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" ] }, { @@ -39160,9 +39410,9 @@ "kernelrelease": "4.4.0-1013-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb" ] }, @@ -39182,10 +39432,10 @@ "kernelrelease": "4.4.0-1016-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" ] }, { @@ -39193,10 +39443,10 @@ "kernelrelease": "4.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb" ] }, { @@ -39204,9 +39454,9 @@ "kernelrelease": "4.4.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" ] }, @@ -39215,10 +39465,10 @@ "kernelrelease": "4.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb" ] }, { @@ -39226,10 +39476,10 @@ "kernelrelease": "4.4.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb" ] }, { @@ -39237,9 +39487,9 @@ "kernelrelease": "4.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" ] }, @@ -39249,9 +39499,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb" ] }, { @@ -39259,10 +39509,10 @@ "kernelrelease": "4.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb" ] }, { @@ -39271,8 +39521,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb" ] }, @@ -39281,10 +39531,10 @@ "kernelrelease": "4.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb" ] }, { @@ -39292,10 +39542,10 @@ "kernelrelease": "4.4.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" ] }, { @@ -39305,8 +39555,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb" ] }, { @@ -39315,9 +39565,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" ] }, { @@ -39325,10 +39575,10 @@ "kernelrelease": "4.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb" ] }, { @@ -39336,10 +39586,10 @@ "kernelrelease": "4.4.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb" ] }, { @@ -39347,12 +39597,12 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb" ] }, { @@ -39360,10 +39610,10 @@ "kernelrelease": "4.4.0-1030-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" ] }, { @@ -39372,9 +39622,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" ] }, { @@ -39382,10 +39632,10 @@ "kernelrelease": "4.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" ] }, { @@ -39393,8 +39643,8 @@ "kernelrelease": "4.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" ] @@ -39405,9 +39655,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" ] }, { @@ -39415,10 +39665,10 @@ "kernelrelease": "4.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" ] }, { @@ -39426,10 +39676,10 @@ "kernelrelease": "4.4.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" ] }, { @@ -39437,9 +39687,9 @@ "kernelrelease": "4.4.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb" ] }, @@ -39448,10 +39698,10 @@ "kernelrelease": "4.4.0-1037-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" ] }, { @@ -39459,10 +39709,10 @@ "kernelrelease": "4.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" ] }, { @@ -39470,8 +39720,8 @@ "kernelrelease": "4.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" ] @@ -39481,10 +39731,10 @@ "kernelrelease": "4.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" ] }, { @@ -39492,12 +39742,12 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" ] }, { @@ -39505,10 +39755,10 @@ "kernelrelease": "4.4.0-1040-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" ] }, { @@ -39516,9 +39766,9 @@ "kernelrelease": "4.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" ] }, @@ -39527,10 +39777,10 @@ "kernelrelease": "4.4.0-1041-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb" ] }, { @@ -39539,8 +39789,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" ] }, @@ -39549,10 +39799,10 @@ "kernelrelease": "4.4.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" ] }, { @@ -39562,8 +39812,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" ] }, { @@ -39571,9 +39821,9 @@ "kernelrelease": "4.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb" ] }, @@ -39583,9 +39833,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" ] }, { @@ -39593,10 +39843,10 @@ "kernelrelease": "4.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" ] }, { @@ -39604,10 +39854,10 @@ "kernelrelease": "4.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" ] }, { @@ -39615,10 +39865,10 @@ "kernelrelease": "4.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" ] }, { @@ -39626,10 +39876,10 @@ "kernelrelease": "4.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" ] }, { @@ -39637,10 +39887,10 @@ "kernelrelease": "4.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" ] }, { @@ -39659,10 +39909,10 @@ "kernelrelease": "4.4.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" ] }, { @@ -39670,10 +39920,10 @@ "kernelrelease": "4.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" ] }, { @@ -39692,9 +39942,9 @@ "kernelrelease": "4.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" ] }, @@ -39703,10 +39953,10 @@ "kernelrelease": "4.4.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" ] }, { @@ -39714,10 +39964,10 @@ "kernelrelease": "4.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" ] }, { @@ -39725,10 +39975,10 @@ "kernelrelease": "4.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" ] }, { @@ -39736,10 +39986,10 @@ "kernelrelease": "4.4.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb" ] }, { @@ -39747,10 +39997,10 @@ "kernelrelease": "4.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" ] }, { @@ -39758,10 +40008,10 @@ "kernelrelease": "4.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" ] }, { @@ -39769,9 +40019,9 @@ "kernelrelease": "4.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb" ] }, @@ -39780,10 +40030,10 @@ "kernelrelease": "4.4.0-1062-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" ] }, { @@ -39791,10 +40041,10 @@ "kernelrelease": "4.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb" ] }, { @@ -39802,10 +40052,10 @@ "kernelrelease": "4.4.0-1063-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" ] }, { @@ -39813,10 +40063,10 @@ "kernelrelease": "4.4.0-1064-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb" ] }, { @@ -39824,10 +40074,10 @@ "kernelrelease": "4.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb" ] }, { @@ -39835,10 +40085,10 @@ "kernelrelease": "4.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb" ] }, { @@ -39846,10 +40096,10 @@ "kernelrelease": "4.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" ] }, { @@ -39857,8 +40107,8 @@ "kernelrelease": "4.4.0-1066-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" ] @@ -39868,10 +40118,10 @@ "kernelrelease": "4.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" ] }, { @@ -39879,10 +40129,10 @@ "kernelrelease": "4.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" ] }, { @@ -39891,9 +40141,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" ] }, { @@ -39902,8 +40152,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb" ] }, @@ -39913,9 +40163,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb" ] }, { @@ -39924,8 +40174,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb" ] }, @@ -39934,10 +40184,10 @@ "kernelrelease": "4.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" ] }, { @@ -39945,10 +40195,10 @@ "kernelrelease": "4.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" ] }, { @@ -39957,8 +40207,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" ] }, @@ -39967,10 +40217,10 @@ "kernelrelease": "4.4.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" ] }, { @@ -39989,10 +40239,10 @@ "kernelrelease": "4.4.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb" ] }, { @@ -40000,10 +40250,10 @@ "kernelrelease": "4.4.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" ] }, { @@ -40011,10 +40261,10 @@ "kernelrelease": "4.4.0-1078-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb" ] }, { @@ -40024,8 +40274,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb" ] }, { @@ -40033,10 +40283,10 @@ "kernelrelease": "4.4.0-1079-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" ] }, { @@ -40044,12 +40294,12 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb" ] }, { @@ -40057,10 +40307,10 @@ "kernelrelease": "4.4.0-1080-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" ] }, { @@ -40068,10 +40318,10 @@ "kernelrelease": "4.4.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" ] }, { @@ -40090,10 +40340,10 @@ "kernelrelease": "4.4.0-1084-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" ] }, { @@ -40101,10 +40351,10 @@ "kernelrelease": "4.4.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb" ] }, { @@ -40112,9 +40362,9 @@ "kernelrelease": "4.4.0-1085-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb" ] }, @@ -40134,10 +40384,10 @@ "kernelrelease": "4.4.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb" ] }, { @@ -40145,10 +40395,10 @@ "kernelrelease": "4.4.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" ] }, { @@ -40156,10 +40406,10 @@ "kernelrelease": "4.4.0-1088-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb" ] }, { @@ -40168,9 +40418,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" ] }, { @@ -40178,10 +40428,10 @@ "kernelrelease": "4.4.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb" ] }, { @@ -40189,12 +40439,12 @@ "kernelrelease": "4.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" ] }, { @@ -40203,9 +40453,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb" ] }, { @@ -40213,10 +40463,10 @@ "kernelrelease": "4.4.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb" ] }, { @@ -40224,9 +40474,9 @@ "kernelrelease": "4.4.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" ] }, @@ -40235,9 +40485,9 @@ "kernelrelease": "4.4.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" ] }, @@ -40247,9 +40497,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb" ] }, { @@ -40257,10 +40507,10 @@ "kernelrelease": "4.4.0-1093-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" ] }, { @@ -40268,10 +40518,10 @@ "kernelrelease": "4.4.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" ] }, { @@ -40279,10 +40529,10 @@ "kernelrelease": "4.4.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb" ] }, { @@ -40301,10 +40551,10 @@ "kernelrelease": "4.4.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" ] }, { @@ -40312,10 +40562,10 @@ "kernelrelease": "4.4.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb" ] }, { @@ -40323,9 +40573,9 @@ "kernelrelease": "4.4.0-1100-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" ] }, @@ -40334,9 +40584,9 @@ "kernelrelease": "4.4.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb" ] }, @@ -40345,10 +40595,10 @@ "kernelrelease": "4.4.0-1102-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" ] }, { @@ -40356,10 +40606,10 @@ "kernelrelease": "4.4.0-1104-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" ] }, { @@ -40378,10 +40628,10 @@ "kernelrelease": "4.4.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb" ] }, { @@ -40389,9 +40639,9 @@ "kernelrelease": "4.4.0-1107-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" ] }, @@ -40400,9 +40650,9 @@ "kernelrelease": "4.4.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb" ] }, @@ -40411,9 +40661,9 @@ "kernelrelease": "4.4.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" ] }, @@ -40422,10 +40672,10 @@ "kernelrelease": "4.4.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb" ] }, { @@ -40435,8 +40685,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" ] }, { @@ -40455,10 +40705,10 @@ "kernelrelease": "4.4.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" ] }, { @@ -40466,9 +40716,9 @@ "kernelrelease": "4.4.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" ] }, @@ -40477,10 +40727,10 @@ "kernelrelease": "4.4.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" ] }, { @@ -40488,10 +40738,10 @@ "kernelrelease": "4.4.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" ] }, { @@ -40499,11 +40749,11 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb" ] }, @@ -40512,10 +40762,10 @@ "kernelrelease": "4.4.0-1121-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" ] }, { @@ -40523,10 +40773,10 @@ "kernelrelease": "4.4.0-1122-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb" ] }, { @@ -40534,9 +40784,9 @@ "kernelrelease": "4.4.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" ] }, @@ -40545,10 +40795,10 @@ "kernelrelease": "4.4.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" ] }, { @@ -40556,10 +40806,10 @@ "kernelrelease": "4.4.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" ] }, { @@ -40567,10 +40817,10 @@ "kernelrelease": "4.4.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb" ] }, { @@ -40579,9 +40829,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb" ] }, { @@ -40589,11 +40839,11 @@ "kernelrelease": "4.4.0-116", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" ] }, @@ -40602,12 +40852,12 @@ "kernelrelease": "4.4.0-119", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb" ] }, { @@ -40615,12 +40865,12 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb" ] }, { @@ -40628,12 +40878,12 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb" ] }, { @@ -40641,12 +40891,12 @@ "kernelrelease": "4.4.0-127", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb" ] }, { @@ -40654,12 +40904,12 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb" ] }, { @@ -40667,12 +40917,12 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" ] }, { @@ -40680,12 +40930,12 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" ] }, { @@ -40693,12 +40943,12 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb" ] }, { @@ -40707,11 +40957,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb" ] }, { @@ -40719,12 +40969,12 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" ] }, { @@ -40732,12 +40982,12 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb" ] }, { @@ -40745,12 +40995,12 @@ "kernelrelease": "4.4.0-141", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb" ] }, { @@ -40758,12 +41008,12 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb" ] }, { @@ -40771,12 +41021,12 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" ] }, { @@ -40784,12 +41034,12 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb" ] }, { @@ -40797,12 +41047,12 @@ "kernelrelease": "4.4.0-148", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" ] }, { @@ -40810,12 +41060,12 @@ "kernelrelease": "4.4.0-150", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb" ] }, { @@ -40823,12 +41073,12 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb" ] }, { @@ -40836,12 +41086,12 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" ] }, { @@ -40849,11 +41099,11 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" ] }, @@ -40862,12 +41112,12 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" ] }, { @@ -40875,12 +41125,12 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" ] }, { @@ -40888,12 +41138,12 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" ] }, { @@ -40901,12 +41151,12 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb" ] }, { @@ -40914,11 +41164,11 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" ] }, @@ -40927,12 +41177,12 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb" ] }, { @@ -40940,12 +41190,12 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" ] }, { @@ -40953,12 +41203,12 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" ] }, { @@ -40966,12 +41216,12 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb" ] }, { @@ -40979,12 +41229,12 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb" ] }, { @@ -40992,12 +41242,12 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb" ] }, { @@ -41005,12 +41255,12 @@ "kernelrelease": "4.4.0-176", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb" ] }, { @@ -41018,12 +41268,12 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb" ] }, { @@ -41031,10 +41281,10 @@ "kernelrelease": "4.4.0-178", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" ] @@ -41044,12 +41294,12 @@ "kernelrelease": "4.4.0-179", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb" ] }, { @@ -41058,10 +41308,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" ] }, @@ -41070,12 +41320,12 @@ "kernelrelease": "4.4.0-185", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb" ] }, { @@ -41083,12 +41333,12 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb" ] }, { @@ -41096,12 +41346,12 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb" ] }, { @@ -41109,11 +41359,11 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" ] }, @@ -41122,12 +41372,12 @@ "kernelrelease": "4.4.0-190", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb" ] }, { @@ -41135,12 +41385,12 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" ] }, { @@ -41148,12 +41398,12 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" ] }, { @@ -41161,12 +41411,12 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb" ] }, { @@ -41174,11 +41424,11 @@ "kernelrelease": "4.4.0-198", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" ] }, @@ -41187,12 +41437,12 @@ "kernelrelease": "4.4.0-200", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb" ] }, { @@ -41200,12 +41450,12 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" ] }, { @@ -41213,12 +41463,12 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" ] }, { @@ -41226,10 +41476,10 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb" ] @@ -41239,12 +41489,12 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" ] }, { @@ -41252,12 +41502,12 @@ "kernelrelease": "4.4.0-209", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb" ] }, { @@ -41265,12 +41515,12 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb" ] }, { @@ -41278,12 +41528,12 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb" ] }, { @@ -41291,12 +41541,12 @@ "kernelrelease": "4.4.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" ] }, { @@ -41304,12 +41554,12 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" ] }, { @@ -41317,9 +41567,9 @@ "kernelrelease": "4.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb" @@ -41331,9 +41581,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb" ] @@ -41343,12 +41593,12 @@ "kernelrelease": "4.4.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb" ] }, { @@ -41356,12 +41606,12 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" ] }, { @@ -41369,11 +41619,11 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb" ] }, @@ -41382,12 +41632,12 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" ] }, { @@ -41395,12 +41645,12 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" ] }, { @@ -41408,12 +41658,12 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb" ] }, { @@ -41421,12 +41671,12 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" ] }, { @@ -41434,12 +41684,12 @@ "kernelrelease": "4.4.0-57", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" ] }, { @@ -41447,12 +41697,12 @@ "kernelrelease": "4.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" ] }, { @@ -41460,12 +41710,12 @@ "kernelrelease": "4.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb" ] }, { @@ -41473,12 +41723,12 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb" ] }, { @@ -41486,12 +41736,12 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb" ] }, { @@ -41499,12 +41749,12 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb" ] }, { @@ -41512,11 +41762,11 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb" ] }, @@ -41525,12 +41775,12 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" ] }, { @@ -41538,12 +41788,12 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb" ] }, { @@ -41551,12 +41801,12 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" ] }, { @@ -41564,11 +41814,11 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" ] }, @@ -41577,12 +41827,12 @@ "kernelrelease": "4.4.0-78", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb" ] }, { @@ -41590,12 +41840,12 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" ] }, { @@ -41603,12 +41853,12 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" ] }, { @@ -41616,12 +41866,12 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb" ] }, { @@ -41629,12 +41879,12 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" ] }, { @@ -41642,12 +41892,12 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb" ] }, { @@ -41655,12 +41905,12 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" ] }, { @@ -41668,12 +41918,12 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" ] }, { @@ -41681,12 +41931,12 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb" ] }, { @@ -41694,12 +41944,12 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" ] }, { @@ -41707,12 +41957,12 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb" ] }, { @@ -41720,11 +41970,11 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb" ] }, @@ -41735,10 +41985,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb" ] }, { @@ -41746,12 +41996,12 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb" ] }, { @@ -41759,12 +42009,12 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb" ] }, { @@ -41772,12 +42022,12 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb" ] }, { @@ -41786,10 +42036,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb" ] }, @@ -41799,11 +42049,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" ] }, { @@ -41811,12 +42061,12 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" ] }, { @@ -41824,12 +42074,12 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" ] }, { @@ -41837,12 +42087,12 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb" ] }, { @@ -41850,12 +42100,12 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" ] }, { @@ -41863,12 +42113,12 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb" ] }, { @@ -41876,10 +42126,10 @@ "kernelrelease": "4.11.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" ] }, { @@ -41887,10 +42137,10 @@ "kernelrelease": "4.11.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" ] }, { @@ -41898,9 +42148,9 @@ "kernelrelease": "4.11.0-1013-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" ] }, @@ -41909,10 +42159,10 @@ "kernelrelease": "4.11.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" ] }, { @@ -41920,10 +42170,10 @@ "kernelrelease": "4.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb" ] }, { @@ -41931,9 +42181,9 @@ "kernelrelease": "4.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" ] }, @@ -41943,9 +42193,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" ] }, { @@ -41964,10 +42214,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" ] }, { @@ -41975,10 +42225,10 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" ] }, { @@ -41987,9 +42237,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" ] }, { @@ -41998,11 +42248,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb" ] }, { @@ -42010,12 +42260,12 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" ] }, { @@ -42024,9 +42274,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" ] }, { @@ -42034,10 +42284,10 @@ "kernelrelease": "4.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" ] }, { @@ -42045,10 +42295,10 @@ "kernelrelease": "4.4.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb" ] }, { @@ -42056,10 +42306,10 @@ "kernelrelease": "4.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" ] }, { @@ -42068,9 +42318,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" ] }, { @@ -42078,10 +42328,10 @@ "kernelrelease": "4.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" ] }, { @@ -42089,10 +42339,10 @@ "kernelrelease": "4.4.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb" ] }, { @@ -42100,10 +42350,10 @@ "kernelrelease": "4.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" ] }, { @@ -42111,10 +42361,10 @@ "kernelrelease": "4.4.0-1081-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" ] }, { @@ -42122,12 +42372,12 @@ "kernelrelease": "4.4.0-122", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" ] }, { @@ -42135,12 +42385,12 @@ "kernelrelease": "4.4.0-131", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb" ] }, { @@ -42148,12 +42398,12 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb" ] }, { @@ -42161,12 +42411,12 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" ] }, { @@ -42175,11 +42425,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" ] }, { @@ -42187,12 +42437,12 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb" ] }, { @@ -42200,12 +42450,12 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb" ] }, { @@ -42214,11 +42464,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" ] }, { @@ -42227,11 +42477,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb" ] }, { @@ -42252,12 +42502,12 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" ] }, { @@ -42265,12 +42515,12 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb" ] } ], @@ -42907,6 +43157,14 @@ "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.1/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3139.2.2", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.2/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "1722.2.0", @@ -43627,6 +43885,14 @@ "https://beta.release.flatcar-linux.net/amd64-usr/3185.1.1/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3227.1.0", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3227.1.0/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "1745.0.0", @@ -44434,6 +44700,14 @@ "headers": [ "https://alpha.release.flatcar-linux.net/amd64-usr/3227.0.0/flatcar_developer_container.bin.bz2" ] + }, + { + "kernelversion": 1, + "kernelrelease": "3255.0.0", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3255.0.0/flatcar_developer_container.bin.bz2" + ] } ] } From 5df962ead970cc134cb1d5e3f249500176620539 Mon Sep 17 00:00:00 2001 From: poiana Date: Sun, 12 Jun 2022 00:58:57 +0000 Subject: [PATCH 116/259] update(kernels): updated kernel json lists. Signed-off-by: GitHub --- kernels/aarch64/list.json | 4632 +++++----- kernels/x86_64/list.json | 17903 ++++++++++++++++++------------------ 2 files changed, 11463 insertions(+), 11072 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 14de7d6..0cc64dd 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -3,546 +3,554 @@ "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.aarch64", + "kernelrelease": "4.14.193-149.317.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.aarch64", + "kernelrelease": "4.14.231-173.360.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.aarch64", + "kernelrelease": "4.14.177-139.254.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.aarch64", + "kernelrelease": "4.14.276-211.499.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.aarch64", + "kernelrelease": "4.14.219-161.340.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.aarch64", + "kernelrelease": "4.14.243-185.433.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.aarch64", + "kernelrelease": "4.14.219-164.354.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.aarch64", + "kernelrelease": "4.14.114-103.97.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.aarch64", + "kernelrelease": "4.14.133-113.112.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.aarch64", + "kernelrelease": "4.14.152-124.171.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.aarch64", + "kernelrelease": "4.14.121-109.96.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.aarch64", + "kernelrelease": "4.14.200-155.322.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.aarch64", + "kernelrelease": "4.14.146-119.123.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.aarch64", + "kernelrelease": "4.14.209-160.335.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.aarch64", + "kernelrelease": "4.14.252-195.483.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.aarch64", + "kernelrelease": "4.14.203-156.332.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.aarch64", + "kernelrelease": "4.14.281-212.502.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/2603843a89547a5efb5c01783df4c019a28d484dd8221e92836d5377cee0d246/kernel-devel-4.14.281-212.502.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.aarch64", + "kernelrelease": "4.14.225-169.362.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.aarch64", + "kernelrelease": "4.14.198-152.320.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.aarch64", + "kernelrelease": "4.14.109-99.92.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.aarch64", + "kernelrelease": "4.14.181-142.260.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.aarch64", + "kernelrelease": "4.14.256-197.484.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.aarch64", + "kernelrelease": "4.14.173-137.228.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.aarch64", + "kernelrelease": "4.14.273-207.502.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.aarch64", + "kernelrelease": "4.14.248-189.473.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.aarch64", + "kernelrelease": "4.14.152-127.182.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.aarch64", + "kernelrelease": "4.14.275-207.503.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.aarch64", + "kernelrelease": "4.14.262-200.489.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.aarch64", + "kernelrelease": "4.14.192-147.314.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.aarch64", + "kernelrelease": "4.14.209-160.339.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.aarch64", + "kernelrelease": "4.14.104-95.84.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.aarch64", + "kernelrelease": "4.14.238-182.422.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.aarch64", + "kernelrelease": "4.14.101-91.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.aarch64", + "kernelrelease": "4.14.214-160.339.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.aarch64", + "kernelrelease": "4.14.88-88.73.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.aarch64", + "kernelrelease": "4.14.77-80.57.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.aarch64", + "kernelrelease": "4.14.158-129.185.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.aarch64", + "kernelrelease": "4.14.94-89.73.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.aarch64", + "kernelrelease": "4.14.246-187.474.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.aarch64", + "kernelrelease": "4.14.138-114.102.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.aarch64", + "kernelrelease": "4.14.232-177.418.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.aarch64", + "kernelrelease": "4.14.114-105.126.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.aarch64", + "kernelrelease": "4.14.225-168.357.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.aarch64", + "kernelrelease": "4.14.173-137.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.aarch64", + "kernelrelease": "4.14.241-184.433.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.aarch64", + "kernelrelease": "4.14.106-97.85.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.aarch64", + "kernelrelease": "4.14.268-205.500.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.aarch64", + "kernelrelease": "4.14.165-131.185.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.aarch64", + "kernelrelease": "4.14.238-182.421.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.aarch64", + "kernelrelease": "4.14.181-140.257.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.aarch64", + "kernelrelease": "4.14.77-86.82.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.aarch64", + "kernelrelease": "4.14.97-90.72.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.aarch64", + "kernelrelease": "4.14.232-176.381.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.aarch64", + "kernelrelease": "4.14.88-88.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.aarch64", + "kernelrelease": "4.14.186-146.268.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.aarch64", + "kernelrelease": "4.14.128-112.105.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.aarch64", + "kernelrelease": "4.14.252-195.481.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.aarch64", + "kernelrelease": "4.14.77-81.59.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.aarch64", + "kernelrelease": "4.14.133-113.105.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.aarch64", + "kernelrelease": "4.14.154-128.181.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.aarch64", + "kernelrelease": "4.14.177-139.253.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.aarch64", + "kernelrelease": "4.14.143-118.123.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.aarch64", + "kernelrelease": "4.14.146-120.181.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.aarch64", + "kernelrelease": "4.14.123-111.109.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.aarch64", + "kernelrelease": "4.14.231-173.361.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.aarch64", + "kernelrelease": "4.14.171-136.231.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.93-87.444.amzn2.aarch64", + "kernelrelease": "4.14.165-133.209.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.75-79.358.amzn2.aarch64", + "kernelrelease": "5.10.47-39.130.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.59-52.142.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm" ] }, { @@ -550,135 +558,135 @@ "kernelrelease": "5.10.50-44.132.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.aarch64", + "kernelrelease": "5.10.82-83.359.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.aarch64", + "kernelrelease": "5.10.109-104.500.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/57ef3deb0c4479e0b7fe577a241c606f849a21feedf9667f948ff489f99ae2d9/kernel-devel-5.10.109-104.500.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.aarch64", + "kernelrelease": "5.10.50-44.131.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.109-104.500.amzn2.aarch64", + "kernelrelease": "5.10.112-108.499.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/57ef3deb0c4479e0b7fe577a241c606f849a21feedf9667f948ff489f99ae2d9/kernel-devel-5.10.109-104.500.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/7e8f971b1fba0eae384a4c46840311122e0d27ae6d5c29443762e690d08e87b1/kernel-devel-5.10.112-108.499.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.aarch64", + "kernelrelease": "5.10.75-79.358.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.112-108.499.amzn2.aarch64", + "kernelrelease": "5.10.62-55.141.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/7e8f971b1fba0eae384a4c46840311122e0d27ae6d5c29443762e690d08e87b1/kernel-devel-5.10.112-108.499.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.aarch64", + "kernelrelease": "5.10.102-99.473.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.aarch64", + "kernelrelease": "5.10.93-87.444.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.aarch64", + "kernelrelease": "5.10.29-27.126.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.aarch64", + "kernelrelease": "5.10.35-31.135.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.aarch64", + "kernelrelease": "5.10.96-90.460.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.aarch64", + "kernelrelease": "5.10.106-102.504.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.aarch64", + "kernelrelease": "5.10.68-62.173.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.aarch64", + "kernelrelease": "5.10.29-27.128.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.aarch64", + "kernelrelease": "5.10.118-111.515.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/dd46c37ca2f0977b67d8c444306d2e7d0ffa49ff18514c659dae8a3f8dd1c225/kernel-devel-5.10.118-111.515.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.aarch64", + "kernelrelease": "5.4.58-32.125.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" ] }, { @@ -686,103 +694,103 @@ "kernelrelease": "5.4.144-69.257.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.aarch64", + "kernelrelease": "5.4.80-40.140.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.aarch64", + "kernelrelease": "5.4.196-108.356.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4cd4c13fe3579198e4fd22f3f67071d32ac0e049265569eea729d066efb9f196/kernel-devel-5.4.196-108.356.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.aarch64", + "kernelrelease": "5.4.74-36.135.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.aarch64", + "kernelrelease": "5.4.68-34.125.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.aarch64", + "kernelrelease": "5.4.50-25.83.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.aarch64", + "kernelrelease": "5.4.162-86.275.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.aarch64", + "kernelrelease": "5.4.46-19.75.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.aarch64", + "kernelrelease": "5.4.58-27.104.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.190-107.353.amzn2.aarch64", + "kernelrelease": "5.4.149-73.259.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/44b056fde8b6a4ff48b585dd4d0b6fb0655f2883eade7bf8331d08b95f7d20f2/kernel-devel-5.4.190-107.353.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.aarch64", + "kernelrelease": "5.4.91-41.139.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.aarch64", + "kernelrelease": "5.4.110-54.182.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.aarch64", + "kernelrelease": "5.4.181-99.354.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm" ] }, { @@ -790,63 +798,71 @@ "kernelrelease": "5.4.110-54.189.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.188-104.359.amzn2.aarch64", + "kernelrelease": "5.4.156-83.273.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/a479c59221509ff906755d5afcc71d323d91d3c67834c8e2e40ccc0c33d368eb/kernel-devel-5.4.188-104.359.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.aarch64", + "kernelrelease": "5.4.117-58.216.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.aarch64", + "kernelrelease": "5.4.188-104.359.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/a479c59221509ff906755d5afcc71d323d91d3c67834c8e2e40ccc0c33d368eb/kernel-devel-5.4.188-104.359.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.aarch64", + "kernelrelease": "5.4.38-17.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.aarch64", + "kernelrelease": "5.4.95-42.163.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.aarch64", + "kernelrelease": "5.4.186-102.354.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.aarch64", + "kernelrelease": "5.4.46-23.77.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.20-12.75.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm" ] }, { @@ -854,47 +870,55 @@ "kernelrelease": "5.4.129-63.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.aarch64", + "kernelrelease": "5.4.176-91.338.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.aarch64", + "kernelrelease": "5.4.141-67.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.38-17.76.amzn2.aarch64", + "kernelrelease": "5.4.105-48.177.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.aarch64", + "kernelrelease": "5.4.172-90.336.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.aarch64", + "kernelrelease": "5.4.190-107.353.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/44b056fde8b6a4ff48b585dd4d0b6fb0655f2883eade7bf8331d08b95f7d20f2/kernel-devel-5.4.190-107.353.amzn2.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.129-62.227.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" ] } ], @@ -1129,26 +1153,26 @@ }, { "kernelversion": 1, - "kernelrelease": "5.17.11-100.fc34.aarch64", + "kernelrelease": "5.17.12-100.fc34.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.17.11-100.fc34.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.17.12-100.fc34.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.11-200.fc35.aarch64", + "kernelrelease": "5.17.12-200.fc35.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.17.11-200.fc35.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.17.12-200.fc35.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.11-300.fc36.aarch64", + "kernelrelease": "5.17.12-300.fc36.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.17.11-300.fc36.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.17.12-300.fc36.aarch64.rpm" ] } ], @@ -2204,6 +2228,14 @@ "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.109-3.ph4.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.10.109-4.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.109-4.ph4.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "5.10.25-1.ph4.aarch64", @@ -2507,81 +2539,47 @@ "kernelrelease": "5.17.3-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-arm64_5.17.3-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-arm64_5.17.3-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-arm64_5.17.3-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-arm64_5.17.3-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-arm64_5.17.3-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-arm64_5.17.3-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.113-1-arm64", + "kernelrelease": "5.10.120-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-arm64_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-arm64_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.14.9-2~bpo11+1-arm64", + "kernelrelease": "5.16.12-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-arm64_5.14.9-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-arm64_5.14.9-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.15.5-2~bpo11+1-arm64", + "kernelrelease": "5.10.113-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-arm64_5.15.5-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-arm64_5.15.5-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-arm64_5.15.5-2~bpo11+1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.15-2~bpo11+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-arm64_5.15.15-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-arm64_5.15.15-2~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-arm64_5.15.15-2~bpo11+1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.16.11-1~bpo11+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-arm64_5.16.11-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-arm64_5.16.11-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-arm64_5.16.11-1~bpo11+1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.16.12-1~bpo11+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb" ] }, { @@ -2589,11 +2587,11 @@ "kernelrelease": "5.10.84-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb" ] }, { @@ -2601,23 +2599,11 @@ "kernelrelease": "5.10.106-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.92-1~bpo10+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-arm64_5.10.92-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-arm64_5.10.92-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-arm64_5.10.92-1~bpo10+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb" ] }, { @@ -2625,23 +2611,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.70-1~bpo10+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-arm64_5.10.70-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-arm64_5.10.70-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-arm64_5.10.70-1~bpo10+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb" ] }, { @@ -2649,10 +2623,10 @@ "kernelrelease": "4.19.208-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb" ] }, { @@ -2662,32 +2636,20 @@ "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.18-1~exp1-arm64", + "kernelrelease": "5.18.2-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-cloud-arm64_5.18-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common_5.18-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-arm64_5.18-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-rt-arm64_5.18-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common-rt_5.18-1~exp1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.17.11-1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-cloud-arm64_5.17.11-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common_5.17.11-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-arm64_5.17.11-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-rt-arm64_5.17.11-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common-rt_5.17.11-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-arm64_5.18.2-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-arm64_5.18.2-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-arm64_5.18.2-1_arm64.deb" ] }, { @@ -2696,9 +2658,9 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb" ] }, { @@ -2715,11 +2677,11 @@ "kernelrelease": "5.10.103-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb" ] }, { @@ -2728,9 +2690,9 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb" ] }, { @@ -2747,10 +2709,10 @@ "kernelrelease": "4.19.232-1~deb9u1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb" ] } ], @@ -2760,8 +2722,8 @@ "kernelrelease": "4.15.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" ] }, { @@ -2769,8 +2731,8 @@ "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb" ] }, { @@ -2778,8 +2740,8 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" ] }, { @@ -2787,8 +2749,8 @@ "kernelrelease": "4.15.0-1119-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb" ] }, { @@ -2796,8 +2758,8 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" ] }, { @@ -2805,8 +2767,8 @@ "kernelrelease": "4.15.0-1120-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" ] }, { @@ -2823,26 +2785,26 @@ "kernelrelease": "4.15.0-1121-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb" ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-1123-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1123-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-1123-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1123-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" ] }, { @@ -2859,8 +2821,8 @@ "kernelrelease": "4.15.0-1124-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" ] }, { @@ -2881,15 +2843,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb" ] }, - { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" - ] - }, { "kernelversion": "136", "kernelrelease": "4.15.0-1127-aws", @@ -2900,21 +2853,21 @@ ] }, { - "kernelversion": "137", - "kernelrelease": "4.15.0-1128-aws", - "target": "ubuntu-aws", + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" ] }, { - "kernelversion": "138", - "kernelrelease": "4.15.0-1129-aws", + "kernelversion": "137", + "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" ] }, { @@ -2927,30 +2880,12 @@ ] }, { - "kernelversion": "139", - "kernelrelease": "4.15.0-1130-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1130-snapdragon_4.15.0-1130.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1130_4.15.0-1130.139_arm64.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-1130-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "4.15.0-1131-aws", + "kernelversion": "138", + "kernelrelease": "4.15.0-1129-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb" ] }, { @@ -2967,8 +2902,8 @@ "kernelrelease": "4.15.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_arm64.deb" ] }, { @@ -2976,8 +2911,8 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb" ] }, { @@ -2985,8 +2920,8 @@ "kernelrelease": "4.15.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_arm64.deb" ] }, { @@ -3012,8 +2947,8 @@ "kernelrelease": "4.15.0-174", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb" ] }, { @@ -3048,8 +2983,8 @@ "kernelrelease": "4.15.0-180", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb" ] }, { @@ -3057,17 +2992,8 @@ "kernelrelease": "4.15.0-181", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_arm64.deb" - ] - }, - { - "kernelversion": "191", - "kernelrelease": "4.15.0-182", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-182-generic_4.15.0-182.191_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-182_4.15.0-182.191_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb" ] }, { @@ -3093,8 +3019,8 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb" ] }, { @@ -3102,8 +3028,8 @@ "kernelrelease": "5.4.0-1058-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" ] }, { @@ -3120,8 +3046,8 @@ "kernelrelease": "5.4.0-1062-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" ] }, { @@ -3129,8 +3055,8 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" ] }, { @@ -3138,8 +3064,8 @@ "kernelrelease": "5.4.0-1064-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" ] }, { @@ -3156,8 +3082,8 @@ "kernelrelease": "5.4.0-1067-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb" ] }, { @@ -3192,8 +3118,8 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb" ] }, { @@ -3214,49 +3140,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb" ] }, - { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1073-gke_5.4.0-1073.78~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb" - ] - }, { "kernelversion": "78~18.04.1", "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1074-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1074_5.4.0-1074.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb" ] }, { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-gcp-5.4", + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb" ] }, { @@ -3264,26 +3163,17 @@ "kernelrelease": "5.4.0-1075-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" ] }, { - "kernelversion": "81~18.04.1", - "kernelrelease": "5.4.0-1076-gcp-5.4", + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "81~18.04.1", - "kernelrelease": "5.4.0-1076-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1076-aws_5.4.0-1076.81~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb" ] }, { @@ -3322,22 +3212,13 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb" ] }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1081-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1081_5.4.0-1081.84~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1081-azure_5.4.0-1081.84~18.04.1_arm64.deb" - ] - }, { "kernelversion": "124~18.04.1", "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" ] }, { @@ -3349,22 +3230,13 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_arm64.deb" ] }, - { - "kernelversion": "129~18.04.1", - "kernelrelease": "5.4.0-115-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-115_5.4.0-115.129~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_arm64.deb" - ] - }, { "kernelversion": "102~18.04.1", "kernelrelease": "5.4.0-91-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb" ] }, { @@ -3372,8 +3244,8 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb" ] }, { @@ -3426,8 +3298,8 @@ "kernelrelease": "4.15.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" ] }, { @@ -3444,8 +3316,8 @@ "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { @@ -3453,8 +3325,8 @@ "kernelrelease": "4.15.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb" ] }, { @@ -3480,8 +3352,8 @@ "kernelrelease": "4.15.0-1040-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" ] }, { @@ -3489,8 +3361,8 @@ "kernelrelease": "4.15.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb" ] }, { @@ -3498,8 +3370,8 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb" ] }, { @@ -3507,8 +3379,8 @@ "kernelrelease": "4.15.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { @@ -3543,8 +3415,8 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" ] }, { @@ -3552,8 +3424,8 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" ] }, { @@ -3588,8 +3460,8 @@ "kernelrelease": "4.15.0-1054-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb" ] }, { @@ -3597,8 +3469,8 @@ "kernelrelease": "4.15.0-1055-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" ] }, { @@ -3606,8 +3478,8 @@ "kernelrelease": "4.15.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" ] }, { @@ -3624,8 +3496,8 @@ "kernelrelease": "4.15.0-1057-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" ] }, { @@ -3642,8 +3514,8 @@ "kernelrelease": "4.15.0-1058-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb" ] }, { @@ -3678,8 +3550,8 @@ "kernelrelease": "4.15.0-1062-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb" ] }, { @@ -3687,8 +3559,8 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb" ] }, { @@ -3696,8 +3568,8 @@ "kernelrelease": "4.15.0-1064-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb" ] }, { @@ -3714,8 +3586,8 @@ "kernelrelease": "4.15.0-1065-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb" ] }, { @@ -3723,8 +3595,8 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" ] }, { @@ -3732,8 +3604,8 @@ "kernelrelease": "4.15.0-1066-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" ] }, { @@ -3759,8 +3631,8 @@ "kernelrelease": "4.15.0-1069-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" ] }, { @@ -3777,8 +3649,8 @@ "kernelrelease": "4.15.0-1071-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb" ] }, { @@ -3795,8 +3667,8 @@ "kernelrelease": "4.15.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" ] }, { @@ -3804,8 +3676,8 @@ "kernelrelease": "4.15.0-1074-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb" ] }, { @@ -3822,8 +3694,8 @@ "kernelrelease": "4.15.0-1076-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" ] }, { @@ -3831,8 +3703,8 @@ "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" ] }, { @@ -3840,8 +3712,8 @@ "kernelrelease": "4.15.0-1077-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" ] }, { @@ -3858,8 +3730,8 @@ "kernelrelease": "4.15.0-1079-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb" ] }, { @@ -3867,8 +3739,8 @@ "kernelrelease": "4.15.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" ] }, { @@ -3876,8 +3748,8 @@ "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb" ] }, { @@ -3912,8 +3784,8 @@ "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb" ] }, { @@ -3921,8 +3793,8 @@ "kernelrelease": "4.15.0-1083-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb" ] }, { @@ -3930,8 +3802,8 @@ "kernelrelease": "4.15.0-1084-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb" ] }, { @@ -3966,8 +3838,8 @@ "kernelrelease": "4.15.0-1087-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb" ] }, { @@ -3975,8 +3847,8 @@ "kernelrelease": "4.15.0-1089-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb" ] }, { @@ -3984,8 +3856,8 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" ] }, { @@ -4020,8 +3892,8 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" ] }, { @@ -4029,8 +3901,8 @@ "kernelrelease": "4.15.0-1093-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb" ] }, { @@ -4038,8 +3910,8 @@ "kernelrelease": "4.15.0-1093-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb" ] }, { @@ -4047,8 +3919,8 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" ] }, { @@ -4056,8 +3928,8 @@ "kernelrelease": "4.15.0-1094-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb" ] }, { @@ -4083,8 +3955,8 @@ "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb" ] }, { @@ -4092,8 +3964,8 @@ "kernelrelease": "4.15.0-1096-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb" ] }, { @@ -4101,8 +3973,8 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" ] }, { @@ -4110,8 +3982,8 @@ "kernelrelease": "4.15.0-1097-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb" ] }, { @@ -4137,8 +4009,8 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb" ] }, { @@ -4155,8 +4027,8 @@ "kernelrelease": "4.15.0-1100-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb" ] }, { @@ -4164,8 +4036,8 @@ "kernelrelease": "4.15.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb" ] }, { @@ -4200,8 +4072,8 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" ] }, { @@ -4209,8 +4081,8 @@ "kernelrelease": "4.15.0-1103-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb" ] }, { @@ -4218,8 +4090,8 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" ] }, { @@ -4227,8 +4099,8 @@ "kernelrelease": "4.15.0-1106-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" ] }, { @@ -4236,8 +4108,8 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" ] }, { @@ -4245,8 +4117,8 @@ "kernelrelease": "4.15.0-1109-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb" ] }, { @@ -4272,8 +4144,8 @@ "kernelrelease": "4.15.0-1110-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb" ] }, { @@ -4281,8 +4153,8 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" ] }, { @@ -4290,8 +4162,8 @@ "kernelrelease": "4.15.0-1111-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb" ] }, { @@ -4308,8 +4180,8 @@ "kernelrelease": "4.15.0-1112-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb" ] }, { @@ -4326,8 +4198,8 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" ] }, { @@ -4353,8 +4225,8 @@ "kernelrelease": "4.15.0-1115-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb" ] }, { @@ -4371,8 +4243,8 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" ] }, { @@ -4398,8 +4270,8 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" ] }, { @@ -4411,22 +4283,49 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb" ] }, + { + "kernelversion": "135", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" + ] + }, { "kernelversion": "135", "kernelrelease": "4.15.0-1126-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb" ] }, { - "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", + "kernelversion": "139", + "kernelrelease": "4.15.0-1130-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" + ] + }, + { + "kernelversion": "142", + "kernelrelease": "4.15.0-1132-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1132_4.15.0-1132.142_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1132-snapdragon_4.15.0-1132.142_arm64.deb" + ] + }, + { + "kernelversion": "143", + "kernelrelease": "4.15.0-1133-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" ] }, { @@ -4434,8 +4333,8 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" ] }, { @@ -4443,8 +4342,8 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" ] }, { @@ -4452,8 +4351,8 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" ] }, { @@ -4461,8 +4360,8 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb" ] }, { @@ -4479,8 +4378,8 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb" ] }, { @@ -4488,8 +4387,8 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb" ] }, { @@ -4497,8 +4396,8 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" ] }, { @@ -4506,8 +4405,8 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb" ] }, { @@ -4524,8 +4423,8 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" ] }, { @@ -4551,8 +4450,8 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" ] }, { @@ -4578,8 +4477,8 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" ] }, { @@ -4587,8 +4486,8 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" ] }, { @@ -4605,8 +4504,8 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, { @@ -4668,8 +4567,8 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" ] }, { @@ -4695,8 +4594,8 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" ] }, { @@ -4713,8 +4612,17 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + ] + }, + { + "kernelversion": "194", + "kernelrelease": "4.15.0-184", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" ] }, { @@ -4732,8 +4640,8 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb" ] }, @@ -4743,8 +4651,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb" ] }, { @@ -4752,9 +4660,9 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" ] }, { @@ -4762,8 +4670,8 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb" ] }, @@ -4772,8 +4680,8 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb" ] }, @@ -4783,8 +4691,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" ] }, { @@ -4792,9 +4700,9 @@ "kernelrelease": "4.15.0-34", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb" ] }, { @@ -4802,9 +4710,9 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb" ] }, { @@ -4823,8 +4731,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb" ] }, { @@ -4832,9 +4740,9 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb" ] }, { @@ -4852,9 +4760,9 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb" ] }, { @@ -4862,9 +4770,9 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb" ] }, { @@ -4882,8 +4790,8 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb" ] }, { @@ -4891,8 +4799,8 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb" ] }, { @@ -4900,8 +4808,8 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" ] }, { @@ -4909,8 +4817,8 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb" ] }, { @@ -4918,8 +4826,8 @@ "kernelrelease": "4.15.0-55", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" ] }, { @@ -4927,8 +4835,8 @@ "kernelrelease": "4.15.0-58", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb" ] }, { @@ -4936,8 +4844,8 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" ] }, { @@ -4945,8 +4853,8 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" ] }, { @@ -4954,8 +4862,8 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb" ] }, { @@ -4963,8 +4871,8 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" ] }, { @@ -4990,8 +4898,8 @@ "kernelrelease": "4.15.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" ] }, { @@ -5008,8 +4916,8 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb" ] }, { @@ -5026,8 +4934,8 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" ] }, { @@ -5035,8 +4943,8 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb" ] }, { @@ -5044,8 +4952,8 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb" ] }, { @@ -5073,8 +4981,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb" ] }, { @@ -5082,8 +4990,8 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb" ] }, @@ -5092,9 +5000,9 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" ] }, { @@ -5102,8 +5010,8 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb" ] }, @@ -5112,9 +5020,9 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" ] }, { @@ -5122,9 +5030,9 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb" ] }, { @@ -5133,8 +5041,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb" ] }, { @@ -5142,9 +5050,9 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" ] }, { @@ -5153,8 +5061,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb" ] }, { @@ -5189,8 +5097,8 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb" ] }, { @@ -5198,8 +5106,8 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" ] }, { @@ -5216,8 +5124,8 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" ] }, { @@ -5252,8 +5160,8 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb" ] }, { @@ -5279,8 +5187,8 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" ] }, { @@ -5288,8 +5196,8 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb" ] }, { @@ -5360,8 +5268,8 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" ] }, { @@ -5432,8 +5340,8 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" ] }, { @@ -5450,8 +5358,8 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb" ] }, { @@ -5459,8 +5367,8 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb" ] }, { @@ -5477,8 +5385,8 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" ] }, { @@ -5504,8 +5412,8 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" ] }, { @@ -5513,8 +5421,8 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" ] }, { @@ -5540,8 +5448,8 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" ] }, { @@ -5549,8 +5457,8 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" ] }, { @@ -5558,8 +5466,8 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" ] }, { @@ -5594,8 +5502,8 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb" ] }, { @@ -5603,8 +5511,8 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb" ] }, { @@ -5612,8 +5520,8 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" ] }, { @@ -5621,8 +5529,8 @@ "kernelrelease": "5.4.0-1022-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb" ] }, { @@ -5630,8 +5538,8 @@ "kernelrelease": "5.4.0-1024-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" ] }, { @@ -5666,8 +5574,8 @@ "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { @@ -5693,8 +5601,8 @@ "kernelrelease": "5.4.0-1037-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" ] }, { @@ -5702,8 +5610,8 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" ] }, { @@ -5720,8 +5628,8 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb" ] }, { @@ -5756,8 +5664,8 @@ "kernelrelease": "5.4.0-1046-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb" ] }, { @@ -5855,8 +5763,8 @@ "kernelrelease": "5.4.0-1055-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" ] }, { @@ -5864,8 +5772,8 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" ] }, { @@ -5927,8 +5835,8 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" ] }, { @@ -5945,8 +5853,8 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" ] }, { @@ -5954,8 +5862,8 @@ "kernelrelease": "5.4.0-1063-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" ] }, { @@ -5963,8 +5871,8 @@ "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" ] }, { @@ -6017,8 +5925,8 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" ] }, { @@ -6032,20 +5940,20 @@ }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1072-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" ] }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1072-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb" ] }, { @@ -6066,6 +5974,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" ] }, + { + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-1074-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "83~18.04.1", + "kernelrelease": "5.4.0-1076-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_arm64.deb" + ] + }, { "kernelversion": "80~18.04.1", "kernelrelease": "5.4.0-1077-azure-5.4", @@ -6075,6 +6001,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" ] }, + { + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb" + ] + }, { "kernelversion": "83~18.04.2", "kernelrelease": "5.4.0-1080-azure-5.4", @@ -6084,13 +6028,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" ] }, + { + "kernelversion": "87~18.04.1", + "kernelrelease": "5.4.0-1083-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb" + ] + }, { "kernelversion": "123~18.04.1", "kernelrelease": "5.4.0-109-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" ] }, { @@ -6098,8 +6051,17 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + ] + }, + { + "kernelversion": "132~18.04.1", + "kernelrelease": "5.4.0-117-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb" ] }, { @@ -6107,8 +6069,8 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb" ] }, { @@ -6116,8 +6078,8 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb" ] }, { @@ -6143,8 +6105,8 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" ] }, { @@ -6170,8 +6132,8 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" ] }, { @@ -6179,8 +6141,8 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb" ] }, { @@ -6188,8 +6150,8 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb" ] }, { @@ -6206,8 +6168,8 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" ] }, { @@ -6215,8 +6177,8 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb" ] }, { @@ -6224,8 +6186,8 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" ] }, { @@ -6242,8 +6204,8 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" ] }, { @@ -6251,8 +6213,8 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" ] }, { @@ -6260,8 +6222,8 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb" ] }, { @@ -6287,8 +6249,8 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" ] }, { @@ -6305,8 +6267,8 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb" ] }, { @@ -6314,8 +6276,8 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" ] }, { @@ -6323,8 +6285,8 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" ] }, { @@ -6368,8 +6330,8 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" ] }, { @@ -6377,8 +6339,8 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" ] }, { @@ -6395,8 +6357,8 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" ] }, { @@ -6422,8 +6384,8 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" ] }, { @@ -6432,8 +6394,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb" ] }, { @@ -6441,9 +6403,9 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, { @@ -6461,8 +6423,8 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" ] }, { @@ -6506,8 +6468,8 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" ] }, { @@ -6524,8 +6486,8 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" ] }, { @@ -6533,8 +6495,8 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" ] }, { @@ -6551,8 +6513,8 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb" ] }, { @@ -6560,8 +6522,8 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] }, { @@ -6569,8 +6531,8 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" ] }, { @@ -6578,9 +6540,9 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb" ] }, { @@ -6606,8 +6568,8 @@ "kernelrelease": "5.15.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" ] }, { @@ -6615,17 +6577,8 @@ "kernelrelease": "5.15.0-1005-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1006-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb" ] }, { @@ -6634,8 +6587,8 @@ "target": "ubuntu-lowlatency", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, { @@ -6643,8 +6596,8 @@ "kernelrelease": "5.15.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb" ] }, @@ -6653,8 +6606,8 @@ "kernelrelease": "5.15.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_arm64.deb" ] }, @@ -6663,9 +6616,9 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb" ] }, { @@ -6673,9 +6626,9 @@ "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36+22.10.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36+22.10.1_arm64.deb" ] }, { @@ -6683,8 +6636,8 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb" ] }, { @@ -6692,8 +6645,17 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1004-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb" ] }, { @@ -6705,15 +6667,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb" ] }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1004-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" - ] - }, { "kernelversion": "7", "kernelrelease": "5.15.0-1004-gcp", @@ -6723,32 +6676,41 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_arm64.deb" ] }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1006-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" + ] + }, { "kernelversion": "24", "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb" ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb" ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb" ] }, { @@ -6771,20 +6733,20 @@ }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1029-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1029-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb" ] }, { @@ -6801,9 +6763,9 @@ "kernelrelease": "5.11.0-40-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb" ] }, { @@ -6812,8 +6774,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb" ] }, { @@ -6821,9 +6783,9 @@ "kernelrelease": "5.11.0-42-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb" ] }, { @@ -6841,9 +6803,9 @@ "kernelrelease": "5.11.0-60-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb" ] }, { @@ -6852,8 +6814,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb" ] }, { @@ -6861,8 +6823,8 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb" ] }, { @@ -6870,8 +6832,8 @@ "kernelrelease": "5.13.0-1014-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb" ] }, { @@ -6888,8 +6850,8 @@ "kernelrelease": "5.13.0-1019-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb" ] }, { @@ -6915,8 +6877,8 @@ "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" ] }, { @@ -6942,26 +6904,8 @@ "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1026-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1026_5.13.0-1026.28~20.04.1_all.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1026-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1026-azure_5.13.0-1026.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" ] }, { @@ -6975,20 +6919,20 @@ }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1028-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" ] }, { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.13.0-1031-oracle-5.13", + "kernelversion": "33~20.04.1", + "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1031_5.13.0-1031.36~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" ] }, { @@ -6996,9 +6940,9 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb" ] }, { @@ -7007,8 +6951,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb" ] }, { @@ -7016,9 +6960,9 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" ] }, { @@ -7027,8 +6971,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" ] }, { @@ -7036,9 +6980,9 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb" ] }, { @@ -7047,8 +6991,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb" ] }, { @@ -7057,8 +7001,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb" ] }, { @@ -7066,9 +7010,9 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb" ] }, { @@ -7076,9 +7020,9 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb" ] }, { @@ -7086,9 +7030,9 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" ] }, { @@ -7096,8 +7040,8 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb" ] }, @@ -7106,8 +7050,8 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" ] }, @@ -7121,16 +7065,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" ] }, - { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.13.0-46-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic-64k_5.13.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb" - ] - }, { "kernelversion": "8~20.04.1", "kernelrelease": "5.15.0-1007-azure-5.15", @@ -7141,12 +7075,12 @@ ] }, { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1008-azure-5.15", - "target": "ubuntu-azure-5.15", + "kernelversion": "11~20.04.1", + "kernelrelease": "5.15.0-1009-aws-5.15", + "target": "ubuntu-aws-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb" ] }, { @@ -7154,9 +7088,9 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb" ] }, { @@ -7164,9 +7098,9 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb" ] }, { @@ -7174,9 +7108,9 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" ] }, { @@ -7184,31 +7118,11 @@ "kernelrelease": "5.15.0-32-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb" ] }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb" - ] - }, { "kernelversion": "113", "kernelrelease": "5.4.0-100", @@ -7229,20 +7143,20 @@ }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1026-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1026-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" ] }, { @@ -7250,8 +7164,8 @@ "kernelrelease": "5.4.0-1027-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1027_5.4.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1027_5.4.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb" ] }, { @@ -7286,8 +7200,8 @@ "kernelrelease": "5.4.0-1033-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb" ] }, { @@ -7299,15 +7213,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb" ] }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1034-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" - ] - }, { "kernelversion": "37", "kernelrelease": "5.4.0-1034-bluefield", @@ -7318,12 +7223,12 @@ ] }, { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-bluefield", - "target": "ubuntu-bluefield", + "kernelversion": "37", + "kernelrelease": "5.4.0-1034-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb" ] }, { @@ -7336,12 +7241,12 @@ ] }, { - "kernelversion": "39", - "kernelrelease": "5.4.0-1036-raspi", - "target": "ubuntu-raspi", + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb" ] }, { @@ -7353,13 +7258,31 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1036_5.4.0-1036.39_all.deb" ] }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1036-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb" + ] + }, { "kernelversion": "40", "kernelrelease": "5.4.0-1037-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1037-bluefield_5.4.0-1037.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1037-bluefield_5.4.0-1037.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1037_5.4.0-1037.40_all.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1039-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1039-bluefield_5.4.0-1039.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1039_5.4.0-1039.43_all.deb" ] }, { @@ -7367,8 +7290,8 @@ "kernelrelease": "5.4.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" ] }, { @@ -7385,8 +7308,8 @@ "kernelrelease": "5.4.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb" ] }, { @@ -7403,8 +7326,8 @@ "kernelrelease": "5.4.0-1052-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb" ] }, { @@ -7412,8 +7335,8 @@ "kernelrelease": "5.4.0-1053-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb" ] }, { @@ -7448,8 +7371,8 @@ "kernelrelease": "5.4.0-106", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_arm64.deb" ] }, { @@ -7479,22 +7402,13 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1063-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1063_5.4.0-1063.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1063-raspi_5.4.0-1063.72_arm64.deb" - ] - }, { "kernelversion": "67", "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -7502,8 +7416,8 @@ "kernelrelease": "5.4.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb" ] }, { @@ -7529,8 +7443,8 @@ "kernelrelease": "5.4.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb" ] }, { @@ -7538,8 +7452,8 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" ] }, { @@ -7547,8 +7461,8 @@ "kernelrelease": "5.4.0-107", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" ] }, { @@ -7556,8 +7470,8 @@ "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb" ] }, { @@ -7565,8 +7479,8 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb" ] }, { @@ -7574,26 +7488,26 @@ "kernelrelease": "5.4.0-1071-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb" ] }, { @@ -7601,8 +7515,8 @@ "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" ] }, { @@ -7610,17 +7524,17 @@ "kernelrelease": "5.4.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1073-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1073-gke_5.4.0-1073.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" ] }, { @@ -7633,12 +7547,12 @@ ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb" ] }, { @@ -7646,26 +7560,17 @@ "kernelrelease": "5.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1074-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1074-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1074_5.4.0-1074.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb" ] }, { @@ -7682,8 +7587,8 @@ "kernelrelease": "5.4.0-1075-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb" ] }, { @@ -7695,24 +7600,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" ] }, - { - "kernelversion": "81", - "kernelrelease": "5.4.0-1076-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1076_5.4.0-1076.81_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_arm64.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "5.4.0-1076-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1076_5.4.0-1076.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81_arm64.deb" - ] - }, { "kernelversion": "79", "kernelrelease": "5.4.0-1076-azure", @@ -7749,22 +7636,13 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" ] }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1081-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb" - ] - }, { "kernelversion": "123", "kernelrelease": "5.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" ] }, { @@ -7772,8 +7650,8 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" ] }, { @@ -7790,8 +7668,8 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" ] }, { @@ -7799,17 +7677,8 @@ "kernelrelease": "5.4.0-114", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_arm64.deb" - ] - }, - { - "kernelversion": "129", - "kernelrelease": "5.4.0-115", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-115-generic_5.4.0-115.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb" ] }, { @@ -7817,8 +7686,8 @@ "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" ] }, { @@ -7826,8 +7695,8 @@ "kernelrelease": "5.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" ] }, { @@ -7835,8 +7704,8 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" ] }, { @@ -7845,8 +7714,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb" ] }, { @@ -7863,8 +7732,8 @@ "kernelrelease": "5.11.0-1016-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb" ] }, { @@ -7872,8 +7741,8 @@ "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { @@ -7881,8 +7750,8 @@ "kernelrelease": "5.11.0-1017-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -7896,20 +7765,20 @@ }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb" ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1019-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -7917,8 +7786,8 @@ "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb" ] }, { @@ -7935,8 +7804,8 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" ] }, { @@ -7944,8 +7813,8 @@ "kernelrelease": "5.11.0-1021-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb" ] }, { @@ -7953,8 +7822,17 @@ "kernelrelease": "5.11.0-1023-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { @@ -7962,17 +7840,17 @@ "kernelrelease": "5.11.0-1023-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -7980,8 +7858,8 @@ "kernelrelease": "5.11.0-1025-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -7994,12 +7872,12 @@ ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -8007,8 +7885,8 @@ "kernelrelease": "5.11.0-1027-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb" ] }, { @@ -8016,17 +7894,8 @@ "kernelrelease": "5.11.0-1027-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -8034,8 +7903,8 @@ "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" ] }, { @@ -8043,9 +7912,9 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb" ] }, { @@ -8053,8 +7922,8 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb" ] }, @@ -8064,8 +7933,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb" ] }, { @@ -8073,8 +7942,8 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" ] }, @@ -8083,8 +7952,8 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb" ] }, @@ -8094,8 +7963,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb" ] }, { @@ -8103,9 +7972,9 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" ] }, { @@ -8114,8 +7983,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb" ] }, { @@ -8123,9 +7992,9 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" ] }, { @@ -8178,8 +8047,8 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" ] }, { @@ -8187,8 +8056,8 @@ "kernelrelease": "5.13.0-1017-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { @@ -8214,8 +8083,8 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" ] }, { @@ -8223,8 +8092,8 @@ "kernelrelease": "5.13.0-1021-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb" ] }, { @@ -8232,8 +8101,8 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" ] }, { @@ -8241,8 +8110,8 @@ "kernelrelease": "5.13.0-1022-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb" ] }, { @@ -8250,8 +8119,8 @@ "kernelrelease": "5.13.0-1025-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb" ] }, { @@ -8259,8 +8128,8 @@ "kernelrelease": "5.13.0-1025-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb" ] }, { @@ -8268,8 +8137,8 @@ "kernelrelease": "5.13.0-1025-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb" ] }, { @@ -8281,6 +8150,33 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb" ] }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.13.0-1028-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1029-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.13.0-1029-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb" + ] + }, { "kernelversion": "35~20.04.1", "kernelrelease": "5.13.0-1030-oracle-5.13", @@ -8290,14 +8186,32 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" ] }, + { + "kernelversion": "39~20.04.1", + "kernelrelease": "5.13.0-1033-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.13.0-1034-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb" + ] + }, { "kernelversion": "23~20.04.2", "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb" ] }, { @@ -8305,9 +8219,9 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb" ] }, { @@ -8325,9 +8239,9 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb" ] }, { @@ -8335,18 +8249,66 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelversion": "54~20.04.1", + "kernelrelease": "5.13.0-48-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1006-gcp-5.15", + "target": "ubuntu-gcp-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1007-oracle-5.15", + "target": "ubuntu-oracle-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" + ] + }, + { + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1008-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb" ] }, { @@ -8358,6 +8320,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" + ] + }, { "kernelversion": "14", "kernelrelease": "5.4.0-1011-bluefield", @@ -8372,8 +8343,8 @@ "kernelrelease": "5.4.0-1012-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb" ] }, { @@ -8408,8 +8379,8 @@ "kernelrelease": "5.4.0-1015-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb" ] }, { @@ -8462,8 +8433,8 @@ "kernelrelease": "5.4.0-1018-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" ] }, { @@ -8480,8 +8451,8 @@ "kernelrelease": "5.4.0-1019-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb" ] }, { @@ -8498,8 +8469,8 @@ "kernelrelease": "5.4.0-1020-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" ] }, { @@ -8516,8 +8487,8 @@ "kernelrelease": "5.4.0-1021-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb" ] }, { @@ -8525,8 +8496,8 @@ "kernelrelease": "5.4.0-1021-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" ] }, { @@ -8561,8 +8532,8 @@ "kernelrelease": "5.4.0-1023-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb" ] }, { @@ -8570,8 +8541,8 @@ "kernelrelease": "5.4.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -8585,20 +8556,20 @@ }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1025-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1025-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1025-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb" ] }, { @@ -8630,20 +8601,20 @@ }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1030-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1030-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1030-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1030-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb" ] }, { @@ -8660,8 +8631,8 @@ "kernelrelease": "5.4.0-1032-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb" ] }, { @@ -8678,8 +8649,8 @@ "kernelrelease": "5.4.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -8696,8 +8667,8 @@ "kernelrelease": "5.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb" ] }, { @@ -8714,8 +8685,8 @@ "kernelrelease": "5.4.0-1038-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb" ] }, { @@ -8723,8 +8694,8 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { @@ -8750,8 +8721,8 @@ "kernelrelease": "5.4.0-1041-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb" ] }, { @@ -8768,8 +8739,8 @@ "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { @@ -8804,8 +8775,8 @@ "kernelrelease": "5.4.0-1045-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb" ] }, { @@ -8813,8 +8784,8 @@ "kernelrelease": "5.4.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" ] }, { @@ -8822,8 +8793,8 @@ "kernelrelease": "5.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { @@ -8831,8 +8802,8 @@ "kernelrelease": "5.4.0-1047-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb" ] }, { @@ -8849,8 +8820,8 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb" ] }, { @@ -8867,8 +8838,8 @@ "kernelrelease": "5.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { @@ -8876,8 +8847,8 @@ "kernelrelease": "5.4.0-1050-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb" ] }, { @@ -8885,8 +8856,8 @@ "kernelrelease": "5.4.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { @@ -8903,8 +8874,8 @@ "kernelrelease": "5.4.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb" ] }, { @@ -8912,8 +8883,8 @@ "kernelrelease": "5.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" ] }, { @@ -8921,8 +8892,8 @@ "kernelrelease": "5.4.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb" ] }, { @@ -8930,8 +8901,8 @@ "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb" ] }, { @@ -8939,8 +8910,8 @@ "kernelrelease": "5.4.0-1055-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb" ] }, { @@ -8948,8 +8919,8 @@ "kernelrelease": "5.4.0-1055-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb" ] }, { @@ -8957,8 +8928,8 @@ "kernelrelease": "5.4.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb" ] }, { @@ -8975,8 +8946,8 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb" ] }, { @@ -9020,8 +8991,8 @@ "kernelrelease": "5.4.0-1059-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb" ] }, { @@ -9038,8 +9009,8 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -9056,8 +9027,8 @@ "kernelrelease": "5.4.0-1062-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb" ] }, { @@ -9074,8 +9045,8 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" ] }, { @@ -9087,6 +9058,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb" ] }, + { + "kernelversion": "75", + "kernelrelease": "5.4.0-1065-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1065_5.4.0-1065.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1065-raspi_5.4.0-1065.75_arm64.deb" + ] + }, { "kernelversion": "71", "kernelrelease": "5.4.0-1066-oracle", @@ -9101,8 +9081,8 @@ "kernelrelease": "5.4.0-1068-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" ] }, { @@ -9110,8 +9090,17 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" ] }, { @@ -9119,8 +9108,8 @@ "kernelrelease": "5.4.0-1072-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" ] }, { @@ -9133,21 +9122,21 @@ ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", - "target": "ubuntu-gke", + "kernelversion": "79", + "kernelrelease": "5.4.0-1073-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1073-oracle", + "kernelversion": "83", + "kernelrelease": "5.4.0-1076-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb" ] }, { @@ -9155,8 +9144,44 @@ "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb" + ] + }, + { + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb" + ] + }, + { + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb" + ] + }, + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1083-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" + ] + }, + { + "kernelversion": "132", + "kernelrelease": "5.4.0-117", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb" ] }, { @@ -9164,8 +9189,8 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb" ] }, { @@ -9191,8 +9216,8 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" ] }, { @@ -9200,8 +9225,8 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb" ] }, { @@ -9227,8 +9252,8 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" ] }, { @@ -9290,8 +9315,8 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb" ] }, { @@ -9299,8 +9324,8 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" ] }, { @@ -9326,8 +9351,8 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb" ] }, { @@ -9335,8 +9360,8 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" ] }, { @@ -9344,8 +9369,8 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb" ] }, { @@ -9362,8 +9387,8 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb" ] }, { @@ -9398,8 +9423,8 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" ] }, { @@ -9407,8 +9432,8 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb" ] }, { @@ -9425,8 +9450,8 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb" ] }, { @@ -9434,8 +9459,8 @@ "kernelrelease": "5.4.0-86", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" ] }, { @@ -9470,8 +9495,8 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb" ] }, { @@ -9479,8 +9504,8 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" ] }, { @@ -9506,8 +9531,8 @@ "kernelrelease": "5.8.0-1031-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, { @@ -9542,8 +9567,8 @@ "kernelrelease": "5.8.0-1038-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" ] }, { @@ -9560,8 +9585,8 @@ "kernelrelease": "5.8.0-1041-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" ] }, { @@ -9578,9 +9603,9 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" ] }, { @@ -9588,9 +9613,9 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" ] }, { @@ -9599,8 +9624,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" ] }, { @@ -9608,9 +9633,9 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" ] }, { @@ -9619,8 +9644,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" ] }, { @@ -9628,8 +9653,8 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb" ] }, @@ -9648,9 +9673,9 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" ] }, { @@ -9658,9 +9683,9 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" ] }, { @@ -9668,9 +9693,9 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb" ] }, { @@ -9678,9 +9703,9 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" ] }, { @@ -9689,8 +9714,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb" ] }, { @@ -9699,8 +9724,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb" ] }, { @@ -9737,8 +9762,8 @@ "kernelrelease": "5.4.0-1007-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb" ] }, { @@ -9746,8 +9771,8 @@ "kernelrelease": "5.4.0-1049-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, { @@ -9755,8 +9780,8 @@ "kernelrelease": "5.4.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb" ] }, { @@ -9764,8 +9789,8 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" ] }, { @@ -9773,8 +9798,8 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" ] }, { @@ -9782,9 +9807,9 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" ] }, { @@ -9792,9 +9817,9 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" ] }, { @@ -9802,9 +9827,9 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" ] }, { @@ -9813,8 +9838,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb" ] }, { @@ -9822,9 +9847,9 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" ] }, { @@ -9841,8 +9866,8 @@ "kernelrelease": "5.4.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb" ] }, { @@ -9859,35 +9884,35 @@ "kernelrelease": "5.11.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1027-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb" ] }, { @@ -9901,20 +9926,20 @@ }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb" ] }, { @@ -9922,8 +9947,8 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb" ] }, @@ -9960,26 +9985,26 @@ "kernelrelease": "5.13.0-1007-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1010-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" ] }, { @@ -10029,20 +10054,20 @@ }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" ] }, { @@ -10050,8 +10075,8 @@ "kernelrelease": "5.13.0-1017-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb" ] }, { @@ -10074,29 +10099,29 @@ }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1020-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb" ] }, { @@ -10104,17 +10129,17 @@ "kernelrelease": "5.13.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb" ] }, { @@ -10122,8 +10147,8 @@ "kernelrelease": "5.13.0-1021-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb" ] }, { @@ -10131,8 +10156,8 @@ "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" ] }, { @@ -10149,8 +10174,8 @@ "kernelrelease": "5.13.0-1022-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb" ] }, { @@ -10164,20 +10189,20 @@ }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1023-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1023-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1023-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1023-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" ] }, { @@ -10194,8 +10219,8 @@ "kernelrelease": "5.13.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb" ] }, { @@ -10248,8 +10273,8 @@ "kernelrelease": "5.13.0-1025-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" ] }, { @@ -10257,12 +10282,21 @@ "kernelrelease": "5.13.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" ] }, { - "kernelversion": "28", + "kernelversion": "31", + "kernelrelease": "5.13.0-1026-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" + ] + }, + { + "kernelversion": "28", "kernelrelease": "5.13.0-1026-raspi", "target": "ubuntu-raspi", "headers": [ @@ -10275,26 +10309,8 @@ "kernelrelease": "5.13.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_arm64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.13.0-1026-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_arm64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.13.0-1026-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb" ] }, { @@ -10302,8 +10318,8 @@ "kernelrelease": "5.13.0-1027-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb" ] }, { @@ -10315,13 +10331,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] }, + { + "kernelversion": "33", + "kernelrelease": "5.13.0-1028-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb" + ] + }, { "kernelversion": "30", "kernelrelease": "5.13.0-1028-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb" ] }, { @@ -10333,32 +10358,14 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb" ] }, - { - "kernelversion": "31", - "kernelrelease": "5.13.0-1029-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.13.0-1031-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_arm64.deb" - ] - }, { "kernelversion": "31", "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb" ] }, { @@ -10366,9 +10373,9 @@ "kernelrelease": "5.13.0-29", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb" ] }, { @@ -10376,8 +10383,8 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb" ] }, @@ -10386,8 +10393,8 @@ "kernelrelease": "5.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_arm64.deb" ] }, @@ -10396,9 +10403,9 @@ "kernelrelease": "5.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb" ] }, { @@ -10406,9 +10413,9 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb" ] }, { @@ -10416,8 +10423,8 @@ "kernelrelease": "5.13.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb" ] }, @@ -10426,9 +10433,9 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" ] }, { @@ -10436,8 +10443,8 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb" ] }, @@ -10457,8 +10464,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb" ] }, { @@ -10476,19 +10483,9 @@ "kernelrelease": "5.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic-64k_5.13.0-45.50_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic-64k_5.13.0-45.50_arm64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.13.0-46", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic-64k_5.13.0-46.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_arm64.deb" ] }, { @@ -10505,8 +10502,8 @@ "kernelrelease": "5.13.0-1008-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb" ] }, { @@ -10514,8 +10511,8 @@ "kernelrelease": "5.13.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" ] }, { @@ -10532,8 +10529,8 @@ "kernelrelease": "5.13.0-1009-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb" ] }, { @@ -10541,8 +10538,8 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" ] }, { @@ -10550,26 +10547,26 @@ "kernelrelease": "5.13.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" ] }, { "kernelversion": "13", - "kernelrelease": "5.13.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1011-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb" ] }, { "kernelversion": "13", - "kernelrelease": "5.13.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" ] }, { @@ -10595,8 +10592,8 @@ "kernelrelease": "5.13.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" ] }, { @@ -10604,8 +10601,8 @@ "kernelrelease": "5.13.0-1013-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb" ] }, { @@ -10631,8 +10628,8 @@ "kernelrelease": "5.13.0-1016-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb" ] }, { @@ -10649,8 +10646,8 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" ] }, { @@ -10676,8 +10673,17 @@ "kernelrelease": "5.13.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_arm64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-1028-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb" ] }, { @@ -10689,14 +10695,32 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb" ] }, + { + "kernelversion": "34", + "kernelrelease": "5.13.0-1031-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1031-raspi_5.13.0-1031.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1031_5.13.0-1031.34_arm64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.13.0-1033-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" + ] + }, { "kernelversion": "21", "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb" ] }, { @@ -10704,9 +10728,9 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb" ] }, { @@ -10725,8 +10749,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" ] }, { @@ -10734,9 +10758,9 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb" ] }, { @@ -10744,9 +10768,9 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" ] }, { @@ -10755,8 +10779,45 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb" + ] + }, + { + "kernelversion": "54", + "kernelrelease": "5.13.0-48", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1026-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_arm64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-1029-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.13.0-1031-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" ] }, { @@ -10764,9 +10825,19 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" + ] + }, + { + "kernelversion": "51", + "kernelrelease": "5.13.0-46", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic-64k_5.13.0-46.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb" ] }, { @@ -10774,8 +10845,8 @@ "kernelrelease": "5.13.0-1005-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" ] }, { @@ -10792,9 +10863,9 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb" ] }, { @@ -10811,26 +10882,26 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.15.0-1006-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1006-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.15.0-1006-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.15.0-1006-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { @@ -10838,8 +10909,8 @@ "kernelrelease": "5.15.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb" ] }, { @@ -10851,15 +10922,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb" ] }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1006-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_arm64.deb" - ] - }, { "kernelversion": "8", "kernelrelease": "5.15.0-1007-azure", @@ -10869,68 +10931,51 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb" ] }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1007-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb" - ] - }, { "kernelversion": "7", "kernelrelease": "5.15.0-1007-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1008-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.15.0-1008-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.15.0-1009-aws", + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1009-raspi", - "target": "ubuntu-raspi", + "kernelversion": "30", + "kernelrelease": "5.15.0-29", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1009-raspi_5.15.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1009_5.15.0-1009.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.15.0-29", + "kernelversion": "31", + "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb" ] }, { @@ -10944,13 +10989,13 @@ ] }, { - "kernelversion": "31", - "kernelrelease": "5.15.0-30", + "kernelversion": "33", + "kernelrelease": "5.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb" ] }, { @@ -10958,19 +11003,9 @@ "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency-64k_5.15.0-32.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.15.0-32", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb" ] }, { @@ -10978,9 +11013,9 @@ "kernelrelease": "5.15.0-33-lowlatency", "target": "ubuntu-lowlatency", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb" ] }, { @@ -10988,8 +11023,8 @@ "kernelrelease": "5.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb" ] }, @@ -10998,9 +11033,9 @@ "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, { @@ -11008,19 +11043,18 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.15.0-36", - "target": "ubuntu-generic", + "kernelversion": "12", + "kernelrelease": "5.15.0-1008-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-36_5.15.0-36.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-36-generic_5.15.0-36.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-36-generic-64k_5.15.0-36.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_arm64.deb" ] }, { @@ -11032,13 +11066,105 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb" ] }, + { + "kernelversion": "12", + "kernelrelease": "5.15.0-1009-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "5.15.0-1010-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_arm64.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb" + ] + }, + { + "kernelversion": "13", + "kernelrelease": "5.15.0-1011-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1011-raspi_5.15.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1011_5.15.0-1011.13_arm64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.15.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.15.0-37-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1006-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_arm64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1007-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1008-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.15.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb" + ] + }, { "kernelversion": "4", "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" ] }, { @@ -11055,8 +11181,8 @@ "kernelrelease": "5.15.0-1005-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb" ] }, { @@ -11064,9 +11190,9 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb" ] }, { @@ -11074,8 +11200,8 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb" ] }, { @@ -11092,8 +11218,8 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" ] }, { @@ -11101,8 +11227,8 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" ] }, { @@ -11110,8 +11236,8 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb" ] }, { @@ -11119,8 +11245,8 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" ] }, { @@ -11137,8 +11263,8 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb" ] }, { @@ -11155,8 +11281,8 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb" ] }, { @@ -11164,8 +11290,8 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb" ] }, { @@ -11173,8 +11299,8 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb" ] }, { @@ -11182,8 +11308,8 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" ] }, { @@ -11191,8 +11317,8 @@ "kernelrelease": "3.13.0-119", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" ] }, { @@ -11200,8 +11326,8 @@ "kernelrelease": "3.13.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" ] }, { @@ -11218,8 +11344,8 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" ] }, { @@ -11227,8 +11353,8 @@ "kernelrelease": "3.13.0-126", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb" ] }, { @@ -11245,8 +11371,8 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" ] }, { @@ -11290,8 +11416,8 @@ "kernelrelease": "3.13.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb" ] }, { @@ -11308,8 +11434,8 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb" ] }, { @@ -11317,8 +11443,8 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" ] }, { @@ -11326,8 +11452,8 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" ] }, { @@ -11335,8 +11461,8 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb" ] }, { @@ -11362,8 +11488,8 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" ] }, { @@ -11371,8 +11497,8 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb" ] }, { @@ -11389,8 +11515,8 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" ] }, { @@ -11407,8 +11533,8 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb" ] }, { @@ -11416,8 +11542,8 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb" ] }, { @@ -11443,8 +11569,8 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" ] }, { @@ -11461,8 +11587,8 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" ] }, { @@ -11479,8 +11605,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" ] }, { @@ -11488,8 +11614,8 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb" ] }, { @@ -11506,8 +11632,8 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb" ] }, { @@ -11515,8 +11641,8 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" ] }, { @@ -11542,8 +11668,8 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb" ] }, { @@ -11578,8 +11704,8 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb" ] }, { @@ -11587,8 +11713,8 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb" ] }, { @@ -11623,8 +11749,8 @@ "kernelrelease": "3.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_arm64.deb" ] }, { @@ -11632,8 +11758,8 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb" ] }, { @@ -11650,8 +11776,8 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" ] }, { @@ -11677,8 +11803,8 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb" ] }, { @@ -11686,8 +11812,8 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" ] }, { @@ -11704,8 +11830,8 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" ] }, { @@ -11713,8 +11839,8 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb" ] }, { @@ -11749,8 +11875,8 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" ] }, { @@ -11785,8 +11911,8 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" ] }, { @@ -11803,8 +11929,8 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb" ] }, { @@ -11812,8 +11938,8 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb" ] }, { @@ -11821,8 +11947,8 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" ] }, { @@ -11839,8 +11965,8 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb" ] }, { @@ -11848,8 +11974,8 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" ] }, { @@ -11857,8 +11983,8 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb" ] }, { @@ -11866,8 +11992,8 @@ "kernelrelease": "3.13.0-87", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb" ] }, { @@ -11875,8 +12001,8 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb" ] }, { @@ -11938,8 +12064,8 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" ] }, { @@ -11947,8 +12073,8 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb" ] }, { @@ -11992,8 +12118,8 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb" ] }, { @@ -12001,8 +12127,8 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb" ] }, { @@ -12010,8 +12136,8 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb" ] }, { @@ -12028,8 +12154,8 @@ "kernelrelease": "3.16.0-39-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" ] }, { @@ -12046,8 +12172,8 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" ] }, { @@ -12064,8 +12190,8 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb" ] }, { @@ -12082,8 +12208,8 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" ] }, { @@ -12118,8 +12244,8 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" ] }, { @@ -12145,8 +12271,8 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb" ] }, { @@ -12154,8 +12280,8 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb" ] }, { @@ -12163,8 +12289,8 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb" ] }, { @@ -12172,8 +12298,8 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb" ] }, { @@ -12181,8 +12307,8 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" ] }, { @@ -12190,8 +12316,8 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" ] }, { @@ -12199,8 +12325,8 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" ] }, { @@ -12253,8 +12379,8 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" ] }, { @@ -12289,8 +12415,8 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb" ] }, { @@ -12325,8 +12451,8 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" ] }, { @@ -12343,8 +12469,8 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb" ] }, { @@ -12352,8 +12478,8 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" ] }, { @@ -12361,8 +12487,8 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb" ] }, { @@ -12388,8 +12514,8 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" ] }, { @@ -12406,8 +12532,8 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb" ] }, { @@ -12415,8 +12541,8 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb" ] }, { @@ -12424,8 +12550,8 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" ] }, { @@ -12433,8 +12559,8 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb" ] }, { @@ -12442,8 +12568,8 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" ] }, { @@ -12451,8 +12577,8 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" ] }, { @@ -12478,8 +12604,8 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb" ] }, { @@ -12487,8 +12613,8 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" ] }, { @@ -12496,8 +12622,8 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb" ] }, { @@ -12514,8 +12640,8 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" ] }, { @@ -12523,8 +12649,8 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb" ] }, { @@ -12559,8 +12685,8 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb" ] }, { @@ -12568,8 +12694,8 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb" ] }, { @@ -12586,8 +12712,8 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" ] }, { @@ -12595,8 +12721,8 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" ] }, { @@ -12676,8 +12802,8 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb" ] }, { @@ -12694,8 +12820,8 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb" ] }, { @@ -12712,8 +12838,8 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb" ] }, { @@ -12730,8 +12856,8 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb" ] }, { @@ -12748,8 +12874,8 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" ] }, { @@ -12757,8 +12883,8 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" ] }, { @@ -12775,8 +12901,8 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb" ] }, { @@ -12784,8 +12910,8 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb" ] }, { @@ -12811,8 +12937,8 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb" ] }, { @@ -12820,8 +12946,8 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb" ] }, { @@ -12838,8 +12964,8 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" ] }, { @@ -12856,8 +12982,8 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" ] }, { @@ -12874,8 +13000,8 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb" ] }, { @@ -12883,8 +13009,8 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb" ] }, { @@ -12892,8 +13018,8 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" ] }, { @@ -12901,8 +13027,8 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" ] }, { @@ -12910,8 +13036,8 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb" ] }, { @@ -12919,8 +13045,8 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" ] }, { @@ -12937,8 +13063,8 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" ] }, { @@ -12964,8 +13090,8 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb" ] }, { @@ -12991,8 +13117,8 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb" ] }, { @@ -13000,8 +13126,8 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb" ] }, { @@ -13009,8 +13135,8 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" ] }, { @@ -13018,8 +13144,8 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" ] }, { @@ -13036,8 +13162,8 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb" ] }, { @@ -13045,8 +13171,8 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" ] }, { @@ -13072,8 +13198,8 @@ "kernelrelease": "4.4.0-64-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb" ] }, { @@ -13090,8 +13216,8 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" ] }, { @@ -13117,8 +13243,8 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb" ] }, { @@ -13126,8 +13252,8 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb" ] }, { @@ -13135,8 +13261,8 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" ] }, { @@ -13153,8 +13279,8 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" ] }, { @@ -13171,8 +13297,8 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb" ] }, { @@ -13180,8 +13306,8 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" ] }, { @@ -13189,8 +13315,8 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" ] }, { @@ -13216,8 +13342,8 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" ] }, { @@ -13234,8 +13360,8 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb" ] }, { @@ -13243,8 +13369,8 @@ "kernelrelease": "3.13.0-113", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb" ] }, { @@ -13279,8 +13405,8 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb" ] }, { @@ -13288,8 +13414,8 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb" ] }, { @@ -13333,8 +13459,8 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" ] }, { @@ -13342,8 +13468,8 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb" ] }, { @@ -13369,8 +13495,8 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb" ] }, { @@ -13378,8 +13504,8 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, { @@ -13405,8 +13531,8 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb" ] }, { @@ -13423,8 +13549,8 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" ] }, { @@ -13468,8 +13594,8 @@ "kernelrelease": "4.10.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb" ] }, { @@ -13486,8 +13612,8 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" ] }, { @@ -13504,8 +13630,8 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb" ] }, { @@ -13531,8 +13657,8 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb" ] }, { @@ -13549,8 +13675,8 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb" ] }, { @@ -13576,8 +13702,8 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" ] }, { @@ -13594,8 +13720,8 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb" ] }, { @@ -13639,8 +13765,8 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" ] }, { @@ -13684,8 +13810,8 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" ] }, { @@ -13702,8 +13828,8 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb" ] }, { @@ -13711,8 +13837,8 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" ] }, { @@ -13738,8 +13864,8 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" ] }, { @@ -13765,8 +13891,8 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" ] }, { @@ -13774,8 +13900,8 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" ] }, { @@ -13783,8 +13909,8 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" ] }, { @@ -13801,8 +13927,8 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" ] }, { @@ -13810,8 +13936,8 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb" ] }, { @@ -13828,8 +13954,8 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" ] }, { @@ -13873,8 +13999,8 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb" ] }, { @@ -13882,8 +14008,8 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" ] }, { @@ -13909,8 +14035,8 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb" ] }, { @@ -13918,8 +14044,8 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" ] }, { @@ -13936,8 +14062,8 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" ] }, { @@ -13945,8 +14071,8 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" ] }, { @@ -13981,8 +14107,8 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" ] }, { @@ -13999,8 +14125,8 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb" ] }, { @@ -14017,8 +14143,8 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" ] }, { @@ -14062,8 +14188,8 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb" ] }, { @@ -14071,8 +14197,8 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" ] }, { @@ -14080,8 +14206,8 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb" ] }, { @@ -14089,8 +14215,8 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb" ] }, { @@ -14098,8 +14224,8 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" ] }, { @@ -14116,8 +14242,8 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" ] }, { @@ -14143,8 +14269,8 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb" ] }, { @@ -14170,8 +14296,8 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" ] }, { @@ -14179,8 +14305,8 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb" ] }, { @@ -14188,8 +14314,8 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb" ] }, { @@ -14206,8 +14332,8 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" ] }, { @@ -14215,8 +14341,8 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, { @@ -14224,8 +14350,8 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" ] }, { @@ -14242,8 +14368,8 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb" ] }, { @@ -14251,8 +14377,8 @@ "kernelrelease": "4.15.0-96-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb" ] }, { @@ -14269,8 +14395,8 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" ] }, { @@ -14305,8 +14431,8 @@ "kernelrelease": "4.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb" ] }, { @@ -14341,8 +14467,8 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb" ] }, { @@ -14350,8 +14476,8 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb" ] }, { @@ -14368,8 +14494,8 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb" ] }, { @@ -14422,8 +14548,8 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb" ] }, { @@ -14449,8 +14575,8 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" ] }, { @@ -14458,8 +14584,8 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" ] }, { @@ -14485,8 +14611,8 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb" ] }, { @@ -14503,8 +14629,8 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" ] }, { @@ -14521,8 +14647,8 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb" ] }, { @@ -14530,8 +14656,8 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" ] }, { @@ -14548,8 +14674,8 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb" ] }, { @@ -14575,8 +14701,8 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" ] }, { @@ -14584,8 +14710,8 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb" ] }, { @@ -14620,8 +14746,8 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb" ] }, { @@ -14647,8 +14773,8 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb" ] }, { @@ -14665,8 +14791,8 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb" ] }, { @@ -14674,8 +14800,8 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" ] }, { @@ -14683,8 +14809,8 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" ] }, { @@ -14692,8 +14818,8 @@ "kernelrelease": "4.4.0-190", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" ] }, { @@ -14701,8 +14827,8 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" ] }, { @@ -14719,8 +14845,8 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" ] }, { @@ -14728,8 +14854,8 @@ "kernelrelease": "4.4.0-198", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb" ] }, { @@ -14755,8 +14881,8 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb" ] }, { @@ -14782,8 +14908,8 @@ "kernelrelease": "4.4.0-209", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb" ] }, { @@ -14800,8 +14926,8 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" ] }, { @@ -14809,8 +14935,8 @@ "kernelrelease": "4.4.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" ] }, { @@ -14818,8 +14944,8 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" ] }, { @@ -14854,8 +14980,8 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_arm64.deb" ] }, { @@ -14872,8 +14998,8 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" ] }, { @@ -14899,8 +15025,8 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb" ] }, { @@ -14935,8 +15061,8 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" ] }, { @@ -14944,8 +15070,8 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb" ] }, { @@ -14953,8 +15079,8 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb" ] }, { @@ -14962,8 +15088,8 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" ] }, { @@ -14971,8 +15097,8 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" ] }, { @@ -14989,8 +15115,8 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" ] }, { @@ -14998,8 +15124,8 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" ] }, { @@ -15016,8 +15142,8 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" ] }, { @@ -15025,8 +15151,8 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" ] }, { @@ -15034,8 +15160,8 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" ] }, { @@ -15052,8 +15178,8 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb" ] }, { @@ -15070,8 +15196,8 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb" ] }, { @@ -15097,8 +15223,8 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb" ] }, { @@ -15133,8 +15259,8 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb" ] }, { @@ -15151,8 +15277,8 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" ] }, { @@ -15160,8 +15286,8 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" ] }, { @@ -15169,8 +15295,8 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" ] }, { @@ -15178,8 +15304,8 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb" ] }, { @@ -15214,8 +15340,8 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb" ] }, { @@ -15223,8 +15349,8 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" ] }, { @@ -15241,8 +15367,8 @@ "kernelrelease": "4.4.0-131", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" ] }, { @@ -15250,8 +15376,8 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb" ] }, { @@ -15286,8 +15412,8 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb" ] }, { @@ -15295,8 +15421,8 @@ "kernelrelease": "4.8.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" ] }, { @@ -15313,8 +15439,8 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb" ] }, { @@ -15322,8 +15448,8 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" ] }, { diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index 941fa5f..e16424d 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -218,122 +218,122 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.105.amzn1.x86_64", + "kernelrelease": "4.14.232-123.381.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-89.102.amzn1.x86_64", + "kernelrelease": "4.14.200-116.320.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.73.amzn1.x86_64", + "kernelrelease": "4.14.70-67.55.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.59.amzn1.x86_64", + "kernelrelease": "4.14.268-139.500.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-87.105.amzn1.x86_64", + "kernelrelease": "4.14.193-113.317.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-103.209.amzn1.x86_64", + "kernelrelease": "4.14.238-125.422.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-85.96.amzn1.x86_64", + "kernelrelease": "4.14.128-87.105.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.42-52.37.amzn1.x86_64", + "kernelrelease": "4.14.77-69.57.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-56.37.amzn1.x86_64", + "kernelrelease": "4.14.114-82.97.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.55-62.37.amzn1.x86_64", + "kernelrelease": "4.14.77-70.59.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-140.502.amzn1.x86_64", + "kernelrelease": "4.14.55-62.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-93.123.amzn1.x86_64", + "kernelrelease": "4.14.109-80.92.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-75.76.amzn1.x86_64", + "kernelrelease": "4.14.152-98.182.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-119.340.amzn1.x86_64", + "kernelrelease": "4.14.33-51.34.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-139.500.amzn1.x86_64", + "kernelrelease": "4.14.252-131.483.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" ] }, { @@ -341,303 +341,311 @@ "kernelrelease": "4.14.225-121.357.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-102.185.amzn1.x86_64", + "kernelrelease": "4.14.33-51.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-101.185.amzn1.x86_64", + "kernelrelease": "4.14.219-119.340.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-107.254.amzn1.x86_64", + "kernelrelease": "4.14.121-85.96.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-98.182.amzn1.x86_64", + "kernelrelease": "4.14.114-83.126.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.486.amzn1.x86_64", + "kernelrelease": "4.14.106-79.86.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-78.84.amzn1.x86_64", + "kernelrelease": "4.14.51-60.38.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.421.amzn1.x86_64", + "kernelrelease": "4.14.281-144.502.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.281-144.502.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.67-66.56.amzn1.x86_64", + "kernelrelease": "4.14.165-103.209.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.422.amzn1.x86_64", + "kernelrelease": "4.14.133-88.112.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-74.72.amzn1.x86_64", + "kernelrelease": "4.14.225-121.362.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.76.amzn1.x86_64", + "kernelrelease": "4.14.273-140.502.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.112.amzn1.x86_64", + "kernelrelease": "4.14.77-70.82.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-121.362.amzn1.x86_64", + "kernelrelease": "4.14.88-72.73.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-116.332.amzn1.x86_64", + "kernelrelease": "4.14.97-74.72.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-91.122.amzn1.x86_64", + "kernelrelease": "4.14.88-72.76.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.72-68.55.amzn1.x86_64", + "kernelrelease": "4.14.186-110.268.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-99.181.amzn1.x86_64", + "kernelrelease": "4.14.275-142.503.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.489.amzn1.x86_64", + "kernelrelease": "4.14.165-102.185.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-69.57.amzn1.x86_64", + "kernelrelease": "4.14.158-101.185.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.37.amzn1.x86_64", + "kernelrelease": "4.14.42-52.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-86.109.amzn1.x86_64", + "kernelrelease": "4.14.154-99.181.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-110.268.amzn1.x86_64", + "kernelrelease": "4.14.72-68.55.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-142.503.amzn1.x86_64", + "kernelrelease": "4.14.214-118.339.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.34.amzn1.x86_64", + "kernelrelease": "4.14.262-135.489.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-106.229.amzn1.x86_64", + "kernelrelease": "4.14.143-91.122.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.51-60.38.amzn1.x86_64", + "kernelrelease": "4.14.238-125.421.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-116.320.amzn1.x86_64", + "kernelrelease": "4.14.209-117.337.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-73.73.amzn1.x86_64", + "kernelrelease": "4.14.177-107.254.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-129.473.amzn1.x86_64", + "kernelrelease": "4.14.62-65.117.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-80.92.amzn1.x86_64", + "kernelrelease": "4.14.262-135.486.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-82.97.amzn1.x86_64", + "kernelrelease": "4.14.133-88.105.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.62-65.117.amzn1.x86_64", + "kernelrelease": "4.14.59-64.43.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-118.339.amzn1.x86_64", + "kernelrelease": "4.14.104-78.84.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-83.126.amzn1.x86_64", + "kernelrelease": "4.14.123-86.109.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-131.483.amzn1.x86_64", + "kernelrelease": "4.14.248-129.473.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-79.86.amzn1.x86_64", + "kernelrelease": "4.14.146-93.123.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.82.amzn1.x86_64", + "kernelrelease": "4.14.94-73.73.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.47-56.37.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" ] }, { @@ -645,73 +653,81 @@ "kernelrelease": "4.14.181-108.257.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.70-67.55.amzn1.x86_64", + "kernelrelease": "4.14.203-116.332.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-117.337.amzn1.x86_64", + "kernelrelease": "4.14.138-89.102.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-105.231.amzn1.x86_64", + "kernelrelease": "4.14.173-106.229.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-123.381.amzn1.x86_64", + "kernelrelease": "4.14.171-105.231.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-113.317.amzn1.x86_64", + "kernelrelease": "4.14.101-75.76.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.59-64.43.amzn1.x86_64", + "kernelrelease": "4.14.67-66.56.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/27734b9d0534/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" ] } ], "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.x86_64", + "kernelrelease": "4.14.232-176.381.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.x86_64", + "kernelrelease": "4.14.138-114.102.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.173-137.229.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" ] }, { @@ -719,111 +735,111 @@ "kernelrelease": "4.9.77-41.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.x86_64", + "kernelrelease": "4.14.209-160.335.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.34.amzn2.x86_64", + "kernelrelease": "4.14.121-109.96.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.x86_64", + "kernelrelease": "4.14.246-187.474.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.x86_64", + "kernelrelease": "4.14.256-197.484.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.x86_64", + "kernelrelease": "4.14.177-139.254.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.x86_64", + "kernelrelease": "4.14.203-156.332.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.72-73.55.amzn2.x86_64", + "kernelrelease": "4.14.248-189.473.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.55-68.37.amzn2.x86_64", + "kernelrelease": "4.14.26-54.32.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.x86_64", + "kernelrelease": "4.14.219-164.354.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.85-46.56.amzn2.x86_64", + "kernelrelease": "4.14.241-184.433.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.x86_64", + "kernelrelease": "4.14.225-168.357.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.x86_64", + "kernelrelease": "4.14.104-95.84.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.70-72.55.amzn2.x86_64", + "kernelrelease": "4.14.47-63.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" ] }, { @@ -831,575 +847,591 @@ "kernelrelease": "4.14.146-119.123.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.x86_64", + "kernelrelease": "4.14.67-71.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.76-38.79.amzn2.x86_64", + "kernelrelease": "4.14.152-124.171.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.x86_64", + "kernelrelease": "4.14.262-200.489.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.x86_64", + "kernelrelease": "4.14.97-90.72.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.37.amzn2.x86_64", + "kernelrelease": "4.14.225-169.362.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.62-10.57.amzn2.x86_64", + "kernelrelease": "4.9.85-46.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.x86_64", + "kernelrelease": "4.14.181-140.257.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.x86_64", + "kernelrelease": "4.14.276-211.499.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.59-68.43.amzn2.x86_64", + "kernelrelease": "4.14.70-72.55.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.x86_64", + "kernelrelease": "4.14.128-112.105.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.x86_64", + "kernelrelease": "4.14.114-105.126.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.x86_64", + "kernelrelease": "4.14.281-212.502.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/333f944a7a5ee308d61a30c3dff09017232758e1186d6e4490aeffe82c30cc40/kernel-devel-4.14.281-212.502.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.x86_64", + "kernelrelease": "4.14.72-73.55.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.x86_64", + "kernelrelease": "4.9.75-1.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.x86_64", + "kernelrelease": "4.14.123-111.109.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.x86_64", + "kernelrelease": "4.14.231-173.361.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.x86_64", + "kernelrelease": "4.14.77-81.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.x86_64", + "kernelrelease": "4.14.171-136.231.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-64.38.amzn2.x86_64", + "kernelrelease": "4.14.177-139.253.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.x86_64", + "kernelrelease": "4.14.252-195.483.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.x86_64", + "kernelrelease": "4.14.165-131.185.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.x86_64", + "kernelrelease": "4.14.232-177.418.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.x86_64", + "kernelrelease": "4.14.146-120.181.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.x86_64", + "kernelrelease": "4.14.238-182.421.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.x86_64", + "kernelrelease": "4.9.62-10.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.70-2.243.amzn2.x86_64", + "kernelrelease": "4.14.165-133.209.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.x86_64", + "kernelrelease": "4.14.193-149.317.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.x86_64", + "kernelrelease": "4.14.109-99.92.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.26-54.32.amzn2.x86_64", + "kernelrelease": "4.14.94-89.73.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.42-61.37.amzn2.x86_64", + "kernelrelease": "4.9.70-2.243.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.x86_64", + "kernelrelease": "4.14.133-113.105.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.x86_64", + "kernelrelease": "4.14.152-127.182.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.x86_64", + "kernelrelease": "4.14.143-118.123.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.x86_64", + "kernelrelease": "4.14.88-88.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.x86_64", + "kernelrelease": "4.14.200-155.322.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.x86_64", + "kernelrelease": "4.14.101-91.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.x86_64", + "kernelrelease": "4.14.273-207.502.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.x86_64", + "kernelrelease": "4.14.55-68.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.x86_64", + "kernelrelease": "4.14.114-103.97.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.x86_64", + "kernelrelease": "4.14.209-160.339.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.x86_64", + "kernelrelease": "4.14.62-70.117.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.x86_64", + "kernelrelease": "4.9.85-47.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.x86_64", + "kernelrelease": "4.14.59-68.43.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.x86_64", + "kernelrelease": "4.14.77-86.82.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.x86_64", + "kernelrelease": "4.14.154-128.181.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.x86_64", + "kernelrelease": "4.14.186-146.268.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.x86_64", + "kernelrelease": "4.9.76-38.79.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.x86_64", + "kernelrelease": "4.14.192-147.314.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.x86_64", + "kernelrelease": "4.14.214-160.339.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.x86_64", + "kernelrelease": "4.14.219-161.340.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.x86_64", + "kernelrelease": "4.14.42-61.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.x86_64", + "kernelrelease": "4.14.158-129.185.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.62-70.117.amzn2.x86_64", + "kernelrelease": "4.14.47-64.38.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.x86_64", + "kernelrelease": "4.14.77-80.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.x86_64", + "kernelrelease": "4.14.268-205.500.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.x86_64", + "kernelrelease": "4.14.133-113.112.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.x86_64", + "kernelrelease": "4.14.181-142.260.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.x86_64", + "kernelrelease": "4.14.275-207.503.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.x86_64", + "kernelrelease": "4.14.243-185.433.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.81-44.57.amzn2.x86_64", + "kernelrelease": "4.14.106-97.85.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.51-66.38.amzn2.x86_64", + "kernelrelease": "4.14.238-182.422.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.x86_64", + "kernelrelease": "4.14.33-59.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.x86_64", + "kernelrelease": "4.14.33-59.34.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.75-1.56.amzn2.x86_64", + "kernelrelease": "4.9.81-44.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.x86_64", + "kernelrelease": "4.14.198-152.320.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.85-47.59.amzn2.x86_64", + "kernelrelease": "4.14.51-66.38.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.x86_64", + "kernelrelease": "4.14.252-195.481.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.x86_64", + "kernelrelease": "4.14.231-173.360.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.67-71.56.amzn2.x86_64", + "kernelrelease": "4.14.173-137.228.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-63.37.amzn2.x86_64", + "kernelrelease": "4.14.88-88.73.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/9477c9704ca99071f0371ac4eccbfc529c83fca01ef5baecc511a8b6bb6b4e54/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.x86_64", + "kernelrelease": "5.10.29-27.128.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.96-90.460.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.59-52.142.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm" ] }, { @@ -1407,79 +1439,79 @@ "kernelrelease": "5.10.109-104.500.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/ca19e72b4e6b43af5c589209d1c44211800e1fd556633a0359f8e50c6b9dfacc/kernel-devel-5.10.109-104.500.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/ca19e72b4e6b43af5c589209d1c44211800e1fd556633a0359f8e50c6b9dfacc/kernel-devel-5.10.109-104.500.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.x86_64", + "kernelrelease": "5.10.82-83.359.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.x86_64", + "kernelrelease": "5.10.106-102.504.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.x86_64", + "kernelrelease": "5.10.50-44.132.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.x86_64", + "kernelrelease": "5.10.68-62.173.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.x86_64", + "kernelrelease": "5.10.50-44.131.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.x86_64", + "kernelrelease": "5.10.29-27.126.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.x86_64", + "kernelrelease": "5.10.47-39.130.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.x86_64", + "kernelrelease": "5.10.35-31.135.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.x86_64", + "kernelrelease": "5.10.93-87.444.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm" ] }, { @@ -1487,63 +1519,63 @@ "kernelrelease": "5.10.75-79.358.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.112-108.499.amzn2.x86_64", + "kernelrelease": "5.10.118-111.515.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/5f7589d15dbb5a3c43b0809802f463c41c9349c1c274dd7dc31db09313a48619/kernel-devel-5.10.112-108.499.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/692268872604200eb4306d9a5a7912086adc40f21f80e1eafd61fad264769685/kernel-devel-5.10.118-111.515.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.x86_64", + "kernelrelease": "5.10.112-108.499.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/5f7589d15dbb5a3c43b0809802f463c41c9349c1c274dd7dc31db09313a48619/kernel-devel-5.10.112-108.499.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.93-87.444.amzn2.x86_64", + "kernelrelease": "5.10.62-55.141.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.x86_64", + "kernelrelease": "5.10.102-99.473.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.x86_64", + "kernelrelease": "5.4.38-17.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/522778e8c83672229dd6c996b7e1e16b3e349e4c778e60c0358b69ff33a61750/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.x86_64", + "kernelrelease": "5.4.188-104.359.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/830875a1747e16cdc8a84fac964972fc4dd415b30d3414fb6af37804897f6c1d/kernel-devel-5.4.188-104.359.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.x86_64", + "kernelrelease": "5.4.149-73.259.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" ] }, { @@ -1551,215 +1583,215 @@ "kernelrelease": "5.4.129-62.227.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.x86_64", + "kernelrelease": "5.4.144-69.257.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.x86_64", + "kernelrelease": "5.4.190-107.353.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4421829a971058d8b64ce3571ab8828da405fd2fa6ee618642afa72caba86a0a/kernel-devel-5.4.190-107.353.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.188-104.359.amzn2.x86_64", + "kernelrelease": "5.4.58-32.125.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/830875a1747e16cdc8a84fac964972fc4dd415b30d3414fb6af37804897f6c1d/kernel-devel-5.4.188-104.359.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.x86_64", + "kernelrelease": "5.4.95-42.163.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.x86_64", + "kernelrelease": "5.4.196-108.356.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/013f72ea855c9c3754c7f7f78b33adece907ba142770137cfb578c19db228bc5/kernel-devel-5.4.196-108.356.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.x86_64", + "kernelrelease": "5.4.162-86.275.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.189.amzn2.x86_64", + "kernelrelease": "5.4.20-12.75.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.x86_64", + "kernelrelease": "5.4.74-36.135.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.x86_64", + "kernelrelease": "5.4.46-23.77.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.38-17.76.amzn2.x86_64", + "kernelrelease": "5.4.80-40.140.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.190-107.353.amzn2.x86_64", + "kernelrelease": "5.4.141-67.229.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/4421829a971058d8b64ce3571ab8828da405fd2fa6ee618642afa72caba86a0a/kernel-devel-5.4.190-107.353.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.x86_64", + "kernelrelease": "5.4.58-27.104.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.x86_64", + "kernelrelease": "5.4.129-63.229.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.x86_64", + "kernelrelease": "5.4.176-91.338.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.x86_64", + "kernelrelease": "5.4.172-90.336.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.x86_64", + "kernelrelease": "5.4.117-58.216.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.x86_64", + "kernelrelease": "5.4.50-25.83.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.x86_64", + "kernelrelease": "5.4.156-83.273.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.x86_64", + "kernelrelease": "5.4.110-54.182.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.x86_64", + "kernelrelease": "5.4.46-19.75.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.x86_64", + "kernelrelease": "5.4.105-48.177.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.x86_64", + "kernelrelease": "5.4.68-34.125.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.x86_64", + "kernelrelease": "5.4.186-102.354.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.x86_64", + "kernelrelease": "5.4.91-41.139.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.x86_64", + "kernelrelease": "5.4.110-54.189.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.x86_64", + "kernelrelease": "5.4.181-99.354.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/0ef679c541248c280c399713de25904ffb74019085ace5ad397a1d24cf20b839/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm" ] } ], @@ -1819,7 +1851,7 @@ "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm" ] }, { @@ -1827,7 +1859,7 @@ "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" ] }, { @@ -1835,7 +1867,7 @@ "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" ] }, { @@ -1851,7 +1883,7 @@ "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" ] }, { @@ -1867,7 +1899,7 @@ "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" ] }, { @@ -1883,7 +1915,7 @@ "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" ] }, { @@ -1891,7 +1923,7 @@ "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" ] }, { @@ -1899,7 +1931,7 @@ "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" ] }, { @@ -1907,7 +1939,7 @@ "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" ] }, { @@ -1947,7 +1979,7 @@ "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" ] }, { @@ -3754,26 +3786,26 @@ }, { "kernelversion": 1, - "kernelrelease": "5.17.11-100.fc34.x86_64", + "kernelrelease": "5.17.12-100.fc34.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.17.11-100.fc34.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.17.12-100.fc34.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.11-200.fc35.x86_64", + "kernelrelease": "5.17.12-200.fc35.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.17.11-200.fc35.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.17.12-200.fc35.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.11-300.fc36.x86_64", + "kernelrelease": "5.17.12-300.fc36.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.17.11-300.fc36.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.17.12-300.fc36.x86_64.rpm" ] } ], @@ -7684,6 +7716,14 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.5.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.6.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.6.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.14.35-1902.305.4.1.el7uek.x86_64", @@ -8228,6 +8268,14 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.2.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.513.2.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.3.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.14.35-2047.513.2.el7uek.x86_64", @@ -8516,6 +8564,14 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.62.3.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.63.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.63.2.1.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "3.8.13-118.10.2.el7uek.x86_64", @@ -10205,6 +10261,14 @@ "headers": [ "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.5.el8uek.x86_64.rpm" ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.307.3.6.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.6.el8uek.x86_64.rpm" + ] } ], "PhotonOS": [ @@ -10221,7 +10285,7 @@ "kernelrelease": "4.19.15-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-devel-4.19.15-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-2.ph3.x86_64.rpm" ] }, { @@ -10229,7 +10293,7 @@ "kernelrelease": "4.19.15-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-1.ph3.x86_64.rpm" ] }, { @@ -10245,7 +10309,7 @@ "kernelrelease": "4.19.104-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-3.ph3.x86_64.rpm" ] }, { @@ -10261,7 +10325,7 @@ "kernelrelease": "4.19.115-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-1.ph3.x86_64.rpm" ] }, { @@ -10293,7 +10357,7 @@ "kernelrelease": "4.19.115-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-5.ph3.x86_64.rpm" ] }, { @@ -10301,7 +10365,7 @@ "kernelrelease": "4.19.115-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-6.ph3.x86_64.rpm" ] }, { @@ -10333,7 +10397,7 @@ "kernelrelease": "4.19.124-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-2.ph3.x86_64.rpm" ] }, { @@ -10341,7 +10405,7 @@ "kernelrelease": "4.19.126-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.126-1.ph3.x86_64.rpm" ] }, { @@ -10357,7 +10421,7 @@ "kernelrelease": "4.19.129-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.129-1.ph3.x86_64.rpm" ] }, { @@ -10381,7 +10445,7 @@ "kernelrelease": "4.19.132-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm" ] }, { @@ -10405,7 +10469,7 @@ "kernelrelease": "4.19.132-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" ] }, { @@ -10445,7 +10509,7 @@ "kernelrelease": "4.19.145-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-1.ph3.x86_64.rpm" ] }, { @@ -10453,7 +10517,7 @@ "kernelrelease": "4.19.145-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-2.ph3.x86_64.rpm" ] }, { @@ -10461,7 +10525,7 @@ "kernelrelease": "4.19.145-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-4.ph3.x86_64.rpm" ] }, { @@ -10469,7 +10533,7 @@ "kernelrelease": "4.19.148-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-1.ph3.x86_64.rpm" ] }, { @@ -10501,7 +10565,7 @@ "kernelrelease": "4.19.148-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-5.ph3.x86_64.rpm" ] }, { @@ -10517,7 +10581,7 @@ "kernelrelease": "4.19.150-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.150-1.ph3.x86_64.rpm" ] }, { @@ -10525,7 +10589,7 @@ "kernelrelease": "4.19.154-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-1.ph3.x86_64.rpm" ] }, { @@ -10549,7 +10613,7 @@ "kernelrelease": "4.19.154-8.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-8.ph3.x86_64.rpm" ] }, { @@ -10565,7 +10629,7 @@ "kernelrelease": "4.19.160-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-2.ph3.x86_64.rpm" ] }, { @@ -10573,7 +10637,7 @@ "kernelrelease": "4.19.160-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-4.ph3.x86_64.rpm" ] }, { @@ -10605,7 +10669,7 @@ "kernelrelease": "4.19.164-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-2.ph3.x86_64.rpm" ] }, { @@ -10613,7 +10677,7 @@ "kernelrelease": "4.19.174-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-2.ph3.x86_64.rpm" ] }, { @@ -10637,7 +10701,7 @@ "kernelrelease": "4.19.177-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.177-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.177-1.ph3.x86_64.rpm" ] }, { @@ -10645,7 +10709,7 @@ "kernelrelease": "4.19.177-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" ] }, { @@ -10653,7 +10717,7 @@ "kernelrelease": "4.19.182-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-1.ph3.x86_64.rpm" ] }, { @@ -10661,7 +10725,7 @@ "kernelrelease": "4.19.182-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-2.ph3.x86_64.rpm" ] }, { @@ -10669,7 +10733,7 @@ "kernelrelease": "4.19.186-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-1.ph3.x86_64.rpm" ] }, { @@ -10677,7 +10741,7 @@ "kernelrelease": "4.19.186-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-2.ph3.x86_64.rpm" ] }, { @@ -10685,7 +10749,7 @@ "kernelrelease": "4.19.186-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-3.ph3.x86_64.rpm" ] }, { @@ -10701,7 +10765,7 @@ "kernelrelease": "4.19.189-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" ] }, { @@ -10709,7 +10773,7 @@ "kernelrelease": "4.19.189-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-3.ph3.x86_64.rpm" ] }, { @@ -10717,7 +10781,7 @@ "kernelrelease": "4.19.189-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" ] }, { @@ -10733,7 +10797,7 @@ "kernelrelease": "4.19.190-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.190-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.190-1.ph3.x86_64.rpm" ] }, { @@ -10741,7 +10805,7 @@ "kernelrelease": "4.19.190-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" ] }, { @@ -10749,7 +10813,7 @@ "kernelrelease": "4.19.190-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-3.ph3.x86_64.rpm" ] }, { @@ -10757,7 +10821,7 @@ "kernelrelease": "4.19.191-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-1.ph3.x86_64.rpm" ] }, { @@ -10765,7 +10829,7 @@ "kernelrelease": "4.19.191-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-2.ph3.x86_64.rpm" ] }, { @@ -10773,7 +10837,7 @@ "kernelrelease": "4.19.191-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-3.ph3.x86_64.rpm" ] }, { @@ -10781,7 +10845,7 @@ "kernelrelease": "4.19.198-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.198-1.ph3.x86_64.rpm" ] }, { @@ -10797,7 +10861,7 @@ "kernelrelease": "4.19.198-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-3.ph3.x86_64.rpm" ] }, { @@ -10813,7 +10877,7 @@ "kernelrelease": "4.19.205-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.205-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.205-1.ph3.x86_64.rpm" ] }, { @@ -10821,7 +10885,7 @@ "kernelrelease": "4.19.208-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.208-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.208-1.ph3.x86_64.rpm" ] }, { @@ -10829,7 +10893,7 @@ "kernelrelease": "4.19.214-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-3.ph3.x86_64.rpm" ] }, { @@ -10845,7 +10909,7 @@ "kernelrelease": "4.19.217-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm" ] }, { @@ -10869,7 +10933,7 @@ "kernelrelease": "4.19.219-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-4.ph3.x86_64.rpm" ] }, { @@ -10877,7 +10941,7 @@ "kernelrelease": "4.19.219-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-5.ph3.x86_64.rpm" ] }, { @@ -10885,7 +10949,7 @@ "kernelrelease": "4.19.224-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-1.ph3.x86_64.rpm" ] }, { @@ -10893,7 +10957,7 @@ "kernelrelease": "4.19.224-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-2.ph3.x86_64.rpm" ] }, { @@ -10901,7 +10965,7 @@ "kernelrelease": "4.19.225-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-3.ph3.x86_64.rpm" ] }, { @@ -10917,7 +10981,7 @@ "kernelrelease": "4.19.229-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.229-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-1.ph3.x86_64.rpm" ] }, { @@ -10941,7 +11005,7 @@ "kernelrelease": "4.19.232-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-1.ph3.x86_64.rpm" ] }, { @@ -10949,7 +11013,7 @@ "kernelrelease": "4.19.232-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-2.ph3.x86_64.rpm" ] }, { @@ -10957,7 +11021,7 @@ "kernelrelease": "4.19.232-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm" ] }, { @@ -10973,7 +11037,7 @@ "kernelrelease": "4.19.241-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.241-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.241-1.ph3.x86_64.rpm" ] }, { @@ -10989,7 +11053,7 @@ "kernelrelease": "4.19.245-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.245-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.245-1.ph3.x86_64.rpm" ] }, { @@ -11021,7 +11085,7 @@ "kernelrelease": "4.19.40-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" ] }, { @@ -11061,7 +11125,7 @@ "kernelrelease": "4.19.69-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.69-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm" ] }, { @@ -11069,7 +11133,7 @@ "kernelrelease": "4.19.72-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-1.ph3.x86_64.rpm" ] }, { @@ -11077,7 +11141,7 @@ "kernelrelease": "4.19.72-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm" ] }, { @@ -11085,7 +11149,7 @@ "kernelrelease": "4.19.76-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-1.ph3.x86_64.rpm" ] }, { @@ -11101,7 +11165,7 @@ "kernelrelease": "4.19.79-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.79-1.ph3.x86_64.rpm" ] }, { @@ -11117,7 +11181,7 @@ "kernelrelease": "4.19.82-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.82-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm" ] }, { @@ -11141,7 +11205,7 @@ "kernelrelease": "4.19.87-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-1.ph3.x86_64.rpm" ] }, { @@ -11173,7 +11237,7 @@ "kernelrelease": "4.19.97-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm" ] }, { @@ -11181,7 +11245,7 @@ "kernelrelease": "4.19.97-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-3.ph3.x86_64.rpm" ] }, { @@ -11197,7 +11261,7 @@ "kernelrelease": "4.19.97-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-5.ph3.x86_64.rpm" ] }, { @@ -11213,7 +11277,7 @@ "kernelrelease": "4.19.115-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm" ] }, { @@ -11221,7 +11285,7 @@ "kernelrelease": "4.19.154-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-5.ph3.x86_64.rpm" ] }, { @@ -11237,7 +11301,7 @@ "kernelrelease": "4.19.160-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-1.ph3.x86_64.rpm" ] }, { @@ -11253,7 +11317,7 @@ "kernelrelease": "4.19.214-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.214-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-2.ph3.x86_64.rpm" ] }, { @@ -11269,7 +11333,7 @@ "kernelrelease": "4.19.225-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-5.ph3.x86_64.rpm" ] }, { @@ -11293,7 +11357,7 @@ "kernelrelease": "4.19.76-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-2.ph3.x86_64.rpm" ] }, { @@ -11349,7 +11413,7 @@ "kernelrelease": "4.19.191-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-4.ph3.x86_64.rpm" ] }, { @@ -11357,7 +11421,7 @@ "kernelrelease": "4.19.191-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm" ] }, { @@ -11376,6 +11440,14 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.241-4.ph3.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.245-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.245-2.ph3.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.154-7.ph3.x86_64", @@ -11405,7 +11477,7 @@ "kernelrelease": "1.4.0-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" ] }, { @@ -11413,7 +11485,7 @@ "kernelrelease": "5.10.103-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-1.ph4.x86_64.rpm" ] }, { @@ -11421,7 +11493,7 @@ "kernelrelease": "5.10.103-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-2.ph4.x86_64.rpm" ] }, { @@ -11437,7 +11509,7 @@ "kernelrelease": "5.10.103-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-4.ph4.x86_64.rpm" ] }, { @@ -11445,7 +11517,7 @@ "kernelrelease": "5.10.109-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-2.ph4.x86_64.rpm" ] }, { @@ -11453,7 +11525,15 @@ "kernelrelease": "5.10.109-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-3.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.109-4.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-4.ph4.x86_64.rpm" ] }, { @@ -11477,7 +11557,7 @@ "kernelrelease": "5.10.25-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-2.ph4.x86_64.rpm" ] }, { @@ -11485,7 +11565,7 @@ "kernelrelease": "5.10.25-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-3.ph4.x86_64.rpm" ] }, { @@ -11501,7 +11581,7 @@ "kernelrelease": "5.10.25-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-6.ph4.x86_64.rpm" ] }, { @@ -11509,7 +11589,7 @@ "kernelrelease": "5.10.25-7.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-7.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-7.ph4.x86_64.rpm" ] }, { @@ -11517,7 +11597,7 @@ "kernelrelease": "5.10.25-9.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-9.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-9.ph4.x86_64.rpm" ] }, { @@ -11525,7 +11605,7 @@ "kernelrelease": "5.10.35-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-1.ph4.x86_64.rpm" ] }, { @@ -11533,7 +11613,7 @@ "kernelrelease": "5.10.35-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm" ] }, { @@ -11541,7 +11621,7 @@ "kernelrelease": "5.10.35-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-3.ph4.x86_64.rpm" ] }, { @@ -11565,7 +11645,7 @@ "kernelrelease": "5.10.42-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-1.ph4.x86_64.rpm" ] }, { @@ -11605,7 +11685,7 @@ "kernelrelease": "5.10.52-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.52-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.52-1.ph4.x86_64.rpm" ] }, { @@ -11621,7 +11701,7 @@ "kernelrelease": "5.10.61-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-1.ph4.x86_64.rpm" ] }, { @@ -11629,7 +11709,7 @@ "kernelrelease": "5.10.61-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-2.ph4.x86_64.rpm" ] }, { @@ -11637,7 +11717,7 @@ "kernelrelease": "5.10.75-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.75-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.75-1.ph4.x86_64.rpm" ] }, { @@ -11645,7 +11725,7 @@ "kernelrelease": "5.10.78-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-1.ph4.x86_64.rpm" ] }, { @@ -11669,7 +11749,7 @@ "kernelrelease": "5.10.83-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-2.ph4.x86_64.rpm" ] }, { @@ -11693,7 +11773,7 @@ "kernelrelease": "5.10.83-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-5.ph4.x86_64.rpm" ] }, { @@ -11725,7 +11805,7 @@ "kernelrelease": "5.10.93-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-3.ph4.x86_64.rpm" ] }, { @@ -11733,7 +11813,7 @@ "kernelrelease": "5.10.93-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm" ] }, { @@ -11741,7 +11821,7 @@ "kernelrelease": "5.10.93-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-5.ph4.x86_64.rpm" ] }, { @@ -11773,7 +11853,7 @@ "kernelrelease": "5.10.42-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" ] }, { @@ -11872,56 +11952,10 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-amd64_5.17.3-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.9-2~bpo11+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-common_5.14.9-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-cloud-amd64_5.14.9-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.14.0-0.bpo.2-amd64_5.14.9-2~bpo11+1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.5-2~bpo11+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-rt-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common_5.15.5-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-cloud-amd64_5.15.5-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.2-common-rt_5.15.5-2~bpo11+1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.15-2~bpo11+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common-rt_5.15.15-2~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-rt-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-cloud-amd64_5.15.15-2~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.15.0-0.bpo.3-common_5.15.15-2~bpo11+1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.16.11-1~bpo11+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-cloud-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-rt-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common-rt_5.16.11-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-amd64_5.16.11-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.3-common_5.16.11-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-amd64_5.17.3-1_amd64.deb" ] }, { @@ -11929,11 +11963,11 @@ "kernelrelease": "5.16.12-1~bpo11+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb" ] }, { @@ -11941,11 +11975,11 @@ "kernelrelease": "5.10.113-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb" ] }, { @@ -11953,10 +11987,10 @@ "kernelrelease": "5.10.84-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb" ] }, @@ -11965,23 +11999,11 @@ "kernelrelease": "5.10.106-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.92-1~bpo10+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-rt-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-amd64_5.10.92-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common-rt_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-common_5.10.92-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.11-cloud-amd64_5.10.92-1~bpo10+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb" ] }, { @@ -11989,23 +12011,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.70-1~bpo10+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common-rt_5.10.70-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-cloud-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-rt-amd64_5.10.70-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.9-common_5.10.70-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb" ] }, { @@ -12013,11 +12023,11 @@ "kernelrelease": "4.19.208-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb" ] }, { @@ -12025,23 +12035,11 @@ "kernelrelease": "4.19.235-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18-1~exp1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-cloud-amd64_5.18-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-rt-amd64_5.18-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common-rt_5.18-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-common_5.18-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-trunk-amd64_5.18-1~exp1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb" ] }, { @@ -12049,20 +12047,20 @@ "kernelrelease": "3.16.56-1+deb8u1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.11-1-amd64", + "kernelrelease": "5.18.2-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common_5.17.11-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-common-rt_5.17.11-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-rt-amd64_5.17.11-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-amd64_5.17.11-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-3-cloud-amd64_5.17.11-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-amd64_5.18.2-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-amd64_5.18.2-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-amd64_5.18.2-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb" ] }, { @@ -12070,11 +12068,11 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" ] }, { @@ -12091,10 +12089,10 @@ "kernelrelease": "4.9.228-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb" ] }, { @@ -12109,16 +12107,28 @@ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.10.120-1-amd64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.232-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" ] }, { @@ -12144,8 +12154,8 @@ "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb" ] @@ -12155,8 +12165,8 @@ "kernelrelease": "4.9.210-1+deb9u1~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" ] @@ -12166,10 +12176,10 @@ "kernelrelease": "4.9.303-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb" ] }, { @@ -12177,11 +12187,11 @@ "kernelrelease": "4.19.232-1~deb9u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb" ] } ], @@ -12192,8 +12202,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb" ] }, @@ -12203,9 +12213,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" ] }, { @@ -12213,9 +12223,9 @@ "kernelrelease": "4.15.0-1093-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb" ] }, @@ -12225,31 +12235,20 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb" ] }, - { - "kernelversion": "105", - "kernelrelease": "4.15.0-1096-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1096-oracle_4.15.0-1096.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1096_4.15.0-1096.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1096_4.15.0-1096.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1096-oracle_4.15.0-1096.105_amd64.deb" - ] - }, { "kernelversion": "105", "kernelrelease": "4.15.0-1103-kvm", "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" ] }, { @@ -12257,10 +12256,10 @@ "kernelrelease": "4.15.0-1104-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb" ] }, { @@ -12280,9 +12279,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" ] }, { @@ -12292,8 +12291,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb" ] }, { @@ -12301,10 +12300,10 @@ "kernelrelease": "4.15.0-1111-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb" ] }, { @@ -12312,10 +12311,10 @@ "kernelrelease": "4.15.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" ] }, { @@ -12323,10 +12322,10 @@ "kernelrelease": "4.15.0-1113-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" ] }, { @@ -12334,10 +12333,10 @@ "kernelrelease": "4.15.0-1113-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" ] }, { @@ -12356,9 +12355,9 @@ "kernelrelease": "4.15.0-1115-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" ] }, @@ -12367,10 +12366,10 @@ "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" ] }, { @@ -12378,8 +12377,8 @@ "kernelrelease": "4.15.0-1116-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" ] @@ -12390,9 +12389,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" ] }, { @@ -12400,10 +12399,10 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" ] }, { @@ -12411,21 +12410,10 @@ "kernelrelease": "4.15.0-1117-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "4.15.0-1117-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1117_4.15.0-1117.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1117-kvm_4.15.0-1117.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1117_4.15.0-1117.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1117-kvm_4.15.0-1117.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb" ] }, { @@ -12434,9 +12422,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" ] }, { @@ -12445,9 +12433,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" ] }, { @@ -12455,10 +12443,10 @@ "kernelrelease": "4.15.0-1121-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" ] }, { @@ -12466,10 +12454,10 @@ "kernelrelease": "4.15.0-1122-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb" ] }, { @@ -12477,10 +12465,10 @@ "kernelrelease": "4.15.0-1123-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb" ] }, { @@ -12489,9 +12477,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" ] }, { @@ -12499,21 +12487,10 @@ "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-1125-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1125-gcp_4.15.0-1125.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1125_4.15.0-1125.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1125_4.15.0-1125.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1125-gcp_4.15.0-1125.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb" ] }, { @@ -12522,9 +12499,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" ] }, { @@ -12532,10 +12509,10 @@ "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" ] }, { @@ -12545,8 +12522,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" ] }, { @@ -12554,21 +12531,10 @@ "kernelrelease": "4.15.0-1130-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "4.15.0-1131-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1131-aws_4.15.0-1131.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1131_4.15.0-1131.140_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb" ] }, { @@ -12576,10 +12542,10 @@ "kernelrelease": "4.15.0-1131-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb" ] }, { @@ -12587,10 +12553,10 @@ "kernelrelease": "4.15.0-1134-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" ] }, { @@ -12598,10 +12564,10 @@ "kernelrelease": "4.15.0-1135-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb" ] }, { @@ -12610,9 +12576,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" ] }, { @@ -12620,21 +12586,10 @@ "kernelrelease": "4.15.0-1139-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb" - ] - }, - { - "kernelversion": "153", - "kernelrelease": "4.15.0-1140-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1140-azure_4.15.0-1140.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1140-azure_4.15.0-1140.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1140_4.15.0-1140.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1140_4.15.0-1140.153_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb" ] }, { @@ -12642,12 +12597,12 @@ "kernelrelease": "4.15.0-167", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" ] }, { @@ -12655,12 +12610,12 @@ "kernelrelease": "4.15.0-168", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb" ] }, { @@ -12668,12 +12623,12 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" ] }, { @@ -12681,12 +12636,12 @@ "kernelrelease": "4.15.0-170", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb" ] }, { @@ -12694,12 +12649,12 @@ "kernelrelease": "4.15.0-172", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb" ] }, { @@ -12707,12 +12662,12 @@ "kernelrelease": "4.15.0-173", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb" ] }, { @@ -12720,12 +12675,12 @@ "kernelrelease": "4.15.0-174", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" ] }, { @@ -12734,11 +12689,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb" ] }, { @@ -12747,11 +12702,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb" ] }, { @@ -12759,11 +12714,11 @@ "kernelrelease": "4.15.0-179", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb" ] }, @@ -12772,12 +12727,12 @@ "kernelrelease": "4.15.0-180", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb" ] }, { @@ -12785,25 +12740,12 @@ "kernelrelease": "4.15.0-181", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb" - ] - }, - { - "kernelversion": "191", - "kernelrelease": "4.15.0-182", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182_4.15.0-182.191_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-generic_4.15.0-182.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182_4.15.0-182.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-generic_4.15.0-182.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-lowlatency_4.15.0-182.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-182-lowlatency_4.15.0-182.191_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb" ] }, { @@ -12811,10 +12753,10 @@ "kernelrelease": "5.0.0-1028-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" ] }, { @@ -12823,11 +12765,22 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "33~18.04.1", + "kernelrelease": "5.4.0-1032-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { @@ -12836,20 +12789,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -12858,20 +12811,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -12880,9 +12822,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -12890,10 +12832,10 @@ "kernelrelease": "5.4.0-1040-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb" ] }, { @@ -12902,20 +12844,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb" - ] - }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1044-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1044_5.4.0-1044.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1044-gkeop_5.4.0-1044.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1044_5.4.0-1044.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1044-gkeop_5.4.0-1044.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb" ] }, { @@ -12923,23 +12854,12 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb" ] }, { @@ -12947,21 +12867,21 @@ "kernelrelease": "5.4.0-1056-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" ] }, { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-gcp-5.4", + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1056-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { @@ -12969,10 +12889,21 @@ "kernelrelease": "5.4.0-1058-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1058-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb" ] }, { @@ -12980,45 +12911,45 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1060-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1060-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1061-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { @@ -13026,43 +12957,43 @@ "kernelrelease": "5.4.0-1061-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1061-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1062-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" ] }, { @@ -13071,8 +13002,8 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" ] }, @@ -13081,21 +13012,21 @@ "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1063-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" ] }, { @@ -13103,32 +13034,21 @@ "kernelrelease": "5.4.0-1063-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1063-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { @@ -13137,20 +13057,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { @@ -13158,10 +13078,21 @@ "kernelrelease": "5.4.0-1064-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { @@ -13169,32 +13100,32 @@ "kernelrelease": "5.4.0-1065-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1066-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { @@ -13202,10 +13133,10 @@ "kernelrelease": "5.4.0-1067-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" ] }, { @@ -13213,10 +13144,10 @@ "kernelrelease": "5.4.0-1068-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { @@ -13224,10 +13155,10 @@ "kernelrelease": "5.4.0-1068-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { @@ -13235,10 +13166,10 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" ] }, { @@ -13246,10 +13177,10 @@ "kernelrelease": "5.4.0-1069-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { @@ -13257,10 +13188,10 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" ] }, { @@ -13268,8 +13199,8 @@ "kernelrelease": "5.4.0-1069-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb" ] @@ -13279,9 +13210,9 @@ "kernelrelease": "5.4.0-1069-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" ] }, @@ -13290,10 +13221,10 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" ] }, { @@ -13301,9 +13232,9 @@ "kernelrelease": "5.4.0-1070-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" ] }, @@ -13312,9 +13243,9 @@ "kernelrelease": "5.4.0-1071-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb" ] }, @@ -13323,10 +13254,10 @@ "kernelrelease": "5.4.0-1071-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" ] }, { @@ -13336,8 +13267,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb" ] }, { @@ -13345,10 +13276,10 @@ "kernelrelease": "5.4.0-1071-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" ] }, { @@ -13358,8 +13289,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" ] }, { @@ -13367,10 +13298,10 @@ "kernelrelease": "5.4.0-1073-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" ] }, { @@ -13378,45 +13309,12 @@ "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" ] }, - { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1073-gke_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1073-gke_5.4.0-1073.78~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1074-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1074_5.4.0-1074.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1074_5.4.0-1074.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb" - ] - }, { "kernelversion": "80~18.04.1", "kernelrelease": "5.4.0-1075-gcp-5.4", @@ -13424,30 +13322,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb" ] }, { - "kernelversion": "81~18.04.1", - "kernelrelease": "5.4.0-1076-aws-5.4", + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1076-aws_5.4.0-1076.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1076-aws_5.4.0-1076.81~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_all.deb" - ] - }, - { - "kernelversion": "81~18.04.1", - "kernelrelease": "5.4.0-1076-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1076_5.4.0-1076.81~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb" ] }, { @@ -13455,10 +13342,10 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb" ] }, { @@ -13466,9 +13353,9 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb" ] }, @@ -13478,9 +13365,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" ] }, { @@ -13488,36 +13375,25 @@ "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb" ] }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1081-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1081_5.4.0-1081.84~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1081-azure_5.4.0-1081.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1081_5.4.0-1081.84~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1081-azure_5.4.0-1081.84~18.04.1_amd64.deb" - ] - }, { "kernelversion": "124~18.04.1", "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" ] }, { @@ -13525,25 +13401,12 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "129~18.04.1", - "kernelrelease": "5.4.0-115-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-115_5.4.0-115.129~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-generic_5.4.0-115.129~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-115_5.4.0-115.129~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb" ] }, { @@ -13551,12 +13414,12 @@ "kernelrelease": "5.4.0-91-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb" ] }, { @@ -13564,12 +13427,12 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" ] }, { @@ -13577,12 +13440,12 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb" ] }, { @@ -13590,9 +13453,9 @@ "kernelrelease": "4.15.0-1006-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" ] }, @@ -13601,9 +13464,9 @@ "kernelrelease": "4.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" ] }, @@ -13612,9 +13475,9 @@ "kernelrelease": "4.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb" ] }, @@ -13623,9 +13486,9 @@ "kernelrelease": "4.15.0-1008-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" ] }, @@ -13640,26 +13503,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb" ] }, - { - "kernelversion": "9", - "kernelrelease": "4.15.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb" - ] - }, { "kernelversion": "9", "kernelrelease": "4.15.0-1009-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" ] }, { @@ -13667,21 +13519,32 @@ "kernelrelease": "4.15.0-1009-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" ] }, + { + "kernelversion": "9", + "kernelrelease": "4.15.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" + ] + }, { "kernelversion": "12", "kernelrelease": "4.15.0-1009-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" ] }, { @@ -13689,10 +13552,10 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" ] }, { @@ -13700,12 +13563,12 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" ] }, { @@ -13713,10 +13576,10 @@ "kernelrelease": "4.15.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" ] }, { @@ -13724,9 +13587,9 @@ "kernelrelease": "4.15.0-1010-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb" ] }, @@ -13735,10 +13598,10 @@ "kernelrelease": "4.15.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" ] }, { @@ -13747,31 +13610,31 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" ] }, { @@ -13779,10 +13642,10 @@ "kernelrelease": "4.15.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb" ] }, { @@ -13791,9 +13654,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" ] }, { @@ -13803,8 +13666,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" ] }, { @@ -13814,8 +13677,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb" ] }, { @@ -13824,9 +13687,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb" ] }, { @@ -13834,32 +13697,32 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1014-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb" ] }, { @@ -13867,10 +13730,10 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb" ] }, { @@ -13879,9 +13742,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" ] }, { @@ -13889,9 +13752,9 @@ "kernelrelease": "4.15.0-1015-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" ] }, @@ -13900,10 +13763,21 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" + ] + }, + { + "kernelversion": "16", + "kernelrelease": "4.15.0-1016-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" ] }, { @@ -13911,21 +13785,21 @@ "kernelrelease": "4.15.0-1016-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "4.15.0-1016-aws", + "kernelversion": "17", + "kernelrelease": "4.15.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb" ] }, { @@ -13934,20 +13808,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "4.15.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb" ] }, { @@ -13955,10 +13818,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" ] }, { @@ -13966,10 +13829,10 @@ "kernelrelease": "4.15.0-1017-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" ] }, { @@ -13977,10 +13840,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" ] }, { @@ -13988,10 +13851,10 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb" ] }, { @@ -13999,8 +13862,8 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" ] @@ -14010,9 +13873,9 @@ "kernelrelease": "4.15.0-1018-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" ] }, @@ -14021,21 +13884,21 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb" ] }, { @@ -14043,21 +13906,21 @@ "kernelrelease": "4.15.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" ] }, { @@ -14066,9 +13929,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb" ] }, { @@ -14076,10 +13939,10 @@ "kernelrelease": "4.15.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb" ] }, { @@ -14087,21 +13950,10 @@ "kernelrelease": "4.15.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { @@ -14109,10 +13961,10 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" ] }, { @@ -14120,10 +13972,21 @@ "kernelrelease": "4.15.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { @@ -14131,10 +13994,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" ] }, { @@ -14142,10 +14005,10 @@ "kernelrelease": "4.15.0-1021-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" ] }, { @@ -14154,8 +14017,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" ] }, @@ -14164,10 +14027,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" ] }, { @@ -14186,10 +14049,10 @@ "kernelrelease": "4.15.0-1023-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb" ] }, { @@ -14197,10 +14060,10 @@ "kernelrelease": "4.15.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" ] }, { @@ -14208,10 +14071,10 @@ "kernelrelease": "4.15.0-1023-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" ] }, { @@ -14219,10 +14082,10 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" ] }, { @@ -14231,9 +14094,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb" ] }, { @@ -14241,10 +14104,10 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" ] }, { @@ -14253,9 +14116,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" ] }, { @@ -14264,8 +14127,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" ] }, @@ -14274,10 +14137,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" ] }, { @@ -14285,10 +14148,10 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" ] }, { @@ -14296,10 +14159,10 @@ "kernelrelease": "4.15.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb" ] }, { @@ -14307,10 +14170,10 @@ "kernelrelease": "4.15.0-1026-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" ] }, { @@ -14318,10 +14181,10 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb" ] }, { @@ -14329,10 +14192,10 @@ "kernelrelease": "4.15.0-1027-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, { @@ -14340,10 +14203,10 @@ "kernelrelease": "4.15.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" ] }, { @@ -14351,10 +14214,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" ] }, { @@ -14362,10 +14225,10 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb" ] }, { @@ -14373,10 +14236,10 @@ "kernelrelease": "4.15.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb" ] }, { @@ -14384,9 +14247,9 @@ "kernelrelease": "4.15.0-1028-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" ] }, @@ -14395,8 +14258,8 @@ "kernelrelease": "4.15.0-1028-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb" ] @@ -14406,9 +14269,9 @@ "kernelrelease": "4.15.0-1028-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" ] }, @@ -14417,10 +14280,10 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb" ] }, { @@ -14429,9 +14292,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" ] }, { @@ -14439,10 +14302,10 @@ "kernelrelease": "4.15.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" ] }, { @@ -14450,10 +14313,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" ] }, { @@ -14461,10 +14324,10 @@ "kernelrelease": "4.15.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" ] }, { @@ -14472,8 +14335,8 @@ "kernelrelease": "4.15.0-1030-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" ] @@ -14483,10 +14346,10 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" ] }, { @@ -14494,10 +14357,10 @@ "kernelrelease": "4.15.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" ] }, { @@ -14505,10 +14368,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" ] }, { @@ -14516,10 +14379,10 @@ "kernelrelease": "4.15.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" ] }, { @@ -14527,10 +14390,21 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" ] }, { @@ -14538,10 +14412,10 @@ "kernelrelease": "4.15.0-1032-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb" ] }, { @@ -14550,20 +14424,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { @@ -14582,32 +14445,32 @@ "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1033-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1033-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" ] }, { @@ -14615,10 +14478,10 @@ "kernelrelease": "4.15.0-1033-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb" ] }, { @@ -14626,32 +14489,32 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-1034-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1034-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-1034-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1034-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" ] }, { @@ -14670,10 +14533,10 @@ "kernelrelease": "4.15.0-1034-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb" ] }, { @@ -14681,10 +14544,10 @@ "kernelrelease": "4.15.0-1034-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" ] }, { @@ -14692,10 +14555,10 @@ "kernelrelease": "4.15.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" ] }, { @@ -14704,9 +14567,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb" ] }, { @@ -14714,10 +14577,10 @@ "kernelrelease": "4.15.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" ] }, { @@ -14725,10 +14588,10 @@ "kernelrelease": "4.15.0-1035-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" ] }, { @@ -14737,9 +14600,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" ] }, { @@ -14747,9 +14610,9 @@ "kernelrelease": "4.15.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" ] }, @@ -14758,10 +14621,10 @@ "kernelrelease": "4.15.0-1036-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb" ] }, { @@ -14780,21 +14643,21 @@ "kernelrelease": "4.15.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1037-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb" ] }, { @@ -14803,9 +14666,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb" ] }, { @@ -14821,13 +14684,13 @@ }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" ] }, { @@ -14835,10 +14698,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb" ] }, { @@ -14846,10 +14709,10 @@ "kernelrelease": "4.15.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb" ] }, { @@ -14857,10 +14720,10 @@ "kernelrelease": "4.15.0-1038-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb" ] }, { @@ -14868,10 +14731,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" ] }, { @@ -14879,10 +14742,10 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" ] }, { @@ -14891,9 +14754,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" ] }, { @@ -14901,10 +14764,10 @@ "kernelrelease": "4.15.0-1039-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb" ] }, { @@ -14912,10 +14775,10 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb" ] }, { @@ -14923,10 +14786,10 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] }, { @@ -14934,32 +14797,32 @@ "kernelrelease": "4.15.0-1040-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1040-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1040-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" ] }, { @@ -14968,31 +14831,31 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1041-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb" ] }, { @@ -15000,32 +14863,32 @@ "kernelrelease": "4.15.0-1042-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1042-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1042-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" ] }, { @@ -15033,10 +14896,10 @@ "kernelrelease": "4.15.0-1042-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb" ] }, { @@ -15044,10 +14907,10 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" ] }, { @@ -15055,9 +14918,9 @@ "kernelrelease": "4.15.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb" ] }, @@ -15066,10 +14929,21 @@ "kernelrelease": "4.15.0-1043-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "4.15.0-1044-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" ] }, { @@ -15079,8 +14953,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { @@ -15088,21 +14962,10 @@ "kernelrelease": "4.15.0-1044-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" ] }, { @@ -15110,10 +14973,10 @@ "kernelrelease": "4.15.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb" ] }, { @@ -15122,8 +14985,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb" ] }, @@ -15132,10 +14995,10 @@ "kernelrelease": "4.15.0-1045-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" ] }, { @@ -15143,10 +15006,10 @@ "kernelrelease": "4.15.0-1045-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" ] }, { @@ -15155,31 +15018,31 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-1045-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1045-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-1045-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1045-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" ] }, { @@ -15188,9 +15051,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" ] }, { @@ -15198,10 +15061,10 @@ "kernelrelease": "4.15.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" ] }, { @@ -15209,10 +15072,10 @@ "kernelrelease": "4.15.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" ] }, { @@ -15220,10 +15083,10 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" ] }, { @@ -15231,10 +15094,10 @@ "kernelrelease": "4.15.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" ] }, { @@ -15243,9 +15106,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" ] }, { @@ -15253,10 +15116,10 @@ "kernelrelease": "4.15.0-1047-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" ] }, { @@ -15264,9 +15127,9 @@ "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" ] }, @@ -15275,10 +15138,10 @@ "kernelrelease": "4.15.0-1048-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" ] }, { @@ -15286,9 +15149,9 @@ "kernelrelease": "4.15.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb" ] }, @@ -15297,10 +15160,10 @@ "kernelrelease": "4.15.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb" ] }, { @@ -15308,10 +15171,10 @@ "kernelrelease": "4.15.0-1049-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] }, { @@ -15319,10 +15182,10 @@ "kernelrelease": "4.15.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] }, { @@ -15330,32 +15193,32 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1050-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1050-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" ] }, { @@ -15363,10 +15226,10 @@ "kernelrelease": "4.15.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" ] }, { @@ -15374,10 +15237,10 @@ "kernelrelease": "4.15.0-1050-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb" ] }, { @@ -15385,10 +15248,10 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" ] }, { @@ -15396,10 +15259,10 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { @@ -15408,9 +15271,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" ] }, { @@ -15418,10 +15281,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" ] }, { @@ -15429,10 +15292,10 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" ] }, { @@ -15452,9 +15315,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" ] }, { @@ -15462,9 +15325,9 @@ "kernelrelease": "4.15.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" ] }, @@ -15473,10 +15336,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb" ] }, { @@ -15486,8 +15349,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" ] }, { @@ -15495,10 +15358,10 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" ] }, { @@ -15506,10 +15369,10 @@ "kernelrelease": "4.15.0-1055-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" ] }, { @@ -15517,9 +15380,9 @@ "kernelrelease": "4.15.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" ] }, @@ -15528,8 +15391,8 @@ "kernelrelease": "4.15.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" ] @@ -15539,9 +15402,9 @@ "kernelrelease": "4.15.0-1056-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" ] }, @@ -15550,10 +15413,10 @@ "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb" ] }, { @@ -15561,9 +15424,9 @@ "kernelrelease": "4.15.0-1057-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb" ] }, @@ -15574,19 +15437,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.15.0-1057-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" ] }, { @@ -15600,15 +15452,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" ] }, + { + "kernelversion": "62", + "kernelrelease": "4.15.0-1057-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" + ] + }, { "kernelversion": "60", "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb" ] }, { @@ -15616,10 +15479,10 @@ "kernelrelease": "4.15.0-1058-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" ] }, { @@ -15629,8 +15492,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb" ] }, { @@ -15640,8 +15503,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" ] }, { @@ -15649,10 +15512,10 @@ "kernelrelease": "4.15.0-1059-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb" ] }, { @@ -15660,9 +15523,9 @@ "kernelrelease": "4.15.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb" ] }, @@ -15671,10 +15534,10 @@ "kernelrelease": "4.15.0-1059-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" ] }, { @@ -15682,12 +15545,12 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb" ] }, { @@ -15707,9 +15570,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" ] }, { @@ -15717,10 +15580,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" ] }, { @@ -15728,10 +15591,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" ] }, { @@ -15739,10 +15602,10 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] }, { @@ -15750,10 +15613,10 @@ "kernelrelease": "4.15.0-1063-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" ] }, { @@ -15761,9 +15624,9 @@ "kernelrelease": "4.15.0-1063-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" ] }, @@ -15772,10 +15635,10 @@ "kernelrelease": "4.15.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" ] }, { @@ -15784,9 +15647,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" ] }, { @@ -15794,10 +15657,10 @@ "kernelrelease": "4.15.0-1064-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" ] }, { @@ -15805,10 +15668,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" ] }, { @@ -15816,9 +15679,9 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, @@ -15827,9 +15690,9 @@ "kernelrelease": "4.15.0-1065-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb" ] }, @@ -15838,10 +15701,10 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb" ] }, { @@ -15860,10 +15723,10 @@ "kernelrelease": "4.15.0-1066-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb" ] }, { @@ -15871,10 +15734,10 @@ "kernelrelease": "4.15.0-1066-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" ] }, { @@ -15883,9 +15746,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" ] }, { @@ -15893,10 +15756,10 @@ "kernelrelease": "4.15.0-1067-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" ] }, { @@ -15904,10 +15767,10 @@ "kernelrelease": "4.15.0-1067-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" ] }, { @@ -15915,8 +15778,8 @@ "kernelrelease": "4.15.0-1067-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb" ] @@ -15926,10 +15789,10 @@ "kernelrelease": "4.15.0-1067-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb" ] }, { @@ -15937,10 +15800,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" ] }, { @@ -15949,8 +15812,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" ] }, @@ -15961,8 +15824,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" ] }, { @@ -15970,10 +15833,10 @@ "kernelrelease": "4.15.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" ] }, { @@ -15981,10 +15844,10 @@ "kernelrelease": "4.15.0-1069-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb" ] }, { @@ -15992,10 +15855,10 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb" ] }, { @@ -16003,10 +15866,10 @@ "kernelrelease": "4.15.0-1070-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" ] }, { @@ -16014,10 +15877,10 @@ "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" ] }, { @@ -16025,8 +15888,8 @@ "kernelrelease": "4.15.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" ] @@ -16036,10 +15899,10 @@ "kernelrelease": "4.15.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" ] }, { @@ -16047,10 +15910,10 @@ "kernelrelease": "4.15.0-1072-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb" ] }, { @@ -16058,10 +15921,10 @@ "kernelrelease": "4.15.0-1072-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb" ] }, { @@ -16069,10 +15932,10 @@ "kernelrelease": "4.15.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb" ] }, { @@ -16082,8 +15945,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" ] }, { @@ -16092,9 +15955,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" ] }, { @@ -16102,10 +15965,10 @@ "kernelrelease": "4.15.0-1073-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" ] }, { @@ -16113,9 +15976,9 @@ "kernelrelease": "4.15.0-1074-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" ] }, @@ -16125,9 +15988,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" ] }, { @@ -16135,9 +15998,9 @@ "kernelrelease": "4.15.0-1075-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb" ] }, @@ -16147,9 +16010,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb" ] }, { @@ -16157,10 +16020,10 @@ "kernelrelease": "4.15.0-1076-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" ] }, { @@ -16169,9 +16032,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" ] }, { @@ -16179,9 +16042,9 @@ "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" ] }, @@ -16190,10 +16053,10 @@ "kernelrelease": "4.15.0-1077-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" ] }, { @@ -16201,10 +16064,10 @@ "kernelrelease": "4.15.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb" ] }, { @@ -16213,9 +16076,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" ] }, { @@ -16223,10 +16086,10 @@ "kernelrelease": "4.15.0-1078-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb" ] }, { @@ -16234,10 +16097,10 @@ "kernelrelease": "4.15.0-1078-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" ] }, { @@ -16246,9 +16109,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" ] }, { @@ -16256,9 +16119,9 @@ "kernelrelease": "4.15.0-1079-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" ] }, @@ -16267,10 +16130,10 @@ "kernelrelease": "4.15.0-1079-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" ] }, { @@ -16279,9 +16142,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb" ] }, { @@ -16289,12 +16152,12 @@ "kernelrelease": "4.15.0-108", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" ] }, { @@ -16302,9 +16165,9 @@ "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" ] }, @@ -16313,9 +16176,9 @@ "kernelrelease": "4.15.0-1080-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" ] }, @@ -16324,10 +16187,10 @@ "kernelrelease": "4.15.0-1080-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" ] }, { @@ -16335,9 +16198,9 @@ "kernelrelease": "4.15.0-1081-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb" ] }, @@ -16346,10 +16209,10 @@ "kernelrelease": "4.15.0-1081-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" ] }, { @@ -16358,8 +16221,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" ] }, @@ -16368,10 +16231,10 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" ] }, { @@ -16380,9 +16243,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" ] }, { @@ -16390,10 +16253,10 @@ "kernelrelease": "4.15.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" ] }, { @@ -16402,9 +16265,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb" ] }, { @@ -16413,8 +16276,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" ] }, @@ -16423,10 +16286,10 @@ "kernelrelease": "4.15.0-1083-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" ] }, { @@ -16434,10 +16297,10 @@ "kernelrelease": "4.15.0-1083-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb" ] }, { @@ -16445,9 +16308,9 @@ "kernelrelease": "4.15.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" ] }, @@ -16456,10 +16319,10 @@ "kernelrelease": "4.15.0-1084-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" ] }, { @@ -16467,10 +16330,10 @@ "kernelrelease": "4.15.0-1085-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb" ] }, { @@ -16478,9 +16341,9 @@ "kernelrelease": "4.15.0-1085-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" ] }, @@ -16489,9 +16352,9 @@ "kernelrelease": "4.15.0-1086-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" ] }, @@ -16500,9 +16363,9 @@ "kernelrelease": "4.15.0-1086-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" ] }, @@ -16511,10 +16374,10 @@ "kernelrelease": "4.15.0-1086-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" ] }, { @@ -16522,8 +16385,8 @@ "kernelrelease": "4.15.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb" ] @@ -16533,8 +16396,8 @@ "kernelrelease": "4.15.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" ] @@ -16544,10 +16407,10 @@ "kernelrelease": "4.15.0-1087-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb" ] }, { @@ -16555,10 +16418,10 @@ "kernelrelease": "4.15.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" ] }, { @@ -16577,10 +16440,10 @@ "kernelrelease": "4.15.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" ] }, { @@ -16588,10 +16451,10 @@ "kernelrelease": "4.15.0-1089-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" ] }, { @@ -16600,11 +16463,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb" ] }, { @@ -16612,10 +16475,10 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { @@ -16623,10 +16486,10 @@ "kernelrelease": "4.15.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" ] }, { @@ -16634,9 +16497,9 @@ "kernelrelease": "4.15.0-1090-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb" ] }, @@ -16645,10 +16508,10 @@ "kernelrelease": "4.15.0-1090-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb" ] }, { @@ -16656,10 +16519,10 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" ] }, { @@ -16667,10 +16530,10 @@ "kernelrelease": "4.15.0-1091-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb" ] }, { @@ -16678,10 +16541,10 @@ "kernelrelease": "4.15.0-1091-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, { @@ -16689,10 +16552,10 @@ "kernelrelease": "4.15.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" ] }, { @@ -16701,9 +16564,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb" ] }, { @@ -16711,10 +16574,10 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" ] }, { @@ -16722,10 +16585,10 @@ "kernelrelease": "4.15.0-1092-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb" ] }, { @@ -16733,10 +16596,10 @@ "kernelrelease": "4.15.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" ] }, { @@ -16744,10 +16607,10 @@ "kernelrelease": "4.15.0-1092-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" ] }, { @@ -16755,10 +16618,10 @@ "kernelrelease": "4.15.0-1093-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb" ] }, { @@ -16768,8 +16631,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb" ] }, { @@ -16778,9 +16641,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" ] }, { @@ -16789,9 +16652,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb" ] }, { @@ -16811,9 +16674,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" ] }, { @@ -16823,8 +16686,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" ] }, { @@ -16834,8 +16697,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" ] }, { @@ -16843,10 +16706,10 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" ] }, { @@ -16854,10 +16717,10 @@ "kernelrelease": "4.15.0-1095-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" ] }, { @@ -16866,9 +16729,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb" ] }, { @@ -16876,10 +16739,10 @@ "kernelrelease": "4.15.0-1095-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" ] }, { @@ -16887,10 +16750,10 @@ "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" ] }, { @@ -16898,10 +16761,10 @@ "kernelrelease": "4.15.0-1096-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" ] }, { @@ -16909,10 +16772,10 @@ "kernelrelease": "4.15.0-1096-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" ] }, { @@ -16920,10 +16783,10 @@ "kernelrelease": "4.15.0-1096-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" ] }, { @@ -16933,8 +16796,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" ] }, { @@ -16943,9 +16806,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" ] }, { @@ -16954,9 +16817,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" ] }, { @@ -16964,10 +16827,10 @@ "kernelrelease": "4.15.0-1097-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb" ] }, { @@ -16975,10 +16838,10 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" ] }, { @@ -16986,9 +16849,9 @@ "kernelrelease": "4.15.0-1098-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" ] }, @@ -16997,10 +16860,21 @@ "kernelrelease": "4.15.0-1098-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" + ] + }, + { + "kernelversion": "108", + "kernelrelease": "4.15.0-1098-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb" ] }, { @@ -17008,10 +16882,10 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb" ] }, { @@ -17021,8 +16895,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" ] }, { @@ -17030,10 +16904,10 @@ "kernelrelease": "4.15.0-1099-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" ] }, { @@ -17041,10 +16915,10 @@ "kernelrelease": "4.15.0-1099-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" ] }, { @@ -17052,10 +16926,10 @@ "kernelrelease": "4.15.0-1099-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb" ] }, { @@ -17063,10 +16937,10 @@ "kernelrelease": "4.15.0-1100-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb" ] }, { @@ -17074,10 +16948,10 @@ "kernelrelease": "4.15.0-1100-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" ] }, { @@ -17087,8 +16961,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" ] }, { @@ -17096,10 +16970,10 @@ "kernelrelease": "4.15.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb" ] }, { @@ -17107,10 +16981,10 @@ "kernelrelease": "4.15.0-1101-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" ] }, { @@ -17119,9 +16993,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" ] }, { @@ -17129,10 +17003,10 @@ "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" ] }, { @@ -17140,10 +17014,10 @@ "kernelrelease": "4.15.0-1102-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" ] }, { @@ -17151,8 +17025,8 @@ "kernelrelease": "4.15.0-1102-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" ] @@ -17162,10 +17036,10 @@ "kernelrelease": "4.15.0-1102-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" ] }, { @@ -17173,32 +17047,32 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1103-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1103-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1103-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1103-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { @@ -17206,10 +17080,10 @@ "kernelrelease": "4.15.0-1103-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb" ] }, { @@ -17217,9 +17091,9 @@ "kernelrelease": "4.15.0-1104-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" ] }, @@ -17228,10 +17102,10 @@ "kernelrelease": "4.15.0-1105-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" ] }, { @@ -17239,10 +17113,10 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" ] }, { @@ -17251,9 +17125,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb" ] }, { @@ -17261,8 +17135,8 @@ "kernelrelease": "4.15.0-1106-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" ] @@ -17272,10 +17146,10 @@ "kernelrelease": "4.15.0-1106-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" ] }, { @@ -17284,8 +17158,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" ] }, @@ -17294,10 +17168,10 @@ "kernelrelease": "4.15.0-1108-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" ] }, { @@ -17305,10 +17179,10 @@ "kernelrelease": "4.15.0-1108-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb" ] }, { @@ -17316,10 +17190,10 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb" ] }, { @@ -17327,10 +17201,10 @@ "kernelrelease": "4.15.0-1109-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" ] }, { @@ -17339,8 +17213,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" ] }, @@ -17349,10 +17223,10 @@ "kernelrelease": "4.15.0-1109-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb" ] }, { @@ -17360,12 +17234,12 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" ] }, { @@ -17373,9 +17247,9 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" ] }, @@ -17384,10 +17258,10 @@ "kernelrelease": "4.15.0-1110-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb" ] }, { @@ -17395,10 +17269,10 @@ "kernelrelease": "4.15.0-1110-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" ] }, { @@ -17406,9 +17280,9 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" ] }, @@ -17417,10 +17291,10 @@ "kernelrelease": "4.15.0-1111-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" ] }, { @@ -17428,10 +17302,10 @@ "kernelrelease": "4.15.0-1111-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb" ] }, { @@ -17439,10 +17313,10 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" ] }, { @@ -17451,8 +17325,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" ] }, @@ -17461,10 +17335,10 @@ "kernelrelease": "4.15.0-1112-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" ] }, { @@ -17472,10 +17346,10 @@ "kernelrelease": "4.15.0-1112-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" ] }, { @@ -17483,10 +17357,10 @@ "kernelrelease": "4.15.0-1113-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb" ] }, { @@ -17494,9 +17368,9 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb" ] }, @@ -17506,9 +17380,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" ] }, { @@ -17516,10 +17390,10 @@ "kernelrelease": "4.15.0-1114-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" ] }, { @@ -17527,10 +17401,10 @@ "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" ] }, { @@ -17538,10 +17412,10 @@ "kernelrelease": "4.15.0-1115-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" ] }, { @@ -17549,9 +17423,9 @@ "kernelrelease": "4.15.0-1115-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" ] }, @@ -17560,9 +17434,9 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" ] }, @@ -17571,10 +17445,10 @@ "kernelrelease": "4.15.0-1118-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" ] }, { @@ -17582,10 +17456,10 @@ "kernelrelease": "4.15.0-1118-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb" ] }, { @@ -17593,10 +17467,10 @@ "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" ] }, { @@ -17604,10 +17478,21 @@ "kernelrelease": "4.15.0-1119-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" + ] + }, + { + "kernelversion": "123", + "kernelrelease": "4.15.0-1119-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb" ] }, { @@ -17615,12 +17500,12 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb" ] }, { @@ -17628,10 +17513,10 @@ "kernelrelease": "4.15.0-1120-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" ] }, { @@ -17639,10 +17524,10 @@ "kernelrelease": "4.15.0-1121-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" ] }, { @@ -17651,9 +17536,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" ] }, { @@ -17661,10 +17546,10 @@ "kernelrelease": "4.15.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" ] }, { @@ -17672,8 +17557,8 @@ "kernelrelease": "4.15.0-1123-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" ] @@ -17683,10 +17568,10 @@ "kernelrelease": "4.15.0-1124-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb" ] }, { @@ -17694,10 +17579,10 @@ "kernelrelease": "4.15.0-1124-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb" ] }, { @@ -17707,8 +17592,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" ] }, { @@ -17716,10 +17601,10 @@ "kernelrelease": "4.15.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" ] }, { @@ -17727,10 +17612,10 @@ "kernelrelease": "4.15.0-1126-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" ] }, { @@ -17738,21 +17623,32 @@ "kernelrelease": "4.15.0-1127-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" ] }, + { + "kernelversion": "142", + "kernelrelease": "4.15.0-1127-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb" + ] + }, { "kernelversion": "142", "kernelrelease": "4.15.0-1129-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" ] }, { @@ -17761,9 +17657,20 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb" + ] + }, + { + "kernelversion": "143", + "kernelrelease": "4.15.0-1133-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" ] }, { @@ -17771,10 +17678,10 @@ "kernelrelease": "4.15.0-1133-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" ] }, { @@ -17782,9 +17689,9 @@ "kernelrelease": "4.15.0-1136-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb" ] }, @@ -17794,9 +17701,20 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb" + ] + }, + { + "kernelversion": "156", + "kernelrelease": "4.15.0-1142-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb" ] }, { @@ -17804,12 +17722,12 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb" ] }, { @@ -17817,12 +17735,12 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" ] }, { @@ -17830,11 +17748,11 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" ] }, @@ -17843,12 +17761,12 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" ] }, { @@ -17856,12 +17774,12 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" ] }, { @@ -17869,12 +17787,12 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb" ] }, { @@ -17882,12 +17800,12 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb" ] }, { @@ -17895,12 +17813,12 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" ] }, { @@ -17908,12 +17826,12 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" ] }, { @@ -17921,11 +17839,11 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb" ] }, @@ -17934,12 +17852,12 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb" ] }, { @@ -17947,12 +17865,12 @@ "kernelrelease": "4.15.0-136", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" ] }, { @@ -17960,12 +17878,12 @@ "kernelrelease": "4.15.0-137", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb" ] }, { @@ -17974,10 +17892,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" ] }, @@ -17986,12 +17904,12 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb" ] }, { @@ -17999,12 +17917,12 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb" ] }, { @@ -18012,12 +17930,12 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" ] }, { @@ -18025,12 +17943,12 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb" ] }, { @@ -18038,12 +17956,12 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" ] }, { @@ -18052,11 +17970,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb" ] }, { @@ -18064,12 +17982,12 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb" ] }, { @@ -18077,12 +17995,12 @@ "kernelrelease": "4.15.0-153", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb" ] }, { @@ -18090,11 +18008,11 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" ] }, @@ -18103,12 +18021,12 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" ] }, { @@ -18116,12 +18034,12 @@ "kernelrelease": "4.15.0-158", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" ] }, { @@ -18129,11 +18047,11 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb" ] }, @@ -18142,12 +18060,12 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" ] }, { @@ -18155,11 +18073,11 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" ] }, @@ -18168,12 +18086,12 @@ "kernelrelease": "4.15.0-163", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb" ] }, { @@ -18181,12 +18099,12 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb" ] }, { @@ -18196,9 +18114,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" ] }, @@ -18207,12 +18125,25 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + ] + }, + { + "kernelversion": "194", + "kernelrelease": "4.15.0-184", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb" ] }, { @@ -18222,9 +18153,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb" ] }, @@ -18233,11 +18164,11 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb" ] }, @@ -18247,11 +18178,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb" ] }, { @@ -18259,12 +18190,12 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb" ] }, { @@ -18272,12 +18203,12 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb" ] }, { @@ -18285,12 +18216,12 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" ] }, { @@ -18298,12 +18229,12 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb" ] }, { @@ -18311,12 +18242,12 @@ "kernelrelease": "4.15.0-34", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" ] }, { @@ -18324,12 +18255,12 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" ] }, { @@ -18337,12 +18268,12 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb" ] }, { @@ -18351,11 +18282,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb" ] }, { @@ -18363,12 +18294,12 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb" ] }, { @@ -18376,12 +18307,12 @@ "kernelrelease": "4.15.0-44", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" ] }, { @@ -18389,12 +18320,12 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb" ] }, { @@ -18402,12 +18333,12 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb" ] }, { @@ -18415,12 +18346,12 @@ "kernelrelease": "4.15.0-47", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb" ] }, { @@ -18428,12 +18359,12 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb" ] }, { @@ -18441,12 +18372,12 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" ] }, { @@ -18454,12 +18385,12 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" ] }, { @@ -18467,12 +18398,12 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" ] }, { @@ -18480,11 +18411,11 @@ "kernelrelease": "4.15.0-55", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" ] }, @@ -18493,12 +18424,12 @@ "kernelrelease": "4.15.0-58", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" ] }, { @@ -18507,11 +18438,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb" ] }, { @@ -18519,12 +18450,12 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" ] }, { @@ -18533,11 +18464,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb" ] }, { @@ -18546,11 +18477,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb" ] }, { @@ -18559,11 +18490,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" ] }, { @@ -18572,11 +18503,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" ] }, { @@ -18584,12 +18515,12 @@ "kernelrelease": "4.15.0-70", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb" ] }, { @@ -18597,12 +18528,12 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" ] }, { @@ -18610,12 +18541,12 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb" ] }, { @@ -18623,12 +18554,12 @@ "kernelrelease": "4.15.0-76", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb" ] }, { @@ -18636,11 +18567,11 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb" ] }, @@ -18649,12 +18580,12 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb" ] }, { @@ -18662,12 +18593,12 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb" ] }, { @@ -18676,11 +18607,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" ] }, { @@ -18688,10 +18619,10 @@ "kernelrelease": "4.18.0-1004-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb" ] }, { @@ -18699,10 +18630,10 @@ "kernelrelease": "4.18.0-1005-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" ] }, { @@ -18712,8 +18643,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb" ] }, { @@ -18721,9 +18652,9 @@ "kernelrelease": "4.18.0-1006-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" ] }, @@ -18732,10 +18663,10 @@ "kernelrelease": "4.18.0-1007-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" ] }, { @@ -18754,10 +18685,10 @@ "kernelrelease": "4.18.0-1008-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb" ] }, { @@ -18765,10 +18696,10 @@ "kernelrelease": "4.18.0-1008-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -18777,9 +18708,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" ] }, { @@ -18787,9 +18718,9 @@ "kernelrelease": "4.18.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" ] }, @@ -18798,10 +18729,10 @@ "kernelrelease": "4.18.0-1012-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -18809,10 +18740,10 @@ "kernelrelease": "4.18.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" ] }, { @@ -18820,10 +18751,10 @@ "kernelrelease": "4.18.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -18831,10 +18762,10 @@ "kernelrelease": "4.18.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" ] }, { @@ -18843,8 +18774,8 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" ] }, @@ -18853,10 +18784,10 @@ "kernelrelease": "4.18.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" ] }, { @@ -18865,9 +18796,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" ] }, { @@ -18875,9 +18806,9 @@ "kernelrelease": "4.18.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" ] }, @@ -18886,10 +18817,10 @@ "kernelrelease": "4.18.0-1023-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -18898,9 +18829,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" ] }, { @@ -18908,10 +18839,10 @@ "kernelrelease": "4.18.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb" ] }, { @@ -18919,11 +18850,11 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" ] }, @@ -18932,12 +18863,12 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" ] }, { @@ -18945,12 +18876,12 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" ] }, { @@ -18958,12 +18889,12 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" ] }, { @@ -18971,12 +18902,12 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" ] }, { @@ -18984,12 +18915,12 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" ] }, { @@ -18997,12 +18928,12 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb" ] }, { @@ -19010,12 +18941,12 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb" ] }, { @@ -19023,12 +18954,12 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb" ] }, { @@ -19036,12 +18967,12 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" ] }, { @@ -19050,9 +18981,9 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb" ] }, { @@ -19060,10 +18991,10 @@ "kernelrelease": "5.0.0-1008-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb" ] }, { @@ -19072,9 +19003,9 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb" ] }, { @@ -19082,10 +19013,10 @@ "kernelrelease": "5.0.0-1010-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" ] }, { @@ -19093,9 +19024,9 @@ "kernelrelease": "5.0.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" ] }, @@ -19104,10 +19035,10 @@ "kernelrelease": "5.0.0-1011-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb" ] }, { @@ -19116,9 +19047,9 @@ "target": "ubuntu-azure-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb" ] }, { @@ -19127,9 +19058,9 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb" ] }, { @@ -19137,9 +19068,9 @@ "kernelrelease": "5.0.0-1013-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" ] }, @@ -19149,9 +19080,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" ] }, { @@ -19160,9 +19091,9 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb" ] }, { @@ -19170,10 +19101,10 @@ "kernelrelease": "5.0.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19181,10 +19112,10 @@ "kernelrelease": "5.0.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb" ] }, { @@ -19192,10 +19123,10 @@ "kernelrelease": "5.0.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -19205,8 +19136,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" ] }, { @@ -19225,10 +19156,10 @@ "kernelrelease": "5.0.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -19237,9 +19168,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" ] }, { @@ -19247,9 +19178,9 @@ "kernelrelease": "5.0.0-1022-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb" ] }, @@ -19259,8 +19190,8 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" ] }, @@ -19270,8 +19201,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" ] }, @@ -19280,10 +19211,10 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" ] }, { @@ -19291,10 +19222,10 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" ] }, { @@ -19302,10 +19233,10 @@ "kernelrelease": "5.0.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" ] }, { @@ -19314,9 +19245,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -19324,10 +19255,10 @@ "kernelrelease": "5.0.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -19336,9 +19267,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" ] }, { @@ -19347,9 +19278,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" ] }, { @@ -19357,9 +19288,9 @@ "kernelrelease": "5.0.0-1028-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb" ] }, @@ -19368,8 +19299,8 @@ "kernelrelease": "5.0.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" ] @@ -19379,10 +19310,10 @@ "kernelrelease": "5.0.0-1029-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" ] }, { @@ -19390,10 +19321,10 @@ "kernelrelease": "5.0.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" ] }, { @@ -19402,9 +19333,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" ] }, { @@ -19412,9 +19343,9 @@ "kernelrelease": "5.0.0-1031-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" ] }, @@ -19423,10 +19354,10 @@ "kernelrelease": "5.0.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb" ] }, { @@ -19434,10 +19365,10 @@ "kernelrelease": "5.0.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" ] }, { @@ -19445,9 +19376,9 @@ "kernelrelease": "5.0.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" ] }, @@ -19456,10 +19387,10 @@ "kernelrelease": "5.0.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb" ] }, { @@ -19468,9 +19399,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" ] }, { @@ -19478,12 +19409,12 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb" ] }, { @@ -19492,11 +19423,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" ] }, { @@ -19507,9 +19438,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" ] }, { @@ -19518,11 +19449,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb" ] }, { @@ -19530,12 +19461,12 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" ] }, { @@ -19543,12 +19474,12 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" ] }, { @@ -19556,12 +19487,12 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" ] }, { @@ -19569,12 +19500,12 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" ] }, { @@ -19582,12 +19513,12 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb" ] }, { @@ -19595,12 +19526,12 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" ] }, { @@ -19608,12 +19539,12 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" ] }, { @@ -19621,12 +19552,12 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb" ] }, { @@ -19636,10 +19567,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" ] }, { @@ -19647,11 +19578,11 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" ] }, @@ -19661,9 +19592,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" ] }, { @@ -19671,10 +19602,10 @@ "kernelrelease": "5.0.0-61-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" ] }, { @@ -19683,9 +19614,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" ] }, { @@ -19693,10 +19624,10 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" ] }, { @@ -19704,10 +19635,10 @@ "kernelrelease": "5.0.0-65-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" ] }, { @@ -19715,32 +19646,32 @@ "kernelrelease": "5.3.0-1007-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb" ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1008-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1008-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" ] }, { @@ -19748,10 +19679,10 @@ "kernelrelease": "5.3.0-1009-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -19759,43 +19690,43 @@ "kernelrelease": "5.3.0-1009-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" ] }, - { - "kernelversion": "11~18.04.1", - "kernelrelease": "5.3.0-1010-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb" - ] - }, { "kernelversion": "11~18.04.1", "kernelrelease": "5.3.0-1010-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" ] }, + { + "kernelversion": "11~18.04.1", + "kernelrelease": "5.3.0-1010-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb" + ] + }, { "kernelversion": "12~18.04.1", "kernelrelease": "5.3.0-1011-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" ] }, { @@ -19803,9 +19734,9 @@ "kernelrelease": "5.3.0-1012-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb" ] }, @@ -19815,31 +19746,31 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "5.3.0-1013-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1013-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb" ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "5.3.0-1013-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1013-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -19848,9 +19779,9 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb" ] }, { @@ -19858,21 +19789,21 @@ "kernelrelease": "5.3.0-1014-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1016-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19880,21 +19811,21 @@ "kernelrelease": "5.3.0-1016-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1016-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { @@ -19902,10 +19833,10 @@ "kernelrelease": "5.3.0-1016-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" ] }, { @@ -19913,10 +19844,10 @@ "kernelrelease": "5.3.0-1017-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { @@ -19924,10 +19855,10 @@ "kernelrelease": "5.3.0-1017-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" ] }, { @@ -19936,9 +19867,9 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19947,9 +19878,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19957,10 +19888,10 @@ "kernelrelease": "5.3.0-1018-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" ] }, { @@ -19968,10 +19899,10 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" ] }, { @@ -19980,9 +19911,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" ] }, { @@ -19991,9 +19922,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb" ] }, { @@ -20001,9 +19932,9 @@ "kernelrelease": "5.3.0-1020-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" ] }, @@ -20012,10 +19943,10 @@ "kernelrelease": "5.3.0-1022-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -20023,10 +19954,10 @@ "kernelrelease": "5.3.0-1023-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb" ] }, { @@ -20034,10 +19965,10 @@ "kernelrelease": "5.3.0-1024-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" ] }, { @@ -20045,9 +19976,9 @@ "kernelrelease": "5.3.0-1026-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb" ] }, @@ -20057,9 +19988,9 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" ] }, { @@ -20068,8 +19999,8 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" ] }, @@ -20078,10 +20009,10 @@ "kernelrelease": "5.3.0-1028-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" ] }, { @@ -20089,10 +20020,10 @@ "kernelrelease": "5.3.0-1028-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -20100,32 +20031,32 @@ "kernelrelease": "5.3.0-1029-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1030-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1030-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20133,10 +20064,10 @@ "kernelrelease": "5.3.0-1030-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20144,10 +20075,10 @@ "kernelrelease": "5.3.0-1031-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" ] }, { @@ -20155,10 +20086,10 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" ] }, { @@ -20166,10 +20097,10 @@ "kernelrelease": "5.3.0-1032-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb" ] }, { @@ -20177,10 +20108,10 @@ "kernelrelease": "5.3.0-1032-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -20188,10 +20119,10 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" ] }, { @@ -20200,8 +20131,8 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb" ] }, @@ -20210,10 +20141,10 @@ "kernelrelease": "5.3.0-1034-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -20221,10 +20152,10 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" ] }, { @@ -20232,10 +20163,10 @@ "kernelrelease": "5.3.0-1035-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" ] }, { @@ -20243,12 +20174,12 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" ] }, { @@ -20256,10 +20187,10 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb" ] @@ -20269,12 +20200,12 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" ] }, { @@ -20285,9 +20216,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb" ] }, { @@ -20295,12 +20226,12 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb" ] }, { @@ -20309,11 +20240,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" ] }, { @@ -20323,10 +20254,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" ] }, { @@ -20334,12 +20265,12 @@ "kernelrelease": "5.3.0-42-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb" ] }, { @@ -20347,12 +20278,12 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" ] }, { @@ -20362,9 +20293,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb" ] }, @@ -20374,11 +20305,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" ] }, { @@ -20386,12 +20317,12 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" ] }, { @@ -20400,10 +20331,10 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" ] }, @@ -20412,12 +20343,12 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" ] }, { @@ -20426,11 +20357,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb" ] }, { @@ -20439,11 +20370,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" ] }, { @@ -20451,12 +20382,12 @@ "kernelrelease": "5.3.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb" ] }, { @@ -20464,12 +20395,12 @@ "kernelrelease": "5.3.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb" ] }, { @@ -20477,12 +20408,12 @@ "kernelrelease": "5.3.0-67-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" ] }, { @@ -20491,11 +20422,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb" ] }, { @@ -20503,12 +20434,12 @@ "kernelrelease": "5.3.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb" ] }, { @@ -20516,11 +20447,11 @@ "kernelrelease": "5.3.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" ] }, @@ -20529,12 +20460,12 @@ "kernelrelease": "5.3.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb" ] }, { @@ -20542,12 +20473,12 @@ "kernelrelease": "5.3.0-73-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" ] }, { @@ -20555,12 +20486,12 @@ "kernelrelease": "5.3.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" ] }, { @@ -20569,11 +20500,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb" ] }, { @@ -20581,12 +20512,12 @@ "kernelrelease": "5.3.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" ] }, { @@ -20602,24 +20533,24 @@ }, { "kernelversion": "5", - "kernelrelease": "5.4.0-1004-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1004-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" ] }, { "kernelversion": "5", - "kernelrelease": "5.4.0-1004-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1004-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb" ] }, { @@ -20627,10 +20558,10 @@ "kernelrelease": "5.4.0-1007-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb" ] }, { @@ -20638,10 +20569,10 @@ "kernelrelease": "5.4.0-1008-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" ] }, { @@ -20650,9 +20581,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -20660,10 +20591,10 @@ "kernelrelease": "5.4.0-1010-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -20671,10 +20602,10 @@ "kernelrelease": "5.4.0-1011-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb" ] }, { @@ -20683,9 +20614,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -20693,10 +20624,10 @@ "kernelrelease": "5.4.0-1013-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -20705,9 +20636,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb" ] }, { @@ -20715,10 +20646,10 @@ "kernelrelease": "5.4.0-1015-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" ] }, { @@ -20726,10 +20657,10 @@ "kernelrelease": "5.4.0-1016-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -20737,10 +20668,10 @@ "kernelrelease": "5.4.0-1018-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" ] }, { @@ -20748,21 +20679,10 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb" ] }, { @@ -20770,32 +20690,32 @@ "kernelrelease": "5.4.0-1021-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" ] }, { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1021-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelversion": "21~18.04.1", + "kernelrelease": "5.4.0-1021-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1021-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" ] }, { @@ -20803,9 +20723,9 @@ "kernelrelease": "5.4.0-1022-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, @@ -20814,10 +20734,21 @@ "kernelrelease": "5.4.0-1022-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + ] + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20826,9 +20757,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { @@ -20847,9 +20778,9 @@ "kernelrelease": "5.4.0-1023-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" ] }, @@ -20858,10 +20789,10 @@ "kernelrelease": "5.4.0-1023-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" ] }, { @@ -20869,10 +20800,10 @@ "kernelrelease": "5.4.0-1024-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20880,10 +20811,10 @@ "kernelrelease": "5.4.0-1024-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20891,10 +20822,10 @@ "kernelrelease": "5.4.0-1024-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20902,65 +20833,65 @@ "kernelrelease": "5.4.0-1024-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1025-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1025-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1025-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1025-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1025-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -20968,10 +20899,10 @@ "kernelrelease": "5.4.0-1025-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -20979,10 +20910,10 @@ "kernelrelease": "5.4.0-1026-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" ] }, { @@ -20990,10 +20921,10 @@ "kernelrelease": "5.4.0-1026-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" ] }, { @@ -21001,9 +20932,9 @@ "kernelrelease": "5.4.0-1027-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" ] }, @@ -21013,9 +20944,20 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.4.0-1028-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -21023,9 +20965,9 @@ "kernelrelease": "5.4.0-1028-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, @@ -21034,21 +20976,10 @@ "kernelrelease": "5.4.0-1028-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { @@ -21057,22 +20988,11 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" ] }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" - ] - }, { "kernelversion": "31~18.04.1", "kernelrelease": "5.4.0-1029-gcp-5.4", @@ -21084,6 +21004,17 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" ] }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.4.0-1029-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" + ] + }, { "kernelversion": "31~18.04.1", "kernelrelease": "5.4.0-1029-gke-5.4", @@ -21100,43 +21031,43 @@ "kernelrelease": "5.4.0-1029-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb" ] }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" - ] - }, { "kernelversion": "32~18.04.1", "kernelrelease": "5.4.0-1031-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" ] }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.4.0-1031-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" + ] + }, { "kernelversion": "34~18.04.1", "kernelrelease": "5.4.0-1032-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21145,31 +21076,31 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1033-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1033-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21177,10 +21108,10 @@ "kernelrelease": "5.4.0-1033-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb" ] }, { @@ -21188,10 +21119,10 @@ "kernelrelease": "5.4.0-1033-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] }, { @@ -21199,8 +21130,8 @@ "kernelrelease": "5.4.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] @@ -21210,10 +21141,10 @@ "kernelrelease": "5.4.0-1033-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" ] }, { @@ -21222,8 +21153,8 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" ] }, @@ -21232,10 +21163,10 @@ "kernelrelease": "5.4.0-1034-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb" ] }, { @@ -21243,10 +21174,10 @@ "kernelrelease": "5.4.0-1035-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -21254,9 +21185,9 @@ "kernelrelease": "5.4.0-1035-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" ] }, @@ -21265,10 +21196,10 @@ "kernelrelease": "5.4.0-1035-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" ] }, { @@ -21277,31 +21208,31 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1036-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1036-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" ] }, { @@ -21310,9 +21241,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" ] }, { @@ -21321,31 +21252,31 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1037-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1037-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { @@ -21353,10 +21284,10 @@ "kernelrelease": "5.4.0-1037-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21364,10 +21295,10 @@ "kernelrelease": "5.4.0-1037-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21376,9 +21307,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb" ] }, { @@ -21386,32 +21317,32 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb" ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1038-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1038-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1038-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1038-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { @@ -21419,10 +21350,10 @@ "kernelrelease": "5.4.0-1038-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" ] }, { @@ -21430,10 +21361,10 @@ "kernelrelease": "5.4.0-1039-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21441,10 +21372,10 @@ "kernelrelease": "5.4.0-1039-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { @@ -21452,9 +21383,9 @@ "kernelrelease": "5.4.0-1039-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" ] }, @@ -21463,10 +21394,10 @@ "kernelrelease": "5.4.0-1039-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" ] }, { @@ -21475,9 +21406,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb" ] }, { @@ -21485,12 +21416,12 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" ] }, { @@ -21498,10 +21429,10 @@ "kernelrelease": "5.4.0-1040-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { @@ -21509,10 +21440,10 @@ "kernelrelease": "5.4.0-1040-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" ] }, { @@ -21520,10 +21451,10 @@ "kernelrelease": "5.4.0-1040-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" ] }, { @@ -21531,10 +21462,10 @@ "kernelrelease": "5.4.0-1041-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" ] }, { @@ -21543,20 +21474,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, { @@ -21564,21 +21484,21 @@ "kernelrelease": "5.4.0-1041-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1042-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1041-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { @@ -21587,9 +21507,20 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1042-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb" ] }, { @@ -21597,32 +21528,32 @@ "kernelrelease": "5.4.0-1042-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1043-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1043-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -21630,9 +21561,9 @@ "kernelrelease": "5.4.0-1043-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, @@ -21641,10 +21572,10 @@ "kernelrelease": "5.4.0-1043-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb" ] }, { @@ -21660,24 +21591,24 @@ }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1044-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1044-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb" ] }, { @@ -21685,10 +21616,10 @@ "kernelrelease": "5.4.0-1044-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" ] }, { @@ -21697,8 +21628,8 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" ] }, @@ -21707,9 +21638,9 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" ] }, @@ -21718,10 +21649,10 @@ "kernelrelease": "5.4.0-1046-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -21729,10 +21660,21 @@ "kernelrelease": "5.4.0-1046-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "48~18.04.1", + "kernelrelease": "5.4.0-1046-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" ] }, { @@ -21740,10 +21682,10 @@ "kernelrelease": "5.4.0-1046-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb" ] }, { @@ -21751,21 +21693,10 @@ "kernelrelease": "5.4.0-1046-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" ] }, { @@ -21774,19 +21705,30 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" ] }, { - "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1047-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "50~18.04.1", + "kernelrelease": "5.4.0-1048-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb" ] }, @@ -21795,10 +21737,10 @@ "kernelrelease": "5.4.0-1048-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" ] }, { @@ -21808,8 +21750,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" ] }, { @@ -21817,10 +21759,10 @@ "kernelrelease": "5.4.0-1049-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { @@ -21829,8 +21771,8 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" ] }, @@ -21840,9 +21782,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -21850,10 +21792,10 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -21861,32 +21803,32 @@ "kernelrelease": "5.4.0-1049-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1051-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1051-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" ] }, { @@ -21894,10 +21836,10 @@ "kernelrelease": "5.4.0-1051-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" ] }, { @@ -21905,21 +21847,10 @@ "kernelrelease": "5.4.0-1051-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" ] }, { @@ -21928,31 +21859,31 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb" ] }, { - "kernelversion": "55~18.04.1", - "kernelrelease": "5.4.0-1052-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "56~18.04.1", + "kernelrelease": "5.4.0-1052-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb" ] }, { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "55~18.04.1", + "kernelrelease": "5.4.0-1052-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" ] }, { @@ -21960,43 +21891,54 @@ "kernelrelease": "5.4.0-1053-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" ] }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1053-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" + ] + }, { "kernelversion": "56~18.04.1", "kernelrelease": "5.4.0-1053-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1054-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1054-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { @@ -22004,32 +21946,32 @@ "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1055-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1055-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { @@ -22037,32 +21979,32 @@ "kernelrelease": "5.4.0-1055-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1055-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1055-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" ] }, { @@ -22070,10 +22012,10 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb" ] }, { @@ -22093,9 +22035,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb" ] }, { @@ -22103,9 +22045,9 @@ "kernelrelease": "5.4.0-1057-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" ] }, @@ -22114,32 +22056,32 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" ] }, { "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1057-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1057-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -22148,9 +22090,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" ] }, { @@ -22158,21 +22100,21 @@ "kernelrelease": "5.4.0-1058-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1059-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { @@ -22181,20 +22123,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1059-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -22213,9 +22155,9 @@ "kernelrelease": "5.4.0-1059-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" ] }, @@ -22224,10 +22166,10 @@ "kernelrelease": "5.4.0-1060-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" ] }, { @@ -22235,8 +22177,8 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb" ] @@ -22246,10 +22188,10 @@ "kernelrelease": "5.4.0-1062-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { @@ -22257,21 +22199,10 @@ "kernelrelease": "5.4.0-1062-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { @@ -22279,10 +22210,10 @@ "kernelrelease": "5.4.0-1065-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -22290,10 +22221,21 @@ "kernelrelease": "5.4.0-1065-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1065-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -22301,9 +22243,9 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" ] }, @@ -22312,9 +22254,9 @@ "kernelrelease": "5.4.0-1067-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" ] }, @@ -22323,9 +22265,9 @@ "kernelrelease": "5.4.0-1067-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb" ] }, @@ -22334,32 +22276,32 @@ "kernelrelease": "5.4.0-1067-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1068-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1068-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { @@ -22368,9 +22310,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb" ] }, { @@ -22378,12 +22320,12 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" ] }, { @@ -22391,10 +22333,10 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb" ] }, { @@ -22402,21 +22344,10 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb" ] }, { @@ -22424,10 +22355,10 @@ "kernelrelease": "5.4.0-1072-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22435,10 +22366,21 @@ "kernelrelease": "5.4.0-1072-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22447,8 +22389,8 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" ] }, @@ -22457,10 +22399,10 @@ "kernelrelease": "5.4.0-1073-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb" ] }, { @@ -22468,10 +22410,10 @@ "kernelrelease": "5.4.0-1073-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" ] }, { @@ -22479,21 +22421,65 @@ "kernelrelease": "5.4.0-1074-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb" ] }, + { + "kernelversion": "79~18.04.1", + "kernelrelease": "5.4.0-1074-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "83~18.04.1", + "kernelrelease": "5.4.0-1076-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb" + ] + }, { "kernelversion": "80~18.04.1", "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb" ] }, { @@ -22501,10 +22487,21 @@ "kernelrelease": "5.4.0-1080-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" + ] + }, + { + "kernelversion": "87~18.04.1", + "kernelrelease": "5.4.0-1083-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb" ] }, { @@ -22512,11 +22509,11 @@ "kernelrelease": "5.4.0-109-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" ] }, @@ -22525,12 +22522,25 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + ] + }, + { + "kernelversion": "132~18.04.1", + "kernelrelease": "5.4.0-117-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb" ] }, { @@ -22538,11 +22548,11 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" ] }, @@ -22551,12 +22561,12 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" ] }, { @@ -22564,12 +22574,12 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb" ] }, { @@ -22577,12 +22587,12 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb" ] }, { @@ -22590,12 +22600,12 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb" ] }, { @@ -22603,12 +22613,12 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" ] }, { @@ -22616,12 +22626,12 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" ] }, { @@ -22630,11 +22640,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" ] }, { @@ -22644,10 +22654,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" ] }, { @@ -22655,11 +22665,11 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" ] }, @@ -22668,12 +22678,12 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" ] }, { @@ -22681,12 +22691,12 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb" ] }, { @@ -22695,10 +22705,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" ] }, @@ -22708,10 +22718,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb" ] }, @@ -22720,12 +22730,12 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb" ] }, { @@ -22733,12 +22743,12 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" ] }, { @@ -22746,12 +22756,12 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" ] }, { @@ -22759,12 +22769,12 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb" ] }, { @@ -22772,11 +22782,11 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb" ] }, @@ -22786,11 +22796,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb" ] }, { @@ -22799,11 +22809,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" ] }, { @@ -22811,12 +22821,12 @@ "kernelrelease": "5.4.0-74-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb" ] }, { @@ -22824,12 +22834,12 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" ] }, { @@ -22837,12 +22847,12 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb" ] }, { @@ -22850,12 +22860,12 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" ] }, { @@ -22863,12 +22873,12 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb" ] }, { @@ -22876,12 +22886,12 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb" ] }, { @@ -22889,12 +22899,12 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" ] }, { @@ -22902,11 +22912,11 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb" ] }, @@ -22915,11 +22925,11 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" ] }, @@ -22928,12 +22938,12 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb" ] }, { @@ -22941,12 +22951,12 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" ] }, { @@ -22954,12 +22964,12 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" ] }, { @@ -22967,10 +22977,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb" ] }, { @@ -22978,9 +22988,9 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb" ] }, @@ -22990,20 +23000,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "4.15.0-1025-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb" ] }, { @@ -23011,21 +23010,32 @@ "kernelrelease": "4.15.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" ] }, + { + "kernelversion": "25", + "kernelrelease": "4.15.0-1025-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb" + ] + }, { "kernelversion": "31", "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" ] }, { @@ -23033,9 +23043,9 @@ "kernelrelease": "4.15.0-1030-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" ] }, @@ -23044,10 +23054,10 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" ] }, { @@ -23055,10 +23065,10 @@ "kernelrelease": "4.15.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" ] }, { @@ -23068,8 +23078,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb" ] }, { @@ -23077,12 +23087,12 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb" ] }, { @@ -23090,12 +23100,12 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb" ] }, { @@ -23103,12 +23113,12 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" ] }, { @@ -23116,11 +23126,11 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, @@ -23129,10 +23139,10 @@ "kernelrelease": "4.18.0-1009-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -23140,12 +23150,12 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" ] }, { @@ -23153,10 +23163,10 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" ] }, { @@ -23164,8 +23174,8 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" ] @@ -23175,10 +23185,10 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" ] }, { @@ -23186,10 +23196,10 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" ] }, { @@ -23197,9 +23207,9 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" ] }, @@ -23208,10 +23218,10 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" ] }, { @@ -23219,10 +23229,10 @@ "kernelrelease": "5.0.0-58-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb" ] }, { @@ -23230,10 +23240,10 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" ] }, { @@ -23241,10 +23251,10 @@ "kernelrelease": "5.4.0-1001-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb" ] }, { @@ -23263,10 +23273,10 @@ "kernelrelease": "5.4.0-1019-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb" ] }, { @@ -23274,10 +23284,10 @@ "kernelrelease": "5.4.0-1019-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" ] }, { @@ -23285,10 +23295,10 @@ "kernelrelease": "5.4.0-1020-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb" ] }, { @@ -23296,12 +23306,12 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb" ] }, { @@ -23309,12 +23319,12 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb" ] }, { @@ -23322,10 +23332,10 @@ "kernelrelease": "4.15.0-1004-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" ] }, { @@ -23333,8 +23343,8 @@ "kernelrelease": "4.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb" ] @@ -23345,9 +23355,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" ] }, { @@ -23355,12 +23365,12 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb" ] }, { @@ -23368,9 +23378,9 @@ "kernelrelease": "5.15.0-1005-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, @@ -23379,10 +23389,10 @@ "kernelrelease": "5.15.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { @@ -23390,10 +23400,10 @@ "kernelrelease": "5.15.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" ] }, { @@ -23402,9 +23412,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb" ] }, { @@ -23414,8 +23424,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" ] }, { @@ -23424,9 +23434,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" ] }, { @@ -23434,32 +23444,32 @@ "kernelrelease": "5.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.15.0-27", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-27-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.15.0-27-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-27", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, { @@ -23475,24 +23485,24 @@ }, { "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb" ] }, { "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb" ] }, { @@ -23501,31 +23511,31 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" ] }, { "kernelversion": "3", - "kernelrelease": "5.15.0-1003-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1003-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" ] }, { "kernelversion": "3", - "kernelrelease": "5.15.0-1003-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.15.0-1003-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" ] }, { @@ -23533,21 +23543,21 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1004-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23555,21 +23565,21 @@ "kernelrelease": "5.15.0-1004-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23577,10 +23587,10 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" ] }, { @@ -23588,10 +23598,10 @@ "kernelrelease": "5.15.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb" ] }, { @@ -23599,10 +23609,10 @@ "kernelrelease": "5.15.0-1004-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, { @@ -23610,10 +23620,10 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" ] }, { @@ -23621,10 +23631,10 @@ "kernelrelease": "5.17.0-1003-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb" ] }, { @@ -23632,9 +23642,9 @@ "kernelrelease": "5.10.0-1047-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb" ] }, @@ -23643,21 +23653,10 @@ "kernelrelease": "5.10.0-1058-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb" ] }, { @@ -23665,10 +23664,10 @@ "kernelrelease": "5.11.0-1022-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { @@ -23676,10 +23675,21 @@ "kernelrelease": "5.11.0-1022-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -23688,9 +23698,9 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { @@ -23698,32 +23708,32 @@ "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1029-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1029-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -23732,8 +23742,8 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" ] }, @@ -23742,10 +23752,10 @@ "kernelrelease": "5.11.0-1029-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" ] }, { @@ -23753,10 +23763,10 @@ "kernelrelease": "5.11.0-1030-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" ] }, { @@ -23764,12 +23774,12 @@ "kernelrelease": "5.11.0-40-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" ] }, { @@ -23777,12 +23787,12 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb" ] }, { @@ -23791,11 +23801,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb" ] }, { @@ -23803,12 +23813,12 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb" ] }, { @@ -23816,12 +23826,12 @@ "kernelrelease": "5.11.0-60-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" ] }, { @@ -23829,34 +23839,23 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" ] }, - { - "kernelversion": "12", - "kernelrelease": "5.13.0-1012-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1012_5.13.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1012-intel_5.13.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1012_5.13.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1012-intel_5.13.0-1012.12_amd64.deb" - ] - }, { "kernelversion": "15~20.04.1", "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb" ] }, { @@ -23864,10 +23863,10 @@ "kernelrelease": "5.13.0-1014-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" ] }, { @@ -23875,32 +23874,32 @@ "kernelrelease": "5.13.0-1015-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1016-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1016-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" ] }, { @@ -23908,10 +23907,10 @@ "kernelrelease": "5.13.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, { @@ -23919,10 +23918,10 @@ "kernelrelease": "5.13.0-1018-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, { @@ -23930,32 +23929,32 @@ "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -23963,21 +23962,10 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.13.0-1020-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" ] }, { @@ -23985,21 +23973,21 @@ "kernelrelease": "5.13.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1022-gcp", - "target": "ubuntu-gcp", + "kernelversion": "24", + "kernelrelease": "5.13.0-1020-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" ] }, { @@ -24007,10 +23995,10 @@ "kernelrelease": "5.13.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" ] }, { @@ -24018,19 +24006,30 @@ "kernelrelease": "5.13.0-1022-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" ] }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1022-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" + ] + }, { "kernelversion": "25~20.04.1", "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" ] @@ -24040,9 +24039,9 @@ "kernelrelease": "5.13.0-1023-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" ] }, @@ -24051,10 +24050,10 @@ "kernelrelease": "5.13.0-1023-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { @@ -24063,9 +24062,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" ] }, { @@ -24073,21 +24072,10 @@ "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb" ] }, { @@ -24095,32 +24083,21 @@ "kernelrelease": "5.13.0-1025-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1026-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1026_5.13.0-1026.28~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1026_5.13.0-1026.28~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1026-aws_5.13.0-1026.28~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1026-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1025-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1026-azure_5.13.0-1026.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1026-azure_5.13.0-1026.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1026_5.13.0-1026.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" ] }, { @@ -24128,21 +24105,10 @@ "kernelrelease": "5.13.0-1026-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" - ] - }, - { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" ] }, { @@ -24150,21 +24116,21 @@ "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] }, { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.13.0-1031-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "33~20.04.1", + "kernelrelease": "5.13.0-1028-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1031_5.13.0-1031.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1031_5.13.0-1031.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] }, { @@ -24172,12 +24138,12 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb" ] }, { @@ -24185,12 +24151,12 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb" ] }, { @@ -24198,11 +24164,11 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" ] }, @@ -24212,11 +24178,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" ] }, { @@ -24225,11 +24191,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb" ] }, { @@ -24237,12 +24203,12 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb" ] }, { @@ -24250,12 +24216,12 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb" ] }, { @@ -24263,12 +24229,12 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb" ] }, { @@ -24276,12 +24242,12 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" ] }, { @@ -24289,11 +24255,11 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" ] }, @@ -24302,12 +24268,12 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb" ] }, { @@ -24315,12 +24281,12 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" ] }, { @@ -24330,23 +24296,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" - ] - }, - { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.13.0-46-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-46-generic_5.13.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-46_5.13.0-46.51~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb" ] }, { @@ -24355,9 +24308,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb" ] }, { @@ -24365,10 +24318,10 @@ "kernelrelease": "5.14.0-1007-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" ] }, { @@ -24376,10 +24329,10 @@ "kernelrelease": "5.14.0-1008-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" ] }, { @@ -24387,10 +24340,10 @@ "kernelrelease": "5.14.0-1009-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" ] }, { @@ -24399,8 +24352,8 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" ] }, @@ -24410,9 +24363,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" ] }, { @@ -24431,9 +24384,9 @@ "kernelrelease": "5.14.0-1021-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb" ] }, @@ -24442,9 +24395,9 @@ "kernelrelease": "5.14.0-1022-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" ] }, @@ -24453,10 +24406,10 @@ "kernelrelease": "5.14.0-1023-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" ] }, { @@ -24464,10 +24417,10 @@ "kernelrelease": "5.14.0-1024-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" ] }, { @@ -24475,10 +24428,10 @@ "kernelrelease": "5.14.0-1028-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb" ] }, { @@ -24486,10 +24439,10 @@ "kernelrelease": "5.14.0-1029-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" ] }, { @@ -24497,10 +24450,10 @@ "kernelrelease": "5.14.0-1030-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb" ] }, { @@ -24519,10 +24472,10 @@ "kernelrelease": "5.14.0-1033-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" ] }, { @@ -24530,10 +24483,10 @@ "kernelrelease": "5.14.0-1035-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb" ] }, { @@ -24541,10 +24494,10 @@ "kernelrelease": "5.14.0-1036-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb" ] }, { @@ -24552,10 +24505,10 @@ "kernelrelease": "5.14.0-1037-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" ] }, { @@ -24563,21 +24516,10 @@ "kernelrelease": "5.14.0-1038-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.14.0-1040-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1040_5.14.0-1040.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1040-oem_5.14.0-1040.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1040_5.14.0-1040.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1040-oem_5.14.0-1040.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb" ] }, { @@ -24585,9 +24527,9 @@ "kernelrelease": "5.15.0-1002-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb" ] }, @@ -24596,21 +24538,21 @@ "kernelrelease": "5.15.0-1007-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb" ] }, { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1008-azure-5.15", - "target": "ubuntu-azure-5.15", + "kernelversion": "11~20.04.1", + "kernelrelease": "5.15.0-1009-aws-5.15", + "target": "ubuntu-aws-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb" ] }, { @@ -24618,10 +24560,10 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" ] }, { @@ -24629,10 +24571,10 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" ] }, { @@ -24640,10 +24582,10 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" ] }, { @@ -24652,31 +24594,9 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" ] }, { @@ -24684,23 +24604,12 @@ "kernelrelease": "5.4.0-100", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.4.0-1013-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb" ] }, { @@ -24714,15 +24623,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb" ] }, + { + "kernelversion": "14", + "kernelrelease": "5.4.0-1013-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + ] + }, { "kernelversion": "16", "kernelrelease": "5.4.0-1015-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" ] }, { @@ -24730,10 +24650,10 @@ "kernelrelease": "5.4.0-1015-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" ] }, { @@ -24741,12 +24661,12 @@ "kernelrelease": "5.4.0-102", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb" ] }, { @@ -24754,32 +24674,21 @@ "kernelrelease": "5.4.0-1021-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.4.0-1024-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1024-ibm_5.4.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1024-ibm_5.4.0-1024.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1024_5.4.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1024_5.4.0-1024.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1032-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1032-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" ] }, { @@ -24787,21 +24696,32 @@ "kernelrelease": "5.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1032-aws", + "kernelrelease": "5.4.0-1032-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" ] }, { @@ -24809,10 +24729,10 @@ "kernelrelease": "5.4.0-1034-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -24821,20 +24741,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" ] }, { @@ -24843,20 +24752,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.4.0-1035-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -24870,15 +24768,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb" ] }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1035-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" + ] + }, { "kernelversion": "40", "kernelrelease": "5.4.0-1039-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" ] }, { @@ -24887,20 +24796,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1040-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" ] }, { @@ -24908,21 +24806,21 @@ "kernelrelease": "5.4.0-1040-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.4.0-1041-gkeop", + "kernelversion": "41", + "kernelrelease": "5.4.0-1040-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" ] }, { @@ -24931,20 +24829,20 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.4.0-1044-gkeop", + "kernelversion": "42", + "kernelrelease": "5.4.0-1041-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1044_5.4.0-1044.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1044-gkeop_5.4.0-1044.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1044-gkeop_5.4.0-1044.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1044_5.4.0-1044.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb" ] }, { @@ -24952,12 +24850,12 @@ "kernelrelease": "5.4.0-105", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" ] }, { @@ -24965,32 +24863,32 @@ "kernelrelease": "5.4.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1054-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1054-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb" ] }, { @@ -24998,10 +24896,21 @@ "kernelrelease": "5.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb" + ] + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-1055-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" ] }, { @@ -25010,20 +24919,20 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.4.0-1055-gcp", - "target": "ubuntu-gcp", + "kernelversion": "58", + "kernelrelease": "5.4.0-1056-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" ] }, { @@ -25037,26 +24946,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb" ] }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1056-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb" - ] - }, { "kernelversion": "61", "kernelrelease": "5.4.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" ] }, { @@ -25065,42 +24963,31 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb" ] }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" - ] - }, { "kernelversion": "62", "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1058-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" ] }, { @@ -25108,32 +24995,43 @@ "kernelrelease": "5.4.0-1059-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1059-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1059-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb" ] }, { @@ -25141,12 +25039,12 @@ "kernelrelease": "5.4.0-106", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" ] }, { @@ -25154,43 +25052,43 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1060-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1060-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1061-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" ] }, { @@ -25198,10 +25096,10 @@ "kernelrelease": "5.4.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" ] }, { @@ -25209,21 +25107,21 @@ "kernelrelease": "5.4.0-1061-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1061-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1061-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -25231,10 +25129,10 @@ "kernelrelease": "5.4.0-1062-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" ] }, { @@ -25242,10 +25140,10 @@ "kernelrelease": "5.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb" ] }, { @@ -25253,10 +25151,10 @@ "kernelrelease": "5.4.0-1062-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" ] }, { @@ -25264,10 +25162,10 @@ "kernelrelease": "5.4.0-1062-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" ] }, { @@ -25276,53 +25174,53 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1063-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1063-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1063-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1063-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { @@ -25331,53 +25229,42 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" ] }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1063-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" - ] - }, { "kernelversion": "67", "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1064-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1063-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1064-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1064-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb" ] }, { @@ -25385,21 +25272,21 @@ "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "5.4.0-1064-oracle", - "target": "ubuntu-oracle", + "kernelversion": "67", + "kernelrelease": "5.4.0-1064-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -25407,10 +25294,21 @@ "kernelrelease": "5.4.0-1064-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" + ] + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1064-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" ] }, { @@ -25418,65 +25316,65 @@ "kernelrelease": "5.4.0-1065-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1065-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1065-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1065-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1065-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb" ] }, { "kernelversion": "69", - "kernelrelease": "5.4.0-1066-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1066-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1066-kvm_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1066-kvm_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" ] }, { @@ -25485,20 +25383,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" ] }, { @@ -25506,32 +25393,32 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1068-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1068-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb" ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1068-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1068-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb" ] }, { @@ -25540,9 +25427,9 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" ] }, { @@ -25550,21 +25437,10 @@ "kernelrelease": "5.4.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" ] }, { @@ -25572,21 +25448,32 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb" ] }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb" + ] + }, { "kernelversion": "72", "kernelrelease": "5.4.0-1069-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb" ] }, { @@ -25594,10 +25481,10 @@ "kernelrelease": "5.4.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" ] }, { @@ -25605,12 +25492,12 @@ "kernelrelease": "5.4.0-107", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb" ] }, { @@ -25618,10 +25505,10 @@ "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" ] }, { @@ -25630,9 +25517,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" ] }, { @@ -25641,8 +25528,8 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" ] }, @@ -25652,9 +25539,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb" ] }, { @@ -25662,21 +25549,32 @@ "kernelrelease": "5.4.0-1071-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" ] }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + ] + }, { "kernelversion": "76", "kernelrelease": "5.4.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" ] }, { @@ -25684,21 +25582,10 @@ "kernelrelease": "5.4.0-1071-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, { @@ -25707,9 +25594,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" ] }, { @@ -25718,20 +25605,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1073-gke_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1073-gke_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb" ] }, { @@ -25739,9 +25615,9 @@ "kernelrelease": "5.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" ] }, @@ -25750,10 +25626,10 @@ "kernelrelease": "5.4.0-1073-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" ] }, { @@ -25761,10 +25637,10 @@ "kernelrelease": "5.4.0-1073-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" ] }, { @@ -25772,10 +25648,10 @@ "kernelrelease": "5.4.0-1073-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" ] }, { @@ -25784,9 +25660,20 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" + ] + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" ] }, { @@ -25794,10 +25681,10 @@ "kernelrelease": "5.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb" ] }, { @@ -25807,19 +25694,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1074-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1074_5.4.0-1074.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1074-oracle_5.4.0-1074.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1074_5.4.0-1074.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" ] }, { @@ -25827,9 +25703,9 @@ "kernelrelease": "5.4.0-1075-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb" ] }, @@ -25838,10 +25714,10 @@ "kernelrelease": "5.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" ] }, { @@ -25849,32 +25725,10 @@ "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "5.4.0-1076-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1076_5.4.0-1076.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1076_5.4.0-1076.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1076-aws_5.4.0-1076.81_amd64.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "5.4.0-1076-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1076_5.4.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1076_5.4.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1076-gcp_5.4.0-1076.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" ] }, { @@ -25883,9 +25737,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" ] }, { @@ -25893,10 +25747,10 @@ "kernelrelease": "5.4.0-1078-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" ] }, { @@ -25904,10 +25758,10 @@ "kernelrelease": "5.4.0-1078-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb" ] }, { @@ -25915,11 +25769,11 @@ "kernelrelease": "5.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" ] }, @@ -25929,20 +25783,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1081-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1081_5.4.0-1081.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1081-azure_5.4.0-1081.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" ] }, { @@ -25950,12 +25793,12 @@ "kernelrelease": "5.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb" ] }, { @@ -25965,10 +25808,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb" ] }, { @@ -25976,12 +25819,12 @@ "kernelrelease": "5.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb" ] }, { @@ -25989,12 +25832,12 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb" ] }, { @@ -26002,38 +25845,25 @@ "kernelrelease": "5.4.0-114", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb" ] }, - { - "kernelversion": "129", - "kernelrelease": "5.4.0-115", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-generic_5.4.0-115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-generic_5.4.0-115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115_5.4.0-115.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-115-lowlatency_5.4.0-115.129_amd64.deb" - ] - }, { "kernelversion": "110", "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" ] }, { @@ -26041,12 +25871,12 @@ "kernelrelease": "5.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb" ] }, { @@ -26054,45 +25884,34 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" ] }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-gcp-5.8", - "target": "ubuntu-gcp-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" - ] - }, { "kernelversion": "35~20.04.1", "kernelrelease": "5.8.0-1033-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.8.0-1033-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { @@ -26100,10 +25919,21 @@ "kernelrelease": "5.8.0-1036-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1036-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb" ] }, { @@ -26111,12 +25941,12 @@ "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" ] }, { @@ -26124,10 +25954,10 @@ "kernelrelease": "5.10.0-1013-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb" ] }, { @@ -26135,10 +25965,10 @@ "kernelrelease": "5.10.0-1014-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb" ] }, { @@ -26146,8 +25976,8 @@ "kernelrelease": "5.10.0-1016-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb" ] @@ -26157,10 +25987,10 @@ "kernelrelease": "5.10.0-1017-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb" ] }, { @@ -26168,10 +25998,10 @@ "kernelrelease": "5.10.0-1019-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb" ] }, { @@ -26180,9 +26010,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb" ] }, { @@ -26190,8 +26020,8 @@ "kernelrelease": "5.10.0-1022-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb" ] @@ -26201,10 +26031,10 @@ "kernelrelease": "5.10.0-1023-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb" ] }, { @@ -26212,10 +26042,10 @@ "kernelrelease": "5.10.0-1025-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" ] }, { @@ -26224,9 +26054,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" ] }, { @@ -26234,8 +26064,8 @@ "kernelrelease": "5.10.0-1029-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" ] @@ -26245,9 +26075,9 @@ "kernelrelease": "5.10.0-1033-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" ] }, @@ -26256,10 +26086,10 @@ "kernelrelease": "5.10.0-1038-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb" ] }, { @@ -26267,9 +26097,9 @@ "kernelrelease": "5.10.0-1044-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" ] }, @@ -26278,10 +26108,10 @@ "kernelrelease": "5.10.0-1045-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb" ] }, { @@ -26290,9 +26120,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" ] }, { @@ -26300,10 +26130,10 @@ "kernelrelease": "5.10.0-1050-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" ] }, { @@ -26311,9 +26141,9 @@ "kernelrelease": "5.10.0-1051-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb" ] }, @@ -26323,9 +26153,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb" ] }, { @@ -26333,10 +26163,10 @@ "kernelrelease": "5.10.0-1055-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" ] }, { @@ -26344,10 +26174,10 @@ "kernelrelease": "5.10.0-1057-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" ] }, { @@ -26355,10 +26185,10 @@ "kernelrelease": "5.11.0-1012-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" ] }, { @@ -26367,8 +26197,8 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, @@ -26377,10 +26207,10 @@ "kernelrelease": "5.11.0-1013-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, { @@ -26388,10 +26218,10 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb" ] }, { @@ -26400,9 +26230,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" ] }, { @@ -26410,10 +26240,10 @@ "kernelrelease": "5.11.0-1015-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb" ] }, { @@ -26421,10 +26251,10 @@ "kernelrelease": "5.11.0-1016-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" ] }, { @@ -26432,21 +26262,32 @@ "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" + ] + }, { "kernelversion": "18~20.04.1", "kernelrelease": "5.11.0-1017-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb" ] }, { @@ -26454,21 +26295,10 @@ "kernelrelease": "5.11.0-1017-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -26488,9 +26318,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb" ] }, { @@ -26498,10 +26328,10 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { @@ -26510,9 +26340,9 @@ "target": "ubuntu-oracle-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { @@ -26520,10 +26350,10 @@ "kernelrelease": "5.11.0-1019-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { @@ -26531,32 +26361,32 @@ "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1020-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1020-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" ] }, { @@ -26564,9 +26394,9 @@ "kernelrelease": "5.11.0-1020-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" ] }, @@ -26575,12 +26405,23 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" ] }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1021-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" + ] + }, { "kernelversion": "22~20.04.1", "kernelrelease": "5.11.0-1021-azure-5.11", @@ -26592,25 +26433,14 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" ] }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" - ] - }, { "kernelversion": "23~20.04.1", "kernelrelease": "5.11.0-1021-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" ] }, @@ -26620,9 +26450,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb" ] }, { @@ -26630,10 +26460,21 @@ "kernelrelease": "5.11.0-1023-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { @@ -26647,26 +26488,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" ] }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" - ] - }, { "kernelversion": "25~20.04.1", "kernelrelease": "5.11.0-1023-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -26674,21 +26504,10 @@ "kernelrelease": "5.11.0-1024-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb" ] }, { @@ -26697,9 +26516,9 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb" ] }, { @@ -26707,10 +26526,21 @@ "kernelrelease": "5.11.0-1025-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -26718,32 +26548,32 @@ "kernelrelease": "5.11.0-1026-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1027-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -26751,9 +26581,9 @@ "kernelrelease": "5.11.0-1027-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, @@ -26762,10 +26592,10 @@ "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" ] }, { @@ -26773,9 +26603,9 @@ "kernelrelease": "5.11.0-1028-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" ] }, @@ -26784,12 +26614,12 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb" ] }, { @@ -26797,12 +26627,12 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb" ] }, { @@ -26810,12 +26640,12 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb" ] }, { @@ -26823,12 +26653,12 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" ] }, { @@ -26836,12 +26666,12 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" ] }, { @@ -26862,12 +26692,12 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb" ] }, { @@ -26875,11 +26705,11 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" ] }, @@ -26888,11 +26718,11 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" ] }, @@ -26901,10 +26731,10 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" ] }, { @@ -26912,10 +26742,10 @@ "kernelrelease": "5.13.0-1008-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb" ] }, { @@ -26923,8 +26753,8 @@ "kernelrelease": "5.13.0-1008-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" ] @@ -26935,9 +26765,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" ] }, { @@ -26945,9 +26775,9 @@ "kernelrelease": "5.13.0-1009-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" ] }, @@ -26956,21 +26786,10 @@ "kernelrelease": "5.13.0-1009-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" ] }, { @@ -26978,10 +26797,10 @@ "kernelrelease": "5.13.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb" ] }, { @@ -26989,10 +26808,21 @@ "kernelrelease": "5.13.0-1009-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" ] }, { @@ -27001,9 +26831,9 @@ "target": "ubuntu-intel-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" ] }, { @@ -27012,8 +26842,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" ] }, @@ -27022,10 +26852,10 @@ "kernelrelease": "5.13.0-1010-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" ] }, { @@ -27033,10 +26863,10 @@ "kernelrelease": "5.13.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb" ] }, { @@ -27044,9 +26874,9 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" ] }, @@ -27055,10 +26885,10 @@ "kernelrelease": "5.13.0-1011-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb" ] }, { @@ -27077,10 +26907,10 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" ] }, { @@ -27088,10 +26918,10 @@ "kernelrelease": "5.13.0-1012-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" ] }, { @@ -27099,10 +26929,10 @@ "kernelrelease": "5.13.0-1012-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" ] }, { @@ -27121,10 +26951,32 @@ "kernelrelease": "5.13.0-1013-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.13.0-1014-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.13.0-1014-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb" ] }, { @@ -27133,9 +26985,9 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" ] }, { @@ -27143,10 +26995,10 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" ] }, { @@ -27155,8 +27007,8 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" ] }, @@ -27165,10 +27017,10 @@ "kernelrelease": "5.13.0-1017-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { @@ -27176,10 +27028,10 @@ "kernelrelease": "5.13.0-1017-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { @@ -27187,9 +27039,9 @@ "kernelrelease": "5.13.0-1017-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb" ] }, @@ -27198,10 +27050,10 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" ] }, { @@ -27209,10 +27061,10 @@ "kernelrelease": "5.13.0-1019-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" ] }, { @@ -27220,10 +27072,10 @@ "kernelrelease": "5.13.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" ] }, { @@ -27231,8 +27083,8 @@ "kernelrelease": "5.13.0-1019-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" ] @@ -27253,10 +27105,10 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" ] }, { @@ -27264,9 +27116,9 @@ "kernelrelease": "5.13.0-1021-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb" ] }, @@ -27275,10 +27127,10 @@ "kernelrelease": "5.13.0-1021-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" ] }, { @@ -27286,10 +27138,10 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb" ] }, { @@ -27299,8 +27151,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" ] }, { @@ -27308,10 +27160,10 @@ "kernelrelease": "5.13.0-1024-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" ] }, { @@ -27319,8 +27171,8 @@ "kernelrelease": "5.13.0-1025-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" ] @@ -27332,8 +27184,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb" ] }, { @@ -27341,10 +27193,10 @@ "kernelrelease": "5.13.0-1026-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" ] }, { @@ -27352,9 +27204,9 @@ "kernelrelease": "5.13.0-1027-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb" ] }, @@ -27365,8 +27217,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.13.0-1028-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -27374,10 +27237,32 @@ "kernelrelease": "5.13.0-1028-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" + ] + }, + { + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1029-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.13.0-1029-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb" ] }, { @@ -27386,20 +27271,64 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb" ] }, + { + "kernelversion": "36~20.04.1", + "kernelrelease": "5.13.0-1030-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb" + ] + }, { "kernelversion": "35~20.04.1", "kernelrelease": "5.13.0-1030-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + ] + }, + { + "kernelversion": "37~20.04.1", + "kernelrelease": "5.13.0-1031-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "39~20.04.1", + "kernelrelease": "5.13.0-1033-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.13.0-1034-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb" ] }, { @@ -27407,12 +27336,12 @@ "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" ] }, { @@ -27420,12 +27349,12 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb" ] }, { @@ -27433,12 +27362,12 @@ "kernelrelease": "5.13.0-27-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" ] }, { @@ -27446,10 +27375,10 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" ] @@ -27460,11 +27389,24 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "54~20.04.1", + "kernelrelease": "5.13.0-48-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" ] }, { @@ -27472,10 +27414,10 @@ "kernelrelease": "5.14.0-1004-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb" ] }, { @@ -27483,10 +27425,10 @@ "kernelrelease": "5.14.0-1005-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" ] }, { @@ -27494,9 +27436,9 @@ "kernelrelease": "5.14.0-1018-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" ] }, @@ -27516,9 +27458,9 @@ "kernelrelease": "5.14.0-1027-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" ] }, @@ -27527,10 +27469,21 @@ "kernelrelease": "5.14.0-1031-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" + ] + }, + { + "kernelversion": "47", + "kernelrelease": "5.14.0-1042-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb" ] }, { @@ -27538,10 +27491,76 @@ "kernelrelease": "5.15.0-1003-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1006-gcp-5.15", + "target": "ubuntu-gcp-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1007-oracle-5.15", + "target": "ubuntu-oracle-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" + ] + }, + { + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1008-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" + ] + }, + { + "kernelversion": "11~20.04.1", + "kernelrelease": "5.15.0-1008-intel-iotg-5.15", + "target": "ubuntu-intel-iotg-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { @@ -27549,10 +27568,10 @@ "kernelrelease": "5.4.0-1005-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb" ] }, { @@ -27560,10 +27579,10 @@ "kernelrelease": "5.4.0-1006-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" ] }, { @@ -27571,21 +27590,10 @@ "kernelrelease": "5.4.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1008-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" ] }, { @@ -27593,20 +27601,31 @@ "kernelrelease": "5.4.0-1008-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" ] }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1008-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + ] + }, { "kernelversion": "10", "kernelrelease": "5.4.0-1009-gkeop", "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" ] }, @@ -27615,10 +27634,10 @@ "kernelrelease": "5.4.0-1010-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { @@ -27626,21 +27645,21 @@ "kernelrelease": "5.4.0-1010-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { @@ -27656,13 +27675,13 @@ }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1011-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" ] }, { @@ -27670,10 +27689,10 @@ "kernelrelease": "5.4.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" ] }, { @@ -27681,10 +27700,10 @@ "kernelrelease": "5.4.0-1011-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb" ] }, { @@ -27692,21 +27711,10 @@ "kernelrelease": "5.4.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.4.0-1012-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" ] }, { @@ -27715,20 +27723,20 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.4.0-1014-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "13", + "kernelrelease": "5.4.0-1012-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" ] }, { @@ -27737,20 +27745,20 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1014-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" ] }, { @@ -27758,10 +27766,10 @@ "kernelrelease": "5.4.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb" ] }, { @@ -27769,10 +27777,10 @@ "kernelrelease": "5.4.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" ] }, { @@ -27780,10 +27788,21 @@ "kernelrelease": "5.4.0-1015-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" ] }, { @@ -27791,9 +27810,9 @@ "kernelrelease": "5.4.0-1016-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" ] }, @@ -27802,9 +27821,9 @@ "kernelrelease": "5.4.0-1016-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" ] }, @@ -27813,9 +27832,9 @@ "kernelrelease": "5.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" ] }, @@ -27826,52 +27845,52 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1018-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1018-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1018-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" ] }, { @@ -27879,9 +27898,9 @@ "kernelrelease": "5.4.0-1018-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" ] }, @@ -27890,10 +27909,10 @@ "kernelrelease": "5.4.0-1018-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" ] }, { @@ -27901,32 +27920,32 @@ "kernelrelease": "5.4.0-1019-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1019-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" ] }, { @@ -27934,32 +27953,32 @@ "kernelrelease": "5.4.0-1019-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1020-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1020-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -27967,10 +27986,10 @@ "kernelrelease": "5.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -27978,10 +27997,10 @@ "kernelrelease": "5.4.0-1020-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" ] }, { @@ -27989,10 +28008,21 @@ "kernelrelease": "5.4.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" + ] + }, + { + "kernelversion": "21", + "kernelrelease": "5.4.0-1021-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" ] }, { @@ -28002,8 +28032,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" ] }, { @@ -28011,43 +28041,21 @@ "kernelrelease": "5.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, - { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb" - ] - }, { "kernelversion": "22", "kernelrelease": "5.4.0-1021-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb" ] }, { @@ -28055,10 +28063,10 @@ "kernelrelease": "5.4.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { @@ -28066,10 +28074,21 @@ "kernelrelease": "5.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb" ] }, { @@ -28077,10 +28096,10 @@ "kernelrelease": "5.4.0-1022-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb" ] }, { @@ -28088,10 +28107,21 @@ "kernelrelease": "5.4.0-1022-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb" + ] + }, + { + "kernelversion": "23", + "kernelrelease": "5.4.0-1023-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb" ] }, { @@ -28105,26 +28135,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb" ] }, - { - "kernelversion": "23", - "kernelrelease": "5.4.0-1023-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" - ] - }, { "kernelversion": "24", "kernelrelease": "5.4.0-1023-gkeop", "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" ] }, { @@ -28132,21 +28151,21 @@ "kernelrelease": "5.4.0-1023-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1024-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb" ] }, { @@ -28154,21 +28173,21 @@ "kernelrelease": "5.4.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" ] }, { @@ -28176,10 +28195,10 @@ "kernelrelease": "5.4.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb" ] }, { @@ -28187,9 +28206,9 @@ "kernelrelease": "5.4.0-1024-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb" ] }, @@ -28209,32 +28228,32 @@ "kernelrelease": "5.4.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1025-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { @@ -28242,9 +28261,9 @@ "kernelrelease": "5.4.0-1025-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" ] }, @@ -28253,10 +28272,21 @@ "kernelrelease": "5.4.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" + ] + }, + { + "kernelversion": "27", + "kernelrelease": "5.4.0-1026-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" ] }, { @@ -28265,20 +28295,20 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.4.0-1026-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "29", + "kernelrelease": "5.4.0-1026-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb" ] }, { @@ -28286,21 +28316,32 @@ "kernelrelease": "5.4.0-1027-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" ] }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" + ] + }, { "kernelversion": "29", "kernelrelease": "5.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" ] }, { @@ -28308,21 +28349,10 @@ "kernelrelease": "5.4.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" ] }, { @@ -28330,10 +28360,10 @@ "kernelrelease": "5.4.0-1029-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" ] }, { @@ -28341,10 +28371,10 @@ "kernelrelease": "5.4.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" ] }, { @@ -28352,10 +28382,10 @@ "kernelrelease": "5.4.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" ] }, { @@ -28363,10 +28393,10 @@ "kernelrelease": "5.4.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb" ] }, { @@ -28376,8 +28406,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" ] }, { @@ -28385,8 +28415,8 @@ "kernelrelease": "5.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] @@ -28396,10 +28426,10 @@ "kernelrelease": "5.4.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { @@ -28407,9 +28437,9 @@ "kernelrelease": "5.4.0-1031-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, @@ -28418,10 +28448,10 @@ "kernelrelease": "5.4.0-1032-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" ] }, { @@ -28429,32 +28459,32 @@ "kernelrelease": "5.4.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1033-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1033-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1033-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1033-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" ] }, { @@ -28462,10 +28492,10 @@ "kernelrelease": "5.4.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" ] }, { @@ -28473,10 +28503,10 @@ "kernelrelease": "5.4.0-1034-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" ] }, { @@ -28484,10 +28514,10 @@ "kernelrelease": "5.4.0-1035-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" ] }, { @@ -28495,10 +28525,10 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" ] }, { @@ -28506,10 +28536,10 @@ "kernelrelease": "5.4.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" ] }, { @@ -28517,10 +28547,10 @@ "kernelrelease": "5.4.0-1036-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" ] }, { @@ -28529,9 +28559,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb" ] }, { @@ -28541,19 +28571,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1036-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb" ] }, { @@ -28562,20 +28581,20 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.4.0-1037-aws", - "target": "ubuntu-aws", + "kernelversion": "37", + "kernelrelease": "5.4.0-1036-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" ] }, { @@ -28583,21 +28602,32 @@ "kernelrelease": "5.4.0-1037-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" ] }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1037-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" + ] + }, { "kernelversion": "40", "kernelrelease": "5.4.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" ] }, { @@ -28605,32 +28635,32 @@ "kernelrelease": "5.4.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1037-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1037-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1037-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1037-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb" ] }, { @@ -28638,10 +28668,10 @@ "kernelrelease": "5.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb" ] }, { @@ -28650,8 +28680,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb" ] }, @@ -28661,31 +28691,31 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1038-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1038-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1038-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1038-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb" ] }, { @@ -28694,8 +28724,8 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb" ] }, @@ -28704,10 +28734,10 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { @@ -28715,8 +28745,8 @@ "kernelrelease": "5.4.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb" ] @@ -28726,8 +28756,8 @@ "kernelrelease": "5.4.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" ] @@ -28738,11 +28768,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb" ] }, { @@ -28750,9 +28780,9 @@ "kernelrelease": "5.4.0-1040-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" ] }, @@ -28761,32 +28791,21 @@ "kernelrelease": "5.4.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" ] }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" - ] - }, { "kernelversion": "43", "kernelrelease": "5.4.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb" ] }, { @@ -28794,10 +28813,21 @@ "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" ] }, { @@ -28805,10 +28835,10 @@ "kernelrelease": "5.4.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" ] }, { @@ -28816,10 +28846,10 @@ "kernelrelease": "5.4.0-1041-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" ] }, { @@ -28828,9 +28858,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" ] }, { @@ -28838,10 +28868,10 @@ "kernelrelease": "5.4.0-1042-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb" ] }, { @@ -28849,32 +28879,32 @@ "kernelrelease": "5.4.0-1042-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1043-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1043-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb" ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1043-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1043-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { @@ -28884,8 +28914,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-1043-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb" ] }, { @@ -28899,37 +28940,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb" ] }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1043-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb" - ] - }, { "kernelversion": "44", "kernelrelease": "5.4.0-1043-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1044-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1044-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, { @@ -28937,21 +28967,21 @@ "kernelrelease": "5.4.0-1044-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1044-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1044-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" ] }, { @@ -28959,10 +28989,10 @@ "kernelrelease": "5.4.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" ] }, { @@ -28971,9 +29001,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, { @@ -28981,10 +29011,10 @@ "kernelrelease": "5.4.0-1045-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" ] }, { @@ -28992,32 +29022,32 @@ "kernelrelease": "5.4.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" ] }, { "kernelversion": "48", - "kernelrelease": "5.4.0-1046-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1046-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" ] }, { "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1046-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb" ] }, { @@ -29025,10 +29055,21 @@ "kernelrelease": "5.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" + ] + }, + { + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { @@ -29036,10 +29077,10 @@ "kernelrelease": "5.4.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb" ] }, { @@ -29047,43 +29088,43 @@ "kernelrelease": "5.4.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" ] }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" - ] - }, { "kernelversion": "49", "kernelrelease": "5.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" ] }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + ] + }, { "kernelversion": "49", "kernelrelease": "5.4.0-1047-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { @@ -29092,9 +29133,20 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" ] }, { @@ -29108,37 +29160,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" ] }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" - ] - }, { "kernelversion": "52", "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb" ] }, { @@ -29147,9 +29177,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { @@ -29159,8 +29189,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + ] + }, + { + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { @@ -29168,9 +29209,9 @@ "kernelrelease": "5.4.0-1049-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb" ] }, @@ -29181,8 +29222,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" ] }, { @@ -29190,10 +29231,10 @@ "kernelrelease": "5.4.0-1049-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" ] }, { @@ -29201,21 +29242,10 @@ "kernelrelease": "5.4.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" ] }, { @@ -29229,14 +29259,25 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + ] + }, { "kernelversion": "55", "kernelrelease": "5.4.0-1051-gcp", "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" ] }, @@ -29247,30 +29288,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1052-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1052-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb" ] }, { @@ -29278,10 +29319,10 @@ "kernelrelease": "5.4.0-1052-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb" ] }, { @@ -29289,8 +29330,8 @@ "kernelrelease": "5.4.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb" ] @@ -29302,8 +29343,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" ] }, { @@ -29311,10 +29352,10 @@ "kernelrelease": "5.4.0-1053-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" ] }, { @@ -29322,10 +29363,21 @@ "kernelrelease": "5.4.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb" + ] + }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" ] }, { @@ -29333,21 +29385,21 @@ "kernelrelease": "5.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-gke", - "target": "ubuntu-gke", + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" ] }, { @@ -29356,20 +29408,20 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-aws", - "target": "ubuntu-aws", + "kernelversion": "57", + "kernelrelease": "5.4.0-1055-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb" ] }, { @@ -29377,21 +29429,21 @@ "kernelrelease": "5.4.0-1055-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.4.0-1055-azure", - "target": "ubuntu-azure", + "kernelversion": "59", + "kernelrelease": "5.4.0-1056-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" ] }, { @@ -29399,21 +29451,21 @@ "kernelrelease": "5.4.0-1056-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.4.0-1056-aws", - "target": "ubuntu-aws", + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" ] }, { @@ -29422,20 +29474,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1056-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" ] }, { @@ -29443,10 +29484,10 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" ] }, { @@ -29454,9 +29495,9 @@ "kernelrelease": "5.4.0-1057-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb" ] }, @@ -29465,9 +29506,9 @@ "kernelrelease": "5.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, @@ -29476,10 +29517,10 @@ "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { @@ -29487,32 +29528,32 @@ "kernelrelease": "5.4.0-1058-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1059-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1059-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" ] }, { @@ -29520,8 +29561,8 @@ "kernelrelease": "5.4.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" ] @@ -29531,10 +29572,10 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" ] }, { @@ -29542,10 +29583,10 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" ] }, { @@ -29553,10 +29594,10 @@ "kernelrelease": "5.4.0-1067-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb" ] }, { @@ -29564,8 +29605,8 @@ "kernelrelease": "5.4.0-1067-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" ] @@ -29575,10 +29616,10 @@ "kernelrelease": "5.4.0-1067-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" ] }, { @@ -29586,10 +29627,21 @@ "kernelrelease": "5.4.0-1067-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb" + ] + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1068-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb" ] }, { @@ -29597,10 +29649,10 @@ "kernelrelease": "5.4.0-1068-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" ] }, { @@ -29608,10 +29660,10 @@ "kernelrelease": "5.4.0-1068-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" ] }, { @@ -29619,21 +29671,10 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" ] }, { @@ -29641,10 +29682,10 @@ "kernelrelease": "5.4.0-1072-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" ] }, { @@ -29652,10 +29693,21 @@ "kernelrelease": "5.4.0-1072-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" ] }, { @@ -29663,10 +29715,10 @@ "kernelrelease": "5.4.0-1072-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" ] }, { @@ -29674,10 +29726,10 @@ "kernelrelease": "5.4.0-1072-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" ] }, { @@ -29691,15 +29743,83 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb" ] }, + { + "kernelversion": "83", + "kernelrelease": "5.4.0-1076-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb" + ] + }, { "kernelversion": "80", "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + ] + }, + { + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb" + ] + }, + { + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb" + ] + }, + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1083-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb" + ] + }, + { + "kernelversion": "87+cvm1", + "kernelrelease": "5.4.0-1083-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb" + ] + }, + { + "kernelversion": "132", + "kernelrelease": "5.4.0-117", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb" ] }, { @@ -29708,11 +29828,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb" ] }, { @@ -29720,12 +29840,12 @@ "kernelrelease": "5.4.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb" ] }, { @@ -29734,11 +29854,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb" ] }, { @@ -29746,12 +29866,12 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" ] }, { @@ -29759,12 +29879,12 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" ] }, { @@ -29772,11 +29892,11 @@ "kernelrelease": "5.4.0-39", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" ] }, @@ -29785,12 +29905,12 @@ "kernelrelease": "5.4.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb" ] }, { @@ -29798,12 +29918,12 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" ] }, { @@ -29813,10 +29933,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb" ] }, { @@ -29824,12 +29944,12 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb" ] }, { @@ -29837,12 +29957,12 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb" ] }, { @@ -29850,12 +29970,12 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb" ] }, { @@ -29864,11 +29984,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb" ] }, { @@ -29876,12 +29996,12 @@ "kernelrelease": "5.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb" ] }, { @@ -29889,12 +30009,12 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb" ] }, { @@ -29902,12 +30022,12 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb" ] }, { @@ -29915,11 +30035,11 @@ "kernelrelease": "5.4.0-60", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb" ] }, @@ -29928,12 +30048,12 @@ "kernelrelease": "5.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb" ] }, { @@ -29941,12 +30061,12 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb" ] }, { @@ -29954,11 +30074,11 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb" ] }, @@ -29967,12 +30087,12 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb" ] }, { @@ -29980,12 +30100,12 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" ] }, { @@ -29994,11 +30114,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb" ] }, { @@ -30007,11 +30127,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" ] }, { @@ -30019,11 +30139,11 @@ "kernelrelease": "5.4.0-73", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" ] }, @@ -30033,10 +30153,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" ] }, @@ -30045,12 +30165,12 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb" ] }, { @@ -30059,11 +30179,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb" ] }, { @@ -30071,12 +30191,12 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" ] }, { @@ -30084,12 +30204,12 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" ] }, { @@ -30097,12 +30217,12 @@ "kernelrelease": "5.4.0-86", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb" ] }, { @@ -30110,12 +30230,12 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb" ] }, { @@ -30124,10 +30244,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb" ] }, @@ -30136,12 +30256,12 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" ] }, { @@ -30149,12 +30269,12 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb" ] }, { @@ -30162,12 +30282,12 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" ] }, { @@ -30176,11 +30296,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" ] }, { @@ -30189,11 +30309,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" ] }, { @@ -30201,10 +30321,10 @@ "kernelrelease": "5.6.0-1008-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" ] }, { @@ -30212,10 +30332,10 @@ "kernelrelease": "5.6.0-1010-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb" ] }, { @@ -30223,9 +30343,9 @@ "kernelrelease": "5.6.0-1011-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" ] }, @@ -30234,10 +30354,10 @@ "kernelrelease": "5.6.0-1013-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb" ] }, { @@ -30245,10 +30365,10 @@ "kernelrelease": "5.6.0-1017-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb" ] }, { @@ -30256,10 +30376,10 @@ "kernelrelease": "5.6.0-1018-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb" ] }, { @@ -30267,10 +30387,10 @@ "kernelrelease": "5.6.0-1020-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb" ] }, { @@ -30278,10 +30398,10 @@ "kernelrelease": "5.6.0-1023-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" ] }, { @@ -30289,9 +30409,9 @@ "kernelrelease": "5.6.0-1026-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" ] }, @@ -30302,8 +30422,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb" ] }, { @@ -30311,8 +30431,8 @@ "kernelrelease": "5.6.0-1031-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" ] @@ -30324,8 +30444,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" ] }, { @@ -30344,10 +30464,10 @@ "kernelrelease": "5.6.0-1039-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" ] }, { @@ -30355,10 +30475,10 @@ "kernelrelease": "5.6.0-1042-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" ] }, { @@ -30366,10 +30486,10 @@ "kernelrelease": "5.6.0-1047-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb" ] }, { @@ -30377,10 +30497,10 @@ "kernelrelease": "5.6.0-1048-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" ] }, { @@ -30388,9 +30508,9 @@ "kernelrelease": "5.6.0-1050-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" ] }, @@ -30399,10 +30519,10 @@ "kernelrelease": "5.6.0-1052-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" ] }, { @@ -30410,10 +30530,10 @@ "kernelrelease": "5.6.0-1053-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" ] }, { @@ -30421,9 +30541,9 @@ "kernelrelease": "5.6.0-1054-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" ] }, @@ -30432,10 +30552,10 @@ "kernelrelease": "5.6.0-1055-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb" ] }, { @@ -30443,10 +30563,10 @@ "kernelrelease": "5.6.0-1056-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb" ] }, { @@ -30454,9 +30574,9 @@ "kernelrelease": "5.8.0-1031-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, @@ -30465,10 +30585,10 @@ "kernelrelease": "5.8.0-1032-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" ] }, { @@ -30476,10 +30596,10 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" ] }, { @@ -30487,10 +30607,10 @@ "kernelrelease": "5.8.0-1035-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { @@ -30498,10 +30618,10 @@ "kernelrelease": "5.8.0-1035-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" ] }, { @@ -30509,10 +30629,10 @@ "kernelrelease": "5.8.0-1037-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, { @@ -30520,10 +30640,10 @@ "kernelrelease": "5.8.0-1038-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" ] }, { @@ -30542,10 +30662,10 @@ "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" ] }, { @@ -30553,10 +30673,10 @@ "kernelrelease": "5.8.0-1039-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" ] }, { @@ -30564,10 +30684,10 @@ "kernelrelease": "5.8.0-1039-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" ] }, { @@ -30575,9 +30695,9 @@ "kernelrelease": "5.8.0-1040-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb" ] }, @@ -30587,9 +30707,9 @@ "target": "ubuntu-aws-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" ] }, { @@ -30597,10 +30717,10 @@ "kernelrelease": "5.8.0-1041-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" ] }, { @@ -30608,10 +30728,10 @@ "kernelrelease": "5.8.0-1042-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" ] }, { @@ -30620,8 +30740,8 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" ] }, @@ -30631,11 +30751,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb" ] }, { @@ -30643,12 +30763,12 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" ] }, { @@ -30656,12 +30776,12 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" ] }, { @@ -30669,12 +30789,12 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" ] }, { @@ -30682,12 +30802,12 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" ] }, { @@ -30695,11 +30815,11 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb" ] }, @@ -30708,12 +30828,12 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" ] }, { @@ -30721,12 +30841,12 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb" ] }, { @@ -30734,12 +30854,12 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb" ] }, { @@ -30748,10 +30868,10 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" ] }, @@ -30760,12 +30880,12 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb" ] }, { @@ -30773,12 +30893,12 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb" ] }, { @@ -30786,10 +30906,10 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb" ] @@ -30799,12 +30919,12 @@ "kernelrelease": "5.8.0-59-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb" ] }, { @@ -30812,12 +30932,12 @@ "kernelrelease": "5.8.0-63-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" ] }, { @@ -30826,8 +30946,8 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" ] }, @@ -30836,8 +30956,8 @@ "kernelrelease": "5.10.0-1032-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" ] @@ -30847,10 +30967,10 @@ "kernelrelease": "5.10.0-1034-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" ] }, { @@ -30859,9 +30979,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" ] }, { @@ -30869,10 +30989,10 @@ "kernelrelease": "5.11.0-1007-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" ] }, { @@ -30880,9 +31000,9 @@ "kernelrelease": "5.11.0-1008-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb" ] }, @@ -30891,8 +31011,8 @@ "kernelrelease": "5.11.0-1009-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb" ] @@ -30902,10 +31022,10 @@ "kernelrelease": "5.11.0-1009-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" ] }, { @@ -30913,9 +31033,9 @@ "kernelrelease": "5.13.0-1007-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb" ] }, @@ -30924,10 +31044,10 @@ "kernelrelease": "5.13.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, { @@ -30936,31 +31056,31 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1021-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1021-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" ] }, { @@ -30968,10 +31088,10 @@ "kernelrelease": "5.14.0-1010-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" ] }, { @@ -30979,10 +31099,10 @@ "kernelrelease": "5.14.0-1034-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb" ] }, { @@ -30990,10 +31110,10 @@ "kernelrelease": "5.4.0-1064-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" ] }, { @@ -31001,10 +31121,10 @@ "kernelrelease": "5.4.0-1065-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" ] }, { @@ -31014,8 +31134,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" ] }, { @@ -31023,9 +31143,9 @@ "kernelrelease": "5.4.0-1074-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb" ] }, @@ -31034,10 +31154,10 @@ "kernelrelease": "5.4.0-1076-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" ] }, { @@ -31045,10 +31165,10 @@ "kernelrelease": "5.4.0-1080-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" ] }, { @@ -31056,11 +31176,11 @@ "kernelrelease": "5.4.0-54", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb" ] }, @@ -31069,11 +31189,11 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" ] }, @@ -31082,10 +31202,10 @@ "kernelrelease": "5.6.0-1021-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" ] }, { @@ -31093,10 +31213,10 @@ "kernelrelease": "5.6.0-1027-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" ] }, { @@ -31104,10 +31224,10 @@ "kernelrelease": "5.6.0-1034-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb" ] }, { @@ -31115,10 +31235,10 @@ "kernelrelease": "5.6.0-1035-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" ] }, { @@ -31126,10 +31246,10 @@ "kernelrelease": "5.6.0-1036-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb" ] }, { @@ -31137,10 +31257,10 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" ] }, { @@ -31148,10 +31268,10 @@ "kernelrelease": "5.8.0-1042-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" ] }, { @@ -31159,12 +31279,12 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb" ] }, { @@ -31172,12 +31292,12 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb" ] }, { @@ -31185,12 +31305,12 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb" ] }, { @@ -31198,12 +31318,12 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb" ] }, { @@ -31211,12 +31331,12 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" ] }, { @@ -31224,10 +31344,21 @@ "kernelrelease": "5.4.0-1009-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" ] }, { @@ -31235,10 +31366,10 @@ "kernelrelease": "5.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb" ] }, { @@ -31246,32 +31377,21 @@ "kernelrelease": "5.4.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" ] }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" - ] - }, { "kernelversion": "10", "kernelrelease": "5.4.0-1010-azure", "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" ] }, { @@ -31279,12 +31399,12 @@ "kernelrelease": "5.4.0-26", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" ] }, { @@ -31292,10 +31412,10 @@ "kernelrelease": "5.6.0-1007-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb" ] }, { @@ -31303,10 +31423,10 @@ "kernelrelease": "5.11.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" ] }, { @@ -31314,10 +31434,10 @@ "kernelrelease": "5.11.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb" ] }, { @@ -31325,10 +31445,10 @@ "kernelrelease": "5.11.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { @@ -31336,10 +31456,10 @@ "kernelrelease": "5.11.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" ] }, { @@ -31347,21 +31467,10 @@ "kernelrelease": "5.11.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb" ] }, { @@ -31369,8 +31478,8 @@ "kernelrelease": "5.11.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb" ] @@ -31380,10 +31489,21 @@ "kernelrelease": "5.11.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb" ] }, { @@ -31391,10 +31511,10 @@ "kernelrelease": "5.11.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" ] }, { @@ -31402,12 +31522,12 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" ] }, { @@ -31415,10 +31535,10 @@ "kernelrelease": "5.11.0-1004-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" ] }, { @@ -31426,10 +31546,10 @@ "kernelrelease": "5.11.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb" ] }, { @@ -31437,9 +31557,9 @@ "kernelrelease": "5.11.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb" ] }, @@ -31448,10 +31568,10 @@ "kernelrelease": "5.11.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb" ] }, { @@ -31461,8 +31581,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" ] }, { @@ -31470,12 +31590,12 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb" ] }, { @@ -31484,9 +31604,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" ] }, { @@ -31494,10 +31614,10 @@ "kernelrelease": "5.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" ] }, { @@ -31505,10 +31625,10 @@ "kernelrelease": "5.13.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { @@ -31516,10 +31636,10 @@ "kernelrelease": "5.13.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" ] }, { @@ -31527,21 +31647,21 @@ "kernelrelease": "5.13.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1007-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1007-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" ] }, { @@ -31549,21 +31669,21 @@ "kernelrelease": "5.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1007-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1007-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, { @@ -31571,32 +31691,32 @@ "kernelrelease": "5.13.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1008-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1008-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" ] }, { @@ -31605,8 +31725,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" ] }, @@ -31615,32 +31735,32 @@ "kernelrelease": "5.13.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.13.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb" ] }, { @@ -31649,9 +31769,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb" ] }, { @@ -31659,10 +31779,10 @@ "kernelrelease": "5.13.0-1012-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" ] }, { @@ -31670,10 +31790,10 @@ "kernelrelease": "5.13.0-1013-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, { @@ -31682,20 +31802,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.13.0-1013-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, { @@ -31705,19 +31814,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws", + "kernelversion": "16", + "kernelrelease": "5.13.0-1013-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" ] }, { @@ -31725,10 +31834,10 @@ "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" ] }, { @@ -31736,10 +31845,10 @@ "kernelrelease": "5.13.0-1014-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb" ] }, { @@ -31747,10 +31856,10 @@ "kernelrelease": "5.13.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" ] }, { @@ -31759,9 +31868,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb" ] }, { @@ -31769,9 +31878,9 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb" ] }, @@ -31782,8 +31891,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" ] }, { @@ -31791,10 +31900,10 @@ "kernelrelease": "5.13.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb" ] }, { @@ -31802,10 +31911,10 @@ "kernelrelease": "5.13.0-1019-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { @@ -31813,32 +31922,32 @@ "kernelrelease": "5.13.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1020-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, { @@ -31846,10 +31955,10 @@ "kernelrelease": "5.13.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb" ] }, { @@ -31857,10 +31966,10 @@ "kernelrelease": "5.13.0-1022-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb" ] }, { @@ -31868,10 +31977,10 @@ "kernelrelease": "5.13.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" ] }, { @@ -31879,10 +31988,10 @@ "kernelrelease": "5.13.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" ] }, { @@ -31890,10 +31999,10 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" ] }, { @@ -31901,10 +32010,10 @@ "kernelrelease": "5.13.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb" ] }, { @@ -31912,10 +32021,10 @@ "kernelrelease": "5.13.0-1023-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb" ] }, { @@ -31923,10 +32032,10 @@ "kernelrelease": "5.13.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" ] }, { @@ -31934,10 +32043,10 @@ "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" ] }, { @@ -31946,9 +32055,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" ] }, { @@ -31957,9 +32066,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb" ] }, { @@ -31967,10 +32076,10 @@ "kernelrelease": "5.13.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" ] }, { @@ -31978,10 +32087,10 @@ "kernelrelease": "5.13.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb" ] }, { @@ -31989,21 +32098,10 @@ "kernelrelease": "5.13.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.13.0-1025-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb" ] }, { @@ -32011,43 +32109,21 @@ "kernelrelease": "5.13.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" ] }, - { - "kernelversion": "26", - "kernelrelease": "5.13.0-1025-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1025_5.13.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1025-kvm_5.13.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1025_5.13.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1025-kvm_5.13.0-1025.26_amd64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.13.0-1026-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb" - ] - }, { "kernelversion": "30", - "kernelrelease": "5.13.0-1026-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb" ] }, { @@ -32055,10 +32131,10 @@ "kernelrelease": "5.13.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb" ] }, { @@ -32066,54 +32142,54 @@ "kernelrelease": "5.13.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.13.0-1029-oracle", + "kernelversion": "33", + "kernelrelease": "5.13.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.13.0-1031-oracle", + "kernelversion": "34", + "kernelrelease": "5.13.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb" ] }, { @@ -32121,11 +32197,11 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb" ] }, @@ -32134,12 +32210,12 @@ "kernelrelease": "5.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb" ] }, { @@ -32147,12 +32223,12 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb" ] }, { @@ -32160,12 +32236,12 @@ "kernelrelease": "5.13.0-32", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" ] }, { @@ -32173,11 +32249,11 @@ "kernelrelease": "5.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb" ] }, @@ -32186,11 +32262,11 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" ] }, @@ -32199,12 +32275,12 @@ "kernelrelease": "5.13.0-38", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb" ] }, { @@ -32212,12 +32288,12 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb" ] }, { @@ -32225,12 +32301,12 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" ] }, { @@ -32238,12 +32314,12 @@ "kernelrelease": "5.13.0-42", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb" ] }, { @@ -32252,11 +32328,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb" ] }, { @@ -32264,11 +32340,11 @@ "kernelrelease": "5.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb" ] }, @@ -32277,25 +32353,12 @@ "kernelrelease": "5.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.13.0-46", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb" ] }, { @@ -32303,10 +32366,10 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" ] }, { @@ -32314,10 +32377,10 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" ] }, { @@ -32325,9 +32388,9 @@ "kernelrelease": "5.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" ] }, @@ -32336,9 +32399,9 @@ "kernelrelease": "5.13.0-1012-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb" ] }, @@ -32347,10 +32410,10 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" ] }, { @@ -32359,20 +32422,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" ] }, { @@ -32386,14 +32438,25 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + ] + }, { "kernelversion": "21", "kernelrelease": "5.13.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb" ] }, @@ -32402,10 +32465,10 @@ "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" ] }, { @@ -32413,10 +32476,10 @@ "kernelrelease": "5.13.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" ] }, { @@ -32424,10 +32487,10 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb" ] }, { @@ -32435,10 +32498,10 @@ "kernelrelease": "5.13.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb" ] }, { @@ -32446,10 +32509,21 @@ "kernelrelease": "5.13.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" ] }, { @@ -32457,21 +32531,43 @@ "kernelrelease": "5.13.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-gcp", + "kernelversion": "29", + "kernelrelease": "5.13.0-1027-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-1028-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.13.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb" ] }, { @@ -32479,10 +32575,21 @@ "kernelrelease": "5.13.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.13.0-1033-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" ] }, { @@ -32490,12 +32597,12 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" ] }, { @@ -32503,12 +32610,12 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb" ] }, { @@ -32518,10 +32625,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" ] }, { @@ -32529,12 +32636,12 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" ] }, { @@ -32542,12 +32649,12 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb" ] }, { @@ -32555,10 +32662,10 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" ] @@ -32568,12 +32675,25 @@ "kernelrelease": "5.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb" + ] + }, + { + "kernelversion": "54", + "kernelrelease": "5.13.0-48", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb" ] }, { @@ -32581,23 +32701,69 @@ "kernelrelease": "5.13.0-1013-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb" ] }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1026-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1026-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.13.0-1031-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" + ] + }, { "kernelversion": "20", "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" + ] + }, + { + "kernelversion": "51", + "kernelrelease": "5.13.0-46", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb" ] }, { @@ -32605,8 +32771,8 @@ "kernelrelease": "5.13.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" ] @@ -32617,9 +32783,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb" ] }, { @@ -32627,10 +32793,10 @@ "kernelrelease": "5.13.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" ] }, { @@ -32639,9 +32805,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" ] }, { @@ -32650,11 +32816,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" ] }, { @@ -32662,10 +32828,10 @@ "kernelrelease": "5.15.0-1004-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb" ] }, { @@ -32673,10 +32839,10 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb" ] }, { @@ -32685,9 +32851,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { @@ -32695,10 +32861,10 @@ "kernelrelease": "5.15.0-1006-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb" ] }, { @@ -32706,8 +32872,8 @@ "kernelrelease": "5.15.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb" ] @@ -32718,20 +32884,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1006-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb" ] }, { @@ -32739,10 +32894,21 @@ "kernelrelease": "5.15.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1007-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { @@ -32750,10 +32916,10 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb" ] }, { @@ -32767,59 +32933,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" ] }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1007-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" - ] - }, { "kernelversion": "10", "kernelrelease": "5.15.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.15.0-1008-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1008-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb" ] }, { @@ -32827,9 +32960,9 @@ "kernelrelease": "5.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb" ] }, @@ -32838,10 +32971,10 @@ "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" ] }, { @@ -32850,9 +32983,9 @@ "target": "ubuntu-lowlatency", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" ] }, { @@ -32860,10 +32993,10 @@ "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" ] }, { @@ -32871,32 +33004,32 @@ "kernelrelease": "5.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.15.0-33", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-33-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.15.0-33-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-33", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" ] }, { @@ -32904,10 +33037,10 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" ] }, { @@ -32915,21 +33048,10 @@ "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.15.0-36", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-36-generic_5.15.0-36.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-36_5.15.0-36.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-36-generic_5.15.0-36.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-36_5.15.0-36.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb" ] }, { @@ -32937,8 +33059,8 @@ "kernelrelease": "5.17.0-1004-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb" ] @@ -32948,21 +33070,98 @@ "kernelrelease": "5.17.0-1005-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.17.0-1009-oem-5.17", - "target": "ubuntu-oem-5.17", + "kernelversion": "12", + "kernelrelease": "5.15.0-1008-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.15.0-1008-intel-iotg", + "target": "ubuntu-intel-iotg", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "5.15.0-1009-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "5.15.0-1010-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.15.0-1010-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.15.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.15.0-37-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1009_5.17.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1009-oem_5.17.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1009-oem_5.17.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1009_5.17.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb" ] }, { @@ -32970,19 +33169,85 @@ "kernelrelease": "5.17.0-1006-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb" ] }, + { + "kernelversion": "12", + "kernelrelease": "5.17.0-1011-oem-5.17", + "target": "ubuntu-oem-5.17", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1006-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1007-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.15.0-1008-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1008-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.15.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + ] + }, { "kernelversion": "2", "kernelrelease": "5.15.0-1002-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" ] @@ -32993,9 +33258,9 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" ] }, { @@ -33003,10 +33268,10 @@ "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" ] }, { @@ -33014,10 +33279,10 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" ] }, { @@ -33025,10 +33290,10 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" ] }, { @@ -33036,9 +33301,9 @@ "kernelrelease": "4.15.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" ] }, @@ -33047,12 +33312,12 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb" ] }, { @@ -33061,11 +33326,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb" ] }, { @@ -33073,12 +33338,12 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb" ] }, { @@ -33086,12 +33351,12 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" ] }, { @@ -33099,12 +33364,12 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" ] }, { @@ -33112,11 +33377,11 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" ] }, @@ -33125,12 +33390,12 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb" ] }, { @@ -33138,12 +33403,12 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" ] }, { @@ -33151,12 +33416,12 @@ "kernelrelease": "3.13.0-110", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" ] }, { @@ -33164,12 +33429,12 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb" ] }, { @@ -33177,12 +33442,12 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" ] }, { @@ -33190,12 +33455,12 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb" ] }, { @@ -33203,12 +33468,12 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb" ] }, { @@ -33217,11 +33482,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" ] }, { @@ -33231,10 +33496,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" ] }, { @@ -33242,12 +33507,12 @@ "kernelrelease": "3.13.0-123", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" ] }, { @@ -33257,10 +33522,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb" ] }, { @@ -33268,12 +33533,12 @@ "kernelrelease": "3.13.0-126", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" ] }, { @@ -33281,12 +33546,12 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" ] }, { @@ -33295,11 +33560,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb" ] }, { @@ -33307,12 +33572,12 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb" ] }, { @@ -33320,11 +33585,11 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb" ] }, @@ -33333,12 +33598,12 @@ "kernelrelease": "3.13.0-135", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb" ] }, { @@ -33346,12 +33611,12 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" ] }, { @@ -33360,10 +33625,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb" ] }, @@ -33373,11 +33638,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" ] }, { @@ -33385,12 +33650,12 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb" ] }, { @@ -33398,11 +33663,11 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb" ] }, @@ -33411,12 +33676,12 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" ] }, { @@ -33424,12 +33689,12 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" ] }, { @@ -33437,12 +33702,12 @@ "kernelrelease": "3.13.0-149", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" ] }, { @@ -33450,12 +33715,12 @@ "kernelrelease": "3.13.0-151", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" ] }, { @@ -33464,10 +33729,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" ] }, @@ -33476,12 +33741,12 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb" ] }, { @@ -33489,12 +33754,12 @@ "kernelrelease": "3.13.0-156", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb" ] }, { @@ -33502,12 +33767,12 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" ] }, { @@ -33516,10 +33781,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" ] }, @@ -33528,12 +33793,12 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb" ] }, { @@ -33541,12 +33806,12 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" ] }, { @@ -33554,11 +33819,11 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" ] }, @@ -33567,12 +33832,12 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" ] }, { @@ -33580,10 +33845,10 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb" ] @@ -33594,11 +33859,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" ] }, { @@ -33606,9 +33871,9 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb" @@ -33619,12 +33884,12 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb" ] }, { @@ -33632,12 +33897,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" ] }, { @@ -33645,12 +33910,12 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" ] }, { @@ -33658,12 +33923,12 @@ "kernelrelease": "3.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb" ] }, { @@ -33671,12 +33936,12 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" ] }, { @@ -33684,9 +33949,9 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" @@ -33697,12 +33962,12 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb" ] }, { @@ -33711,11 +33976,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" ] }, { @@ -33725,10 +33990,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb" ] }, { @@ -33737,11 +34002,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb" ] }, { @@ -33749,12 +34014,12 @@ "kernelrelease": "3.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb" ] }, { @@ -33762,12 +34027,12 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb" ] }, { @@ -33775,12 +34040,12 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb" ] }, { @@ -33788,12 +34053,12 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" ] }, { @@ -33801,12 +34066,12 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" ] }, { @@ -33814,12 +34079,12 @@ "kernelrelease": "3.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb" ] }, { @@ -33827,12 +34092,12 @@ "kernelrelease": "3.13.0-46", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb" ] }, { @@ -33842,9 +34107,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb" ] }, @@ -33853,12 +34118,12 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, { @@ -33866,12 +34131,12 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb" ] }, { @@ -33879,11 +34144,11 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb" ] }, @@ -33892,12 +34157,12 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb" ] }, { @@ -33905,12 +34170,12 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb" ] }, { @@ -33918,11 +34183,11 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb" ] }, @@ -33931,12 +34196,12 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb" ] }, { @@ -33944,12 +34209,12 @@ "kernelrelease": "3.13.0-58", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb" ] }, { @@ -33957,12 +34222,12 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" ] }, { @@ -33970,12 +34235,12 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" ] }, { @@ -33983,11 +34248,11 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb" ] }, @@ -33996,11 +34261,11 @@ "kernelrelease": "3.13.0-63", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb" ] }, @@ -34009,12 +34274,12 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb" ] }, { @@ -34023,11 +34288,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" ] }, { @@ -34035,12 +34300,12 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" ] }, { @@ -34048,11 +34313,11 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" ] }, @@ -34061,12 +34326,12 @@ "kernelrelease": "3.13.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" ] }, { @@ -34074,12 +34339,12 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" ] }, { @@ -34087,11 +34352,11 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb" ] }, @@ -34102,10 +34367,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb" ] }, { @@ -34113,11 +34378,11 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" ] }, @@ -34127,11 +34392,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" ] }, { @@ -34139,12 +34404,12 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb" ] }, { @@ -34152,12 +34417,12 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb" ] }, { @@ -34165,12 +34430,12 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb" ] }, { @@ -34178,11 +34443,11 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb" ] }, @@ -34191,12 +34456,12 @@ "kernelrelease": "3.13.0-87", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" ] }, { @@ -34204,12 +34469,12 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" ] }, { @@ -34217,12 +34482,12 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" ] }, { @@ -34230,12 +34495,12 @@ "kernelrelease": "3.13.0-92", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" ] }, { @@ -34243,11 +34508,11 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" ] }, @@ -34257,11 +34522,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb" ] }, { @@ -34269,12 +34534,12 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb" ] }, { @@ -34282,12 +34547,12 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb" ] }, { @@ -34295,12 +34560,12 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" ] }, { @@ -34309,11 +34574,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb" ] }, { @@ -34321,12 +34586,12 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" ] }, { @@ -34334,11 +34599,11 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" ] }, @@ -34347,12 +34612,12 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" ] }, { @@ -34360,12 +34625,12 @@ "kernelrelease": "3.16.0-33-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb" ] }, { @@ -34373,12 +34638,12 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" ] }, { @@ -34387,11 +34652,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" ] }, { @@ -34399,11 +34664,11 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb" ] }, @@ -34412,11 +34677,11 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" ] }, @@ -34427,10 +34692,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb" ] }, { @@ -34438,12 +34703,12 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb" ] }, { @@ -34451,11 +34716,11 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" ] }, @@ -34464,12 +34729,12 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" ] }, { @@ -34477,12 +34742,12 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" ] }, { @@ -34490,11 +34755,11 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb" ] }, @@ -34503,12 +34768,12 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb" ] }, { @@ -34516,12 +34781,12 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" ] }, { @@ -34529,12 +34794,12 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb" ] }, { @@ -34542,12 +34807,12 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb" ] }, { @@ -34555,12 +34820,12 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb" ] }, { @@ -34569,11 +34834,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb" ] }, { @@ -34581,12 +34846,12 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" ] }, { @@ -34594,12 +34859,12 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb" ] }, { @@ -34607,12 +34872,12 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb" ] }, { @@ -34620,12 +34885,12 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb" ] }, { @@ -34633,12 +34898,12 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb" ] }, { @@ -34646,12 +34911,12 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" ] }, { @@ -34659,12 +34924,12 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb" ] }, { @@ -34672,12 +34937,12 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" ] }, { @@ -34685,12 +34950,12 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" ] }, { @@ -34698,11 +34963,11 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" ] }, @@ -34711,12 +34976,12 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb" ] }, { @@ -34724,12 +34989,12 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb" ] }, { @@ -34737,12 +35002,12 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" ] }, { @@ -34750,12 +35015,12 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb" ] }, { @@ -34763,12 +35028,12 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb" ] }, { @@ -34776,12 +35041,12 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb" ] }, { @@ -34789,12 +35054,12 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" ] }, { @@ -34802,12 +35067,12 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" ] }, { @@ -34816,11 +35081,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" ] }, { @@ -34828,10 +35093,10 @@ "kernelrelease": "3.19.0-28-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb" ] @@ -34841,12 +35106,12 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" ] }, { @@ -34854,11 +35119,11 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb" ] }, @@ -34867,12 +35132,12 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb" ] }, { @@ -34880,12 +35145,12 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb" ] }, { @@ -34893,12 +35158,12 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" ] }, { @@ -34906,12 +35171,12 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" ] }, { @@ -34919,12 +35184,12 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb" ] }, { @@ -34932,12 +35197,12 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" ] }, { @@ -34945,12 +35210,12 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" ] }, { @@ -34959,10 +35224,10 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" ] }, @@ -34971,12 +35236,12 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb" ] }, { @@ -34984,11 +35249,11 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb" ] }, @@ -34997,12 +35262,12 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb" ] }, { @@ -35010,12 +35275,12 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb" ] }, { @@ -35023,12 +35288,12 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" ] }, { @@ -35036,12 +35301,12 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb" ] }, { @@ -35049,11 +35314,11 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" ] }, @@ -35063,11 +35328,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb" ] }, { @@ -35075,12 +35340,12 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" ] }, { @@ -35088,12 +35353,12 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb" ] }, { @@ -35101,12 +35366,12 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" ] }, { @@ -35114,12 +35379,12 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb" ] }, { @@ -35127,11 +35392,11 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" ] }, @@ -35140,11 +35405,11 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" ] }, @@ -35154,11 +35419,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" ] }, { @@ -35166,12 +35431,12 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb" ] }, { @@ -35179,12 +35444,12 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" ] }, { @@ -35192,12 +35457,12 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" ] }, { @@ -35205,12 +35470,12 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb" ] }, { @@ -35218,10 +35483,10 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb" ] }, { @@ -35229,10 +35494,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb" ] }, { @@ -35251,9 +35516,9 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb" ] }, @@ -35262,9 +35527,9 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" ] }, @@ -35273,10 +35538,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb" ] }, { @@ -35284,10 +35549,10 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" ] }, { @@ -35296,9 +35561,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" ] }, { @@ -35306,10 +35571,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb" ] }, { @@ -35317,10 +35582,10 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" ] }, { @@ -35329,11 +35594,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" ] }, { @@ -35343,10 +35608,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" ] }, { @@ -35354,12 +35619,12 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" ] }, { @@ -35367,12 +35632,12 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb" ] }, { @@ -35380,12 +35645,12 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb" ] }, { @@ -35393,11 +35658,11 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" ] }, @@ -35406,12 +35671,12 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb" ] }, { @@ -35419,12 +35684,12 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" ] }, { @@ -35432,12 +35697,12 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb" ] }, { @@ -35445,11 +35710,11 @@ "kernelrelease": "4.2.0-35-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" ] }, @@ -35458,12 +35723,12 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" ] }, { @@ -35471,12 +35736,12 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb" ] }, { @@ -35485,10 +35750,10 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" ] }, @@ -35497,12 +35762,12 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" ] }, { @@ -35510,12 +35775,12 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" ] }, { @@ -35523,12 +35788,12 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb" ] }, { @@ -35536,11 +35801,11 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb" ] }, @@ -35549,12 +35814,12 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" ] }, { @@ -35562,10 +35827,10 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb" ] @@ -35575,11 +35840,11 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb" ] }, @@ -35589,11 +35854,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" ] }, { @@ -35601,12 +35866,12 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb" ] }, { @@ -35614,12 +35879,12 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb" ] }, { @@ -35627,12 +35892,12 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb" ] }, { @@ -35640,11 +35905,11 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb" ] }, @@ -35653,12 +35918,12 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" ] }, { @@ -35666,12 +35931,12 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" ] }, { @@ -35679,12 +35944,12 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" ] }, { @@ -35692,12 +35957,12 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb" ] }, { @@ -35705,12 +35970,12 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" ] }, { @@ -35718,11 +35983,11 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" ] }, @@ -35732,11 +35997,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" ] }, { @@ -35745,11 +36010,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb" ] }, { @@ -35757,12 +36022,12 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb" ] }, { @@ -35770,12 +36035,12 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" ] }, { @@ -35784,11 +36049,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" ] }, { @@ -35796,12 +36061,12 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" ] }, { @@ -35809,12 +36074,12 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" ] }, { @@ -35822,12 +36087,12 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" ] }, { @@ -35835,12 +36100,12 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" ] }, { @@ -35848,12 +36113,12 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb" ] }, { @@ -35861,12 +36126,12 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb" ] }, { @@ -35874,12 +36139,12 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb" ] }, { @@ -35888,11 +36153,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" ] }, { @@ -35900,12 +36165,12 @@ "kernelrelease": "4.4.0-36-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" ] }, { @@ -35913,12 +36178,12 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb" ] }, { @@ -35926,12 +36191,12 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb" ] }, { @@ -35940,11 +36205,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" ] }, { @@ -35952,12 +36217,12 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb" ] }, { @@ -35965,12 +36230,12 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb" ] }, { @@ -35978,12 +36243,12 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" ] }, { @@ -35991,12 +36256,12 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb" ] }, { @@ -36004,12 +36269,12 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" ] }, { @@ -36017,12 +36282,12 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb" ] }, { @@ -36030,12 +36295,12 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" ] }, { @@ -36044,11 +36309,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb" ] }, { @@ -36056,12 +36321,12 @@ "kernelrelease": "4.4.0-66-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb" ] }, { @@ -36069,12 +36334,12 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" ] }, { @@ -36082,11 +36347,11 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb" ] }, @@ -36095,12 +36360,12 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb" ] }, { @@ -36108,12 +36373,12 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" ] }, { @@ -36122,11 +36387,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb" ] }, { @@ -36134,12 +36399,12 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" ] }, { @@ -36147,12 +36412,12 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" ] }, { @@ -36160,12 +36425,12 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb" ] }, { @@ -36173,12 +36438,12 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb" ] }, { @@ -36186,12 +36451,12 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb" ] }, { @@ -36202,9 +36467,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" ] }, { @@ -36212,12 +36477,12 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb" ] }, { @@ -36225,12 +36490,12 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" ] }, { @@ -36238,12 +36503,12 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" ] }, { @@ -36252,11 +36517,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb" ] }, { @@ -36264,12 +36529,12 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" ] }, { @@ -36277,10 +36542,10 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb" ] @@ -36290,12 +36555,12 @@ "kernelrelease": "3.13.0-113", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb" ] }, { @@ -36303,12 +36568,12 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb" ] }, { @@ -36317,11 +36582,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" ] }, { @@ -36329,12 +36594,12 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" ] }, { @@ -36342,12 +36607,12 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" ] }, { @@ -36355,12 +36620,12 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb" ] }, { @@ -36368,12 +36633,12 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" ] }, { @@ -36382,11 +36647,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" ] }, { @@ -36394,11 +36659,11 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" ] }, @@ -36407,8 +36672,8 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" ] @@ -36418,9 +36683,9 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb" ] }, @@ -36429,12 +36694,12 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb" ] }, { @@ -36442,12 +36707,12 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" ] }, { @@ -36455,12 +36720,12 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb" ] }, { @@ -36468,12 +36733,12 @@ "kernelrelease": "4.4.0-146-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" ] }, { @@ -36484,9 +36749,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" ] }, { @@ -36494,10 +36759,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb" ] }, { @@ -36505,10 +36770,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" ] }, { @@ -36516,8 +36781,8 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" ] @@ -36527,9 +36792,9 @@ "kernelrelease": "4.15.0-1095-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" ] }, @@ -36538,9 +36803,9 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, @@ -36549,10 +36814,10 @@ "kernelrelease": "4.15.0-1110-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" ] }, { @@ -36560,10 +36825,10 @@ "kernelrelease": "4.4.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" ] }, { @@ -36571,12 +36836,12 @@ "kernelrelease": "4.4.0-206", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" ] }, { @@ -36584,12 +36849,12 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" ] }, { @@ -36597,12 +36862,12 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb" ] }, { @@ -36610,12 +36875,12 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb" ] }, { @@ -36623,12 +36888,12 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" ] }, { @@ -36636,12 +36901,12 @@ "kernelrelease": "4.10.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" ] }, { @@ -36649,12 +36914,12 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" ] }, { @@ -36663,11 +36928,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" ] }, { @@ -36675,12 +36940,12 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb" ] }, { @@ -36688,11 +36953,11 @@ "kernelrelease": "4.10.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb" ] }, @@ -36701,12 +36966,12 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" ] }, { @@ -36714,10 +36979,10 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" ] @@ -36727,12 +36992,12 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb" ] }, { @@ -36740,12 +37005,12 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" ] }, { @@ -36753,12 +37018,12 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb" ] }, { @@ -36766,12 +37031,12 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb" ] }, { @@ -36779,12 +37044,12 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" ] }, { @@ -36792,12 +37057,12 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" ] }, { @@ -36805,12 +37070,12 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb" ] }, { @@ -36818,10 +37083,10 @@ "kernelrelease": "4.11.0-1015-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb" ] }, { @@ -36829,10 +37094,10 @@ "kernelrelease": "4.11.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" ] }, { @@ -36840,11 +37105,11 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb" ] }, @@ -36853,12 +37118,12 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" ] }, { @@ -36866,9 +37131,9 @@ "kernelrelease": "4.13.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" ] }, @@ -36877,10 +37142,10 @@ "kernelrelease": "4.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" ] }, { @@ -36888,10 +37153,10 @@ "kernelrelease": "4.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" ] }, { @@ -36899,10 +37164,10 @@ "kernelrelease": "4.13.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" ] }, { @@ -36921,10 +37186,10 @@ "kernelrelease": "4.13.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" ] }, { @@ -36943,12 +37208,12 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb" ] }, { @@ -36956,12 +37221,12 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" ] }, { @@ -36969,12 +37234,12 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" ] }, { @@ -36985,9 +37250,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" ] }, { @@ -36996,11 +37261,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" ] }, { @@ -37008,12 +37273,12 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" ] }, { @@ -37021,12 +37286,12 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb" ] }, { @@ -37034,12 +37299,12 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" ] }, { @@ -37047,12 +37312,12 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" ] }, { @@ -37060,12 +37325,12 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb" ] }, { @@ -37073,12 +37338,12 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb" ] }, { @@ -37086,12 +37351,12 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" ] }, { @@ -37099,12 +37364,12 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" ] }, { @@ -37113,11 +37378,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" ] }, { @@ -37125,12 +37390,12 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb" ] }, { @@ -37138,10 +37403,10 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" ] }, { @@ -37150,9 +37415,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb" ] }, { @@ -37160,12 +37425,12 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" ] }, { @@ -37175,8 +37440,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" ] }, { @@ -37184,10 +37449,10 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb" ] }, { @@ -37196,9 +37461,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" ] }, { @@ -37206,9 +37471,9 @@ "kernelrelease": "4.15.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" ] }, @@ -37219,8 +37484,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb" ] }, { @@ -37228,9 +37493,9 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" ] }, @@ -37239,10 +37504,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" ] }, { @@ -37250,10 +37515,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" ] }, { @@ -37262,9 +37527,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" ] }, { @@ -37272,10 +37537,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" ] }, { @@ -37284,9 +37549,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" ] }, { @@ -37295,9 +37560,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" ] }, { @@ -37305,10 +37570,10 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" ] }, { @@ -37316,10 +37581,10 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb" ] }, { @@ -37327,10 +37592,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" ] }, { @@ -37338,9 +37603,9 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" ] }, @@ -37349,10 +37614,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb" ] }, { @@ -37360,10 +37625,10 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" ] }, { @@ -37372,9 +37637,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { @@ -37383,8 +37648,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb" ] }, @@ -37393,10 +37658,10 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" ] }, { @@ -37404,21 +37669,10 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" - ] - }, - { - "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" ] }, { @@ -37426,20 +37680,31 @@ "kernelrelease": "4.15.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb" ] }, + { + "kernelversion": "26~16.04.1", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" + ] + }, { "kernelversion": "28~16.04.1", "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb" ] }, @@ -37449,9 +37714,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb" ] }, { @@ -37459,10 +37724,10 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" ] }, { @@ -37470,10 +37735,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" ] }, { @@ -37481,10 +37746,10 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb" ] }, { @@ -37492,10 +37757,10 @@ "kernelrelease": "4.15.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -37503,10 +37768,10 @@ "kernelrelease": "4.15.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -37515,9 +37780,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" ] }, { @@ -37525,10 +37790,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" ] }, { @@ -37536,8 +37801,8 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb" ] @@ -37548,9 +37813,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" ] }, { @@ -37559,8 +37824,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb" ] }, @@ -37569,10 +37834,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" ] }, { @@ -37580,10 +37845,10 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" ] }, { @@ -37591,10 +37856,10 @@ "kernelrelease": "4.15.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" ] }, { @@ -37602,9 +37867,9 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb" ] }, @@ -37613,10 +37878,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" ] }, { @@ -37624,10 +37889,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" ] }, { @@ -37635,32 +37900,32 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { @@ -37668,10 +37933,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" ] }, { @@ -37680,9 +37945,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" ] }, { @@ -37690,10 +37955,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" ] }, { @@ -37702,8 +37967,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" ] }, @@ -37712,10 +37977,10 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb" ] }, { @@ -37723,10 +37988,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" ] }, { @@ -37734,10 +37999,10 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" ] }, { @@ -37745,10 +38010,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" ] }, { @@ -37756,10 +38021,10 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" ] }, { @@ -37767,10 +38032,10 @@ "kernelrelease": "4.15.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" ] }, { @@ -37778,10 +38043,10 @@ "kernelrelease": "4.15.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" ] }, { @@ -37790,8 +38055,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" ] }, @@ -37800,10 +38065,10 @@ "kernelrelease": "4.15.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" ] }, { @@ -37811,10 +38076,10 @@ "kernelrelease": "4.15.0-1050-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" ] }, { @@ -37824,8 +38089,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb" ] }, { @@ -37833,10 +38098,10 @@ "kernelrelease": "4.15.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" ] }, { @@ -37844,10 +38109,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" ] }, { @@ -37855,10 +38120,10 @@ "kernelrelease": "4.15.0-1052-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" ] }, { @@ -37866,10 +38131,10 @@ "kernelrelease": "4.15.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" ] }, { @@ -37877,10 +38142,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" ] }, { @@ -37888,10 +38153,10 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" ] }, { @@ -37912,8 +38177,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" ] }, { @@ -37922,9 +38187,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" ] }, { @@ -37933,9 +38198,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" ] }, { @@ -37943,10 +38208,10 @@ "kernelrelease": "4.15.0-1058-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" ] }, { @@ -37954,10 +38219,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" ] }, { @@ -37965,10 +38230,10 @@ "kernelrelease": "4.15.0-1059-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" ] }, { @@ -37976,12 +38241,12 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb" ] }, { @@ -37990,9 +38255,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb" ] }, { @@ -38011,10 +38276,10 @@ "kernelrelease": "4.15.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb" ] }, { @@ -38022,10 +38287,10 @@ "kernelrelease": "4.15.0-1061-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb" ] }, { @@ -38034,8 +38299,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" ] }, @@ -38044,10 +38309,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" ] }, { @@ -38056,9 +38321,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" ] }, { @@ -38066,10 +38331,10 @@ "kernelrelease": "4.15.0-1064-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" ] }, { @@ -38077,10 +38342,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb" ] }, { @@ -38088,9 +38353,9 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb" ] }, @@ -38099,10 +38364,10 @@ "kernelrelease": "4.15.0-1066-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" ] }, { @@ -38111,9 +38376,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" ] }, { @@ -38121,10 +38386,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" ] }, { @@ -38132,10 +38397,10 @@ "kernelrelease": "4.15.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" ] }, { @@ -38143,10 +38408,10 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" ] }, { @@ -38154,12 +38419,12 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb" ] }, { @@ -38168,9 +38433,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" ] }, { @@ -38178,9 +38443,9 @@ "kernelrelease": "4.15.0-1071-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" ] }, @@ -38201,9 +38466,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb" ] }, { @@ -38211,10 +38476,10 @@ "kernelrelease": "4.15.0-1077-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" ] }, { @@ -38222,10 +38487,10 @@ "kernelrelease": "4.15.0-1078-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb" ] }, { @@ -38233,10 +38498,10 @@ "kernelrelease": "4.15.0-1080-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" ] }, { @@ -38244,9 +38509,9 @@ "kernelrelease": "4.15.0-1081-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" ] }, @@ -38256,9 +38521,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" ] }, { @@ -38266,9 +38531,9 @@ "kernelrelease": "4.15.0-1083-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" ] }, @@ -38277,10 +38542,10 @@ "kernelrelease": "4.15.0-1083-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb" ] }, { @@ -38288,9 +38553,9 @@ "kernelrelease": "4.15.0-1084-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" ] }, @@ -38299,10 +38564,10 @@ "kernelrelease": "4.15.0-1086-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" ] }, { @@ -38311,8 +38576,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" ] }, @@ -38321,10 +38586,10 @@ "kernelrelease": "4.15.0-1089-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" ] }, { @@ -38333,8 +38598,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb" ] }, @@ -38343,10 +38608,10 @@ "kernelrelease": "4.15.0-1091-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" ] }, { @@ -38354,10 +38619,10 @@ "kernelrelease": "4.15.0-1091-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" ] }, { @@ -38365,8 +38630,8 @@ "kernelrelease": "4.15.0-1092-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb" ] @@ -38376,10 +38641,10 @@ "kernelrelease": "4.15.0-1092-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" ] }, { @@ -38389,8 +38654,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" ] }, { @@ -38409,10 +38674,10 @@ "kernelrelease": "4.15.0-1093-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" ] }, { @@ -38420,8 +38685,8 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" ] @@ -38431,10 +38696,10 @@ "kernelrelease": "4.15.0-1094-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" ] }, { @@ -38442,10 +38707,10 @@ "kernelrelease": "4.15.0-1095-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" ] }, { @@ -38453,10 +38718,10 @@ "kernelrelease": "4.15.0-1096-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb" ] }, { @@ -38465,9 +38730,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb" ] }, { @@ -38475,10 +38740,10 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb" ] }, { @@ -38486,8 +38751,8 @@ "kernelrelease": "4.15.0-1097-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" ] @@ -38497,10 +38762,10 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" ] }, { @@ -38510,8 +38775,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb" ] }, { @@ -38519,10 +38784,10 @@ "kernelrelease": "4.15.0-1098-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" ] }, { @@ -38530,10 +38795,10 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" ] }, { @@ -38542,9 +38807,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" ] }, { @@ -38552,10 +38817,10 @@ "kernelrelease": "4.15.0-1103-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" ] }, { @@ -38563,10 +38828,10 @@ "kernelrelease": "4.15.0-1106-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" ] }, { @@ -38575,9 +38840,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" ] }, { @@ -38585,10 +38850,10 @@ "kernelrelease": "4.15.0-1109-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" ] }, { @@ -38596,10 +38861,10 @@ "kernelrelease": "4.15.0-1111-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb" ] }, { @@ -38607,10 +38872,10 @@ "kernelrelease": "4.15.0-1112-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" ] }, { @@ -38618,10 +38883,10 @@ "kernelrelease": "4.15.0-1113-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" ] }, { @@ -38629,12 +38894,12 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb" ] }, { @@ -38642,12 +38907,12 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb" ] }, { @@ -38656,11 +38921,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb" ] }, { @@ -38668,12 +38933,12 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" ] }, { @@ -38681,11 +38946,11 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb" ] }, @@ -38694,12 +38959,12 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" ] }, { @@ -38707,12 +38972,12 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" ] }, { @@ -38720,12 +38985,12 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" ] }, { @@ -38733,12 +38998,12 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb" ] }, { @@ -38746,12 +39011,12 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" ] }, { @@ -38759,12 +39024,12 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" ] }, { @@ -38773,11 +39038,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb" ] }, { @@ -38785,12 +39050,12 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb" ] }, { @@ -38798,10 +39063,10 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" ] @@ -38811,12 +39076,12 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb" ] }, { @@ -38824,12 +39089,12 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" ] }, { @@ -38837,12 +39102,12 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" ] }, { @@ -38851,11 +39116,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" ] }, { @@ -38863,12 +39128,12 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" ] }, { @@ -38877,10 +39142,10 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" ] }, @@ -38889,10 +39154,10 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb" ] @@ -38902,12 +39167,12 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" ] }, { @@ -38915,12 +39180,12 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" ] }, { @@ -38928,12 +39193,12 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" ] }, { @@ -38941,12 +39206,12 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" ] }, { @@ -38954,12 +39219,12 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" ] }, { @@ -38967,12 +39232,12 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb" ] }, { @@ -38980,12 +39245,12 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb" ] }, { @@ -38993,12 +39258,12 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" ] }, { @@ -39007,11 +39272,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" ] }, { @@ -39019,12 +39284,12 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" ] }, { @@ -39032,12 +39297,12 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb" ] }, { @@ -39045,12 +39310,12 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb" ] }, { @@ -39058,12 +39323,12 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" ] }, { @@ -39072,11 +39337,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" ] }, { @@ -39085,11 +39350,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" ] }, { @@ -39097,12 +39362,12 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb" ] }, { @@ -39110,12 +39375,12 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb" ] }, { @@ -39124,11 +39389,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" ] }, { @@ -39136,12 +39401,12 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb" ] }, { @@ -39149,12 +39414,12 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" ] }, { @@ -39162,12 +39427,12 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb" ] }, { @@ -39175,12 +39440,12 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb" ] }, { @@ -39188,11 +39453,11 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" ] }, @@ -39201,12 +39466,12 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb" ] }, { @@ -39216,10 +39481,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" ] }, { @@ -39227,10 +39492,10 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" ] @@ -39240,12 +39505,12 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" ] }, { @@ -39253,12 +39518,12 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, { @@ -39266,12 +39531,12 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" ] }, { @@ -39279,12 +39544,12 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" ] }, { @@ -39292,12 +39557,12 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb" ] }, { @@ -39305,12 +39570,12 @@ "kernelrelease": "4.15.0-96-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb" ] }, { @@ -39319,11 +39584,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" ] }, { @@ -39331,10 +39596,10 @@ "kernelrelease": "4.4.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" ] }, { @@ -39342,10 +39607,10 @@ "kernelrelease": "4.4.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" ] }, { @@ -39353,10 +39618,10 @@ "kernelrelease": "4.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" ] }, { @@ -39364,12 +39629,12 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb" ] }, { @@ -39378,9 +39643,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb" ] }, { @@ -39388,10 +39653,10 @@ "kernelrelease": "4.4.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" ] }, { @@ -39399,10 +39664,10 @@ "kernelrelease": "4.4.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb" ] }, { @@ -39410,10 +39675,10 @@ "kernelrelease": "4.4.0-1013-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" ] }, { @@ -39421,10 +39686,10 @@ "kernelrelease": "4.4.0-1015-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" ] }, { @@ -39433,9 +39698,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb" ] }, { @@ -39443,10 +39708,10 @@ "kernelrelease": "4.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb" ] }, { @@ -39454,10 +39719,10 @@ "kernelrelease": "4.4.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb" ] }, { @@ -39465,10 +39730,10 @@ "kernelrelease": "4.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" ] }, { @@ -39476,10 +39741,10 @@ "kernelrelease": "4.4.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb" ] }, { @@ -39488,9 +39753,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb" ] }, { @@ -39498,10 +39763,10 @@ "kernelrelease": "4.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" ] }, { @@ -39509,10 +39774,10 @@ "kernelrelease": "4.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" ] }, { @@ -39520,10 +39785,10 @@ "kernelrelease": "4.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb" ] }, { @@ -39531,9 +39796,9 @@ "kernelrelease": "4.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb" ] }, @@ -39542,10 +39807,10 @@ "kernelrelease": "4.4.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb" ] }, { @@ -39575,10 +39840,10 @@ "kernelrelease": "4.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" ] }, { @@ -39586,10 +39851,10 @@ "kernelrelease": "4.4.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" ] }, { @@ -39597,12 +39862,12 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb" ] }, { @@ -39610,9 +39875,9 @@ "kernelrelease": "4.4.0-1030-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" ] }, @@ -39621,10 +39886,10 @@ "kernelrelease": "4.4.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" ] }, { @@ -39632,10 +39897,10 @@ "kernelrelease": "4.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb" ] }, { @@ -39643,10 +39908,10 @@ "kernelrelease": "4.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" ] }, { @@ -39654,10 +39919,10 @@ "kernelrelease": "4.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb" ] }, { @@ -39666,9 +39931,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb" ] }, { @@ -39676,9 +39941,9 @@ "kernelrelease": "4.4.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" ] }, @@ -39687,10 +39952,10 @@ "kernelrelease": "4.4.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" ] }, { @@ -39700,8 +39965,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" ] }, { @@ -39709,8 +39974,8 @@ "kernelrelease": "4.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" ] @@ -39720,9 +39985,9 @@ "kernelrelease": "4.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" ] }, @@ -39731,10 +39996,10 @@ "kernelrelease": "4.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" ] }, { @@ -39743,11 +40008,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" ] }, { @@ -39757,8 +40022,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" ] }, { @@ -39766,10 +40031,10 @@ "kernelrelease": "4.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb" ] }, { @@ -39778,8 +40043,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb" ] }, @@ -39788,10 +40053,10 @@ "kernelrelease": "4.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb" ] }, { @@ -39800,8 +40065,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" ] }, @@ -39811,9 +40076,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb" ] }, { @@ -39821,9 +40086,9 @@ "kernelrelease": "4.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb" ] }, @@ -39832,10 +40097,10 @@ "kernelrelease": "4.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" ] }, { @@ -39844,9 +40109,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb" ] }, { @@ -39854,9 +40119,9 @@ "kernelrelease": "4.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" ] }, @@ -39865,10 +40130,10 @@ "kernelrelease": "4.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" ] }, { @@ -39876,10 +40141,10 @@ "kernelrelease": "4.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb" ] }, { @@ -39887,10 +40152,10 @@ "kernelrelease": "4.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" ] }, { @@ -39898,10 +40163,10 @@ "kernelrelease": "4.4.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" ] }, { @@ -39909,9 +40174,9 @@ "kernelrelease": "4.4.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" ] }, @@ -39920,9 +40185,9 @@ "kernelrelease": "4.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" ] }, @@ -39933,8 +40198,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb" ] }, { @@ -39943,9 +40208,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" ] }, { @@ -39955,8 +40220,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" ] }, { @@ -39965,9 +40230,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb" ] }, { @@ -39975,9 +40240,9 @@ "kernelrelease": "4.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" ] }, @@ -39987,9 +40252,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb" ] }, { @@ -39997,9 +40262,9 @@ "kernelrelease": "4.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" ] }, @@ -40008,10 +40273,10 @@ "kernelrelease": "4.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb" ] }, { @@ -40019,10 +40284,10 @@ "kernelrelease": "4.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" ] }, { @@ -40030,10 +40295,10 @@ "kernelrelease": "4.4.0-1062-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" ] }, { @@ -40041,10 +40306,10 @@ "kernelrelease": "4.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" ] }, { @@ -40064,9 +40329,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" ] }, { @@ -40085,9 +40350,9 @@ "kernelrelease": "4.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb" ] }, @@ -40096,10 +40361,10 @@ "kernelrelease": "4.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" ] }, { @@ -40107,10 +40372,10 @@ "kernelrelease": "4.4.0-1066-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" ] }, { @@ -40129,9 +40394,9 @@ "kernelrelease": "4.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" ] }, @@ -40141,9 +40406,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" ] }, { @@ -40152,9 +40417,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" ] }, { @@ -40162,10 +40427,10 @@ "kernelrelease": "4.4.0-1070-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" ] }, { @@ -40174,9 +40439,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" ] }, { @@ -40184,9 +40449,9 @@ "kernelrelease": "4.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" ] }, @@ -40195,10 +40460,10 @@ "kernelrelease": "4.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" ] }, { @@ -40206,10 +40471,10 @@ "kernelrelease": "4.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb" ] }, { @@ -40217,10 +40482,10 @@ "kernelrelease": "4.4.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" ] }, { @@ -40228,10 +40493,10 @@ "kernelrelease": "4.4.0-1076-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" ] }, { @@ -40239,10 +40504,10 @@ "kernelrelease": "4.4.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" ] }, { @@ -40251,8 +40516,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" ] }, @@ -40261,10 +40526,10 @@ "kernelrelease": "4.4.0-1078-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb" ] }, { @@ -40272,10 +40537,10 @@ "kernelrelease": "4.4.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" ] }, { @@ -40283,10 +40548,10 @@ "kernelrelease": "4.4.0-1079-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb" ] }, { @@ -40294,11 +40559,11 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb" ] }, @@ -40308,9 +40573,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" ] }, { @@ -40318,10 +40583,10 @@ "kernelrelease": "4.4.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb" ] }, { @@ -40330,9 +40595,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" ] }, { @@ -40340,8 +40605,8 @@ "kernelrelease": "4.4.0-1084-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" ] @@ -40351,10 +40616,10 @@ "kernelrelease": "4.4.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" ] }, { @@ -40362,10 +40627,10 @@ "kernelrelease": "4.4.0-1085-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" ] }, { @@ -40373,10 +40638,10 @@ "kernelrelease": "4.4.0-1085-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" ] }, { @@ -40395,10 +40660,10 @@ "kernelrelease": "4.4.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" ] }, { @@ -40406,10 +40671,10 @@ "kernelrelease": "4.4.0-1088-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb" ] }, { @@ -40417,9 +40682,9 @@ "kernelrelease": "4.4.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" ] }, @@ -40428,10 +40693,10 @@ "kernelrelease": "4.4.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" ] }, { @@ -40439,12 +40704,12 @@ "kernelrelease": "4.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb" ] }, { @@ -40452,10 +40717,10 @@ "kernelrelease": "4.4.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" ] }, { @@ -40464,9 +40729,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" ] }, { @@ -40474,10 +40739,10 @@ "kernelrelease": "4.4.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" ] }, { @@ -40485,10 +40750,10 @@ "kernelrelease": "4.4.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb" ] }, { @@ -40498,8 +40763,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb" ] }, { @@ -40508,9 +40773,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb" ] }, { @@ -40518,10 +40783,10 @@ "kernelrelease": "4.4.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb" ] }, { @@ -40540,10 +40805,10 @@ "kernelrelease": "4.4.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" ] }, { @@ -40551,9 +40816,9 @@ "kernelrelease": "4.4.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" ] }, @@ -40562,10 +40827,10 @@ "kernelrelease": "4.4.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" ] }, { @@ -40573,10 +40838,10 @@ "kernelrelease": "4.4.0-1100-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" ] }, { @@ -40584,10 +40849,10 @@ "kernelrelease": "4.4.0-1101-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" ] }, { @@ -40595,10 +40860,10 @@ "kernelrelease": "4.4.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" ] }, { @@ -40606,10 +40871,10 @@ "kernelrelease": "4.4.0-1104-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" ] }, { @@ -40617,9 +40882,9 @@ "kernelrelease": "4.4.0-1105-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb" ] }, @@ -40628,10 +40893,10 @@ "kernelrelease": "4.4.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" ] }, { @@ -40639,10 +40904,10 @@ "kernelrelease": "4.4.0-1107-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb" ] }, { @@ -40650,10 +40915,10 @@ "kernelrelease": "4.4.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" ] }, { @@ -40661,10 +40926,10 @@ "kernelrelease": "4.4.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" ] }, { @@ -40672,10 +40937,10 @@ "kernelrelease": "4.4.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" ] }, { @@ -40694,10 +40959,10 @@ "kernelrelease": "4.4.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb" ] }, { @@ -40705,10 +40970,10 @@ "kernelrelease": "4.4.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" ] }, { @@ -40716,10 +40981,10 @@ "kernelrelease": "4.4.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" ] }, { @@ -40727,10 +40992,10 @@ "kernelrelease": "4.4.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" ] }, { @@ -40739,9 +41004,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" ] }, { @@ -40749,12 +41014,12 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb" ] }, { @@ -40762,10 +41027,10 @@ "kernelrelease": "4.4.0-1121-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb" ] }, { @@ -40773,10 +41038,10 @@ "kernelrelease": "4.4.0-1122-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" ] }, { @@ -40784,10 +41049,10 @@ "kernelrelease": "4.4.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" ] }, { @@ -40796,8 +41061,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" ] }, @@ -40806,10 +41071,10 @@ "kernelrelease": "4.4.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb" ] }, { @@ -40817,10 +41082,10 @@ "kernelrelease": "4.4.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" ] }, { @@ -40828,9 +41093,9 @@ "kernelrelease": "4.4.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb" ] }, @@ -40839,12 +41104,12 @@ "kernelrelease": "4.4.0-116", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb" ] }, { @@ -40852,12 +41117,12 @@ "kernelrelease": "4.4.0-119", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb" ] }, { @@ -40865,12 +41130,12 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" ] }, { @@ -40878,12 +41143,12 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb" ] }, { @@ -40891,12 +41156,12 @@ "kernelrelease": "4.4.0-127", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb" ] }, { @@ -40904,12 +41169,12 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" ] }, { @@ -40918,11 +41183,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" ] }, { @@ -40930,12 +41195,12 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb" ] }, { @@ -40943,12 +41208,12 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb" ] }, { @@ -40956,12 +41221,12 @@ "kernelrelease": "4.4.0-137", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb" ] }, { @@ -40970,11 +41235,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" ] }, { @@ -40982,12 +41247,12 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" ] }, { @@ -40995,11 +41260,11 @@ "kernelrelease": "4.4.0-141", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb" ] }, @@ -41008,12 +41273,12 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb" ] }, { @@ -41022,10 +41287,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" ] }, @@ -41034,12 +41299,12 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" ] }, { @@ -41047,12 +41312,12 @@ "kernelrelease": "4.4.0-148", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb" ] }, { @@ -41060,12 +41325,12 @@ "kernelrelease": "4.4.0-150", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" ] }, { @@ -41073,12 +41338,12 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" ] }, { @@ -41086,11 +41351,11 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" ] }, @@ -41099,12 +41364,12 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb" ] }, { @@ -41112,11 +41377,11 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" ] }, @@ -41125,12 +41390,12 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" ] }, { @@ -41139,11 +41404,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" ] }, { @@ -41152,11 +41417,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb" ] }, { @@ -41166,10 +41431,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb" ] }, { @@ -41178,11 +41443,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" ] }, { @@ -41190,12 +41455,12 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" ] }, { @@ -41203,12 +41468,12 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb" ] }, { @@ -41216,12 +41481,12 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" ] }, { @@ -41229,11 +41494,11 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb" ] }, @@ -41242,12 +41507,12 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" ] }, { @@ -41255,12 +41520,12 @@ "kernelrelease": "4.4.0-176", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb" ] }, { @@ -41268,12 +41533,12 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb" ] }, { @@ -41281,12 +41546,12 @@ "kernelrelease": "4.4.0-178", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" ] }, { @@ -41294,12 +41559,12 @@ "kernelrelease": "4.4.0-179", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb" ] }, { @@ -41307,11 +41572,11 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" ] }, @@ -41320,12 +41585,12 @@ "kernelrelease": "4.4.0-185", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb" ] }, { @@ -41333,12 +41598,12 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" ] }, { @@ -41346,12 +41611,12 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" ] }, { @@ -41360,11 +41625,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" ] }, { @@ -41372,12 +41637,12 @@ "kernelrelease": "4.4.0-190", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" ] }, { @@ -41386,9 +41651,9 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" ] @@ -41398,12 +41663,12 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb" ] }, { @@ -41411,11 +41676,11 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb" ] }, @@ -41425,11 +41690,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" ] }, { @@ -41437,12 +41702,12 @@ "kernelrelease": "4.4.0-200", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb" ] }, { @@ -41450,12 +41715,12 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb" ] }, { @@ -41463,12 +41728,12 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" ] }, { @@ -41476,12 +41741,12 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb" ] }, { @@ -41489,12 +41754,12 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb" ] }, { @@ -41502,12 +41767,12 @@ "kernelrelease": "4.4.0-209", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" ] }, { @@ -41515,12 +41780,12 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" ] }, { @@ -41529,11 +41794,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb" ] }, { @@ -41541,12 +41806,12 @@ "kernelrelease": "4.4.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb" ] }, { @@ -41554,12 +41819,12 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb" ] }, { @@ -41568,11 +41833,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb" ] }, { @@ -41580,12 +41845,12 @@ "kernelrelease": "4.4.0-34", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb" ] }, { @@ -41593,12 +41858,12 @@ "kernelrelease": "4.4.0-36", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb" ] }, { @@ -41606,12 +41871,12 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" ] }, { @@ -41619,12 +41884,12 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb" ] }, { @@ -41633,10 +41898,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" ] }, @@ -41645,12 +41910,12 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb" ] }, { @@ -41658,12 +41923,12 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb" ] }, { @@ -41671,11 +41936,11 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" ] }, @@ -41685,11 +41950,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb" ] }, { @@ -41699,10 +41964,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" ] }, { @@ -41710,12 +41975,12 @@ "kernelrelease": "4.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb" ] }, { @@ -41723,12 +41988,12 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb" ] }, { @@ -41736,12 +42001,12 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" ] }, { @@ -41749,12 +42014,12 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" ] }, { @@ -41762,12 +42027,12 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb" ] }, { @@ -41775,12 +42040,12 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb" ] }, { @@ -41788,12 +42053,12 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" ] }, { @@ -41801,12 +42066,12 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" ] }, { @@ -41814,12 +42079,12 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb" ] }, { @@ -41827,12 +42092,12 @@ "kernelrelease": "4.4.0-78", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb" ] }, { @@ -41840,12 +42105,12 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb" ] }, { @@ -41853,12 +42118,12 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" ] }, { @@ -41866,12 +42131,12 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" ] }, { @@ -41879,12 +42144,12 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" ] }, { @@ -41892,12 +42157,12 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" ] }, { @@ -41905,12 +42170,12 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb" ] }, { @@ -41918,12 +42183,12 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb" ] }, { @@ -41931,12 +42196,12 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" ] }, { @@ -41944,12 +42209,12 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" ] }, { @@ -41957,10 +42222,10 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb" ] @@ -41970,12 +42235,12 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb" ] }, { @@ -41983,12 +42248,12 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" ] }, { @@ -41996,12 +42261,12 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" ] }, { @@ -42009,12 +42274,12 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" ] }, { @@ -42024,10 +42289,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb" ] }, { @@ -42035,12 +42300,12 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb" ] }, { @@ -42048,12 +42313,12 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb" ] }, { @@ -42061,12 +42326,12 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb" ] }, { @@ -42074,12 +42339,12 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" ] }, { @@ -42087,12 +42352,12 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb" ] }, { @@ -42100,12 +42365,12 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb" ] }, { @@ -42113,12 +42378,12 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" ] }, { @@ -42128,8 +42393,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" ] }, { @@ -42137,10 +42402,10 @@ "kernelrelease": "4.11.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" ] }, { @@ -42148,10 +42413,10 @@ "kernelrelease": "4.11.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb" ] }, { @@ -42159,10 +42424,10 @@ "kernelrelease": "4.11.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb" ] }, { @@ -42170,10 +42435,10 @@ "kernelrelease": "4.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" ] }, { @@ -42181,10 +42446,10 @@ "kernelrelease": "4.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb" ] }, { @@ -42192,10 +42457,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" ] }, { @@ -42203,10 +42468,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" ] }, { @@ -42214,10 +42479,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb" ] }, { @@ -42225,8 +42490,8 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" ] @@ -42236,10 +42501,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" ] }, { @@ -42247,12 +42512,12 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb" ] }, { @@ -42260,12 +42525,12 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb" ] }, { @@ -42273,10 +42538,10 @@ "kernelrelease": "4.4.0-1033-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" ] }, { @@ -42284,10 +42549,10 @@ "kernelrelease": "4.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" ] }, { @@ -42296,9 +42561,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb" ] }, { @@ -42306,10 +42571,10 @@ "kernelrelease": "4.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" ] }, { @@ -42328,10 +42593,10 @@ "kernelrelease": "4.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" ] }, { @@ -42340,9 +42605,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" ] }, { @@ -42351,9 +42616,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb" ] }, { @@ -42361,10 +42626,10 @@ "kernelrelease": "4.4.0-1081-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" ] }, { @@ -42372,12 +42637,12 @@ "kernelrelease": "4.4.0-122", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" ] }, { @@ -42385,12 +42650,12 @@ "kernelrelease": "4.4.0-131", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb" ] }, { @@ -42398,12 +42663,12 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" ] }, { @@ -42411,12 +42676,12 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" ] }, { @@ -42424,12 +42689,12 @@ "kernelrelease": "4.4.0-146", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb" ] }, { @@ -42437,12 +42702,12 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" ] }, { @@ -42450,12 +42715,12 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" ] }, { @@ -42464,11 +42729,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb" ] }, { @@ -42476,11 +42741,11 @@ "kernelrelease": "4.8.0-44-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb" ] }, @@ -42489,10 +42754,10 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" ] @@ -42502,12 +42767,12 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb" ] }, { @@ -42515,12 +42780,12 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb" ] } ], From 9e0b97c748e0a9f0a1bc798a33726caac1c42c0c Mon Sep 17 00:00:00 2001 From: poiana <51138685+poiana@users.noreply.github.com> Date: Wed, 15 Jun 2022 10:53:27 +0000 Subject: [PATCH 117/259] update(kernels): update kernel json lists. Signed-off-by: poiana <51138685+poiana@users.noreply.github.com> --- kernels/aarch64/list.json | 3460 ++++---- kernels/x86_64/list.json | 15984 ++++++++++++++++++------------------ 2 files changed, 9734 insertions(+), 9710 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 0cc64dd..c4fc6cc 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -2233,7 +2233,7 @@ "kernelrelease": "5.10.109-4.ph4.aarch64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.109-4.ph4.aarch64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.109-4.ph4.aarch64.rpm" ] }, { @@ -2536,14 +2536,14 @@ "Debian": [ { "kernelversion": 1, - "kernelrelease": "5.17.3-1-arm64", + "kernelrelease": "5.18.2-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-arm64_5.17.3-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-arm64_5.17.3-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-arm64_5.17.3-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-arm64_5.18.2-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-arm64_5.18.2-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-arm64_5.18.2-1_arm64.deb" ] }, { @@ -2551,11 +2551,11 @@ "kernelrelease": "5.10.120-1-arm64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-arm64_5.10.120-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb" ] }, { @@ -2563,11 +2563,11 @@ "kernelrelease": "5.16.12-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb" ] }, { @@ -2575,11 +2575,11 @@ "kernelrelease": "5.10.113-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb" ] }, { @@ -2587,11 +2587,11 @@ "kernelrelease": "5.10.84-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb" ] }, { @@ -2600,10 +2600,10 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" ] }, { @@ -2611,11 +2611,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb" ] }, { @@ -2623,10 +2623,10 @@ "kernelrelease": "4.19.208-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb" ] }, { @@ -2635,21 +2635,9 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18.2-1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-arm64_5.18.2-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-arm64_5.18.2-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-arm64_5.18.2-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" ] }, { @@ -2658,9 +2646,9 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb" ] }, { @@ -2668,8 +2656,8 @@ "kernelrelease": "4.9.228-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb" ] }, { @@ -2677,11 +2665,11 @@ "kernelrelease": "5.10.103-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb" ] }, { @@ -2689,10 +2677,10 @@ "kernelrelease": "4.19.232-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb" ] }, { @@ -2700,8 +2688,8 @@ "kernelrelease": "4.9.303-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" ] }, { @@ -2709,10 +2697,10 @@ "kernelrelease": "4.19.232-1~deb9u1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb" ] } ], @@ -2749,8 +2737,8 @@ "kernelrelease": "4.15.0-1119-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb" ] }, { @@ -2758,8 +2746,8 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb" ] }, { @@ -2767,8 +2755,8 @@ "kernelrelease": "4.15.0-1120-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb" ] }, { @@ -2785,8 +2773,8 @@ "kernelrelease": "4.15.0-1121-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb" ] }, { @@ -2794,8 +2782,8 @@ "kernelrelease": "4.15.0-1123-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb" ] }, { @@ -2803,8 +2791,8 @@ "kernelrelease": "4.15.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb" ] }, { @@ -2812,8 +2800,8 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" ] }, { @@ -2845,20 +2833,20 @@ }, { "kernelversion": "136", - "kernelrelease": "4.15.0-1127-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1127-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb" ] }, { "kernelversion": "136", - "kernelrelease": "4.15.0-1127-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1127-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" ] }, { @@ -2884,8 +2872,8 @@ "kernelrelease": "4.15.0-1129-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" ] }, { @@ -2911,8 +2899,8 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" ] }, { @@ -2929,8 +2917,8 @@ "kernelrelease": "4.15.0-172", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_arm64.deb" ] }, { @@ -2938,8 +2926,8 @@ "kernelrelease": "4.15.0-173", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" ] }, { @@ -2947,8 +2935,8 @@ "kernelrelease": "4.15.0-174", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" ] }, { @@ -2965,8 +2953,8 @@ "kernelrelease": "4.15.0-177", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb" ] }, { @@ -2974,8 +2962,8 @@ "kernelrelease": "4.15.0-179", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_arm64.deb" ] }, { @@ -2992,8 +2980,8 @@ "kernelrelease": "4.15.0-181", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_arm64.deb" ] }, { @@ -3001,8 +2989,8 @@ "kernelrelease": "5.0.0-1028-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" ] }, { @@ -3010,8 +2998,8 @@ "kernelrelease": "5.4.0-100-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" ] }, { @@ -3037,8 +3025,8 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" ] }, { @@ -3046,8 +3034,8 @@ "kernelrelease": "5.4.0-1062-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" ] }, { @@ -3055,8 +3043,8 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { @@ -3073,8 +3061,8 @@ "kernelrelease": "5.4.0-1066-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" ] }, { @@ -3100,8 +3088,8 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" ] }, { @@ -3118,8 +3106,8 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" ] }, { @@ -3140,15 +3128,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb" ] }, - { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb" - ] - }, { "kernelversion": "78~18.04.1", "kernelrelease": "5.4.0-1073-gcp-5.4", @@ -3159,12 +3138,12 @@ ] }, { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-aws-5.4", + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" ] }, { @@ -3176,13 +3155,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb" ] }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + ] + }, { "kernelversion": "79~18.04.1", "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb" ] }, { @@ -3190,8 +3178,8 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" ] }, { @@ -3199,8 +3187,8 @@ "kernelrelease": "5.4.0-1079-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_arm64.deb" ] }, { @@ -3217,8 +3205,8 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb" ] }, { @@ -3244,8 +3232,8 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb" ] }, { @@ -3262,8 +3250,8 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" ] }, { @@ -3280,8 +3268,8 @@ "kernelrelease": "4.15.0-1030-raspi2", "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb" ] }, { @@ -3289,8 +3277,8 @@ "kernelrelease": "4.15.0-1031-raspi2", "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" ] }, { @@ -3307,8 +3295,8 @@ "kernelrelease": "4.15.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" ] }, { @@ -3343,8 +3331,8 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb" ] }, { @@ -3352,8 +3340,8 @@ "kernelrelease": "4.15.0-1040-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb" ] }, { @@ -3370,8 +3358,8 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" ] }, { @@ -3379,8 +3367,8 @@ "kernelrelease": "4.15.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb" ] }, { @@ -3397,8 +3385,8 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" ] }, { @@ -3415,8 +3403,8 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" ] }, { @@ -3424,8 +3412,8 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { @@ -3442,8 +3430,8 @@ "kernelrelease": "4.15.0-1053-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb" ] }, { @@ -3451,8 +3439,8 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" ] }, { @@ -3469,8 +3457,8 @@ "kernelrelease": "4.15.0-1055-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb" ] }, { @@ -3496,8 +3484,8 @@ "kernelrelease": "4.15.0-1057-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb" ] }, { @@ -3505,8 +3493,8 @@ "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" ] }, { @@ -3523,8 +3511,8 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb" ] }, { @@ -3532,8 +3520,8 @@ "kernelrelease": "4.15.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" ] }, { @@ -3559,8 +3547,8 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] }, { @@ -3568,8 +3556,8 @@ "kernelrelease": "4.15.0-1064-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" ] }, { @@ -3577,8 +3565,8 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, { @@ -3595,8 +3583,8 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { @@ -3613,8 +3601,8 @@ "kernelrelease": "4.15.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" ] }, { @@ -3622,8 +3610,8 @@ "kernelrelease": "4.15.0-1067-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb" ] }, { @@ -3631,8 +3619,8 @@ "kernelrelease": "4.15.0-1069-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb" ] }, { @@ -3640,8 +3628,8 @@ "kernelrelease": "4.15.0-1070-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb" ] }, { @@ -3676,8 +3664,8 @@ "kernelrelease": "4.15.0-1074-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb" ] }, { @@ -3685,8 +3673,8 @@ "kernelrelease": "4.15.0-1076-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" ] }, { @@ -3694,8 +3682,8 @@ "kernelrelease": "4.15.0-1076-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb" ] }, { @@ -3703,8 +3691,8 @@ "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb" ] }, { @@ -3721,8 +3709,8 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" ] }, { @@ -3730,8 +3718,8 @@ "kernelrelease": "4.15.0-1079-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb" ] }, { @@ -3766,8 +3754,8 @@ "kernelrelease": "4.15.0-1081-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb" ] }, { @@ -3775,8 +3763,8 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" ] }, { @@ -3784,8 +3772,8 @@ "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" ] }, { @@ -3802,8 +3790,8 @@ "kernelrelease": "4.15.0-1084-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb" ] }, { @@ -3838,8 +3826,8 @@ "kernelrelease": "4.15.0-1087-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" ] }, { @@ -3856,8 +3844,8 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb" ] }, { @@ -3874,8 +3862,8 @@ "kernelrelease": "4.15.0-1090-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb" ] }, { @@ -3892,8 +3880,8 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb" ] }, { @@ -3901,8 +3889,8 @@ "kernelrelease": "4.15.0-1093-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" ] }, { @@ -3919,8 +3907,8 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb" ] }, { @@ -3928,8 +3916,8 @@ "kernelrelease": "4.15.0-1094-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb" ] }, { @@ -3937,8 +3925,8 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" ] }, { @@ -3946,8 +3934,8 @@ "kernelrelease": "4.15.0-1095-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" ] }, { @@ -3991,8 +3979,8 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" ] }, { @@ -4000,8 +3988,8 @@ "kernelrelease": "4.15.0-1098-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb" ] }, { @@ -4018,8 +4006,8 @@ "kernelrelease": "4.15.0-1099-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb" ] }, { @@ -4027,8 +4015,8 @@ "kernelrelease": "4.15.0-1100-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb" ] }, { @@ -4036,8 +4024,8 @@ "kernelrelease": "4.15.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" ] }, { @@ -4054,8 +4042,8 @@ "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" ] }, { @@ -4063,8 +4051,8 @@ "kernelrelease": "4.15.0-1102-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb" ] }, { @@ -4108,8 +4096,8 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, { @@ -4126,8 +4114,8 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" ] }, { @@ -4135,8 +4123,8 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" ] }, { @@ -4171,8 +4159,8 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" ] }, { @@ -4180,8 +4168,8 @@ "kernelrelease": "4.15.0-1112-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb" ] }, { @@ -4189,8 +4177,8 @@ "kernelrelease": "4.15.0-1113-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb" ] }, { @@ -4198,8 +4186,8 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" ] }, { @@ -4225,8 +4213,8 @@ "kernelrelease": "4.15.0-1115-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb" ] }, { @@ -4234,8 +4222,8 @@ "kernelrelease": "4.15.0-1116-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb" ] }, { @@ -4243,8 +4231,8 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" ] }, { @@ -4252,8 +4240,8 @@ "kernelrelease": "4.15.0-1118-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb" ] }, { @@ -4261,8 +4249,8 @@ "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb" ] }, { @@ -4270,8 +4258,8 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" ] }, { @@ -4285,20 +4273,20 @@ }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1126-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" ] }, { @@ -4306,8 +4294,8 @@ "kernelrelease": "4.15.0-1130-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb" ] }, { @@ -4315,8 +4303,8 @@ "kernelrelease": "4.15.0-1132-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1132_4.15.0-1132.142_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1132-snapdragon_4.15.0-1132.142_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1132-snapdragon_4.15.0-1132.142_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1132_4.15.0-1132.142_arm64.deb" ] }, { @@ -4342,8 +4330,8 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb" ] }, { @@ -4351,8 +4339,8 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" ] }, { @@ -4360,8 +4348,8 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" ] }, { @@ -4369,8 +4357,8 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" ] }, { @@ -4414,8 +4402,8 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" ] }, { @@ -4459,8 +4447,8 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" ] }, { @@ -4495,8 +4483,8 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" ] }, { @@ -4504,8 +4492,8 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb" ] }, { @@ -4513,8 +4501,8 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb" ] }, { @@ -4540,8 +4528,8 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" ] }, { @@ -4594,8 +4582,8 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb" ] }, { @@ -4612,8 +4600,8 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb" ] }, { @@ -4621,8 +4609,8 @@ "kernelrelease": "4.15.0-184", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_arm64.deb" ] }, { @@ -4630,9 +4618,9 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb" ] }, { @@ -4640,8 +4628,8 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb" ] }, @@ -4650,9 +4638,9 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb" ] }, { @@ -4660,9 +4648,9 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb" ] }, { @@ -4670,8 +4658,8 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb" ] }, @@ -4680,9 +4668,9 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" ] }, { @@ -4690,8 +4678,8 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" ] }, @@ -4701,8 +4689,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb" ] }, { @@ -4710,9 +4698,9 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb" ] }, { @@ -4720,8 +4708,8 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb" ] }, @@ -4730,9 +4718,9 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb" ] }, { @@ -4740,9 +4728,9 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" ] }, { @@ -4750,9 +4738,9 @@ "kernelrelease": "4.15.0-44", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" ] }, { @@ -4761,8 +4749,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb" ] }, { @@ -4770,9 +4758,9 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" ] }, { @@ -4780,9 +4768,9 @@ "kernelrelease": "4.15.0-47", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb" ] }, { @@ -4808,8 +4796,8 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb" ] }, { @@ -4817,8 +4805,8 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" ] }, { @@ -4826,8 +4814,8 @@ "kernelrelease": "4.15.0-55", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb" ] }, { @@ -4844,8 +4832,8 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb" ] }, { @@ -4871,8 +4859,8 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" ] }, { @@ -4898,8 +4886,8 @@ "kernelrelease": "4.15.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_arm64.deb" ] }, { @@ -4907,8 +4895,8 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb" ] }, { @@ -4916,8 +4904,8 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" ] }, { @@ -4925,8 +4913,8 @@ "kernelrelease": "4.15.0-76", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" ] }, { @@ -4934,8 +4922,8 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb" ] }, { @@ -4952,8 +4940,8 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" ] }, { @@ -4961,8 +4949,8 @@ "kernelrelease": "4.15.0-99", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb" ] }, { @@ -4970,9 +4958,9 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb" ] }, { @@ -4980,9 +4968,9 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" ] }, { @@ -5000,9 +4988,9 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb" ] }, { @@ -5011,8 +4999,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb" ] }, { @@ -5021,8 +5009,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" ] }, { @@ -5030,9 +5018,9 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, { @@ -5040,9 +5028,9 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb" ] }, { @@ -5051,8 +5039,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb" ] }, { @@ -5061,8 +5049,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb" ] }, { @@ -5079,8 +5067,8 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb" ] }, { @@ -5106,8 +5094,8 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb" ] }, { @@ -5133,8 +5121,8 @@ "kernelrelease": "5.0.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" ] }, { @@ -5142,8 +5130,8 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb" ] }, { @@ -5160,8 +5148,8 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" ] }, { @@ -5178,8 +5166,8 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" ] }, { @@ -5214,8 +5202,8 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" ] }, { @@ -5232,8 +5220,8 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" ] }, { @@ -5259,8 +5247,8 @@ "kernelrelease": "5.0.0-61-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" ] }, { @@ -5268,8 +5256,8 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb" ] }, { @@ -5277,8 +5265,8 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb" ] }, { @@ -5295,8 +5283,8 @@ "kernelrelease": "5.3.0-1017-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb" ] }, { @@ -5304,8 +5292,8 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb" ] }, { @@ -5313,8 +5301,8 @@ "kernelrelease": "5.3.0-1023-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" ] }, { @@ -5322,8 +5310,8 @@ "kernelrelease": "5.3.0-1028-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb" ] }, { @@ -5349,8 +5337,8 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb" ] }, { @@ -5376,8 +5364,8 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb" ] }, { @@ -5385,8 +5373,8 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb" ] }, { @@ -5403,8 +5391,8 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" ] }, { @@ -5421,8 +5409,8 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" ] }, { @@ -5430,8 +5418,8 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" ] }, { @@ -5448,8 +5436,8 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" ] }, { @@ -5457,8 +5445,8 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb" ] }, { @@ -5466,8 +5454,8 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" ] }, { @@ -5484,8 +5472,8 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb" ] }, { @@ -5502,8 +5490,8 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" ] }, { @@ -5556,8 +5544,8 @@ "kernelrelease": "5.4.0-1028-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb" ] }, { @@ -5565,8 +5553,8 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" ] }, { @@ -5619,8 +5607,8 @@ "kernelrelease": "5.4.0-1039-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb" ] }, { @@ -5628,8 +5616,8 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" ] }, { @@ -5637,8 +5625,8 @@ "kernelrelease": "5.4.0-1041-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, { @@ -5682,8 +5670,8 @@ "kernelrelease": "5.4.0-1048-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" ] }, { @@ -5691,8 +5679,8 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb" ] }, { @@ -5700,8 +5688,8 @@ "kernelrelease": "5.4.0-1049-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb" ] }, { @@ -5727,8 +5715,8 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" ] }, { @@ -5745,8 +5733,8 @@ "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" ] }, { @@ -5754,8 +5742,8 @@ "kernelrelease": "5.4.0-1055-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb" ] }, { @@ -5772,8 +5760,8 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb" ] }, { @@ -5808,8 +5796,8 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" ] }, { @@ -5826,8 +5814,8 @@ "kernelrelease": "5.4.0-1059-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" ] }, { @@ -5835,8 +5823,8 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" ] }, { @@ -5853,8 +5841,8 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb" ] }, { @@ -5862,8 +5850,8 @@ "kernelrelease": "5.4.0-1063-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb" ] }, { @@ -5898,8 +5886,8 @@ "kernelrelease": "5.4.0-1068-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_arm64.deb" ] }, { @@ -5943,8 +5931,8 @@ "kernelrelease": "5.4.0-1072-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb" ] }, { @@ -5952,8 +5940,8 @@ "kernelrelease": "5.4.0-1072-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" ] }, { @@ -5997,26 +5985,26 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb" ] }, { "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1078-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb" ] }, { "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1078-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" ] }, { @@ -6060,8 +6048,8 @@ "kernelrelease": "5.4.0-117-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_arm64.deb" ] }, { @@ -6069,8 +6057,8 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" ] }, { @@ -6078,8 +6066,8 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" ] }, { @@ -6096,8 +6084,8 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" ] }, { @@ -6123,8 +6111,8 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb" ] }, { @@ -6132,8 +6120,8 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb" ] }, { @@ -6150,8 +6138,8 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" ] }, { @@ -6159,8 +6147,8 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb" ] }, { @@ -6168,8 +6156,8 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb" ] }, { @@ -6177,8 +6165,8 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" ] }, { @@ -6204,8 +6192,8 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" ] }, { @@ -6231,8 +6219,8 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" ] }, { @@ -6240,8 +6228,8 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" ] }, { @@ -6249,8 +6237,8 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" ] }, { @@ -6267,8 +6255,8 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" ] }, { @@ -6276,8 +6264,8 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb" ] }, { @@ -6285,8 +6273,8 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb" ] }, { @@ -6294,8 +6282,8 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" ] }, { @@ -6312,8 +6300,8 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" ] }, { @@ -6321,8 +6309,8 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb" ] }, { @@ -6348,8 +6336,8 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" ] }, { @@ -6357,8 +6345,8 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb" ] }, { @@ -6366,8 +6354,8 @@ "kernelrelease": "4.15.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb" ] }, { @@ -6384,8 +6372,8 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb" ] }, { @@ -6393,8 +6381,8 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb" ] }, @@ -6403,8 +6391,8 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, @@ -6413,9 +6401,9 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb" ] }, { @@ -6423,8 +6411,8 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb" ] }, { @@ -6441,8 +6429,8 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb" ] }, { @@ -6450,8 +6438,8 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" ] }, { @@ -6459,8 +6447,8 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" ] }, { @@ -6468,8 +6456,8 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" ] }, { @@ -6477,8 +6465,8 @@ "kernelrelease": "5.0.0-58-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb" ] }, { @@ -6522,8 +6510,8 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" ] }, { @@ -6540,27 +6528,27 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.15.0-1005-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1005-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { @@ -6581,16 +6569,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb" ] }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" - ] - }, { "kernelversion": "28", "kernelrelease": "5.15.0-27", @@ -6601,34 +6579,44 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb" ] }, + { + "kernelversion": "28", + "kernelrelease": "5.15.0-27-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" + ] + }, { "kernelversion": "29", "kernelrelease": "5.15.0-28", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29_arm64.deb" ] }, { "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" ] }, { "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36+22.10.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" ] }, { @@ -6645,8 +6633,8 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb" ] }, { @@ -6654,8 +6642,8 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -6663,8 +6651,8 @@ "kernelrelease": "5.15.0-1004-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -6690,9 +6678,18 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" + ] + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -6705,12 +6702,12 @@ ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { @@ -6718,17 +6715,8 @@ "kernelrelease": "5.11.0-1028-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb" ] }, { @@ -6736,8 +6724,8 @@ "kernelrelease": "5.11.0-1029-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" ] }, { @@ -6774,8 +6762,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" ] }, { @@ -6783,9 +6771,9 @@ "kernelrelease": "5.11.0-42-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb" ] }, { @@ -6794,8 +6782,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb" ] }, { @@ -6803,9 +6791,9 @@ "kernelrelease": "5.11.0-60-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" ] }, { @@ -6813,9 +6801,9 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" ] }, { @@ -6847,20 +6835,20 @@ }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -6868,8 +6856,8 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" ] }, { @@ -6886,8 +6874,8 @@ "kernelrelease": "5.13.0-1023-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb" ] }, { @@ -6895,8 +6883,8 @@ "kernelrelease": "5.13.0-1023-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" ] }, { @@ -6904,8 +6892,8 @@ "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb" ] }, { @@ -6922,8 +6910,8 @@ "kernelrelease": "5.13.0-1028-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] }, { @@ -6931,8 +6919,8 @@ "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] }, { @@ -6941,8 +6929,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" ] }, { @@ -6950,8 +6938,8 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb" ] }, @@ -6961,8 +6949,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb" ] }, { @@ -6970,9 +6958,9 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb" ] }, { @@ -6980,9 +6968,9 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb" ] }, { @@ -6990,9 +6978,9 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb" ] }, { @@ -7000,9 +6988,9 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb" ] }, { @@ -7010,9 +6998,9 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb" ] }, { @@ -7020,9 +7008,9 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb" ] }, { @@ -7030,9 +7018,9 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb" ] }, { @@ -7040,9 +7028,9 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" ] }, { @@ -7060,8 +7048,8 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" ] }, @@ -7070,8 +7058,8 @@ "kernelrelease": "5.15.0-1007-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb" ] }, { @@ -7079,8 +7067,8 @@ "kernelrelease": "5.15.0-1009-aws-5.15", "target": "ubuntu-aws-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_arm64.deb" ] }, { @@ -7088,9 +7076,9 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb" ] }, { @@ -7098,9 +7086,9 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" ] }, { @@ -7108,8 +7096,8 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" ] }, @@ -7128,8 +7116,8 @@ "kernelrelease": "5.4.0-100", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb" ] }, { @@ -7137,8 +7125,8 @@ "kernelrelease": "5.4.0-102", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_arm64.deb" ] }, { @@ -7182,8 +7170,8 @@ "kernelrelease": "5.4.0-1028-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb" ] }, { @@ -7191,8 +7179,8 @@ "kernelrelease": "5.4.0-1031-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1031_5.4.0-1031.34_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1031_5.4.0-1031.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb" ] }, { @@ -7200,8 +7188,8 @@ "kernelrelease": "5.4.0-1033-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb" ] }, { @@ -7209,8 +7197,8 @@ "kernelrelease": "5.4.0-1033-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" ] }, { @@ -7218,8 +7206,8 @@ "kernelrelease": "5.4.0-1034-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1034-bluefield_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1034_5.4.0-1034.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1034_5.4.0-1034.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1034-bluefield_5.4.0-1034.37_arm64.deb" ] }, { @@ -7227,26 +7215,26 @@ "kernelrelease": "5.4.0-1034-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1035-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1035-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1035-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1035-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" ] }, { @@ -7272,8 +7260,8 @@ "kernelrelease": "5.4.0-1037-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1037-bluefield_5.4.0-1037.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1037_5.4.0-1037.40_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1037-bluefield_5.4.0-1037.40_arm64.deb" ] }, { @@ -7299,8 +7287,8 @@ "kernelrelease": "5.4.0-1046-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb" ] }, { @@ -7326,8 +7314,8 @@ "kernelrelease": "5.4.0-1052-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" ] }, { @@ -7344,8 +7332,8 @@ "kernelrelease": "5.4.0-1056-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb" ] }, { @@ -7398,8 +7386,8 @@ "kernelrelease": "5.4.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb" ] }, { @@ -7407,8 +7395,8 @@ "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" ] }, { @@ -7425,8 +7413,8 @@ "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb" ] }, { @@ -7443,8 +7431,8 @@ "kernelrelease": "5.4.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" ] }, { @@ -7452,8 +7440,8 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" ] }, { @@ -7461,8 +7449,8 @@ "kernelrelease": "5.4.0-107", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb" ] }, { @@ -7479,17 +7467,17 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, { @@ -7497,17 +7485,17 @@ "kernelrelease": "5.4.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" ] }, { @@ -7524,8 +7512,17 @@ "kernelrelease": "5.4.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb" + ] + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" ] }, { @@ -7538,12 +7535,12 @@ ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb" ] }, { @@ -7555,22 +7552,13 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb" ] }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" - ] - }, { "kernelversion": "79", "kernelrelease": "5.4.0-1074-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" ] }, { @@ -7605,8 +7593,8 @@ "kernelrelease": "5.4.0-1076-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" ] }, { @@ -7614,8 +7602,8 @@ "kernelrelease": "5.4.0-1078-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_arm64.deb" ] }, { @@ -7623,8 +7611,8 @@ "kernelrelease": "5.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_arm64.deb" ] }, { @@ -7713,9 +7701,9 @@ "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" ] }, { @@ -7723,8 +7711,8 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" ] }, { @@ -7732,8 +7720,8 @@ "kernelrelease": "5.11.0-1016-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { @@ -7747,20 +7735,20 @@ }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1017-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb" ] }, { @@ -7768,8 +7756,8 @@ "kernelrelease": "5.11.0-1019-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -7777,8 +7765,8 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" ] }, { @@ -7786,8 +7774,8 @@ "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" ] }, { @@ -7804,8 +7792,8 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb" ] }, { @@ -7817,22 +7805,13 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb" ] }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" - ] - }, { "kernelversion": "24~20.04.1", "kernelrelease": "5.11.0-1023-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -7845,12 +7824,21 @@ ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { @@ -7858,17 +7846,17 @@ "kernelrelease": "5.11.0-1025-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -7876,8 +7864,8 @@ "kernelrelease": "5.11.0-1027-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" ] }, { @@ -7913,8 +7901,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" ] }, { @@ -7922,8 +7910,8 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb" ] }, @@ -7933,8 +7921,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb" ] }, { @@ -7943,8 +7931,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb" ] }, { @@ -7952,9 +7940,9 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" ] }, { @@ -7962,9 +7950,9 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" ] }, { @@ -7972,9 +7960,9 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" ] }, { @@ -7982,9 +7970,9 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" ] }, { @@ -7992,9 +7980,9 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb" ] }, { @@ -8002,8 +7990,8 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb" ] }, { @@ -8029,8 +8017,8 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" ] }, { @@ -8047,8 +8035,8 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" ] }, { @@ -8056,8 +8044,8 @@ "kernelrelease": "5.13.0-1017-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb" ] }, { @@ -8074,8 +8062,8 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" ] }, { @@ -8092,8 +8080,8 @@ "kernelrelease": "5.13.0-1021-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" ] }, { @@ -8101,8 +8089,8 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb" ] }, { @@ -8119,8 +8107,8 @@ "kernelrelease": "5.13.0-1025-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" ] }, { @@ -8137,8 +8125,8 @@ "kernelrelease": "5.13.0-1025-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" ] }, { @@ -8164,8 +8152,8 @@ "kernelrelease": "5.13.0-1029-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb" ] }, { @@ -8182,8 +8170,8 @@ "kernelrelease": "5.13.0-1030-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb" ] }, { @@ -8191,8 +8179,8 @@ "kernelrelease": "5.13.0-1033-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" ] }, { @@ -8200,8 +8188,8 @@ "kernelrelease": "5.13.0-1034-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_arm64.deb" ] }, { @@ -8209,8 +8197,8 @@ "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb" ] }, @@ -8239,9 +8227,9 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" ] }, { @@ -8249,8 +8237,8 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb" ] }, @@ -8259,9 +8247,9 @@ "kernelrelease": "5.13.0-48-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" ] }, { @@ -8269,8 +8257,8 @@ "kernelrelease": "5.15.0-1006-gcp-5.15", "target": "ubuntu-gcp-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_arm64.deb" ] }, { @@ -8291,33 +8279,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" ] }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" - ] - }, { "kernelversion": "34~20.04.1", "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb" ] }, { @@ -8329,6 +8308,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" ] }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + ] + }, { "kernelversion": "14", "kernelrelease": "5.4.0-1011-bluefield", @@ -8361,8 +8349,8 @@ "kernelrelease": "5.4.0-1013-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb" ] }, { @@ -8379,8 +8367,8 @@ "kernelrelease": "5.4.0-1015-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { @@ -8397,8 +8385,8 @@ "kernelrelease": "5.4.0-1016-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb" ] }, { @@ -8406,8 +8394,8 @@ "kernelrelease": "5.4.0-1016-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb" ] }, { @@ -8424,8 +8412,8 @@ "kernelrelease": "5.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { @@ -8433,8 +8421,8 @@ "kernelrelease": "5.4.0-1018-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb" ] }, { @@ -8469,8 +8457,8 @@ "kernelrelease": "5.4.0-1020-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb" ] }, { @@ -8514,8 +8502,8 @@ "kernelrelease": "5.4.0-1022-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb" ] }, { @@ -8532,8 +8520,8 @@ "kernelrelease": "5.4.0-1023-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb" ] }, { @@ -8541,8 +8529,8 @@ "kernelrelease": "5.4.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb" ] }, { @@ -8556,20 +8544,20 @@ }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1025-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1025-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1025-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" ] }, { @@ -8577,8 +8565,8 @@ "kernelrelease": "5.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" ] }, { @@ -8595,26 +8583,26 @@ "kernelrelease": "5.4.0-1029-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1030-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1030-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1030-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1030-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" ] }, { @@ -8631,8 +8619,8 @@ "kernelrelease": "5.4.0-1032-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" ] }, { @@ -8685,8 +8673,8 @@ "kernelrelease": "5.4.0-1038-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" ] }, { @@ -8694,8 +8682,8 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb" ] }, { @@ -8712,8 +8700,8 @@ "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { @@ -8721,8 +8709,8 @@ "kernelrelease": "5.4.0-1041-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb" ] }, { @@ -8730,8 +8718,8 @@ "kernelrelease": "5.4.0-1042-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb" ] }, { @@ -8739,8 +8727,8 @@ "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb" ] }, { @@ -8748,8 +8736,8 @@ "kernelrelease": "5.4.0-1043-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb" ] }, { @@ -8766,8 +8754,8 @@ "kernelrelease": "5.4.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb" ] }, { @@ -8820,8 +8808,8 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" ] }, { @@ -8829,8 +8817,8 @@ "kernelrelease": "5.4.0-1048-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb" ] }, { @@ -8847,8 +8835,8 @@ "kernelrelease": "5.4.0-1050-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb" ] }, { @@ -8865,8 +8853,8 @@ "kernelrelease": "5.4.0-1052-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb" ] }, { @@ -8874,8 +8862,8 @@ "kernelrelease": "5.4.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" ] }, { @@ -8892,8 +8880,8 @@ "kernelrelease": "5.4.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" ] }, { @@ -8901,8 +8889,8 @@ "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" ] }, { @@ -8919,8 +8907,8 @@ "kernelrelease": "5.4.0-1055-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb" ] }, { @@ -8946,8 +8934,8 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" ] }, { @@ -8955,8 +8943,8 @@ "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb" ] }, { @@ -8973,8 +8961,8 @@ "kernelrelease": "5.4.0-1059-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" ] }, { @@ -8991,8 +8979,8 @@ "kernelrelease": "5.4.0-1059-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb" ] }, { @@ -9009,8 +8997,8 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" ] }, { @@ -9018,8 +9006,8 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" ] }, { @@ -9027,8 +9015,8 @@ "kernelrelease": "5.4.0-1062-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb" ] }, { @@ -9036,8 +9024,8 @@ "kernelrelease": "5.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb" ] }, { @@ -9054,8 +9042,8 @@ "kernelrelease": "5.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { @@ -9081,8 +9069,8 @@ "kernelrelease": "5.4.0-1068-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb" ] }, { @@ -9099,26 +9087,26 @@ "kernelrelease": "5.4.0-1072-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb" ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" ] }, { @@ -9153,8 +9141,8 @@ "kernelrelease": "5.4.0-1078-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb" ] }, { @@ -9180,8 +9168,8 @@ "kernelrelease": "5.4.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb" ] }, { @@ -9216,8 +9204,8 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" ] }, { @@ -9225,8 +9213,8 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" ] }, { @@ -9234,8 +9222,8 @@ "kernelrelease": "5.4.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb" ] }, { @@ -9252,8 +9240,8 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb" ] }, { @@ -9261,8 +9249,8 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb" ] }, { @@ -9270,8 +9258,8 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb" ] }, { @@ -9288,8 +9276,8 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb" ] }, { @@ -9306,8 +9294,8 @@ "kernelrelease": "5.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_arm64.deb" ] }, { @@ -9324,8 +9312,8 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb" ] }, { @@ -9360,8 +9348,8 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb" ] }, { @@ -9369,8 +9357,8 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" ] }, { @@ -9387,8 +9375,8 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" ] }, { @@ -9396,8 +9384,8 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb" ] }, { @@ -9414,8 +9402,8 @@ "kernelrelease": "5.4.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb" ] }, { @@ -9423,8 +9411,8 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb" ] }, { @@ -9468,8 +9456,8 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" ] }, { @@ -9504,8 +9492,8 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" ] }, { @@ -9513,8 +9501,8 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb" ] }, { @@ -9522,8 +9510,8 @@ "kernelrelease": "5.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb" ] }, { @@ -9540,8 +9528,8 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" ] }, { @@ -9549,8 +9537,8 @@ "kernelrelease": "5.8.0-1035-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb" ] }, { @@ -9558,8 +9546,8 @@ "kernelrelease": "5.8.0-1037-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, { @@ -9576,8 +9564,8 @@ "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" ] }, { @@ -9594,8 +9582,8 @@ "kernelrelease": "5.8.0-1042-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" ] }, { @@ -9613,9 +9601,9 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb" ] }, { @@ -9623,9 +9611,9 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb" ] }, { @@ -9633,8 +9621,8 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" ] }, @@ -9643,8 +9631,8 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" ] }, @@ -9653,9 +9641,9 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" ] }, { @@ -9663,8 +9651,8 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb" ] }, @@ -9683,9 +9671,9 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" ] }, { @@ -9693,9 +9681,9 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" ] }, { @@ -9723,9 +9711,9 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb" ] }, { @@ -9762,8 +9750,8 @@ "kernelrelease": "5.4.0-1007-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb" ] }, { @@ -9771,8 +9759,8 @@ "kernelrelease": "5.4.0-1049-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb" ] }, { @@ -9789,8 +9777,8 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb" ] }, { @@ -9807,9 +9795,9 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb" ] }, { @@ -9817,8 +9805,8 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" ] }, @@ -9837,9 +9825,9 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" ] }, { @@ -9847,8 +9835,8 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" ] }, @@ -9884,8 +9872,8 @@ "kernelrelease": "5.11.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" ] }, { @@ -9908,11 +9896,11 @@ }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -9926,20 +9914,20 @@ }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1027-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb" ] }, { @@ -9947,9 +9935,9 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb" ] }, { @@ -9957,8 +9945,8 @@ "kernelrelease": "5.11.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb" ] }, { @@ -9966,8 +9954,8 @@ "kernelrelease": "5.11.0-1007-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb" ] }, { @@ -9975,8 +9963,8 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb" ] }, @@ -9994,8 +9982,8 @@ "kernelrelease": "5.13.0-1010-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" ] }, { @@ -10039,8 +10027,8 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb" ] }, { @@ -10048,8 +10036,8 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb" ] }, { @@ -10063,20 +10051,20 @@ }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1017-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, { @@ -10084,8 +10072,8 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb" ] }, { @@ -10111,26 +10099,26 @@ "kernelrelease": "5.13.0-1019-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1020-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1020-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb" ] }, { @@ -10174,8 +10162,8 @@ "kernelrelease": "5.13.0-1022-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" ] }, { @@ -10183,8 +10171,8 @@ "kernelrelease": "5.13.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" ] }, { @@ -10192,8 +10180,8 @@ "kernelrelease": "5.13.0-1023-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb" ] }, { @@ -10210,8 +10198,8 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" ] }, { @@ -10219,26 +10207,26 @@ "kernelrelease": "5.13.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1024-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1024-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1024-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1024-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb" ] }, { @@ -10246,8 +10234,8 @@ "kernelrelease": "5.13.0-1024-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" ] }, { @@ -10255,26 +10243,26 @@ "kernelrelease": "5.13.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1025-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" ] }, { @@ -10282,8 +10270,8 @@ "kernelrelease": "5.13.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_arm64.deb" ] }, { @@ -10324,20 +10312,20 @@ }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1028-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_arm64.deb" ] }, { @@ -10345,8 +10333,8 @@ "kernelrelease": "5.13.0-1028-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb" ] }, { @@ -10354,8 +10342,8 @@ "kernelrelease": "5.13.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" ] }, { @@ -10363,9 +10351,9 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb" ] }, { @@ -10373,9 +10361,9 @@ "kernelrelease": "5.13.0-29", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb" ] }, { @@ -10383,9 +10371,9 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" ] }, { @@ -10403,9 +10391,9 @@ "kernelrelease": "5.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb" ] }, { @@ -10414,8 +10402,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" ] }, { @@ -10423,9 +10411,9 @@ "kernelrelease": "5.13.0-38", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb" ] }, { @@ -10443,9 +10431,9 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb" ] }, { @@ -10453,8 +10441,8 @@ "kernelrelease": "5.13.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic-64k_5.13.0-42.47_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic-64k_5.13.0-42.47_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb" ] }, @@ -10463,9 +10451,9 @@ "kernelrelease": "5.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48_arm64.deb" ] }, { @@ -10473,8 +10461,8 @@ "kernelrelease": "5.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb" ] }, @@ -10483,8 +10471,8 @@ "kernelrelease": "5.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic-64k_5.13.0-45.50_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic-64k_5.13.0-45.50_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_arm64.deb" ] }, @@ -10497,31 +10485,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb" ] }, - { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb" - ] - }, { "kernelversion": "9", "kernelrelease": "5.13.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-aws", - "target": "ubuntu-aws", + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb" ] }, { @@ -10533,13 +10512,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb" ] }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + ] + }, { "kernelversion": "11", "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb" ] }, { @@ -10565,8 +10553,8 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb" ] }, { @@ -10574,8 +10562,8 @@ "kernelrelease": "5.13.0-1012-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb" ] }, { @@ -10583,8 +10571,8 @@ "kernelrelease": "5.13.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" ] }, { @@ -10592,8 +10580,8 @@ "kernelrelease": "5.13.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb" ] }, { @@ -10619,8 +10607,8 @@ "kernelrelease": "5.13.0-1015-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb" ] }, { @@ -10628,8 +10616,8 @@ "kernelrelease": "5.13.0-1016-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb" ] }, { @@ -10664,8 +10652,8 @@ "kernelrelease": "5.13.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb" ] }, { @@ -10709,8 +10697,8 @@ "kernelrelease": "5.13.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_arm64.deb" ] }, { @@ -10718,9 +10706,9 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" ] }, { @@ -10728,9 +10716,9 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" ] }, { @@ -10748,9 +10736,9 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb" ] }, { @@ -10758,9 +10746,9 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" ] }, { @@ -10768,9 +10756,9 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" ] }, { @@ -10778,9 +10766,9 @@ "kernelrelease": "5.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb" ] }, { @@ -10788,9 +10776,9 @@ "kernelrelease": "5.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54_arm64.deb" ] }, { @@ -10798,8 +10786,8 @@ "kernelrelease": "5.13.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb" ] }, { @@ -10807,8 +10795,8 @@ "kernelrelease": "5.13.0-1029-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb" ] }, { @@ -10826,8 +10814,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb" ] }, { @@ -10835,8 +10823,8 @@ "kernelrelease": "5.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic-64k_5.13.0-46.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb" ] }, @@ -10854,8 +10842,8 @@ "kernelrelease": "5.13.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" ] }, { @@ -10882,26 +10870,26 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.15.0-1006-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.15.0-1006-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.15.0-1006-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1006-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { @@ -10918,8 +10906,8 @@ "kernelrelease": "5.15.0-1006-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb" ] }, { @@ -10927,8 +10915,8 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { @@ -10936,8 +10924,8 @@ "kernelrelease": "5.15.0-1007-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb" ] }, { @@ -10945,8 +10933,8 @@ "kernelrelease": "5.15.0-1008-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb" ] }, { @@ -10954,8 +10942,8 @@ "kernelrelease": "5.15.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" ] }, { @@ -10964,18 +10952,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.15.0-30", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb" ] }, { @@ -10984,18 +10962,18 @@ "target": "ubuntu-lowlatency", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.15.0-32", + "kernelversion": "31", + "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { @@ -11009,13 +10987,13 @@ ] }, { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "33", + "kernelrelease": "5.15.0-32", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33_arm64.deb" ] }, { @@ -11023,19 +11001,19 @@ "kernelrelease": "5.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", + "kernelversion": "34", + "kernelrelease": "5.15.0-33-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb" ] }, { @@ -11043,9 +11021,19 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb" ] }, { @@ -11053,8 +11041,8 @@ "kernelrelease": "5.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_arm64.deb" ] }, { @@ -11062,8 +11050,8 @@ "kernelrelease": "5.15.0-1008-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb" ] }, { @@ -11080,8 +11068,8 @@ "kernelrelease": "5.15.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" ] }, { @@ -11089,8 +11077,8 @@ "kernelrelease": "5.15.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" ] }, { @@ -11104,22 +11092,22 @@ }, { "kernelversion": "39", - "kernelrelease": "5.15.0-37", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-37-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.15.0-37-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-37", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb" ] }, { @@ -11145,8 +11133,8 @@ "kernelrelease": "5.15.0-1008-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb" ] }, { @@ -11154,8 +11142,8 @@ "kernelrelease": "5.15.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" ] }, { @@ -11172,8 +11160,8 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb" ] }, { @@ -11191,8 +11179,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb" ] }, { @@ -11209,8 +11197,8 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" ] }, { @@ -11218,8 +11206,8 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb" ] }, { @@ -11227,8 +11215,8 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb" ] }, { @@ -11245,8 +11233,8 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb" ] }, { @@ -11254,8 +11242,8 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" ] }, { @@ -11263,8 +11251,8 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" ] }, { @@ -11281,8 +11269,8 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" ] }, { @@ -11290,8 +11278,8 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" ] }, { @@ -11299,8 +11287,8 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" ] }, { @@ -11335,8 +11323,8 @@ "kernelrelease": "3.13.0-123", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_arm64.deb" ] }, { @@ -11344,8 +11332,8 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" ] }, { @@ -11362,8 +11350,8 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" ] }, { @@ -11371,8 +11359,8 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb" ] }, { @@ -11380,8 +11368,8 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" ] }, { @@ -11416,8 +11404,8 @@ "kernelrelease": "3.13.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" ] }, { @@ -11425,8 +11413,8 @@ "kernelrelease": "3.13.0-141", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb" ] }, { @@ -11434,8 +11422,8 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" ] }, { @@ -11461,8 +11449,8 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" ] }, { @@ -11470,8 +11458,8 @@ "kernelrelease": "3.13.0-149", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_arm64.deb" ] }, { @@ -11488,8 +11476,8 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb" ] }, { @@ -11506,8 +11494,8 @@ "kernelrelease": "3.13.0-156", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb" ] }, { @@ -11515,8 +11503,8 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb" ] }, { @@ -11533,8 +11521,8 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" ] }, { @@ -11551,8 +11539,8 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb" ] }, { @@ -11587,8 +11575,8 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb" ] }, { @@ -11614,8 +11602,8 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" ] }, { @@ -11632,8 +11620,8 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" ] }, { @@ -11650,8 +11638,8 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" ] }, { @@ -11677,8 +11665,8 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" ] }, { @@ -11695,8 +11683,8 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" ] }, { @@ -11704,8 +11692,8 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb" ] }, { @@ -11722,8 +11710,8 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb" ] }, { @@ -11767,8 +11755,8 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb" ] }, { @@ -11776,8 +11764,8 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" ] }, { @@ -11812,8 +11800,8 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb" ] }, { @@ -11830,8 +11818,8 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb" ] }, { @@ -11848,8 +11836,8 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb" ] }, { @@ -11857,8 +11845,8 @@ "kernelrelease": "3.13.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb" ] }, { @@ -11866,8 +11854,8 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb" ] }, { @@ -11893,8 +11881,8 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb" ] }, { @@ -11920,8 +11908,8 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb" ] }, { @@ -11929,8 +11917,8 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb" ] }, { @@ -11947,8 +11935,8 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb" ] }, { @@ -11956,8 +11944,8 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb" ] }, { @@ -11965,8 +11953,8 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" ] }, { @@ -11983,8 +11971,8 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" ] }, { @@ -12028,8 +12016,8 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb" ] }, { @@ -12037,8 +12025,8 @@ "kernelrelease": "3.13.0-95", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb" ] }, { @@ -12046,8 +12034,8 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb" ] }, { @@ -12091,8 +12079,8 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" ] }, { @@ -12118,8 +12106,8 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" ] }, { @@ -12136,8 +12124,8 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" ] }, { @@ -12145,8 +12133,8 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" ] }, { @@ -12163,8 +12151,8 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb" ] }, { @@ -12217,8 +12205,8 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" ] }, { @@ -12226,8 +12214,8 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" ] }, { @@ -12244,8 +12232,8 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb" ] }, { @@ -12298,8 +12286,8 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" ] }, { @@ -12307,8 +12295,8 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb" ] }, { @@ -12316,8 +12304,8 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb" ] }, { @@ -12325,8 +12313,8 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" ] }, { @@ -12361,8 +12349,8 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" ] }, { @@ -12370,8 +12358,8 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb" ] }, { @@ -12397,8 +12385,8 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb" ] }, { @@ -12442,8 +12430,8 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" ] }, { @@ -12451,8 +12439,8 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb" ] }, { @@ -12460,8 +12448,8 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb" ] }, { @@ -12469,8 +12457,8 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" ] }, { @@ -12478,8 +12466,8 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb" ] }, { @@ -12496,8 +12484,8 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb" ] }, { @@ -12532,8 +12520,8 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" ] }, { @@ -12550,8 +12538,8 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb" ] }, { @@ -12559,8 +12547,8 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" ] }, { @@ -12577,8 +12565,8 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb" ] }, { @@ -12595,8 +12583,8 @@ "kernelrelease": "3.19.0-65-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" ] }, { @@ -12640,8 +12628,8 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" ] }, { @@ -12649,8 +12637,8 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" ] }, { @@ -12667,8 +12655,8 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb" ] }, { @@ -12676,8 +12664,8 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb" ] }, { @@ -12712,8 +12700,8 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" ] }, { @@ -12721,8 +12709,8 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" ] }, { @@ -12748,8 +12736,8 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb" ] }, { @@ -12766,8 +12754,8 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb" ] }, { @@ -12793,8 +12781,8 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" ] }, { @@ -12802,8 +12790,8 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" ] }, { @@ -12811,8 +12799,8 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb" ] }, { @@ -12820,8 +12808,8 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" ] }, { @@ -12829,8 +12817,8 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb" ] }, { @@ -12874,8 +12862,8 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" ] }, { @@ -12901,8 +12889,8 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" ] }, { @@ -12919,8 +12907,8 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" ] }, { @@ -12928,8 +12916,8 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" ] }, { @@ -12973,8 +12961,8 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" ] }, { @@ -12982,8 +12970,8 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" ] }, { @@ -13018,8 +13006,8 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" ] }, { @@ -13045,8 +13033,8 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb" ] }, { @@ -13054,8 +13042,8 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb" ] }, { @@ -13063,8 +13051,8 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" ] }, { @@ -13072,8 +13060,8 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb" ] }, { @@ -13099,8 +13087,8 @@ "kernelrelease": "4.4.0-36-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb" ] }, { @@ -13117,8 +13105,8 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" ] }, { @@ -13126,8 +13114,8 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" ] }, { @@ -13135,8 +13123,8 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb" ] }, { @@ -13162,8 +13150,8 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" ] }, { @@ -13180,8 +13168,8 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb" ] }, { @@ -13207,8 +13195,8 @@ "kernelrelease": "4.4.0-66-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" ] }, { @@ -13225,8 +13213,8 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" ] }, { @@ -13234,8 +13222,8 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb" ] }, { @@ -13261,8 +13249,8 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb" ] }, { @@ -13279,8 +13267,8 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" ] }, { @@ -13297,8 +13285,8 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" ] }, { @@ -13306,8 +13294,8 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb" ] }, { @@ -13315,8 +13303,8 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb" ] }, { @@ -13360,8 +13348,8 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" ] }, { @@ -13369,8 +13357,8 @@ "kernelrelease": "3.13.0-113", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" ] }, { @@ -13387,8 +13375,8 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb" ] }, { @@ -13423,8 +13411,8 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" ] }, { @@ -13441,8 +13429,8 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb" ] }, { @@ -13450,8 +13438,8 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb" ] }, { @@ -13495,8 +13483,8 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb" ] }, { @@ -13513,8 +13501,8 @@ "kernelrelease": "4.4.0-206", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" ] }, { @@ -13522,8 +13510,8 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb" ] }, { @@ -13531,8 +13519,8 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" ] }, { @@ -13549,8 +13537,8 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb" ] }, { @@ -13567,8 +13555,8 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" ] }, { @@ -13585,8 +13573,8 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" ] }, { @@ -13630,8 +13618,8 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb" ] }, { @@ -13639,8 +13627,8 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" ] }, { @@ -13666,8 +13654,8 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" ] }, { @@ -13675,8 +13663,8 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" ] }, { @@ -13702,8 +13690,8 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb" ] }, { @@ -13738,8 +13726,8 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" ] }, { @@ -13756,8 +13744,8 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb" ] }, { @@ -13765,8 +13753,8 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb" ] }, { @@ -13774,8 +13762,8 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb" ] }, { @@ -13783,8 +13771,8 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb" ] }, { @@ -13819,8 +13807,8 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb" ] }, { @@ -13837,8 +13825,8 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" ] }, { @@ -13864,8 +13852,8 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb" ] }, { @@ -13891,8 +13879,8 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb" ] }, { @@ -13936,8 +13924,8 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" ] }, { @@ -13954,8 +13942,8 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" ] }, { @@ -13981,8 +13969,8 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb" ] }, { @@ -13999,8 +13987,8 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" ] }, { @@ -14026,8 +14014,8 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb" ] }, { @@ -14044,8 +14032,8 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb" ] }, { @@ -14053,8 +14041,8 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb" ] }, { @@ -14062,8 +14050,8 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb" ] }, { @@ -14071,8 +14059,8 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" ] }, { @@ -14080,8 +14068,8 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb" ] }, { @@ -14089,8 +14077,8 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" ] }, { @@ -14116,8 +14104,8 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb" ] }, { @@ -14125,8 +14113,8 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" ] }, { @@ -14134,8 +14122,8 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" ] }, { @@ -14143,8 +14131,8 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb" ] }, { @@ -14152,8 +14140,8 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb" ] }, { @@ -14161,8 +14149,8 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb" ] }, { @@ -14179,8 +14167,8 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" ] }, { @@ -14197,8 +14185,8 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" ] }, { @@ -14224,8 +14212,8 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" ] }, { @@ -14242,8 +14230,8 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb" ] }, { @@ -14269,8 +14257,8 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" ] }, { @@ -14296,8 +14284,8 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" ] }, { @@ -14314,8 +14302,8 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" ] }, { @@ -14341,8 +14329,8 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" ] }, { @@ -14359,8 +14347,8 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" ] }, { @@ -14368,8 +14356,8 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" ] }, { @@ -14377,8 +14365,8 @@ "kernelrelease": "4.15.0-96-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" ] }, { @@ -14386,8 +14374,8 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb" ] }, { @@ -14413,8 +14401,8 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" ] }, { @@ -14422,8 +14410,8 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb" ] }, { @@ -14440,8 +14428,8 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" ] }, { @@ -14458,8 +14446,8 @@ "kernelrelease": "4.4.0-119", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_arm64.deb" ] }, { @@ -14467,8 +14455,8 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" ] }, { @@ -14494,8 +14482,8 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" ] }, { @@ -14503,8 +14491,8 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" ] }, { @@ -14512,8 +14500,8 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" ] }, { @@ -14521,8 +14509,8 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" ] }, { @@ -14539,8 +14527,8 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" ] }, { @@ -14557,8 +14545,8 @@ "kernelrelease": "4.4.0-141", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb" ] }, { @@ -14566,8 +14554,8 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb" ] }, { @@ -14584,8 +14572,8 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" ] }, { @@ -14602,8 +14590,8 @@ "kernelrelease": "4.4.0-150", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb" ] }, { @@ -14629,8 +14617,8 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb" ] }, { @@ -14638,8 +14626,8 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb" ] }, { @@ -14665,8 +14653,8 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb" ] }, { @@ -14683,8 +14671,8 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" ] }, { @@ -14692,8 +14680,8 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" ] }, { @@ -14701,8 +14689,8 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb" ] }, { @@ -14719,8 +14707,8 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" ] }, { @@ -14737,8 +14725,8 @@ "kernelrelease": "4.4.0-176", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" ] }, { @@ -14755,8 +14743,8 @@ "kernelrelease": "4.4.0-178", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb" ] }, { @@ -14773,8 +14761,8 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" ] }, { @@ -14782,8 +14770,8 @@ "kernelrelease": "4.4.0-185", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb" ] }, { @@ -14845,8 +14833,8 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb" ] }, { @@ -14854,8 +14842,8 @@ "kernelrelease": "4.4.0-198", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" ] }, { @@ -14863,8 +14851,8 @@ "kernelrelease": "4.4.0-200", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb" ] }, { @@ -14872,8 +14860,8 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" ] }, { @@ -14881,8 +14869,8 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" ] }, { @@ -14899,8 +14887,8 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb" ] }, { @@ -14917,8 +14905,8 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" ] }, { @@ -14944,8 +14932,8 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb" ] }, { @@ -14953,8 +14941,8 @@ "kernelrelease": "4.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb" ] }, { @@ -15007,8 +14995,8 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" ] }, { @@ -15025,8 +15013,8 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" ] }, { @@ -15052,8 +15040,8 @@ "kernelrelease": "4.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" ] }, { @@ -15061,8 +15049,8 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb" ] }, { @@ -15106,8 +15094,8 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" ] }, { @@ -15115,8 +15103,8 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb" ] }, { @@ -15142,8 +15130,8 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" ] }, { @@ -15160,8 +15148,8 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb" ] }, { @@ -15169,8 +15157,8 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb" ] }, { @@ -15187,8 +15175,8 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb" ] }, { @@ -15205,8 +15193,8 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb" ] }, { @@ -15214,8 +15202,8 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" ] }, { @@ -15223,8 +15211,8 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" ] }, { @@ -15232,8 +15220,8 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" ] }, { @@ -15250,8 +15238,8 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" ] }, { @@ -15259,8 +15247,8 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" ] }, { @@ -15286,8 +15274,8 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb" ] }, { @@ -15295,8 +15283,8 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb" ] }, { @@ -15322,8 +15310,8 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" ] }, { @@ -15331,8 +15319,8 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" ] }, { @@ -15340,8 +15328,8 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" ] }, { @@ -15349,8 +15337,8 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" ] }, { @@ -15385,8 +15373,8 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb" ] }, { @@ -15403,8 +15391,8 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb" ] }, { @@ -15448,8 +15436,8 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" ] }, { diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index e16424d..03e2a73 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -1859,7 +1859,7 @@ "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" ] }, { @@ -1867,7 +1867,7 @@ "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" ] }, { @@ -1899,7 +1899,7 @@ "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" ] }, { @@ -1939,7 +1939,7 @@ "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" ] }, { @@ -1947,7 +1947,7 @@ "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" ] }, { @@ -1955,7 +1955,7 @@ "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" ] }, { @@ -1971,7 +1971,7 @@ "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" ] }, { @@ -7724,6 +7724,22 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.6.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.308.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.7.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.308.9.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.9.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.14.35-1902.305.4.1.el7uek.x86_64", @@ -8284,6 +8300,22 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.514.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.514.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.5.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.1.12-124.42.3.el7uek.x86_64", @@ -10269,6 +10301,22 @@ "headers": [ "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.6.el8uek.x86_64.rpm" ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.308.7.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.7.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.308.9.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.9.el8uek.x86_64.rpm" + ] } ], "PhotonOS": [ @@ -10301,7 +10349,7 @@ "kernelrelease": "4.19.104-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.104-1.ph3.x86_64.rpm" ] }, { @@ -10325,7 +10373,7 @@ "kernelrelease": "4.19.115-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm" ] }, { @@ -10349,7 +10397,7 @@ "kernelrelease": "4.19.115-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-3.ph3.x86_64.rpm" ] }, { @@ -10389,7 +10437,7 @@ "kernelrelease": "4.19.124-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-1.ph3.x86_64.rpm" ] }, { @@ -10397,7 +10445,7 @@ "kernelrelease": "4.19.124-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-2.ph3.x86_64.rpm" ] }, { @@ -10445,7 +10493,7 @@ "kernelrelease": "4.19.132-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-1.ph3.x86_64.rpm" ] }, { @@ -10453,7 +10501,7 @@ "kernelrelease": "4.19.132-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-2.ph3.x86_64.rpm" ] }, { @@ -10461,7 +10509,7 @@ "kernelrelease": "4.19.132-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-3.ph3.x86_64.rpm" ] }, { @@ -10469,7 +10517,7 @@ "kernelrelease": "4.19.132-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-5.ph3.x86_64.rpm" ] }, { @@ -10509,7 +10557,7 @@ "kernelrelease": "4.19.145-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-1.ph3.x86_64.rpm" ] }, { @@ -10517,7 +10565,7 @@ "kernelrelease": "4.19.145-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-2.ph3.x86_64.rpm" ] }, { @@ -10525,7 +10573,7 @@ "kernelrelease": "4.19.145-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-4.ph3.x86_64.rpm" ] }, { @@ -10541,7 +10589,7 @@ "kernelrelease": "4.19.148-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-2.ph3.x86_64.rpm" ] }, { @@ -10549,7 +10597,7 @@ "kernelrelease": "4.19.148-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-3.ph3.x86_64.rpm" ] }, { @@ -10581,7 +10629,7 @@ "kernelrelease": "4.19.150-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.150-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm" ] }, { @@ -10589,7 +10637,7 @@ "kernelrelease": "4.19.154-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-1.ph3.x86_64.rpm" ] }, { @@ -10613,7 +10661,7 @@ "kernelrelease": "4.19.154-8.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-8.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" ] }, { @@ -10629,7 +10677,7 @@ "kernelrelease": "4.19.160-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-2.ph3.x86_64.rpm" ] }, { @@ -10677,7 +10725,7 @@ "kernelrelease": "4.19.174-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-2.ph3.x86_64.rpm" ] }, { @@ -10701,7 +10749,7 @@ "kernelrelease": "4.19.177-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.177-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-1.ph3.x86_64.rpm" ] }, { @@ -10709,7 +10757,7 @@ "kernelrelease": "4.19.177-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-2.ph3.x86_64.rpm" ] }, { @@ -10725,7 +10773,7 @@ "kernelrelease": "4.19.182-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-2.ph3.x86_64.rpm" ] }, { @@ -10741,7 +10789,7 @@ "kernelrelease": "4.19.186-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-2.ph3.x86_64.rpm" ] }, { @@ -10749,7 +10797,7 @@ "kernelrelease": "4.19.186-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.186-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-3.ph3.x86_64.rpm" ] }, { @@ -10781,7 +10829,7 @@ "kernelrelease": "4.19.189-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" ] }, { @@ -10797,7 +10845,7 @@ "kernelrelease": "4.19.190-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.190-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.190-1.ph3.x86_64.rpm" ] }, { @@ -10805,7 +10853,7 @@ "kernelrelease": "4.19.190-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" ] }, { @@ -10829,7 +10877,7 @@ "kernelrelease": "4.19.191-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.191-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-2.ph3.x86_64.rpm" ] }, { @@ -10845,7 +10893,7 @@ "kernelrelease": "4.19.198-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.198-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-1.ph3.x86_64.rpm" ] }, { @@ -10853,7 +10901,7 @@ "kernelrelease": "4.19.198-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-2.ph3.x86_64.rpm" ] }, { @@ -10877,7 +10925,7 @@ "kernelrelease": "4.19.205-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.205-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.205-1.ph3.x86_64.rpm" ] }, { @@ -10885,7 +10933,7 @@ "kernelrelease": "4.19.208-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.208-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.208-1.ph3.x86_64.rpm" ] }, { @@ -10893,7 +10941,7 @@ "kernelrelease": "4.19.214-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" ] }, { @@ -10909,7 +10957,7 @@ "kernelrelease": "4.19.217-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" ] }, { @@ -10917,7 +10965,7 @@ "kernelrelease": "4.19.219-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-1.ph3.x86_64.rpm" ] }, { @@ -10925,7 +10973,7 @@ "kernelrelease": "4.19.219-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-3.ph3.x86_64.rpm" ] }, { @@ -10933,7 +10981,7 @@ "kernelrelease": "4.19.219-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-4.ph3.x86_64.rpm" ] }, { @@ -10949,7 +10997,7 @@ "kernelrelease": "4.19.224-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-1.ph3.x86_64.rpm" ] }, { @@ -10957,7 +11005,7 @@ "kernelrelease": "4.19.224-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-2.ph3.x86_64.rpm" ] }, { @@ -10989,7 +11037,7 @@ "kernelrelease": "4.19.229-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-2.ph3.x86_64.rpm" ] }, { @@ -11005,7 +11053,7 @@ "kernelrelease": "4.19.232-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-1.ph3.x86_64.rpm" ] }, { @@ -11013,7 +11061,7 @@ "kernelrelease": "4.19.232-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-2.ph3.x86_64.rpm" ] }, { @@ -11045,7 +11093,7 @@ "kernelrelease": "4.19.241-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.241-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.241-2.ph3.x86_64.rpm" ] }, { @@ -11053,7 +11101,7 @@ "kernelrelease": "4.19.245-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.245-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.245-1.ph3.x86_64.rpm" ] }, { @@ -11061,7 +11109,7 @@ "kernelrelease": "4.19.29-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.29-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.29-1.ph3.x86_64.rpm" ] }, { @@ -11085,7 +11133,7 @@ "kernelrelease": "4.19.40-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-3.ph3.x86_64.rpm" ] }, { @@ -11093,7 +11141,7 @@ "kernelrelease": "4.19.52-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.52-1.ph3.x86_64.rpm" ] }, { @@ -11165,7 +11213,7 @@ "kernelrelease": "4.19.79-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.79-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" ] }, { @@ -11181,7 +11229,7 @@ "kernelrelease": "4.19.82-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.82-1.ph3.x86_64.rpm" ] }, { @@ -11189,7 +11237,7 @@ "kernelrelease": "4.19.84-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.84-1.ph3.x86_64.rpm" ] }, { @@ -11205,7 +11253,7 @@ "kernelrelease": "4.19.87-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm" ] }, { @@ -11229,7 +11277,7 @@ "kernelrelease": "4.19.97-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-1.ph3.x86_64.rpm" ] }, { @@ -11237,7 +11285,7 @@ "kernelrelease": "4.19.97-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-2.ph3.x86_64.rpm" ] }, { @@ -11253,7 +11301,7 @@ "kernelrelease": "4.19.97-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-4.ph3.x86_64.rpm" ] }, { @@ -11285,7 +11333,7 @@ "kernelrelease": "4.19.154-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-5.ph3.x86_64.rpm" ] }, { @@ -11341,7 +11389,7 @@ "kernelrelease": "4.19.32-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.32-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.32-2.ph3.x86_64.rpm" ] }, { @@ -11349,7 +11397,7 @@ "kernelrelease": "4.19.65-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.65-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.65-1.ph3.x86_64.rpm" ] }, { @@ -11373,7 +11421,7 @@ "kernelrelease": "4.19.132-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-4.ph3.x86_64.rpm" ] }, { @@ -11413,7 +11461,7 @@ "kernelrelease": "4.19.191-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" ] }, { @@ -11485,7 +11533,7 @@ "kernelrelease": "5.10.103-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-1.ph4.x86_64.rpm" ] }, { @@ -11501,7 +11549,7 @@ "kernelrelease": "5.10.103-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-3.ph4.x86_64.rpm" ] }, { @@ -11517,7 +11565,7 @@ "kernelrelease": "5.10.109-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-2.ph4.x86_64.rpm" ] }, { @@ -11525,7 +11573,7 @@ "kernelrelease": "5.10.109-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-3.ph4.x86_64.rpm" ] }, { @@ -11533,7 +11581,7 @@ "kernelrelease": "5.10.109-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-4.ph4.x86_64.rpm" ] }, { @@ -11541,7 +11589,7 @@ "kernelrelease": "5.10.25-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-1.ph4.x86_64.rpm" ] }, { @@ -11549,7 +11597,7 @@ "kernelrelease": "5.10.25-10.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-10.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-10.ph4.x86_64.rpm" ] }, { @@ -11581,7 +11629,7 @@ "kernelrelease": "5.10.25-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm" ] }, { @@ -11589,7 +11637,7 @@ "kernelrelease": "5.10.25-7.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-7.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-7.ph4.x86_64.rpm" ] }, { @@ -11605,7 +11653,7 @@ "kernelrelease": "5.10.35-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" ] }, { @@ -11613,7 +11661,7 @@ "kernelrelease": "5.10.35-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm" ] }, { @@ -11645,7 +11693,7 @@ "kernelrelease": "5.10.42-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-1.ph4.x86_64.rpm" ] }, { @@ -11653,7 +11701,7 @@ "kernelrelease": "5.10.42-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-2.ph4.x86_64.rpm" ] }, { @@ -11661,7 +11709,7 @@ "kernelrelease": "5.10.42-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-3.ph4.x86_64.rpm" ] }, { @@ -11669,7 +11717,7 @@ "kernelrelease": "5.10.46-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-1.ph4.x86_64.rpm" ] }, { @@ -11677,7 +11725,7 @@ "kernelrelease": "5.10.46-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-2.ph4.x86_64.rpm" ] }, { @@ -11685,7 +11733,7 @@ "kernelrelease": "5.10.52-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.52-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-1.ph4.x86_64.rpm" ] }, { @@ -11693,7 +11741,7 @@ "kernelrelease": "5.10.52-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.52-2.ph4.x86_64.rpm" ] }, { @@ -11701,7 +11749,7 @@ "kernelrelease": "5.10.61-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-1.ph4.x86_64.rpm" ] }, { @@ -11709,7 +11757,7 @@ "kernelrelease": "5.10.61-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-2.ph4.x86_64.rpm" ] }, { @@ -11717,7 +11765,7 @@ "kernelrelease": "5.10.75-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.75-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.75-1.ph4.x86_64.rpm" ] }, { @@ -11749,7 +11797,7 @@ "kernelrelease": "5.10.83-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-2.ph4.x86_64.rpm" ] }, { @@ -11765,7 +11813,7 @@ "kernelrelease": "5.10.83-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-4.ph4.x86_64.rpm" ] }, { @@ -11781,7 +11829,7 @@ "kernelrelease": "5.10.83-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-6.ph4.x86_64.rpm" ] }, { @@ -11789,7 +11837,7 @@ "kernelrelease": "5.10.83-7.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-7.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm" ] }, { @@ -11797,7 +11845,7 @@ "kernelrelease": "5.10.93-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-1.ph4.x86_64.rpm" ] }, { @@ -11853,7 +11901,7 @@ "kernelrelease": "5.10.42-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-4.ph4.x86_64.rpm" ] }, { @@ -11948,14 +11996,14 @@ "Debian": [ { "kernelversion": 1, - "kernelrelease": "5.17.3-1-amd64", + "kernelrelease": "5.18.2-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-cloud-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-rt-amd64_5.17.3-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common-rt_5.17.3-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-common_5.17.3-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.17.0-1-amd64_5.17.3-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-amd64_5.18.2-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-amd64_5.18.2-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-amd64_5.18.2-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb" ] }, { @@ -11963,11 +12011,11 @@ "kernelrelease": "5.16.12-1~bpo11+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb" ] }, { @@ -11975,11 +12023,11 @@ "kernelrelease": "5.10.113-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb" ] }, { @@ -11987,11 +12035,11 @@ "kernelrelease": "5.10.84-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb" ] }, { @@ -12001,9 +12049,9 @@ "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb" ] }, { @@ -12011,11 +12059,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb" ] }, { @@ -12023,11 +12071,11 @@ "kernelrelease": "4.19.208-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb" ] }, { @@ -12036,10 +12084,10 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb" ] }, { @@ -12047,20 +12095,8 @@ "kernelrelease": "3.16.56-1+deb8u1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18.2-1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-amd64_5.18.2-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-amd64_5.18.2-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-amd64_5.18.2-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb" ] }, { @@ -12069,10 +12105,10 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" ] }, { @@ -12089,9 +12125,9 @@ "kernelrelease": "4.9.228-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb" ] }, @@ -12100,11 +12136,11 @@ "kernelrelease": "5.10.103-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb" ] }, { @@ -12113,10 +12149,10 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb" ] }, { @@ -12124,11 +12160,11 @@ "kernelrelease": "4.19.232-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb" ] }, { @@ -12154,9 +12190,9 @@ "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb" ] }, @@ -12167,8 +12203,8 @@ "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb" ] }, { @@ -12176,10 +12212,10 @@ "kernelrelease": "4.9.303-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb" ] }, { @@ -12188,10 +12224,10 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb" ] } ], @@ -12201,9 +12237,9 @@ "kernelrelease": "4.15.0-1087-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb" ] }, @@ -12212,10 +12248,10 @@ "kernelrelease": "4.15.0-1088-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb" ] }, { @@ -12223,10 +12259,10 @@ "kernelrelease": "4.15.0-1093-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb" ] }, { @@ -12235,9 +12271,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb" ] }, { @@ -12245,10 +12281,10 @@ "kernelrelease": "4.15.0-1103-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" ] }, { @@ -12256,10 +12292,10 @@ "kernelrelease": "4.15.0-1104-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb" ] }, { @@ -12267,10 +12303,10 @@ "kernelrelease": "4.15.0-1104-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" ] }, { @@ -12278,9 +12314,9 @@ "kernelrelease": "4.15.0-1107-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" ] }, @@ -12289,10 +12325,10 @@ "kernelrelease": "4.15.0-1110-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" ] }, { @@ -12300,10 +12336,10 @@ "kernelrelease": "4.15.0-1111-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" ] }, { @@ -12311,10 +12347,10 @@ "kernelrelease": "4.15.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" ] }, { @@ -12322,8 +12358,8 @@ "kernelrelease": "4.15.0-1113-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" ] @@ -12333,10 +12369,10 @@ "kernelrelease": "4.15.0-1113-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb" ] }, { @@ -12344,10 +12380,10 @@ "kernelrelease": "4.15.0-1114-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" ] }, { @@ -12355,10 +12391,10 @@ "kernelrelease": "4.15.0-1115-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" ] }, { @@ -12368,8 +12404,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" ] }, { @@ -12377,10 +12413,10 @@ "kernelrelease": "4.15.0-1116-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" ] }, { @@ -12388,10 +12424,10 @@ "kernelrelease": "4.15.0-1116-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" ] }, { @@ -12399,10 +12435,10 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" ] }, { @@ -12410,10 +12446,10 @@ "kernelrelease": "4.15.0-1117-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb" ] }, { @@ -12421,10 +12457,10 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb" ] }, { @@ -12433,9 +12469,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" ] }, { @@ -12443,9 +12479,9 @@ "kernelrelease": "4.15.0-1121-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" ] }, @@ -12454,10 +12490,10 @@ "kernelrelease": "4.15.0-1122-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" ] }, { @@ -12465,10 +12501,10 @@ "kernelrelease": "4.15.0-1123-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb" ] }, { @@ -12476,8 +12512,8 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" ] @@ -12487,10 +12523,10 @@ "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" ] }, { @@ -12498,10 +12534,10 @@ "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" ] }, { @@ -12509,9 +12545,9 @@ "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" ] }, @@ -12520,9 +12556,9 @@ "kernelrelease": "4.15.0-1129-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" ] }, @@ -12531,10 +12567,10 @@ "kernelrelease": "4.15.0-1130-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" ] }, { @@ -12543,8 +12579,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb" ] }, @@ -12553,10 +12589,10 @@ "kernelrelease": "4.15.0-1134-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb" ] }, { @@ -12564,10 +12600,10 @@ "kernelrelease": "4.15.0-1135-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb" ] }, { @@ -12575,10 +12611,10 @@ "kernelrelease": "4.15.0-1138-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb" ] }, { @@ -12586,8 +12622,8 @@ "kernelrelease": "4.15.0-1139-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb" ] @@ -12597,12 +12633,12 @@ "kernelrelease": "4.15.0-167", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb" ] }, { @@ -12610,12 +12646,12 @@ "kernelrelease": "4.15.0-168", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb" ] }, { @@ -12623,12 +12659,12 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" ] }, { @@ -12637,10 +12673,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb" ] }, @@ -12649,12 +12685,12 @@ "kernelrelease": "4.15.0-172", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb" ] }, { @@ -12662,12 +12698,12 @@ "kernelrelease": "4.15.0-173", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" ] }, { @@ -12675,12 +12711,12 @@ "kernelrelease": "4.15.0-174", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" ] }, { @@ -12688,11 +12724,11 @@ "kernelrelease": "4.15.0-176", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb" ] }, @@ -12701,10 +12737,10 @@ "kernelrelease": "4.15.0-177", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb" ] @@ -12714,12 +12750,12 @@ "kernelrelease": "4.15.0-179", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb" ] }, { @@ -12727,12 +12763,12 @@ "kernelrelease": "4.15.0-180", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb" ] }, { @@ -12740,12 +12776,12 @@ "kernelrelease": "4.15.0-181", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb" ] }, { @@ -12754,9 +12790,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" ] }, { @@ -12765,44 +12801,33 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb" ] }, - { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" - ] - }, { "kernelversion": "33~18.04.1", "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb" ] }, { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "33~18.04.1", + "kernelrelease": "5.4.0-1032-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { @@ -12810,21 +12835,32 @@ "kernelrelease": "5.4.0-1034-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb" ] }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" + ] + }, { "kernelversion": "35~18.04.1", "kernelrelease": "5.4.0-1034-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -12833,9 +12869,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" ] }, { @@ -12843,9 +12879,9 @@ "kernelrelease": "5.4.0-1043-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb" ] }, @@ -12854,12 +12890,12 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" ] }, { @@ -12867,10 +12903,10 @@ "kernelrelease": "5.4.0-1056-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { @@ -12878,21 +12914,10 @@ "kernelrelease": "5.4.0-1056-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { @@ -12900,22 +12925,33 @@ "kernelrelease": "5.4.0-1058-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb" ] }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1058-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" + ] + }, { "kernelversion": "120~18.04.1", "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" ] }, @@ -12924,10 +12960,10 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { @@ -12935,10 +12971,10 @@ "kernelrelease": "5.4.0-1060-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { @@ -12948,19 +12984,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { @@ -12968,21 +12993,21 @@ "kernelrelease": "5.4.0-1061-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { @@ -12990,21 +13015,32 @@ "kernelrelease": "5.4.0-1062-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" ] }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + ] + }, { "kernelversion": "67~18.04.1", "kernelrelease": "5.4.0-1063-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" ] }, { @@ -13013,9 +13049,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" ] }, { @@ -13024,9 +13060,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { @@ -13034,9 +13070,9 @@ "kernelrelease": "5.4.0-1063-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" ] }, @@ -13045,10 +13081,21 @@ "kernelrelease": "5.4.0-1063-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb" ] }, { @@ -13056,21 +13103,21 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" ] }, { @@ -13079,20 +13126,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { @@ -13100,32 +13136,32 @@ "kernelrelease": "5.4.0-1065-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1066-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { @@ -13134,31 +13170,31 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1068-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1068-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { @@ -13166,21 +13202,10 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" - ] - }, - { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1069-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" ] }, { @@ -13188,21 +13213,32 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" ] }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1069-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" + ] + }, { "kernelversion": "72~18.04.1", "kernelrelease": "5.4.0-1069-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { @@ -13210,8 +13246,8 @@ "kernelrelease": "5.4.0-1069-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" ] @@ -13221,10 +13257,10 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" ] }, { @@ -13232,10 +13268,10 @@ "kernelrelease": "5.4.0-1070-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" ] }, { @@ -13243,10 +13279,10 @@ "kernelrelease": "5.4.0-1071-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb" ] }, { @@ -13255,9 +13291,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb" ] }, { @@ -13265,9 +13301,9 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb" ] }, @@ -13276,10 +13312,10 @@ "kernelrelease": "5.4.0-1071-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb" ] }, { @@ -13287,10 +13323,10 @@ "kernelrelease": "5.4.0-1072-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" ] }, { @@ -13298,10 +13334,10 @@ "kernelrelease": "5.4.0-1073-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" ] }, { @@ -13309,8 +13345,8 @@ "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" ] @@ -13320,10 +13356,10 @@ "kernelrelease": "5.4.0-1075-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb" ] }, { @@ -13332,9 +13368,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" ] }, { @@ -13342,10 +13378,10 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" ] }, { @@ -13353,10 +13389,10 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb" ] }, { @@ -13364,10 +13400,10 @@ "kernelrelease": "5.4.0-1079-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb" ] }, { @@ -13375,12 +13411,12 @@ "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb" ] }, { @@ -13388,11 +13424,11 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" ] }, @@ -13401,12 +13437,12 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb" ] }, { @@ -13414,12 +13450,12 @@ "kernelrelease": "5.4.0-91-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb" ] }, { @@ -13427,12 +13463,12 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" ] }, { @@ -13440,12 +13476,12 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb" ] }, { @@ -13454,8 +13490,8 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" ] }, @@ -13464,10 +13500,10 @@ "kernelrelease": "4.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" ] }, { @@ -13475,10 +13511,10 @@ "kernelrelease": "4.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb" ] }, { @@ -13486,10 +13522,10 @@ "kernelrelease": "4.15.0-1008-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" ] }, { @@ -13497,10 +13533,10 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" ] }, { @@ -13508,10 +13544,10 @@ "kernelrelease": "4.15.0-1009-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb" ] }, { @@ -13520,9 +13556,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb" ] }, { @@ -13530,10 +13566,10 @@ "kernelrelease": "4.15.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" ] }, { @@ -13541,10 +13577,10 @@ "kernelrelease": "4.15.0-1009-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb" ] }, { @@ -13553,8 +13589,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" ] }, @@ -13563,23 +13599,12 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "4.15.0-1010-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb" ] }, { @@ -13587,10 +13612,10 @@ "kernelrelease": "4.15.0-1010-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" ] }, { @@ -13598,10 +13623,21 @@ "kernelrelease": "4.15.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "4.15.0-1010-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" ] }, { @@ -13617,24 +13653,24 @@ }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb" ] }, { @@ -13642,10 +13678,10 @@ "kernelrelease": "4.15.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb" ] }, { @@ -13653,10 +13689,10 @@ "kernelrelease": "4.15.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" ] }, { @@ -13664,10 +13700,10 @@ "kernelrelease": "4.15.0-1012-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" ] }, { @@ -13675,10 +13711,10 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb" ] }, { @@ -13686,10 +13722,10 @@ "kernelrelease": "4.15.0-1013-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" ] }, { @@ -13697,21 +13733,10 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "4.15.0-1014-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" ] }, { @@ -13719,21 +13744,32 @@ "kernelrelease": "4.15.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb" ] }, + { + "kernelversion": "14", + "kernelrelease": "4.15.0-1014-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb" + ] + }, { "kernelversion": "16", "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" ] }, { @@ -13742,8 +13778,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" ] }, @@ -13752,10 +13788,10 @@ "kernelrelease": "4.15.0-1015-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" ] }, { @@ -13764,9 +13800,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" ] }, { @@ -13774,9 +13810,9 @@ "kernelrelease": "4.15.0-1016-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" ] }, @@ -13785,32 +13821,32 @@ "kernelrelease": "4.15.0-1016-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" ] }, { "kernelversion": "17", - "kernelrelease": "4.15.0-1017-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1017-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" ] }, { "kernelversion": "17", - "kernelrelease": "4.15.0-1017-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb" ] }, { @@ -13818,10 +13854,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb" ] }, { @@ -13830,9 +13866,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" ] }, { @@ -13840,10 +13876,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" ] }, { @@ -13851,10 +13887,10 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb" ] }, { @@ -13863,8 +13899,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" ] }, @@ -13873,10 +13909,10 @@ "kernelrelease": "4.15.0-1018-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" ] }, { @@ -13885,20 +13921,20 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" ] }, { @@ -13906,21 +13942,21 @@ "kernelrelease": "4.15.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" ] }, { @@ -13928,43 +13964,32 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb" ] }, - { - "kernelversion": "20", - "kernelrelease": "4.15.0-1020-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb" - ] - }, { "kernelversion": "20", "kernelrelease": "4.15.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-azure", - "target": "ubuntu-azure", + "kernelversion": "20", + "kernelrelease": "4.15.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { @@ -13974,8 +13999,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" ] }, { @@ -13983,21 +14008,32 @@ "kernelrelease": "4.15.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, + { + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + ] + }, { "kernelversion": "22", "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" ] }, { @@ -14005,10 +14041,10 @@ "kernelrelease": "4.15.0-1021-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" ] }, { @@ -14017,9 +14053,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb" ] }, { @@ -14027,10 +14063,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" ] }, { @@ -14038,9 +14074,9 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" ] }, @@ -14049,10 +14085,10 @@ "kernelrelease": "4.15.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb" ] }, { @@ -14060,32 +14096,32 @@ "kernelrelease": "4.15.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-1023-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1023-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" ] }, { @@ -14093,10 +14129,10 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" ] }, { @@ -14104,32 +14140,32 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" ] }, { @@ -14137,10 +14173,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb" ] }, { @@ -14148,10 +14184,10 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb" ] }, { @@ -14160,9 +14196,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb" ] }, { @@ -14171,8 +14207,8 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" ] }, @@ -14181,10 +14217,10 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" ] }, { @@ -14192,10 +14228,10 @@ "kernelrelease": "4.15.0-1027-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, { @@ -14203,10 +14239,10 @@ "kernelrelease": "4.15.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" ] }, { @@ -14214,10 +14250,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" ] }, { @@ -14231,17 +14267,6 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb" ] }, - { - "kernelversion": "29", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb" - ] - }, { "kernelversion": "29", "kernelrelease": "4.15.0-1028-azure", @@ -14253,15 +14278,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" ] }, + { + "kernelversion": "29", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" + ] + }, { "kernelversion": "28", "kernelrelease": "4.15.0-1028-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb" ] }, { @@ -14271,8 +14307,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb" ] }, { @@ -14280,10 +14316,10 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb" ] }, { @@ -14292,9 +14328,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb" ] }, { @@ -14302,10 +14338,10 @@ "kernelrelease": "4.15.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb" ] }, { @@ -14313,10 +14349,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" ] }, { @@ -14324,10 +14360,10 @@ "kernelrelease": "4.15.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" ] }, { @@ -14336,8 +14372,8 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" ] }, @@ -14348,8 +14384,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb" ] }, { @@ -14357,10 +14393,10 @@ "kernelrelease": "4.15.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" ] }, { @@ -14369,8 +14405,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" ] }, @@ -14379,8 +14415,8 @@ "kernelrelease": "4.15.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" ] @@ -14390,10 +14426,10 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" ] }, { @@ -14401,10 +14437,10 @@ "kernelrelease": "4.15.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" ] }, { @@ -14412,10 +14448,10 @@ "kernelrelease": "4.15.0-1032-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb" ] }, { @@ -14423,9 +14459,9 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, @@ -14434,21 +14470,32 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" ] }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" + ] + }, { "kernelversion": "35", "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb" ] }, { @@ -14456,32 +14503,21 @@ "kernelrelease": "4.15.0-1033-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" ] }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" - ] - }, { "kernelversion": "38", "kernelrelease": "4.15.0-1033-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" ] }, { @@ -14490,20 +14526,31 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" ] }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + ] + }, { "kernelversion": "36", "kernelrelease": "4.15.0-1034-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" ] }, { @@ -14511,21 +14558,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" ] }, { @@ -14533,10 +14569,10 @@ "kernelrelease": "4.15.0-1034-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb" ] }, { @@ -14544,9 +14580,9 @@ "kernelrelease": "4.15.0-1034-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" ] }, @@ -14555,10 +14591,10 @@ "kernelrelease": "4.15.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb" ] }, { @@ -14577,10 +14613,10 @@ "kernelrelease": "4.15.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" ] }, { @@ -14588,10 +14624,10 @@ "kernelrelease": "4.15.0-1035-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" ] }, { @@ -14601,8 +14637,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" ] }, { @@ -14610,9 +14646,9 @@ "kernelrelease": "4.15.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" ] }, @@ -14622,9 +14658,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" ] }, { @@ -14632,10 +14668,10 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" ] }, { @@ -14643,32 +14679,21 @@ "kernelrelease": "4.15.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" ] }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb" - ] - }, { "kernelversion": "39", "kernelrelease": "4.15.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" ] }, { @@ -14682,15 +14707,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" ] }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + ] + }, { "kernelversion": "39", "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" ] }, { @@ -14698,8 +14734,8 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb" ] @@ -14720,10 +14756,10 @@ "kernelrelease": "4.15.0-1038-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" ] }, { @@ -14742,10 +14778,10 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" ] }, { @@ -14755,8 +14791,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" ] }, { @@ -14765,9 +14801,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" ] }, { @@ -14775,10 +14811,10 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb" ] }, { @@ -14786,10 +14822,10 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" ] }, { @@ -14797,10 +14833,10 @@ "kernelrelease": "4.15.0-1040-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" ] }, { @@ -14808,10 +14844,10 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb" ] }, { @@ -14819,21 +14855,21 @@ "kernelrelease": "4.15.0-1040-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1041-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, { @@ -14841,21 +14877,21 @@ "kernelrelease": "4.15.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1041-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, { @@ -14871,24 +14907,24 @@ }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1042-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" ] }, { "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1042-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" ] }, { @@ -14897,8 +14933,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb" ] }, @@ -14907,10 +14943,10 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" ] }, { @@ -14918,10 +14954,10 @@ "kernelrelease": "4.15.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" ] }, { @@ -14929,10 +14965,10 @@ "kernelrelease": "4.15.0-1043-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb" ] }, { @@ -14940,10 +14976,10 @@ "kernelrelease": "4.15.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" ] }, { @@ -14953,8 +14989,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { @@ -14962,9 +14998,9 @@ "kernelrelease": "4.15.0-1044-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" ] }, @@ -14974,9 +15010,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" ] }, { @@ -14984,10 +15020,10 @@ "kernelrelease": "4.15.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb" ] }, { @@ -14995,9 +15031,9 @@ "kernelrelease": "4.15.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" ] }, @@ -15006,10 +15042,10 @@ "kernelrelease": "4.15.0-1045-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" ] }, { @@ -15023,17 +15059,6 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" ] }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-1045-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" - ] - }, { "kernelversion": "49", "kernelrelease": "4.15.0-1045-azure", @@ -15045,15 +15070,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" ] }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1045-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" + ] + }, { "kernelversion": "49", "kernelrelease": "4.15.0-1046-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" ] }, { @@ -15063,8 +15099,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" ] }, { @@ -15073,8 +15109,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" ] }, @@ -15084,9 +15120,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" ] }, { @@ -15094,32 +15130,32 @@ "kernelrelease": "4.15.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-1047-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1047-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-1047-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1047-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" ] }, { @@ -15127,10 +15163,10 @@ "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" ] }, { @@ -15138,10 +15174,10 @@ "kernelrelease": "4.15.0-1048-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb" ] }, { @@ -15150,9 +15186,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" ] }, { @@ -15160,43 +15196,43 @@ "kernelrelease": "4.15.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb" ] }, - { - "kernelversion": "52", - "kernelrelease": "4.15.0-1049-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" - ] - }, { "kernelversion": "52", "kernelrelease": "4.15.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] }, + { + "kernelversion": "52", + "kernelrelease": "4.15.0-1049-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb" + ] + }, { "kernelversion": "52", "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" ] }, { @@ -15204,10 +15240,10 @@ "kernelrelease": "4.15.0-1050-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" ] }, { @@ -15215,10 +15251,10 @@ "kernelrelease": "4.15.0-1050-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" ] }, { @@ -15226,10 +15262,10 @@ "kernelrelease": "4.15.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb" ] }, { @@ -15237,10 +15273,10 @@ "kernelrelease": "4.15.0-1050-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" ] }, { @@ -15248,9 +15284,9 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" ] }, @@ -15259,9 +15295,9 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, @@ -15270,10 +15306,10 @@ "kernelrelease": "4.15.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" ] }, { @@ -15281,10 +15317,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" ] }, { @@ -15292,10 +15328,10 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" ] }, { @@ -15304,8 +15340,8 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb" ] }, @@ -15314,10 +15350,10 @@ "kernelrelease": "4.15.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" ] }, { @@ -15325,8 +15361,8 @@ "kernelrelease": "4.15.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" ] @@ -15336,8 +15372,8 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb" ] @@ -15347,8 +15383,8 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" ] @@ -15359,9 +15395,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" ] }, { @@ -15369,10 +15405,10 @@ "kernelrelease": "4.15.0-1055-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb" ] }, { @@ -15382,8 +15418,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb" ] }, { @@ -15392,9 +15428,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb" ] }, { @@ -15402,10 +15438,10 @@ "kernelrelease": "4.15.0-1056-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" ] }, { @@ -15413,10 +15449,10 @@ "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" ] }, { @@ -15424,8 +15460,8 @@ "kernelrelease": "4.15.0-1057-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb" ] @@ -15436,9 +15472,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb" ] }, { @@ -15446,10 +15482,10 @@ "kernelrelease": "4.15.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb" ] }, { @@ -15457,10 +15493,10 @@ "kernelrelease": "4.15.0-1057-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb" ] }, { @@ -15469,9 +15505,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" ] }, { @@ -15479,10 +15515,10 @@ "kernelrelease": "4.15.0-1058-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" ] }, { @@ -15491,9 +15527,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" ] }, { @@ -15501,10 +15537,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" ] }, { @@ -15512,10 +15548,10 @@ "kernelrelease": "4.15.0-1059-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" ] }, { @@ -15523,10 +15559,10 @@ "kernelrelease": "4.15.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb" ] }, { @@ -15535,9 +15571,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" ] }, { @@ -15545,12 +15581,12 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb" ] }, { @@ -15558,10 +15594,10 @@ "kernelrelease": "4.15.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" ] }, { @@ -15569,10 +15605,10 @@ "kernelrelease": "4.15.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" ] }, { @@ -15580,10 +15616,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" ] }, { @@ -15591,10 +15627,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" ] }, { @@ -15602,10 +15638,10 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb" ] }, { @@ -15614,9 +15650,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" ] }, { @@ -15625,9 +15661,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" ] }, { @@ -15636,9 +15672,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" ] }, { @@ -15647,9 +15683,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb" ] }, { @@ -15657,8 +15693,8 @@ "kernelrelease": "4.15.0-1064-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" ] @@ -15668,10 +15704,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" ] }, { @@ -15679,10 +15715,10 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb" ] }, { @@ -15691,8 +15727,8 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb" ] }, @@ -15702,9 +15738,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" ] }, { @@ -15713,9 +15749,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { @@ -15723,10 +15759,10 @@ "kernelrelease": "4.15.0-1066-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" ] }, { @@ -15734,9 +15770,9 @@ "kernelrelease": "4.15.0-1066-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" ] }, @@ -15745,10 +15781,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb" ] }, { @@ -15756,9 +15792,9 @@ "kernelrelease": "4.15.0-1067-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" ] }, @@ -15767,10 +15803,10 @@ "kernelrelease": "4.15.0-1067-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb" ] }, { @@ -15778,10 +15814,10 @@ "kernelrelease": "4.15.0-1067-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb" ] }, { @@ -15800,10 +15836,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" ] }, { @@ -15811,10 +15847,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb" ] }, { @@ -15822,10 +15858,10 @@ "kernelrelease": "4.15.0-1069-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" ] }, { @@ -15833,10 +15869,10 @@ "kernelrelease": "4.15.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" ] }, { @@ -15844,10 +15880,10 @@ "kernelrelease": "4.15.0-1069-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" ] }, { @@ -15856,8 +15892,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb" ] }, @@ -15867,9 +15903,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" ] }, { @@ -15877,10 +15913,10 @@ "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" ] }, { @@ -15888,10 +15924,10 @@ "kernelrelease": "4.15.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb" ] }, { @@ -15900,9 +15936,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" ] }, { @@ -15921,10 +15957,10 @@ "kernelrelease": "4.15.0-1072-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" ] }, { @@ -15932,9 +15968,9 @@ "kernelrelease": "4.15.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb" ] }, @@ -15944,9 +15980,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" ] }, { @@ -15954,10 +15990,10 @@ "kernelrelease": "4.15.0-1073-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb" ] }, { @@ -15965,9 +16001,9 @@ "kernelrelease": "4.15.0-1073-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" ] }, @@ -15976,9 +16012,9 @@ "kernelrelease": "4.15.0-1074-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" ] }, @@ -15987,10 +16023,10 @@ "kernelrelease": "4.15.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" ] }, { @@ -15998,10 +16034,10 @@ "kernelrelease": "4.15.0-1075-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" ] }, { @@ -16009,8 +16045,8 @@ "kernelrelease": "4.15.0-1076-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb" ] @@ -16020,10 +16056,10 @@ "kernelrelease": "4.15.0-1076-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" ] }, { @@ -16031,9 +16067,9 @@ "kernelrelease": "4.15.0-1076-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" ] }, @@ -16050,24 +16086,24 @@ }, { "kernelversion": "82", - "kernelrelease": "4.15.0-1077-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1077-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" ] }, { "kernelversion": "82", - "kernelrelease": "4.15.0-1077-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1077-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" ] }, { @@ -16075,10 +16111,10 @@ "kernelrelease": "4.15.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb" ] }, { @@ -16086,9 +16122,9 @@ "kernelrelease": "4.15.0-1078-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb" ] }, @@ -16097,10 +16133,10 @@ "kernelrelease": "4.15.0-1078-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" ] }, { @@ -16108,9 +16144,9 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" ] }, @@ -16119,10 +16155,10 @@ "kernelrelease": "4.15.0-1079-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb" ] }, { @@ -16131,9 +16167,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb" ] }, { @@ -16141,9 +16177,9 @@ "kernelrelease": "4.15.0-1079-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb" ] }, @@ -16152,12 +16188,12 @@ "kernelrelease": "4.15.0-108", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb" ] }, { @@ -16167,8 +16203,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" ] }, { @@ -16177,9 +16213,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" ] }, { @@ -16189,8 +16225,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" ] }, { @@ -16198,10 +16234,10 @@ "kernelrelease": "4.15.0-1081-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" ] }, { @@ -16220,10 +16256,10 @@ "kernelrelease": "4.15.0-1081-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb" ] }, { @@ -16231,10 +16267,10 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" ] }, { @@ -16242,10 +16278,10 @@ "kernelrelease": "4.15.0-1082-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" ] }, { @@ -16253,10 +16289,10 @@ "kernelrelease": "4.15.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb" ] }, { @@ -16264,10 +16300,10 @@ "kernelrelease": "4.15.0-1082-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" ] }, { @@ -16275,9 +16311,9 @@ "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" ] }, @@ -16286,10 +16322,10 @@ "kernelrelease": "4.15.0-1083-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" ] }, { @@ -16297,10 +16333,10 @@ "kernelrelease": "4.15.0-1083-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" ] }, { @@ -16308,10 +16344,10 @@ "kernelrelease": "4.15.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" ] }, { @@ -16321,8 +16357,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" ] }, { @@ -16330,9 +16366,9 @@ "kernelrelease": "4.15.0-1085-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb" ] }, @@ -16341,10 +16377,10 @@ "kernelrelease": "4.15.0-1085-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb" ] }, { @@ -16352,10 +16388,10 @@ "kernelrelease": "4.15.0-1086-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb" ] }, { @@ -16364,9 +16400,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb" ] }, { @@ -16375,9 +16411,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" ] }, { @@ -16386,9 +16422,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" ] }, { @@ -16397,9 +16433,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb" ] }, { @@ -16408,8 +16444,8 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb" ] }, @@ -16418,10 +16454,10 @@ "kernelrelease": "4.15.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" ] }, { @@ -16429,10 +16465,10 @@ "kernelrelease": "4.15.0-1089-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" ] }, { @@ -16441,8 +16477,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" ] }, @@ -16451,10 +16487,10 @@ "kernelrelease": "4.15.0-1089-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" ] }, { @@ -16462,12 +16498,12 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" ] }, { @@ -16475,10 +16511,10 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { @@ -16486,10 +16522,10 @@ "kernelrelease": "4.15.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" ] }, { @@ -16497,10 +16533,10 @@ "kernelrelease": "4.15.0-1090-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb" ] }, { @@ -16508,9 +16544,9 @@ "kernelrelease": "4.15.0-1090-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb" ] }, @@ -16519,10 +16555,10 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb" ] }, { @@ -16530,10 +16566,10 @@ "kernelrelease": "4.15.0-1091-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb" ] }, { @@ -16541,9 +16577,9 @@ "kernelrelease": "4.15.0-1091-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, @@ -16552,10 +16588,10 @@ "kernelrelease": "4.15.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb" ] }, { @@ -16563,10 +16599,10 @@ "kernelrelease": "4.15.0-1091-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" ] }, { @@ -16574,10 +16610,10 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb" ] }, { @@ -16585,10 +16621,10 @@ "kernelrelease": "4.15.0-1092-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" ] }, { @@ -16596,10 +16632,10 @@ "kernelrelease": "4.15.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb" ] }, { @@ -16608,9 +16644,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" ] }, { @@ -16618,10 +16654,10 @@ "kernelrelease": "4.15.0-1093-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" ] }, { @@ -16629,10 +16665,10 @@ "kernelrelease": "4.15.0-1093-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" ] }, { @@ -16640,10 +16676,10 @@ "kernelrelease": "4.15.0-1093-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" ] }, { @@ -16651,10 +16687,10 @@ "kernelrelease": "4.15.0-1093-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" ] }, { @@ -16664,8 +16700,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" ] }, { @@ -16675,8 +16711,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" ] }, { @@ -16684,10 +16720,10 @@ "kernelrelease": "4.15.0-1094-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb" ] }, { @@ -16695,9 +16731,9 @@ "kernelrelease": "4.15.0-1094-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" ] }, @@ -16706,10 +16742,10 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" ] }, { @@ -16717,10 +16753,10 @@ "kernelrelease": "4.15.0-1095-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" ] }, { @@ -16729,8 +16765,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb" ] }, @@ -16739,10 +16775,10 @@ "kernelrelease": "4.15.0-1095-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb" ] }, { @@ -16751,31 +16787,31 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" ] }, { "kernelversion": "106", - "kernelrelease": "4.15.0-1096-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1096-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" ] }, { "kernelversion": "106", - "kernelrelease": "4.15.0-1096-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1096-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb" ] }, { @@ -16784,9 +16820,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" ] }, { @@ -16795,9 +16831,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" ] }, { @@ -16805,10 +16841,10 @@ "kernelrelease": "4.15.0-1097-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" ] }, { @@ -16816,10 +16852,10 @@ "kernelrelease": "4.15.0-1097-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb" ] }, { @@ -16827,10 +16863,10 @@ "kernelrelease": "4.15.0-1097-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" ] }, { @@ -16838,9 +16874,9 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" ] }, @@ -16849,10 +16885,10 @@ "kernelrelease": "4.15.0-1098-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb" ] }, { @@ -16860,9 +16896,9 @@ "kernelrelease": "4.15.0-1098-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" ] }, @@ -16871,10 +16907,10 @@ "kernelrelease": "4.15.0-1098-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb" ] }, { @@ -16882,10 +16918,10 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { @@ -16893,10 +16929,10 @@ "kernelrelease": "4.15.0-1099-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" ] }, { @@ -16904,10 +16940,10 @@ "kernelrelease": "4.15.0-1099-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" ] }, { @@ -16916,9 +16952,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb" ] }, { @@ -16937,10 +16973,10 @@ "kernelrelease": "4.15.0-1100-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" ] }, { @@ -16948,10 +16984,10 @@ "kernelrelease": "4.15.0-1100-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb" ] }, { @@ -16959,10 +16995,10 @@ "kernelrelease": "4.15.0-1100-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" ] }, { @@ -16971,9 +17007,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" ] }, { @@ -16981,10 +17017,10 @@ "kernelrelease": "4.15.0-1101-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" ] }, { @@ -16992,10 +17028,10 @@ "kernelrelease": "4.15.0-1101-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb" ] }, { @@ -17004,31 +17040,31 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-1102-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1102-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" ] }, { "kernelversion": "113", - "kernelrelease": "4.15.0-1102-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1102-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" ] }, { @@ -17036,10 +17072,10 @@ "kernelrelease": "4.15.0-1102-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb" ] }, { @@ -17047,10 +17083,10 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb" ] }, { @@ -17058,10 +17094,10 @@ "kernelrelease": "4.15.0-1103-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { @@ -17069,10 +17105,10 @@ "kernelrelease": "4.15.0-1103-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { @@ -17080,8 +17116,8 @@ "kernelrelease": "4.15.0-1103-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb" ] @@ -17103,8 +17139,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" ] }, @@ -17113,9 +17149,9 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" ] }, @@ -17124,10 +17160,10 @@ "kernelrelease": "4.15.0-1106-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" ] }, { @@ -17135,10 +17171,10 @@ "kernelrelease": "4.15.0-1106-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" ] }, { @@ -17146,10 +17182,10 @@ "kernelrelease": "4.15.0-1106-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" ] }, { @@ -17157,8 +17193,8 @@ "kernelrelease": "4.15.0-1107-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" ] @@ -17169,9 +17205,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" ] }, { @@ -17180,9 +17216,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" ] }, { @@ -17190,10 +17226,10 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, { @@ -17202,9 +17238,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" ] }, { @@ -17213,9 +17249,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb" ] }, { @@ -17223,10 +17259,10 @@ "kernelrelease": "4.15.0-1109-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" ] }, { @@ -17235,11 +17271,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" ] }, { @@ -17247,10 +17283,10 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" ] }, { @@ -17258,10 +17294,10 @@ "kernelrelease": "4.15.0-1110-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" ] }, { @@ -17269,10 +17305,10 @@ "kernelrelease": "4.15.0-1110-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" ] }, { @@ -17281,9 +17317,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb" ] }, { @@ -17291,9 +17327,9 @@ "kernelrelease": "4.15.0-1111-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" ] }, @@ -17304,8 +17340,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb" ] }, { @@ -17313,9 +17349,9 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" ] }, @@ -17324,8 +17360,8 @@ "kernelrelease": "4.15.0-1112-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" ] @@ -17335,10 +17371,10 @@ "kernelrelease": "4.15.0-1112-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" ] }, { @@ -17346,10 +17382,10 @@ "kernelrelease": "4.15.0-1112-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" ] }, { @@ -17357,10 +17393,10 @@ "kernelrelease": "4.15.0-1113-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb" ] }, { @@ -17368,10 +17404,10 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" ] }, { @@ -17379,10 +17415,10 @@ "kernelrelease": "4.15.0-1114-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" ] }, { @@ -17390,9 +17426,9 @@ "kernelrelease": "4.15.0-1114-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" ] }, @@ -17401,10 +17437,10 @@ "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" ] }, { @@ -17412,10 +17448,10 @@ "kernelrelease": "4.15.0-1115-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" ] }, { @@ -17423,10 +17459,10 @@ "kernelrelease": "4.15.0-1115-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb" ] }, { @@ -17434,9 +17470,9 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" ] }, @@ -17445,10 +17481,10 @@ "kernelrelease": "4.15.0-1118-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" ] }, { @@ -17456,10 +17492,10 @@ "kernelrelease": "4.15.0-1118-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" ] }, { @@ -17468,9 +17504,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" ] }, { @@ -17478,10 +17514,10 @@ "kernelrelease": "4.15.0-1119-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" ] }, { @@ -17500,12 +17536,12 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb" ] }, { @@ -17513,10 +17549,10 @@ "kernelrelease": "4.15.0-1120-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" ] }, { @@ -17525,9 +17561,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" ] }, { @@ -17535,10 +17571,10 @@ "kernelrelease": "4.15.0-1122-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb" ] }, { @@ -17546,10 +17582,10 @@ "kernelrelease": "4.15.0-1123-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" ] }, { @@ -17557,10 +17593,10 @@ "kernelrelease": "4.15.0-1123-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" ] }, { @@ -17570,8 +17606,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" ] }, { @@ -17579,10 +17615,10 @@ "kernelrelease": "4.15.0-1124-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb" ] }, { @@ -17590,10 +17626,10 @@ "kernelrelease": "4.15.0-1125-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb" ] }, { @@ -17601,10 +17637,10 @@ "kernelrelease": "4.15.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb" ] }, { @@ -17612,10 +17648,10 @@ "kernelrelease": "4.15.0-1126-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb" ] }, { @@ -17624,9 +17660,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" ] }, { @@ -17634,10 +17670,10 @@ "kernelrelease": "4.15.0-1127-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb" ] }, { @@ -17645,8 +17681,8 @@ "kernelrelease": "4.15.0-1129-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" ] @@ -17656,9 +17692,9 @@ "kernelrelease": "4.15.0-1130-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb" ] }, @@ -17667,10 +17703,10 @@ "kernelrelease": "4.15.0-1133-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" ] }, { @@ -17678,10 +17714,10 @@ "kernelrelease": "4.15.0-1133-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" ] }, { @@ -17689,8 +17725,8 @@ "kernelrelease": "4.15.0-1136-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb" ] @@ -17711,10 +17747,10 @@ "kernelrelease": "4.15.0-1142-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb" ] }, { @@ -17722,12 +17758,12 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb" ] }, { @@ -17735,12 +17771,12 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb" ] }, { @@ -17749,11 +17785,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb" ] }, { @@ -17762,10 +17798,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" ] }, @@ -17774,12 +17810,12 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb" ] }, { @@ -17787,12 +17823,12 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" ] }, { @@ -17801,11 +17837,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb" ] }, { @@ -17813,12 +17849,12 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" ] }, { @@ -17826,10 +17862,10 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" ] @@ -17839,12 +17875,12 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb" ] }, { @@ -17852,11 +17888,11 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb" ] }, @@ -17865,12 +17901,12 @@ "kernelrelease": "4.15.0-136", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" ] }, { @@ -17879,10 +17915,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb" ] }, @@ -17891,12 +17927,12 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" ] }, { @@ -17905,11 +17941,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb" ] }, { @@ -17917,12 +17953,12 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb" ] }, { @@ -17930,12 +17966,12 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb" ] }, { @@ -17943,12 +17979,12 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" ] }, { @@ -17956,11 +17992,11 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" ] }, @@ -17969,12 +18005,12 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, { @@ -17982,12 +18018,12 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb" ] }, { @@ -17995,12 +18031,12 @@ "kernelrelease": "4.15.0-153", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb" ] }, { @@ -18008,12 +18044,12 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb" ] }, { @@ -18021,12 +18057,12 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" ] }, { @@ -18034,12 +18070,12 @@ "kernelrelease": "4.15.0-158", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb" ] }, { @@ -18047,12 +18083,12 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb" ] }, { @@ -18060,12 +18096,12 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" ] }, { @@ -18073,12 +18109,12 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb" ] }, { @@ -18086,12 +18122,12 @@ "kernelrelease": "4.15.0-163", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb" ] }, { @@ -18099,12 +18135,12 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb" ] }, { @@ -18112,12 +18148,12 @@ "kernelrelease": "4.15.0-171", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb" ] }, { @@ -18125,12 +18161,12 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" ] }, { @@ -18138,12 +18174,12 @@ "kernelrelease": "4.15.0-184", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" ] }, { @@ -18151,11 +18187,11 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb" ] }, @@ -18164,10 +18200,10 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb" ] @@ -18177,12 +18213,12 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb" ] }, { @@ -18190,12 +18226,12 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" ] }, { @@ -18203,12 +18239,12 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb" ] }, { @@ -18216,12 +18252,12 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" ] }, { @@ -18231,10 +18267,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb" ] }, { @@ -18243,11 +18279,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb" ] }, { @@ -18255,12 +18291,12 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb" ] }, { @@ -18268,11 +18304,11 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb" ] }, @@ -18281,12 +18317,12 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb" ] }, { @@ -18294,12 +18330,12 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" ] }, { @@ -18308,11 +18344,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" ] }, { @@ -18320,12 +18356,12 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb" ] }, { @@ -18333,12 +18369,12 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" ] }, { @@ -18347,11 +18383,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb" ] }, { @@ -18359,12 +18395,12 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb" ] }, { @@ -18372,12 +18408,12 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb" ] }, { @@ -18385,12 +18421,12 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" ] }, { @@ -18398,12 +18434,12 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" ] }, { @@ -18412,11 +18448,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb" ] }, { @@ -18426,10 +18462,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" ] }, { @@ -18437,12 +18473,12 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" ] }, { @@ -18450,12 +18486,12 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" ] }, { @@ -18463,12 +18499,12 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" ] }, { @@ -18477,11 +18513,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb" ] }, { @@ -18489,12 +18525,12 @@ "kernelrelease": "4.15.0-66", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb" ] }, { @@ -18502,11 +18538,11 @@ "kernelrelease": "4.15.0-69", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" ] }, @@ -18516,10 +18552,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb" ] }, @@ -18528,11 +18564,11 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" ] }, @@ -18541,12 +18577,12 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb" ] }, { @@ -18554,12 +18590,12 @@ "kernelrelease": "4.15.0-76", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" ] }, { @@ -18567,11 +18603,11 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb" ] }, @@ -18580,12 +18616,12 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" ] }, { @@ -18593,12 +18629,12 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" ] }, { @@ -18607,11 +18643,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb" ] }, { @@ -18619,9 +18655,9 @@ "kernelrelease": "4.18.0-1004-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb" ] }, @@ -18630,10 +18666,10 @@ "kernelrelease": "4.18.0-1005-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb" ] }, { @@ -18641,10 +18677,10 @@ "kernelrelease": "4.18.0-1006-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" ] }, { @@ -18652,10 +18688,10 @@ "kernelrelease": "4.18.0-1006-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb" ] }, { @@ -18664,9 +18700,9 @@ "target": "ubuntu-azure-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" ] }, { @@ -18674,9 +18710,9 @@ "kernelrelease": "4.18.0-1007-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb" ] }, @@ -18685,10 +18721,10 @@ "kernelrelease": "4.18.0-1008-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" ] }, { @@ -18696,10 +18732,10 @@ "kernelrelease": "4.18.0-1008-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -18709,8 +18745,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" ] }, { @@ -18718,10 +18754,10 @@ "kernelrelease": "4.18.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb" ] }, { @@ -18729,9 +18765,9 @@ "kernelrelease": "4.18.0-1012-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" ] }, @@ -18741,9 +18777,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" ] }, { @@ -18751,10 +18787,10 @@ "kernelrelease": "4.18.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -18762,10 +18798,10 @@ "kernelrelease": "4.18.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" ] }, { @@ -18775,8 +18811,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" ] }, { @@ -18784,10 +18820,10 @@ "kernelrelease": "4.18.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" ] }, { @@ -18795,10 +18831,10 @@ "kernelrelease": "4.18.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb" ] }, { @@ -18807,9 +18843,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" ] }, { @@ -18817,10 +18853,10 @@ "kernelrelease": "4.18.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb" ] }, { @@ -18828,10 +18864,10 @@ "kernelrelease": "4.18.0-1024-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" ] }, { @@ -18840,8 +18876,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb" ] }, @@ -18850,12 +18886,12 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" ] }, { @@ -18863,12 +18899,12 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" ] }, { @@ -18877,11 +18913,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb" ] }, { @@ -18889,12 +18925,12 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb" ] }, { @@ -18902,12 +18938,12 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb" ] }, { @@ -18916,10 +18952,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" ] }, @@ -18929,11 +18965,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, { @@ -18941,10 +18977,10 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb" ] @@ -18954,12 +18990,12 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb" ] }, { @@ -18967,11 +19003,11 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" ] }, @@ -18980,10 +19016,10 @@ "kernelrelease": "5.0.0-1007-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb" ] }, { @@ -19002,10 +19038,10 @@ "kernelrelease": "5.0.0-1009-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" ] }, { @@ -19013,10 +19049,10 @@ "kernelrelease": "5.0.0-1010-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" ] }, { @@ -19024,10 +19060,10 @@ "kernelrelease": "5.0.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -19046,10 +19082,10 @@ "kernelrelease": "5.0.0-1012-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb" ] }, { @@ -19057,10 +19093,10 @@ "kernelrelease": "5.0.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" ] }, { @@ -19079,8 +19115,8 @@ "kernelrelease": "5.0.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" ] @@ -19090,10 +19126,10 @@ "kernelrelease": "5.0.0-1014-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb" ] }, { @@ -19102,9 +19138,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb" ] }, { @@ -19112,10 +19148,10 @@ "kernelrelease": "5.0.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19123,10 +19159,10 @@ "kernelrelease": "5.0.0-1020-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb" ] }, { @@ -19134,10 +19170,10 @@ "kernelrelease": "5.0.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" ] }, { @@ -19146,9 +19182,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb" ] }, { @@ -19156,10 +19192,10 @@ "kernelrelease": "5.0.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -19167,9 +19203,9 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" ] }, @@ -19180,8 +19216,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb" ] }, { @@ -19190,8 +19226,8 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" ] }, @@ -19200,10 +19236,10 @@ "kernelrelease": "5.0.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" ] }, { @@ -19211,9 +19247,9 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" ] }, @@ -19222,10 +19258,10 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" ] }, { @@ -19234,9 +19270,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" ] }, { @@ -19244,10 +19280,10 @@ "kernelrelease": "5.0.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -19255,10 +19291,10 @@ "kernelrelease": "5.0.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -19277,10 +19313,10 @@ "kernelrelease": "5.0.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" ] }, { @@ -19288,10 +19324,10 @@ "kernelrelease": "5.0.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" ] }, { @@ -19299,10 +19335,10 @@ "kernelrelease": "5.0.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -19310,9 +19346,9 @@ "kernelrelease": "5.0.0-1029-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" ] }, @@ -19321,10 +19357,10 @@ "kernelrelease": "5.0.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" ] }, { @@ -19332,10 +19368,10 @@ "kernelrelease": "5.0.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" ] }, { @@ -19343,10 +19379,10 @@ "kernelrelease": "5.0.0-1031-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb" ] }, { @@ -19354,10 +19390,10 @@ "kernelrelease": "5.0.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" ] }, { @@ -19365,10 +19401,10 @@ "kernelrelease": "5.0.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" ] }, { @@ -19376,10 +19412,10 @@ "kernelrelease": "5.0.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb" ] }, { @@ -19387,10 +19423,10 @@ "kernelrelease": "5.0.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" ] }, { @@ -19398,10 +19434,10 @@ "kernelrelease": "5.0.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb" ] }, { @@ -19409,12 +19445,12 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" ] }, { @@ -19422,12 +19458,12 @@ "kernelrelease": "5.0.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" ] }, { @@ -19435,12 +19471,12 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" ] }, { @@ -19448,12 +19484,12 @@ "kernelrelease": "5.0.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" ] }, { @@ -19462,11 +19498,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" ] }, { @@ -19475,11 +19511,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" ] }, { @@ -19487,12 +19523,12 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb" ] }, { @@ -19500,8 +19536,8 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", @@ -19514,11 +19550,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb" ] }, { @@ -19526,12 +19562,12 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" ] }, { @@ -19539,12 +19575,12 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb" ] }, { @@ -19552,12 +19588,12 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" ] }, { @@ -19565,12 +19601,12 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" ] }, { @@ -19578,11 +19614,11 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" ] }, @@ -19591,10 +19627,10 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" ] }, { @@ -19604,8 +19640,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb" ] }, { @@ -19614,9 +19650,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" ] }, { @@ -19624,8 +19660,8 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" ] @@ -19635,10 +19671,10 @@ "kernelrelease": "5.0.0-65-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" ] }, { @@ -19646,32 +19682,32 @@ "kernelrelease": "5.3.0-1007-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1008-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1008-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -19679,9 +19715,9 @@ "kernelrelease": "5.3.0-1009-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" ] }, @@ -19690,10 +19726,10 @@ "kernelrelease": "5.3.0-1009-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -19701,10 +19737,10 @@ "kernelrelease": "5.3.0-1010-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb" ] }, { @@ -19712,10 +19748,10 @@ "kernelrelease": "5.3.0-1010-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -19724,9 +19760,9 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" ] }, { @@ -19734,10 +19770,10 @@ "kernelrelease": "5.3.0-1012-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -19756,9 +19792,9 @@ "kernelrelease": "5.3.0-1013-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb" ] }, @@ -19767,21 +19803,10 @@ "kernelrelease": "5.3.0-1013-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" - ] - }, - { - "kernelversion": "15~18.04.1", - "kernelrelease": "5.3.0-1014-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -19795,15 +19820,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb" ] }, + { + "kernelversion": "15~18.04.1", + "kernelrelease": "5.3.0-1014-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb" + ] + }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1016-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19811,21 +19847,21 @@ "kernelrelease": "5.3.0-1016-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1016-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19833,9 +19869,9 @@ "kernelrelease": "5.3.0-1016-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" ] }, @@ -19844,10 +19880,10 @@ "kernelrelease": "5.3.0-1017-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { @@ -19855,10 +19891,21 @@ "kernelrelease": "5.3.0-1017-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "19~18.04.1", + "kernelrelease": "5.3.0-1018-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19872,26 +19919,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb" ] }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" - ] - }, { "kernelversion": "20~18.04.1", "kernelrelease": "5.3.0-1018-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb" ] }, { @@ -19899,10 +19935,10 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb" ] }, { @@ -19911,9 +19947,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" ] }, { @@ -19922,9 +19958,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -19932,10 +19968,10 @@ "kernelrelease": "5.3.0-1020-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" ] }, { @@ -19944,9 +19980,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -19954,10 +19990,10 @@ "kernelrelease": "5.3.0-1023-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" ] }, { @@ -19966,9 +20002,9 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" ] }, { @@ -19977,9 +20013,9 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" ] }, { @@ -19987,32 +20023,32 @@ "kernelrelease": "5.3.0-1027-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1028-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1028-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" ] }, { @@ -20020,10 +20056,10 @@ "kernelrelease": "5.3.0-1028-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -20031,10 +20067,21 @@ "kernelrelease": "5.3.0-1029-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1030-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20042,10 +20089,10 @@ "kernelrelease": "5.3.0-1030-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -20053,21 +20100,10 @@ "kernelrelease": "5.3.0-1030-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -20075,10 +20111,10 @@ "kernelrelease": "5.3.0-1031-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb" ] }, { @@ -20086,10 +20122,10 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" ] }, { @@ -20097,10 +20133,10 @@ "kernelrelease": "5.3.0-1032-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" ] }, { @@ -20108,10 +20144,10 @@ "kernelrelease": "5.3.0-1032-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -20119,10 +20155,10 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" ] }, { @@ -20130,10 +20166,10 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" ] }, { @@ -20141,10 +20177,10 @@ "kernelrelease": "5.3.0-1034-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" ] }, { @@ -20152,9 +20188,9 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" ] }, @@ -20163,10 +20199,10 @@ "kernelrelease": "5.3.0-1035-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb" ] }, { @@ -20174,12 +20210,12 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb" ] }, { @@ -20187,12 +20223,12 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" ] }, { @@ -20200,12 +20236,12 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" ] }, { @@ -20213,11 +20249,11 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb" ] }, @@ -20227,11 +20263,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb" ] }, { @@ -20239,12 +20275,12 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb" ] }, { @@ -20253,11 +20289,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb" ] }, { @@ -20265,12 +20301,12 @@ "kernelrelease": "5.3.0-42-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" ] }, { @@ -20279,11 +20315,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb" ] }, { @@ -20291,12 +20327,12 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb" ] }, { @@ -20304,11 +20340,11 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" ] }, @@ -20317,12 +20353,12 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb" ] }, { @@ -20330,12 +20366,12 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" ] }, { @@ -20344,11 +20380,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb" ] }, { @@ -20356,12 +20392,12 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" ] }, { @@ -20369,12 +20405,12 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" ] }, { @@ -20383,11 +20419,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb" ] }, { @@ -20395,12 +20431,12 @@ "kernelrelease": "5.3.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" ] }, { @@ -20408,12 +20444,12 @@ "kernelrelease": "5.3.0-67-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb" ] }, { @@ -20421,12 +20457,12 @@ "kernelrelease": "5.3.0-68-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb" ] }, { @@ -20434,12 +20470,12 @@ "kernelrelease": "5.3.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb" ] }, { @@ -20448,11 +20484,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb" ] }, { @@ -20460,12 +20496,12 @@ "kernelrelease": "5.3.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb" ] }, { @@ -20474,11 +20510,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb" ] }, { @@ -20486,12 +20522,12 @@ "kernelrelease": "5.3.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb" ] }, { @@ -20500,10 +20536,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb" ] }, @@ -20512,11 +20548,11 @@ "kernelrelease": "5.3.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" ] }, @@ -20526,31 +20562,31 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" ] }, { "kernelversion": "5", - "kernelrelease": "5.4.0-1004-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1004-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" ] }, { "kernelversion": "5", - "kernelrelease": "5.4.0-1004-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1004-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" ] }, { @@ -20559,9 +20595,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" ] }, { @@ -20569,9 +20605,9 @@ "kernelrelease": "5.4.0-1008-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" ] }, @@ -20580,10 +20616,10 @@ "kernelrelease": "5.4.0-1009-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" ] }, { @@ -20591,10 +20627,10 @@ "kernelrelease": "5.4.0-1010-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" ] }, { @@ -20603,9 +20639,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb" ] }, { @@ -20613,10 +20649,10 @@ "kernelrelease": "5.4.0-1012-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -20626,8 +20662,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" ] }, { @@ -20635,10 +20671,10 @@ "kernelrelease": "5.4.0-1014-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb" ] }, { @@ -20646,10 +20682,10 @@ "kernelrelease": "5.4.0-1015-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" ] }, { @@ -20657,8 +20693,8 @@ "kernelrelease": "5.4.0-1016-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" ] @@ -20668,10 +20704,10 @@ "kernelrelease": "5.4.0-1018-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -20679,10 +20715,10 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" ] }, { @@ -20690,10 +20726,10 @@ "kernelrelease": "5.4.0-1021-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" ] }, { @@ -20701,10 +20737,10 @@ "kernelrelease": "5.4.0-1021-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -20714,8 +20750,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb" + ] + }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20723,10 +20770,10 @@ "kernelrelease": "5.4.0-1022-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20734,10 +20781,10 @@ "kernelrelease": "5.4.0-1022-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20745,21 +20792,10 @@ "kernelrelease": "5.4.0-1022-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20768,9 +20804,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" ] }, { @@ -20778,10 +20814,10 @@ "kernelrelease": "5.4.0-1023-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb" ] }, { @@ -20791,8 +20827,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -20800,10 +20836,21 @@ "kernelrelease": "5.4.0-1024-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.4.0-1024-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20817,25 +20864,14 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" ] }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" - ] - }, { "kernelversion": "25~18.04.1", "kernelrelease": "5.4.0-1024-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb" ] }, @@ -20844,32 +20880,32 @@ "kernelrelease": "5.4.0-1025-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1025-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1025-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -20877,21 +20913,21 @@ "kernelrelease": "5.4.0-1025-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1025-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -20899,10 +20935,10 @@ "kernelrelease": "5.4.0-1025-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" ] }, { @@ -20910,10 +20946,10 @@ "kernelrelease": "5.4.0-1026-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" ] }, { @@ -20923,30 +20959,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1027-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1027-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { @@ -20954,32 +20990,32 @@ "kernelrelease": "5.4.0-1028-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1028-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1028-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -20987,10 +21023,10 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" ] }, { @@ -20999,9 +21035,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21010,9 +21046,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21020,9 +21056,9 @@ "kernelrelease": "5.4.0-1029-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" ] }, @@ -21031,10 +21067,10 @@ "kernelrelease": "5.4.0-1029-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb" ] }, { @@ -21042,10 +21078,10 @@ "kernelrelease": "5.4.0-1031-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb" ] }, { @@ -21053,10 +21089,10 @@ "kernelrelease": "5.4.0-1031-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" ] }, { @@ -21064,10 +21100,10 @@ "kernelrelease": "5.4.0-1032-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21075,10 +21111,21 @@ "kernelrelease": "5.4.0-1032-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1033-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21092,37 +21139,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" ] }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" - ] - }, { "kernelversion": "34~18.04.1", "kernelrelease": "5.4.0-1033-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1033-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" ] }, { @@ -21131,9 +21156,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" ] }, { @@ -21141,10 +21166,21 @@ "kernelrelease": "5.4.0-1033-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1033-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" ] }, { @@ -21152,9 +21188,9 @@ "kernelrelease": "5.4.0-1034-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" ] }, @@ -21163,10 +21199,10 @@ "kernelrelease": "5.4.0-1034-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" ] }, { @@ -21174,10 +21210,10 @@ "kernelrelease": "5.4.0-1035-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -21198,8 +21234,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" ] }, { @@ -21207,10 +21243,10 @@ "kernelrelease": "5.4.0-1035-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb" ] }, { @@ -21219,8 +21255,8 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" ] }, @@ -21229,10 +21265,10 @@ "kernelrelease": "5.4.0-1036-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb" ] }, { @@ -21240,10 +21276,10 @@ "kernelrelease": "5.4.0-1036-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb" ] }, { @@ -21252,31 +21288,31 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1037-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1037-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { @@ -21284,10 +21320,10 @@ "kernelrelease": "5.4.0-1037-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21295,10 +21331,10 @@ "kernelrelease": "5.4.0-1037-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21307,8 +21343,8 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb" ] }, @@ -21317,10 +21353,10 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" ] }, { @@ -21328,10 +21364,10 @@ "kernelrelease": "5.4.0-1038-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { @@ -21339,10 +21375,10 @@ "kernelrelease": "5.4.0-1038-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { @@ -21351,31 +21387,31 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1039-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1039-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21384,9 +21420,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { @@ -21394,10 +21430,10 @@ "kernelrelease": "5.4.0-1039-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb" ] }, { @@ -21405,10 +21441,10 @@ "kernelrelease": "5.4.0-1039-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" ] }, { @@ -21416,12 +21452,12 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" ] }, { @@ -21429,10 +21465,10 @@ "kernelrelease": "5.4.0-1040-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { @@ -21440,10 +21476,10 @@ "kernelrelease": "5.4.0-1040-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { @@ -21451,21 +21487,10 @@ "kernelrelease": "5.4.0-1040-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1041-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" ] }, { @@ -21473,21 +21498,21 @@ "kernelrelease": "5.4.0-1041-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb" ] }, { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-1041-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, { @@ -21495,21 +21520,21 @@ "kernelrelease": "5.4.0-1041-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1042-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1041-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { @@ -21517,12 +21542,23 @@ "kernelrelease": "5.4.0-1042-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb" ] }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1042-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" + ] + }, { "kernelversion": "44~18.04.1", "kernelrelease": "5.4.0-1042-gke-5.4", @@ -21530,8 +21566,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb" ] }, { @@ -21541,8 +21577,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -21561,9 +21597,9 @@ "kernelrelease": "5.4.0-1043-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, @@ -21572,8 +21608,8 @@ "kernelrelease": "5.4.0-1043-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb" ] @@ -21583,10 +21619,10 @@ "kernelrelease": "5.4.0-1043-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb" ] }, { @@ -21594,10 +21630,10 @@ "kernelrelease": "5.4.0-1044-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -21605,9 +21641,9 @@ "kernelrelease": "5.4.0-1044-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb" ] }, @@ -21616,10 +21652,10 @@ "kernelrelease": "5.4.0-1044-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb" ] }, { @@ -21627,10 +21663,10 @@ "kernelrelease": "5.4.0-1044-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" ] }, { @@ -21639,9 +21675,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" ] }, { @@ -21649,34 +21685,34 @@ "kernelrelease": "5.4.0-1046-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" ] }, - { - "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" - ] - }, { "kernelversion": "48~18.04.1", "kernelrelease": "5.4.0-1046-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" ] }, + { + "kernelversion": "48~18.04.1", + "kernelrelease": "5.4.0-1046-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" + ] + }, { "kernelversion": "49~18.04.1", "kernelrelease": "5.4.0-1046-gcp-5.4", @@ -21693,10 +21729,21 @@ "kernelrelease": "5.4.0-1046-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" + ] + }, + { + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1047-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" ] }, { @@ -21704,21 +21751,21 @@ "kernelrelease": "5.4.0-1047-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" ] }, { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-azure-5.4", + "kernelversion": "50~18.04.1", + "kernelrelease": "5.4.0-1048-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" ] }, { @@ -21726,21 +21773,10 @@ "kernelrelease": "5.4.0-1048-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" ] }, { @@ -21748,9 +21784,9 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" ] }, @@ -21760,9 +21796,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { @@ -21770,32 +21806,32 @@ "kernelrelease": "5.4.0-1049-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1049-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1049-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -21803,32 +21839,32 @@ "kernelrelease": "5.4.0-1049-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1051-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1051-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" ] }, { @@ -21836,10 +21872,10 @@ "kernelrelease": "5.4.0-1051-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" ] }, { @@ -21847,21 +21883,10 @@ "kernelrelease": "5.4.0-1051-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb" ] }, { @@ -21870,42 +21895,53 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb" ] }, + { + "kernelversion": "56~18.04.1", + "kernelrelease": "5.4.0-1052-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb" + ] + }, { "kernelversion": "55~18.04.1", "kernelrelease": "5.4.0-1052-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1053-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1053-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -21913,32 +21949,32 @@ "kernelrelease": "5.4.0-1053-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1054-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1054-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { @@ -21946,32 +21982,32 @@ "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1055-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1055-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" ] }, { @@ -21980,9 +22016,20 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1055-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { @@ -21990,21 +22037,21 @@ "kernelrelease": "5.4.0-1055-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1056-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" ] }, { @@ -22012,32 +22059,21 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb" ] }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" - ] - }, { "kernelversion": "58~18.04.1", "kernelrelease": "5.4.0-1056-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" ] }, { @@ -22045,9 +22081,9 @@ "kernelrelease": "5.4.0-1057-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" ] }, @@ -22056,9 +22092,9 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" ] }, @@ -22067,10 +22103,10 @@ "kernelrelease": "5.4.0-1057-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -22078,10 +22114,10 @@ "kernelrelease": "5.4.0-1057-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" ] }, { @@ -22089,10 +22125,10 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" ] }, { @@ -22100,21 +22136,21 @@ "kernelrelease": "5.4.0-1058-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1059-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -22122,21 +22158,21 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1059-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -22144,10 +22180,10 @@ "kernelrelease": "5.4.0-1059-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" ] }, { @@ -22155,10 +22191,10 @@ "kernelrelease": "5.4.0-1059-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" ] }, { @@ -22166,9 +22202,9 @@ "kernelrelease": "5.4.0-1060-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" ] }, @@ -22177,10 +22213,10 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" ] }, { @@ -22189,9 +22225,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { @@ -22199,21 +22235,21 @@ "kernelrelease": "5.4.0-1062-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1065-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" ] }, { @@ -22221,21 +22257,21 @@ "kernelrelease": "5.4.0-1065-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1065-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" ] }, { @@ -22243,10 +22279,10 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" ] }, { @@ -22254,10 +22290,10 @@ "kernelrelease": "5.4.0-1067-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" ] }, { @@ -22266,9 +22302,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { @@ -22276,32 +22312,32 @@ "kernelrelease": "5.4.0-1067-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1068-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1068-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" ] }, { @@ -22309,10 +22345,10 @@ "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb" ] }, { @@ -22320,11 +22356,11 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" ] }, @@ -22333,10 +22369,10 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" ] }, { @@ -22344,32 +22380,32 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" ] }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1072-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22378,9 +22414,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22388,10 +22424,10 @@ "kernelrelease": "5.4.0-1072-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" ] }, { @@ -22399,10 +22435,10 @@ "kernelrelease": "5.4.0-1073-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" ] }, { @@ -22410,10 +22446,10 @@ "kernelrelease": "5.4.0-1073-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb" ] }, { @@ -22421,10 +22457,10 @@ "kernelrelease": "5.4.0-1074-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" ] }, { @@ -22443,10 +22479,10 @@ "kernelrelease": "5.4.0-1076-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb" ] }, { @@ -22454,10 +22490,10 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" ] }, { @@ -22465,8 +22501,8 @@ "kernelrelease": "5.4.0-1078-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb" ] @@ -22476,10 +22512,10 @@ "kernelrelease": "5.4.0-1078-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb" ] }, { @@ -22487,10 +22523,10 @@ "kernelrelease": "5.4.0-1080-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" ] }, { @@ -22498,10 +22534,10 @@ "kernelrelease": "5.4.0-1083-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb" ] }, { @@ -22510,11 +22546,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb" ] }, { @@ -22522,12 +22558,12 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" ] }, { @@ -22535,12 +22571,12 @@ "kernelrelease": "5.4.0-117-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb" ] }, { @@ -22548,12 +22584,12 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" ] }, { @@ -22561,12 +22597,12 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" ] }, { @@ -22574,12 +22610,12 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" ] }, { @@ -22587,12 +22623,12 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" ] }, { @@ -22600,11 +22636,11 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb" ] }, @@ -22613,11 +22649,11 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" ] }, @@ -22626,12 +22662,12 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb" ] }, { @@ -22640,11 +22676,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" ] }, { @@ -22653,11 +22689,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" ] }, { @@ -22665,12 +22701,12 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb" ] }, { @@ -22679,11 +22715,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb" ] }, { @@ -22691,12 +22727,12 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb" ] }, { @@ -22704,11 +22740,11 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" ] }, @@ -22718,10 +22754,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb" ] }, @@ -22731,11 +22767,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" ] }, { @@ -22743,11 +22779,11 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" ] }, @@ -22756,12 +22792,12 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb" ] }, { @@ -22769,12 +22805,12 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" ] }, { @@ -22782,12 +22818,12 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" ] }, { @@ -22795,12 +22831,12 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" ] }, { @@ -22809,11 +22845,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" ] }, { @@ -22821,11 +22857,11 @@ "kernelrelease": "5.4.0-74-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb" ] }, @@ -22834,12 +22870,12 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb" ] }, { @@ -22847,11 +22883,11 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb" ] }, @@ -22861,11 +22897,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" ] }, { @@ -22873,12 +22909,12 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" ] }, { @@ -22886,12 +22922,12 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" ] }, { @@ -22899,12 +22935,12 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb" ] }, { @@ -22912,12 +22948,12 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" ] }, { @@ -22925,12 +22961,12 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" ] }, { @@ -22938,12 +22974,12 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" ] }, { @@ -22953,10 +22989,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" ] }, { @@ -22964,12 +23000,12 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb" ] }, { @@ -22977,10 +23013,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" ] }, { @@ -22988,10 +23024,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" ] }, { @@ -23000,9 +23036,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" ] }, { @@ -23010,10 +23046,10 @@ "kernelrelease": "4.15.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb" ] }, { @@ -23021,10 +23057,10 @@ "kernelrelease": "4.15.0-1025-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb" ] }, { @@ -23033,9 +23069,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" ] }, { @@ -23043,10 +23079,10 @@ "kernelrelease": "4.15.0-1030-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" ] }, { @@ -23066,8 +23102,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" ] }, @@ -23076,9 +23112,9 @@ "kernelrelease": "4.15.0-1036-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb" ] }, @@ -23087,12 +23123,12 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb" ] }, { @@ -23100,12 +23136,12 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" ] }, { @@ -23114,11 +23150,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb" ] }, { @@ -23126,12 +23162,12 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb" ] }, { @@ -23141,8 +23177,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -23150,12 +23186,12 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" ] }, { @@ -23163,10 +23199,10 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" ] }, { @@ -23175,9 +23211,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" ] }, { @@ -23187,8 +23223,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" ] }, { @@ -23196,10 +23232,10 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" ] }, { @@ -23207,10 +23243,10 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" ] }, { @@ -23218,10 +23254,10 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" ] }, { @@ -23230,9 +23266,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" ] }, { @@ -23240,10 +23276,10 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" ] }, { @@ -23262,10 +23298,10 @@ "kernelrelease": "5.4.0-1018-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" ] }, { @@ -23273,10 +23309,10 @@ "kernelrelease": "5.4.0-1019-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb" ] }, { @@ -23284,10 +23320,10 @@ "kernelrelease": "5.4.0-1019-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb" ] }, { @@ -23295,10 +23331,10 @@ "kernelrelease": "5.4.0-1020-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" ] }, { @@ -23319,12 +23355,12 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" ] }, { @@ -23332,9 +23368,9 @@ "kernelrelease": "4.15.0-1004-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" ] }, @@ -23343,9 +23379,9 @@ "kernelrelease": "4.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb" ] }, @@ -23354,10 +23390,10 @@ "kernelrelease": "4.15.0-1007-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" ] }, { @@ -23365,12 +23401,12 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" ] }, { @@ -23379,9 +23415,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb" ] }, { @@ -23389,10 +23425,10 @@ "kernelrelease": "5.15.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb" ] }, { @@ -23401,9 +23437,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" ] }, { @@ -23411,21 +23447,10 @@ "kernelrelease": "5.15.0-1005-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" ] }, { @@ -23434,11 +23459,22 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" ] }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" + ] + }, { "kernelversion": "8+22.10.1", "kernelrelease": "5.15.0-1008-kvm", @@ -23455,8 +23491,8 @@ "kernelrelease": "5.15.0-27-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" ] @@ -23466,10 +23502,10 @@ "kernelrelease": "5.15.0-27", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb" ] }, { @@ -23477,32 +23513,32 @@ "kernelrelease": "5.15.0-28", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb" ] }, { "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" ] }, { "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb" ] }, { @@ -23510,32 +23546,32 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" ] }, { "kernelversion": "3", - "kernelrelease": "5.15.0-1003-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.15.0-1003-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb" ] }, { "kernelversion": "3", - "kernelrelease": "5.15.0-1003-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1003-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" ] }, { @@ -23544,9 +23580,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" ] }, { @@ -23555,9 +23591,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" ] }, { @@ -23565,10 +23601,10 @@ "kernelrelease": "5.15.0-1004-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" ] }, { @@ -23576,10 +23612,10 @@ "kernelrelease": "5.15.0-1004-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb" ] }, { @@ -23587,10 +23623,10 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" ] }, { @@ -23598,10 +23634,10 @@ "kernelrelease": "5.15.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, { @@ -23609,10 +23645,10 @@ "kernelrelease": "5.15.0-1004-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, { @@ -23620,10 +23656,10 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" ] }, { @@ -23631,10 +23667,10 @@ "kernelrelease": "5.17.0-1003-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" ] }, { @@ -23653,21 +23689,21 @@ "kernelrelease": "5.10.0-1058-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb" ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { @@ -23675,21 +23711,21 @@ "kernelrelease": "5.11.0-1022-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { @@ -23698,9 +23734,9 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -23709,8 +23745,8 @@ "target": "ubuntu-oracle-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, @@ -23721,8 +23757,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" ] }, { @@ -23731,9 +23767,9 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" ] }, { @@ -23741,10 +23777,10 @@ "kernelrelease": "5.11.0-1029-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" ] }, { @@ -23752,10 +23788,10 @@ "kernelrelease": "5.11.0-1029-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb" ] }, { @@ -23763,10 +23799,10 @@ "kernelrelease": "5.11.0-1030-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb" ] }, { @@ -23775,11 +23811,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb" ] }, { @@ -23787,12 +23823,12 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb" ] }, { @@ -23800,11 +23836,11 @@ "kernelrelease": "5.11.0-42-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb" ] }, @@ -23813,12 +23849,12 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" ] }, { @@ -23826,12 +23862,12 @@ "kernelrelease": "5.11.0-60-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb" ] }, { @@ -23839,12 +23875,12 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" ] }, { @@ -23853,9 +23889,9 @@ "target": "ubuntu-aws-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" ] }, { @@ -23863,10 +23899,10 @@ "kernelrelease": "5.13.0-1014-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" ] }, { @@ -23876,8 +23912,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" ] }, { @@ -23885,10 +23921,10 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" ] }, { @@ -23896,43 +23932,43 @@ "kernelrelease": "5.13.0-1016-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" ] }, - { - "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" - ] - }, { "kernelversion": "22", "kernelrelease": "5.13.0-1018-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1018-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + ] + }, { "kernelversion": "22~20.04.1", "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" ] }, { @@ -23940,10 +23976,10 @@ "kernelrelease": "5.13.0-1019-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -23951,10 +23987,10 @@ "kernelrelease": "5.13.0-1019-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" ] }, { @@ -23963,31 +23999,31 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1020-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1020-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1020-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1020-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb" ] }, { @@ -23996,9 +24032,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" ] }, { @@ -24006,10 +24042,10 @@ "kernelrelease": "5.13.0-1022-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" ] }, { @@ -24017,8 +24053,8 @@ "kernelrelease": "5.13.0-1022-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" ] @@ -24030,8 +24066,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -24039,23 +24075,12 @@ "kernelrelease": "5.13.0-1023-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" ] }, - { - "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb" - ] - }, { "kernelversion": "28~20.04.1", "kernelrelease": "5.13.0-1023-oracle-5.13", @@ -24067,14 +24092,25 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" ] }, + { + "kernelversion": "28~20.04.1", + "kernelrelease": "5.13.0-1023-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb" + ] + }, { "kernelversion": "26~20.04.1", "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb" ] }, @@ -24083,10 +24119,10 @@ "kernelrelease": "5.13.0-1025-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" ] }, { @@ -24094,10 +24130,10 @@ "kernelrelease": "5.13.0-1025-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb" ] }, { @@ -24106,8 +24142,8 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" ] }, @@ -24116,8 +24152,8 @@ "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] @@ -24127,10 +24163,10 @@ "kernelrelease": "5.13.0-1028-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb" ] }, { @@ -24138,12 +24174,12 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" ] }, { @@ -24151,12 +24187,12 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb" ] }, { @@ -24164,12 +24200,12 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" ] }, { @@ -24177,12 +24213,12 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb" ] }, { @@ -24190,12 +24226,12 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb" ] }, { @@ -24203,12 +24239,12 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" ] }, { @@ -24216,12 +24252,12 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb" ] }, { @@ -24229,12 +24265,12 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb" ] }, { @@ -24243,11 +24279,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb" ] }, { @@ -24256,10 +24292,10 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" ] }, @@ -24268,11 +24304,11 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb" ] }, @@ -24281,12 +24317,12 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb" ] }, { @@ -24294,12 +24330,12 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" ] }, { @@ -24307,10 +24343,10 @@ "kernelrelease": "5.14.0-1006-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" ] }, { @@ -24318,9 +24354,9 @@ "kernelrelease": "5.14.0-1007-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" ] }, @@ -24329,10 +24365,10 @@ "kernelrelease": "5.14.0-1008-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" ] }, { @@ -24340,9 +24376,9 @@ "kernelrelease": "5.14.0-1009-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" ] }, @@ -24351,10 +24387,10 @@ "kernelrelease": "5.14.0-1011-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" ] }, { @@ -24363,8 +24399,8 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" ] }, @@ -24373,10 +24409,10 @@ "kernelrelease": "5.14.0-1013-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" ] }, { @@ -24384,10 +24420,10 @@ "kernelrelease": "5.14.0-1021-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" ] }, { @@ -24395,10 +24431,10 @@ "kernelrelease": "5.14.0-1022-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb" ] }, { @@ -24406,10 +24442,10 @@ "kernelrelease": "5.14.0-1023-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" ] }, { @@ -24417,10 +24453,10 @@ "kernelrelease": "5.14.0-1024-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb" ] }, { @@ -24429,8 +24465,8 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb" ] }, @@ -24439,10 +24475,10 @@ "kernelrelease": "5.14.0-1029-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" ] }, { @@ -24450,9 +24486,9 @@ "kernelrelease": "5.14.0-1030-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb" ] }, @@ -24462,9 +24498,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" ] }, { @@ -24483,10 +24519,10 @@ "kernelrelease": "5.14.0-1035-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb" ] }, { @@ -24494,10 +24530,10 @@ "kernelrelease": "5.14.0-1036-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb" ] }, { @@ -24505,10 +24541,10 @@ "kernelrelease": "5.14.0-1037-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb" ] }, { @@ -24516,10 +24552,10 @@ "kernelrelease": "5.14.0-1038-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb" ] }, { @@ -24538,9 +24574,9 @@ "kernelrelease": "5.15.0-1007-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb" ] }, @@ -24549,8 +24585,8 @@ "kernelrelease": "5.15.0-1009-aws-5.15", "target": "ubuntu-aws-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb" ] @@ -24560,10 +24596,10 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" ] }, { @@ -24571,10 +24607,10 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" ] }, { @@ -24594,9 +24630,9 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" ] }, { @@ -24604,12 +24640,12 @@ "kernelrelease": "5.4.0-100", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" ] }, { @@ -24617,10 +24653,10 @@ "kernelrelease": "5.4.0-1013-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { @@ -24628,32 +24664,32 @@ "kernelrelease": "5.4.0-1013-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { "kernelversion": "16", - "kernelrelease": "5.4.0-1015-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1015-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" ] }, { "kernelversion": "16", - "kernelrelease": "5.4.0-1015-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1015-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb" ] }, { @@ -24661,12 +24697,12 @@ "kernelrelease": "5.4.0-102", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" ] }, { @@ -24674,10 +24710,10 @@ "kernelrelease": "5.4.0-1021-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" ] }, { @@ -24687,8 +24723,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" ] }, { @@ -24696,10 +24732,10 @@ "kernelrelease": "5.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb" ] }, { @@ -24707,21 +24743,21 @@ "kernelrelease": "5.4.0-1032-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1034-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" ] }, { @@ -24729,43 +24765,32 @@ "kernelrelease": "5.4.0-1034-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" - ] - }, { "kernelversion": "35", "kernelrelease": "5.4.0-1034-gkeop", "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.4.0-1035-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -24773,21 +24798,32 @@ "kernelrelease": "5.4.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" ] }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1035-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + ] + }, { "kernelversion": "40", "kernelrelease": "5.4.0-1039-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" ] }, { @@ -24795,32 +24831,43 @@ "kernelrelease": "5.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" ] }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1040-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" + ] + }, { "kernelversion": "41", "kernelrelease": "5.4.0-1040-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.4.0-1040-gkeop", + "kernelversion": "42", + "kernelrelease": "5.4.0-1041-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, { @@ -24828,21 +24875,10 @@ "kernelrelease": "5.4.0-1041-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.4.0-1041-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb" ] }, { @@ -24850,12 +24886,12 @@ "kernelrelease": "5.4.0-105", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb" ] }, { @@ -24863,9 +24899,9 @@ "kernelrelease": "5.4.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" ] }, @@ -24874,10 +24910,10 @@ "kernelrelease": "5.4.0-1054-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb" ] }, { @@ -24885,10 +24921,10 @@ "kernelrelease": "5.4.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" ] }, { @@ -24896,21 +24932,10 @@ "kernelrelease": "5.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1055-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" ] }, { @@ -24918,21 +24943,21 @@ "kernelrelease": "5.4.0-1055-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1056-azure", - "target": "ubuntu-azure", + "kernelversion": "59", + "kernelrelease": "5.4.0-1055-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" ] }, { @@ -24941,9 +24966,20 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1056-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" ] }, { @@ -24951,10 +24987,10 @@ "kernelrelease": "5.4.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" ] }, { @@ -24962,10 +24998,21 @@ "kernelrelease": "5.4.0-1057-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1058-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" ] }, { @@ -24973,21 +25020,21 @@ "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1058-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1059-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" ] }, { @@ -24995,10 +25042,10 @@ "kernelrelease": "5.4.0-1059-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" ] }, { @@ -25007,20 +25054,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb" ] }, { @@ -25028,10 +25064,10 @@ "kernelrelease": "5.4.0-1059-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" ] }, { @@ -25039,12 +25075,12 @@ "kernelrelease": "5.4.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb" ] }, { @@ -25052,43 +25088,43 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1060-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1060-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1061-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1061-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -25096,10 +25132,10 @@ "kernelrelease": "5.4.0-1061-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" ] }, { @@ -25107,43 +25143,43 @@ "kernelrelease": "5.4.0-1061-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1061-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb" ] }, { "kernelversion": "65", - "kernelrelease": "5.4.0-1062-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1062-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" ] }, { "kernelversion": "65", - "kernelrelease": "5.4.0-1062-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1062-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb" ] }, { @@ -25151,10 +25187,21 @@ "kernelrelease": "5.4.0-1062-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" + ] + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1062-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb" ] }, { @@ -25162,21 +25209,21 @@ "kernelrelease": "5.4.0-1062-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1062-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1063-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" ] }, { @@ -25184,21 +25231,21 @@ "kernelrelease": "5.4.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1063-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" ] }, { @@ -25206,21 +25253,10 @@ "kernelrelease": "5.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { @@ -25229,9 +25265,9 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb" ] }, { @@ -25239,8 +25275,8 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" ] @@ -25251,9 +25287,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb" ] }, { @@ -25261,10 +25297,10 @@ "kernelrelease": "5.4.0-1064-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -25272,10 +25308,10 @@ "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -25283,10 +25319,10 @@ "kernelrelease": "5.4.0-1064-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb" ] }, { @@ -25294,10 +25330,10 @@ "kernelrelease": "5.4.0-1064-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb" ] }, { @@ -25316,32 +25352,10 @@ "kernelrelease": "5.4.0-1065-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb" ] }, { @@ -25360,21 +25374,43 @@ "kernelrelease": "5.4.0-1065-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb" ] }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb" + ] + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + ] + }, { "kernelversion": "69", "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" ] }, { @@ -25382,10 +25418,10 @@ "kernelrelease": "5.4.0-1066-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" ] }, { @@ -25393,10 +25429,21 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + ] + }, + { + "kernelversion": "71", + "kernelrelease": "5.4.0-1068-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" ] }, { @@ -25410,25 +25457,14 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb" ] }, - { - "kernelversion": "71", - "kernelrelease": "5.4.0-1068-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb" - ] - }, { "kernelversion": "71+cvm1", "kernelrelease": "5.4.0-1068-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" ] }, @@ -25438,9 +25474,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" ] }, { @@ -25448,8 +25484,8 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb" ] @@ -25459,9 +25495,9 @@ "kernelrelease": "5.4.0-1069-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb" ] }, @@ -25470,10 +25506,10 @@ "kernelrelease": "5.4.0-1069-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb" ] }, { @@ -25481,10 +25517,10 @@ "kernelrelease": "5.4.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" ] }, { @@ -25493,11 +25529,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb" ] }, { @@ -25505,9 +25541,9 @@ "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" ] }, @@ -25517,8 +25553,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" ] }, @@ -25527,10 +25563,10 @@ "kernelrelease": "5.4.0-1070-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb" ] }, { @@ -25538,10 +25574,10 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" ] }, { @@ -25549,21 +25585,21 @@ "kernelrelease": "5.4.0-1071-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, { @@ -25571,21 +25607,21 @@ "kernelrelease": "5.4.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" ] }, { @@ -25593,9 +25629,9 @@ "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" ] }, @@ -25604,10 +25640,10 @@ "kernelrelease": "5.4.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" ] }, { @@ -25615,10 +25651,10 @@ "kernelrelease": "5.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" ] }, { @@ -25628,8 +25664,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" ] }, { @@ -25637,10 +25673,10 @@ "kernelrelease": "5.4.0-1073-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" ] }, { @@ -25648,21 +25684,10 @@ "kernelrelease": "5.4.0-1073-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" ] }, { @@ -25670,10 +25695,10 @@ "kernelrelease": "5.4.0-1074-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb" ] }, { @@ -25682,31 +25707,31 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1074-azure", - "target": "ubuntu-azure", + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb" ] }, { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-gcp", - "target": "ubuntu-gcp", + "kernelversion": "77", + "kernelrelease": "5.4.0-1074-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb" ] }, { @@ -25720,15 +25745,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" ] }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb" + ] + }, { "kernelversion": "78", "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb" ] }, { @@ -25737,9 +25773,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" ] }, { @@ -25759,8 +25795,8 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb" ] }, @@ -25771,9 +25807,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" ] }, @@ -25782,10 +25818,10 @@ "kernelrelease": "5.4.0-1080-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" ] }, { @@ -25793,11 +25829,11 @@ "kernelrelease": "5.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb" ] }, @@ -25806,12 +25842,12 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" ] }, { @@ -25819,8 +25855,8 @@ "kernelrelease": "5.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", @@ -25832,12 +25868,12 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" ] }, { @@ -25845,12 +25881,12 @@ "kernelrelease": "5.4.0-114", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb" ] }, { @@ -25859,11 +25895,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" ] }, { @@ -25871,12 +25907,12 @@ "kernelrelease": "5.4.0-98", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb" ] }, { @@ -25884,12 +25920,12 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb" ] }, { @@ -25897,10 +25933,10 @@ "kernelrelease": "5.8.0-1033-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { @@ -25908,32 +25944,32 @@ "kernelrelease": "5.8.0-1033-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelrelease": "5.8.0-1036-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb" ] }, { "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelrelease": "5.8.0-1036-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" ] }, { @@ -25941,12 +25977,12 @@ "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" ] }, { @@ -25954,10 +25990,10 @@ "kernelrelease": "5.10.0-1013-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" ] }, { @@ -25965,10 +26001,10 @@ "kernelrelease": "5.10.0-1014-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb" ] }, { @@ -25988,9 +26024,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb" ] }, { @@ -26009,10 +26045,10 @@ "kernelrelease": "5.10.0-1021-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" ] }, { @@ -26020,10 +26056,10 @@ "kernelrelease": "5.10.0-1022-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" ] }, { @@ -26042,9 +26078,9 @@ "kernelrelease": "5.10.0-1025-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" ] }, @@ -26055,8 +26091,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" ] }, { @@ -26064,10 +26100,10 @@ "kernelrelease": "5.10.0-1029-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb" ] }, { @@ -26075,9 +26111,9 @@ "kernelrelease": "5.10.0-1033-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" ] }, @@ -26086,10 +26122,10 @@ "kernelrelease": "5.10.0-1038-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" ] }, { @@ -26097,10 +26133,10 @@ "kernelrelease": "5.10.0-1044-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb" ] }, { @@ -26108,10 +26144,10 @@ "kernelrelease": "5.10.0-1045-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" ] }, { @@ -26121,8 +26157,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" ] }, { @@ -26130,10 +26166,10 @@ "kernelrelease": "5.10.0-1050-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" ] }, { @@ -26142,9 +26178,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" ] }, { @@ -26165,8 +26201,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb" ] }, { @@ -26174,10 +26210,10 @@ "kernelrelease": "5.10.0-1057-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb" ] }, { @@ -26185,10 +26221,10 @@ "kernelrelease": "5.11.0-1012-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" ] }, { @@ -26198,8 +26234,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, { @@ -26207,9 +26243,9 @@ "kernelrelease": "5.11.0-1013-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, @@ -26218,9 +26254,9 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb" ] }, @@ -26229,9 +26265,9 @@ "kernelrelease": "5.11.0-1014-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" ] }, @@ -26241,31 +26277,31 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" ] }, { "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1016-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb" ] }, { "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1016-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" ] }, { @@ -26273,10 +26309,10 @@ "kernelrelease": "5.11.0-1017-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -26285,9 +26321,9 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -26295,10 +26331,10 @@ "kernelrelease": "5.11.0-1017-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb" ] }, { @@ -26306,10 +26342,10 @@ "kernelrelease": "5.11.0-1017-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" ] }, { @@ -26317,10 +26353,10 @@ "kernelrelease": "5.11.0-1018-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" ] }, { @@ -26328,10 +26364,10 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { @@ -26339,10 +26375,10 @@ "kernelrelease": "5.11.0-1019-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { @@ -26350,10 +26386,10 @@ "kernelrelease": "5.11.0-1019-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -26361,43 +26397,43 @@ "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" ] }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb" - ] - }, { "kernelversion": "21~20.04.1", "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" ] }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.11.0-1020-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + ] + }, { "kernelversion": "22~20.04.1", "kernelrelease": "5.11.0-1020-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb" ] }, { @@ -26405,32 +26441,32 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1021-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1021-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" ] }, { @@ -26438,10 +26474,10 @@ "kernelrelease": "5.11.0-1021-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" ] }, { @@ -26449,10 +26485,21 @@ "kernelrelease": "5.11.0-1022-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { @@ -26460,10 +26507,10 @@ "kernelrelease": "5.11.0-1023-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { @@ -26471,21 +26518,10 @@ "kernelrelease": "5.11.0-1023-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -26493,10 +26529,10 @@ "kernelrelease": "5.11.0-1023-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -26505,20 +26541,20 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" ] }, { @@ -26527,20 +26563,20 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -26548,10 +26584,10 @@ "kernelrelease": "5.11.0-1026-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" ] }, { @@ -26559,32 +26595,32 @@ "kernelrelease": "5.11.0-1027-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1027-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { @@ -26592,10 +26628,10 @@ "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" ] }, { @@ -26603,10 +26639,10 @@ "kernelrelease": "5.11.0-1028-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb" ] }, { @@ -26614,12 +26650,12 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" ] }, { @@ -26627,12 +26663,12 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb" ] }, { @@ -26640,12 +26676,12 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" ] }, { @@ -26653,12 +26689,12 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" ] }, { @@ -26666,12 +26702,12 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" ] }, { @@ -26679,11 +26715,11 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" ] }, @@ -26692,12 +26728,12 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" ] }, { @@ -26705,10 +26741,10 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" ] @@ -26718,12 +26754,12 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" ] }, { @@ -26731,10 +26767,10 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" ] }, { @@ -26742,10 +26778,10 @@ "kernelrelease": "5.13.0-1008-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" ] }, { @@ -26753,10 +26789,10 @@ "kernelrelease": "5.13.0-1008-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" ] }, { @@ -26764,9 +26800,9 @@ "kernelrelease": "5.13.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" ] }, @@ -26775,10 +26811,10 @@ "kernelrelease": "5.13.0-1009-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb" ] }, { @@ -26786,32 +26822,21 @@ "kernelrelease": "5.13.0-1009-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" ] }, - { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb" - ] - }, { "kernelversion": "10", "kernelrelease": "5.13.0-1009-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { @@ -26819,42 +26844,42 @@ "kernelrelease": "5.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" ] }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb" + ] + }, { "kernelversion": "10", "kernelrelease": "5.13.0-1010-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" ] }, - { - "kernelversion": "11", - "kernelrelease": "5.13.0-1010-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" - ] - }, { "kernelversion": "11", "kernelrelease": "5.13.0-1010-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" ] }, @@ -26864,9 +26889,20 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1010-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" ] }, { @@ -26874,10 +26910,10 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb" ] }, { @@ -26885,10 +26921,10 @@ "kernelrelease": "5.13.0-1011-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" ] }, { @@ -26896,10 +26932,10 @@ "kernelrelease": "5.13.0-1011-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" ] }, { @@ -26907,10 +26943,10 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" ] }, { @@ -26918,10 +26954,10 @@ "kernelrelease": "5.13.0-1012-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" ] }, { @@ -26930,9 +26966,9 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" ] }, { @@ -26940,9 +26976,9 @@ "kernelrelease": "5.13.0-1012-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb" ] }, @@ -26952,31 +26988,31 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1014-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.13.0-1014-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelrelease": "5.13.0-1014-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" ] }, { @@ -26985,9 +27021,9 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb" ] }, { @@ -26995,10 +27031,10 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" ] }, { @@ -27007,9 +27043,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" ] }, { @@ -27017,10 +27053,10 @@ "kernelrelease": "5.13.0-1017-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { @@ -27028,32 +27064,32 @@ "kernelrelease": "5.13.0-1017-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1017-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1017-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1017-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1017-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb" ] }, { @@ -27061,32 +27097,32 @@ "kernelrelease": "5.13.0-1019-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.13.0-1019-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1019-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.13.0-1019-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1019-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb" ] }, { @@ -27094,10 +27130,10 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" ] }, { @@ -27105,10 +27141,10 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" ] }, { @@ -27116,10 +27152,10 @@ "kernelrelease": "5.13.0-1021-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb" ] }, { @@ -27127,10 +27163,10 @@ "kernelrelease": "5.13.0-1021-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" ] }, { @@ -27138,10 +27174,10 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" ] }, { @@ -27151,8 +27187,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" ] }, { @@ -27160,10 +27196,10 @@ "kernelrelease": "5.13.0-1024-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" ] }, { @@ -27171,9 +27207,9 @@ "kernelrelease": "5.13.0-1025-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" ] }, @@ -27182,10 +27218,10 @@ "kernelrelease": "5.13.0-1025-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" ] }, { @@ -27193,10 +27229,10 @@ "kernelrelease": "5.13.0-1026-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" ] }, { @@ -27216,9 +27252,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { @@ -27227,9 +27263,9 @@ "target": "ubuntu-aws-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -27237,10 +27273,10 @@ "kernelrelease": "5.13.0-1028-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" ] }, { @@ -27248,10 +27284,10 @@ "kernelrelease": "5.13.0-1029-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" ] }, { @@ -27259,8 +27295,8 @@ "kernelrelease": "5.13.0-1029-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb" ] @@ -27281,9 +27317,9 @@ "kernelrelease": "5.13.0-1030-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb" ] }, @@ -27292,10 +27328,10 @@ "kernelrelease": "5.13.0-1030-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb" ] }, { @@ -27303,10 +27339,10 @@ "kernelrelease": "5.13.0-1031-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb" ] }, { @@ -27314,10 +27350,10 @@ "kernelrelease": "5.13.0-1033-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" ] }, { @@ -27325,9 +27361,9 @@ "kernelrelease": "5.13.0-1034-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb" ] }, @@ -27336,12 +27372,12 @@ "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" ] }, { @@ -27349,12 +27385,12 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb" ] }, { @@ -27362,12 +27398,12 @@ "kernelrelease": "5.13.0-27-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb" ] }, { @@ -27375,12 +27411,12 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" ] }, { @@ -27388,12 +27424,12 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb" ] }, { @@ -27401,12 +27437,12 @@ "kernelrelease": "5.13.0-48-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" ] }, { @@ -27414,10 +27450,10 @@ "kernelrelease": "5.14.0-1004-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb" ] }, { @@ -27425,10 +27461,10 @@ "kernelrelease": "5.14.0-1005-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" ] }, { @@ -27436,9 +27472,9 @@ "kernelrelease": "5.14.0-1018-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" ] }, @@ -27447,8 +27483,8 @@ "kernelrelease": "5.14.0-1020-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb" ] @@ -27459,9 +27495,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" ] }, { @@ -27469,10 +27505,10 @@ "kernelrelease": "5.14.0-1031-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" ] }, { @@ -27480,10 +27516,10 @@ "kernelrelease": "5.14.0-1042-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb" ] }, { @@ -27491,10 +27527,10 @@ "kernelrelease": "5.15.0-1003-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb" ] }, { @@ -27502,10 +27538,10 @@ "kernelrelease": "5.15.0-1006-gcp-5.15", "target": "ubuntu-gcp-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb" ] }, { @@ -27513,10 +27549,10 @@ "kernelrelease": "5.15.0-1007-oracle-5.15", "target": "ubuntu-oracle-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb" ] }, { @@ -27524,10 +27560,10 @@ "kernelrelease": "5.15.0-1008-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" ] }, { @@ -27535,10 +27571,10 @@ "kernelrelease": "5.15.0-1008-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb" ] }, { @@ -27546,9 +27582,9 @@ "kernelrelease": "5.15.0-33-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb" ] }, @@ -27557,10 +27593,10 @@ "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb" ] }, { @@ -27569,9 +27605,9 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" ] }, { @@ -27579,10 +27615,10 @@ "kernelrelease": "5.4.0-1006-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" ] }, { @@ -27590,32 +27626,32 @@ "kernelrelease": "5.4.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1008-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1008-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1008-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1008-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb" ] }, { @@ -27623,9 +27659,9 @@ "kernelrelease": "5.4.0-1009-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" ] }, @@ -27635,9 +27671,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { @@ -27645,9 +27681,9 @@ "kernelrelease": "5.4.0-1010-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb" ] }, @@ -27656,12 +27692,23 @@ "kernelrelease": "5.4.0-1011-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + ] + }, { "kernelversion": "11", "kernelrelease": "5.4.0-1011-oracle", @@ -27669,8 +27716,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb" ] }, { @@ -27678,21 +27725,10 @@ "kernelrelease": "5.4.0-1011-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" ] }, { @@ -27700,10 +27736,10 @@ "kernelrelease": "5.4.0-1011-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" ] }, { @@ -27711,9 +27747,9 @@ "kernelrelease": "5.4.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" ] }, @@ -27722,10 +27758,10 @@ "kernelrelease": "5.4.0-1012-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb" ] }, { @@ -27733,10 +27769,21 @@ "kernelrelease": "5.4.0-1012-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1014-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb" ] }, { @@ -27744,21 +27791,32 @@ "kernelrelease": "5.4.0-1014-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1014-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" ] }, { @@ -27777,32 +27835,10 @@ "kernelrelease": "5.4.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" ] }, { @@ -27810,10 +27846,10 @@ "kernelrelease": "5.4.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb" ] }, { @@ -27822,9 +27858,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" ] }, { @@ -27833,9 +27869,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" ] }, { @@ -27843,54 +27879,54 @@ "kernelrelease": "5.4.0-1017-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1018-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1018-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1018-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { @@ -27898,10 +27934,10 @@ "kernelrelease": "5.4.0-1018-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb" ] }, { @@ -27909,32 +27945,32 @@ "kernelrelease": "5.4.0-1018-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1019-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb" ] }, { @@ -27943,9 +27979,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" ] }, { @@ -27953,21 +27989,10 @@ "kernelrelease": "5.4.0-1019-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" ] }, { @@ -27975,21 +28000,32 @@ "kernelrelease": "5.4.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + ] + }, { "kernelversion": "20", "kernelrelease": "5.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb" ] }, { @@ -27997,9 +28033,9 @@ "kernelrelease": "5.4.0-1020-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" ] }, @@ -28008,8 +28044,8 @@ "kernelrelease": "5.4.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" ] @@ -28019,32 +28055,32 @@ "kernelrelease": "5.4.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1021-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" ] }, { @@ -28052,10 +28088,21 @@ "kernelrelease": "5.4.0-1021-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { @@ -28063,10 +28110,10 @@ "kernelrelease": "5.4.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" ] }, { @@ -28074,21 +28121,10 @@ "kernelrelease": "5.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { @@ -28097,9 +28133,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" ] }, { @@ -28107,10 +28143,10 @@ "kernelrelease": "5.4.0-1022-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb" ] }, { @@ -28118,10 +28154,10 @@ "kernelrelease": "5.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" ] }, { @@ -28130,8 +28166,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb" ] }, @@ -28141,8 +28177,8 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" ] }, @@ -28151,20 +28187,31 @@ "kernelrelease": "5.4.0-1023-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb" ] }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" + ] + }, { "kernelversion": "24", "kernelrelease": "5.4.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb" ] }, @@ -28173,21 +28220,10 @@ "kernelrelease": "5.4.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb" ] }, { @@ -28195,10 +28231,10 @@ "kernelrelease": "5.4.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -28207,20 +28243,20 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb" ] }, { @@ -28228,21 +28264,10 @@ "kernelrelease": "5.4.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb" ] }, { @@ -28250,20 +28275,31 @@ "kernelrelease": "5.4.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" + ] + }, { "kernelversion": "26", "kernelrelease": "5.4.0-1025-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" ] }, @@ -28272,10 +28308,10 @@ "kernelrelease": "5.4.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" ] }, { @@ -28284,8 +28320,8 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" ] }, @@ -28294,10 +28330,10 @@ "kernelrelease": "5.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" ] }, { @@ -28305,10 +28341,10 @@ "kernelrelease": "5.4.0-1026-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb" ] }, { @@ -28316,10 +28352,10 @@ "kernelrelease": "5.4.0-1027-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" ] }, { @@ -28327,32 +28363,32 @@ "kernelrelease": "5.4.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1028-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" ] }, { @@ -28360,9 +28396,9 @@ "kernelrelease": "5.4.0-1029-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" ] }, @@ -28371,8 +28407,8 @@ "kernelrelease": "5.4.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" ] @@ -28382,10 +28418,10 @@ "kernelrelease": "5.4.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" ] }, { @@ -28394,9 +28430,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" ] }, { @@ -28404,21 +28440,10 @@ "kernelrelease": "5.4.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-1031-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" ] }, { @@ -28426,10 +28451,10 @@ "kernelrelease": "5.4.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { @@ -28438,9 +28463,20 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + ] + }, + { + "kernelversion": "32", + "kernelrelease": "5.4.0-1031-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb" ] }, { @@ -28448,9 +28484,9 @@ "kernelrelease": "5.4.0-1032-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" ] }, @@ -28459,10 +28495,10 @@ "kernelrelease": "5.4.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" ] }, { @@ -28471,8 +28507,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb" ] }, @@ -28481,10 +28517,10 @@ "kernelrelease": "5.4.0-1033-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb" ] }, { @@ -28492,10 +28528,10 @@ "kernelrelease": "5.4.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" ] }, { @@ -28503,10 +28539,10 @@ "kernelrelease": "5.4.0-1034-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" ] }, { @@ -28514,10 +28550,10 @@ "kernelrelease": "5.4.0-1035-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb" ] }, { @@ -28525,9 +28561,9 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" ] }, @@ -28538,19 +28574,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1036-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" ] }, { @@ -28558,23 +28583,45 @@ "kernelrelease": "5.4.0-1036-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb" ] }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1036-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" + ] + }, { "kernelversion": "39", "kernelrelease": "5.4.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb" ] }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1036-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb" + ] + }, { "kernelversion": "37", "kernelrelease": "5.4.0-1036-kvm", @@ -28587,14 +28634,14 @@ ] }, { - "kernelversion": "37", - "kernelrelease": "5.4.0-1036-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "39", + "kernelrelease": "5.4.0-1037-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb" ] }, { @@ -28602,21 +28649,21 @@ "kernelrelease": "5.4.0-1037-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.4.0-1037-aws", - "target": "ubuntu-aws", + "kernelversion": "40", + "kernelrelease": "5.4.0-1037-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" ] }, { @@ -28624,21 +28671,10 @@ "kernelrelease": "5.4.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.4.0-1037-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" ] }, { @@ -28646,10 +28682,10 @@ "kernelrelease": "5.4.0-1037-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, { @@ -28658,9 +28694,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, { @@ -28670,8 +28706,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" ] }, { @@ -28679,10 +28715,10 @@ "kernelrelease": "5.4.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" ] }, { @@ -28690,32 +28726,32 @@ "kernelrelease": "5.4.0-1038-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1038-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1038-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1038-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1038-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" ] }, { @@ -28724,9 +28760,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" ] }, { @@ -28734,10 +28770,10 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { @@ -28745,9 +28781,9 @@ "kernelrelease": "5.4.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb" ] }, @@ -28756,10 +28792,10 @@ "kernelrelease": "5.4.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" ] }, { @@ -28767,12 +28803,12 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb" ] }, { @@ -28780,10 +28816,10 @@ "kernelrelease": "5.4.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" ] }, { @@ -28793,8 +28829,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb" ] }, { @@ -28803,9 +28850,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { @@ -28813,21 +28860,10 @@ "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { @@ -28835,10 +28871,10 @@ "kernelrelease": "5.4.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" ] }, { @@ -28847,9 +28883,20 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" ] }, { @@ -28863,26 +28910,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" ] }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1042-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb" - ] - }, { "kernelversion": "44", "kernelrelease": "5.4.0-1042-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" ] }, { @@ -28892,8 +28928,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb" ] }, { @@ -28901,10 +28937,10 @@ "kernelrelease": "5.4.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb" ] }, { @@ -28913,31 +28949,31 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1043-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1043-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1043-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1043-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" ] }, { @@ -28945,32 +28981,32 @@ "kernelrelease": "5.4.0-1043-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1044-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1044-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "5.4.0-1044-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1044-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb" ] }, { @@ -28978,10 +29014,10 @@ "kernelrelease": "5.4.0-1044-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" ] }, { @@ -28989,32 +29025,32 @@ "kernelrelease": "5.4.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" ] }, { "kernelversion": "47", - "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1045-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" ] }, { "kernelversion": "47", - "kernelrelease": "5.4.0-1045-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1045-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, { @@ -29022,10 +29058,10 @@ "kernelrelease": "5.4.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" ] }, { @@ -29033,21 +29069,10 @@ "kernelrelease": "5.4.0-1046-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" ] }, { @@ -29055,10 +29080,10 @@ "kernelrelease": "5.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { @@ -29066,10 +29091,21 @@ "kernelrelease": "5.4.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb" + ] + }, + { + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb" ] }, { @@ -29077,10 +29113,10 @@ "kernelrelease": "5.4.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" ] }, { @@ -29088,21 +29124,32 @@ "kernelrelease": "5.4.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" ] }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + ] + }, { "kernelversion": "49", "kernelrelease": "5.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { @@ -29110,21 +29157,21 @@ "kernelrelease": "5.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-azure", - "target": "ubuntu-azure", + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" ] }, { @@ -29132,21 +29179,10 @@ "kernelrelease": "5.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" ] }, { @@ -29154,10 +29190,10 @@ "kernelrelease": "5.4.0-1048-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb" ] }, { @@ -29165,32 +29201,21 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb" ] }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" - ] - }, { "kernelversion": "51", "kernelrelease": "5.4.0-1049-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { @@ -29198,21 +29223,21 @@ "kernelrelease": "5.4.0-1049-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { - "kernelversion": "53", - "kernelrelease": "5.4.0-1049-oracle", - "target": "ubuntu-oracle", + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb" ] }, { @@ -29220,10 +29245,21 @@ "kernelrelease": "5.4.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" + ] + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1049-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, { @@ -29231,9 +29267,9 @@ "kernelrelease": "5.4.0-1049-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" ] }, @@ -29242,10 +29278,10 @@ "kernelrelease": "5.4.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { @@ -29253,10 +29289,10 @@ "kernelrelease": "5.4.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb" ] }, { @@ -29264,10 +29300,10 @@ "kernelrelease": "5.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" ] }, { @@ -29275,10 +29311,10 @@ "kernelrelease": "5.4.0-1051-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" ] }, { @@ -29286,32 +29322,32 @@ "kernelrelease": "5.4.0-1051-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1052-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1052-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" ] }, { @@ -29320,8 +29356,8 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb" ] }, @@ -29332,8 +29368,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" ] }, { @@ -29341,10 +29377,10 @@ "kernelrelease": "5.4.0-1053-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb" ] }, { @@ -29352,10 +29388,10 @@ "kernelrelease": "5.4.0-1053-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb" ] }, { @@ -29363,21 +29399,10 @@ "kernelrelease": "5.4.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" ] }, { @@ -29387,19 +29412,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-aws", - "target": "ubuntu-aws", + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" ] }, { @@ -29408,9 +29433,20 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" ] }, { @@ -29418,10 +29454,10 @@ "kernelrelease": "5.4.0-1055-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" ] }, { @@ -29430,9 +29466,20 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + ] + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-1056-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" ] }, { @@ -29440,21 +29487,21 @@ "kernelrelease": "5.4.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.4.0-1056-gke", - "target": "ubuntu-gke", + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb" ] }, { @@ -29470,13 +29517,13 @@ }, { "kernelversion": "60", - "kernelrelease": "5.4.0-1056-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1057-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb" ] }, { @@ -29484,21 +29531,10 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" ] }, { @@ -29506,9 +29542,9 @@ "kernelrelease": "5.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, @@ -29517,10 +29553,10 @@ "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb" ] }, { @@ -29529,31 +29565,31 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1059-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1059-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" ] }, { @@ -29561,9 +29597,9 @@ "kernelrelease": "5.4.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" ] }, @@ -29572,10 +29608,10 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" ] }, { @@ -29583,21 +29619,10 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.4.0-1067-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" ] }, { @@ -29611,6 +29636,17 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" ] }, + { + "kernelversion": "70", + "kernelrelease": "5.4.0-1067-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb" + ] + }, { "kernelversion": "70+cvm1", "kernelrelease": "5.4.0-1067-azure-cvm", @@ -29618,8 +29654,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" ] }, { @@ -29628,9 +29664,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" ] }, { @@ -29638,32 +29674,32 @@ "kernelrelease": "5.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1068-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1068-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1068-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1068-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb" ] }, { @@ -29671,21 +29707,10 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" ] }, { @@ -29694,9 +29719,9 @@ "target": "ubuntu-gke", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb" ] }, { @@ -29704,10 +29729,21 @@ "kernelrelease": "5.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" ] }, { @@ -29715,10 +29751,10 @@ "kernelrelease": "5.4.0-1072-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" ] }, { @@ -29726,10 +29762,10 @@ "kernelrelease": "5.4.0-1072-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb" ] }, { @@ -29738,9 +29774,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" ] }, { @@ -29749,9 +29785,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb" ] }, { @@ -29759,32 +29795,32 @@ "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" ] }, { "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1078-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb" ] }, { "kernelversion": "84", - "kernelrelease": "5.4.0-1078-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1078-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb" ] }, { @@ -29792,10 +29828,10 @@ "kernelrelease": "5.4.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" ] }, { @@ -29803,10 +29839,10 @@ "kernelrelease": "5.4.0-1083-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb" ] }, { @@ -29814,12 +29850,12 @@ "kernelrelease": "5.4.0-117", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb" ] }, { @@ -29827,12 +29863,12 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" ] }, { @@ -29840,12 +29876,12 @@ "kernelrelease": "5.4.0-29", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb" ] }, { @@ -29853,12 +29889,12 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" ] }, { @@ -29866,12 +29902,12 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" ] }, { @@ -29879,12 +29915,12 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" ] }, { @@ -29892,12 +29928,12 @@ "kernelrelease": "5.4.0-39", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" ] }, { @@ -29905,12 +29941,12 @@ "kernelrelease": "5.4.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" ] }, { @@ -29918,12 +29954,12 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb" ] }, { @@ -29931,11 +29967,11 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb" ] }, @@ -29944,12 +29980,12 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" ] }, { @@ -29957,12 +29993,12 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" ] }, { @@ -29970,12 +30006,12 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb" ] }, { @@ -29983,12 +30019,12 @@ "kernelrelease": "5.4.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb" ] }, { @@ -29996,12 +30032,12 @@ "kernelrelease": "5.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" ] }, { @@ -30009,12 +30045,12 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" ] }, { @@ -30022,12 +30058,12 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb" ] }, { @@ -30035,12 +30071,12 @@ "kernelrelease": "5.4.0-60", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" ] }, { @@ -30048,12 +30084,12 @@ "kernelrelease": "5.4.0-62", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb" ] }, { @@ -30061,12 +30097,12 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" ] }, { @@ -30074,12 +30110,12 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" ] }, { @@ -30087,12 +30123,12 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" ] }, { @@ -30100,12 +30136,12 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb" ] }, { @@ -30113,12 +30149,12 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb" ] }, { @@ -30126,12 +30162,12 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" ] }, { @@ -30140,10 +30176,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" ] }, @@ -30153,11 +30189,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" ] }, { @@ -30165,12 +30201,12 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb" ] }, { @@ -30178,12 +30214,12 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" ] }, { @@ -30191,12 +30227,12 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" ] }, { @@ -30204,12 +30240,12 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" ] }, { @@ -30217,12 +30253,12 @@ "kernelrelease": "5.4.0-86", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" ] }, { @@ -30231,10 +30267,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb" ] }, @@ -30243,12 +30279,12 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" ] }, { @@ -30256,12 +30292,12 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb" ] }, { @@ -30269,11 +30305,11 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb" ] }, @@ -30282,12 +30318,12 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" ] }, { @@ -30295,12 +30331,12 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb" ] }, { @@ -30308,12 +30344,12 @@ "kernelrelease": "5.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb" ] }, { @@ -30321,10 +30357,10 @@ "kernelrelease": "5.6.0-1008-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb" ] }, { @@ -30332,10 +30368,10 @@ "kernelrelease": "5.6.0-1010-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" ] }, { @@ -30344,9 +30380,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" ] }, { @@ -30354,10 +30390,10 @@ "kernelrelease": "5.6.0-1013-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" ] }, { @@ -30365,10 +30401,10 @@ "kernelrelease": "5.6.0-1017-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb" ] }, { @@ -30376,10 +30412,10 @@ "kernelrelease": "5.6.0-1018-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" ] }, { @@ -30387,9 +30423,9 @@ "kernelrelease": "5.6.0-1020-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb" ] }, @@ -30398,10 +30434,10 @@ "kernelrelease": "5.6.0-1023-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" ] }, { @@ -30410,9 +30446,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" ] }, { @@ -30420,10 +30456,10 @@ "kernelrelease": "5.6.0-1028-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" ] }, { @@ -30431,9 +30467,9 @@ "kernelrelease": "5.6.0-1031-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" ] }, @@ -30442,10 +30478,10 @@ "kernelrelease": "5.6.0-1032-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" ] }, { @@ -30453,8 +30489,8 @@ "kernelrelease": "5.6.0-1033-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" ] @@ -30464,10 +30500,10 @@ "kernelrelease": "5.6.0-1039-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" ] }, { @@ -30477,8 +30513,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb" ] }, { @@ -30486,9 +30522,9 @@ "kernelrelease": "5.6.0-1047-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb" ] }, @@ -30497,10 +30533,10 @@ "kernelrelease": "5.6.0-1048-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" ] }, { @@ -30508,9 +30544,9 @@ "kernelrelease": "5.6.0-1050-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" ] }, @@ -30530,10 +30566,10 @@ "kernelrelease": "5.6.0-1053-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" ] }, { @@ -30541,10 +30577,10 @@ "kernelrelease": "5.6.0-1054-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" ] }, { @@ -30554,8 +30590,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" ] }, { @@ -30563,10 +30599,10 @@ "kernelrelease": "5.6.0-1056-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" ] }, { @@ -30574,8 +30610,8 @@ "kernelrelease": "5.8.0-1031-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] @@ -30585,10 +30621,10 @@ "kernelrelease": "5.8.0-1032-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" ] }, { @@ -30597,8 +30633,8 @@ "target": "ubuntu-oracle-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" ] }, @@ -30607,10 +30643,10 @@ "kernelrelease": "5.8.0-1035-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { @@ -30618,9 +30654,9 @@ "kernelrelease": "5.8.0-1035-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" ] }, @@ -30630,31 +30666,31 @@ "target": "ubuntu-oracle-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws-5.8", - "target": "ubuntu-aws-5.8", + "kernelrelease": "5.8.0-1038-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelrelease": "5.8.0-1038-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" ] }, { @@ -30662,10 +30698,10 @@ "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" ] }, { @@ -30696,8 +30732,8 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb" ] }, @@ -30707,9 +30743,9 @@ "target": "ubuntu-aws-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb" ] }, { @@ -30717,10 +30753,10 @@ "kernelrelease": "5.8.0-1041-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb" ] }, { @@ -30729,9 +30765,9 @@ "target": "ubuntu-aws-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" ] }, { @@ -30740,9 +30776,9 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb" ] }, { @@ -30750,12 +30786,12 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" ] }, { @@ -30763,12 +30799,12 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb" ] }, { @@ -30776,12 +30812,12 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" ] }, { @@ -30789,12 +30825,12 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb" ] }, { @@ -30802,12 +30838,12 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb" ] }, { @@ -30815,12 +30851,12 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb" ] }, { @@ -30828,12 +30864,12 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" ] }, { @@ -30841,12 +30877,12 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" ] }, { @@ -30854,12 +30890,12 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb" ] }, { @@ -30867,11 +30903,11 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" ] }, @@ -30880,12 +30916,12 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" ] }, { @@ -30893,12 +30929,12 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb" ] }, { @@ -30906,12 +30942,12 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb" ] }, { @@ -30919,10 +30955,10 @@ "kernelrelease": "5.8.0-59-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb" ] @@ -30932,12 +30968,12 @@ "kernelrelease": "5.8.0-63-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" ] }, { @@ -30946,9 +30982,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" ] }, { @@ -30956,8 +30992,8 @@ "kernelrelease": "5.10.0-1032-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" ] @@ -30967,10 +31003,10 @@ "kernelrelease": "5.10.0-1034-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" ] }, { @@ -30979,9 +31015,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" ] }, { @@ -30989,10 +31025,10 @@ "kernelrelease": "5.11.0-1007-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" ] }, { @@ -31000,9 +31036,9 @@ "kernelrelease": "5.11.0-1008-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb" ] }, @@ -31011,10 +31047,10 @@ "kernelrelease": "5.11.0-1009-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" ] }, { @@ -31022,10 +31058,10 @@ "kernelrelease": "5.11.0-1009-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" ] }, { @@ -31033,10 +31069,10 @@ "kernelrelease": "5.13.0-1007-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, { @@ -31044,9 +31080,9 @@ "kernelrelease": "5.13.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, @@ -31055,32 +31091,32 @@ "kernelrelease": "5.13.0-1013-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1021-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.13.0-1021-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb" ] }, { @@ -31088,10 +31124,10 @@ "kernelrelease": "5.14.0-1010-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" ] }, { @@ -31101,8 +31137,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" ] }, { @@ -31110,9 +31146,9 @@ "kernelrelease": "5.4.0-1064-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" ] }, @@ -31121,9 +31157,9 @@ "kernelrelease": "5.4.0-1065-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" ] }, @@ -31132,10 +31168,10 @@ "kernelrelease": "5.4.0-1069-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" ] }, { @@ -31143,9 +31179,9 @@ "kernelrelease": "5.4.0-1074-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb" ] }, @@ -31154,10 +31190,10 @@ "kernelrelease": "5.4.0-1076-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" ] }, { @@ -31166,8 +31202,8 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" ] }, @@ -31176,12 +31212,12 @@ "kernelrelease": "5.4.0-54", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" ] }, { @@ -31189,12 +31225,12 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb" ] }, { @@ -31202,9 +31238,9 @@ "kernelrelease": "5.6.0-1021-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" ] }, @@ -31213,10 +31249,10 @@ "kernelrelease": "5.6.0-1027-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" ] }, { @@ -31224,10 +31260,10 @@ "kernelrelease": "5.6.0-1034-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb" ] }, { @@ -31235,10 +31271,10 @@ "kernelrelease": "5.6.0-1035-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" ] }, { @@ -31246,9 +31282,9 @@ "kernelrelease": "5.6.0-1036-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb" ] }, @@ -31257,8 +31293,8 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" ] @@ -31270,8 +31306,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb" ] }, { @@ -31279,12 +31315,12 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb" ] }, { @@ -31292,12 +31328,12 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb" ] }, { @@ -31305,11 +31341,11 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb" ] }, @@ -31318,12 +31354,12 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb" ] }, { @@ -31331,12 +31367,12 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" ] }, { @@ -31344,8 +31380,8 @@ "kernelrelease": "5.4.0-1009-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb" ] @@ -31355,9 +31391,9 @@ "kernelrelease": "5.4.0-1009-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" ] }, @@ -31366,10 +31402,10 @@ "kernelrelease": "5.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { @@ -31377,8 +31413,8 @@ "kernelrelease": "5.4.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" ] @@ -31388,10 +31424,10 @@ "kernelrelease": "5.4.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb" ] }, { @@ -31400,11 +31436,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" ] }, { @@ -31412,10 +31448,10 @@ "kernelrelease": "5.6.0-1007-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" ] }, { @@ -31423,10 +31459,10 @@ "kernelrelease": "5.11.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" ] }, { @@ -31434,43 +31470,43 @@ "kernelrelease": "5.11.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb" ] }, - { - "kernelversion": "23", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" - ] - }, { "kernelversion": "23", "kernelrelease": "5.11.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" ] }, + { + "kernelversion": "23", + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + ] + }, { "kernelversion": "27", "kernelrelease": "5.11.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb" ] }, { @@ -31478,9 +31514,9 @@ "kernelrelease": "5.11.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb" ] }, @@ -31489,10 +31525,10 @@ "kernelrelease": "5.11.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb" ] }, { @@ -31500,10 +31536,10 @@ "kernelrelease": "5.11.0-1027-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -31512,9 +31548,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" ] }, { @@ -31522,11 +31558,11 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" ] }, @@ -31537,8 +31573,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" ] }, { @@ -31546,21 +31582,32 @@ "kernelrelease": "5.11.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb" ] }, + { + "kernelversion": "6", + "kernelrelease": "5.11.0-1006-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" + ] + }, { "kernelversion": "6", "kernelrelease": "5.11.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb" ] }, { @@ -31569,20 +31616,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.11.0-1006-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" ] }, { @@ -31590,12 +31626,12 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" ] }, { @@ -31603,21 +31639,10 @@ "kernelrelease": "5.13.0-1005-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.13.0-1006-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" ] }, { @@ -31626,9 +31651,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { @@ -31636,43 +31661,43 @@ "kernelrelease": "5.13.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.13.0-1006-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" + ] + }, { "kernelversion": "6", "kernelrelease": "5.13.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" ] }, - { - "kernelversion": "8", - "kernelrelease": "5.13.0-1007-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" - ] - }, { "kernelversion": "8", "kernelrelease": "5.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" ] }, { @@ -31680,21 +31705,21 @@ "kernelrelease": "5.13.0-1007-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", + "kernelversion": "8", + "kernelrelease": "5.13.0-1007-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" ] }, { @@ -31702,10 +31727,21 @@ "kernelrelease": "5.13.0-1008-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" ] }, { @@ -31713,10 +31749,10 @@ "kernelrelease": "5.13.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" ] }, { @@ -31724,10 +31760,10 @@ "kernelrelease": "5.13.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb" ] }, { @@ -31736,20 +31772,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.13.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" ] }, { @@ -31757,21 +31782,21 @@ "kernelrelease": "5.13.0-1011-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.13.0-1012-kvm", - "target": "ubuntu-kvm", + "kernelversion": "12", + "kernelrelease": "5.13.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" ] }, { @@ -31780,20 +31805,20 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.13.0-1013-kvm", + "kernelversion": "13", + "kernelrelease": "5.13.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" ] }, { @@ -31801,21 +31826,21 @@ "kernelrelease": "5.13.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1013-oracle", - "target": "ubuntu-oracle", + "kernelversion": "14", + "kernelrelease": "5.13.0-1013-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" ] }, { @@ -31823,21 +31848,32 @@ "kernelrelease": "5.13.0-1013-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" ] }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1013-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" + ] + }, { "kernelversion": "16", "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" ] }, { @@ -31845,8 +31881,8 @@ "kernelrelease": "5.13.0-1014-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb" ] @@ -31856,10 +31892,10 @@ "kernelrelease": "5.13.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" ] }, { @@ -31867,8 +31903,8 @@ "kernelrelease": "5.13.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb" ] @@ -31879,9 +31915,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" ] }, { @@ -31889,32 +31925,32 @@ "kernelrelease": "5.13.0-1018-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1019-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { @@ -31922,10 +31958,10 @@ "kernelrelease": "5.13.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb" ] }, { @@ -31933,9 +31969,9 @@ "kernelrelease": "5.13.0-1020-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, @@ -31944,10 +31980,10 @@ "kernelrelease": "5.13.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb" ] }, { @@ -31955,10 +31991,10 @@ "kernelrelease": "5.13.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" ] }, { @@ -31966,10 +32002,10 @@ "kernelrelease": "5.13.0-1022-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb" ] }, { @@ -31977,10 +32013,10 @@ "kernelrelease": "5.13.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" ] }, { @@ -31988,8 +32024,8 @@ "kernelrelease": "5.13.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" ] @@ -32010,10 +32046,10 @@ "kernelrelease": "5.13.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb" ] }, { @@ -32032,10 +32068,10 @@ "kernelrelease": "5.13.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb" ] }, { @@ -32043,10 +32079,10 @@ "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb" ] }, { @@ -32054,10 +32090,10 @@ "kernelrelease": "5.13.0-1024-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" ] }, { @@ -32065,10 +32101,10 @@ "kernelrelease": "5.13.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb" ] }, { @@ -32076,10 +32112,10 @@ "kernelrelease": "5.13.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" ] }, { @@ -32087,9 +32123,9 @@ "kernelrelease": "5.13.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb" ] }, @@ -32099,31 +32135,31 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.13.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.13.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1025-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" ] }, { @@ -32131,9 +32167,9 @@ "kernelrelease": "5.13.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb" ] }, @@ -32142,21 +32178,21 @@ "kernelrelease": "5.13.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1028-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] }, { @@ -32164,21 +32200,21 @@ "kernelrelease": "5.13.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb" ] }, { @@ -32186,10 +32222,10 @@ "kernelrelease": "5.13.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" ] }, { @@ -32197,12 +32233,12 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb" ] }, { @@ -32210,12 +32246,12 @@ "kernelrelease": "5.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb" ] }, { @@ -32223,12 +32259,12 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" ] }, { @@ -32236,12 +32272,12 @@ "kernelrelease": "5.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb" ] }, { @@ -32249,12 +32285,12 @@ "kernelrelease": "5.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb" ] }, { @@ -32262,12 +32298,12 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" ] }, { @@ -32275,11 +32311,11 @@ "kernelrelease": "5.13.0-38", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb" ] }, @@ -32288,11 +32324,11 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb" ] }, @@ -32302,11 +32338,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb" ] }, { @@ -32314,12 +32350,12 @@ "kernelrelease": "5.13.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb" ] }, { @@ -32327,12 +32363,12 @@ "kernelrelease": "5.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb" ] }, { @@ -32340,12 +32376,12 @@ "kernelrelease": "5.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb" ] }, { @@ -32353,12 +32389,12 @@ "kernelrelease": "5.13.0-45", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb" ] }, { @@ -32366,10 +32402,10 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" ] }, { @@ -32377,10 +32413,10 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" ] }, { @@ -32388,9 +32424,9 @@ "kernelrelease": "5.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" ] }, @@ -32399,8 +32435,8 @@ "kernelrelease": "5.13.0-1012-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb" ] @@ -32410,10 +32446,10 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" ] }, { @@ -32421,10 +32457,10 @@ "kernelrelease": "5.13.0-1016-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb" ] }, { @@ -32432,10 +32468,10 @@ "kernelrelease": "5.13.0-1017-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" ] }, { @@ -32443,10 +32479,10 @@ "kernelrelease": "5.13.0-1017-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, { @@ -32454,10 +32490,10 @@ "kernelrelease": "5.13.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" ] }, { @@ -32465,9 +32501,9 @@ "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" ] }, @@ -32476,10 +32512,10 @@ "kernelrelease": "5.13.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" ] }, { @@ -32487,8 +32523,8 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb" ] @@ -32498,10 +32534,10 @@ "kernelrelease": "5.13.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb" ] }, { @@ -32509,10 +32545,10 @@ "kernelrelease": "5.13.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb" ] }, { @@ -32520,10 +32556,10 @@ "kernelrelease": "5.13.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" ] }, { @@ -32532,9 +32568,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" ] }, { @@ -32542,10 +32578,10 @@ "kernelrelease": "5.13.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb" ] }, { @@ -32553,9 +32589,9 @@ "kernelrelease": "5.13.0-1028-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb" ] }, @@ -32575,10 +32611,10 @@ "kernelrelease": "5.13.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb" ] }, { @@ -32586,10 +32622,10 @@ "kernelrelease": "5.13.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" ] }, { @@ -32597,12 +32633,12 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb" ] }, { @@ -32610,12 +32646,12 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb" ] }, { @@ -32624,11 +32660,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb" ] }, { @@ -32636,12 +32672,12 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" ] }, { @@ -32650,11 +32686,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" ] }, { @@ -32662,12 +32698,12 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb" ] }, { @@ -32675,12 +32711,12 @@ "kernelrelease": "5.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb" ] }, { @@ -32688,12 +32724,12 @@ "kernelrelease": "5.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb" ] }, { @@ -32701,10 +32737,10 @@ "kernelrelease": "5.13.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb" ] }, { @@ -32723,9 +32759,9 @@ "kernelrelease": "5.13.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb" ] }, @@ -32734,10 +32770,10 @@ "kernelrelease": "5.13.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb" ] }, { @@ -32745,12 +32781,12 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" ] }, { @@ -32759,11 +32795,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb" ] }, { @@ -32771,21 +32807,10 @@ "kernelrelease": "5.13.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.13.0-1005-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" ] }, { @@ -32793,21 +32818,32 @@ "kernelrelease": "5.13.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" ] }, + { + "kernelversion": "6", + "kernelrelease": "5.13.0-1005-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb" + ] + }, { "kernelversion": "10", "kernelrelease": "5.13.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" ] }, { @@ -32815,11 +32851,11 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" ] }, @@ -32828,10 +32864,10 @@ "kernelrelease": "5.15.0-1004-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" ] }, { @@ -32839,8 +32875,8 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb" ] @@ -32851,9 +32887,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb" ] }, { @@ -32861,21 +32897,10 @@ "kernelrelease": "5.15.0-1006-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1006-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { @@ -32883,21 +32908,43 @@ "kernelrelease": "5.15.0-1006-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1006-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" + ] + }, { "kernelversion": "6", "kernelrelease": "5.15.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1007-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { @@ -32911,48 +32958,37 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1007-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb" - ] - }, { "kernelversion": "7", "kernelrelease": "5.15.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1008-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "5.15.0-1008-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1008-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" ] }, { @@ -32960,21 +32996,10 @@ "kernelrelease": "5.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.15.0-30", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb" ] }, { @@ -32982,21 +33007,21 @@ "kernelrelease": "5.15.0-30-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.15.0-32-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "31", + "kernelrelease": "5.15.0-30", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { @@ -33004,21 +33029,32 @@ "kernelrelease": "5.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb" ] }, + { + "kernelversion": "33", + "kernelrelease": "5.15.0-32-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb" + ] + }, { "kernelversion": "34", "kernelrelease": "5.15.0-33-lowlatency", "target": "ubuntu-lowlatency", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" ] }, { @@ -33026,9 +33062,9 @@ "kernelrelease": "5.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" ] }, @@ -33037,10 +33073,10 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, { @@ -33048,10 +33084,10 @@ "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, { @@ -33060,9 +33096,9 @@ "target": "ubuntu-oem-5.17", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb" ] }, { @@ -33070,10 +33106,10 @@ "kernelrelease": "5.17.0-1005-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" ] }, { @@ -33081,10 +33117,10 @@ "kernelrelease": "5.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb" ] }, { @@ -33092,10 +33128,10 @@ "kernelrelease": "5.15.0-1008-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb" ] }, { @@ -33103,9 +33139,9 @@ "kernelrelease": "5.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" ] }, @@ -33114,10 +33150,10 @@ "kernelrelease": "5.15.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb" ] }, { @@ -33136,32 +33172,32 @@ "kernelrelease": "5.15.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.15.0-37", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-37-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.15.0-37-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-37", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb" ] }, { @@ -33180,10 +33216,10 @@ "kernelrelease": "5.17.0-1011-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb" ] }, { @@ -33191,10 +33227,10 @@ "kernelrelease": "5.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb" ] }, { @@ -33202,10 +33238,10 @@ "kernelrelease": "5.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb" ] }, { @@ -33214,8 +33250,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" ] }, @@ -33225,8 +33261,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb" ] }, @@ -33236,9 +33272,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" ] }, { @@ -33246,9 +33282,9 @@ "kernelrelease": "5.15.0-1002-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" ] }, @@ -33268,8 +33304,8 @@ "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" ] @@ -33279,10 +33315,10 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb" ] }, { @@ -33290,10 +33326,10 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" ] }, { @@ -33301,10 +33337,10 @@ "kernelrelease": "4.15.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" ] }, { @@ -33314,10 +33350,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb" ] }, { @@ -33325,12 +33361,12 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb" ] }, { @@ -33339,11 +33375,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" ] }, { @@ -33352,10 +33388,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" ] }, @@ -33364,12 +33400,12 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb" ] }, { @@ -33377,11 +33413,11 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" ] }, @@ -33391,11 +33427,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" ] }, { @@ -33404,9 +33440,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" ] @@ -33416,12 +33452,12 @@ "kernelrelease": "3.13.0-110", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" ] }, { @@ -33429,12 +33465,12 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb" ] }, { @@ -33442,12 +33478,12 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb" ] }, { @@ -33455,12 +33491,12 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" ] }, { @@ -33470,10 +33506,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb" ] }, { @@ -33481,12 +33517,12 @@ "kernelrelease": "3.13.0-119", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb" ] }, { @@ -33494,12 +33530,12 @@ "kernelrelease": "3.13.0-121", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" ] }, { @@ -33507,12 +33543,12 @@ "kernelrelease": "3.13.0-123", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb" ] }, { @@ -33520,11 +33556,11 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb" ] }, @@ -33533,12 +33569,12 @@ "kernelrelease": "3.13.0-126", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb" ] }, { @@ -33546,12 +33582,12 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" ] }, { @@ -33560,10 +33596,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb" ] }, @@ -33573,10 +33609,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb" ] }, @@ -33585,11 +33621,11 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb" ] }, @@ -33598,12 +33634,12 @@ "kernelrelease": "3.13.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb" ] }, { @@ -33611,12 +33647,12 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" ] }, { @@ -33626,10 +33662,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" ] }, { @@ -33637,12 +33673,12 @@ "kernelrelease": "3.13.0-141", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb" ] }, { @@ -33651,11 +33687,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" ] }, { @@ -33663,12 +33699,12 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" ] }, { @@ -33676,12 +33712,12 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb" ] }, { @@ -33689,12 +33725,12 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" ] }, { @@ -33702,12 +33738,12 @@ "kernelrelease": "3.13.0-149", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" ] }, { @@ -33715,12 +33751,12 @@ "kernelrelease": "3.13.0-151", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb" ] }, { @@ -33729,11 +33765,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" ] }, { @@ -33741,11 +33777,11 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb" ] }, @@ -33754,12 +33790,12 @@ "kernelrelease": "3.13.0-156", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" ] }, { @@ -33767,12 +33803,12 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb" ] }, { @@ -33780,12 +33816,12 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb" ] }, { @@ -33793,11 +33829,11 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb" ] }, @@ -33806,12 +33842,12 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb" ] }, { @@ -33820,11 +33856,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" ] }, { @@ -33832,12 +33868,12 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" ] }, { @@ -33845,12 +33881,12 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" ] }, { @@ -33858,12 +33894,12 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb" ] }, { @@ -33871,11 +33907,11 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb" ] }, @@ -33884,12 +33920,12 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb" ] }, { @@ -33897,12 +33933,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb" ] }, { @@ -33910,11 +33946,11 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" ] }, @@ -33923,12 +33959,12 @@ "kernelrelease": "3.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb" ] }, { @@ -33936,12 +33972,12 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb" ] }, { @@ -33949,12 +33985,12 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb" ] }, { @@ -33962,12 +33998,12 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb" ] }, { @@ -33976,11 +34012,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" ] }, { @@ -33988,12 +34024,12 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb" ] }, { @@ -34003,9 +34039,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb" ] }, @@ -34015,11 +34051,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb" ] }, { @@ -34031,8 +34067,8 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" ] }, { @@ -34040,12 +34076,12 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb" ] }, { @@ -34053,12 +34089,12 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" ] }, { @@ -34066,12 +34102,12 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" ] }, { @@ -34081,10 +34117,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb" ] }, { @@ -34092,12 +34128,12 @@ "kernelrelease": "3.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb" ] }, { @@ -34105,12 +34141,12 @@ "kernelrelease": "3.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb" ] }, { @@ -34118,12 +34154,12 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb" ] }, { @@ -34131,12 +34167,12 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" ] }, { @@ -34144,11 +34180,11 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb" ] }, @@ -34157,12 +34193,12 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" ] }, { @@ -34171,11 +34207,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" ] }, { @@ -34183,11 +34219,11 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb" ] }, @@ -34196,12 +34232,12 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" ] }, { @@ -34209,12 +34245,12 @@ "kernelrelease": "3.13.0-58", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb" ] }, { @@ -34222,12 +34258,12 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb" ] }, { @@ -34235,12 +34271,12 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb" ] }, { @@ -34248,12 +34284,12 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" ] }, { @@ -34263,10 +34299,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb" ] }, { @@ -34274,12 +34310,12 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" ] }, { @@ -34288,11 +34324,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" ] }, { @@ -34300,12 +34336,12 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" ] }, { @@ -34313,12 +34349,12 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb" ] }, { @@ -34326,12 +34362,12 @@ "kernelrelease": "3.13.0-70", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" ] }, { @@ -34339,12 +34375,12 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb" ] }, { @@ -34352,12 +34388,12 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb" ] }, { @@ -34365,12 +34401,12 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb" ] }, { @@ -34378,10 +34414,10 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" ] @@ -34391,12 +34427,12 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb" ] }, { @@ -34404,12 +34440,12 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" ] }, { @@ -34418,11 +34454,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb" ] }, { @@ -34430,12 +34466,12 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb" ] }, { @@ -34443,12 +34479,12 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" ] }, { @@ -34456,12 +34492,12 @@ "kernelrelease": "3.13.0-87", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb" ] }, { @@ -34469,12 +34505,12 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" ] }, { @@ -34482,12 +34518,12 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" ] }, { @@ -34495,11 +34531,11 @@ "kernelrelease": "3.13.0-92", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" ] }, @@ -34508,12 +34544,12 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb" ] }, { @@ -34522,11 +34558,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" ] }, { @@ -34534,12 +34570,12 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb" ] }, { @@ -34547,12 +34583,12 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb" ] }, { @@ -34560,12 +34596,12 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb" ] }, { @@ -34573,11 +34609,11 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb" ] }, @@ -34587,11 +34623,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" ] }, { @@ -34599,11 +34635,11 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" ] }, @@ -34613,11 +34649,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" ] }, { @@ -34625,12 +34661,12 @@ "kernelrelease": "3.16.0-33-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" ] }, { @@ -34638,12 +34674,12 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb" ] }, { @@ -34651,12 +34687,12 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb" ] }, { @@ -34665,11 +34701,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" ] }, { @@ -34677,12 +34713,12 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" ] }, { @@ -34690,12 +34726,12 @@ "kernelrelease": "3.16.0-39-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" ] }, { @@ -34703,12 +34739,12 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" ] }, { @@ -34716,12 +34752,12 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" ] }, { @@ -34729,12 +34765,12 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" ] }, { @@ -34742,12 +34778,12 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb" ] }, { @@ -34755,12 +34791,12 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb" ] }, { @@ -34768,11 +34804,11 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb" ] }, @@ -34781,12 +34817,12 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" ] }, { @@ -34794,12 +34830,12 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" ] }, { @@ -34807,12 +34843,12 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb" ] }, { @@ -34820,12 +34856,12 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb" ] }, { @@ -34834,11 +34870,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb" ] }, { @@ -34846,12 +34882,12 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb" ] }, { @@ -34859,12 +34895,12 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb" ] }, { @@ -34872,12 +34908,12 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" ] }, { @@ -34885,12 +34921,12 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" ] }, { @@ -34900,10 +34936,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb" ] }, { @@ -34912,11 +34948,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb" ] }, { @@ -34924,12 +34960,12 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" ] }, { @@ -34937,11 +34973,11 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" ] }, @@ -34951,11 +34987,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" ] }, { @@ -34963,12 +34999,12 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" ] }, { @@ -34976,12 +35012,12 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb" ] }, { @@ -34989,11 +35025,11 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb" ] }, @@ -35002,12 +35038,12 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb" ] }, { @@ -35015,12 +35051,12 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" ] }, { @@ -35028,12 +35064,12 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb" ] }, { @@ -35041,12 +35077,12 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" ] }, { @@ -35054,12 +35090,12 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb" ] }, { @@ -35067,12 +35103,12 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" ] }, { @@ -35080,12 +35116,12 @@ "kernelrelease": "3.19.0-26-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb" ] }, { @@ -35094,11 +35130,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb" ] }, { @@ -35106,12 +35142,12 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" ] }, { @@ -35119,11 +35155,11 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb" ] }, @@ -35132,12 +35168,12 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb" ] }, { @@ -35146,11 +35182,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" ] }, { @@ -35158,12 +35194,12 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" ] }, { @@ -35171,11 +35207,11 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" ] }, @@ -35185,11 +35221,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" ] }, { @@ -35197,12 +35233,12 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb" ] }, { @@ -35210,11 +35246,11 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" ] }, @@ -35223,11 +35259,11 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" ] }, @@ -35236,12 +35272,12 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" ] }, { @@ -35251,10 +35287,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" ] }, { @@ -35263,11 +35299,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" ] }, { @@ -35275,12 +35311,12 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" ] }, { @@ -35288,12 +35324,12 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" ] }, { @@ -35301,12 +35337,12 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb" ] }, { @@ -35315,10 +35351,10 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" ] }, @@ -35327,11 +35363,11 @@ "kernelrelease": "3.19.0-65-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb" ] }, @@ -35340,12 +35376,12 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" ] }, { @@ -35353,12 +35389,12 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" ] }, { @@ -35366,12 +35402,12 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" ] }, { @@ -35379,12 +35415,12 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" ] }, { @@ -35392,12 +35428,12 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" ] }, { @@ -35405,12 +35441,12 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb" ] }, { @@ -35418,12 +35454,12 @@ "kernelrelease": "3.19.0-75-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb" ] }, { @@ -35431,12 +35467,12 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" ] }, { @@ -35445,11 +35481,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb" ] }, { @@ -35457,12 +35493,12 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb" ] }, { @@ -35470,12 +35506,12 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb" ] }, { @@ -35483,10 +35519,10 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb" ] }, { @@ -35494,10 +35530,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" ] }, { @@ -35506,8 +35542,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" ] }, @@ -35516,10 +35552,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb" ] }, { @@ -35527,8 +35563,8 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" ] @@ -35538,10 +35574,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" ] }, { @@ -35549,10 +35585,10 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb" ] }, { @@ -35560,10 +35596,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" ] }, { @@ -35571,9 +35607,9 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb" ] }, @@ -35582,10 +35618,10 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb" ] }, { @@ -35593,12 +35629,12 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb" ] }, { @@ -35606,12 +35642,12 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" ] }, { @@ -35620,11 +35656,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb" ] }, { @@ -35632,12 +35668,12 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb" ] }, { @@ -35645,12 +35681,12 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb" ] }, { @@ -35658,12 +35694,12 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb" ] }, { @@ -35672,11 +35708,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb" ] }, { @@ -35684,12 +35720,12 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" ] }, { @@ -35697,12 +35733,12 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb" ] }, { @@ -35710,12 +35746,12 @@ "kernelrelease": "4.2.0-35-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb" ] }, { @@ -35723,12 +35759,12 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" ] }, { @@ -35736,12 +35772,12 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" ] }, { @@ -35750,11 +35786,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" ] }, { @@ -35763,10 +35799,10 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" ] }, @@ -35775,12 +35811,12 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb" ] }, { @@ -35788,12 +35824,12 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" ] }, { @@ -35801,12 +35837,12 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" ] }, { @@ -35814,12 +35850,12 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb" ] }, { @@ -35827,12 +35863,12 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb" ] }, { @@ -35840,12 +35876,12 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" ] }, { @@ -35853,12 +35889,12 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" ] }, { @@ -35868,10 +35904,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb" ] }, { @@ -35879,12 +35915,12 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb" ] }, { @@ -35892,12 +35928,12 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" ] }, { @@ -35905,8 +35941,8 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", @@ -35918,12 +35954,12 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb" ] }, { @@ -35931,12 +35967,12 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb" ] }, { @@ -35944,12 +35980,12 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb" ] }, { @@ -35957,12 +35993,12 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" ] }, { @@ -35970,12 +36006,12 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb" ] }, { @@ -35983,10 +36019,10 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" ] @@ -35996,9 +36032,9 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" @@ -36009,12 +36045,12 @@ "kernelrelease": "4.4.0-139-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb" ] }, { @@ -36022,12 +36058,12 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" ] }, { @@ -36035,11 +36071,11 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" ] }, @@ -36048,12 +36084,12 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb" ] }, { @@ -36061,12 +36097,12 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" ] }, { @@ -36074,12 +36110,12 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" ] }, { @@ -36087,12 +36123,12 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" ] }, { @@ -36100,12 +36136,12 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb" ] }, { @@ -36113,12 +36149,12 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" ] }, { @@ -36126,12 +36162,12 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" ] }, { @@ -36139,12 +36175,12 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb" ] }, { @@ -36155,9 +36191,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" ] }, { @@ -36165,12 +36201,12 @@ "kernelrelease": "4.4.0-36-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" ] }, { @@ -36180,10 +36216,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb" ] }, { @@ -36191,12 +36227,12 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" ] }, { @@ -36204,12 +36240,12 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" ] }, { @@ -36217,12 +36253,12 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" ] }, { @@ -36230,12 +36266,12 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb" ] }, { @@ -36243,12 +36279,12 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb" ] }, { @@ -36256,12 +36292,12 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb" ] }, { @@ -36270,11 +36306,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb" ] }, { @@ -36282,12 +36318,12 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" ] }, { @@ -36295,12 +36331,12 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" ] }, { @@ -36308,12 +36344,12 @@ "kernelrelease": "4.4.0-64-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" ] }, { @@ -36322,8 +36358,8 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb" @@ -36334,11 +36370,11 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" ] }, @@ -36347,11 +36383,11 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb" ] }, @@ -36360,11 +36396,11 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb" ] }, @@ -36373,12 +36409,12 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb" ] }, { @@ -36386,12 +36422,12 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" ] }, { @@ -36399,12 +36435,12 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb" ] }, { @@ -36412,12 +36448,12 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" ] }, { @@ -36425,11 +36461,11 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb" ] }, @@ -36438,12 +36474,12 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb" ] }, { @@ -36451,12 +36487,12 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb" ] }, { @@ -36464,12 +36500,12 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" ] }, { @@ -36479,9 +36515,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb" ] }, @@ -36491,11 +36527,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb" ] }, { @@ -36503,12 +36539,12 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb" ] }, { @@ -36516,12 +36552,12 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb" ] }, { @@ -36530,11 +36566,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" ] }, { @@ -36542,12 +36578,12 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" ] }, { @@ -36555,12 +36591,12 @@ "kernelrelease": "3.13.0-113", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb" ] }, { @@ -36568,10 +36604,10 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb" ] @@ -36582,11 +36618,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb" ] }, { @@ -36594,12 +36630,12 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb" ] }, { @@ -36607,12 +36643,12 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" ] }, { @@ -36620,12 +36656,12 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb" ] }, { @@ -36633,11 +36669,11 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" ] }, @@ -36646,12 +36682,12 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" ] }, { @@ -36659,12 +36695,12 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" ] }, { @@ -36672,10 +36708,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" ] }, { @@ -36694,12 +36730,12 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" ] }, { @@ -36707,12 +36743,12 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" ] }, { @@ -36720,11 +36756,11 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb" ] }, @@ -36733,11 +36769,11 @@ "kernelrelease": "4.4.0-146-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" ] }, @@ -36746,12 +36782,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb" ] }, { @@ -36760,9 +36796,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" ] }, { @@ -36770,9 +36806,9 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" ] }, @@ -36781,10 +36817,10 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" ] }, { @@ -36792,10 +36828,10 @@ "kernelrelease": "4.15.0-1095-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb" ] }, { @@ -36803,9 +36839,9 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, @@ -36814,10 +36850,10 @@ "kernelrelease": "4.15.0-1110-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" ] }, { @@ -36825,10 +36861,10 @@ "kernelrelease": "4.4.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb" ] }, { @@ -36837,11 +36873,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb" ] }, { @@ -36849,12 +36885,12 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb" ] }, { @@ -36862,10 +36898,10 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb" ] @@ -36875,12 +36911,12 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb" ] }, { @@ -36888,12 +36924,12 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb" ] }, { @@ -36901,12 +36937,12 @@ "kernelrelease": "4.10.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" ] }, { @@ -36914,12 +36950,12 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" ] }, { @@ -36927,12 +36963,12 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" ] }, { @@ -36940,12 +36976,12 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" ] }, { @@ -36953,12 +36989,12 @@ "kernelrelease": "4.10.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb" ] }, { @@ -36966,12 +37002,12 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb" ] }, { @@ -36979,10 +37015,10 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" ] @@ -36992,12 +37028,12 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" ] }, { @@ -37005,10 +37041,10 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" ] @@ -37019,11 +37055,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb" ] }, { @@ -37031,12 +37067,12 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb" ] }, { @@ -37046,10 +37082,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" ] }, { @@ -37057,12 +37093,12 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb" ] }, { @@ -37070,12 +37106,12 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" ] }, { @@ -37094,10 +37130,10 @@ "kernelrelease": "4.11.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" ] }, { @@ -37105,12 +37141,12 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" ] }, { @@ -37118,12 +37154,12 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" ] }, { @@ -37132,9 +37168,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" ] }, { @@ -37142,10 +37178,10 @@ "kernelrelease": "4.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" ] }, { @@ -37153,10 +37189,10 @@ "kernelrelease": "4.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" ] }, { @@ -37164,10 +37200,10 @@ "kernelrelease": "4.13.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb" ] }, { @@ -37175,10 +37211,10 @@ "kernelrelease": "4.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" ] }, { @@ -37186,10 +37222,10 @@ "kernelrelease": "4.13.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" ] }, { @@ -37197,10 +37233,10 @@ "kernelrelease": "4.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb" ] }, { @@ -37209,10 +37245,10 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb" ] }, @@ -37221,12 +37257,12 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" ] }, { @@ -37234,12 +37270,12 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" ] }, { @@ -37247,12 +37283,12 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb" ] }, { @@ -37260,12 +37296,12 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb" ] }, { @@ -37273,12 +37309,12 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb" ] }, { @@ -37286,12 +37322,12 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb" ] }, { @@ -37299,12 +37335,12 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" ] }, { @@ -37312,12 +37348,12 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" ] }, { @@ -37325,12 +37361,12 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" ] }, { @@ -37338,12 +37374,12 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb" ] }, { @@ -37351,12 +37387,12 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" ] }, { @@ -37364,12 +37400,12 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" ] }, { @@ -37378,10 +37414,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" ] }, @@ -37390,12 +37426,12 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" ] }, { @@ -37403,10 +37439,10 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb" ] }, { @@ -37414,10 +37450,10 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" ] }, { @@ -37425,12 +37461,12 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb" ] }, { @@ -37438,10 +37474,10 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" ] }, { @@ -37460,10 +37496,10 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" ] }, { @@ -37472,8 +37508,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" ] }, @@ -37483,9 +37519,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" ] }, { @@ -37494,9 +37530,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" ] }, { @@ -37504,10 +37540,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" ] }, { @@ -37526,10 +37562,10 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" ] }, { @@ -37537,10 +37573,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb" ] }, { @@ -37548,10 +37584,10 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb" ] }, { @@ -37559,10 +37595,10 @@ "kernelrelease": "4.15.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb" ] }, { @@ -37570,10 +37606,10 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb" ] }, { @@ -37581,10 +37617,10 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" ] }, { @@ -37592,9 +37628,9 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" ] }, @@ -37603,9 +37639,9 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" ] }, @@ -37614,10 +37650,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb" ] }, { @@ -37625,10 +37661,10 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" ] }, { @@ -37637,8 +37673,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" ] }, @@ -37647,10 +37683,10 @@ "kernelrelease": "4.15.0-1023-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { @@ -37658,10 +37694,10 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb" ] }, { @@ -37669,32 +37705,32 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { @@ -37704,8 +37740,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" ] }, { @@ -37713,9 +37749,9 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb" ] }, @@ -37724,10 +37760,10 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb" ] }, { @@ -37746,32 +37782,32 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -37781,8 +37817,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" ] }, { @@ -37790,10 +37826,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb" ] }, { @@ -37801,10 +37837,10 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" ] }, { @@ -37814,8 +37850,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb" ] }, { @@ -37823,10 +37859,10 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" ] }, { @@ -37834,10 +37870,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" ] }, { @@ -37845,10 +37881,10 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" ] }, { @@ -37856,10 +37892,10 @@ "kernelrelease": "4.15.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" ] }, { @@ -37868,9 +37904,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" ] }, { @@ -37878,10 +37914,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" ] }, { @@ -37889,10 +37925,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" ] }, { @@ -37900,10 +37936,10 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" ] }, { @@ -37911,9 +37947,9 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" ] }, @@ -37923,9 +37959,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { @@ -37933,10 +37969,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb" ] }, { @@ -37944,8 +37980,8 @@ "kernelrelease": "4.15.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" ] @@ -37955,8 +37991,8 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" ] @@ -37966,10 +38002,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" ] }, { @@ -37989,9 +38025,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" ] }, { @@ -37999,8 +38035,8 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" ] @@ -38021,8 +38057,8 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" ] @@ -38032,9 +38068,9 @@ "kernelrelease": "4.15.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" ] }, @@ -38043,10 +38079,10 @@ "kernelrelease": "4.15.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" ] }, { @@ -38054,9 +38090,9 @@ "kernelrelease": "4.15.0-1047-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" ] }, @@ -38065,10 +38101,10 @@ "kernelrelease": "4.15.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" ] }, { @@ -38076,10 +38112,10 @@ "kernelrelease": "4.15.0-1050-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" ] }, { @@ -38087,9 +38123,9 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb" ] }, @@ -38098,10 +38134,10 @@ "kernelrelease": "4.15.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" ] }, { @@ -38111,8 +38147,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb" ] }, { @@ -38120,9 +38156,9 @@ "kernelrelease": "4.15.0-1052-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" ] }, @@ -38131,10 +38167,10 @@ "kernelrelease": "4.15.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" ] }, { @@ -38142,10 +38178,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" ] }, { @@ -38153,10 +38189,10 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" ] }, { @@ -38164,10 +38200,10 @@ "kernelrelease": "4.15.0-1055-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb" ] }, { @@ -38176,9 +38212,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" ] }, { @@ -38186,10 +38222,10 @@ "kernelrelease": "4.15.0-1056-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb" ] }, { @@ -38198,8 +38234,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" ] }, @@ -38209,8 +38245,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" ] }, @@ -38219,10 +38255,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb" ] }, { @@ -38230,8 +38266,8 @@ "kernelrelease": "4.15.0-1059-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" ] @@ -38242,11 +38278,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb" ] }, { @@ -38254,10 +38290,10 @@ "kernelrelease": "4.15.0-1060-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" ] }, { @@ -38265,9 +38301,9 @@ "kernelrelease": "4.15.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" ] }, @@ -38276,9 +38312,9 @@ "kernelrelease": "4.15.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb" ] }, @@ -38287,10 +38323,10 @@ "kernelrelease": "4.15.0-1061-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" ] }, { @@ -38298,9 +38334,9 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" ] }, @@ -38310,9 +38346,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" ] }, { @@ -38320,10 +38356,10 @@ "kernelrelease": "4.15.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" ] }, { @@ -38331,10 +38367,10 @@ "kernelrelease": "4.15.0-1064-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" ] }, { @@ -38343,9 +38379,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" ] }, { @@ -38353,9 +38389,9 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb" ] }, @@ -38365,9 +38401,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb" ] }, { @@ -38386,10 +38422,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" ] }, { @@ -38397,8 +38433,8 @@ "kernelrelease": "4.15.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" ] @@ -38408,10 +38444,10 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb" ] }, { @@ -38419,12 +38455,12 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" ] }, { @@ -38433,9 +38469,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" ] }, { @@ -38445,8 +38481,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb" ] }, { @@ -38454,10 +38490,10 @@ "kernelrelease": "4.15.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" ] }, { @@ -38465,10 +38501,10 @@ "kernelrelease": "4.15.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" ] }, { @@ -38476,10 +38512,10 @@ "kernelrelease": "4.15.0-1077-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb" ] }, { @@ -38487,10 +38523,10 @@ "kernelrelease": "4.15.0-1078-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb" ] }, { @@ -38500,8 +38536,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" ] }, { @@ -38521,9 +38557,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb" ] }, { @@ -38531,10 +38567,10 @@ "kernelrelease": "4.15.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" ] }, { @@ -38542,9 +38578,9 @@ "kernelrelease": "4.15.0-1083-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb" ] }, @@ -38553,10 +38589,10 @@ "kernelrelease": "4.15.0-1084-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb" ] }, { @@ -38565,9 +38601,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" ] }, { @@ -38576,9 +38612,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb" ] }, { @@ -38586,10 +38622,10 @@ "kernelrelease": "4.15.0-1089-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb" ] }, { @@ -38598,9 +38634,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" ] }, { @@ -38608,9 +38644,9 @@ "kernelrelease": "4.15.0-1091-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" ] }, @@ -38619,10 +38655,10 @@ "kernelrelease": "4.15.0-1091-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" ] }, { @@ -38632,8 +38668,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" ] }, { @@ -38641,10 +38677,10 @@ "kernelrelease": "4.15.0-1092-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb" ] }, { @@ -38653,9 +38689,9 @@ "target": "ubuntu-aws-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" ] }, { @@ -38663,10 +38699,10 @@ "kernelrelease": "4.15.0-1093-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb" ] }, { @@ -38674,10 +38710,10 @@ "kernelrelease": "4.15.0-1093-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" ] }, { @@ -38686,9 +38722,9 @@ "target": "ubuntu-aws-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" ] }, { @@ -38696,9 +38732,9 @@ "kernelrelease": "4.15.0-1094-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" ] }, @@ -38707,10 +38743,10 @@ "kernelrelease": "4.15.0-1095-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" ] }, { @@ -38719,8 +38755,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb" ] }, @@ -38729,10 +38765,10 @@ "kernelrelease": "4.15.0-1096-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" ] }, { @@ -38740,9 +38776,9 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb" ] }, @@ -38751,8 +38787,8 @@ "kernelrelease": "4.15.0-1097-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" ] @@ -38762,8 +38798,8 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" ] @@ -38773,10 +38809,10 @@ "kernelrelease": "4.15.0-1098-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb" ] }, { @@ -38784,10 +38820,10 @@ "kernelrelease": "4.15.0-1098-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" ] }, { @@ -38795,10 +38831,10 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" ] }, { @@ -38806,10 +38842,10 @@ "kernelrelease": "4.15.0-1102-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" ] }, { @@ -38818,8 +38854,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" ] }, @@ -38828,10 +38864,10 @@ "kernelrelease": "4.15.0-1106-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb" ] }, { @@ -38839,10 +38875,10 @@ "kernelrelease": "4.15.0-1108-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" ] }, { @@ -38850,10 +38886,10 @@ "kernelrelease": "4.15.0-1109-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb" ] }, { @@ -38861,10 +38897,10 @@ "kernelrelease": "4.15.0-1111-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" ] }, { @@ -38872,10 +38908,10 @@ "kernelrelease": "4.15.0-1112-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" ] }, { @@ -38883,10 +38919,10 @@ "kernelrelease": "4.15.0-1113-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb" ] }, { @@ -38894,12 +38930,12 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb" ] }, { @@ -38907,12 +38943,12 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" ] }, { @@ -38920,12 +38956,12 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" ] }, { @@ -38933,12 +38969,12 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" ] }, { @@ -38946,12 +38982,12 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" ] }, { @@ -38960,11 +38996,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" ] }, { @@ -38972,12 +39008,12 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb" ] }, { @@ -38985,12 +39021,12 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb" ] }, { @@ -38998,12 +39034,12 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb" ] }, { @@ -39011,12 +39047,12 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb" ] }, { @@ -39024,12 +39060,12 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" ] }, { @@ -39037,12 +39073,12 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" ] }, { @@ -39050,11 +39086,11 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb" ] }, @@ -39063,12 +39099,12 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" ] }, { @@ -39076,12 +39112,12 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" ] }, { @@ -39089,11 +39125,11 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" ] }, @@ -39102,12 +39138,12 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb" ] }, { @@ -39115,12 +39151,12 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" ] }, { @@ -39128,12 +39164,12 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" ] }, { @@ -39142,11 +39178,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb" ] }, { @@ -39154,12 +39190,12 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" ] }, { @@ -39167,12 +39203,12 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" ] }, { @@ -39181,10 +39217,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" ] }, @@ -39193,12 +39229,12 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" ] }, { @@ -39206,12 +39242,12 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" ] }, { @@ -39219,11 +39255,11 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" ] }, @@ -39232,12 +39268,12 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" ] }, { @@ -39245,12 +39281,12 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb" ] }, { @@ -39258,12 +39294,12 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" ] }, { @@ -39271,9 +39307,9 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" @@ -39284,12 +39320,12 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" ] }, { @@ -39297,12 +39333,12 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" ] }, { @@ -39310,12 +39346,12 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb" ] }, { @@ -39323,12 +39359,12 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" ] }, { @@ -39336,12 +39372,12 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" ] }, { @@ -39349,12 +39385,12 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb" ] }, { @@ -39362,12 +39398,12 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb" ] }, { @@ -39375,12 +39411,12 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" ] }, { @@ -39389,11 +39425,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb" ] }, { @@ -39401,12 +39437,12 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb" ] }, { @@ -39416,10 +39452,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb" ] }, { @@ -39427,12 +39463,12 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" ] }, { @@ -39440,12 +39476,12 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" ] }, { @@ -39453,10 +39489,10 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" ] @@ -39466,12 +39502,12 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" ] }, { @@ -39480,11 +39516,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" ] }, { @@ -39493,11 +39529,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" ] }, { @@ -39505,12 +39541,12 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb" ] }, { @@ -39518,11 +39554,11 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, @@ -39531,12 +39567,12 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" ] }, { @@ -39544,12 +39580,12 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb" ] }, { @@ -39557,12 +39593,12 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb" ] }, { @@ -39570,11 +39606,11 @@ "kernelrelease": "4.15.0-96-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb" ] }, @@ -39583,12 +39619,12 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb" ] }, { @@ -39597,8 +39633,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" ] }, @@ -39607,9 +39643,9 @@ "kernelrelease": "4.4.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" ] }, @@ -39618,10 +39654,10 @@ "kernelrelease": "4.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb" ] }, { @@ -39629,12 +39665,12 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" ] }, { @@ -39642,10 +39678,10 @@ "kernelrelease": "4.4.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" ] }, { @@ -39653,10 +39689,10 @@ "kernelrelease": "4.4.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb" ] }, { @@ -39664,10 +39700,10 @@ "kernelrelease": "4.4.0-1013-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" ] }, { @@ -39676,9 +39712,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" ] }, { @@ -39686,10 +39722,10 @@ "kernelrelease": "4.4.0-1015-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" ] }, { @@ -39697,10 +39733,10 @@ "kernelrelease": "4.4.0-1016-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" ] }, { @@ -39708,10 +39744,10 @@ "kernelrelease": "4.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" ] }, { @@ -39719,9 +39755,9 @@ "kernelrelease": "4.4.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb" ] }, @@ -39730,10 +39766,10 @@ "kernelrelease": "4.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb" ] }, { @@ -39752,10 +39788,10 @@ "kernelrelease": "4.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" ] }, { @@ -39776,8 +39812,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb" ] }, { @@ -39785,10 +39821,10 @@ "kernelrelease": "4.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb" ] }, { @@ -39796,10 +39832,10 @@ "kernelrelease": "4.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" ] }, { @@ -39807,9 +39843,9 @@ "kernelrelease": "4.4.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb" ] }, @@ -39818,10 +39854,10 @@ "kernelrelease": "4.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb" ] }, { @@ -39829,10 +39865,10 @@ "kernelrelease": "4.4.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" ] }, { @@ -39840,10 +39876,10 @@ "kernelrelease": "4.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb" ] }, { @@ -39851,10 +39887,10 @@ "kernelrelease": "4.4.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" ] }, { @@ -39862,12 +39898,12 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" ] }, { @@ -39875,10 +39911,10 @@ "kernelrelease": "4.4.0-1030-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb" ] }, { @@ -39886,9 +39922,9 @@ "kernelrelease": "4.4.0-1031-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" ] }, @@ -39897,10 +39933,10 @@ "kernelrelease": "4.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" ] }, { @@ -39908,10 +39944,10 @@ "kernelrelease": "4.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb" ] }, { @@ -39920,9 +39956,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" ] }, { @@ -39930,10 +39966,10 @@ "kernelrelease": "4.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" ] }, { @@ -39941,10 +39977,10 @@ "kernelrelease": "4.4.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" ] }, { @@ -39953,8 +39989,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" ] }, @@ -39963,8 +39999,8 @@ "kernelrelease": "4.4.0-1037-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" ] @@ -39974,10 +40010,10 @@ "kernelrelease": "4.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" ] }, { @@ -39985,10 +40021,10 @@ "kernelrelease": "4.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb" ] }, { @@ -39996,10 +40032,10 @@ "kernelrelease": "4.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" ] }, { @@ -40007,12 +40043,12 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb" ] }, { @@ -40021,8 +40057,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" ] }, @@ -40031,10 +40067,10 @@ "kernelrelease": "4.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb" ] }, { @@ -40053,9 +40089,9 @@ "kernelrelease": "4.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb" ] }, @@ -40064,10 +40100,10 @@ "kernelrelease": "4.4.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" ] }, { @@ -40075,9 +40111,9 @@ "kernelrelease": "4.4.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb" ] }, @@ -40086,9 +40122,9 @@ "kernelrelease": "4.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb" ] }, @@ -40097,10 +40133,10 @@ "kernelrelease": "4.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" ] }, { @@ -40108,10 +40144,10 @@ "kernelrelease": "4.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" ] }, { @@ -40119,9 +40155,9 @@ "kernelrelease": "4.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" ] }, @@ -40130,10 +40166,10 @@ "kernelrelease": "4.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" ] }, { @@ -40141,10 +40177,10 @@ "kernelrelease": "4.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" ] }, { @@ -40152,10 +40188,10 @@ "kernelrelease": "4.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" ] }, { @@ -40164,9 +40200,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb" ] }, { @@ -40175,9 +40211,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb" ] }, { @@ -40185,10 +40221,10 @@ "kernelrelease": "4.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb" ] }, { @@ -40208,9 +40244,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" ] }, { @@ -40219,9 +40255,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb" ] }, { @@ -40229,10 +40265,10 @@ "kernelrelease": "4.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" ] }, { @@ -40240,10 +40276,10 @@ "kernelrelease": "4.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb" ] }, { @@ -40251,9 +40287,9 @@ "kernelrelease": "4.4.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb" ] }, @@ -40263,8 +40299,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" ] }, @@ -40274,9 +40310,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" ] }, { @@ -40285,9 +40321,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb" ] }, { @@ -40296,9 +40332,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" ] }, { @@ -40306,9 +40342,9 @@ "kernelrelease": "4.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" ] }, @@ -40318,9 +40354,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" ] }, { @@ -40329,8 +40365,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" ] }, @@ -40340,9 +40376,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb" ] }, { @@ -40351,9 +40387,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb" ] }, { @@ -40361,10 +40397,10 @@ "kernelrelease": "4.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" ] }, { @@ -40372,10 +40408,10 @@ "kernelrelease": "4.4.0-1066-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" ] }, { @@ -40384,8 +40420,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" ] }, @@ -40394,10 +40430,10 @@ "kernelrelease": "4.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb" ] }, { @@ -40405,10 +40441,10 @@ "kernelrelease": "4.4.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb" ] }, { @@ -40416,10 +40452,10 @@ "kernelrelease": "4.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb" ] }, { @@ -40427,10 +40463,10 @@ "kernelrelease": "4.4.0-1070-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" ] }, { @@ -40439,9 +40475,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" ] }, { @@ -40450,9 +40486,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb" ] }, { @@ -40460,9 +40496,9 @@ "kernelrelease": "4.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" ] }, @@ -40471,10 +40507,10 @@ "kernelrelease": "4.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" ] }, { @@ -40483,9 +40519,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" ] }, { @@ -40505,8 +40541,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" ] }, @@ -40515,10 +40551,10 @@ "kernelrelease": "4.4.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb" ] }, { @@ -40526,10 +40562,10 @@ "kernelrelease": "4.4.0-1078-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" ] }, { @@ -40548,9 +40584,9 @@ "kernelrelease": "4.4.0-1079-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb" ] }, @@ -40559,10 +40595,10 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb" ] @@ -40572,10 +40608,10 @@ "kernelrelease": "4.4.0-1080-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" ] }, { @@ -40583,9 +40619,9 @@ "kernelrelease": "4.4.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb" ] }, @@ -40595,9 +40631,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb" ] }, { @@ -40605,10 +40641,10 @@ "kernelrelease": "4.4.0-1084-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb" ] }, { @@ -40617,9 +40653,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" ] }, { @@ -40627,8 +40663,8 @@ "kernelrelease": "4.4.0-1085-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" ] @@ -40638,8 +40674,8 @@ "kernelrelease": "4.4.0-1085-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" ] @@ -40649,10 +40685,10 @@ "kernelrelease": "4.4.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb" ] }, { @@ -40660,10 +40696,10 @@ "kernelrelease": "4.4.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" ] }, { @@ -40671,8 +40707,8 @@ "kernelrelease": "4.4.0-1088-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb" ] @@ -40682,8 +40718,8 @@ "kernelrelease": "4.4.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" ] @@ -40693,10 +40729,10 @@ "kernelrelease": "4.4.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" ] }, { @@ -40704,12 +40740,12 @@ "kernelrelease": "4.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" ] }, { @@ -40717,9 +40753,9 @@ "kernelrelease": "4.4.0-1090-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" ] }, @@ -40728,10 +40764,10 @@ "kernelrelease": "4.4.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb" ] }, { @@ -40739,10 +40775,10 @@ "kernelrelease": "4.4.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb" ] }, { @@ -40750,10 +40786,10 @@ "kernelrelease": "4.4.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb" ] }, { @@ -40761,9 +40797,9 @@ "kernelrelease": "4.4.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb" ] }, @@ -40772,10 +40808,10 @@ "kernelrelease": "4.4.0-1093-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" ] }, { @@ -40783,10 +40819,10 @@ "kernelrelease": "4.4.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" ] }, { @@ -40805,10 +40841,10 @@ "kernelrelease": "4.4.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" ] }, { @@ -40816,10 +40852,10 @@ "kernelrelease": "4.4.0-1098-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" ] }, { @@ -40827,10 +40863,10 @@ "kernelrelease": "4.4.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb" ] }, { @@ -40838,10 +40874,10 @@ "kernelrelease": "4.4.0-1100-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" ] }, { @@ -40849,8 +40885,8 @@ "kernelrelease": "4.4.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" ] @@ -40860,10 +40896,10 @@ "kernelrelease": "4.4.0-1102-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" ] }, { @@ -40871,10 +40907,10 @@ "kernelrelease": "4.4.0-1104-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" ] }, { @@ -40882,10 +40918,10 @@ "kernelrelease": "4.4.0-1105-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" ] }, { @@ -40894,9 +40930,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" ] }, { @@ -40904,10 +40940,10 @@ "kernelrelease": "4.4.0-1107-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" ] }, { @@ -40915,9 +40951,9 @@ "kernelrelease": "4.4.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" ] }, @@ -40938,8 +40974,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" ] }, @@ -40948,9 +40984,9 @@ "kernelrelease": "4.4.0-1112-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" ] }, @@ -40960,9 +40996,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb" ] }, { @@ -40970,10 +41006,10 @@ "kernelrelease": "4.4.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" ] }, { @@ -40981,10 +41017,10 @@ "kernelrelease": "4.4.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb" ] }, { @@ -40993,9 +41029,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" ] }, { @@ -41003,10 +41039,10 @@ "kernelrelease": "4.4.0-1119-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" ] }, { @@ -41015,11 +41051,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb" ] }, { @@ -41027,10 +41063,10 @@ "kernelrelease": "4.4.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" ] }, { @@ -41038,10 +41074,10 @@ "kernelrelease": "4.4.0-1122-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" ] }, { @@ -41050,9 +41086,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb" ] }, { @@ -41060,10 +41096,10 @@ "kernelrelease": "4.4.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb" ] }, { @@ -41071,10 +41107,10 @@ "kernelrelease": "4.4.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" ] }, { @@ -41083,9 +41119,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb" ] }, { @@ -41105,9 +41141,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb" ] @@ -41117,12 +41153,12 @@ "kernelrelease": "4.4.0-119", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb" ] }, { @@ -41130,12 +41166,12 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" ] }, { @@ -41143,12 +41179,12 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb" ] }, { @@ -41156,12 +41192,12 @@ "kernelrelease": "4.4.0-127", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" ] }, { @@ -41169,12 +41205,12 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" ] }, { @@ -41182,12 +41218,12 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb" ] }, { @@ -41196,11 +41232,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" ] }, { @@ -41208,11 +41244,11 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb" ] }, @@ -41222,11 +41258,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb" ] }, { @@ -41234,12 +41270,12 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb" ] }, { @@ -41250,8 +41286,8 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" ] }, @@ -41260,12 +41296,12 @@ "kernelrelease": "4.4.0-141", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb" ] }, { @@ -41273,12 +41309,12 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb" ] }, { @@ -41288,10 +41324,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" ] }, { @@ -41299,12 +41335,12 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb" ] }, { @@ -41312,12 +41348,12 @@ "kernelrelease": "4.4.0-148", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" ] }, { @@ -41326,10 +41362,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" ] }, @@ -41338,11 +41374,11 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" ] }, @@ -41351,12 +41387,12 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" ] }, { @@ -41364,12 +41400,12 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb" ] }, { @@ -41377,12 +41413,12 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb" ] }, { @@ -41390,12 +41426,12 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" ] }, { @@ -41403,12 +41439,12 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" ] }, { @@ -41416,12 +41452,12 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" ] }, { @@ -41430,11 +41466,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" ] }, { @@ -41442,12 +41478,12 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb" ] }, { @@ -41456,11 +41492,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" ] }, { @@ -41468,12 +41504,12 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" ] }, { @@ -41481,12 +41517,12 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" ] }, { @@ -41494,12 +41530,12 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" ] }, { @@ -41507,12 +41543,12 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb" ] }, { @@ -41520,11 +41556,11 @@ "kernelrelease": "4.4.0-176", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb" ] }, @@ -41533,12 +41569,12 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" ] }, { @@ -41560,10 +41596,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb" ] }, @@ -41572,12 +41608,12 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb" ] }, { @@ -41585,12 +41621,12 @@ "kernelrelease": "4.4.0-185", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb" ] }, { @@ -41598,12 +41634,12 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" ] }, { @@ -41611,12 +41647,12 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" ] }, { @@ -41624,12 +41660,12 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb" ] }, { @@ -41638,11 +41674,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb" ] }, { @@ -41650,12 +41686,12 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb" ] }, { @@ -41663,12 +41699,12 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb" ] }, { @@ -41676,12 +41712,12 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb" ] }, { @@ -41689,12 +41725,12 @@ "kernelrelease": "4.4.0-198", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb" ] }, { @@ -41702,12 +41738,12 @@ "kernelrelease": "4.4.0-200", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb" ] }, { @@ -41716,11 +41752,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" ] }, { @@ -41728,12 +41764,12 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb" ] }, { @@ -41741,11 +41777,11 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb" ] }, @@ -41754,12 +41790,12 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" ] }, { @@ -41767,12 +41803,12 @@ "kernelrelease": "4.4.0-209", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" ] }, { @@ -41780,11 +41816,11 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" ] }, @@ -41793,10 +41829,10 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb" ] @@ -41806,12 +41842,12 @@ "kernelrelease": "4.4.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb" ] }, { @@ -41819,12 +41855,12 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb" ] }, { @@ -41832,12 +41868,12 @@ "kernelrelease": "4.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb" ] }, { @@ -41845,12 +41881,12 @@ "kernelrelease": "4.4.0-34", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" ] }, { @@ -41859,11 +41895,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" ] }, { @@ -41871,12 +41907,12 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" ] }, { @@ -41884,11 +41920,11 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb" ] }, @@ -41897,11 +41933,11 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" ] }, @@ -41912,10 +41948,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb" ] }, { @@ -41923,12 +41959,12 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" ] }, { @@ -41937,11 +41973,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb" ] }, { @@ -41949,12 +41985,12 @@ "kernelrelease": "4.4.0-57", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb" ] }, { @@ -41964,10 +42000,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb" ] }, { @@ -41976,11 +42012,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" ] }, { @@ -41988,12 +42024,12 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" ] }, { @@ -42001,12 +42037,12 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb" ] }, { @@ -42014,12 +42050,12 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" ] }, { @@ -42027,12 +42063,12 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb" ] }, { @@ -42040,12 +42076,12 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" ] }, { @@ -42054,11 +42090,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb" ] }, { @@ -42066,12 +42102,12 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" ] }, { @@ -42079,11 +42115,11 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb" ] }, @@ -42094,10 +42130,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" ] }, { @@ -42105,12 +42141,12 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb" ] }, { @@ -42118,12 +42154,12 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb" ] }, { @@ -42131,12 +42167,12 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb" ] }, { @@ -42144,12 +42180,12 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" ] }, { @@ -42158,11 +42194,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb" ] }, { @@ -42170,12 +42206,12 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb" ] }, { @@ -42185,10 +42221,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" ] }, { @@ -42196,12 +42232,12 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb" ] }, { @@ -42209,12 +42245,12 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb" ] }, { @@ -42222,12 +42258,12 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" ] }, { @@ -42235,12 +42271,12 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb" ] }, { @@ -42248,12 +42284,12 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb" ] }, { @@ -42262,11 +42298,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb" ] }, { @@ -42274,12 +42310,12 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" ] }, { @@ -42287,12 +42323,12 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb" ] }, { @@ -42301,11 +42337,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb" ] }, { @@ -42313,12 +42349,12 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" ] }, { @@ -42326,12 +42362,12 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" ] }, { @@ -42339,12 +42375,12 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb" ] }, { @@ -42352,12 +42388,12 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb" ] }, { @@ -42365,12 +42401,12 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb" ] }, { @@ -42378,12 +42414,12 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb" ] }, { @@ -42391,10 +42427,10 @@ "kernelrelease": "4.11.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" ] }, { @@ -42402,8 +42438,8 @@ "kernelrelease": "4.11.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" ] @@ -42414,9 +42450,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" ] }, { @@ -42424,9 +42460,9 @@ "kernelrelease": "4.11.0-1014-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb" ] }, @@ -42435,10 +42471,10 @@ "kernelrelease": "4.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb" ] }, { @@ -42446,10 +42482,10 @@ "kernelrelease": "4.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" ] }, { @@ -42457,10 +42493,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" ] }, { @@ -42469,9 +42505,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb" ] }, { @@ -42479,10 +42515,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" ] }, { @@ -42490,10 +42526,10 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb" ] }, { @@ -42501,10 +42537,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb" ] }, { @@ -42512,12 +42548,12 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb" ] }, { @@ -42525,12 +42561,12 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb" ] }, { @@ -42538,10 +42574,10 @@ "kernelrelease": "4.4.0-1033-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb" ] }, { @@ -42549,9 +42585,9 @@ "kernelrelease": "4.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" ] }, @@ -42571,10 +42607,10 @@ "kernelrelease": "4.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" ] }, { @@ -42583,9 +42619,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" ] }, { @@ -42593,10 +42629,10 @@ "kernelrelease": "4.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" ] }, { @@ -42604,10 +42640,10 @@ "kernelrelease": "4.4.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" ] }, { @@ -42615,10 +42651,10 @@ "kernelrelease": "4.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" ] }, { @@ -42626,10 +42662,10 @@ "kernelrelease": "4.4.0-1081-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" ] }, { @@ -42638,11 +42674,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb" ] }, { @@ -42651,11 +42687,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" ] }, { @@ -42663,12 +42699,12 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb" ] }, { @@ -42676,12 +42712,12 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" ] }, { @@ -42690,11 +42726,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" ] }, { @@ -42703,11 +42739,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" ] }, { @@ -42715,12 +42751,12 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb" ] }, { @@ -42728,12 +42764,12 @@ "kernelrelease": "4.8.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" ] }, { @@ -42741,12 +42777,12 @@ "kernelrelease": "4.8.0-44-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb" ] }, { @@ -42754,12 +42790,12 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" ] }, { @@ -42767,12 +42803,12 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" ] }, { @@ -42781,11 +42817,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb" ] } ], From 9c419c5f2c0eb09defabd056c58248598028d42f Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 8 Jun 2022 12:28:11 +0200 Subject: [PATCH 118/259] chore(ci): dropped github action because we will now use a prow job. Signed-off-by: Federico Di Pierro --- .github/workflows/update_kernels.yaml | 41 --------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/update_kernels.yaml diff --git a/.github/workflows/update_kernels.yaml b/.github/workflows/update_kernels.yaml deleted file mode 100644 index 0e6f87d..0000000 --- a/.github/workflows/update_kernels.yaml +++ /dev/null @@ -1,41 +0,0 @@ -name: Update list of kernels weekly - -on: - schedule: - - cron: '0 0 * * 0' # every sunday at midnight - workflow_dispatch: - -jobs: - crawler: - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - steps: - - name: Checkout crawler - uses: actions/checkout@v3 - - - name: Install deps - run: | - sudo apt-get update && sudo apt-get -y install bash gawk grep curl dpkg rpm2cpio git jq multipath-tools python3 python3-pip python3-lxml python3-requests python3-click sed fdisk wget docker - - - name: Setup py project - run: | - /usr/bin/pip install -e . - - - name: Run crawler for x86_64 - run: | - python __init__.py crawl --distro=* --out_fmt=driverkit > kernels/x86_64/list.json - - - name: Run crawler for aarch64 - run: | - python __init__.py crawl --distro=* --out_fmt=driverkit --arch=aarch64 > kernels/aarch64/list.json - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 - with: - signoff: true - base: main - branch: ci/update_kernels - commit-message: 'update(kernels): updated kernel json lists.' - title: '[CI] Update kernel lists' From a56628364497b8fe429e1166bedbead96ffc0c8f Mon Sep 17 00:00:00 2001 From: poiana <51138685+poiana@users.noreply.github.com> Date: Sun, 19 Jun 2022 00:12:35 +0000 Subject: [PATCH 119/259] update(kernels): update kernel json lists. Signed-off-by: poiana <51138685+poiana@users.noreply.github.com> --- kernels/aarch64/list.json | 4987 +++++----- kernels/x86_64/list.json | 18180 ++++++++++++++++++------------------ 2 files changed, 11795 insertions(+), 11372 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index c4fc6cc..9fe2739 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -3,346 +3,346 @@ "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.aarch64", + "kernelrelease": "4.14.248-189.473.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.aarch64", + "kernelrelease": "4.14.198-152.320.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.aarch64", + "kernelrelease": "4.14.133-113.105.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.aarch64", + "kernelrelease": "4.14.238-182.422.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.aarch64", + "kernelrelease": "4.14.106-97.85.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.aarch64", + "kernelrelease": "4.14.219-161.340.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.aarch64", + "kernelrelease": "4.14.275-207.503.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.aarch64", + "kernelrelease": "4.14.77-86.82.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.aarch64", + "kernelrelease": "4.14.121-109.96.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.aarch64", + "kernelrelease": "4.14.246-187.474.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.aarch64", + "kernelrelease": "4.14.203-156.332.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.aarch64", + "kernelrelease": "4.14.138-114.102.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.aarch64", + "kernelrelease": "4.14.268-205.500.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.aarch64", + "kernelrelease": "4.14.165-131.185.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.aarch64", + "kernelrelease": "4.14.88-88.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.aarch64", + "kernelrelease": "4.14.88-88.73.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.281-212.502.amzn2.aarch64", + "kernelrelease": "4.14.165-133.209.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/2603843a89547a5efb5c01783df4c019a28d484dd8221e92836d5377cee0d246/kernel-devel-4.14.281-212.502.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.aarch64", + "kernelrelease": "4.14.97-90.72.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.aarch64", + "kernelrelease": "4.14.114-105.126.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.aarch64", + "kernelrelease": "4.14.273-207.502.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.aarch64", + "kernelrelease": "4.14.152-124.171.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.aarch64", + "kernelrelease": "4.14.231-173.360.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.aarch64", + "kernelrelease": "4.14.177-139.253.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.aarch64", + "kernelrelease": "4.14.77-81.59.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.aarch64", + "kernelrelease": "4.14.114-103.97.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.aarch64", + "kernelrelease": "4.14.252-195.483.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.aarch64", + "kernelrelease": "4.14.262-200.489.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.aarch64", + "kernelrelease": "4.14.128-112.105.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.aarch64", + "kernelrelease": "4.14.146-119.123.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.aarch64", + "kernelrelease": "4.14.238-182.421.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.aarch64", + "kernelrelease": "4.14.252-195.481.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.aarch64", + "kernelrelease": "4.14.123-111.109.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.aarch64", + "kernelrelease": "4.14.109-99.92.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.aarch64", + "kernelrelease": "4.14.94-89.73.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.aarch64", + "kernelrelease": "4.14.225-168.357.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.aarch64", + "kernelrelease": "4.14.181-140.257.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.aarch64", + "kernelrelease": "4.14.219-164.354.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.aarch64", + "kernelrelease": "4.14.154-128.181.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.aarch64", + "kernelrelease": "4.14.104-95.84.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.aarch64", + "kernelrelease": "4.14.146-120.181.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.aarch64", + "kernelrelease": "4.14.193-149.317.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.aarch64", + "kernelrelease": "4.14.214-160.339.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.aarch64", + "kernelrelease": "4.14.225-169.362.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" ] }, { @@ -350,191 +350,191 @@ "kernelrelease": "4.14.173-137.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.aarch64", + "kernelrelease": "4.14.181-142.260.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.aarch64", + "kernelrelease": "4.14.256-197.484.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.aarch64", + "kernelrelease": "4.14.232-177.418.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.aarch64", + "kernelrelease": "4.14.171-136.231.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.aarch64", + "kernelrelease": "4.14.276-211.499.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.aarch64", + "kernelrelease": "4.14.200-155.322.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.aarch64", + "kernelrelease": "4.14.209-160.335.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.aarch64", + "kernelrelease": "4.14.243-185.433.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.aarch64", + "kernelrelease": "4.14.209-160.339.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.aarch64", + "kernelrelease": "4.14.101-91.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.aarch64", + "kernelrelease": "4.14.173-137.228.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.aarch64", + "kernelrelease": "4.14.77-80.57.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.aarch64", + "kernelrelease": "4.14.177-139.254.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.aarch64", + "kernelrelease": "4.14.133-113.112.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.aarch64", + "kernelrelease": "4.14.241-184.433.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.aarch64", + "kernelrelease": "4.14.143-118.123.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.aarch64", + "kernelrelease": "4.14.152-127.182.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.aarch64", + "kernelrelease": "4.14.158-129.185.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.aarch64", + "kernelrelease": "4.14.231-173.361.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.aarch64", + "kernelrelease": "4.14.232-176.381.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.aarch64", + "kernelrelease": "4.14.281-212.502.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/2603843a89547a5efb5c01783df4c019a28d484dd8221e92836d5377cee0d246/kernel-devel-4.14.281-212.502.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.aarch64", + "kernelrelease": "4.14.192-147.314.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.aarch64", + "kernelrelease": "4.14.186-146.268.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" ] }, { @@ -2539,11 +2539,11 @@ "kernelrelease": "5.18.2-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-arm64_5.18.2-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-arm64_5.18.2-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-arm64_5.18.2-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-arm64_5.18.2-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb" ] }, { @@ -2551,11 +2551,11 @@ "kernelrelease": "5.10.120-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-arm64_5.10.120-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb" ] }, { @@ -2563,9 +2563,9 @@ "kernelrelease": "5.16.12-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb" ] @@ -2575,11 +2575,11 @@ "kernelrelease": "5.10.113-1-arm64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" ] }, { @@ -2587,11 +2587,11 @@ "kernelrelease": "5.10.84-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb" ] }, { @@ -2599,11 +2599,11 @@ "kernelrelease": "5.10.106-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb" ] }, { @@ -2612,9 +2612,9 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb" ] }, @@ -2625,8 +2625,8 @@ "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb" ] }, { @@ -2640,15 +2640,27 @@ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.18.5-1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-arm64_5.18.5-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-arm64_5.18.5-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-arm64_5.18.5-1_arm64.deb" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb" ] }, { @@ -2656,8 +2668,8 @@ "kernelrelease": "4.9.228-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb" ] }, { @@ -2668,8 +2680,8 @@ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb" ] }, { @@ -2678,8 +2690,8 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb" ] }, @@ -2688,8 +2700,8 @@ "kernelrelease": "4.9.303-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb" ] }, { @@ -2697,10 +2709,10 @@ "kernelrelease": "4.19.232-1~deb9u1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb" ] } ], @@ -2710,8 +2722,8 @@ "kernelrelease": "4.15.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb" ] }, { @@ -2728,8 +2740,8 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb" ] }, { @@ -2737,8 +2749,8 @@ "kernelrelease": "4.15.0-1119-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb" ] }, { @@ -2746,8 +2758,8 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" ] }, { @@ -2755,8 +2767,8 @@ "kernelrelease": "4.15.0-1120-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" ] }, { @@ -2800,8 +2812,8 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb" ] }, { @@ -2809,17 +2821,8 @@ "kernelrelease": "4.15.0-1124-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-1125-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb" ] }, { @@ -2832,12 +2835,12 @@ ] }, { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "134", + "kernelrelease": "4.15.0-1125-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" ] }, { @@ -2845,8 +2848,17 @@ "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + ] + }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-snapdragon", + "target": "ubuntu-snapdragon", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" ] }, { @@ -2863,8 +2875,8 @@ "kernelrelease": "4.15.0-1129-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb" ] }, { @@ -2877,111 +2889,12 @@ ] }, { - "kernelversion": "175", - "kernelrelease": "4.15.0-167", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb" - ] - }, - { - "kernelversion": "176", - "kernelrelease": "4.15.0-168", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_arm64.deb" - ] - }, - { - "kernelversion": "177", - "kernelrelease": "4.15.0-169", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" - ] - }, - { - "kernelversion": "178", - "kernelrelease": "4.15.0-170", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_arm64.deb" - ] - }, - { - "kernelversion": "181", - "kernelrelease": "4.15.0-172", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_arm64.deb" - ] - }, - { - "kernelversion": "182", - "kernelrelease": "4.15.0-173", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" - ] - }, - { - "kernelversion": "183", - "kernelrelease": "4.15.0-174", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" - ] - }, - { - "kernelversion": "185", - "kernelrelease": "4.15.0-176", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb" - ] - }, - { - "kernelversion": "186", - "kernelrelease": "4.15.0-177", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb" - ] - }, - { - "kernelversion": "188", - "kernelrelease": "4.15.0-179", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_arm64.deb" - ] - }, - { - "kernelversion": "189", - "kernelrelease": "4.15.0-180", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb" - ] - }, - { - "kernelversion": "190", - "kernelrelease": "4.15.0-181", + "kernelversion": "199", + "kernelrelease": "4.15.0-188", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_arm64.deb" ] }, { @@ -2998,8 +2911,8 @@ "kernelrelease": "5.4.0-100-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" ] }, { @@ -3016,8 +2929,8 @@ "kernelrelease": "5.4.0-1058-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb" ] }, { @@ -3025,8 +2938,8 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb" ] }, { @@ -3034,8 +2947,8 @@ "kernelrelease": "5.4.0-1062-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" ] }, { @@ -3043,8 +2956,8 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" ] }, { @@ -3052,8 +2965,8 @@ "kernelrelease": "5.4.0-1064-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" ] }, { @@ -3088,8 +3001,8 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" ] }, { @@ -3133,8 +3046,8 @@ "kernelrelease": "5.4.0-1073-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb" ] }, { @@ -3142,8 +3055,8 @@ "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb" ] }, { @@ -3160,8 +3073,8 @@ "kernelrelease": "5.4.0-1075-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb" ] }, { @@ -3178,8 +3091,8 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb" ] }, { @@ -3241,8 +3154,8 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" ] }, { @@ -3250,8 +3163,8 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" ] }, { @@ -3268,26 +3181,26 @@ "kernelrelease": "4.15.0-1030-raspi2", "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1031-raspi2", - "target": "ubuntu-raspi2", + "kernelrelease": "4.15.0-1031-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1031-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1031-raspi2", + "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" ] }, { @@ -3304,8 +3217,8 @@ "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb" ] }, { @@ -3349,8 +3262,8 @@ "kernelrelease": "4.15.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" ] }, { @@ -3367,8 +3280,8 @@ "kernelrelease": "4.15.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { @@ -3385,8 +3298,8 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb" ] }, { @@ -3403,8 +3316,8 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" ] }, { @@ -3412,8 +3325,8 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" ] }, { @@ -3421,8 +3334,8 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" ] }, { @@ -3439,8 +3352,8 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb" ] }, { @@ -3457,8 +3370,8 @@ "kernelrelease": "4.15.0-1055-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" ] }, { @@ -3466,8 +3379,8 @@ "kernelrelease": "4.15.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" ] }, { @@ -3475,8 +3388,8 @@ "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb" ] }, { @@ -3484,8 +3397,8 @@ "kernelrelease": "4.15.0-1057-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" ] }, { @@ -3493,8 +3406,8 @@ "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" ] }, { @@ -3511,8 +3424,8 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" ] }, { @@ -3538,8 +3451,8 @@ "kernelrelease": "4.15.0-1062-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb" ] }, { @@ -3556,8 +3469,8 @@ "kernelrelease": "4.15.0-1064-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb" ] }, { @@ -3565,8 +3478,8 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb" ] }, { @@ -3574,8 +3487,8 @@ "kernelrelease": "4.15.0-1065-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb" ] }, { @@ -3583,8 +3496,8 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" ] }, { @@ -3610,8 +3523,8 @@ "kernelrelease": "4.15.0-1067-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb" ] }, { @@ -3628,8 +3541,8 @@ "kernelrelease": "4.15.0-1070-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb" ] }, { @@ -3637,8 +3550,8 @@ "kernelrelease": "4.15.0-1071-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb" ] }, { @@ -3655,8 +3568,8 @@ "kernelrelease": "4.15.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb" ] }, { @@ -3682,8 +3595,8 @@ "kernelrelease": "4.15.0-1076-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" ] }, { @@ -3691,8 +3604,8 @@ "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" ] }, { @@ -3700,8 +3613,8 @@ "kernelrelease": "4.15.0-1077-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb" ] }, { @@ -3709,8 +3622,8 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" ] }, { @@ -3736,8 +3649,8 @@ "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" ] }, { @@ -3754,8 +3667,8 @@ "kernelrelease": "4.15.0-1081-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb" ] }, { @@ -3763,8 +3676,8 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" ] }, { @@ -3817,8 +3730,8 @@ "kernelrelease": "4.15.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" ] }, { @@ -3826,8 +3739,8 @@ "kernelrelease": "4.15.0-1087-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb" ] }, { @@ -3844,8 +3757,8 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" ] }, { @@ -3853,8 +3766,8 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { @@ -3871,8 +3784,8 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb" ] }, { @@ -3880,8 +3793,8 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" ] }, { @@ -3898,8 +3811,8 @@ "kernelrelease": "4.15.0-1093-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb" ] }, { @@ -3916,8 +3829,8 @@ "kernelrelease": "4.15.0-1094-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb" ] }, { @@ -3943,8 +3856,8 @@ "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" ] }, { @@ -3961,8 +3874,8 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb" ] }, { @@ -3997,8 +3910,8 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { @@ -4006,8 +3919,8 @@ "kernelrelease": "4.15.0-1099-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb" ] }, { @@ -4033,8 +3946,8 @@ "kernelrelease": "4.15.0-1101-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb" ] }, { @@ -4042,8 +3955,8 @@ "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb" ] }, { @@ -4060,8 +3973,8 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb" ] }, { @@ -4087,8 +4000,8 @@ "kernelrelease": "4.15.0-1106-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb" ] }, { @@ -4096,8 +4009,8 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" ] }, { @@ -4105,8 +4018,8 @@ "kernelrelease": "4.15.0-1109-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb" ] }, { @@ -4114,8 +4027,8 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" ] }, { @@ -4123,8 +4036,8 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb" ] }, { @@ -4132,8 +4045,8 @@ "kernelrelease": "4.15.0-1110-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" ] }, { @@ -4141,8 +4054,8 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb" ] }, { @@ -4150,8 +4063,8 @@ "kernelrelease": "4.15.0-1111-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb" ] }, { @@ -4159,8 +4072,8 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" ] }, { @@ -4168,8 +4081,8 @@ "kernelrelease": "4.15.0-1112-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb" ] }, { @@ -4204,8 +4117,8 @@ "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb" ] }, { @@ -4258,8 +4171,8 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" ] }, { @@ -4267,26 +4180,26 @@ "kernelrelease": "4.15.0-1122-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb" ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1126-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" ] }, { @@ -4294,8 +4207,8 @@ "kernelrelease": "4.15.0-1130-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" ] }, { @@ -4312,8 +4225,17 @@ "kernelrelease": "4.15.0-1133-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_arm64.deb" + ] + }, + { + "kernelversion": "147", + "kernelrelease": "4.15.0-1136-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" ] }, { @@ -4321,8 +4243,8 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb" ] }, { @@ -4330,8 +4252,8 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" ] }, { @@ -4339,8 +4261,8 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" ] }, { @@ -4348,8 +4270,8 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb" ] }, { @@ -4357,8 +4279,8 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb" ] }, { @@ -4366,8 +4288,8 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" ] }, { @@ -4375,8 +4297,8 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" ] }, { @@ -4393,8 +4315,8 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" ] }, { @@ -4402,8 +4324,8 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb" ] }, { @@ -4411,8 +4333,8 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb" ] }, { @@ -4420,8 +4342,8 @@ "kernelrelease": "4.15.0-136", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb" ] }, { @@ -4483,8 +4405,8 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb" ] }, { @@ -4492,8 +4414,8 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, { @@ -4501,8 +4423,8 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" ] }, { @@ -4510,8 +4432,8 @@ "kernelrelease": "4.15.0-153", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" ] }, { @@ -4519,8 +4441,8 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" ] }, { @@ -4573,8 +4495,8 @@ "kernelrelease": "4.15.0-163", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb" ] }, { @@ -4586,6 +4508,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb" ] }, + { + "kernelversion": "175", + "kernelrelease": "4.15.0-167", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" + ] + }, + { + "kernelversion": "177", + "kernelrelease": "4.15.0-169", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb" + ] + }, { "kernelversion": "180", "kernelrelease": "4.15.0-171", @@ -4595,6 +4535,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_arm64.deb" ] }, + { + "kernelversion": "182", + "kernelrelease": "4.15.0-173", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" + ] + }, { "kernelversion": "184", "kernelrelease": "4.15.0-175", @@ -4604,6 +4553,33 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb" ] }, + { + "kernelversion": "185", + "kernelrelease": "4.15.0-176", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" + ] + }, + { + "kernelversion": "186", + "kernelrelease": "4.15.0-177", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb" + ] + }, + { + "kernelversion": "189", + "kernelrelease": "4.15.0-180", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_arm64.deb" + ] + }, { "kernelversion": "194", "kernelrelease": "4.15.0-184", @@ -4613,14 +4589,23 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_arm64.deb" ] }, + { + "kernelversion": "198", + "kernelrelease": "4.15.0-187", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb" + ] + }, { "kernelversion": "24", "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb" ] }, { @@ -4629,8 +4614,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" ] }, { @@ -4638,9 +4623,9 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb" ] }, { @@ -4648,9 +4633,9 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" ] }, { @@ -4668,9 +4653,9 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" ] }, { @@ -4678,9 +4663,9 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb" ] }, { @@ -4689,8 +4674,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb" ] }, { @@ -4698,9 +4683,9 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb" ] }, { @@ -4708,8 +4693,8 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb" ] }, @@ -4718,9 +4703,9 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb" ] }, { @@ -4728,9 +4713,9 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb" ] }, { @@ -4748,9 +4733,9 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb" ] }, { @@ -4758,9 +4743,9 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb" ] }, { @@ -4769,8 +4754,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" ] }, { @@ -4796,8 +4781,8 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" ] }, { @@ -4805,8 +4790,8 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb" ] }, { @@ -4814,8 +4799,8 @@ "kernelrelease": "4.15.0-55", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" ] }, { @@ -4823,8 +4808,8 @@ "kernelrelease": "4.15.0-58", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" ] }, { @@ -4859,8 +4844,8 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" ] }, { @@ -4868,8 +4853,8 @@ "kernelrelease": "4.15.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" ] }, { @@ -4904,8 +4889,8 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb" ] }, { @@ -4931,8 +4916,8 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" ] }, { @@ -4940,8 +4925,8 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb" ] }, { @@ -4959,8 +4944,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb" ] }, { @@ -4968,9 +4953,9 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb" ] }, { @@ -4978,9 +4963,9 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" ] }, { @@ -4988,8 +4973,8 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb" ] }, @@ -4998,9 +4983,9 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" ] }, { @@ -5008,9 +4993,9 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" ] }, { @@ -5018,9 +5003,9 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb" ] }, { @@ -5028,8 +5013,8 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb" ] }, @@ -5038,8 +5023,8 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb" ] }, @@ -5048,9 +5033,9 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" ] }, { @@ -5085,8 +5070,8 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" ] }, { @@ -5094,8 +5079,8 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" ] }, { @@ -5121,8 +5106,8 @@ "kernelrelease": "5.0.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb" ] }, { @@ -5130,8 +5115,8 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" ] }, { @@ -5148,8 +5133,8 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb" ] }, { @@ -5166,8 +5151,8 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb" ] }, { @@ -5184,8 +5169,8 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb" ] }, { @@ -5193,8 +5178,8 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" ] }, { @@ -5229,8 +5214,8 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb" ] }, { @@ -5238,8 +5223,8 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb" ] }, { @@ -5256,8 +5241,8 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" ] }, { @@ -5265,8 +5250,8 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb" ] }, { @@ -5292,8 +5277,8 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" ] }, { @@ -5301,8 +5286,8 @@ "kernelrelease": "5.3.0-1023-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb" ] }, { @@ -5319,8 +5304,8 @@ "kernelrelease": "5.3.0-1030-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -5328,8 +5313,8 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" ] }, { @@ -5382,8 +5367,8 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb" ] }, { @@ -5409,8 +5394,8 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" ] }, { @@ -5436,8 +5421,8 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" ] }, { @@ -5445,8 +5430,8 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" ] }, { @@ -5454,8 +5439,8 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" ] }, { @@ -5499,8 +5484,8 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" ] }, { @@ -5508,8 +5493,8 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb" ] }, { @@ -5517,8 +5502,8 @@ "kernelrelease": "5.4.0-1022-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { @@ -5535,8 +5520,8 @@ "kernelrelease": "5.4.0-1025-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { @@ -5553,8 +5538,8 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" ] }, { @@ -5562,8 +5547,8 @@ "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb" ] }, { @@ -5589,8 +5574,8 @@ "kernelrelease": "5.4.0-1037-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb" ] }, { @@ -5598,8 +5583,8 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb" ] }, { @@ -5607,8 +5592,8 @@ "kernelrelease": "5.4.0-1039-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { @@ -5616,8 +5601,8 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb" ] }, { @@ -5634,8 +5619,8 @@ "kernelrelease": "5.4.0-1043-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb" ] }, { @@ -5643,8 +5628,8 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" ] }, { @@ -5661,8 +5646,8 @@ "kernelrelease": "5.4.0-1047-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb" ] }, { @@ -5688,8 +5673,8 @@ "kernelrelease": "5.4.0-1049-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" ] }, { @@ -5706,8 +5691,8 @@ "kernelrelease": "5.4.0-1052-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb" ] }, { @@ -5715,8 +5700,8 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" ] }, { @@ -5724,8 +5709,8 @@ "kernelrelease": "5.4.0-1054-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" ] }, { @@ -5751,8 +5736,8 @@ "kernelrelease": "5.4.0-1055-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb" ] }, { @@ -5760,8 +5745,8 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" ] }, { @@ -5769,8 +5754,8 @@ "kernelrelease": "5.4.0-1056-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb" ] }, { @@ -5778,8 +5763,8 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb" ] }, { @@ -5787,8 +5772,8 @@ "kernelrelease": "5.4.0-1057-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb" ] }, { @@ -5796,8 +5781,8 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb" ] }, { @@ -5805,8 +5790,8 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { @@ -5823,8 +5808,8 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" ] }, { @@ -5850,8 +5835,8 @@ "kernelrelease": "5.4.0-1063-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" ] }, { @@ -5859,8 +5844,8 @@ "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" ] }, { @@ -5868,8 +5853,8 @@ "kernelrelease": "5.4.0-1065-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" ] }, { @@ -5913,8 +5898,8 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb" ] }, { @@ -5922,8 +5907,8 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb" ] }, { @@ -5958,8 +5943,8 @@ "kernelrelease": "5.4.0-1073-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb" ] }, { @@ -5971,13 +5956,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_arm64.deb" ] }, + { + "kernelversion": "82~18.04.1", + "kernelrelease": "5.4.0-1076-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_arm64.deb" + ] + }, { "kernelversion": "83~18.04.1", "kernelrelease": "5.4.0-1076-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb" ] }, { @@ -5985,8 +5979,17 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" + ] + }, + { + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" ] }, { @@ -5999,12 +6002,30 @@ ] }, { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gcp-5.4", + "kernelversion": "86~18.04.1", + "kernelrelease": "5.4.0-1078-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "87~18.04.1", + "kernelrelease": "5.4.0-1080-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" + ] + }, + { + "kernelversion": "87~18.04.1", + "kernelrelease": "5.4.0-1080-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_arm64.deb" ] }, { @@ -6021,8 +6042,17 @@ "kernelrelease": "5.4.0-1083-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "90~18.04.1", + "kernelrelease": "5.4.0-1085-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb" ] }, { @@ -6052,6 +6082,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_arm64.deb" ] }, + { + "kernelversion": "136~18.04.1", + "kernelrelease": "5.4.0-120-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_arm64.deb" + ] + }, { "kernelversion": "41~18.04.1", "kernelrelease": "5.4.0-37-hwe-5.4", @@ -6084,8 +6123,8 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" ] }, { @@ -6102,8 +6141,8 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" ] }, { @@ -6111,8 +6150,8 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" ] }, { @@ -6120,8 +6159,8 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" ] }, { @@ -6129,8 +6168,8 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" ] }, { @@ -6138,8 +6177,8 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb" ] }, { @@ -6147,8 +6186,8 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" ] }, { @@ -6156,8 +6195,8 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" ] }, { @@ -6174,8 +6213,8 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb" ] }, { @@ -6183,8 +6222,8 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb" ] }, { @@ -6192,8 +6231,8 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" ] }, { @@ -6210,8 +6249,8 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb" ] }, { @@ -6237,8 +6276,8 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" ] }, { @@ -6246,8 +6285,8 @@ "kernelrelease": "5.4.0-74-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb" ] }, { @@ -6264,8 +6303,8 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" ] }, { @@ -6273,8 +6312,8 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" ] }, { @@ -6282,8 +6321,8 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb" ] }, { @@ -6291,8 +6330,8 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" ] }, { @@ -6327,8 +6366,8 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" ] }, { @@ -6345,8 +6384,8 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" ] }, { @@ -6354,8 +6393,8 @@ "kernelrelease": "4.15.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" ] }, { @@ -6363,8 +6402,8 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb" ] }, { @@ -6372,8 +6411,8 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" ] }, { @@ -6381,9 +6420,9 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" ] }, { @@ -6391,9 +6430,9 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb" ] }, { @@ -6402,8 +6441,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb" ] }, { @@ -6411,8 +6450,8 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" ] }, { @@ -6420,8 +6459,8 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb" ] }, { @@ -6429,8 +6468,8 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" ] }, { @@ -6456,8 +6495,8 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" ] }, { @@ -6465,8 +6504,8 @@ "kernelrelease": "5.0.0-58-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" ] }, { @@ -6501,8 +6540,8 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" ] }, { @@ -6510,8 +6549,8 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] }, { @@ -6519,8 +6558,8 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" ] }, { @@ -6529,8 +6568,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb" ] }, { @@ -6538,8 +6577,8 @@ "kernelrelease": "5.15.0-1005-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { @@ -6565,38 +6604,18 @@ "kernelrelease": "5.15.0-1005-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-lowlatency", + "kernelversion": "36+22.10.1", + "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.15.0-28", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb" ] }, { @@ -6605,18 +6624,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" - ] - }, - { - "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_arm64.deb" ] }, { @@ -6639,20 +6648,20 @@ }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1004-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -6669,8 +6678,8 @@ "kernelrelease": "5.15.0-1006-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb" ] }, { @@ -6678,45 +6687,29 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "28", + "kernelrelease": "5.15.0-27", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "28", + "kernelrelease": "5.15.0-27-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb" ] }, { @@ -6724,8 +6717,8 @@ "kernelrelease": "5.11.0-1029-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -6733,8 +6726,8 @@ "kernelrelease": "5.11.0-1029-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -6746,64 +6739,14 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb" ] }, - { - "kernelversion": "44~20.04.2", - "kernelrelease": "5.11.0-40-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.11.0-41-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.11.0-42-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic-64k_5.11.0-42.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb" - ] - }, - { - "kernelversion": "47~20.04.2", - "kernelrelease": "5.11.0-43-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.11.0-60-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic-64k_5.11.0-60.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb" - ] - }, { "kernelversion": "61", "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb" ] }, { @@ -6811,8 +6754,8 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" ] }, { @@ -6820,8 +6763,8 @@ "kernelrelease": "5.13.0-1014-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" ] }, { @@ -6865,8 +6808,8 @@ "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb" ] }, { @@ -6892,8 +6835,8 @@ "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" ] }, { @@ -6907,20 +6850,20 @@ }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1028-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1028-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" ] }, { @@ -6928,9 +6871,9 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb" ] }, { @@ -6938,9 +6881,9 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb" ] }, { @@ -6948,9 +6891,9 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" ] }, { @@ -6958,9 +6901,9 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" ] }, { @@ -6968,8 +6911,8 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb" ] }, @@ -6979,8 +6922,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" ] }, { @@ -6998,9 +6941,9 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb" ] }, { @@ -7018,9 +6961,9 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" ] }, { @@ -7038,9 +6981,9 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb" ] }, { @@ -7049,8 +6992,18 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "59~20.04.1", + "kernelrelease": "5.13.0-52-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_arm64.deb" ] }, { @@ -7071,14 +7024,32 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_arm64.deb" ] }, + { + "kernelversion": "16~20.04.1", + "kernelrelease": "5.15.0-1013-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.15.0-1014-aws-5.15", + "target": "ubuntu-aws-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_arm64.deb" + ] + }, { "kernelversion": "24~20.04.3", "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb" ] }, { @@ -7086,9 +7057,9 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb" ] }, { @@ -7096,9 +7067,9 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb" ] }, { @@ -7107,161 +7078,8 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "5.4.0-100", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb" - ] - }, - { - "kernelversion": "115", - "kernelrelease": "5.4.0-102", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_arm64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1026-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1026-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.4.0-1027-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1027_5.4.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1027-bluefield_5.4.0-1027.30_arm64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.4.0-1028-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.4.0-1028-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.4.0-1031-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1031_5.4.0-1031.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1031-bluefield_5.4.0-1031.34_arm64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.4.0-1033-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1033_5.4.0-1033.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1033-bluefield_5.4.0-1033.36_arm64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.4.0-1033-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1034-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1034_5.4.0-1034.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1034-bluefield_5.4.0-1034.37_arm64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1034-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1036-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1036-bluefield_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1036_5.4.0-1036.39_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1036-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.4.0-1037-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1037-bluefield_5.4.0-1037.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" ] }, { @@ -7273,31 +7091,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1039_5.4.0-1039.43_all.deb" ] }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" - ] - }, { "kernelversion": "50", "kernelrelease": "5.4.0-1046-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb" ] }, { - "kernelversion": "119", - "kernelrelease": "5.4.0-105", - "target": "ubuntu-generic", + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" ] }, { @@ -7305,8 +7114,8 @@ "kernelrelease": "5.4.0-1051-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb" ] }, { @@ -7314,8 +7123,8 @@ "kernelrelease": "5.4.0-1052-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb" ] }, { @@ -7323,8 +7132,8 @@ "kernelrelease": "5.4.0-1053-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" ] }, { @@ -7332,8 +7141,8 @@ "kernelrelease": "5.4.0-1056-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb" ] }, { @@ -7341,8 +7150,8 @@ "kernelrelease": "5.4.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" ] }, { @@ -7354,15 +7163,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" ] }, - { - "kernelversion": "120", - "kernelrelease": "5.4.0-106", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_arm64.deb" - ] - }, { "kernelversion": "68", "kernelrelease": "5.4.0-1060-raspi", @@ -7386,8 +7186,8 @@ "kernelrelease": "5.4.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, { @@ -7395,8 +7195,8 @@ "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -7404,8 +7204,8 @@ "kernelrelease": "5.4.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" ] }, { @@ -7440,17 +7240,8 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "5.4.0-107", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" ] }, { @@ -7476,26 +7267,26 @@ "kernelrelease": "5.4.0-1071-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" ] }, { @@ -7518,29 +7309,29 @@ }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1073-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1073-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1074-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1074-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" ] }, { @@ -7554,20 +7345,11 @@ }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-aws", + "kernelrelease": "5.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" ] }, { @@ -7579,13 +7361,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb" ] }, + { + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" + ] + }, { "kernelversion": "78", "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb" ] }, { @@ -7606,15 +7397,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_arm64.deb" ] }, - { - "kernelversion": "122", - "kernelrelease": "5.4.0-108", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_arm64.deb" - ] - }, { "kernelversion": "83", "kernelrelease": "5.4.0-1080-azure", @@ -7625,75 +7407,12 @@ ] }, { - "kernelversion": "123", - "kernelrelease": "5.4.0-109", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "5.4.0-110", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "5.4.0-112", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_arm64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "5.4.0-113", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" - ] - }, - { - "kernelversion": "128", - "kernelrelease": "5.4.0-114", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "5.4.0-97", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" - ] - }, - { - "kernelversion": "111", - "kernelrelease": "5.4.0-98", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "5.4.0-99", + "kernelversion": "137", + "kernelrelease": "5.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb" ] }, { @@ -7702,8 +7421,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb" ] }, { @@ -7711,8 +7430,8 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb" ] }, { @@ -7729,44 +7448,44 @@ "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb" ] }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1017-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1019-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb" ] }, { @@ -7783,8 +7502,8 @@ "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" ] }, { @@ -7792,8 +7511,8 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" ] }, { @@ -7801,26 +7520,26 @@ "kernelrelease": "5.11.0-1021-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -7833,21 +7552,21 @@ ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -7860,12 +7579,21 @@ ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { @@ -7877,6 +7605,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb" ] }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + ] + }, { "kernelversion": "30~20.04.1", "kernelrelease": "5.11.0-1027-oracle-5.11", @@ -7886,13 +7623,31 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + ] + }, + { + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + ] + }, { "kernelversion": "31~20.04.2", "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb" ] }, { @@ -7900,9 +7655,9 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb" ] }, { @@ -7910,9 +7665,9 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb" ] }, { @@ -7930,9 +7685,9 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" ] }, { @@ -7940,29 +7695,59 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "41~20.04.2", + "kernelrelease": "5.11.0-37-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb" + ] + }, + { + "kernelversion": "42~20.04.1", + "kernelrelease": "5.11.0-38-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "44~20.04.2", + "kernelrelease": "5.11.0-40-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb" ] }, { - "kernelversion": "41~20.04.2", - "kernelrelease": "5.11.0-37-hwe-5.11", + "kernelversion": "45~20.04.1", + "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb" ] }, { - "kernelversion": "42~20.04.1", - "kernelrelease": "5.11.0-38-hwe-5.11", + "kernelversion": "47~20.04.2", + "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb" ] }, { @@ -7970,9 +7755,9 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb" ] }, { @@ -7980,9 +7765,9 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb" ] }, { @@ -7990,8 +7775,8 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" ] }, { @@ -7999,8 +7784,8 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" ] }, { @@ -8017,8 +7802,8 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" ] }, { @@ -8026,8 +7811,8 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" ] }, { @@ -8035,8 +7820,8 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" ] }, { @@ -8062,8 +7847,8 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" ] }, { @@ -8071,8 +7856,8 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb" ] }, { @@ -8098,8 +7883,8 @@ "kernelrelease": "5.13.0-1022-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" ] }, { @@ -8134,8 +7919,8 @@ "kernelrelease": "5.13.0-1027-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" ] }, { @@ -8152,8 +7937,8 @@ "kernelrelease": "5.13.0-1029-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" ] }, { @@ -8161,8 +7946,8 @@ "kernelrelease": "5.13.0-1029-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_arm64.deb" ] }, { @@ -8170,8 +7955,26 @@ "kernelrelease": "5.13.0-1030-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + ] + }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1031-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "37~20.04.1", + "kernelrelease": "5.13.0-1031-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb" ] }, { @@ -8192,14 +7995,23 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_arm64.deb" ] }, + { + "kernelversion": "43~20.04.1", + "kernelrelease": "5.13.0-1036-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_arm64.deb" + ] + }, { "kernelversion": "23~20.04.2", "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" ] }, { @@ -8208,8 +8020,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb" ] }, { @@ -8227,8 +8039,8 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" ] }, @@ -8237,9 +8049,9 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" ] }, { @@ -8247,9 +8059,19 @@ "kernelrelease": "5.13.0-48-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "58~20.04.1", + "kernelrelease": "5.13.0-51-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic-64k_5.13.0-51.58~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_arm64.deb" ] }, { @@ -8266,8 +8088,8 @@ "kernelrelease": "5.15.0-1007-oracle-5.15", "target": "ubuntu-oracle-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_arm64.deb" ] }, { @@ -8284,9 +8106,9 @@ "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb" ] }, { @@ -8294,9 +8116,18 @@ "kernelrelease": "5.15.0-33-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "113", + "kernelrelease": "5.4.0-100", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb" ] }, { @@ -8304,8 +8135,8 @@ "kernelrelease": "5.4.0-1011-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb" ] }, { @@ -8322,8 +8153,8 @@ "kernelrelease": "5.4.0-1011-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb" ] }, { @@ -8340,8 +8171,8 @@ "kernelrelease": "5.4.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" ] }, { @@ -8349,8 +8180,8 @@ "kernelrelease": "5.4.0-1013-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb" ] }, { @@ -8358,26 +8189,26 @@ "kernelrelease": "5.4.0-1013-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1015-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { @@ -8412,8 +8243,8 @@ "kernelrelease": "5.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb" ] }, { @@ -8430,8 +8261,8 @@ "kernelrelease": "5.4.0-1019-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1019_5.4.0-1019.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1019_5.4.0-1019.22_all.deb" ] }, { @@ -8448,8 +8279,8 @@ "kernelrelease": "5.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb" ] }, { @@ -8457,8 +8288,8 @@ "kernelrelease": "5.4.0-1020-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" ] }, { @@ -8472,20 +8303,20 @@ }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1021-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1021-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1021-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1021-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb" ] }, { @@ -8511,8 +8342,8 @@ "kernelrelease": "5.4.0-1022-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb" ] }, { @@ -8520,8 +8351,8 @@ "kernelrelease": "5.4.0-1023-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb" ] }, { @@ -8529,8 +8360,8 @@ "kernelrelease": "5.4.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -8538,8 +8369,17 @@ "kernelrelease": "5.4.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.4.0-1025-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" ] }, { @@ -8552,12 +8392,21 @@ ] }, { - "kernelversion": "28", - "kernelrelease": "5.4.0-1025-raspi", + "kernelversion": "29", + "kernelrelease": "5.4.0-1026-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1026-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb" ] }, { @@ -8565,8 +8414,26 @@ "kernelrelease": "5.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.4.0-1028-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.4.0-1028-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb" ] }, { @@ -8592,8 +8459,8 @@ "kernelrelease": "5.4.0-1030-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb" ] }, { @@ -8601,8 +8468,8 @@ "kernelrelease": "5.4.0-1030-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb" ] }, { @@ -8632,6 +8499,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" ] }, + { + "kernelversion": "36", + "kernelrelease": "5.4.0-1033-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" + ] + }, { "kernelversion": "35", "kernelrelease": "5.4.0-1034-aws", @@ -8641,13 +8517,58 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1034-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" + ] + }, { "kernelversion": "37", "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" + ] + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb" + ] + }, + { + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1036-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.4.0-1036-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1036-bluefield_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1036_5.4.0-1036.39_all.deb" ] }, { @@ -8655,8 +8576,8 @@ "kernelrelease": "5.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" ] }, { @@ -8682,8 +8603,8 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { @@ -8700,8 +8621,8 @@ "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb" ] }, { @@ -8709,8 +8630,8 @@ "kernelrelease": "5.4.0-1041-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb" ] }, { @@ -8727,8 +8648,8 @@ "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { @@ -8745,8 +8666,8 @@ "kernelrelease": "5.4.0-1044-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb" ] }, { @@ -8754,26 +8675,26 @@ "kernelrelease": "5.4.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1045-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1045-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1045-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1045-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb" ] }, { @@ -8781,8 +8702,8 @@ "kernelrelease": "5.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb" ] }, { @@ -8817,8 +8738,8 @@ "kernelrelease": "5.4.0-1048-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" ] }, { @@ -8826,8 +8747,17 @@ "kernelrelease": "5.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb" + ] + }, + { + "kernelversion": "119", + "kernelrelease": "5.4.0-105", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" ] }, { @@ -8844,8 +8774,8 @@ "kernelrelease": "5.4.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb" ] }, { @@ -8898,8 +8828,8 @@ "kernelrelease": "5.4.0-1055-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" ] }, { @@ -8907,8 +8837,8 @@ "kernelrelease": "5.4.0-1055-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb" ] }, { @@ -8916,8 +8846,8 @@ "kernelrelease": "5.4.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" ] }, { @@ -8943,8 +8873,8 @@ "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { @@ -8952,8 +8882,8 @@ "kernelrelease": "5.4.0-1058-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb" ] }, { @@ -8997,8 +8927,8 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -9015,8 +8945,8 @@ "kernelrelease": "5.4.0-1062-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb" ] }, { @@ -9024,8 +8954,8 @@ "kernelrelease": "5.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { @@ -9033,8 +8963,8 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb" ] }, { @@ -9042,8 +8972,8 @@ "kernelrelease": "5.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb" ] }, { @@ -9051,8 +8981,8 @@ "kernelrelease": "5.4.0-1065-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1065_5.4.0-1065.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1065-raspi_5.4.0-1065.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1065-raspi_5.4.0-1065.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1065_5.4.0-1065.75_arm64.deb" ] }, { @@ -9060,8 +8990,8 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb" ] }, { @@ -9078,8 +9008,26 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + ] + }, + { + "kernelversion": "121", + "kernelrelease": "5.4.0-107", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" ] }, { @@ -9087,8 +9035,8 @@ "kernelrelease": "5.4.0-1072-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" ] }, { @@ -9101,21 +9049,21 @@ ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", + "kernelversion": "79", + "kernelrelease": "5.4.0-1073-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1073-oracle", - "target": "ubuntu-oracle", + "kernelversion": "82", + "kernelrelease": "5.4.0-1076-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_arm64.deb" ] }, { @@ -9132,35 +9080,98 @@ "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb" + ] + }, + { + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb" + ] + }, + { + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb" + ] + }, + { + "kernelversion": "86", + "kernelrelease": "5.4.0-1078-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb" + ] + }, + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1080-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_arm64.deb" + ] + }, + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1080-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" + ] + }, + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1083-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_arm64.deb" + ] + }, + { + "kernelversion": "90", + "kernelrelease": "5.4.0-1085-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_arm64.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gcp", - "target": "ubuntu-gcp", + "kernelversion": "123", + "kernelrelease": "5.4.0-109", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-aws", - "target": "ubuntu-aws", + "kernelversion": "124", + "kernelrelease": "5.4.0-110", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" ] }, { - "kernelversion": "87", - "kernelrelease": "5.4.0-1083-azure", - "target": "ubuntu-azure", + "kernelversion": "127", + "kernelrelease": "5.4.0-113", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" ] }, { @@ -9172,13 +9183,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb" ] }, + { + "kernelversion": "136", + "kernelrelease": "5.4.0-120", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_arm64.deb" + ] + }, { "kernelversion": "32", "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" ] }, { @@ -9240,8 +9260,8 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" ] }, { @@ -9267,8 +9287,8 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb" ] }, { @@ -9321,8 +9341,8 @@ "kernelrelease": "5.4.0-60", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" ] }, { @@ -9375,8 +9395,8 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb" ] }, { @@ -9411,8 +9431,8 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" ] }, { @@ -9420,8 +9440,8 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb" ] }, { @@ -9465,8 +9485,8 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" ] }, { @@ -9474,8 +9494,8 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" ] }, { @@ -9514,6 +9534,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb" ] }, + { + "kernelversion": "110", + "kernelrelease": "5.4.0-97", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" + ] + }, + { + "kernelversion": "112", + "kernelrelease": "5.4.0-99", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" + ] + }, { "kernelversion": "32~20.04.2", "kernelrelease": "5.8.0-1031-oracle-5.8", @@ -9528,8 +9566,8 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb" ] }, { @@ -9546,8 +9584,8 @@ "kernelrelease": "5.8.0-1037-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb" ] }, { @@ -9573,8 +9611,8 @@ "kernelrelease": "5.8.0-1041-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb" ] }, { @@ -9592,8 +9630,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb" ] }, { @@ -9611,9 +9649,9 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb" ] }, { @@ -9621,9 +9659,9 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" ] }, { @@ -9632,8 +9670,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb" ] }, { @@ -9641,9 +9679,9 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb" ] }, { @@ -9651,9 +9689,9 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" ] }, { @@ -9661,8 +9699,8 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" ] }, @@ -9681,9 +9719,9 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb" ] }, { @@ -9691,8 +9729,8 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" ] }, @@ -9701,9 +9739,9 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb" ] }, { @@ -9711,9 +9749,9 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb" ] }, { @@ -9722,8 +9760,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" ] }, { @@ -9732,8 +9770,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb" ] }, { @@ -9759,8 +9797,8 @@ "kernelrelease": "5.4.0-1049-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, { @@ -9768,8 +9806,8 @@ "kernelrelease": "5.4.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" ] }, { @@ -9786,8 +9824,8 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" ] }, { @@ -9796,8 +9834,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" ] }, { @@ -9805,8 +9843,8 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" ] }, @@ -9815,9 +9853,9 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" ] }, { @@ -9826,8 +9864,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb" ] }, { @@ -9835,9 +9873,9 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb" ] }, { @@ -9854,8 +9892,8 @@ "kernelrelease": "5.4.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { @@ -9872,8 +9910,8 @@ "kernelrelease": "5.11.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb" ] }, { @@ -9896,38 +9934,38 @@ }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.11.0-1027-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.11.0-1027-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb" ] }, { @@ -9935,9 +9973,9 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" ] }, { @@ -9945,8 +9983,8 @@ "kernelrelease": "5.11.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" ] }, { @@ -9964,8 +10002,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb" ] }, { @@ -9979,20 +10017,20 @@ }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1010-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb" ] }, { @@ -10000,8 +10038,8 @@ "kernelrelease": "5.13.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, { @@ -10009,8 +10047,8 @@ "kernelrelease": "5.13.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" ] }, { @@ -10018,8 +10056,8 @@ "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb" ] }, { @@ -10027,8 +10065,8 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb" ] }, { @@ -10036,17 +10074,8 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" ] }, { @@ -10063,8 +10092,17 @@ "kernelrelease": "5.13.0-1017-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb" ] }, { @@ -10072,8 +10110,8 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" ] }, { @@ -10085,22 +10123,31 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1019-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + ] + }, { "kernelversion": "21", "kernelrelease": "5.13.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-1019-aws", + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, { @@ -10122,12 +10169,12 @@ ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-aws", + "kernelversion": "23", + "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" ] }, { @@ -10139,40 +10186,31 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb" ] }, - { - "kernelversion": "23", - "kernelrelease": "5.13.0-1021-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" - ] - }, { "kernelversion": "27", "kernelrelease": "5.13.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1022-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1022-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb" ] }, { @@ -10189,8 +10227,8 @@ "kernelrelease": "5.13.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_arm64.deb" ] }, { @@ -10198,8 +10236,8 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb" ] }, { @@ -10216,8 +10254,8 @@ "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb" ] }, { @@ -10225,8 +10263,8 @@ "kernelrelease": "5.13.0-1024-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" ] }, { @@ -10243,26 +10281,26 @@ "kernelrelease": "5.13.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1025-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" ] }, { @@ -10279,8 +10317,8 @@ "kernelrelease": "5.13.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb" ] }, { @@ -10288,8 +10326,8 @@ "kernelrelease": "5.13.0-1026-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1026-raspi_5.13.0-1026.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1026_5.13.0-1026.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1026_5.13.0-1026.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1026-raspi_5.13.0-1026.28_arm64.deb" ] }, { @@ -10306,26 +10344,26 @@ "kernelrelease": "5.13.0-1027-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1028-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_arm64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] }, { @@ -10342,138 +10380,18 @@ "kernelrelease": "5.13.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.13.0-28", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.13.0-29", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.13.0-30", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.13.0-32", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_arm64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.13.0-36", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41_arm64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.13.0-37", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.13.0-38", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-38-generic-64k_5.13.0-38.43_arm64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.13.0-40", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.13.0-41", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "5.13.0-42", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42-generic-64k_5.13.0-42.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "5.13.0-43", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48_arm64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.13.0-44", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.13.0-45", + "kernelversion": "59", + "kernelrelease": "5.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic-64k_5.13.0-45.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_arm64.deb" ] }, { @@ -10481,17 +10399,8 @@ "kernelrelease": "5.13.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { @@ -10504,12 +10413,12 @@ ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-raspi", - "target": "ubuntu-raspi", + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" ] }, { @@ -10517,8 +10426,17 @@ "kernelrelease": "5.13.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb" ] }, { @@ -10535,8 +10453,8 @@ "kernelrelease": "5.13.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb" ] }, { @@ -10562,8 +10480,8 @@ "kernelrelease": "5.13.0-1012-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb" ] }, { @@ -10571,8 +10489,8 @@ "kernelrelease": "5.13.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb" ] }, { @@ -10580,8 +10498,8 @@ "kernelrelease": "5.13.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" ] }, { @@ -10598,8 +10516,8 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" ] }, { @@ -10607,8 +10525,8 @@ "kernelrelease": "5.13.0-1015-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb" ] }, { @@ -10634,8 +10552,8 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb" ] }, { @@ -10652,8 +10570,8 @@ "kernelrelease": "5.13.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb" ] }, { @@ -10679,8 +10597,26 @@ "kernelrelease": "5.13.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_arm64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.13.0-1031-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb" + ] + }, + { + "kernelversion": "37", + "kernelrelease": "5.13.0-1031-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb" ] }, { @@ -10688,8 +10624,8 @@ "kernelrelease": "5.13.0-1031-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1031-raspi_5.13.0-1031.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1031_5.13.0-1031.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1031_5.13.0-1031.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1031-raspi_5.13.0-1031.34_arm64.deb" ] }, { @@ -10697,8 +10633,17 @@ "kernelrelease": "5.13.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.13.0-1036-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_arm64.deb" ] }, { @@ -10706,9 +10651,9 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb" ] }, { @@ -10716,9 +10661,9 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb" ] }, { @@ -10727,8 +10672,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb" ] }, { @@ -10737,8 +10682,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb" ] }, { @@ -10751,14 +10696,44 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" ] }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.13.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb" + ] + }, { "kernelversion": "40", "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.13.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb" ] }, { @@ -10766,9 +10741,39 @@ "kernelrelease": "5.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.13.0-40", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "5.13.0-41", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.13.0-44", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb" ] }, { @@ -10776,18 +10781,28 @@ "kernelrelease": "5.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54_arm64.deb" ] }, + { + "kernelversion": "58", + "kernelrelease": "5.13.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-51-generic-64k_5.13.0-51.58_arm64.deb" + ] + }, { "kernelversion": "30", "kernelrelease": "5.13.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_arm64.deb" ] }, { @@ -10804,8 +10819,8 @@ "kernelrelease": "5.13.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_arm64.deb" ] }, { @@ -10813,9 +10828,9 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb" ] }, { @@ -10851,8 +10866,8 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb" ] }, @@ -10874,24 +10889,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb" ] }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1006-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1006-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" - ] - }, { "kernelversion": "7", "kernelrelease": "5.15.0-1006-azure", @@ -10906,8 +10903,17 @@ "kernelrelease": "5.15.0-1006-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb" + ] + }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1006-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { @@ -10915,8 +10921,8 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb" ] }, { @@ -10924,36 +10930,36 @@ "kernelrelease": "5.15.0-1007-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-gke", - "target": "ubuntu-gke", + "kernelversion": "16", + "kernelrelease": "5.15.0-1013-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_arm64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", + "kernelversion": "18", + "kernelrelease": "5.15.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.15.0-29", + "kernelversion": "31", + "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic-64k_5.15.0-29.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { @@ -10966,36 +10972,16 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb" ] }, - { - "kernelversion": "31", - "kernelrelease": "5.15.0-30", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" - ] - }, { "kernelversion": "33", "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency-64k_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb" ] }, - { - "kernelversion": "33", - "kernelrelease": "5.15.0-32", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33_arm64.deb" - ] - }, { "kernelversion": "34", "kernelrelease": "5.15.0-33", @@ -11011,29 +10997,47 @@ "kernelrelease": "5.15.0-33-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.15.0-35-lowlatency", + "kernelversion": "43", + "kernelrelease": "5.15.0-40", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic-64k_5.15.0-40.43_arm64.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.15.0-40-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency-64k_5.15.0-40.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb" ] }, { @@ -11050,8 +11054,8 @@ "kernelrelease": "5.15.0-1008-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb" ] }, { @@ -11068,8 +11072,26 @@ "kernelrelease": "5.15.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_arm64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.15.0-1010-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_arm64.deb" + ] + }, + { + "kernelversion": "13", + "kernelrelease": "5.15.0-1010-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_arm64.deb" ] }, { @@ -11077,8 +11099,17 @@ "kernelrelease": "5.15.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.15.0-1011-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_arm64.deb" ] }, { @@ -11090,14 +11121,32 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1011_5.15.0-1011.13_arm64.deb" ] }, + { + "kernelversion": "15", + "kernelrelease": "5.15.0-1012-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_arm64.deb" + ] + }, + { + "kernelversion": "17", + "kernelrelease": "5.15.0-1013-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_arm64.deb" + ] + }, { "kernelversion": "39", "kernelrelease": "5.15.0-37-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb" ] }, { @@ -11105,11 +11154,31 @@ "kernelrelease": "5.15.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb" ] }, + { + "kernelversion": "42", + "kernelrelease": "5.15.0-39-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency-64k_5.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.15.0-39", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic-64k_5.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_arm64.deb" + ] + }, { "kernelversion": "9", "kernelrelease": "5.15.0-1006-gcp", @@ -11133,8 +11202,8 @@ "kernelrelease": "5.15.0-1008-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" ] }, { @@ -11146,6 +11215,26 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" ] }, + { + "kernelversion": "36", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb" + ] + }, { "kernelversion": "4", "kernelrelease": "5.15.0-1002-oracle", @@ -11160,8 +11249,8 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb" ] }, { @@ -11178,9 +11267,9 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" ] }, { @@ -11197,8 +11286,8 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb" ] }, { @@ -11206,8 +11295,8 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" ] }, { @@ -11215,8 +11304,8 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" ] }, { @@ -11242,8 +11331,8 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" ] }, { @@ -11251,8 +11340,8 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb" ] }, { @@ -11269,8 +11358,8 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb" ] }, { @@ -11296,8 +11385,8 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb" ] }, { @@ -11323,8 +11412,8 @@ "kernelrelease": "3.13.0-123", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" ] }, { @@ -11368,8 +11457,8 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb" ] }, { @@ -11386,8 +11475,8 @@ "kernelrelease": "3.13.0-135", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_arm64.deb" ] }, { @@ -11422,8 +11511,8 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb" ] }, { @@ -11431,8 +11520,8 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb" ] }, { @@ -11440,8 +11529,8 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb" ] }, { @@ -11503,8 +11592,8 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" ] }, { @@ -11512,8 +11601,8 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" ] }, { @@ -11521,8 +11610,8 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb" ] }, { @@ -11539,8 +11628,8 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" ] }, { @@ -11548,8 +11637,8 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb" ] }, { @@ -11557,8 +11646,8 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb" ] }, { @@ -11566,8 +11655,8 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" ] }, { @@ -11575,8 +11664,8 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" ] }, { @@ -11584,8 +11673,8 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" ] }, { @@ -11593,8 +11682,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb" ] }, { @@ -11602,8 +11691,8 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb" ] }, { @@ -11611,8 +11700,8 @@ "kernelrelease": "3.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb" ] }, { @@ -11620,8 +11709,8 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb" ] }, { @@ -11629,8 +11718,8 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb" ] }, { @@ -11665,8 +11754,8 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb" ] }, { @@ -11692,8 +11781,8 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb" ] }, { @@ -11701,8 +11790,8 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" ] }, { @@ -11728,8 +11817,8 @@ "kernelrelease": "3.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_arm64.deb" ] }, { @@ -11746,8 +11835,8 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, { @@ -11755,8 +11844,8 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" ] }, { @@ -11764,8 +11853,8 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" ] }, { @@ -11773,8 +11862,8 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" ] }, { @@ -11782,8 +11871,8 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" ] }, { @@ -11845,8 +11934,8 @@ "kernelrelease": "3.13.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb" ] }, { @@ -11863,8 +11952,8 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" ] }, { @@ -11872,8 +11961,8 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" ] }, { @@ -11881,8 +11970,8 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" ] }, { @@ -11944,8 +12033,8 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" ] }, { @@ -11980,8 +12069,8 @@ "kernelrelease": "3.13.0-87", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" ] }, { @@ -11989,8 +12078,8 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" ] }, { @@ -11998,8 +12087,8 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" ] }, { @@ -12007,8 +12096,8 @@ "kernelrelease": "3.13.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" ] }, { @@ -12016,8 +12105,8 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb" ] }, { @@ -12025,8 +12114,8 @@ "kernelrelease": "3.13.0-95", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb" ] }, { @@ -12034,8 +12123,8 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" ] }, { @@ -12043,8 +12132,8 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb" ] }, { @@ -12061,8 +12150,8 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" ] }, { @@ -12070,8 +12159,8 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" ] }, { @@ -12079,8 +12168,8 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb" ] }, { @@ -12097,8 +12186,8 @@ "kernelrelease": "3.16.0-33-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb" ] }, { @@ -12106,8 +12195,8 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb" ] }, { @@ -12124,8 +12213,8 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb" ] }, { @@ -12133,8 +12222,8 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb" ] }, { @@ -12142,8 +12231,8 @@ "kernelrelease": "3.16.0-39-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb" ] }, { @@ -12169,8 +12258,8 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb" ] }, { @@ -12187,8 +12276,8 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb" ] }, { @@ -12196,8 +12285,8 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb" ] }, { @@ -12232,8 +12321,8 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" ] }, { @@ -12241,8 +12330,8 @@ "kernelrelease": "3.16.0-53-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb" ] }, { @@ -12250,8 +12339,8 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" ] }, { @@ -12259,8 +12348,8 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb" ] }, { @@ -12277,8 +12366,8 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" ] }, { @@ -12286,8 +12375,8 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb" ] }, { @@ -12322,8 +12411,8 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb" ] }, { @@ -12358,8 +12447,8 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" ] }, { @@ -12367,8 +12456,8 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb" ] }, { @@ -12376,8 +12465,8 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb" ] }, { @@ -12385,8 +12474,8 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" ] }, { @@ -12403,8 +12492,8 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" ] }, { @@ -12448,8 +12537,8 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" ] }, { @@ -12457,8 +12546,8 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb" ] }, { @@ -12475,8 +12564,8 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" ] }, { @@ -12493,8 +12582,8 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb" ] }, { @@ -12502,8 +12591,8 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" ] }, { @@ -12511,8 +12600,8 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb" ] }, { @@ -12529,8 +12618,8 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" ] }, { @@ -12556,8 +12645,8 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" ] }, { @@ -12565,8 +12654,8 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" ] }, { @@ -12574,8 +12663,8 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" ] }, { @@ -12583,8 +12672,8 @@ "kernelrelease": "3.19.0-65-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb" ] }, { @@ -12592,8 +12681,8 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" ] }, { @@ -12610,8 +12699,8 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" ] }, { @@ -12619,8 +12708,8 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb" ] }, { @@ -12691,8 +12780,8 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb" ] }, { @@ -12700,8 +12789,8 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" ] }, { @@ -12736,8 +12825,8 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" ] }, { @@ -12745,8 +12834,8 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" ] }, { @@ -12754,8 +12843,8 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" ] }, { @@ -12763,8 +12852,8 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb" ] }, { @@ -12772,8 +12861,8 @@ "kernelrelease": "4.2.0-35-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_arm64.deb" ] }, { @@ -12781,8 +12870,8 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb" ] }, { @@ -12799,8 +12888,8 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" ] }, { @@ -12817,8 +12906,8 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb" ] }, { @@ -12826,8 +12915,8 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" ] }, { @@ -12853,8 +12942,8 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" ] }, { @@ -12862,8 +12951,8 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" ] }, { @@ -12880,8 +12969,8 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" ] }, { @@ -12898,8 +12987,8 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" ] }, { @@ -12907,8 +12996,8 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb" ] }, { @@ -12943,8 +13032,8 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" ] }, { @@ -12952,8 +13041,8 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb" ] }, { @@ -12988,8 +13077,8 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" ] }, { @@ -12997,8 +13086,8 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb" ] }, { @@ -13006,8 +13095,8 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" ] }, { @@ -13015,8 +13104,8 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb" ] }, { @@ -13024,8 +13113,8 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" ] }, { @@ -13051,8 +13140,8 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" ] }, { @@ -13060,8 +13149,8 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" ] }, { @@ -13078,8 +13167,8 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" ] }, { @@ -13087,8 +13176,8 @@ "kernelrelease": "4.4.0-36-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" ] }, { @@ -13096,8 +13185,8 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb" ] }, { @@ -13114,8 +13203,8 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb" ] }, { @@ -13123,8 +13212,8 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" ] }, { @@ -13141,8 +13230,8 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" ] }, { @@ -13168,8 +13257,8 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" ] }, { @@ -13177,8 +13266,8 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" ] }, { @@ -13204,8 +13293,8 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb" ] }, { @@ -13213,8 +13302,8 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb" ] }, { @@ -13231,8 +13320,8 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" ] }, { @@ -13240,8 +13329,8 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" ] }, { @@ -13249,8 +13338,8 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" ] }, { @@ -13258,8 +13347,8 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb" ] }, { @@ -13267,8 +13356,8 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" ] }, { @@ -13285,8 +13374,8 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb" ] }, { @@ -13294,8 +13383,8 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" ] }, { @@ -13303,8 +13392,8 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" ] }, { @@ -13321,8 +13410,8 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb" ] }, { @@ -13330,8 +13419,8 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb" ] }, { @@ -13339,8 +13428,8 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb" ] }, { @@ -13357,8 +13446,8 @@ "kernelrelease": "3.13.0-113", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb" ] }, { @@ -13366,8 +13455,8 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb" ] }, { @@ -13375,8 +13464,8 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" ] }, { @@ -13384,8 +13473,8 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" ] }, { @@ -13393,8 +13482,8 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" ] }, { @@ -13411,8 +13500,8 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb" ] }, { @@ -13438,8 +13527,8 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" ] }, { @@ -13447,8 +13536,8 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb" ] }, { @@ -13474,8 +13563,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb" ] }, { @@ -13510,8 +13599,8 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" ] }, { @@ -13537,8 +13626,8 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" ] }, { @@ -13555,8 +13644,8 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb" ] }, { @@ -13564,8 +13653,8 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb" ] }, { @@ -13609,8 +13698,8 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" ] }, { @@ -13636,8 +13725,8 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb" ] }, { @@ -13654,8 +13743,8 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb" ] }, { @@ -13699,8 +13788,8 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" ] }, { @@ -13717,8 +13806,8 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" ] }, { @@ -13726,8 +13815,8 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb" ] }, { @@ -13735,8 +13824,8 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb" ] }, { @@ -13744,8 +13833,8 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" ] }, { @@ -13753,8 +13842,8 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" ] }, { @@ -13771,8 +13860,8 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" ] }, { @@ -13780,8 +13869,8 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" ] }, { @@ -13789,8 +13878,8 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb" ] }, { @@ -13798,8 +13887,8 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" ] }, { @@ -13807,8 +13896,8 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" ] }, { @@ -13816,8 +13905,8 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb" ] }, { @@ -13834,8 +13923,8 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb" ] }, { @@ -13852,8 +13941,8 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" ] }, { @@ -13861,8 +13950,8 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb" ] }, { @@ -13879,8 +13968,8 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" ] }, { @@ -13888,8 +13977,8 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb" ] }, { @@ -13915,8 +14004,8 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb" ] }, { @@ -13933,8 +14022,8 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" ] }, { @@ -13951,8 +14040,8 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" ] }, { @@ -13987,8 +14076,8 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb" ] }, { @@ -13996,8 +14085,8 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" ] }, { @@ -14005,8 +14094,8 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb" ] }, { @@ -14023,8 +14112,8 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" ] }, { @@ -14032,8 +14121,8 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" ] }, { @@ -14059,8 +14148,8 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" ] }, { @@ -14068,8 +14157,8 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" ] }, { @@ -14113,8 +14202,8 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb" ] }, { @@ -14140,8 +14229,8 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb" ] }, { @@ -14149,8 +14238,8 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" ] }, { @@ -14158,8 +14247,8 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" ] }, { @@ -14167,8 +14256,8 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb" ] }, { @@ -14176,8 +14265,8 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" ] }, { @@ -14203,8 +14292,8 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" ] }, { @@ -14221,8 +14310,8 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb" ] }, { @@ -14239,8 +14328,8 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" ] }, { @@ -14266,8 +14355,8 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb" ] }, { @@ -14293,8 +14382,8 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" ] }, { @@ -14302,8 +14391,8 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb" ] }, { @@ -14320,8 +14409,8 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" ] }, { @@ -14329,8 +14418,8 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, { @@ -14347,8 +14436,8 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb" ] }, { @@ -14356,8 +14445,8 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb" ] }, { @@ -14374,8 +14463,8 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" ] }, { @@ -14383,8 +14472,8 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb" ] }, { @@ -14392,8 +14481,8 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" ] }, { @@ -14410,8 +14499,8 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb" ] }, { @@ -14437,8 +14526,8 @@ "kernelrelease": "4.4.0-116", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb" ] }, { @@ -14455,8 +14544,8 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb" ] }, { @@ -14464,8 +14553,8 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb" ] }, { @@ -14500,8 +14589,8 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" ] }, { @@ -14563,8 +14652,8 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb" ] }, { @@ -14599,8 +14688,8 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" ] }, { @@ -14608,8 +14697,8 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" ] }, { @@ -14644,8 +14733,8 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb" ] }, { @@ -14671,8 +14760,8 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" ] }, { @@ -14680,8 +14769,8 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" ] }, { @@ -14707,8 +14796,8 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb" ] }, { @@ -14716,8 +14805,8 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb" ] }, { @@ -14743,8 +14832,8 @@ "kernelrelease": "4.4.0-178", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" ] }, { @@ -14752,8 +14841,8 @@ "kernelrelease": "4.4.0-179", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_arm64.deb" ] }, { @@ -14761,8 +14850,8 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb" ] }, { @@ -14770,8 +14859,8 @@ "kernelrelease": "4.4.0-185", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_arm64.deb" ] }, { @@ -14779,8 +14868,8 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" ] }, { @@ -14788,8 +14877,8 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" ] }, { @@ -14797,8 +14886,8 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb" ] }, { @@ -14887,8 +14976,8 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb" ] }, { @@ -14896,8 +14985,8 @@ "kernelrelease": "4.4.0-209", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb" ] }, { @@ -14914,8 +15003,8 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb" ] }, { @@ -14941,8 +15030,8 @@ "kernelrelease": "4.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb" ] }, { @@ -14959,8 +15048,8 @@ "kernelrelease": "4.4.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb" ] }, { @@ -14977,8 +15066,8 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb" ] }, { @@ -14986,8 +15075,8 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb" ] }, { @@ -14995,8 +15084,8 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb" ] }, { @@ -15004,8 +15093,8 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb" ] }, { @@ -15013,8 +15102,8 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb" ] }, { @@ -15031,8 +15120,8 @@ "kernelrelease": "4.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_arm64.deb" ] }, { @@ -15040,8 +15129,8 @@ "kernelrelease": "4.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb" ] }, { @@ -15049,8 +15138,8 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" ] }, { @@ -15067,8 +15156,8 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" ] }, { @@ -15094,8 +15183,8 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb" ] }, { @@ -15103,8 +15192,8 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" ] }, { @@ -15148,8 +15237,8 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" ] }, { @@ -15166,8 +15255,8 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" ] }, { @@ -15175,8 +15264,8 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" ] }, { @@ -15211,8 +15300,8 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb" ] }, { @@ -15220,8 +15309,8 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb" ] }, { @@ -15229,8 +15318,8 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" ] }, { @@ -15247,8 +15336,8 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb" ] }, { @@ -15265,8 +15354,8 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" ] }, { @@ -15274,8 +15363,8 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" ] }, { @@ -15292,8 +15381,8 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb" ] }, { @@ -15301,8 +15390,8 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" ] }, { @@ -15319,8 +15408,8 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb" ] }, { @@ -15337,8 +15426,8 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" ] }, { @@ -15364,8 +15453,8 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" ] }, { @@ -15373,8 +15462,8 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" ] }, { @@ -15391,8 +15480,8 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" ] }, { @@ -15400,8 +15489,8 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" ] }, { @@ -15409,8 +15498,8 @@ "kernelrelease": "4.8.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb" ] }, { @@ -15418,8 +15507,8 @@ "kernelrelease": "4.8.0-44-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb" ] }, { @@ -15436,8 +15525,8 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" ] }, { @@ -15445,8 +15534,8 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb" ] } ], diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index 03e2a73..bc7c078 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -221,239 +221,239 @@ "kernelrelease": "4.14.232-123.381.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-116.320.amzn1.x86_64", + "kernelrelease": "4.14.88-72.73.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.70-67.55.amzn1.x86_64", + "kernelrelease": "4.14.101-75.76.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-139.500.amzn1.x86_64", + "kernelrelease": "4.14.219-119.340.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-113.317.amzn1.x86_64", + "kernelrelease": "4.14.238-125.422.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.422.amzn1.x86_64", + "kernelrelease": "4.14.193-113.317.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-87.105.amzn1.x86_64", + "kernelrelease": "4.14.121-85.96.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-69.57.amzn1.x86_64", + "kernelrelease": "4.14.238-125.421.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-82.97.amzn1.x86_64", + "kernelrelease": "4.14.186-110.268.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.59.amzn1.x86_64", + "kernelrelease": "4.14.209-117.337.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.55-62.37.amzn1.x86_64", + "kernelrelease": "4.14.173-106.229.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-80.92.amzn1.x86_64", + "kernelrelease": "4.14.262-135.489.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-98.182.amzn1.x86_64", + "kernelrelease": "4.14.72-68.55.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.34.amzn1.x86_64", + "kernelrelease": "4.14.51-60.38.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-131.483.amzn1.x86_64", + "kernelrelease": "4.14.77-70.59.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-121.357.amzn1.x86_64", + "kernelrelease": "4.14.177-107.254.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.37.amzn1.x86_64", + "kernelrelease": "4.14.158-101.185.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-119.340.amzn1.x86_64", + "kernelrelease": "4.14.77-70.82.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-85.96.amzn1.x86_64", + "kernelrelease": "4.14.70-67.55.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-83.126.amzn1.x86_64", + "kernelrelease": "4.14.133-88.105.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-79.86.amzn1.x86_64", + "kernelrelease": "4.14.143-91.122.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.51-60.38.amzn1.x86_64", + "kernelrelease": "4.14.268-139.500.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.281-144.502.amzn1.x86_64", + "kernelrelease": "4.14.152-98.182.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.281-144.502.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-103.209.amzn1.x86_64", + "kernelrelease": "4.14.273-140.502.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.112.amzn1.x86_64", + "kernelrelease": "4.14.138-89.102.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-121.362.amzn1.x86_64", + "kernelrelease": "4.14.33-51.34.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-140.502.amzn1.x86_64", + "kernelrelease": "4.14.248-129.473.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.82.amzn1.x86_64", + "kernelrelease": "4.14.97-74.72.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.73.amzn1.x86_64", + "kernelrelease": "4.14.165-103.209.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-74.72.amzn1.x86_64", + "kernelrelease": "4.14.42-52.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" ] }, { @@ -461,953 +461,953 @@ "kernelrelease": "4.14.88-72.76.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-110.268.amzn1.x86_64", + "kernelrelease": "4.14.252-131.483.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-142.503.amzn1.x86_64", + "kernelrelease": "4.14.203-116.332.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-102.185.amzn1.x86_64", + "kernelrelease": "4.14.59-64.43.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-101.185.amzn1.x86_64", + "kernelrelease": "4.14.123-86.109.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.42-52.37.amzn1.x86_64", + "kernelrelease": "4.14.133-88.112.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-99.181.amzn1.x86_64", + "kernelrelease": "4.14.225-121.362.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.72-68.55.amzn1.x86_64", + "kernelrelease": "4.14.214-118.339.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-118.339.amzn1.x86_64", + "kernelrelease": "4.14.62-65.117.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.489.amzn1.x86_64", + "kernelrelease": "4.14.55-62.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-91.122.amzn1.x86_64", + "kernelrelease": "4.14.165-102.185.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.421.amzn1.x86_64", + "kernelrelease": "4.14.67-66.56.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-117.337.amzn1.x86_64", + "kernelrelease": "4.14.181-108.257.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-107.254.amzn1.x86_64", + "kernelrelease": "4.14.262-135.486.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.62-65.117.amzn1.x86_64", + "kernelrelease": "4.14.104-78.84.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.486.amzn1.x86_64", + "kernelrelease": "4.14.114-82.97.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.105.amzn1.x86_64", + "kernelrelease": "4.14.114-83.126.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.59-64.43.amzn1.x86_64", + "kernelrelease": "4.14.225-121.357.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-78.84.amzn1.x86_64", + "kernelrelease": "4.14.146-93.123.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-86.109.amzn1.x86_64", + "kernelrelease": "4.14.171-105.231.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-129.473.amzn1.x86_64", + "kernelrelease": "4.14.33-51.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-93.123.amzn1.x86_64", + "kernelrelease": "4.14.94-73.73.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-73.73.amzn1.x86_64", + "kernelrelease": "4.14.200-116.320.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-56.37.amzn1.x86_64", + "kernelrelease": "4.14.281-144.502.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.281-144.502.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-108.257.amzn1.x86_64", + "kernelrelease": "4.14.77-69.57.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-116.332.amzn1.x86_64", + "kernelrelease": "4.14.128-87.105.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-89.102.amzn1.x86_64", + "kernelrelease": "4.14.106-79.86.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-106.229.amzn1.x86_64", + "kernelrelease": "4.14.154-99.181.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-105.231.amzn1.x86_64", + "kernelrelease": "4.14.109-80.92.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-75.76.amzn1.x86_64", + "kernelrelease": "4.14.47-56.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.67-66.56.amzn1.x86_64", + "kernelrelease": "4.14.275-142.503.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/f764ade9b57c/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" ] } ], "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.x86_64", + "kernelrelease": "4.14.94-89.73.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.x86_64", + "kernelrelease": "4.14.256-197.484.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.x86_64", + "kernelrelease": "4.14.246-187.474.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.77-41.59.amzn2.x86_64", + "kernelrelease": "4.14.181-140.257.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.x86_64", + "kernelrelease": "4.14.186-146.268.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.x86_64", + "kernelrelease": "4.9.75-1.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.x86_64", + "kernelrelease": "4.14.231-173.361.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.x86_64", + "kernelrelease": "4.14.241-184.433.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.x86_64", + "kernelrelease": "4.14.203-156.332.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.x86_64", + "kernelrelease": "4.14.165-133.209.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.x86_64", + "kernelrelease": "4.9.85-46.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.26-54.32.amzn2.x86_64", + "kernelrelease": "4.14.33-59.34.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.x86_64", + "kernelrelease": "4.14.273-207.502.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.x86_64", + "kernelrelease": "4.14.146-119.123.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.x86_64", + "kernelrelease": "4.14.47-63.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.x86_64", + "kernelrelease": "4.9.85-47.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-63.37.amzn2.x86_64", + "kernelrelease": "4.14.177-139.253.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.x86_64", + "kernelrelease": "4.14.123-111.109.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.67-71.56.amzn2.x86_64", + "kernelrelease": "4.14.109-99.92.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.x86_64", + "kernelrelease": "4.14.59-68.43.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.x86_64", + "kernelrelease": "4.14.106-97.85.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.x86_64", + "kernelrelease": "4.14.225-169.362.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.x86_64", + "kernelrelease": "4.14.55-68.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.85-46.56.amzn2.x86_64", + "kernelrelease": "4.14.158-129.185.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.x86_64", + "kernelrelease": "4.14.138-114.102.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.x86_64", + "kernelrelease": "4.9.77-41.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.70-72.55.amzn2.x86_64", + "kernelrelease": "4.14.248-189.473.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.x86_64", + "kernelrelease": "4.14.243-185.433.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.x86_64", + "kernelrelease": "4.14.232-176.381.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.281-212.502.amzn2.x86_64", + "kernelrelease": "4.14.219-164.354.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/333f944a7a5ee308d61a30c3dff09017232758e1186d6e4490aeffe82c30cc40/kernel-devel-4.14.281-212.502.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.72-73.55.amzn2.x86_64", + "kernelrelease": "4.14.225-168.357.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.75-1.56.amzn2.x86_64", + "kernelrelease": "4.14.238-182.421.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.x86_64", + "kernelrelease": "4.14.152-127.182.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.x86_64", + "kernelrelease": "4.14.70-72.55.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.x86_64", + "kernelrelease": "4.14.165-131.185.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.x86_64", + "kernelrelease": "4.14.133-113.105.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.x86_64", + "kernelrelease": "4.14.114-103.97.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.x86_64", + "kernelrelease": "4.14.47-64.38.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.x86_64", + "kernelrelease": "4.14.77-86.82.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.x86_64", + "kernelrelease": "4.14.143-118.123.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.x86_64", + "kernelrelease": "4.14.104-95.84.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.x86_64", + "kernelrelease": "4.14.152-124.171.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.62-10.57.amzn2.x86_64", + "kernelrelease": "4.14.177-139.254.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.x86_64", + "kernelrelease": "4.14.209-160.339.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.x86_64", + "kernelrelease": "4.14.198-152.320.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.x86_64", + "kernelrelease": "4.14.133-113.112.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.x86_64", + "kernelrelease": "4.14.154-128.181.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.70-2.243.amzn2.x86_64", + "kernelrelease": "4.14.51-66.38.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.x86_64", + "kernelrelease": "4.14.214-160.339.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.x86_64", + "kernelrelease": "4.14.26-54.32.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.x86_64", + "kernelrelease": "4.14.181-142.260.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.x86_64", + "kernelrelease": "4.14.193-149.317.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.x86_64", + "kernelrelease": "4.14.276-211.499.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.x86_64", + "kernelrelease": "4.14.88-88.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.x86_64", + "kernelrelease": "4.14.252-195.483.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.55-68.37.amzn2.x86_64", + "kernelrelease": "4.14.88-88.73.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.x86_64", + "kernelrelease": "4.14.77-81.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.x86_64", + "kernelrelease": "4.14.238-182.422.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.62-70.117.amzn2.x86_64", + "kernelrelease": "4.14.231-173.360.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.85-47.59.amzn2.x86_64", + "kernelrelease": "4.9.76-38.79.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.59-68.43.amzn2.x86_64", + "kernelrelease": "4.14.173-137.228.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.x86_64", + "kernelrelease": "4.14.42-61.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.x86_64", + "kernelrelease": "4.14.101-91.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.x86_64", + "kernelrelease": "4.14.77-80.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.76-38.79.amzn2.x86_64", + "kernelrelease": "4.9.62-10.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.x86_64", + "kernelrelease": "4.14.146-120.181.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.x86_64", + "kernelrelease": "4.14.173-137.229.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.x86_64", + "kernelrelease": "4.14.281-212.502.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/333f944a7a5ee308d61a30c3dff09017232758e1186d6e4490aeffe82c30cc40/kernel-devel-4.14.281-212.502.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.42-61.37.amzn2.x86_64", + "kernelrelease": "4.14.192-147.314.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.x86_64", + "kernelrelease": "4.14.200-155.322.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-64.38.amzn2.x86_64", + "kernelrelease": "4.14.275-207.503.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.x86_64", + "kernelrelease": "4.9.81-44.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.x86_64", + "kernelrelease": "4.14.262-200.489.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.x86_64", + "kernelrelease": "4.14.121-109.96.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.x86_64", + "kernelrelease": "4.14.114-105.126.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.x86_64", + "kernelrelease": "4.9.70-2.243.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.x86_64", + "kernelrelease": "4.14.67-71.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.x86_64", + "kernelrelease": "4.14.128-112.105.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.x86_64", + "kernelrelease": "4.14.62-70.117.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.37.amzn2.x86_64", + "kernelrelease": "4.14.209-160.335.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.34.amzn2.x86_64", + "kernelrelease": "4.14.252-195.481.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.81-44.57.amzn2.x86_64", + "kernelrelease": "4.14.171-136.231.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.x86_64", + "kernelrelease": "4.14.33-59.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.51-66.38.amzn2.x86_64", + "kernelrelease": "4.14.268-205.500.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.x86_64", + "kernelrelease": "4.14.72-73.55.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.x86_64", + "kernelrelease": "4.14.97-90.72.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.x86_64", + "kernelrelease": "4.14.232-177.418.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.x86_64", + "kernelrelease": "4.14.219-161.340.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/2c97b42bdda14e0985c4086fa59d08a7ede5422b459ed3112a105d88fe127fe7/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" ] }, { @@ -1843,7 +1843,7 @@ "kernelrelease": "3.10.0-1160.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" ] }, { @@ -1859,7 +1859,7 @@ "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" ] }, { @@ -1891,7 +1891,7 @@ "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" ] }, { @@ -1899,7 +1899,7 @@ "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" ] }, { @@ -1907,7 +1907,7 @@ "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" ] }, { @@ -1923,7 +1923,7 @@ "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" ] }, { @@ -1931,7 +1931,7 @@ "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" ] }, { @@ -1947,7 +1947,7 @@ "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" ] }, { @@ -1971,7 +1971,7 @@ "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" ] }, { @@ -7028,6 +7028,14 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.66.1.0.1.el7.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.66.1.0.2.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.66.1.0.2.el7.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "3.10.0-514.10.2.0.1.el7.x86_64", @@ -8604,6 +8612,14 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.63.2.1.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.63.3.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.63.3.1.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "3.8.13-118.10.2.el7uek.x86_64", @@ -10333,7 +10349,7 @@ "kernelrelease": "4.19.15-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-2.ph3.x86_64.rpm" ] }, { @@ -10349,7 +10365,7 @@ "kernelrelease": "4.19.104-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.104-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-1.ph3.x86_64.rpm" ] }, { @@ -10397,7 +10413,7 @@ "kernelrelease": "4.19.115-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-3.ph3.x86_64.rpm" ] }, { @@ -10405,7 +10421,7 @@ "kernelrelease": "4.19.115-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-5.ph3.x86_64.rpm" ] }, { @@ -10413,7 +10429,7 @@ "kernelrelease": "4.19.115-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-6.ph3.x86_64.rpm" ] }, { @@ -10445,7 +10461,7 @@ "kernelrelease": "4.19.124-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-2.ph3.x86_64.rpm" ] }, { @@ -10493,7 +10509,7 @@ "kernelrelease": "4.19.132-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-1.ph3.x86_64.rpm" ] }, { @@ -10501,7 +10517,7 @@ "kernelrelease": "4.19.132-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-2.ph3.x86_64.rpm" ] }, { @@ -10509,7 +10525,7 @@ "kernelrelease": "4.19.132-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-3.ph3.x86_64.rpm" ] }, { @@ -10517,7 +10533,7 @@ "kernelrelease": "4.19.132-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" ] }, { @@ -10533,7 +10549,7 @@ "kernelrelease": "4.19.138-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-1.ph3.x86_64.rpm" ] }, { @@ -10541,7 +10557,7 @@ "kernelrelease": "4.19.138-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.138-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-2.ph3.x86_64.rpm" ] }, { @@ -10557,7 +10573,7 @@ "kernelrelease": "4.19.145-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.145-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-1.ph3.x86_64.rpm" ] }, { @@ -10565,7 +10581,7 @@ "kernelrelease": "4.19.145-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-2.ph3.x86_64.rpm" ] }, { @@ -10573,7 +10589,7 @@ "kernelrelease": "4.19.145-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm" ] }, { @@ -10581,7 +10597,7 @@ "kernelrelease": "4.19.148-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-1.ph3.x86_64.rpm" ] }, { @@ -10589,7 +10605,7 @@ "kernelrelease": "4.19.148-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" ] }, { @@ -10605,7 +10621,7 @@ "kernelrelease": "4.19.148-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-4.ph3.x86_64.rpm" ] }, { @@ -10613,7 +10629,7 @@ "kernelrelease": "4.19.148-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-5.ph3.x86_64.rpm" ] }, { @@ -10629,7 +10645,7 @@ "kernelrelease": "4.19.150-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.150-1.ph3.x86_64.rpm" ] }, { @@ -10637,7 +10653,7 @@ "kernelrelease": "4.19.154-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-1.ph3.x86_64.rpm" ] }, { @@ -10685,7 +10701,7 @@ "kernelrelease": "4.19.160-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm" ] }, { @@ -10709,7 +10725,7 @@ "kernelrelease": "4.19.164-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.164-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-1.ph3.x86_64.rpm" ] }, { @@ -10725,7 +10741,7 @@ "kernelrelease": "4.19.174-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-2.ph3.x86_64.rpm" ] }, { @@ -10733,7 +10749,7 @@ "kernelrelease": "4.19.174-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-4.ph3.x86_64.rpm" ] }, { @@ -10749,7 +10765,7 @@ "kernelrelease": "4.19.177-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-1.ph3.x86_64.rpm" ] }, { @@ -10757,7 +10773,7 @@ "kernelrelease": "4.19.177-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" ] }, { @@ -10765,7 +10781,7 @@ "kernelrelease": "4.19.182-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-1.ph3.x86_64.rpm" ] }, { @@ -10773,7 +10789,7 @@ "kernelrelease": "4.19.182-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-2.ph3.x86_64.rpm" ] }, { @@ -10781,7 +10797,7 @@ "kernelrelease": "4.19.186-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-1.ph3.x86_64.rpm" ] }, { @@ -10813,7 +10829,7 @@ "kernelrelease": "4.19.189-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-2.ph3.x86_64.rpm" ] }, { @@ -10821,7 +10837,7 @@ "kernelrelease": "4.19.189-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-3.ph3.x86_64.rpm" ] }, { @@ -10829,7 +10845,7 @@ "kernelrelease": "4.19.189-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" ] }, { @@ -10853,7 +10869,7 @@ "kernelrelease": "4.19.190-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" ] }, { @@ -10885,7 +10901,7 @@ "kernelrelease": "4.19.191-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm" ] }, { @@ -10893,7 +10909,7 @@ "kernelrelease": "4.19.198-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.198-1.ph3.x86_64.rpm" ] }, { @@ -10909,7 +10925,7 @@ "kernelrelease": "4.19.198-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-3.ph3.x86_64.rpm" ] }, { @@ -10925,7 +10941,7 @@ "kernelrelease": "4.19.205-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.205-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.205-1.ph3.x86_64.rpm" ] }, { @@ -10933,7 +10949,7 @@ "kernelrelease": "4.19.208-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.208-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.208-1.ph3.x86_64.rpm" ] }, { @@ -10941,7 +10957,7 @@ "kernelrelease": "4.19.214-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-3.ph3.x86_64.rpm" ] }, { @@ -10957,7 +10973,7 @@ "kernelrelease": "4.19.217-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm" ] }, { @@ -10965,7 +10981,7 @@ "kernelrelease": "4.19.219-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-1.ph3.x86_64.rpm" ] }, { @@ -10981,7 +10997,7 @@ "kernelrelease": "4.19.219-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm" ] }, { @@ -10989,7 +11005,7 @@ "kernelrelease": "4.19.219-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-5.ph3.x86_64.rpm" ] }, { @@ -10997,7 +11013,7 @@ "kernelrelease": "4.19.224-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-1.ph3.x86_64.rpm" ] }, { @@ -11005,7 +11021,7 @@ "kernelrelease": "4.19.224-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-2.ph3.x86_64.rpm" ] }, { @@ -11013,7 +11029,7 @@ "kernelrelease": "4.19.225-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-3.ph3.x86_64.rpm" ] }, { @@ -11029,7 +11045,7 @@ "kernelrelease": "4.19.229-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.229-1.ph3.x86_64.rpm" ] }, { @@ -11037,7 +11053,7 @@ "kernelrelease": "4.19.229-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" ] }, { @@ -11053,7 +11069,7 @@ "kernelrelease": "4.19.232-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-1.ph3.x86_64.rpm" ] }, { @@ -11069,7 +11085,7 @@ "kernelrelease": "4.19.232-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-3.ph3.x86_64.rpm" ] }, { @@ -11077,7 +11093,7 @@ "kernelrelease": "4.19.232-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-4.ph3.x86_64.rpm" ] }, { @@ -11085,7 +11101,7 @@ "kernelrelease": "4.19.241-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.241-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.241-1.ph3.x86_64.rpm" ] }, { @@ -11101,7 +11117,7 @@ "kernelrelease": "4.19.245-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.245-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.245-1.ph3.x86_64.rpm" ] }, { @@ -11109,7 +11125,7 @@ "kernelrelease": "4.19.29-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.29-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.29-1.ph3.x86_64.rpm" ] }, { @@ -11133,7 +11149,7 @@ "kernelrelease": "4.19.40-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" ] }, { @@ -11141,7 +11157,7 @@ "kernelrelease": "4.19.52-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.52-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm" ] }, { @@ -11173,7 +11189,7 @@ "kernelrelease": "4.19.69-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.69-1.ph3.x86_64.rpm" ] }, { @@ -11181,7 +11197,7 @@ "kernelrelease": "4.19.72-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-1.ph3.x86_64.rpm" ] }, { @@ -11189,7 +11205,7 @@ "kernelrelease": "4.19.72-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-2.ph3.x86_64.rpm" ] }, { @@ -11197,7 +11213,7 @@ "kernelrelease": "4.19.76-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-1.ph3.x86_64.rpm" ] }, { @@ -11213,7 +11229,7 @@ "kernelrelease": "4.19.79-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.79-1.ph3.x86_64.rpm" ] }, { @@ -11229,7 +11245,7 @@ "kernelrelease": "4.19.82-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.82-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.82-1.ph3.x86_64.rpm" ] }, { @@ -11253,7 +11269,7 @@ "kernelrelease": "4.19.87-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-1.ph3.x86_64.rpm" ] }, { @@ -11277,7 +11293,7 @@ "kernelrelease": "4.19.97-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" ] }, { @@ -11285,7 +11301,7 @@ "kernelrelease": "4.19.97-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-2.ph3.x86_64.rpm" ] }, { @@ -11293,7 +11309,7 @@ "kernelrelease": "4.19.97-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-3.ph3.x86_64.rpm" ] }, { @@ -11301,7 +11317,7 @@ "kernelrelease": "4.19.97-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-4.ph3.x86_64.rpm" ] }, { @@ -11309,7 +11325,7 @@ "kernelrelease": "4.19.97-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" ] }, { @@ -11325,7 +11341,7 @@ "kernelrelease": "4.19.115-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-4.ph3.x86_64.rpm" ] }, { @@ -11333,7 +11349,7 @@ "kernelrelease": "4.19.154-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-5.ph3.x86_64.rpm" ] }, { @@ -11341,7 +11357,7 @@ "kernelrelease": "4.19.154-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-6.ph3.x86_64.rpm" ] }, { @@ -11365,7 +11381,7 @@ "kernelrelease": "4.19.214-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.214-2.ph3.x86_64.rpm" ] }, { @@ -11381,7 +11397,7 @@ "kernelrelease": "4.19.225-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-5.ph3.x86_64.rpm" ] }, { @@ -11389,7 +11405,7 @@ "kernelrelease": "4.19.32-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.32-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.32-2.ph3.x86_64.rpm" ] }, { @@ -11405,7 +11421,7 @@ "kernelrelease": "4.19.76-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-2.ph3.x86_64.rpm" ] }, { @@ -11413,7 +11429,7 @@ "kernelrelease": "4.19.87-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-3.ph3.x86_64.rpm" ] }, { @@ -11525,7 +11541,7 @@ "kernelrelease": "1.4.0-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" ] }, { @@ -11541,7 +11557,7 @@ "kernelrelease": "5.10.103-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-2.ph4.x86_64.rpm" ] }, { @@ -11549,7 +11565,7 @@ "kernelrelease": "5.10.103-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-3.ph4.x86_64.rpm" ] }, { @@ -11565,7 +11581,7 @@ "kernelrelease": "5.10.109-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-2.ph4.x86_64.rpm" ] }, { @@ -11573,7 +11589,7 @@ "kernelrelease": "5.10.109-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-3.ph4.x86_64.rpm" ] }, { @@ -11581,7 +11597,7 @@ "kernelrelease": "5.10.109-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-4.ph4.x86_64.rpm" ] }, { @@ -11605,7 +11621,7 @@ "kernelrelease": "5.10.25-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-2.ph4.x86_64.rpm" ] }, { @@ -11621,7 +11637,7 @@ "kernelrelease": "5.10.25-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-5.ph4.x86_64.rpm" ] }, { @@ -11629,7 +11645,7 @@ "kernelrelease": "5.10.25-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-6.ph4.x86_64.rpm" ] }, { @@ -11645,7 +11661,7 @@ "kernelrelease": "5.10.25-9.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-9.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-9.ph4.x86_64.rpm" ] }, { @@ -11693,7 +11709,7 @@ "kernelrelease": "5.10.42-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm" ] }, { @@ -11701,7 +11717,7 @@ "kernelrelease": "5.10.42-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-2.ph4.x86_64.rpm" ] }, { @@ -11717,7 +11733,7 @@ "kernelrelease": "5.10.46-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-1.ph4.x86_64.rpm" ] }, { @@ -11725,7 +11741,7 @@ "kernelrelease": "5.10.46-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-2.ph4.x86_64.rpm" ] }, { @@ -11749,7 +11765,7 @@ "kernelrelease": "5.10.61-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-1.ph4.x86_64.rpm" ] }, { @@ -11757,7 +11773,7 @@ "kernelrelease": "5.10.61-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.61-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-2.ph4.x86_64.rpm" ] }, { @@ -11797,7 +11813,7 @@ "kernelrelease": "5.10.83-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-2.ph4.x86_64.rpm" ] }, { @@ -11805,7 +11821,7 @@ "kernelrelease": "5.10.83-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-3.ph4.x86_64.rpm" ] }, { @@ -11813,7 +11829,7 @@ "kernelrelease": "5.10.83-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-4.ph4.x86_64.rpm" ] }, { @@ -11845,7 +11861,7 @@ "kernelrelease": "5.10.93-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm" ] }, { @@ -11853,7 +11869,7 @@ "kernelrelease": "5.10.93-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-3.ph4.x86_64.rpm" ] }, { @@ -11869,7 +11885,7 @@ "kernelrelease": "5.10.93-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-5.ph4.x86_64.rpm" ] }, { @@ -11885,7 +11901,7 @@ "kernelrelease": "5.10.78-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.78-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-2.ph4.x86_64.rpm" ] }, { @@ -11901,7 +11917,7 @@ "kernelrelease": "5.10.42-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" ] }, { @@ -11999,10 +12015,10 @@ "kernelrelease": "5.18.2-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-amd64_5.18.2-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-amd64_5.18.2-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-amd64_5.18.2-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-amd64_5.18.2-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb" ] }, @@ -12012,9 +12028,9 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb" ] }, @@ -12023,11 +12039,23 @@ "kernelrelease": "5.10.113-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.120-1-amd64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb" ] }, { @@ -12035,10 +12063,10 @@ "kernelrelease": "5.10.84-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb" ] }, @@ -12048,10 +12076,10 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" ] }, { @@ -12059,11 +12087,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb" ] }, { @@ -12071,11 +12099,11 @@ "kernelrelease": "4.19.208-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb" ] }, { @@ -12083,11 +12111,11 @@ "kernelrelease": "4.19.235-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb" ] }, { @@ -12099,16 +12127,28 @@ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.18.5-1-amd64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-amd64_5.18.5-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-amd64_5.18.5-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-amd64_5.18.5-1_amd64.deb" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" ] }, { @@ -12125,10 +12165,10 @@ "kernelrelease": "4.9.228-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb" ] }, { @@ -12136,23 +12176,11 @@ "kernelrelease": "5.10.103-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.120-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb" ] }, { @@ -12160,11 +12188,11 @@ "kernelrelease": "4.19.232-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb" ] }, { @@ -12172,8 +12200,8 @@ "kernelrelease": "3.16.81-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb" ] }, { @@ -12190,10 +12218,10 @@ "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb" ] }, { @@ -12201,10 +12229,10 @@ "kernelrelease": "4.9.210-1+deb9u1~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" ] }, { @@ -12212,10 +12240,10 @@ "kernelrelease": "4.9.303-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" ] }, { @@ -12223,9 +12251,9 @@ "kernelrelease": "4.19.232-1~deb9u1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb" ] @@ -12237,10 +12265,10 @@ "kernelrelease": "4.15.0-1087-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb" ] }, { @@ -12248,10 +12276,10 @@ "kernelrelease": "4.15.0-1088-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" ] }, { @@ -12260,9 +12288,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb" ] }, { @@ -12270,10 +12298,10 @@ "kernelrelease": "4.15.0-1094-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb" ] }, { @@ -12281,10 +12309,10 @@ "kernelrelease": "4.15.0-1103-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb" ] }, { @@ -12292,9 +12320,9 @@ "kernelrelease": "4.15.0-1104-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb" ] }, @@ -12303,10 +12331,10 @@ "kernelrelease": "4.15.0-1104-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" ] }, { @@ -12314,10 +12342,10 @@ "kernelrelease": "4.15.0-1107-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb" ] }, { @@ -12325,8 +12353,8 @@ "kernelrelease": "4.15.0-1110-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" ] @@ -12336,10 +12364,10 @@ "kernelrelease": "4.15.0-1111-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" ] }, { @@ -12348,9 +12376,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" ] }, { @@ -12358,10 +12386,10 @@ "kernelrelease": "4.15.0-1113-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb" ] }, { @@ -12380,9 +12408,9 @@ "kernelrelease": "4.15.0-1114-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" ] }, @@ -12391,10 +12419,10 @@ "kernelrelease": "4.15.0-1115-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" ] }, { @@ -12402,10 +12430,10 @@ "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" ] }, { @@ -12413,10 +12441,10 @@ "kernelrelease": "4.15.0-1116-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" ] }, { @@ -12425,8 +12453,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" ] }, @@ -12435,10 +12463,10 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" ] }, { @@ -12446,10 +12474,10 @@ "kernelrelease": "4.15.0-1117-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb" ] }, { @@ -12457,10 +12485,10 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" ] }, { @@ -12468,8 +12496,8 @@ "kernelrelease": "4.15.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" ] @@ -12479,10 +12507,10 @@ "kernelrelease": "4.15.0-1121-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb" ] }, { @@ -12490,10 +12518,10 @@ "kernelrelease": "4.15.0-1122-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb" ] }, { @@ -12501,10 +12529,10 @@ "kernelrelease": "4.15.0-1123-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb" ] }, { @@ -12512,10 +12540,10 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" ] }, { @@ -12523,9 +12551,9 @@ "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" ] }, @@ -12534,10 +12562,10 @@ "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" ] }, { @@ -12546,9 +12574,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" ] }, { @@ -12558,8 +12586,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" ] }, { @@ -12567,9 +12595,9 @@ "kernelrelease": "4.15.0-1130-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" ] }, @@ -12578,10 +12606,10 @@ "kernelrelease": "4.15.0-1131-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" ] }, { @@ -12589,9 +12617,9 @@ "kernelrelease": "4.15.0-1134-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb" ] }, @@ -12600,10 +12628,10 @@ "kernelrelease": "4.15.0-1135-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" ] }, { @@ -12611,10 +12639,10 @@ "kernelrelease": "4.15.0-1138-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" ] }, { @@ -12622,166 +12650,23 @@ "kernelrelease": "4.15.0-1139-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb" - ] - }, - { - "kernelversion": "175", - "kernelrelease": "4.15.0-167", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb" - ] - }, - { - "kernelversion": "176", - "kernelrelease": "4.15.0-168", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-generic_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168-lowlatency_4.15.0-168.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-168_4.15.0-168.176_all.deb" - ] - }, - { - "kernelversion": "177", - "kernelrelease": "4.15.0-169", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" - ] - }, - { - "kernelversion": "178", - "kernelrelease": "4.15.0-170", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170_4.15.0-170.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-generic_4.15.0-170.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-170-lowlatency_4.15.0-170.178_amd64.deb" - ] - }, - { - "kernelversion": "181", - "kernelrelease": "4.15.0-172", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-generic_4.15.0-172.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172_4.15.0-172.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-172-lowlatency_4.15.0-172.181_amd64.deb" - ] - }, - { - "kernelversion": "182", - "kernelrelease": "4.15.0-173", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" - ] - }, - { - "kernelversion": "183", - "kernelrelease": "4.15.0-174", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-lowlatency_4.15.0-174.183_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174-generic_4.15.0-174.183_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-174_4.15.0-174.183_all.deb" - ] - }, - { - "kernelversion": "185", - "kernelrelease": "4.15.0-176", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb" - ] - }, - { - "kernelversion": "186", - "kernelrelease": "4.15.0-177", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb" - ] - }, - { - "kernelversion": "188", - "kernelrelease": "4.15.0-179", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-generic_4.15.0-179.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179-lowlatency_4.15.0-179.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-179_4.15.0-179.188_all.deb" - ] - }, - { - "kernelversion": "189", - "kernelrelease": "4.15.0-180", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb" ] }, { - "kernelversion": "190", - "kernelrelease": "4.15.0-181", + "kernelversion": "199", + "kernelrelease": "4.15.0-188", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-generic_4.15.0-181.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181-lowlatency_4.15.0-181.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-181_4.15.0-181.190_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb" ] }, { @@ -12789,10 +12674,10 @@ "kernelrelease": "5.0.0-1028-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" ] }, { @@ -12800,12 +12685,12 @@ "kernelrelease": "5.4.0-100-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb" ] }, { @@ -12814,9 +12699,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { @@ -12825,20 +12710,20 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1034-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -12846,21 +12731,21 @@ "kernelrelease": "5.4.0-1034-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1034-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -12868,10 +12753,10 @@ "kernelrelease": "5.4.0-1040-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb" ] }, { @@ -12879,10 +12764,10 @@ "kernelrelease": "5.4.0-1043-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb" ] }, { @@ -12890,23 +12775,12 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb" ] }, { @@ -12921,14 +12795,14 @@ ] }, { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1056-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { @@ -12936,23 +12810,34 @@ "kernelrelease": "5.4.0-1058-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" ] }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1058-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb" + ] + }, { "kernelversion": "120~18.04.1", "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" ] }, { @@ -12960,10 +12845,10 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { @@ -12971,10 +12856,10 @@ "kernelrelease": "5.4.0-1060-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { @@ -12983,8 +12868,8 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" ] }, @@ -12993,10 +12878,10 @@ "kernelrelease": "5.4.0-1061-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { @@ -13004,10 +12889,21 @@ "kernelrelease": "5.4.0-1061-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" ] }, { @@ -13016,20 +12912,20 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" ] }, { @@ -13037,65 +12933,43 @@ "kernelrelease": "5.4.0-1063-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" ] }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" - ] - }, { "kernelversion": "66~18.04.1", "kernelrelease": "5.4.0-1063-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" ] }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" - ] - }, { "kernelversion": "66~18.04.1", "kernelrelease": "5.4.0-1063-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-azure-5.4", + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { @@ -13103,20 +12977,31 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" ] }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb" + ] + }, { "kernelversion": "68~18.04.1", "kernelrelease": "5.4.0-1064-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" ] }, @@ -13125,10 +13010,10 @@ "kernelrelease": "5.4.0-1064-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { @@ -13136,10 +13021,10 @@ "kernelrelease": "5.4.0-1065-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" ] }, { @@ -13148,8 +13033,8 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" ] }, @@ -13158,10 +13043,10 @@ "kernelrelease": "5.4.0-1066-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" ] }, { @@ -13169,32 +13054,32 @@ "kernelrelease": "5.4.0-1067-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1068-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1068-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb" ] }, { @@ -13202,10 +13087,10 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" ] }, { @@ -13213,8 +13098,8 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" ] @@ -13224,10 +13109,10 @@ "kernelrelease": "5.4.0-1069-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { @@ -13235,10 +13120,10 @@ "kernelrelease": "5.4.0-1069-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { @@ -13246,10 +13131,10 @@ "kernelrelease": "5.4.0-1069-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { @@ -13257,10 +13142,10 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" ] }, { @@ -13268,9 +13153,9 @@ "kernelrelease": "5.4.0-1070-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" ] }, @@ -13280,8 +13165,8 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb" ] }, @@ -13290,10 +13175,10 @@ "kernelrelease": "5.4.0-1071-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" ] }, { @@ -13301,10 +13186,10 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb" ] }, { @@ -13312,10 +13197,10 @@ "kernelrelease": "5.4.0-1071-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" ] }, { @@ -13323,10 +13208,10 @@ "kernelrelease": "5.4.0-1072-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb" ] }, { @@ -13334,10 +13219,10 @@ "kernelrelease": "5.4.0-1073-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" ] }, { @@ -13345,10 +13230,10 @@ "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" ] }, { @@ -13356,10 +13241,10 @@ "kernelrelease": "5.4.0-1075-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb" ] }, { @@ -13368,9 +13253,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb" ] }, { @@ -13378,9 +13263,9 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" ] }, @@ -13389,10 +13274,10 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" ] }, { @@ -13400,10 +13285,10 @@ "kernelrelease": "5.4.0-1079-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb" ] }, { @@ -13411,12 +13296,12 @@ "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" ] }, { @@ -13424,11 +13309,11 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" ] }, @@ -13437,12 +13322,12 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" ] }, { @@ -13450,12 +13335,12 @@ "kernelrelease": "5.4.0-91-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb" ] }, { @@ -13463,12 +13348,12 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb" ] }, { @@ -13476,12 +13361,12 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb" ] }, { @@ -13489,10 +13374,10 @@ "kernelrelease": "4.15.0-1006-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" ] }, { @@ -13502,8 +13387,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb" ] }, { @@ -13511,10 +13396,10 @@ "kernelrelease": "4.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb" ] }, { @@ -13522,10 +13407,10 @@ "kernelrelease": "4.15.0-1008-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb" ] }, { @@ -13533,10 +13418,10 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" ] }, { @@ -13544,32 +13429,32 @@ "kernelrelease": "4.15.0-1009-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1009-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" ] }, { @@ -13578,9 +13463,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" ] }, { @@ -13588,10 +13473,10 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb" ] }, { @@ -13599,34 +13484,34 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1010-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1010-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb" ] }, { @@ -13634,10 +13519,10 @@ "kernelrelease": "4.15.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb" ] }, { @@ -13645,21 +13530,10 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" ] }, { @@ -13673,15 +13547,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb" ] }, + { + "kernelversion": "11", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb" + ] + }, { "kernelversion": "12", "kernelrelease": "4.15.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" ] }, { @@ -13689,9 +13574,9 @@ "kernelrelease": "4.15.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" ] }, @@ -13700,10 +13585,10 @@ "kernelrelease": "4.15.0-1012-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb" ] }, { @@ -13711,9 +13596,9 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb" ] }, @@ -13722,10 +13607,10 @@ "kernelrelease": "4.15.0-1013-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb" ] }, { @@ -13739,17 +13624,6 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" ] }, - { - "kernelversion": "14", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb" - ] - }, { "kernelversion": "14", "kernelrelease": "4.15.0-1014-gcp", @@ -13761,15 +13635,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb" ] }, + { + "kernelversion": "14", + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb" + ] + }, { "kernelversion": "16", "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb" ] }, { @@ -13777,10 +13662,10 @@ "kernelrelease": "4.15.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" ] }, { @@ -13788,10 +13673,10 @@ "kernelrelease": "4.15.0-1015-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" ] }, { @@ -13799,10 +13684,10 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" ] }, { @@ -13810,10 +13695,10 @@ "kernelrelease": "4.15.0-1016-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" ] }, { @@ -13821,10 +13706,10 @@ "kernelrelease": "4.15.0-1016-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" ] }, { @@ -13832,10 +13717,10 @@ "kernelrelease": "4.15.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" ] }, { @@ -13844,9 +13729,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" ] }, { @@ -13855,9 +13740,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" ] }, { @@ -13865,10 +13750,10 @@ "kernelrelease": "4.15.0-1017-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb" ] }, { @@ -13877,9 +13762,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" ] }, { @@ -13898,9 +13783,9 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" ] }, @@ -13909,10 +13794,10 @@ "kernelrelease": "4.15.0-1018-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb" ] }, { @@ -13920,21 +13805,10 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "4.15.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb" ] }, { @@ -13942,10 +13816,10 @@ "kernelrelease": "4.15.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" ] }, { @@ -13953,10 +13827,21 @@ "kernelrelease": "4.15.0-1019-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "4.15.0-1019-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" ] }, { @@ -13964,10 +13849,10 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb" ] }, { @@ -13975,10 +13860,10 @@ "kernelrelease": "4.15.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb" ] }, { @@ -13986,10 +13871,10 @@ "kernelrelease": "4.15.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { @@ -13998,9 +13883,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { @@ -14008,10 +13893,10 @@ "kernelrelease": "4.15.0-1021-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { @@ -14020,9 +13905,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { @@ -14030,9 +13915,9 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" ] }, @@ -14041,10 +13926,10 @@ "kernelrelease": "4.15.0-1021-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb" ] }, { @@ -14052,10 +13937,10 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" ] }, { @@ -14063,10 +13948,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" ] }, { @@ -14085,10 +13970,10 @@ "kernelrelease": "4.15.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { @@ -14096,21 +13981,10 @@ "kernelrelease": "4.15.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" ] }, { @@ -14118,21 +13992,32 @@ "kernelrelease": "4.15.0-1023-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" ] }, + { + "kernelversion": "24", + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" + ] + }, { "kernelversion": "26", "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" ] }, { @@ -14140,32 +14025,32 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb" ] }, { @@ -14173,10 +14058,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" ] }, { @@ -14184,9 +14069,9 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb" ] }, @@ -14206,10 +14091,10 @@ "kernelrelease": "4.15.0-1026-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" ] }, { @@ -14217,9 +14102,9 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" ] }, @@ -14228,9 +14113,9 @@ "kernelrelease": "4.15.0-1027-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, @@ -14239,10 +14124,10 @@ "kernelrelease": "4.15.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, { @@ -14250,10 +14135,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" ] }, { @@ -14261,9 +14146,9 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb" ] }, @@ -14274,8 +14159,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" ] }, { @@ -14284,9 +14169,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb" ] }, { @@ -14294,10 +14179,10 @@ "kernelrelease": "4.15.0-1028-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" ] }, { @@ -14305,10 +14190,10 @@ "kernelrelease": "4.15.0-1028-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" ] }, { @@ -14316,10 +14201,10 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" ] }, { @@ -14327,10 +14212,10 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" ] }, { @@ -14340,8 +14225,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" ] }, { @@ -14349,10 +14234,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" ] }, { @@ -14361,9 +14246,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" ] }, { @@ -14371,10 +14256,10 @@ "kernelrelease": "4.15.0-1030-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" ] }, { @@ -14382,9 +14267,9 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb" ] }, @@ -14393,10 +14278,10 @@ "kernelrelease": "4.15.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" ] }, { @@ -14404,9 +14289,9 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" ] }, @@ -14415,10 +14300,10 @@ "kernelrelease": "4.15.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" ] }, { @@ -14427,31 +14312,31 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1032-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" ] }, { @@ -14459,10 +14344,10 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb" ] }, { @@ -14470,21 +14355,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" ] }, { @@ -14492,10 +14366,10 @@ "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { @@ -14503,21 +14377,32 @@ "kernelrelease": "4.15.0-1033-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" ] }, + { + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" + ] + }, { "kernelversion": "38", "kernelrelease": "4.15.0-1033-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb" ] }, { @@ -14525,21 +14410,21 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-1034-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1034-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" ] }, { @@ -14548,20 +14433,20 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-1034-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1034-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" ] }, { @@ -14569,10 +14454,10 @@ "kernelrelease": "4.15.0-1034-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb" ] }, { @@ -14580,10 +14465,10 @@ "kernelrelease": "4.15.0-1034-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb" ] }, { @@ -14602,10 +14487,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" ] }, { @@ -14613,10 +14498,10 @@ "kernelrelease": "4.15.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" ] }, { @@ -14624,10 +14509,10 @@ "kernelrelease": "4.15.0-1035-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" ] }, { @@ -14635,9 +14520,9 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" ] }, @@ -14647,9 +14532,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" ] }, { @@ -14657,10 +14542,10 @@ "kernelrelease": "4.15.0-1036-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" ] }, { @@ -14669,9 +14554,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" ] }, { @@ -14679,21 +14564,32 @@ "kernelrelease": "4.15.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" ] }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + ] + }, { "kernelversion": "39", "kernelrelease": "4.15.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb" ] }, { @@ -14701,10 +14597,10 @@ "kernelrelease": "4.15.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb" ] }, { @@ -14712,21 +14608,10 @@ "kernelrelease": "4.15.0-1037-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" ] }, { @@ -14734,10 +14619,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb" ] }, { @@ -14746,9 +14631,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb" ] }, { @@ -14756,10 +14641,10 @@ "kernelrelease": "4.15.0-1038-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" ] }, { @@ -14767,9 +14652,9 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" ] }, @@ -14780,8 +14665,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" ] }, { @@ -14789,10 +14674,10 @@ "kernelrelease": "4.15.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" ] }, { @@ -14800,43 +14685,43 @@ "kernelrelease": "4.15.0-1039-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1039-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1039-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1039-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1039-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1040-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" ] }, { @@ -14844,21 +14729,21 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1040-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" ] }, { @@ -14866,32 +14751,32 @@ "kernelrelease": "4.15.0-1041-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1041-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" ] }, { @@ -14901,19 +14786,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb" ] }, { @@ -14922,20 +14796,31 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" ] }, + { + "kernelversion": "44", + "kernelrelease": "4.15.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" + ] + }, { "kernelversion": "42", "kernelrelease": "4.15.0-1042-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" ] }, { @@ -14943,10 +14828,10 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb" ] }, { @@ -14954,9 +14839,9 @@ "kernelrelease": "4.15.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" ] }, @@ -14965,9 +14850,9 @@ "kernelrelease": "4.15.0-1043-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb" ] }, @@ -14977,31 +14862,31 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1044-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1044-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb" ] }, { @@ -15009,10 +14894,10 @@ "kernelrelease": "4.15.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" ] }, { @@ -15020,10 +14905,10 @@ "kernelrelease": "4.15.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb" ] }, { @@ -15031,10 +14916,10 @@ "kernelrelease": "4.15.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" ] }, { @@ -15042,10 +14927,10 @@ "kernelrelease": "4.15.0-1045-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb" ] }, { @@ -15053,9 +14938,9 @@ "kernelrelease": "4.15.0-1045-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" ] }, @@ -15064,10 +14949,10 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb" ] }, { @@ -15076,31 +14961,31 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-1046-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1046-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-1046-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1046-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" ] }, { @@ -15108,10 +14993,10 @@ "kernelrelease": "4.15.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb" ] }, { @@ -15119,8 +15004,8 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" ] @@ -15130,21 +15015,10 @@ "kernelrelease": "4.15.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "4.15.0-1047-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" ] }, { @@ -15158,15 +15032,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" ] }, + { + "kernelversion": "51", + "kernelrelease": "4.15.0-1047-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + ] + }, { "kernelversion": "50", "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" ] }, { @@ -15196,10 +15081,10 @@ "kernelrelease": "4.15.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" ] }, { @@ -15207,8 +15092,8 @@ "kernelrelease": "4.15.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] @@ -15219,9 +15104,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] }, { @@ -15230,9 +15115,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" ] }, { @@ -15240,10 +15125,10 @@ "kernelrelease": "4.15.0-1050-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" ] }, { @@ -15251,10 +15136,10 @@ "kernelrelease": "4.15.0-1050-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" ] }, { @@ -15263,9 +15148,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" ] }, { @@ -15273,10 +15158,10 @@ "kernelrelease": "4.15.0-1050-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" ] }, { @@ -15284,10 +15169,10 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" ] }, { @@ -15296,9 +15181,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { @@ -15306,10 +15191,10 @@ "kernelrelease": "4.15.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" ] }, { @@ -15317,10 +15202,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" ] }, { @@ -15328,10 +15213,10 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" ] }, { @@ -15339,9 +15224,9 @@ "kernelrelease": "4.15.0-1052-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb" ] }, @@ -15350,10 +15235,10 @@ "kernelrelease": "4.15.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" ] }, { @@ -15361,10 +15246,10 @@ "kernelrelease": "4.15.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" ] }, { @@ -15372,10 +15257,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb" ] }, { @@ -15383,10 +15268,10 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb" ] }, { @@ -15394,10 +15279,10 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb" ] }, { @@ -15405,10 +15290,10 @@ "kernelrelease": "4.15.0-1055-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb" ] }, { @@ -15417,8 +15302,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb" ] }, @@ -15427,10 +15312,10 @@ "kernelrelease": "4.15.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" ] }, { @@ -15438,10 +15323,10 @@ "kernelrelease": "4.15.0-1056-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb" ] }, { @@ -15450,8 +15335,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" ] }, @@ -15460,10 +15345,10 @@ "kernelrelease": "4.15.0-1057-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" ] }, { @@ -15471,32 +15356,32 @@ "kernelrelease": "4.15.0-1057-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" ] }, { "kernelversion": "62", - "kernelrelease": "4.15.0-1057-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1057-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "4.15.0-1057-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1057-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" ] }, { @@ -15505,9 +15390,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb" ] }, { @@ -15515,9 +15400,9 @@ "kernelrelease": "4.15.0-1058-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" ] }, @@ -15526,10 +15411,10 @@ "kernelrelease": "4.15.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" ] }, { @@ -15537,10 +15422,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" ] }, { @@ -15548,10 +15433,10 @@ "kernelrelease": "4.15.0-1059-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" ] }, { @@ -15560,9 +15445,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" ] }, { @@ -15570,10 +15455,10 @@ "kernelrelease": "4.15.0-1059-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" ] }, { @@ -15581,10 +15466,10 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb" ] @@ -15594,9 +15479,9 @@ "kernelrelease": "4.15.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" ] }, @@ -15605,9 +15490,9 @@ "kernelrelease": "4.15.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" ] }, @@ -15616,10 +15501,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" ] }, { @@ -15627,10 +15512,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb" ] }, { @@ -15638,10 +15523,10 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] }, { @@ -15650,9 +15535,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" ] }, { @@ -15660,10 +15545,10 @@ "kernelrelease": "4.15.0-1063-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" ] }, { @@ -15671,10 +15556,10 @@ "kernelrelease": "4.15.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" ] }, { @@ -15683,9 +15568,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" ] }, { @@ -15693,10 +15578,10 @@ "kernelrelease": "4.15.0-1064-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" ] }, { @@ -15704,10 +15589,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" ] }, { @@ -15715,10 +15600,10 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, { @@ -15727,9 +15612,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" ] }, { @@ -15737,10 +15622,10 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" ] }, { @@ -15748,10 +15633,10 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb" ] }, { @@ -15759,10 +15644,10 @@ "kernelrelease": "4.15.0-1066-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb" ] }, { @@ -15770,10 +15655,10 @@ "kernelrelease": "4.15.0-1066-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" ] }, { @@ -15781,8 +15666,8 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb" ] @@ -15792,9 +15677,9 @@ "kernelrelease": "4.15.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" ] }, @@ -15803,10 +15688,10 @@ "kernelrelease": "4.15.0-1067-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" ] }, { @@ -15815,9 +15700,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" ] }, { @@ -15826,9 +15711,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" ] }, { @@ -15836,10 +15721,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" ] }, { @@ -15847,10 +15732,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" ] }, { @@ -15858,9 +15743,9 @@ "kernelrelease": "4.15.0-1069-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" ] }, @@ -15869,10 +15754,10 @@ "kernelrelease": "4.15.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" ] }, { @@ -15880,9 +15765,9 @@ "kernelrelease": "4.15.0-1069-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" ] }, @@ -15892,9 +15777,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb" ] }, { @@ -15902,8 +15787,8 @@ "kernelrelease": "4.15.0-1070-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" ] @@ -15914,8 +15799,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" ] }, @@ -15924,10 +15809,10 @@ "kernelrelease": "4.15.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" ] }, { @@ -15936,9 +15821,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" ] }, { @@ -15946,10 +15831,10 @@ "kernelrelease": "4.15.0-1072-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb" ] }, { @@ -15968,10 +15853,10 @@ "kernelrelease": "4.15.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" ] }, { @@ -15979,9 +15864,9 @@ "kernelrelease": "4.15.0-1073-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" ] }, @@ -15991,9 +15876,9 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" ] }, { @@ -16001,10 +15886,10 @@ "kernelrelease": "4.15.0-1073-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb" ] }, { @@ -16012,10 +15897,10 @@ "kernelrelease": "4.15.0-1074-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" ] }, { @@ -16023,10 +15908,10 @@ "kernelrelease": "4.15.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" ] }, { @@ -16034,9 +15919,9 @@ "kernelrelease": "4.15.0-1075-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" ] }, @@ -16045,10 +15930,10 @@ "kernelrelease": "4.15.0-1076-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb" ] }, { @@ -16056,10 +15941,10 @@ "kernelrelease": "4.15.0-1076-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" ] }, { @@ -16067,10 +15952,10 @@ "kernelrelease": "4.15.0-1076-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" ] }, { @@ -16079,31 +15964,31 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb" ] }, { "kernelversion": "82", - "kernelrelease": "4.15.0-1077-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1077-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" ] }, { "kernelversion": "82", - "kernelrelease": "4.15.0-1077-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1077-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" ] }, { @@ -16111,9 +15996,9 @@ "kernelrelease": "4.15.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb" ] }, @@ -16122,10 +16007,10 @@ "kernelrelease": "4.15.0-1078-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" ] }, { @@ -16133,10 +16018,10 @@ "kernelrelease": "4.15.0-1078-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" ] }, { @@ -16144,10 +16029,10 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" ] }, { @@ -16155,10 +16040,10 @@ "kernelrelease": "4.15.0-1079-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" ] }, { @@ -16166,10 +16051,10 @@ "kernelrelease": "4.15.0-1079-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" ] }, { @@ -16178,9 +16063,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb" ] }, { @@ -16188,12 +16073,12 @@ "kernelrelease": "4.15.0-108", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" ] }, { @@ -16202,9 +16087,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" ] }, { @@ -16212,10 +16097,10 @@ "kernelrelease": "4.15.0-1080-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb" ] }, { @@ -16225,8 +16110,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" ] }, { @@ -16234,9 +16119,9 @@ "kernelrelease": "4.15.0-1081-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" ] }, @@ -16245,10 +16130,10 @@ "kernelrelease": "4.15.0-1081-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb" ] }, { @@ -16256,10 +16141,10 @@ "kernelrelease": "4.15.0-1081-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" ] }, { @@ -16269,8 +16154,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" ] }, { @@ -16278,8 +16163,8 @@ "kernelrelease": "4.15.0-1082-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" ] @@ -16291,8 +16176,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" ] }, { @@ -16301,9 +16186,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" ] }, { @@ -16311,10 +16196,10 @@ "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" ] }, { @@ -16322,10 +16207,10 @@ "kernelrelease": "4.15.0-1083-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" ] }, { @@ -16333,10 +16218,10 @@ "kernelrelease": "4.15.0-1083-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb" ] }, { @@ -16345,9 +16230,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" ] }, { @@ -16357,8 +16242,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" ] }, { @@ -16367,9 +16252,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" ] }, { @@ -16377,10 +16262,10 @@ "kernelrelease": "4.15.0-1085-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" ] }, { @@ -16388,9 +16273,9 @@ "kernelrelease": "4.15.0-1086-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb" ] }, @@ -16400,9 +16285,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb" ] }, { @@ -16410,9 +16295,9 @@ "kernelrelease": "4.15.0-1086-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" ] }, @@ -16421,10 +16306,10 @@ "kernelrelease": "4.15.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" ] }, { @@ -16432,10 +16317,10 @@ "kernelrelease": "4.15.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" ] }, { @@ -16443,8 +16328,8 @@ "kernelrelease": "4.15.0-1087-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb" ] @@ -16454,10 +16339,10 @@ "kernelrelease": "4.15.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" ] }, { @@ -16465,10 +16350,10 @@ "kernelrelease": "4.15.0-1089-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" ] }, { @@ -16476,10 +16361,10 @@ "kernelrelease": "4.15.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" ] }, { @@ -16488,9 +16373,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" ] }, { @@ -16498,12 +16383,12 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb" ] }, { @@ -16511,10 +16396,10 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb" ] }, { @@ -16522,10 +16407,10 @@ "kernelrelease": "4.15.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" ] }, { @@ -16533,10 +16418,10 @@ "kernelrelease": "4.15.0-1090-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" ] }, { @@ -16545,9 +16430,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb" ] }, { @@ -16556,8 +16441,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb" ] }, @@ -16566,10 +16451,10 @@ "kernelrelease": "4.15.0-1091-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, { @@ -16577,10 +16462,10 @@ "kernelrelease": "4.15.0-1091-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb" ] }, { @@ -16588,10 +16473,10 @@ "kernelrelease": "4.15.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb" ] }, { @@ -16599,10 +16484,10 @@ "kernelrelease": "4.15.0-1091-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" ] }, { @@ -16611,8 +16496,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb" ] }, @@ -16622,9 +16507,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb" ] }, { @@ -16632,9 +16517,9 @@ "kernelrelease": "4.15.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb" ] }, @@ -16643,10 +16528,10 @@ "kernelrelease": "4.15.0-1092-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" ] }, { @@ -16654,32 +16539,32 @@ "kernelrelease": "4.15.0-1093-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb" ] }, { "kernelversion": "103", - "kernelrelease": "4.15.0-1093-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1093-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" ] }, { "kernelversion": "103", - "kernelrelease": "4.15.0-1093-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1093-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb" ] }, { @@ -16687,8 +16572,8 @@ "kernelrelease": "4.15.0-1093-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" ] @@ -16698,10 +16583,10 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" ] }, { @@ -16709,10 +16594,10 @@ "kernelrelease": "4.15.0-1094-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb" ] }, { @@ -16720,10 +16605,10 @@ "kernelrelease": "4.15.0-1094-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" ] }, { @@ -16731,8 +16616,8 @@ "kernelrelease": "4.15.0-1094-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" ] @@ -16742,10 +16627,10 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" ] }, { @@ -16753,9 +16638,9 @@ "kernelrelease": "4.15.0-1095-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" ] }, @@ -16775,10 +16660,10 @@ "kernelrelease": "4.15.0-1095-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" ] }, { @@ -16786,9 +16671,9 @@ "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" ] }, @@ -16797,9 +16682,9 @@ "kernelrelease": "4.15.0-1096-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" ] }, @@ -16808,10 +16693,10 @@ "kernelrelease": "4.15.0-1096-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb" ] }, { @@ -16819,10 +16704,10 @@ "kernelrelease": "4.15.0-1096-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" ] }, { @@ -16830,10 +16715,10 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" ] }, { @@ -16841,10 +16726,10 @@ "kernelrelease": "4.15.0-1097-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" ] }, { @@ -16852,10 +16737,10 @@ "kernelrelease": "4.15.0-1097-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" ] }, { @@ -16863,9 +16748,9 @@ "kernelrelease": "4.15.0-1097-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" ] }, @@ -16874,10 +16759,10 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" ] }, { @@ -16886,9 +16771,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" ] }, { @@ -16896,10 +16781,10 @@ "kernelrelease": "4.15.0-1098-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" ] }, { @@ -16907,10 +16792,10 @@ "kernelrelease": "4.15.0-1098-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb" ] }, { @@ -16918,10 +16803,10 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { @@ -16929,10 +16814,10 @@ "kernelrelease": "4.15.0-1099-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb" ] }, { @@ -16941,9 +16826,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb" ] }, { @@ -16951,10 +16836,10 @@ "kernelrelease": "4.15.0-1099-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" ] }, { @@ -16963,9 +16848,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" ] }, { @@ -16973,9 +16858,9 @@ "kernelrelease": "4.15.0-1100-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" ] }, @@ -16984,10 +16869,10 @@ "kernelrelease": "4.15.0-1100-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" ] }, { @@ -16995,10 +16880,10 @@ "kernelrelease": "4.15.0-1100-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" ] }, { @@ -17006,9 +16891,9 @@ "kernelrelease": "4.15.0-1101-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" ] }, @@ -17017,10 +16902,10 @@ "kernelrelease": "4.15.0-1101-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb" ] }, { @@ -17028,32 +16913,32 @@ "kernelrelease": "4.15.0-1101-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" ] }, { - "kernelversion": "109", - "kernelrelease": "4.15.0-1102-aws", - "target": "ubuntu-aws", + "kernelversion": "112", + "kernelrelease": "4.15.0-1101-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb" ] }, { - "kernelversion": "113", - "kernelrelease": "4.15.0-1102-oem", - "target": "ubuntu-oem", + "kernelversion": "109", + "kernelrelease": "4.15.0-1102-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" ] }, { @@ -17061,21 +16946,32 @@ "kernelrelease": "4.15.0-1102-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" ] }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1102-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" + ] + }, { "kernelversion": "104", "kernelrelease": "4.15.0-1102-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" ] }, { @@ -17083,32 +16979,32 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1103-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1103-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1103-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1103-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { @@ -17116,9 +17012,9 @@ "kernelrelease": "4.15.0-1103-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb" ] }, @@ -17127,10 +17023,10 @@ "kernelrelease": "4.15.0-1104-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb" ] }, { @@ -17139,9 +17035,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" ] }, { @@ -17149,10 +17045,10 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" ] }, { @@ -17160,9 +17056,9 @@ "kernelrelease": "4.15.0-1106-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" ] }, @@ -17171,10 +17067,10 @@ "kernelrelease": "4.15.0-1106-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb" ] }, { @@ -17183,9 +17079,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb" ] }, { @@ -17193,10 +17089,10 @@ "kernelrelease": "4.15.0-1107-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" ] }, { @@ -17204,10 +17100,10 @@ "kernelrelease": "4.15.0-1108-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" ] }, { @@ -17215,10 +17111,10 @@ "kernelrelease": "4.15.0-1108-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" ] }, { @@ -17226,10 +17122,10 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, { @@ -17238,8 +17134,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" ] }, @@ -17248,9 +17144,9 @@ "kernelrelease": "4.15.0-1109-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb" ] }, @@ -17259,10 +17155,10 @@ "kernelrelease": "4.15.0-1109-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb" ] }, { @@ -17270,12 +17166,12 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" ] }, { @@ -17284,9 +17180,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" ] }, { @@ -17295,9 +17191,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" ] }, { @@ -17306,9 +17202,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" ] }, { @@ -17316,10 +17212,10 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" ] }, { @@ -17327,9 +17223,9 @@ "kernelrelease": "4.15.0-1111-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" ] }, @@ -17338,10 +17234,10 @@ "kernelrelease": "4.15.0-1111-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" ] }, { @@ -17349,10 +17245,10 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb" ] }, { @@ -17360,10 +17256,10 @@ "kernelrelease": "4.15.0-1112-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb" ] }, { @@ -17371,10 +17267,10 @@ "kernelrelease": "4.15.0-1112-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" ] }, { @@ -17382,10 +17278,10 @@ "kernelrelease": "4.15.0-1112-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" ] }, { @@ -17393,10 +17289,10 @@ "kernelrelease": "4.15.0-1113-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" ] }, { @@ -17404,10 +17300,10 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb" ] }, { @@ -17415,10 +17311,10 @@ "kernelrelease": "4.15.0-1114-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" ] }, { @@ -17426,10 +17322,10 @@ "kernelrelease": "4.15.0-1114-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb" ] }, { @@ -17437,10 +17333,10 @@ "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" ] }, { @@ -17448,10 +17344,10 @@ "kernelrelease": "4.15.0-1115-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" ] }, { @@ -17460,9 +17356,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" ] }, { @@ -17470,9 +17366,9 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" ] }, @@ -17481,10 +17377,10 @@ "kernelrelease": "4.15.0-1118-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb" ] }, { @@ -17493,9 +17389,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb" ] }, { @@ -17503,10 +17399,10 @@ "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" ] }, { @@ -17514,10 +17410,10 @@ "kernelrelease": "4.15.0-1119-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" ] }, { @@ -17526,9 +17422,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb" ] }, { @@ -17536,11 +17432,11 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb" ] }, @@ -17549,9 +17445,9 @@ "kernelrelease": "4.15.0-1120-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" ] }, @@ -17562,8 +17458,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" ] }, { @@ -17571,10 +17467,21 @@ "kernelrelease": "4.15.0-1122-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" + ] + }, + { + "kernelversion": "127", + "kernelrelease": "4.15.0-1122-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb" ] }, { @@ -17582,8 +17489,8 @@ "kernelrelease": "4.15.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" ] @@ -17593,10 +17500,10 @@ "kernelrelease": "4.15.0-1123-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb" ] }, { @@ -17606,8 +17513,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb" ] }, { @@ -17615,10 +17522,10 @@ "kernelrelease": "4.15.0-1124-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb" ] }, { @@ -17626,10 +17533,10 @@ "kernelrelease": "4.15.0-1125-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" ] }, { @@ -17637,10 +17544,10 @@ "kernelrelease": "4.15.0-1126-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" ] }, { @@ -17649,9 +17556,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" ] }, { @@ -17659,10 +17566,10 @@ "kernelrelease": "4.15.0-1127-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb" ] }, { @@ -17670,10 +17577,10 @@ "kernelrelease": "4.15.0-1127-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb" ] }, { @@ -17681,10 +17588,10 @@ "kernelrelease": "4.15.0-1129-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb" ] }, { @@ -17692,10 +17599,21 @@ "kernelrelease": "4.15.0-1130-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" + ] + }, + { + "kernelversion": "146", + "kernelrelease": "4.15.0-1130-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb" ] }, { @@ -17703,10 +17621,10 @@ "kernelrelease": "4.15.0-1133-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb" ] }, { @@ -17715,9 +17633,20 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb" + ] + }, + { + "kernelversion": "147", + "kernelrelease": "4.15.0-1136-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" ] }, { @@ -17725,10 +17654,10 @@ "kernelrelease": "4.15.0-1136-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" ] }, { @@ -17736,10 +17665,10 @@ "kernelrelease": "4.15.0-1137-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb" ] }, { @@ -17747,10 +17676,21 @@ "kernelrelease": "4.15.0-1142-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb" + ] + }, + { + "kernelversion": "160", + "kernelrelease": "4.15.0-1145-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb" ] }, { @@ -17758,12 +17698,12 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" ] }, { @@ -17771,12 +17711,12 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" ] }, { @@ -17785,11 +17725,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" ] }, { @@ -17798,11 +17738,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb" ] }, { @@ -17810,12 +17750,12 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" ] }, { @@ -17823,12 +17763,12 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" ] }, { @@ -17836,12 +17776,12 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb" ] }, { @@ -17849,12 +17789,12 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" ] }, { @@ -17862,12 +17802,12 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb" ] }, { @@ -17875,12 +17815,12 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" ] }, { @@ -17888,12 +17828,12 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb" ] }, { @@ -17902,11 +17842,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" ] }, { @@ -17914,12 +17854,12 @@ "kernelrelease": "4.15.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb" ] }, { @@ -17927,12 +17867,12 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb" ] }, { @@ -17940,12 +17880,12 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" ] }, { @@ -17953,12 +17893,12 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" ] }, { @@ -17966,12 +17906,12 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" ] }, { @@ -17979,12 +17919,12 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb" ] }, { @@ -17992,11 +17932,11 @@ "kernelrelease": "4.15.0-144", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" ] }, @@ -18005,12 +17945,12 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, { @@ -18018,12 +17958,12 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb" ] }, { @@ -18032,11 +17972,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" ] }, { @@ -18044,12 +17984,12 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb" ] }, { @@ -18057,12 +17997,12 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" ] }, { @@ -18070,12 +18010,12 @@ "kernelrelease": "4.15.0-158", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" ] }, { @@ -18083,12 +18023,12 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb" ] }, { @@ -18096,12 +18036,12 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" ] }, { @@ -18110,11 +18050,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" ] }, { @@ -18122,12 +18062,12 @@ "kernelrelease": "4.15.0-163", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" ] }, { @@ -18135,12 +18075,38 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" + ] + }, + { + "kernelversion": "175", + "kernelrelease": "4.15.0-167", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb" + ] + }, + { + "kernelversion": "177", + "kernelrelease": "4.15.0-169", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb" ] }, { @@ -18150,10 +18116,23 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" + ] + }, + { + "kernelversion": "182", + "kernelrelease": "4.15.0-173", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb" ] }, { @@ -18163,10 +18142,49 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb" + ] + }, + { + "kernelversion": "185", + "kernelrelease": "4.15.0-176", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb" + ] + }, + { + "kernelversion": "186", + "kernelrelease": "4.15.0-177", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" + ] + }, + { + "kernelversion": "189", + "kernelrelease": "4.15.0-180", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb" ] }, { @@ -18174,12 +18192,25 @@ "kernelrelease": "4.15.0-184", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" + ] + }, + { + "kernelversion": "198", + "kernelrelease": "4.15.0-187", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb" ] }, { @@ -18187,12 +18218,12 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb" ] }, { @@ -18200,12 +18231,12 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" ] }, { @@ -18214,11 +18245,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb" ] }, { @@ -18226,12 +18257,12 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb" ] }, { @@ -18239,12 +18270,12 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb" ] }, { @@ -18252,12 +18283,12 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" ] }, { @@ -18266,11 +18297,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" ] }, { @@ -18278,12 +18309,12 @@ "kernelrelease": "4.15.0-34", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb" ] }, { @@ -18291,12 +18322,12 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb" ] }, { @@ -18304,12 +18335,12 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" ] }, { @@ -18317,12 +18348,12 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb" ] }, { @@ -18331,11 +18362,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" ] }, { @@ -18343,12 +18374,12 @@ "kernelrelease": "4.15.0-44", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb" ] }, { @@ -18356,12 +18387,12 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb" ] }, { @@ -18369,12 +18400,12 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb" ] }, { @@ -18382,12 +18413,12 @@ "kernelrelease": "4.15.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" ] }, { @@ -18395,12 +18426,12 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb" ] }, { @@ -18408,12 +18439,12 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb" ] }, { @@ -18421,12 +18452,12 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" ] }, { @@ -18434,12 +18465,12 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" ] }, { @@ -18447,12 +18478,12 @@ "kernelrelease": "4.15.0-55", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" ] }, { @@ -18460,12 +18491,12 @@ "kernelrelease": "4.15.0-58", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" ] }, { @@ -18473,12 +18504,12 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb" ] }, { @@ -18487,10 +18518,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" ] }, @@ -18499,12 +18530,12 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" ] }, { @@ -18512,12 +18543,12 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb" ] }, { @@ -18525,12 +18556,12 @@ "kernelrelease": "4.15.0-66", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" ] }, { @@ -18538,12 +18569,12 @@ "kernelrelease": "4.15.0-69", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb" ] }, { @@ -18551,12 +18582,12 @@ "kernelrelease": "4.15.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb" ] }, { @@ -18564,12 +18595,12 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb" ] }, { @@ -18577,12 +18608,12 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb" ] }, { @@ -18591,11 +18622,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb" ] }, { @@ -18603,10 +18634,10 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb" ] @@ -18616,9 +18647,9 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" @@ -18629,12 +18660,12 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb" ] }, { @@ -18642,12 +18673,12 @@ "kernelrelease": "4.15.0-99", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" ] }, { @@ -18655,9 +18686,9 @@ "kernelrelease": "4.18.0-1004-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb" ] }, @@ -18667,8 +18698,8 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb" ] }, @@ -18677,9 +18708,9 @@ "kernelrelease": "4.18.0-1006-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" ] }, @@ -18688,10 +18719,10 @@ "kernelrelease": "4.18.0-1006-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" ] }, { @@ -18699,10 +18730,10 @@ "kernelrelease": "4.18.0-1007-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb" ] }, { @@ -18710,10 +18741,10 @@ "kernelrelease": "4.18.0-1007-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb" ] }, { @@ -18722,9 +18753,9 @@ "target": "ubuntu-azure-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" ] }, { @@ -18732,10 +18763,10 @@ "kernelrelease": "4.18.0-1008-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -18743,10 +18774,10 @@ "kernelrelease": "4.18.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -18754,10 +18785,10 @@ "kernelrelease": "4.18.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" ] }, { @@ -18766,8 +18797,8 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" ] }, @@ -18776,10 +18807,10 @@ "kernelrelease": "4.18.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" ] }, { @@ -18787,9 +18818,9 @@ "kernelrelease": "4.18.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb" ] }, @@ -18799,9 +18830,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" ] }, { @@ -18809,9 +18840,9 @@ "kernelrelease": "4.18.0-1015-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" ] }, @@ -18820,10 +18851,10 @@ "kernelrelease": "4.18.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb" ] }, { @@ -18832,9 +18863,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" ] }, { @@ -18842,10 +18873,10 @@ "kernelrelease": "4.18.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb" ] }, { @@ -18865,8 +18896,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" ] }, @@ -18886,11 +18917,11 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" ] }, @@ -18899,12 +18930,12 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" ] }, { @@ -18913,11 +18944,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" ] }, { @@ -18925,12 +18956,12 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" ] }, { @@ -18938,12 +18969,12 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb" ] }, { @@ -18951,12 +18982,12 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" ] }, { @@ -18965,11 +18996,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, { @@ -18977,12 +19008,12 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" ] }, { @@ -18990,12 +19021,12 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" ] }, { @@ -19003,12 +19034,12 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" ] }, { @@ -19016,9 +19047,9 @@ "kernelrelease": "5.0.0-1007-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb" ] }, @@ -19027,10 +19058,10 @@ "kernelrelease": "5.0.0-1008-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb" ] }, { @@ -19039,8 +19070,8 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" ] }, @@ -19050,9 +19081,9 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb" ] }, { @@ -19062,8 +19093,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -19071,10 +19102,10 @@ "kernelrelease": "5.0.0-1011-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb" ] }, { @@ -19082,9 +19113,9 @@ "kernelrelease": "5.0.0-1012-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb" ] }, @@ -19093,8 +19124,8 @@ "kernelrelease": "5.0.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" ] @@ -19104,10 +19135,10 @@ "kernelrelease": "5.0.0-1013-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb" ] }, { @@ -19115,8 +19146,8 @@ "kernelrelease": "5.0.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" ] @@ -19126,10 +19157,10 @@ "kernelrelease": "5.0.0-1014-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" ] }, { @@ -19137,10 +19168,10 @@ "kernelrelease": "5.0.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19148,9 +19179,9 @@ "kernelrelease": "5.0.0-1018-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" ] }, @@ -19159,10 +19190,10 @@ "kernelrelease": "5.0.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -19170,9 +19201,9 @@ "kernelrelease": "5.0.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" ] }, @@ -19181,9 +19212,9 @@ "kernelrelease": "5.0.0-1021-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb" ] }, @@ -19192,10 +19223,10 @@ "kernelrelease": "5.0.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -19203,9 +19234,9 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" ] }, @@ -19214,10 +19245,10 @@ "kernelrelease": "5.0.0-1022-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -19225,10 +19256,10 @@ "kernelrelease": "5.0.0-1023-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb" ] }, { @@ -19238,8 +19269,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" ] }, { @@ -19247,10 +19278,10 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" ] }, { @@ -19259,9 +19290,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" ] }, { @@ -19269,10 +19300,10 @@ "kernelrelease": "5.0.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" ] }, { @@ -19280,10 +19311,10 @@ "kernelrelease": "5.0.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -19291,10 +19322,10 @@ "kernelrelease": "5.0.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -19302,10 +19333,10 @@ "kernelrelease": "5.0.0-1027-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" ] }, { @@ -19315,8 +19346,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" ] }, { @@ -19324,10 +19355,10 @@ "kernelrelease": "5.0.0-1028-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" ] }, { @@ -19335,10 +19366,10 @@ "kernelrelease": "5.0.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -19346,9 +19377,9 @@ "kernelrelease": "5.0.0-1029-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" ] }, @@ -19357,9 +19388,9 @@ "kernelrelease": "5.0.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" ] }, @@ -19369,8 +19400,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" ] }, @@ -19380,9 +19411,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" ] }, { @@ -19390,10 +19421,10 @@ "kernelrelease": "5.0.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb" ] }, { @@ -19402,9 +19433,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" ] }, { @@ -19412,9 +19443,9 @@ "kernelrelease": "5.0.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb" ] }, @@ -19424,9 +19455,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb" ] }, { @@ -19434,10 +19465,10 @@ "kernelrelease": "5.0.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb" ] }, { @@ -19446,11 +19477,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb" ] }, { @@ -19458,12 +19489,12 @@ "kernelrelease": "5.0.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" ] }, { @@ -19471,12 +19502,12 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" ] }, { @@ -19484,12 +19515,12 @@ "kernelrelease": "5.0.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb" ] }, { @@ -19497,12 +19528,12 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb" ] }, { @@ -19510,12 +19541,12 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" ] }, { @@ -19523,11 +19554,11 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb" ] }, @@ -19536,11 +19567,11 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" ] }, @@ -19549,12 +19580,12 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb" ] }, { @@ -19562,12 +19593,12 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" ] }, { @@ -19576,11 +19607,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" ] }, { @@ -19588,11 +19619,11 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" ] }, @@ -19601,11 +19632,11 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" ] }, @@ -19614,12 +19645,12 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" ] }, { @@ -19627,10 +19658,10 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" ] }, { @@ -19638,9 +19669,9 @@ "kernelrelease": "5.0.0-61-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb" ] }, @@ -19649,10 +19680,10 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" ] }, { @@ -19660,10 +19691,10 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" ] }, { @@ -19673,8 +19704,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" ] }, { @@ -19682,32 +19713,32 @@ "kernelrelease": "5.3.0-1007-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1008-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1008-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" ] }, { @@ -19715,10 +19746,10 @@ "kernelrelease": "5.3.0-1009-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -19726,10 +19757,10 @@ "kernelrelease": "5.3.0-1009-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -19737,9 +19768,9 @@ "kernelrelease": "5.3.0-1010-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb" ] }, @@ -19748,10 +19779,10 @@ "kernelrelease": "5.3.0-1010-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -19759,10 +19790,10 @@ "kernelrelease": "5.3.0-1011-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" ] }, { @@ -19770,10 +19801,10 @@ "kernelrelease": "5.3.0-1012-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -19781,32 +19812,32 @@ "kernelrelease": "5.3.0-1012-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "5.3.0-1013-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1013-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" ] }, { "kernelversion": "14~18.04.1", - "kernelrelease": "5.3.0-1013-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1013-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -19814,10 +19845,10 @@ "kernelrelease": "5.3.0-1014-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { @@ -19825,10 +19856,10 @@ "kernelrelease": "5.3.0-1014-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { @@ -19836,10 +19867,10 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { @@ -19847,9 +19878,9 @@ "kernelrelease": "5.3.0-1016-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, @@ -19858,10 +19889,10 @@ "kernelrelease": "5.3.0-1016-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19869,10 +19900,21 @@ "kernelrelease": "5.3.0-1016-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "18~18.04.1", + "kernelrelease": "5.3.0-1017-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { @@ -19881,20 +19923,20 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { - "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1017-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelversion": "19~18.04.1", + "kernelrelease": "5.3.0-1018-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19902,21 +19944,10 @@ "kernelrelease": "5.3.0-1018-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" ] }, { @@ -19935,10 +19966,10 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" ] }, { @@ -19946,10 +19977,10 @@ "kernelrelease": "5.3.0-1019-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" ] }, { @@ -19957,10 +19988,10 @@ "kernelrelease": "5.3.0-1020-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -19968,10 +19999,10 @@ "kernelrelease": "5.3.0-1020-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" ] }, { @@ -19979,9 +20010,9 @@ "kernelrelease": "5.3.0-1022-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" ] }, @@ -19991,9 +20022,9 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" ] }, { @@ -20001,10 +20032,10 @@ "kernelrelease": "5.3.0-1024-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb" ] }, { @@ -20012,10 +20043,10 @@ "kernelrelease": "5.3.0-1026-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" ] }, { @@ -20023,32 +20054,32 @@ "kernelrelease": "5.3.0-1027-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1028-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb" ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1028-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" ] }, { @@ -20056,10 +20087,10 @@ "kernelrelease": "5.3.0-1028-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -20067,10 +20098,21 @@ "kernelrelease": "5.3.0-1029-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1030-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -20078,10 +20120,10 @@ "kernelrelease": "5.3.0-1030-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20090,20 +20132,9 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -20111,9 +20142,9 @@ "kernelrelease": "5.3.0-1031-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb" ] }, @@ -20122,10 +20153,10 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" ] }, { @@ -20134,8 +20165,8 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" ] }, @@ -20146,8 +20177,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -20155,10 +20186,10 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" ] }, { @@ -20166,10 +20197,10 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" ] }, { @@ -20177,9 +20208,9 @@ "kernelrelease": "5.3.0-1034-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" ] }, @@ -20188,10 +20219,10 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" ] }, { @@ -20200,9 +20231,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" ] }, { @@ -20210,12 +20241,12 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb" ] }, { @@ -20223,12 +20254,12 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" ] }, { @@ -20236,12 +20267,12 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" ] }, { @@ -20249,12 +20280,12 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" ] }, { @@ -20262,12 +20293,12 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb" ] }, { @@ -20275,12 +20306,12 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" ] }, { @@ -20288,12 +20319,12 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" ] }, { @@ -20301,12 +20332,12 @@ "kernelrelease": "5.3.0-42-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" ] }, { @@ -20314,12 +20345,12 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb" ] }, { @@ -20327,12 +20358,12 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb" ] }, { @@ -20340,12 +20371,12 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" ] }, { @@ -20354,11 +20385,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb" ] }, { @@ -20366,12 +20397,12 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb" ] }, { @@ -20379,12 +20410,12 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" ] }, { @@ -20392,12 +20423,12 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" ] }, { @@ -20406,11 +20437,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" ] }, { @@ -20418,12 +20449,12 @@ "kernelrelease": "5.3.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb" ] }, { @@ -20432,11 +20463,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb" ] }, { @@ -20444,12 +20475,12 @@ "kernelrelease": "5.3.0-67-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" ] }, { @@ -20457,12 +20488,12 @@ "kernelrelease": "5.3.0-68-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" ] }, { @@ -20470,12 +20501,12 @@ "kernelrelease": "5.3.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" ] }, { @@ -20483,12 +20514,12 @@ "kernelrelease": "5.3.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb" ] }, { @@ -20497,11 +20528,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" ] }, { @@ -20509,11 +20540,11 @@ "kernelrelease": "5.3.0-73-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb" ] }, @@ -20522,12 +20553,12 @@ "kernelrelease": "5.3.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb" ] }, { @@ -20535,12 +20566,12 @@ "kernelrelease": "5.3.0-75-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb" ] }, { @@ -20548,10 +20579,10 @@ "kernelrelease": "5.3.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" ] @@ -20561,10 +20592,10 @@ "kernelrelease": "5.4.0-1003-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb" ] }, { @@ -20583,10 +20614,10 @@ "kernelrelease": "5.4.0-1004-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" ] }, { @@ -20594,10 +20625,10 @@ "kernelrelease": "5.4.0-1007-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb" ] }, { @@ -20605,9 +20636,9 @@ "kernelrelease": "5.4.0-1008-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" ] }, @@ -20616,10 +20647,10 @@ "kernelrelease": "5.4.0-1009-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" ] }, { @@ -20627,8 +20658,8 @@ "kernelrelease": "5.4.0-1010-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" ] @@ -20650,9 +20681,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -20660,10 +20691,10 @@ "kernelrelease": "5.4.0-1013-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" ] }, { @@ -20671,9 +20702,9 @@ "kernelrelease": "5.4.0-1014-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb" ] }, @@ -20682,10 +20713,10 @@ "kernelrelease": "5.4.0-1015-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" ] }, { @@ -20693,10 +20724,10 @@ "kernelrelease": "5.4.0-1016-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb" ] }, { @@ -20704,10 +20735,10 @@ "kernelrelease": "5.4.0-1018-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" ] }, { @@ -20716,31 +20747,31 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1021-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1021-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" ] }, { @@ -20748,9 +20779,9 @@ "kernelrelease": "5.4.0-1021-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb" ] }, @@ -20760,20 +20791,20 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1022-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20781,21 +20812,21 @@ "kernelrelease": "5.4.0-1022-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1022-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20803,10 +20834,10 @@ "kernelrelease": "5.4.0-1022-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" ] }, { @@ -20816,8 +20847,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" ] }, { @@ -20825,10 +20856,10 @@ "kernelrelease": "5.4.0-1023-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -20836,9 +20867,9 @@ "kernelrelease": "5.4.0-1024-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb" ] }, @@ -20847,10 +20878,10 @@ "kernelrelease": "5.4.0-1024-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20858,10 +20889,10 @@ "kernelrelease": "5.4.0-1024-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" ] }, { @@ -20869,10 +20900,21 @@ "kernelrelease": "5.4.0-1024-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" + ] + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { @@ -20880,8 +20922,8 @@ "kernelrelease": "5.4.0-1025-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] @@ -20891,43 +20933,32 @@ "kernelrelease": "5.4.0-1025-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1025-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1025-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -20935,9 +20966,9 @@ "kernelrelease": "5.4.0-1025-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" ] }, @@ -20947,8 +20978,8 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" ] }, @@ -20957,10 +20988,10 @@ "kernelrelease": "5.4.0-1026-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -20968,10 +20999,10 @@ "kernelrelease": "5.4.0-1027-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { @@ -20979,21 +21010,21 @@ "kernelrelease": "5.4.0-1027-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1028-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { @@ -21001,21 +21032,21 @@ "kernelrelease": "5.4.0-1028-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1028-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -21023,21 +21054,21 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb" ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1029-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21045,21 +21076,21 @@ "kernelrelease": "5.4.0-1029-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1029-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21068,9 +21099,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb" ] }, { @@ -21078,9 +21109,9 @@ "kernelrelease": "5.4.0-1031-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb" ] }, @@ -21089,10 +21120,10 @@ "kernelrelease": "5.4.0-1031-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" ] }, { @@ -21100,10 +21131,10 @@ "kernelrelease": "5.4.0-1032-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21112,9 +21143,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21122,10 +21153,10 @@ "kernelrelease": "5.4.0-1033-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21133,10 +21164,10 @@ "kernelrelease": "5.4.0-1033-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21146,8 +21177,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1033-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] }, { @@ -21155,10 +21197,10 @@ "kernelrelease": "5.4.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] }, { @@ -21166,21 +21208,10 @@ "kernelrelease": "5.4.0-1033-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1033-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" ] }, { @@ -21190,8 +21221,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" ] }, { @@ -21199,32 +21230,32 @@ "kernelrelease": "5.4.0-1034-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1035-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1035-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -21233,9 +21264,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" ] }, { @@ -21244,31 +21275,31 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1036-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb" ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1036-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb" ] }, { @@ -21276,10 +21307,10 @@ "kernelrelease": "5.4.0-1036-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" ] }, { @@ -21287,10 +21318,10 @@ "kernelrelease": "5.4.0-1036-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" ] }, { @@ -21300,8 +21331,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { @@ -21310,31 +21341,31 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1037-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1037-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1037-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1037-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21342,9 +21373,9 @@ "kernelrelease": "5.4.0-1037-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb" ] }, @@ -21353,10 +21384,10 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb" ] }, { @@ -21376,9 +21407,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { @@ -21386,32 +21417,32 @@ "kernelrelease": "5.4.0-1038-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1039-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1039-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21421,8 +21452,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21430,9 +21461,9 @@ "kernelrelease": "5.4.0-1039-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb" ] }, @@ -21441,9 +21472,9 @@ "kernelrelease": "5.4.0-1039-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" ] }, @@ -21452,34 +21483,34 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" ] }, { "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1040-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1040-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" ] }, { "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1040-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1040-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { @@ -21487,9 +21518,9 @@ "kernelrelease": "5.4.0-1040-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" ] }, @@ -21498,10 +21529,10 @@ "kernelrelease": "5.4.0-1041-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, { @@ -21510,9 +21541,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1041-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" ] }, { @@ -21526,26 +21568,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" ] }, - { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" - ] - }, { "kernelversion": "45~18.04.1", "kernelrelease": "5.4.0-1042-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" ] }, { @@ -21555,8 +21586,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" ] }, { @@ -21564,32 +21595,21 @@ "kernelrelease": "5.4.0-1042-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb" ] }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb" - ] - }, { "kernelversion": "45~18.04.1", "kernelrelease": "5.4.0-1043-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, { @@ -21597,10 +21617,21 @@ "kernelrelease": "5.4.0-1043-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + ] + }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1043-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -21609,9 +21640,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb" ] }, { @@ -21620,9 +21651,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" ] }, { @@ -21630,10 +21661,10 @@ "kernelrelease": "5.4.0-1044-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -21641,10 +21672,10 @@ "kernelrelease": "5.4.0-1044-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -21652,10 +21683,10 @@ "kernelrelease": "5.4.0-1044-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb" ] }, { @@ -21663,10 +21694,10 @@ "kernelrelease": "5.4.0-1044-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb" ] }, { @@ -21674,21 +21705,21 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1046-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -21696,21 +21727,21 @@ "kernelrelease": "5.4.0-1046-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1046-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -21718,10 +21749,10 @@ "kernelrelease": "5.4.0-1046-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" ] }, { @@ -21729,10 +21760,21 @@ "kernelrelease": "5.4.0-1046-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" + ] + }, + { + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1047-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" ] }, { @@ -21740,21 +21782,21 @@ "kernelrelease": "5.4.0-1047-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" ] }, { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-aws-5.4", + "kernelversion": "50~18.04.1", + "kernelrelease": "5.4.0-1048-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb" ] }, { @@ -21762,21 +21804,21 @@ "kernelrelease": "5.4.0-1048-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" ] }, { - "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "51~18.04.1", + "kernelrelease": "5.4.0-1048-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb" ] }, { @@ -21784,32 +21826,43 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" ] }, + { + "kernelversion": "51~18.04.1", + "kernelrelease": "5.4.0-1049-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" + ] + }, { "kernelversion": "51~18.04.1", "kernelrelease": "5.4.0-1049-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1049-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -21817,21 +21870,10 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -21839,32 +21881,32 @@ "kernelrelease": "5.4.0-1049-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1051-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1051-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" ] }, { @@ -21873,9 +21915,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb" ] }, { @@ -21883,32 +21925,32 @@ "kernelrelease": "5.4.0-1051-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1052-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb" ] }, { "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1052-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" ] }, { @@ -21916,9 +21958,9 @@ "kernelrelease": "5.4.0-1052-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" ] }, @@ -21927,10 +21969,10 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" ] }, { @@ -21938,9 +21980,9 @@ "kernelrelease": "5.4.0-1053-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb" ] }, @@ -21950,31 +21992,31 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1054-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1054-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { @@ -21983,31 +22025,31 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1055-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1055-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { @@ -22015,21 +22057,10 @@ "kernelrelease": "5.4.0-1055-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" ] }, { @@ -22037,21 +22068,21 @@ "kernelrelease": "5.4.0-1055-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1055-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" ] }, { @@ -22060,9 +22091,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + ] + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1056-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" ] }, { @@ -22070,10 +22112,10 @@ "kernelrelease": "5.4.0-1056-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" ] }, { @@ -22082,8 +22124,8 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" ] }, @@ -22094,30 +22136,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" ] }, { "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1057-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" ] }, { "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1057-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -22125,10 +22167,10 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" ] }, { @@ -22136,21 +22178,10 @@ "kernelrelease": "5.4.0-1058-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" ] }, { @@ -22158,32 +22189,32 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1059-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1059-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { @@ -22197,14 +22228,25 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" ] }, + { + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1059-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" + ] + }, { "kernelversion": "64~18.04.1", "kernelrelease": "5.4.0-1060-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" ] }, @@ -22214,9 +22256,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb" ] }, { @@ -22224,10 +22266,10 @@ "kernelrelease": "5.4.0-1062-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { @@ -22235,21 +22277,21 @@ "kernelrelease": "5.4.0-1062-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb" ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1065-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" ] }, { @@ -22257,21 +22299,21 @@ "kernelrelease": "5.4.0-1065-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1065-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" ] }, { @@ -22279,10 +22321,21 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "70~18.04.1", + "kernelrelease": "5.4.0-1067-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { @@ -22296,26 +22349,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" ] }, - { - "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" - ] - }, { "kernelversion": "71~18.04.1", "kernelrelease": "5.4.0-1067-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb" ] }, { @@ -22323,10 +22365,10 @@ "kernelrelease": "5.4.0-1068-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { @@ -22334,10 +22376,10 @@ "kernelrelease": "5.4.0-1068-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" ] }, { @@ -22345,10 +22387,10 @@ "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" ] }, { @@ -22356,12 +22398,12 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb" ] }, { @@ -22369,10 +22411,10 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb" ] }, { @@ -22380,21 +22422,10 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb" ] }, { @@ -22402,21 +22433,32 @@ "kernelrelease": "5.4.0-1072-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" ] }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + ] + }, { "kernelversion": "77~18.04.1", "kernelrelease": "5.4.0-1072-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22424,10 +22466,10 @@ "kernelrelease": "5.4.0-1072-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" ] }, { @@ -22447,8 +22489,8 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb" ] }, @@ -22458,9 +22500,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" ] }, { @@ -22468,10 +22510,21 @@ "kernelrelease": "5.4.0-1074-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "82~18.04.1", + "kernelrelease": "5.4.0-1076-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb" ] }, { @@ -22479,10 +22532,10 @@ "kernelrelease": "5.4.0-1076-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb" ] }, { @@ -22490,10 +22543,21 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb" ] }, { @@ -22502,20 +22566,42 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb" ] }, { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gcp-5.4", + "kernelversion": "86~18.04.1", + "kernelrelease": "5.4.0-1078-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb" + ] + }, + { + "kernelversion": "87~18.04.1", + "kernelrelease": "5.4.0-1080-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "87~18.04.1", + "kernelrelease": "5.4.0-1080-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" ] }, { @@ -22534,23 +22620,34 @@ "kernelrelease": "5.4.0-1083-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb" ] }, + { + "kernelversion": "90~18.04.1", + "kernelrelease": "5.4.0-1085-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb" + ] + }, { "kernelversion": "123~18.04.1", "kernelrelease": "5.4.0-109-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" ] }, { @@ -22558,12 +22655,12 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" ] }, { @@ -22571,12 +22668,25 @@ "kernelrelease": "5.4.0-117-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "136~18.04.1", + "kernelrelease": "5.4.0-120-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb" ] }, { @@ -22584,12 +22694,12 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb" ] }, { @@ -22597,12 +22707,12 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" ] }, { @@ -22610,11 +22720,11 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" ] }, @@ -22623,12 +22733,12 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb" ] }, { @@ -22636,11 +22746,11 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb" ] }, @@ -22649,11 +22759,11 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" ] }, @@ -22663,9 +22773,9 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb" ] @@ -22675,12 +22785,12 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" ] }, { @@ -22688,12 +22798,12 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb" ] }, { @@ -22701,12 +22811,12 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb" ] }, { @@ -22714,12 +22824,12 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" ] }, { @@ -22730,9 +22840,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" ] }, { @@ -22740,12 +22850,12 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb" ] }, { @@ -22755,10 +22865,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb" ] }, { @@ -22766,11 +22876,11 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" ] }, @@ -22779,12 +22889,12 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb" ] }, { @@ -22792,12 +22902,12 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" ] }, { @@ -22805,12 +22915,12 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb" ] }, { @@ -22818,12 +22928,12 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb" ] }, { @@ -22832,10 +22942,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" ] }, @@ -22844,12 +22954,12 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" ] }, { @@ -22857,12 +22967,12 @@ "kernelrelease": "5.4.0-74-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" ] }, { @@ -22870,12 +22980,12 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" ] }, { @@ -22883,12 +22993,12 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb" ] }, { @@ -22896,12 +23006,12 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb" ] }, { @@ -22909,12 +23019,12 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" ] }, { @@ -22922,12 +23032,12 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb" ] }, { @@ -22935,12 +23045,12 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb" ] }, { @@ -22948,12 +23058,12 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb" ] }, { @@ -22961,12 +23071,12 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb" ] }, { @@ -22974,12 +23084,12 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb" ] }, { @@ -22987,12 +23097,12 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" ] }, { @@ -23001,11 +23111,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb" ] }, { @@ -23014,9 +23124,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb" ] }, { @@ -23024,10 +23134,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" ] }, { @@ -23046,9 +23156,9 @@ "kernelrelease": "4.15.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb" ] }, @@ -23058,8 +23168,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb" ] }, @@ -23068,10 +23178,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" ] }, { @@ -23079,10 +23189,10 @@ "kernelrelease": "4.15.0-1030-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" ] }, { @@ -23091,9 +23201,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" ] }, { @@ -23101,10 +23211,10 @@ "kernelrelease": "4.15.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" ] }, { @@ -23123,12 +23233,12 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" ] }, { @@ -23137,11 +23247,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb" ] }, { @@ -23149,12 +23259,12 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" ] }, { @@ -23162,12 +23272,12 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, { @@ -23176,9 +23286,9 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -23186,12 +23296,12 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" ] }, { @@ -23199,10 +23309,10 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb" ] }, { @@ -23211,8 +23321,8 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" ] }, @@ -23222,9 +23332,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" ] }, { @@ -23233,9 +23343,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb" ] }, { @@ -23244,9 +23354,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" ] }, { @@ -23254,10 +23364,10 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" ] }, { @@ -23265,10 +23375,10 @@ "kernelrelease": "5.0.0-58-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" ] }, { @@ -23277,8 +23387,8 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" ] }, @@ -23289,8 +23399,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" ] }, { @@ -23299,9 +23409,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" ] }, { @@ -23310,9 +23420,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" ] }, { @@ -23331,10 +23441,10 @@ "kernelrelease": "5.4.0-1020-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" ] }, { @@ -23343,11 +23453,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] }, { @@ -23355,12 +23465,12 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb" ] }, { @@ -23368,10 +23478,10 @@ "kernelrelease": "4.15.0-1004-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" ] }, { @@ -23379,10 +23489,10 @@ "kernelrelease": "4.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" ] }, { @@ -23390,10 +23500,10 @@ "kernelrelease": "4.15.0-1007-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" ] }, { @@ -23401,23 +23511,12 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb" ] }, { @@ -23425,21 +23524,21 @@ "kernelrelease": "5.15.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-azure", - "target": "ubuntu-azure", + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { @@ -23447,32 +23546,21 @@ "kernelrelease": "5.15.0-1005-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-ibm", - "target": "ubuntu-ibm", + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" ] }, { @@ -23480,54 +23568,21 @@ "kernelrelease": "5.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb" ] }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.15.0-28", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28-generic_5.15.0-28.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-28_5.15.0-28.29_all.deb" - ] - }, { "kernelversion": "36+22.10.1", "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb" ] }, { @@ -23535,10 +23590,10 @@ "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" ] }, { @@ -23546,10 +23601,10 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" ] }, { @@ -23557,9 +23612,9 @@ "kernelrelease": "5.15.0-1003-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb" ] }, @@ -23568,10 +23623,10 @@ "kernelrelease": "5.15.0-1003-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb" ] }, { @@ -23579,10 +23634,21 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23590,10 +23656,10 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23603,19 +23669,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23623,32 +23678,32 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" ] }, { "kernelversion": "4", - "kernelrelease": "5.15.0-1004-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.15.0-1004-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb" ] }, { "kernelversion": "4", - "kernelrelease": "5.15.0-1004-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.15.0-1004-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb" ] }, { @@ -23657,9 +23712,31 @@ "target": "ubuntu-lowlatency", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.15.0-27", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb" + ] + }, + { + "kernelversion": "28", + "kernelrelease": "5.15.0-27-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" ] }, { @@ -23667,21 +23744,10 @@ "kernelrelease": "5.17.0-1003-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.10.0-1047-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1047-oem_5.10.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1047_5.10.0-1047.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb" ] }, { @@ -23689,76 +23755,21 @@ "kernelrelease": "5.10.0-1058-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb" ] }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" - ] - }, { "kernelversion": "32~20.04.1", "kernelrelease": "5.11.0-1029-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -23766,9 +23777,9 @@ "kernelrelease": "5.11.0-1029-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" ] }, @@ -23778,20 +23789,9 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "33~20.04.3", - "kernelrelease": "5.11.0-1029-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" ] }, { @@ -23799,75 +23799,10 @@ "kernelrelease": "5.11.0-1030-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb" - ] - }, - { - "kernelversion": "44~20.04.2", - "kernelrelease": "5.11.0-40-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.11.0-41-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.11.0-42-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-42_5.11.0-42.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-lowlatency_5.11.0-42.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-42-generic_5.11.0-42.46~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "47~20.04.2", - "kernelrelease": "5.11.0-43-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.11.0-60-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-60_5.11.0-60.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-lowlatency_5.11.0-60.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-60-generic_5.11.0-60.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" ] }, { @@ -23875,12 +23810,12 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" ] }, { @@ -23888,10 +23823,10 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" ] }, { @@ -23899,10 +23834,10 @@ "kernelrelease": "5.13.0-1014-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" ] }, { @@ -23912,8 +23847,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" ] }, { @@ -23921,9 +23856,9 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" ] }, @@ -23932,32 +23867,32 @@ "kernelrelease": "5.13.0-1016-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1018-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1018-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, { @@ -23965,10 +23900,10 @@ "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb" ] }, { @@ -23977,9 +23912,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" ] }, { @@ -23987,10 +23922,10 @@ "kernelrelease": "5.13.0-1019-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" ] }, { @@ -23998,10 +23933,10 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" ] }, { @@ -24009,9 +23944,9 @@ "kernelrelease": "5.13.0-1020-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb" ] }, @@ -24022,8 +23957,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" ] }, { @@ -24031,32 +23966,32 @@ "kernelrelease": "5.13.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1022-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1022-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1022-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1022-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb" ] }, { @@ -24064,10 +23999,10 @@ "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -24076,31 +24011,31 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" ] }, { "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1023-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelrelease": "5.13.0-1023-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" ] }, { @@ -24108,32 +24043,32 @@ "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1025-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelrelease": "5.13.0-1025-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb" ] }, { @@ -24141,10 +24076,10 @@ "kernelrelease": "5.13.0-1026-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" ] }, { @@ -24154,8 +24089,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" ] }, { @@ -24165,8 +24100,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb" ] }, { @@ -24174,12 +24109,12 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb" ] }, { @@ -24187,11 +24122,11 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb" ] }, @@ -24200,12 +24135,12 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" ] }, { @@ -24213,12 +24148,12 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" ] }, { @@ -24226,12 +24161,12 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb" ] }, { @@ -24239,11 +24174,11 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" ] }, @@ -24252,12 +24187,12 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb" ] }, { @@ -24265,11 +24200,11 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb" ] }, @@ -24278,11 +24213,11 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb" ] }, @@ -24291,12 +24226,12 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb" ] }, { @@ -24304,11 +24239,11 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb" ] }, @@ -24317,12 +24252,12 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" ] }, { @@ -24330,12 +24265,25 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "59~20.04.1", + "kernelrelease": "5.13.0-52-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb" ] }, { @@ -24354,10 +24302,10 @@ "kernelrelease": "5.14.0-1007-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" ] }, { @@ -24365,10 +24313,10 @@ "kernelrelease": "5.14.0-1008-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" ] }, { @@ -24376,10 +24324,10 @@ "kernelrelease": "5.14.0-1009-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb" ] }, { @@ -24387,10 +24335,10 @@ "kernelrelease": "5.14.0-1011-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb" ] }, { @@ -24398,9 +24346,9 @@ "kernelrelease": "5.14.0-1012-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" ] }, @@ -24409,10 +24357,10 @@ "kernelrelease": "5.14.0-1013-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" ] }, { @@ -24421,9 +24369,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" ] }, { @@ -24431,10 +24379,10 @@ "kernelrelease": "5.14.0-1022-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb" ] }, { @@ -24442,9 +24390,9 @@ "kernelrelease": "5.14.0-1023-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" ] }, @@ -24454,9 +24402,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" ] }, { @@ -24464,10 +24412,10 @@ "kernelrelease": "5.14.0-1028-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb" ] }, { @@ -24475,9 +24423,9 @@ "kernelrelease": "5.14.0-1029-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" ] }, @@ -24487,9 +24435,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" ] }, { @@ -24497,10 +24445,10 @@ "kernelrelease": "5.14.0-1032-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" ] }, { @@ -24508,9 +24456,9 @@ "kernelrelease": "5.14.0-1033-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" ] }, @@ -24519,10 +24467,10 @@ "kernelrelease": "5.14.0-1035-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb" ] }, { @@ -24530,8 +24478,8 @@ "kernelrelease": "5.14.0-1036-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb" ] @@ -24541,10 +24489,10 @@ "kernelrelease": "5.14.0-1037-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb" ] }, { @@ -24552,10 +24500,10 @@ "kernelrelease": "5.14.0-1038-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb" ] }, { @@ -24563,10 +24511,10 @@ "kernelrelease": "5.15.0-1002-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" ] }, { @@ -24574,10 +24522,10 @@ "kernelrelease": "5.15.0-1007-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb" ] }, { @@ -24585,20 +24533,42 @@ "kernelrelease": "5.15.0-1009-aws-5.15", "target": "ubuntu-aws-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb" ] }, + { + "kernelversion": "16~20.04.1", + "kernelrelease": "5.15.0-1013-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb" + ] + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.15.0-1014-aws-5.15", + "target": "ubuntu-aws-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb" + ] + }, { "kernelversion": "24~20.04.3", "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" ] }, @@ -24607,10 +24577,10 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" ] }, { @@ -24618,10 +24588,10 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb" ] }, { @@ -24631,21 +24601,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "5.4.0-100", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" ] }, { @@ -24653,9 +24610,9 @@ "kernelrelease": "5.4.0-1013-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, @@ -24664,21 +24621,10 @@ "kernelrelease": "5.4.0-1013-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.4.0-1015-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb" ] }, { @@ -24686,23 +24632,21 @@ "kernelrelease": "5.4.0-1015-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" ] }, { - "kernelversion": "115", - "kernelrelease": "5.4.0-102", - "target": "ubuntu-generic", + "kernelversion": "16", + "kernelrelease": "5.4.0-1015-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-generic_5.4.0-102.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102-lowlatency_5.4.0-102.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-102_5.4.0-102.115_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" ] }, { @@ -24711,8 +24655,8 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" ] }, @@ -24722,8 +24666,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" ] }, @@ -24732,10 +24676,10 @@ "kernelrelease": "5.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { @@ -24743,32 +24687,32 @@ "kernelrelease": "5.4.0-1032-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1034-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" ] }, { @@ -24776,21 +24720,21 @@ "kernelrelease": "5.4.0-1034-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1034-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" ] }, { @@ -24798,10 +24742,10 @@ "kernelrelease": "5.4.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" ] }, { @@ -24809,32 +24753,32 @@ "kernelrelease": "5.4.0-1035-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1039-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1039-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1039-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1039-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" ] }, { @@ -24842,10 +24786,10 @@ "kernelrelease": "5.4.0-1040-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" ] }, { @@ -24853,10 +24797,10 @@ "kernelrelease": "5.4.0-1040-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" ] }, { @@ -24864,9 +24808,9 @@ "kernelrelease": "5.4.0-1041-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, @@ -24875,23 +24819,10 @@ "kernelrelease": "5.4.0-1041-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "5.4.0-105", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, { @@ -24899,32 +24830,32 @@ "kernelrelease": "5.4.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1054-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1054-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" ] }, { @@ -24933,9 +24864,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" ] }, { @@ -24943,10 +24874,10 @@ "kernelrelease": "5.4.0-1055-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb" ] }, { @@ -24954,21 +24885,10 @@ "kernelrelease": "5.4.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1056-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" ] }, { @@ -24976,21 +24896,21 @@ "kernelrelease": "5.4.0-1056-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "5.4.0-1057-oracle", - "target": "ubuntu-oracle", + "kernelversion": "58", + "kernelrelease": "5.4.0-1056-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" ] }, { @@ -25004,15 +24924,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" ] }, + { + "kernelversion": "61", + "kernelrelease": "5.4.0-1057-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" + ] + }, { "kernelversion": "62", "kernelrelease": "5.4.0-1058-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" ] }, { @@ -25020,32 +24951,21 @@ "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1059-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb" ] }, { @@ -25053,34 +24973,32 @@ "kernelrelease": "5.4.0-1059-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1059-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" ] }, { - "kernelversion": "120", - "kernelrelease": "5.4.0-106", - "target": "ubuntu-generic", + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106_5.4.0-106.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-generic_5.4.0-106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" ] }, { @@ -25088,43 +25006,43 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1060-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1060-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1061-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" ] }, { @@ -25132,21 +25050,10 @@ "kernelrelease": "5.4.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -25154,21 +25061,21 @@ "kernelrelease": "5.4.0-1061-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb" ] }, { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-kvm", - "target": "ubuntu-kvm", + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -25176,10 +25083,10 @@ "kernelrelease": "5.4.0-1062-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" ] }, { @@ -25187,10 +25094,21 @@ "kernelrelease": "5.4.0-1062-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb" + ] + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb" ] }, { @@ -25198,8 +25116,8 @@ "kernelrelease": "5.4.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb" ] @@ -25209,54 +25127,54 @@ "kernelrelease": "5.4.0-1062-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1063-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1063-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1063-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1063-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { @@ -25264,10 +25182,10 @@ "kernelrelease": "5.4.0-1063-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" ] }, { @@ -25275,10 +25193,10 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" ] }, { @@ -25294,24 +25212,24 @@ }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1064-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1064-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { "kernelversion": "67", - "kernelrelease": "5.4.0-1064-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1064-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb" ] }, { @@ -25320,31 +25238,31 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1064-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1064-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1064-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1064-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" ] }, { @@ -25352,9 +25270,9 @@ "kernelrelease": "5.4.0-1065-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb" ] }, @@ -25371,13 +25289,13 @@ }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1065-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" ] }, { @@ -25385,43 +25303,43 @@ "kernelrelease": "5.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1065-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" ] }, { "kernelversion": "69", - "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1066-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" ] }, { "kernelversion": "69", - "kernelrelease": "5.4.0-1066-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1066-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" ] }, { @@ -25429,32 +25347,32 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1068-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1068-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" ] }, { "kernelversion": "71", - "kernelrelease": "5.4.0-1068-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1068-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb" ] }, { @@ -25462,10 +25380,10 @@ "kernelrelease": "5.4.0-1068-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" ] }, { @@ -25475,19 +25393,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" ] }, { @@ -25495,21 +25402,21 @@ "kernelrelease": "5.4.0-1069-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1069-gke", - "target": "ubuntu-gke", + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" ] }, { @@ -25517,23 +25424,21 @@ "kernelrelease": "5.4.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" ] }, { - "kernelversion": "121", - "kernelrelease": "5.4.0-107", - "target": "ubuntu-generic", + "kernelversion": "72", + "kernelrelease": "5.4.0-1069-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb" ] }, { @@ -25541,10 +25446,10 @@ "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" ] }, { @@ -25552,10 +25457,10 @@ "kernelrelease": "5.4.0-1070-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" ] }, { @@ -25563,10 +25468,10 @@ "kernelrelease": "5.4.0-1070-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" ] }, { @@ -25574,10 +25479,10 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb" ] }, { @@ -25586,9 +25491,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" ] }, { @@ -25597,8 +25502,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, @@ -25607,10 +25512,10 @@ "kernelrelease": "5.4.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb" ] }, { @@ -25618,10 +25523,10 @@ "kernelrelease": "5.4.0-1071-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb" ] }, { @@ -25629,10 +25534,10 @@ "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" ] }, { @@ -25640,32 +25545,32 @@ "kernelrelease": "5.4.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1073-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1073-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" ] }, { @@ -25673,9 +25578,9 @@ "kernelrelease": "5.4.0-1073-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" ] }, @@ -25684,10 +25589,10 @@ "kernelrelease": "5.4.0-1073-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" ] }, { @@ -25695,21 +25600,10 @@ "kernelrelease": "5.4.0-1074-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" ] }, { @@ -25718,20 +25612,31 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb" ] }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb" + ] + }, { "kernelversion": "77", "kernelrelease": "5.4.0-1074-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" ] }, { @@ -25739,10 +25644,10 @@ "kernelrelease": "5.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb" ] }, { @@ -25750,10 +25655,10 @@ "kernelrelease": "5.4.0-1075-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb" ] }, { @@ -25762,9 +25667,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" ] }, { @@ -25783,10 +25688,10 @@ "kernelrelease": "5.4.0-1078-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb" ] }, { @@ -25794,23 +25699,10 @@ "kernelrelease": "5.4.0-1078-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb" - ] - }, - { - "kernelversion": "122", - "kernelrelease": "5.4.0-108", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-generic_5.4.0-108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-108_5.4.0-108.122_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" ] }, { @@ -25818,114 +25710,34 @@ "kernelrelease": "5.4.0-1080-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "5.4.0-109", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "5.4.0-110", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "5.4.0-112", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112-generic_5.4.0-112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-112_5.4.0-112.126_all.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "5.4.0-113", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" - ] - }, - { - "kernelversion": "128", - "kernelrelease": "5.4.0-114", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-generic_5.4.0-114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114_5.4.0-114.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-114-lowlatency_5.4.0-114.128_amd64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "5.4.0-97", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" ] }, { - "kernelversion": "111", - "kernelrelease": "5.4.0-98", + "kernelversion": "137", + "kernelrelease": "5.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-lowlatency_5.4.0-98.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98_5.4.0-98.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-98-generic_5.4.0-98.111_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb" ] }, { - "kernelversion": "112", - "kernelrelease": "5.4.0-99", - "target": "ubuntu-generic", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.8.0-1033-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { @@ -25933,21 +25745,10 @@ "kernelrelease": "5.8.0-1033-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-gcp-5.8", - "target": "ubuntu-gcp-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { @@ -25956,9 +25757,9 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" ] }, { @@ -25966,8 +25767,8 @@ "kernelrelease": "5.8.0-1036-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" ] @@ -25980,9 +25781,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb" ] }, { @@ -25990,10 +25791,10 @@ "kernelrelease": "5.10.0-1013-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb" ] }, { @@ -26001,10 +25802,10 @@ "kernelrelease": "5.10.0-1014-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb" ] }, { @@ -26013,9 +25814,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb" ] }, { @@ -26023,8 +25824,8 @@ "kernelrelease": "5.10.0-1017-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb" ] @@ -26034,9 +25835,9 @@ "kernelrelease": "5.10.0-1019-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb" ] }, @@ -26045,10 +25846,10 @@ "kernelrelease": "5.10.0-1021-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb" ] }, { @@ -26057,9 +25858,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" ] }, { @@ -26078,10 +25879,10 @@ "kernelrelease": "5.10.0-1025-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb" ] }, { @@ -26090,9 +25891,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb" ] }, { @@ -26100,8 +25901,8 @@ "kernelrelease": "5.10.0-1029-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb" ] @@ -26111,10 +25912,10 @@ "kernelrelease": "5.10.0-1033-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb" ] }, { @@ -26122,10 +25923,10 @@ "kernelrelease": "5.10.0-1038-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" ] }, { @@ -26133,10 +25934,10 @@ "kernelrelease": "5.10.0-1044-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb" ] }, { @@ -26144,10 +25945,10 @@ "kernelrelease": "5.10.0-1045-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb" ] }, { @@ -26155,9 +25956,9 @@ "kernelrelease": "5.10.0-1049-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" ] }, @@ -26166,10 +25967,10 @@ "kernelrelease": "5.10.0-1050-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" ] }, { @@ -26177,8 +25978,8 @@ "kernelrelease": "5.10.0-1051-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" ] @@ -26188,10 +25989,10 @@ "kernelrelease": "5.10.0-1053-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb" ] }, { @@ -26201,8 +26002,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" ] }, { @@ -26211,9 +26012,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" ] }, { @@ -26221,12 +26022,23 @@ "kernelrelease": "5.11.0-1012-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" ] }, + { + "kernelversion": "14~20.04.1", + "kernelrelease": "5.11.0-1013-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + ] + }, { "kernelversion": "14~20.04.1", "kernelrelease": "5.11.0-1013-azure-5.11", @@ -26238,26 +26050,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, - { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" - ] - }, { "kernelversion": "15~20.04.1", "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" ] }, { @@ -26265,10 +26066,10 @@ "kernelrelease": "5.11.0-1014-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb" ] }, { @@ -26276,21 +26077,10 @@ "kernelrelease": "5.11.0-1015-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" ] }, { @@ -26298,21 +26088,21 @@ "kernelrelease": "5.11.0-1016-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb" ] }, { @@ -26320,21 +26110,32 @@ "kernelrelease": "5.11.0-1017-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" + ] + }, { "kernelversion": "18~20.04.1", "kernelrelease": "5.11.0-1017-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb" ] }, { @@ -26343,9 +26144,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb" ] }, { @@ -26353,32 +26154,32 @@ "kernelrelease": "5.11.0-1018-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb" ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1019-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -26386,10 +26187,10 @@ "kernelrelease": "5.11.0-1019-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { @@ -26397,10 +26198,10 @@ "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" ] }, { @@ -26408,10 +26209,10 @@ "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { @@ -26419,10 +26220,10 @@ "kernelrelease": "5.11.0-1020-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb" ] }, { @@ -26430,10 +26231,10 @@ "kernelrelease": "5.11.0-1020-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb" ] }, { @@ -26442,9 +26243,20 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" + ] + }, + { + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1021-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" ] }, { @@ -26453,31 +26265,53 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-oracle-5.11", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1021-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1021-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelrelease": "5.11.0-1022-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { @@ -26485,10 +26319,10 @@ "kernelrelease": "5.11.0-1022-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" ] }, { @@ -26496,10 +26330,10 @@ "kernelrelease": "5.11.0-1023-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -26507,9 +26341,9 @@ "kernelrelease": "5.11.0-1023-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb" ] }, @@ -26518,10 +26352,10 @@ "kernelrelease": "5.11.0-1023-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { @@ -26529,10 +26363,10 @@ "kernelrelease": "5.11.0-1023-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -26540,21 +26374,21 @@ "kernelrelease": "5.11.0-1024-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -26562,21 +26396,21 @@ "kernelrelease": "5.11.0-1025-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -26584,10 +26418,32 @@ "kernelrelease": "5.11.0-1026-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { @@ -26595,32 +26451,32 @@ "kernelrelease": "5.11.0-1027-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-oracle-5.11", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -26630,8 +26486,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" ] }, { @@ -26639,23 +26495,34 @@ "kernelrelease": "5.11.0-1028-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb" ] }, + { + "kernelversion": "33~20.04.3", + "kernelrelease": "5.11.0-1029-gcp-5.11", + "target": "ubuntu-gcp-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb" + ] + }, { "kernelversion": "23~20.04.1", "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb" ] }, { @@ -26663,12 +26530,12 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb" ] }, { @@ -26676,12 +26543,12 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb" ] }, { @@ -26689,12 +26556,12 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" ] }, { @@ -26703,11 +26570,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" ] }, { @@ -26715,11 +26582,11 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" ] }, @@ -26728,12 +26595,51 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" + ] + }, + { + "kernelversion": "44~20.04.2", + "kernelrelease": "5.11.0-40-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" + ] + }, + { + "kernelversion": "45~20.04.1", + "kernelrelease": "5.11.0-41-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "47~20.04.2", + "kernelrelease": "5.11.0-43-hwe-5.11", + "target": "ubuntu-hwe-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" ] }, { @@ -26741,11 +26647,11 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" ] }, @@ -26755,11 +26661,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" ] }, { @@ -26767,10 +26673,10 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" ] }, { @@ -26778,21 +26684,10 @@ "kernelrelease": "5.13.0-1008-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.13.0-1008-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb" ] }, { @@ -26800,21 +26695,32 @@ "kernelrelease": "5.13.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" ] }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1008-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" + ] + }, { "kernelversion": "10~20.04.2", "kernelrelease": "5.13.0-1009-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb" ] }, { @@ -26822,21 +26728,10 @@ "kernelrelease": "5.13.0-1009-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb" ] }, { @@ -26844,9 +26739,9 @@ "kernelrelease": "5.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" ] }, @@ -26855,21 +26750,32 @@ "kernelrelease": "5.13.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb" ] }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb" + ] + }, { "kernelversion": "10", "kernelrelease": "5.13.0-1010-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb" ] }, { @@ -26877,32 +26783,32 @@ "kernelrelease": "5.13.0-1010-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.13.0-1010-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1010-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.13.0-1010-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.13.0-1010-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb" ] }, { @@ -26910,10 +26816,10 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" ] }, { @@ -26921,10 +26827,10 @@ "kernelrelease": "5.13.0-1011-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb" ] }, { @@ -26934,8 +26840,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" ] }, { @@ -26943,10 +26849,10 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" ] }, { @@ -26955,9 +26861,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" ] }, { @@ -26965,10 +26871,10 @@ "kernelrelease": "5.13.0-1012-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" ] }, { @@ -26976,10 +26882,10 @@ "kernelrelease": "5.13.0-1012-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb" ] }, { @@ -26987,32 +26893,32 @@ "kernelrelease": "5.13.0-1013-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.13.0-1014-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelrelease": "5.13.0-1014-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1014-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb" ] }, { @@ -27020,10 +26926,10 @@ "kernelrelease": "5.13.0-1014-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" ] }, { @@ -27031,10 +26937,10 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" ] }, { @@ -27042,43 +26948,65 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" ] }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + ] + }, { "kernelversion": "19~20.04.1", "kernelrelease": "5.13.0-1017-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-1017-oracle", - "target": "ubuntu-oracle", + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-intel-5.13", + "target": "ubuntu-intel-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb" ] }, { @@ -27086,21 +27014,32 @@ "kernelrelease": "5.13.0-1017-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb" ] }, + { + "kernelversion": "21", + "kernelrelease": "5.13.0-1017-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + ] + }, { "kernelversion": "23~20.04.1", "kernelrelease": "5.13.0-1019-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" ] }, { @@ -27108,10 +27047,10 @@ "kernelrelease": "5.13.0-1019-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" ] }, { @@ -27119,10 +27058,10 @@ "kernelrelease": "5.13.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" ] }, { @@ -27130,10 +27069,10 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" ] }, { @@ -27141,10 +27080,10 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" ] }, { @@ -27153,9 +27092,9 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb" ] }, { @@ -27163,10 +27102,10 @@ "kernelrelease": "5.13.0-1021-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" ] }, { @@ -27174,9 +27113,9 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" ] }, @@ -27186,9 +27125,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" ] }, { @@ -27196,10 +27135,10 @@ "kernelrelease": "5.13.0-1024-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb" ] }, { @@ -27207,10 +27146,10 @@ "kernelrelease": "5.13.0-1025-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb" ] }, { @@ -27219,9 +27158,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" ] }, { @@ -27229,32 +27168,32 @@ "kernelrelease": "5.13.0-1026-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelrelease": "5.13.0-1027-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1027-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { @@ -27262,10 +27201,10 @@ "kernelrelease": "5.13.0-1028-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -27274,9 +27213,9 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" ] }, { @@ -27284,8 +27223,8 @@ "kernelrelease": "5.13.0-1029-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" ] @@ -27297,8 +27236,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb" ] }, { @@ -27306,10 +27245,10 @@ "kernelrelease": "5.13.0-1029-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb" ] }, { @@ -27317,10 +27256,10 @@ "kernelrelease": "5.13.0-1030-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb" ] }, { @@ -27328,10 +27267,32 @@ "kernelrelease": "5.13.0-1030-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1031-aws-5.13", + "target": "ubuntu-aws-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "37~20.04.1", + "kernelrelease": "5.13.0-1031-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb" ] }, { @@ -27339,10 +27300,21 @@ "kernelrelease": "5.13.0-1031-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.13.0-1033-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb" ] }, { @@ -27350,9 +27322,9 @@ "kernelrelease": "5.13.0-1033-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" ] }, @@ -27367,17 +27339,28 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb" ] }, + { + "kernelversion": "43~20.04.1", + "kernelrelease": "5.13.0-1036-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" + ] + }, { "kernelversion": "23~20.04.2", "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" ] }, { @@ -27385,10 +27368,10 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb" ] @@ -27399,11 +27382,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb" ] }, { @@ -27411,11 +27394,11 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" ] }, @@ -27424,12 +27407,12 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" ] }, { @@ -27437,12 +27420,25 @@ "kernelrelease": "5.13.0-48-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "58~20.04.1", + "kernelrelease": "5.13.0-51-hwe-5.13", + "target": "ubuntu-hwe-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb" ] }, { @@ -27450,10 +27446,10 @@ "kernelrelease": "5.14.0-1004-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" ] }, { @@ -27461,10 +27457,10 @@ "kernelrelease": "5.14.0-1005-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" ] }, { @@ -27472,10 +27468,10 @@ "kernelrelease": "5.14.0-1018-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" ] }, { @@ -27483,10 +27479,10 @@ "kernelrelease": "5.14.0-1020-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb" ] }, { @@ -27496,8 +27492,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb" ] }, { @@ -27506,9 +27502,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" ] }, { @@ -27528,9 +27524,9 @@ "target": "ubuntu-intel-iotg-5.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" ] }, { @@ -27538,8 +27534,8 @@ "kernelrelease": "5.15.0-1006-gcp-5.15", "target": "ubuntu-gcp-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb" ] @@ -27549,10 +27545,10 @@ "kernelrelease": "5.15.0-1007-oracle-5.15", "target": "ubuntu-oracle-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" ] }, { @@ -27562,8 +27558,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb" ] }, { @@ -27572,20 +27568,20 @@ "target": "ubuntu-intel-iotg-5.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb" ] }, { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelversion": "14~20.04.1", + "kernelrelease": "5.15.0-1010-intel-iotg-5.15", + "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb" ] }, { @@ -27593,10 +27589,34 @@ "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + ] + }, + { + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + ] + }, + { + "kernelversion": "113", + "kernelrelease": "5.4.0-100", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" ] }, { @@ -27604,10 +27624,10 @@ "kernelrelease": "5.4.0-1005-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb" ] }, { @@ -27616,8 +27636,8 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" ] }, @@ -27628,8 +27648,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" ] }, { @@ -27637,10 +27657,10 @@ "kernelrelease": "5.4.0-1008-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" ] }, { @@ -27648,9 +27668,9 @@ "kernelrelease": "5.4.0-1008-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb" ] }, @@ -27659,9 +27679,9 @@ "kernelrelease": "5.4.0-1009-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" ] }, @@ -27670,10 +27690,10 @@ "kernelrelease": "5.4.0-1010-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" ] }, { @@ -27681,21 +27701,21 @@ "kernelrelease": "5.4.0-1010-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { @@ -27711,24 +27731,24 @@ }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1011-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { @@ -27736,10 +27756,10 @@ "kernelrelease": "5.4.0-1011-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb" ] }, { @@ -27747,21 +27767,10 @@ "kernelrelease": "5.4.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.4.0-1012-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" ] }, { @@ -27769,21 +27778,21 @@ "kernelrelease": "5.4.0-1012-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.4.0-1014-gkeop", + "kernelversion": "13", + "kernelrelease": "5.4.0-1012-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, { @@ -27799,24 +27808,13 @@ }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1014-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" ] }, { @@ -27824,10 +27822,10 @@ "kernelrelease": "5.4.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { @@ -27835,10 +27833,32 @@ "kernelrelease": "5.4.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" ] }, { @@ -27846,10 +27866,10 @@ "kernelrelease": "5.4.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" ] }, { @@ -27858,9 +27878,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" ] }, { @@ -27868,10 +27888,10 @@ "kernelrelease": "5.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" ] }, { @@ -27880,20 +27900,20 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1018-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb" ] }, { @@ -27902,20 +27922,20 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb" ] }, { @@ -27925,8 +27945,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { @@ -27934,10 +27954,10 @@ "kernelrelease": "5.4.0-1018-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" ] }, { @@ -27945,10 +27965,10 @@ "kernelrelease": "5.4.0-1018-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" ] }, { @@ -27957,31 +27977,31 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1019-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.4.0-1019-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1019-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb" ] }, { @@ -27989,21 +28009,10 @@ "kernelrelease": "5.4.0-1019-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" ] }, { @@ -28011,10 +28020,10 @@ "kernelrelease": "5.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" ] }, { @@ -28022,10 +28031,21 @@ "kernelrelease": "5.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb" + ] + }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" ] }, { @@ -28033,9 +28053,9 @@ "kernelrelease": "5.4.0-1020-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" ] }, @@ -28044,10 +28064,10 @@ "kernelrelease": "5.4.0-1021-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { @@ -28056,8 +28076,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, @@ -28066,9 +28086,9 @@ "kernelrelease": "5.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, @@ -28077,10 +28097,10 @@ "kernelrelease": "5.4.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" ] }, { @@ -28088,54 +28108,54 @@ "kernelrelease": "5.4.0-1021-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1022-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1022-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { @@ -28166,9 +28186,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb" ] }, { @@ -28176,9 +28196,9 @@ "kernelrelease": "5.4.0-1023-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" ] }, @@ -28187,54 +28207,54 @@ "kernelrelease": "5.4.0-1023-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1024-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1024-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1024-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -28243,20 +28263,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb" ] }, { @@ -28264,21 +28273,21 @@ "kernelrelease": "5.4.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" ] }, { @@ -28286,21 +28295,32 @@ "kernelrelease": "5.4.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" ] }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" + ] + }, { "kernelversion": "26", "kernelrelease": "5.4.0-1025-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" ] }, { @@ -28308,10 +28328,10 @@ "kernelrelease": "5.4.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" ] }, { @@ -28319,10 +28339,10 @@ "kernelrelease": "5.4.0-1026-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb" ] }, { @@ -28330,10 +28350,10 @@ "kernelrelease": "5.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" ] }, { @@ -28341,10 +28361,10 @@ "kernelrelease": "5.4.0-1026-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb" ] }, { @@ -28353,9 +28373,20 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" ] }, { @@ -28363,9 +28394,9 @@ "kernelrelease": "5.4.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" ] }, @@ -28374,21 +28405,32 @@ "kernelrelease": "5.4.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-aws", + "kernelversion": "32", + "kernelrelease": "5.4.0-1028-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.4.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" ] }, { @@ -28396,21 +28438,21 @@ "kernelrelease": "5.4.0-1029-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.4.0-1029-aws", - "target": "ubuntu-aws", + "kernelversion": "31", + "kernelrelease": "5.4.0-1029-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb" ] }, { @@ -28418,32 +28460,21 @@ "kernelrelease": "5.4.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" ] }, - { - "kernelversion": "31", - "kernelrelease": "5.4.0-1029-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" - ] - }, { "kernelversion": "31", "kernelrelease": "5.4.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb" ] }, { @@ -28451,9 +28482,9 @@ "kernelrelease": "5.4.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, @@ -28462,9 +28493,9 @@ "kernelrelease": "5.4.0-1031-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, @@ -28473,21 +28504,10 @@ "kernelrelease": "5.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.4.0-1032-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb" ] }, { @@ -28495,21 +28515,21 @@ "kernelrelease": "5.4.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1033-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1032-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb" ] }, { @@ -28517,10 +28537,21 @@ "kernelrelease": "5.4.0-1033-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.4.0-1033-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" ] }, { @@ -28528,10 +28559,10 @@ "kernelrelease": "5.4.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" ] }, { @@ -28540,31 +28571,31 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1035-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1035-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb" ] }, { @@ -28572,10 +28603,10 @@ "kernelrelease": "5.4.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" ] }, { @@ -28583,10 +28614,10 @@ "kernelrelease": "5.4.0-1036-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" ] }, { @@ -28594,10 +28625,10 @@ "kernelrelease": "5.4.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" ] }, { @@ -28605,32 +28636,32 @@ "kernelrelease": "5.4.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1036-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1036-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1036-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1036-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" ] }, { @@ -28639,9 +28670,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" ] }, { @@ -28649,32 +28680,32 @@ "kernelrelease": "5.4.0-1037-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1037-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1037-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1037-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1037-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb" ] }, { @@ -28682,9 +28713,9 @@ "kernelrelease": "5.4.0-1037-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, @@ -28693,10 +28724,10 @@ "kernelrelease": "5.4.0-1037-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb" ] }, { @@ -28704,10 +28735,10 @@ "kernelrelease": "5.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb" ] }, { @@ -28717,8 +28748,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" ] }, { @@ -28726,9 +28757,9 @@ "kernelrelease": "5.4.0-1038-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" ] }, @@ -28738,8 +28769,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" ] }, @@ -28748,9 +28779,9 @@ "kernelrelease": "5.4.0-1038-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" ] }, @@ -28759,32 +28790,32 @@ "kernelrelease": "5.4.0-1039-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1039-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1039-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { "kernelversion": "41", - "kernelrelease": "5.4.0-1039-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1039-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb" ] }, { @@ -28792,10 +28823,10 @@ "kernelrelease": "5.4.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" ] }, { @@ -28803,12 +28834,12 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" ] }, { @@ -28816,10 +28847,10 @@ "kernelrelease": "5.4.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" ] }, { @@ -28829,8 +28860,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" ] }, { @@ -28839,9 +28881,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" ] }, { @@ -28850,31 +28892,20 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" - ] - }, { "kernelversion": "44", "kernelrelease": "5.4.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb" ] }, { @@ -28893,10 +28924,10 @@ "kernelrelease": "5.4.0-1042-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" ] }, { @@ -28904,10 +28935,10 @@ "kernelrelease": "5.4.0-1042-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" ] }, { @@ -28916,9 +28947,9 @@ "target": "ubuntu-gke", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb" ] }, { @@ -28926,10 +28957,10 @@ "kernelrelease": "5.4.0-1043-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" ] }, { @@ -28937,10 +28968,10 @@ "kernelrelease": "5.4.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { @@ -28948,21 +28979,10 @@ "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1043-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { @@ -28970,21 +28990,43 @@ "kernelrelease": "5.4.0-1043-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" ] }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-1043-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb" + ] + }, { "kernelversion": "44", "kernelrelease": "5.4.0-1043-gkeop", "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "5.4.0-1044-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" ] }, { @@ -28992,10 +29034,10 @@ "kernelrelease": "5.4.0-1044-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, { @@ -29003,21 +29045,10 @@ "kernelrelease": "5.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1044-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, { @@ -29025,12 +29056,23 @@ "kernelrelease": "5.4.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" ] }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1045-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb" + ] + }, { "kernelversion": "47", "kernelrelease": "5.4.0-1045-kvm", @@ -29042,26 +29084,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" ] }, - { - "kernelversion": "47", - "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" - ] - }, { "kernelversion": "49", "kernelrelease": "5.4.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" ] }, { @@ -29069,10 +29100,10 @@ "kernelrelease": "5.4.0-1046-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" ] }, { @@ -29080,10 +29111,10 @@ "kernelrelease": "5.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" ] }, { @@ -29091,10 +29122,10 @@ "kernelrelease": "5.4.0-1046-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { @@ -29102,10 +29133,10 @@ "kernelrelease": "5.4.0-1046-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb" ] }, { @@ -29113,10 +29144,10 @@ "kernelrelease": "5.4.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" ] }, { @@ -29130,6 +29161,17 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" ] }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + ] + }, { "kernelversion": "49", "kernelrelease": "5.4.0-1047-azure", @@ -29141,26 +29183,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb" - ] - }, { "kernelversion": "49", "kernelrelease": "5.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { @@ -29168,32 +29199,43 @@ "kernelrelease": "5.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" ] }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + ] + }, { "kernelversion": "50", "kernelrelease": "5.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-azure", - "target": "ubuntu-azure", + "kernelversion": "51", + "kernelrelease": "5.4.0-1048-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb" ] }, { @@ -29202,9 +29244,20 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" + ] + }, + { + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { @@ -29212,9 +29265,9 @@ "kernelrelease": "5.4.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, @@ -29223,21 +29276,21 @@ "kernelrelease": "5.4.0-1049-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb" ] }, { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws", + "kernelversion": "53", + "kernelrelease": "5.4.0-1049-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, { @@ -29245,21 +29298,10 @@ "kernelrelease": "5.4.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1049-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" ] }, { @@ -29267,10 +29309,23 @@ "kernelrelease": "5.4.0-1049-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" + ] + }, + { + "kernelversion": "119", + "kernelrelease": "5.4.0-105", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" ] }, { @@ -29278,32 +29333,32 @@ "kernelrelease": "5.4.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1051-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1051-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "5.4.0-1051-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1051-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { @@ -29312,8 +29367,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" ] }, @@ -29324,30 +29379,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1052-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb" ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1052-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb" ] }, { @@ -29356,9 +29411,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" ] }, { @@ -29366,9 +29421,9 @@ "kernelrelease": "5.4.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" ] }, @@ -29377,9 +29432,9 @@ "kernelrelease": "5.4.0-1053-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb" ] }, @@ -29399,21 +29454,10 @@ "kernelrelease": "5.4.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb" ] }, { @@ -29421,21 +29465,21 @@ "kernelrelease": "5.4.0-1054-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-gke", - "target": "ubuntu-gke", + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb" ] }, { @@ -29443,21 +29487,32 @@ "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" ] }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + ] + }, { "kernelversion": "57", "kernelrelease": "5.4.0-1055-azure", "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" ] }, { @@ -29465,10 +29520,21 @@ "kernelrelease": "5.4.0-1055-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + ] + }, + { + "kernelversion": "59", + "kernelrelease": "5.4.0-1056-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" ] }, { @@ -29476,21 +29542,21 @@ "kernelrelease": "5.4.0-1056-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.4.0-1056-aws", - "target": "ubuntu-aws", + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb" ] }, { @@ -29499,20 +29565,20 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" ] }, { "kernelversion": "60", - "kernelrelease": "5.4.0-1056-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1057-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" ] }, { @@ -29520,21 +29586,10 @@ "kernelrelease": "5.4.0-1057-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" ] }, { @@ -29543,9 +29598,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { @@ -29554,9 +29609,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { @@ -29564,10 +29619,10 @@ "kernelrelease": "5.4.0-1058-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb" ] }, { @@ -29575,10 +29630,10 @@ "kernelrelease": "5.4.0-1059-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" ] }, { @@ -29586,10 +29641,10 @@ "kernelrelease": "5.4.0-1059-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" ] }, { @@ -29597,10 +29652,10 @@ "kernelrelease": "5.4.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" ] }, { @@ -29609,9 +29664,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" ] }, { @@ -29619,10 +29674,10 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" ] }, { @@ -29630,9 +29685,9 @@ "kernelrelease": "5.4.0-1067-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" ] }, @@ -29642,8 +29697,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb" ] }, @@ -29652,9 +29707,9 @@ "kernelrelease": "5.4.0-1067-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" ] }, @@ -29663,10 +29718,10 @@ "kernelrelease": "5.4.0-1067-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" ] }, { @@ -29674,21 +29729,10 @@ "kernelrelease": "5.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1068-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb" ] }, { @@ -29697,31 +29741,55 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb" ] }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1068-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + ] + }, { "kernelversion": "75", "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", - "target": "ubuntu-gke", + "kernelversion": "121", + "kernelrelease": "5.4.0-107", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" + ] + }, + { + "kernelversion": "75", + "kernelrelease": "5.4.0-1070-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb" ] }, { @@ -29729,10 +29797,21 @@ "kernelrelease": "5.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" ] }, { @@ -29741,9 +29820,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" ] }, { @@ -29751,9 +29830,9 @@ "kernelrelease": "5.4.0-1072-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" ] }, @@ -29762,10 +29841,10 @@ "kernelrelease": "5.4.0-1072-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" ] }, { @@ -29773,10 +29852,21 @@ "kernelrelease": "5.4.0-1073-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" + ] + }, + { + "kernelversion": "82", + "kernelrelease": "5.4.0-1076-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb" ] }, { @@ -29784,10 +29874,10 @@ "kernelrelease": "5.4.0-1076-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb" ] }, { @@ -29796,9 +29886,20 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + ] + }, + { + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb" ] }, { @@ -29806,21 +29907,43 @@ "kernelrelease": "5.4.0-1078-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gcp", + "kernelversion": "86", + "kernelrelease": "5.4.0-1078-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb" + ] + }, + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1080-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb" + ] + }, + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1080-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb" ] }, { @@ -29828,10 +29951,10 @@ "kernelrelease": "5.4.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb" ] }, { @@ -29839,10 +29962,71 @@ "kernelrelease": "5.4.0-1083-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb" + ] + }, + { + "kernelversion": "90", + "kernelrelease": "5.4.0-1085-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb" + ] + }, + { + "kernelversion": "90+cvm1", + "kernelrelease": "5.4.0-1085-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb" + ] + }, + { + "kernelversion": "123", + "kernelrelease": "5.4.0-109", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb" + ] + }, + { + "kernelversion": "124", + "kernelrelease": "5.4.0-110", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" + ] + }, + { + "kernelversion": "127", + "kernelrelease": "5.4.0-113", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb" ] }, { @@ -29850,12 +30034,25 @@ "kernelrelease": "5.4.0-117", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb" + ] + }, + { + "kernelversion": "136", + "kernelrelease": "5.4.0-120", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb" ] }, { @@ -29863,12 +30060,12 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb" ] }, { @@ -29877,11 +30074,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" ] }, { @@ -29889,12 +30086,12 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb" ] }, { @@ -29902,12 +30099,12 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" ] }, { @@ -29919,8 +30116,8 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" ] }, { @@ -29928,12 +30125,12 @@ "kernelrelease": "5.4.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" ] }, { @@ -29941,12 +30138,12 @@ "kernelrelease": "5.4.0-40", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb" ] }, { @@ -29954,12 +30151,12 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" ] }, { @@ -29967,12 +30164,12 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb" ] }, { @@ -29980,12 +30177,12 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb" ] }, { @@ -29993,12 +30190,12 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb" ] }, { @@ -30006,12 +30203,12 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" ] }, { @@ -30019,12 +30216,12 @@ "kernelrelease": "5.4.0-52", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb" ] }, { @@ -30032,12 +30229,12 @@ "kernelrelease": "5.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" ] }, { @@ -30045,11 +30242,11 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" ] }, @@ -30059,11 +30256,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" ] }, { @@ -30071,12 +30268,12 @@ "kernelrelease": "5.4.0-60", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb" ] }, { @@ -30084,12 +30281,12 @@ "kernelrelease": "5.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb" ] }, { @@ -30097,12 +30294,12 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb" ] }, { @@ -30123,12 +30320,12 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb" ] }, { @@ -30136,12 +30333,12 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" ] }, { @@ -30149,11 +30346,11 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb" ] }, @@ -30162,12 +30359,12 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" ] }, { @@ -30175,12 +30372,12 @@ "kernelrelease": "5.4.0-73", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb" ] }, { @@ -30188,12 +30385,12 @@ "kernelrelease": "5.4.0-74", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" ] }, { @@ -30201,12 +30398,12 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb" ] }, { @@ -30214,12 +30411,12 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb" ] }, { @@ -30227,12 +30424,12 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" ] }, { @@ -30240,12 +30437,12 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" ] }, { @@ -30253,12 +30450,12 @@ "kernelrelease": "5.4.0-86", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" ] }, { @@ -30266,12 +30463,12 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" ] }, { @@ -30279,12 +30476,12 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb" ] }, { @@ -30292,12 +30489,12 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" ] }, { @@ -30305,12 +30502,12 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb" ] }, { @@ -30318,12 +30515,12 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" ] }, { @@ -30331,12 +30528,12 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb" ] }, { @@ -30344,12 +30541,38 @@ "kernelrelease": "5.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb" + ] + }, + { + "kernelversion": "110", + "kernelrelease": "5.4.0-97", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb" + ] + }, + { + "kernelversion": "112", + "kernelrelease": "5.4.0-99", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" ] }, { @@ -30357,9 +30580,9 @@ "kernelrelease": "5.6.0-1008-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb" ] }, @@ -30368,10 +30591,10 @@ "kernelrelease": "5.6.0-1010-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" ] }, { @@ -30392,8 +30615,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" ] }, { @@ -30412,10 +30635,10 @@ "kernelrelease": "5.6.0-1018-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" ] }, { @@ -30434,10 +30657,10 @@ "kernelrelease": "5.6.0-1023-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" ] }, { @@ -30445,10 +30668,10 @@ "kernelrelease": "5.6.0-1026-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb" ] }, { @@ -30456,9 +30679,9 @@ "kernelrelease": "5.6.0-1028-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" ] }, @@ -30467,10 +30690,10 @@ "kernelrelease": "5.6.0-1031-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" ] }, { @@ -30478,10 +30701,10 @@ "kernelrelease": "5.6.0-1032-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb" ] }, { @@ -30490,8 +30713,8 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" ] }, @@ -30500,10 +30723,10 @@ "kernelrelease": "5.6.0-1039-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" ] }, { @@ -30512,8 +30735,8 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb" ] }, @@ -30522,9 +30745,9 @@ "kernelrelease": "5.6.0-1047-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb" ] }, @@ -30533,10 +30756,10 @@ "kernelrelease": "5.6.0-1048-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" ] }, { @@ -30544,10 +30767,10 @@ "kernelrelease": "5.6.0-1050-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb" ] }, { @@ -30566,10 +30789,10 @@ "kernelrelease": "5.6.0-1053-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" ] }, { @@ -30578,8 +30801,8 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" ] }, @@ -30588,9 +30811,9 @@ "kernelrelease": "5.6.0-1055-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" ] }, @@ -30599,10 +30822,10 @@ "kernelrelease": "5.6.0-1056-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb" ] }, { @@ -30611,9 +30834,9 @@ "target": "ubuntu-oracle-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, { @@ -30621,9 +30844,9 @@ "kernelrelease": "5.8.0-1032-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" ] }, @@ -30632,10 +30855,10 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" ] }, { @@ -30643,10 +30866,10 @@ "kernelrelease": "5.8.0-1035-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { @@ -30654,10 +30877,10 @@ "kernelrelease": "5.8.0-1035-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" ] }, { @@ -30666,31 +30889,31 @@ "target": "ubuntu-oracle-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelrelease": "5.8.0-1038-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws-5.8", - "target": "ubuntu-aws-5.8", + "kernelrelease": "5.8.0-1038-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { @@ -30699,9 +30922,9 @@ "target": "ubuntu-oracle-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" ] }, { @@ -30709,10 +30932,10 @@ "kernelrelease": "5.8.0-1039-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb" ] }, { @@ -30720,10 +30943,10 @@ "kernelrelease": "5.8.0-1039-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" ] }, { @@ -30731,10 +30954,10 @@ "kernelrelease": "5.8.0-1040-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb" ] }, { @@ -30742,10 +30965,10 @@ "kernelrelease": "5.8.0-1041-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" ] }, { @@ -30753,10 +30976,10 @@ "kernelrelease": "5.8.0-1041-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" ] }, { @@ -30764,10 +30987,10 @@ "kernelrelease": "5.8.0-1042-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" ] }, { @@ -30775,10 +30998,10 @@ "kernelrelease": "5.8.0-1043-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" ] }, { @@ -30786,12 +31009,12 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" ] }, { @@ -30799,12 +31022,12 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" ] }, { @@ -30813,10 +31036,10 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" ] }, @@ -30825,12 +31048,12 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" ] }, { @@ -30838,12 +31061,12 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" ] }, { @@ -30851,12 +31074,12 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" ] }, { @@ -30864,12 +31087,12 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" ] }, { @@ -30877,12 +31100,12 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb" ] }, { @@ -30890,12 +31113,12 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb" ] }, { @@ -30903,12 +31126,12 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb" ] }, { @@ -30917,10 +31140,10 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" ] }, @@ -30929,12 +31152,12 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb" ] }, { @@ -30942,12 +31165,12 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" ] }, { @@ -30955,12 +31178,12 @@ "kernelrelease": "5.8.0-59-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb" ] }, { @@ -30968,12 +31191,12 @@ "kernelrelease": "5.8.0-63-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" ] }, { @@ -30981,10 +31204,10 @@ "kernelrelease": "5.10.0-1011-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" ] }, { @@ -30994,8 +31217,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb" ] }, { @@ -31003,10 +31226,10 @@ "kernelrelease": "5.10.0-1034-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" ] }, { @@ -31014,10 +31237,10 @@ "kernelrelease": "5.10.0-1052-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" ] }, { @@ -31025,10 +31248,10 @@ "kernelrelease": "5.11.0-1007-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" ] }, { @@ -31036,10 +31259,10 @@ "kernelrelease": "5.11.0-1008-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb" ] }, { @@ -31049,8 +31272,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" ] }, { @@ -31059,31 +31282,31 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1007-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelrelease": "5.13.0-1007-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1007-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.13.0-1007-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, { @@ -31091,21 +31314,10 @@ "kernelrelease": "5.13.0-1013-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.13.0-1021-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" ] }, { @@ -31113,21 +31325,32 @@ "kernelrelease": "5.13.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb" ] }, + { + "kernelversion": "25", + "kernelrelease": "5.13.0-1021-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" + ] + }, { "kernelversion": "10", "kernelrelease": "5.14.0-1010-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" ] }, { @@ -31135,10 +31358,10 @@ "kernelrelease": "5.14.0-1034-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" ] }, { @@ -31146,10 +31369,10 @@ "kernelrelease": "5.4.0-1064-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb" ] }, { @@ -31158,9 +31381,9 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" ] }, { @@ -31168,10 +31391,10 @@ "kernelrelease": "5.4.0-1069-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" ] }, { @@ -31179,10 +31402,10 @@ "kernelrelease": "5.4.0-1074-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" ] }, { @@ -31190,10 +31413,10 @@ "kernelrelease": "5.4.0-1076-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb" ] }, { @@ -31201,10 +31424,10 @@ "kernelrelease": "5.4.0-1080-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb" ] }, { @@ -31214,10 +31437,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb" ] }, { @@ -31225,12 +31448,12 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" ] }, { @@ -31238,9 +31461,9 @@ "kernelrelease": "5.6.0-1021-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" ] }, @@ -31249,10 +31472,10 @@ "kernelrelease": "5.6.0-1027-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" ] }, { @@ -31260,10 +31483,10 @@ "kernelrelease": "5.6.0-1034-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" ] }, { @@ -31271,10 +31494,10 @@ "kernelrelease": "5.6.0-1035-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" ] }, { @@ -31282,10 +31505,10 @@ "kernelrelease": "5.6.0-1036-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" ] }, { @@ -31293,10 +31516,10 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" ] }, { @@ -31304,10 +31527,10 @@ "kernelrelease": "5.8.0-1042-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" ] }, { @@ -31315,12 +31538,12 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" ] }, { @@ -31328,12 +31551,12 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" ] }, { @@ -31341,12 +31564,12 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb" ] }, { @@ -31354,12 +31577,12 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb" ] }, { @@ -31367,12 +31590,23 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { @@ -31380,9 +31614,9 @@ "kernelrelease": "5.4.0-1009-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb" ] }, @@ -31397,25 +31631,14 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" ] }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" - ] - }, { "kernelversion": "9", "kernelrelease": "5.4.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" ] }, @@ -31425,8 +31648,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb" ] }, @@ -31436,11 +31659,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" ] }, { @@ -31449,8 +31672,8 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" ] }, @@ -31459,10 +31682,10 @@ "kernelrelease": "5.11.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" ] }, { @@ -31481,10 +31704,10 @@ "kernelrelease": "5.11.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { @@ -31494,8 +31717,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" ] }, { @@ -31503,21 +31726,32 @@ "kernelrelease": "5.11.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb" ] }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + ] + }, { "kernelversion": "30", "kernelrelease": "5.11.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -31525,21 +31759,10 @@ "kernelrelease": "5.11.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -31547,10 +31770,10 @@ "kernelrelease": "5.11.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb" ] }, { @@ -31558,12 +31781,12 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb" ] }, { @@ -31572,9 +31795,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" ] }, { @@ -31582,10 +31805,10 @@ "kernelrelease": "5.11.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" ] }, { @@ -31593,12 +31816,23 @@ "kernelrelease": "5.11.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" ] }, + { + "kernelversion": "6", + "kernelrelease": "5.11.0-1006-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" + ] + }, { "kernelversion": "6", "kernelrelease": "5.11.0-1006-gcp", @@ -31610,27 +31844,16 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb" ] }, - { - "kernelversion": "6", - "kernelrelease": "5.11.0-1006-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" - ] - }, { "kernelversion": "17", "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" ] }, @@ -31639,21 +31862,21 @@ "kernelrelease": "5.13.0-1005-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1006-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1006-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { @@ -31661,21 +31884,21 @@ "kernelrelease": "5.13.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1006-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1006-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { @@ -31694,32 +31917,32 @@ "kernelrelease": "5.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1007-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1007-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1007-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1007-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb" ] }, { @@ -31727,10 +31950,10 @@ "kernelrelease": "5.13.0-1008-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" ] }, { @@ -31738,10 +31961,10 @@ "kernelrelease": "5.13.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" ] }, { @@ -31750,31 +31973,31 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1010-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb" ] }, { @@ -31793,8 +32016,8 @@ "kernelrelease": "5.13.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" ] @@ -31804,10 +32027,10 @@ "kernelrelease": "5.13.0-1012-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" ] }, { @@ -31815,42 +32038,42 @@ "kernelrelease": "5.13.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" ] }, - { - "kernelversion": "14", - "kernelrelease": "5.13.0-1013-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" - ] - }, { "kernelversion": "14", "kernelrelease": "5.13.0-1013-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" ] }, + { + "kernelversion": "14", + "kernelrelease": "5.13.0-1013-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb" + ] + }, { "kernelversion": "16", "kernelrelease": "5.13.0-1013-gcp", "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" ] }, @@ -31860,8 +32083,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" ] }, @@ -31881,10 +32104,10 @@ "kernelrelease": "5.13.0-1014-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb" ] }, { @@ -31893,9 +32116,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb" ] }, { @@ -31904,8 +32127,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb" ] }, @@ -31914,10 +32137,10 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb" ] }, { @@ -31926,8 +32149,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb" ] }, @@ -31936,10 +32159,10 @@ "kernelrelease": "5.13.0-1019-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { @@ -31948,9 +32171,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb" ] }, { @@ -31958,10 +32181,10 @@ "kernelrelease": "5.13.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" ] }, { @@ -31969,8 +32192,8 @@ "kernelrelease": "5.13.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] @@ -31980,10 +32203,10 @@ "kernelrelease": "5.13.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, { @@ -31991,10 +32214,10 @@ "kernelrelease": "5.13.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb" ] }, { @@ -32003,9 +32226,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb" ] }, { @@ -32013,9 +32236,9 @@ "kernelrelease": "5.13.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" ] }, @@ -32024,9 +32247,9 @@ "kernelrelease": "5.13.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" ] }, @@ -32035,10 +32258,10 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb" ] }, { @@ -32046,10 +32269,10 @@ "kernelrelease": "5.13.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb" ] }, { @@ -32059,8 +32282,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb" ] }, { @@ -32068,10 +32291,10 @@ "kernelrelease": "5.13.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" ] }, { @@ -32079,10 +32302,10 @@ "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" ] }, { @@ -32090,10 +32313,10 @@ "kernelrelease": "5.13.0-1024-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb" ] }, { @@ -32102,9 +32325,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb" ] }, { @@ -32112,9 +32335,9 @@ "kernelrelease": "5.13.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" ] }, @@ -32123,9 +32346,9 @@ "kernelrelease": "5.13.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb" ] }, @@ -32134,10 +32357,10 @@ "kernelrelease": "5.13.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb" ] }, { @@ -32145,10 +32368,10 @@ "kernelrelease": "5.13.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" ] }, { @@ -32158,8 +32381,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb" ] }, { @@ -32168,8 +32391,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb" ] }, @@ -32184,15 +32407,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb" ] }, + { + "kernelversion": "33", + "kernelrelease": "5.13.0-1028-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb" + ] + }, { "kernelversion": "33", "kernelrelease": "5.13.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" ] }, { @@ -32200,21 +32434,10 @@ "kernelrelease": "5.13.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.13.0-1028-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] }, { @@ -32224,177 +32447,21 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.13.0-28", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.13.0-29", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29-generic_5.13.0-29.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-29_5.13.0-29.32_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.13.0-30", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.13.0-32", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-generic_5.13.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32_5.13.0-32.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.13.0-36", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36_5.13.0-36.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-generic_5.13.0-36.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41_amd64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.13.0-37", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.13.0-38", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38_5.13.0-38.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-lowlatency_5.13.0-38.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-38-generic_5.13.0-38.43_amd64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.13.0-40", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.13.0-41", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "5.13.0-42", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42_5.13.0-42.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-generic_5.13.0-42.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-42-lowlatency_5.13.0-42.47_amd64.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "5.13.0-43", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-generic_5.13.0-43.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43_5.13.0-43.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.13.0-44", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.13.0-45", + "kernelversion": "59", + "kernelrelease": "5.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45_5.13.0-45.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-lowlatency_5.13.0-45.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-45-generic_5.13.0-45.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb" ] }, { @@ -32402,10 +32469,10 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" ] }, { @@ -32413,10 +32480,10 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" ] }, { @@ -32425,9 +32492,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb" ] }, { @@ -32436,9 +32503,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" ] }, { @@ -32446,10 +32513,10 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb" ] }, { @@ -32457,32 +32524,10 @@ "kernelrelease": "5.13.0-1016-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" ] }, { @@ -32490,9 +32535,9 @@ "kernelrelease": "5.13.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" ] }, @@ -32501,10 +32546,10 @@ "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" ] }, { @@ -32512,10 +32557,10 @@ "kernelrelease": "5.13.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" ] }, { @@ -32523,10 +32568,10 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" ] }, { @@ -32534,10 +32579,10 @@ "kernelrelease": "5.13.0-1022-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" ] }, { @@ -32545,21 +32590,10 @@ "kernelrelease": "5.13.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb" ] }, { @@ -32568,20 +32602,31 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" ] }, + { + "kernelversion": "32", + "kernelrelease": "5.13.0-1027-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" + ] + }, { "kernelversion": "29", "kernelrelease": "5.13.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb" ] }, { @@ -32589,10 +32634,10 @@ "kernelrelease": "5.13.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb" ] }, { @@ -32600,10 +32645,21 @@ "kernelrelease": "5.13.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.13.0-1030-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb" ] }, { @@ -32611,21 +32667,65 @@ "kernelrelease": "5.13.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb" ] }, + { + "kernelversion": "35", + "kernelrelease": "5.13.0-1031-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb" + ] + }, + { + "kernelversion": "37", + "kernelrelease": "5.13.0-1031-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb" + ] + }, + { + "kernelversion": "40", + "kernelrelease": "5.13.0-1033-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb" + ] + }, { "kernelversion": "39", "kernelrelease": "5.13.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.13.0-1036-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_amd64.deb" ] }, { @@ -32633,12 +32733,12 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb" ] }, { @@ -32646,10 +32746,10 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb" ] @@ -32659,11 +32759,11 @@ "kernelrelease": "5.13.0-23", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb" ] }, @@ -32673,8 +32773,8 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" @@ -32685,25 +32785,64 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" ] }, + { + "kernelversion": "31", + "kernelrelease": "5.13.0-28", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.13.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" + ] + }, { "kernelversion": "40", "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.13.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb" ] }, { @@ -32711,12 +32850,51 @@ "kernelrelease": "5.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.13.0-40", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "5.13.0-41", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.13.0-44", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb" ] }, { @@ -32724,12 +32902,25 @@ "kernelrelease": "5.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.13.0-51", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb" ] }, { @@ -32737,10 +32928,10 @@ "kernelrelease": "5.13.0-1013-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb" ] }, { @@ -32749,9 +32940,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb" ] }, { @@ -32759,10 +32950,10 @@ "kernelrelease": "5.13.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb" ] }, { @@ -32770,8 +32961,8 @@ "kernelrelease": "5.13.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb" ] @@ -32781,12 +32972,12 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" ] }, { @@ -32794,12 +32985,12 @@ "kernelrelease": "5.13.0-46", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb" ] }, { @@ -32807,10 +32998,10 @@ "kernelrelease": "5.13.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" ] }, { @@ -32818,10 +33009,10 @@ "kernelrelease": "5.13.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb" ] }, { @@ -32831,8 +33022,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" ] }, { @@ -32851,12 +33042,12 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" ] }, { @@ -32864,10 +33055,10 @@ "kernelrelease": "5.15.0-1004-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb" ] }, { @@ -32875,32 +33066,21 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.15.0-1006-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1006-aws_5.15.0-1006.8_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1006-oracle", - "target": "ubuntu-oracle", + "kernelversion": "7", + "kernelrelease": "5.15.0-1006-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" ] }, { @@ -32908,21 +33088,10 @@ "kernelrelease": "5.15.0-1006-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1006-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb" ] }, { @@ -32931,20 +33100,31 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb" ] }, + { + "kernelversion": "8", + "kernelrelease": "5.15.0-1006-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + ] + }, { "kernelversion": "8", "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { @@ -32952,10 +33132,10 @@ "kernelrelease": "5.15.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { @@ -32963,43 +33143,32 @@ "kernelrelease": "5.15.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-gke", - "target": "ubuntu-gke", + "kernelversion": "16", + "kernelrelease": "5.15.0-1013-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", + "kernelversion": "18", + "kernelrelease": "5.15.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.15.0-29", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29-generic_5.15.0-29.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-29_5.15.0-29.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" ] }, { @@ -33007,10 +33176,10 @@ "kernelrelease": "5.15.0-30-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { @@ -33018,21 +33187,10 @@ "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.15.0-32", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32-generic_5.15.0-32.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-32_5.15.0-32.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { @@ -33040,21 +33198,10 @@ "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" ] }, { @@ -33063,31 +33210,42 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.15.0-35-lowlatency", + "kernelversion": "34", + "kernelrelease": "5.15.0-33-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.15.0-35", + "kernelversion": "43", + "kernelrelease": "5.15.0-40-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.15.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb" ] }, { @@ -33095,10 +33253,10 @@ "kernelrelease": "5.17.0-1004-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" ] }, { @@ -33106,19 +33264,63 @@ "kernelrelease": "5.17.0-1005-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" ] }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" + ] + }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb" + ] + }, { "kernelversion": "12", "kernelrelease": "5.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb" ] @@ -33128,10 +33330,32 @@ "kernelrelease": "5.15.0-1008-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.15.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.15.0-1009-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb" ] }, { @@ -33139,10 +33363,10 @@ "kernelrelease": "5.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" ] }, { @@ -33150,10 +33374,43 @@ "kernelrelease": "5.15.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.15.0-1010-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb" + ] + }, + { + "kernelversion": "13", + "kernelrelease": "5.15.0-1010-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.15.0-1010-intel-iotg", + "target": "ubuntu-intel-iotg", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb" ] }, { @@ -33161,10 +33418,10 @@ "kernelrelease": "5.15.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb" ] }, { @@ -33172,10 +33429,65 @@ "kernelrelease": "5.15.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.15.0-1011-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.15.0-1012-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.15.0-1012-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb" + ] + }, + { + "kernelversion": "17", + "kernelrelease": "5.15.0-1013-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.15.0-37", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb" ] }, { @@ -33183,21 +33495,32 @@ "kernelrelease": "5.15.0-37-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.15.0-37", + "kernelversion": "42", + "kernelrelease": "5.15.0-39-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb" ] }, { @@ -33205,10 +33528,10 @@ "kernelrelease": "5.17.0-1006-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb" ] }, { @@ -33216,10 +33539,10 @@ "kernelrelease": "5.17.0-1011-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb" ] }, { @@ -33227,10 +33550,10 @@ "kernelrelease": "5.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb" ] }, { @@ -33238,10 +33561,10 @@ "kernelrelease": "5.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb" ] }, { @@ -33249,9 +33572,9 @@ "kernelrelease": "5.15.0-1008-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" ] }, @@ -33260,21 +33583,32 @@ "kernelrelease": "5.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelversion": "36", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" ] }, { @@ -33282,9 +33616,9 @@ "kernelrelease": "5.15.0-1002-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" ] }, @@ -33293,10 +33627,10 @@ "kernelrelease": "5.15.0-1002-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb" ] }, { @@ -33304,10 +33638,10 @@ "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" ] }, { @@ -33315,9 +33649,9 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb" ] }, @@ -33327,9 +33661,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" ] }, { @@ -33337,10 +33671,10 @@ "kernelrelease": "4.15.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" ] }, { @@ -33348,12 +33682,12 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" ] }, { @@ -33362,11 +33696,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" ] }, { @@ -33374,12 +33708,12 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb" ] }, { @@ -33387,12 +33721,12 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb" ] }, { @@ -33400,12 +33734,12 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" ] }, { @@ -33413,12 +33747,12 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb" ] }, { @@ -33426,11 +33760,11 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" ] }, @@ -33439,11 +33773,11 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" ] }, @@ -33452,12 +33786,12 @@ "kernelrelease": "3.13.0-110", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb" ] }, { @@ -33465,12 +33799,12 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb" ] }, { @@ -33478,12 +33812,12 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb" ] }, { @@ -33491,12 +33825,12 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb" ] }, { @@ -33504,11 +33838,11 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb" ] }, @@ -33518,11 +33852,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" ] }, { @@ -33531,24 +33865,24 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb" ] }, { "kernelversion": "172", "kernelrelease": "3.13.0-123", "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" ] }, { @@ -33556,12 +33890,12 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb" ] }, { @@ -33570,11 +33904,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" ] }, { @@ -33582,11 +33916,11 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" ] }, @@ -33595,12 +33929,12 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb" ] }, { @@ -33608,12 +33942,12 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" ] }, { @@ -33621,12 +33955,12 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb" ] }, { @@ -33634,12 +33968,12 @@ "kernelrelease": "3.13.0-135", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" ] }, { @@ -33647,12 +33981,12 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" ] }, { @@ -33660,12 +33994,12 @@ "kernelrelease": "3.13.0-139", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb" ] }, { @@ -33673,12 +34007,12 @@ "kernelrelease": "3.13.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" ] }, { @@ -33686,12 +34020,12 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb" ] }, { @@ -33700,11 +34034,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb" ] }, { @@ -33712,12 +34046,12 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" ] }, { @@ -33725,11 +34059,11 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" ] }, @@ -33738,10 +34072,10 @@ "kernelrelease": "3.13.0-149", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" ] @@ -33751,12 +34085,12 @@ "kernelrelease": "3.13.0-151", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" ] }, { @@ -33764,12 +34098,12 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" ] }, { @@ -33780,9 +34114,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb" ] }, { @@ -33791,11 +34125,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb" ] }, { @@ -33803,12 +34137,12 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb" ] }, { @@ -33816,12 +34150,12 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" ] }, { @@ -33829,12 +34163,12 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" ] }, { @@ -33842,12 +34176,12 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb" ] }, { @@ -33855,12 +34189,12 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" ] }, { @@ -33868,11 +34202,11 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" ] }, @@ -33881,12 +34215,12 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb" ] }, { @@ -33896,10 +34230,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb" ] }, { @@ -33907,12 +34241,12 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" ] }, { @@ -33920,12 +34254,12 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" ] }, { @@ -33933,12 +34267,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb" ] }, { @@ -33946,12 +34280,12 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb" ] }, { @@ -33960,9 +34294,9 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb" ] @@ -33972,11 +34306,11 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb" ] }, @@ -33985,12 +34319,12 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" ] }, { @@ -33998,12 +34332,12 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" ] }, { @@ -34011,12 +34345,12 @@ "kernelrelease": "3.13.0-34", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" ] }, { @@ -34024,12 +34358,12 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb" ] }, { @@ -34037,12 +34371,12 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" ] }, { @@ -34051,11 +34385,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" ] }, { @@ -34063,12 +34397,12 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb" ] }, { @@ -34076,11 +34410,11 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb" ] }, @@ -34089,12 +34423,12 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" ] }, { @@ -34102,12 +34436,12 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" ] }, { @@ -34115,12 +34449,12 @@ "kernelrelease": "3.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" ] }, { @@ -34129,11 +34463,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb" ] }, { @@ -34141,12 +34475,12 @@ "kernelrelease": "3.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb" ] }, { @@ -34154,12 +34488,12 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, { @@ -34167,12 +34501,12 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb" ] }, { @@ -34180,12 +34514,12 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb" ] }, { @@ -34193,12 +34527,12 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb" ] }, { @@ -34209,8 +34543,8 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" ] }, @@ -34219,12 +34553,12 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb" ] }, { @@ -34232,12 +34566,12 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb" ] }, { @@ -34245,12 +34579,12 @@ "kernelrelease": "3.13.0-58", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb" ] }, { @@ -34258,12 +34592,12 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb" ] }, { @@ -34271,12 +34605,12 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" ] }, { @@ -34284,12 +34618,12 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" ] }, { @@ -34297,12 +34631,12 @@ "kernelrelease": "3.13.0-63", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb" ] }, { @@ -34310,12 +34644,12 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb" ] }, { @@ -34323,12 +34657,12 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" ] }, { @@ -34336,12 +34670,12 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" ] }, { @@ -34349,12 +34683,12 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" ] }, { @@ -34362,12 +34696,12 @@ "kernelrelease": "3.13.0-70", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" ] }, { @@ -34375,12 +34709,12 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" ] }, { @@ -34388,12 +34722,12 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb" ] }, { @@ -34401,11 +34735,11 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb" ] }, @@ -34417,9 +34751,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" ] }, { @@ -34427,12 +34761,12 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb" ] }, { @@ -34440,12 +34774,12 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb" ] }, { @@ -34453,11 +34787,11 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb" ] }, @@ -34466,12 +34800,12 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" ] }, { @@ -34480,11 +34814,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb" ] }, { @@ -34492,12 +34826,12 @@ "kernelrelease": "3.13.0-87", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" ] }, { @@ -34505,12 +34839,12 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb" ] }, { @@ -34518,12 +34852,12 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" ] }, { @@ -34532,11 +34866,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb" ] }, { @@ -34544,12 +34878,12 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" ] }, { @@ -34557,12 +34891,12 @@ "kernelrelease": "3.13.0-95", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb" ] }, { @@ -34570,12 +34904,12 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" ] }, { @@ -34583,12 +34917,12 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb" ] }, { @@ -34596,12 +34930,12 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb" ] }, { @@ -34609,11 +34943,11 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb" ] }, @@ -34622,12 +34956,12 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" ] }, { @@ -34635,12 +34969,12 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" ] }, { @@ -34648,12 +34982,12 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" ] }, { @@ -34661,12 +34995,12 @@ "kernelrelease": "3.16.0-33-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" ] }, { @@ -34674,11 +35008,11 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb" ] }, @@ -34688,11 +35022,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" ] }, { @@ -34700,12 +35034,12 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb" ] }, { @@ -34713,12 +35047,12 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb" ] }, { @@ -34726,12 +35060,12 @@ "kernelrelease": "3.16.0-39-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb" ] }, { @@ -34739,12 +35073,12 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb" ] }, { @@ -34752,12 +35086,12 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb" ] }, { @@ -34766,11 +35100,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" ] }, { @@ -34779,10 +35113,10 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb" ] }, @@ -34792,11 +35126,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb" ] }, { @@ -34804,12 +35138,12 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb" ] }, { @@ -34817,12 +35151,12 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" ] }, { @@ -34831,10 +35165,10 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" ] }, @@ -34845,10 +35179,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb" ] }, { @@ -34857,11 +35191,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" ] }, { @@ -34869,11 +35203,11 @@ "kernelrelease": "3.16.0-53-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb" ] }, @@ -34883,11 +35217,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" ] }, { @@ -34895,12 +35229,12 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" ] }, { @@ -34908,12 +35242,12 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb" ] }, { @@ -34921,11 +35255,11 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" ] }, @@ -34934,12 +35268,12 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb" ] }, { @@ -34947,12 +35281,12 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" ] }, { @@ -34960,12 +35294,12 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" ] }, { @@ -34973,12 +35307,12 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb" ] }, { @@ -34986,12 +35320,12 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" ] }, { @@ -34999,12 +35333,12 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" ] }, { @@ -35012,12 +35346,12 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb" ] }, { @@ -35025,12 +35359,12 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" ] }, { @@ -35038,11 +35372,11 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb" ] }, @@ -35051,12 +35385,12 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" ] }, { @@ -35064,12 +35398,12 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb" ] }, { @@ -35077,11 +35411,11 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" ] }, @@ -35090,12 +35424,12 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" ] }, { @@ -35104,11 +35438,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" ] }, { @@ -35116,12 +35450,12 @@ "kernelrelease": "3.19.0-26-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" ] }, { @@ -35130,11 +35464,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb" ] }, { @@ -35142,12 +35476,12 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb" ] }, { @@ -35155,11 +35489,11 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb" ] }, @@ -35168,12 +35502,12 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb" ] }, { @@ -35181,11 +35515,11 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" ] }, @@ -35194,12 +35528,12 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" ] }, { @@ -35207,12 +35541,12 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb" ] }, { @@ -35220,12 +35554,12 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" ] }, { @@ -35233,11 +35567,11 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb" ] }, @@ -35246,12 +35580,12 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" ] }, { @@ -35259,12 +35593,12 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb" ] }, { @@ -35272,12 +35606,12 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" ] }, { @@ -35286,11 +35620,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb" ] }, { @@ -35298,12 +35632,12 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" ] }, { @@ -35311,12 +35645,12 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb" ] }, { @@ -35324,11 +35658,11 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" ] }, @@ -35337,12 +35671,12 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb" ] }, { @@ -35350,12 +35684,12 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb" ] }, { @@ -35364,10 +35698,10 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb" ] }, @@ -35376,12 +35710,12 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb" ] }, { @@ -35390,11 +35724,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" ] }, { @@ -35402,12 +35736,12 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" ] }, { @@ -35416,11 +35750,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb" ] }, { @@ -35428,12 +35762,12 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" ] }, { @@ -35441,12 +35775,12 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" ] }, { @@ -35454,12 +35788,12 @@ "kernelrelease": "3.19.0-75-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" ] }, { @@ -35467,10 +35801,10 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" ] @@ -35481,10 +35815,10 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb" ] }, @@ -35494,11 +35828,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" ] }, { @@ -35508,9 +35842,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb" ] }, @@ -35519,10 +35853,10 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb" ] }, { @@ -35530,9 +35864,9 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" ] }, @@ -35541,10 +35875,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" ] }, { @@ -35552,10 +35886,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" ] }, { @@ -35574,10 +35908,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" ] }, { @@ -35585,10 +35919,10 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" ] }, { @@ -35597,8 +35931,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" ] }, @@ -35607,10 +35941,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" ] }, { @@ -35618,10 +35952,10 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" ] }, { @@ -35629,12 +35963,12 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb" ] }, { @@ -35642,11 +35976,11 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" ] }, @@ -35655,12 +35989,12 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb" ] }, { @@ -35668,12 +36002,12 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" ] }, { @@ -35681,11 +36015,11 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb" ] }, @@ -35694,12 +36028,12 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" ] }, { @@ -35707,12 +36041,12 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb" ] }, { @@ -35720,12 +36054,12 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" ] }, { @@ -35733,12 +36067,12 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb" ] }, { @@ -35746,12 +36080,12 @@ "kernelrelease": "4.2.0-35-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" ] }, { @@ -35759,11 +36093,11 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" ] }, @@ -35772,12 +36106,12 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb" ] }, { @@ -35786,11 +36120,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" ] }, { @@ -35798,12 +36132,12 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb" ] }, { @@ -35811,12 +36145,12 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" ] }, { @@ -35824,12 +36158,12 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb" ] }, { @@ -35837,12 +36171,12 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" ] }, { @@ -35850,12 +36184,12 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb" ] }, { @@ -35863,12 +36197,12 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" ] }, { @@ -35876,12 +36210,12 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb" ] }, { @@ -35889,12 +36223,12 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" ] }, { @@ -35902,12 +36236,12 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" ] }, { @@ -35915,12 +36249,12 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" ] }, { @@ -35928,11 +36262,11 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" ] }, @@ -35942,11 +36276,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" ] }, { @@ -35954,11 +36288,11 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb" ] }, @@ -35967,12 +36301,12 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" ] }, { @@ -35980,12 +36314,12 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" ] }, { @@ -35993,12 +36327,12 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb" ] }, { @@ -36006,12 +36340,12 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb" ] }, { @@ -36020,11 +36354,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb" ] }, { @@ -36032,12 +36366,12 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" ] }, { @@ -36045,11 +36379,11 @@ "kernelrelease": "4.4.0-139-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb" ] }, @@ -36058,12 +36392,12 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb" ] }, { @@ -36071,11 +36405,11 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" ] }, @@ -36084,12 +36418,12 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" ] }, { @@ -36097,12 +36431,12 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" ] }, { @@ -36110,12 +36444,12 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb" ] }, { @@ -36124,11 +36458,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" ] }, { @@ -36137,11 +36471,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" ] }, { @@ -36149,12 +36483,12 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb" ] }, { @@ -36163,10 +36497,10 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" ] }, @@ -36175,11 +36509,11 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb" ] }, @@ -36188,12 +36522,12 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" ] }, { @@ -36203,10 +36537,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" ] }, { @@ -36214,12 +36548,12 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb" ] }, { @@ -36227,11 +36561,11 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" ] }, @@ -36241,11 +36575,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" ] }, { @@ -36253,12 +36587,12 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb" ] }, { @@ -36266,12 +36600,12 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb" ] }, { @@ -36280,11 +36614,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" ] }, { @@ -36292,12 +36626,12 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" ] }, { @@ -36305,12 +36639,12 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb" ] }, { @@ -36319,11 +36653,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" ] }, { @@ -36331,12 +36665,12 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" ] }, { @@ -36344,12 +36678,12 @@ "kernelrelease": "4.4.0-64-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb" ] }, { @@ -36357,12 +36691,12 @@ "kernelrelease": "4.4.0-66-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" ] }, { @@ -36370,12 +36704,12 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" ] }, { @@ -36383,12 +36717,12 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" ] }, { @@ -36396,12 +36730,12 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" ] }, { @@ -36409,12 +36743,12 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb" ] }, { @@ -36422,12 +36756,12 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb" ] }, { @@ -36436,9 +36770,9 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb" ] @@ -36448,12 +36782,12 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb" ] }, { @@ -36461,12 +36795,12 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb" ] }, { @@ -36474,12 +36808,12 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb" ] }, { @@ -36487,12 +36821,12 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" ] }, { @@ -36500,12 +36834,12 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" ] }, { @@ -36513,11 +36847,11 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb" ] }, @@ -36527,11 +36861,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" ] }, { @@ -36539,11 +36873,11 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb" ] }, @@ -36552,12 +36886,12 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" ] }, { @@ -36565,11 +36899,11 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" ] }, @@ -36578,12 +36912,12 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" ] }, { @@ -36591,12 +36925,12 @@ "kernelrelease": "3.13.0-113", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb" ] }, { @@ -36604,12 +36938,12 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" ] }, { @@ -36617,12 +36951,12 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb" ] }, { @@ -36631,11 +36965,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" ] }, { @@ -36643,12 +36977,12 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb" ] }, { @@ -36656,12 +36990,12 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" ] }, { @@ -36669,12 +37003,12 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" ] }, { @@ -36682,12 +37016,12 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" ] }, { @@ -36695,12 +37029,12 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" ] }, { @@ -36709,9 +37043,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb" ] }, { @@ -36719,10 +37053,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb" ] }, { @@ -36731,11 +37065,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" ] }, { @@ -36743,12 +37077,12 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" ] }, { @@ -36756,12 +37090,12 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" ] }, { @@ -36771,10 +37105,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" ] }, { @@ -36782,12 +37116,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb" ] }, { @@ -36796,8 +37130,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" ] }, @@ -36806,10 +37140,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb" ] }, { @@ -36817,10 +37151,10 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb" ] }, { @@ -36829,9 +37163,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb" ] }, { @@ -36839,10 +37173,10 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, { @@ -36850,10 +37184,10 @@ "kernelrelease": "4.15.0-1110-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb" ] }, { @@ -36861,10 +37195,10 @@ "kernelrelease": "4.4.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" ] }, { @@ -36873,11 +37207,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" ] }, { @@ -36888,9 +37222,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" ] }, { @@ -36898,12 +37232,12 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" ] }, { @@ -36911,12 +37245,12 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb" ] }, { @@ -36924,12 +37258,12 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" ] }, { @@ -36937,12 +37271,12 @@ "kernelrelease": "4.10.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb" ] }, { @@ -36950,12 +37284,12 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" ] }, { @@ -36964,10 +37298,10 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" ] }, @@ -36977,11 +37311,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb" ] }, { @@ -36989,10 +37323,10 @@ "kernelrelease": "4.10.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb" ] @@ -37002,12 +37336,12 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" ] }, { @@ -37015,12 +37349,12 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" ] }, { @@ -37029,11 +37363,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb" ] }, { @@ -37041,12 +37375,12 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" ] }, { @@ -37054,12 +37388,12 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" ] }, { @@ -37067,12 +37401,12 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" ] }, { @@ -37080,12 +37414,12 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" ] }, { @@ -37093,12 +37427,12 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" ] }, { @@ -37106,12 +37440,12 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" ] }, { @@ -37119,10 +37453,10 @@ "kernelrelease": "4.11.0-1015-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb" ] }, { @@ -37130,9 +37464,9 @@ "kernelrelease": "4.11.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" ] }, @@ -37141,10 +37475,10 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" ] @@ -37154,11 +37488,11 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" ] }, @@ -37167,10 +37501,10 @@ "kernelrelease": "4.13.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb" ] }, { @@ -37178,10 +37512,10 @@ "kernelrelease": "4.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" ] }, { @@ -37190,9 +37524,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" ] }, { @@ -37200,10 +37534,10 @@ "kernelrelease": "4.13.0-1011-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" ] }, { @@ -37212,9 +37546,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" ] }, { @@ -37222,10 +37556,10 @@ "kernelrelease": "4.13.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb" ] }, { @@ -37233,9 +37567,9 @@ "kernelrelease": "4.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb" ] }, @@ -37244,12 +37578,12 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" ] }, { @@ -37257,10 +37591,10 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" ] @@ -37271,11 +37605,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" ] }, { @@ -37283,11 +37617,11 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb" ] }, @@ -37297,11 +37631,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" ] }, { @@ -37309,12 +37643,12 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" ] }, { @@ -37322,11 +37656,11 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb" ] }, @@ -37335,12 +37669,12 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb" ] }, { @@ -37348,12 +37682,12 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" ] }, { @@ -37361,12 +37695,12 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb" ] }, { @@ -37374,12 +37708,12 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" ] }, { @@ -37387,12 +37721,12 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb" ] }, { @@ -37400,12 +37734,12 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" ] }, { @@ -37413,11 +37747,11 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" ] }, @@ -37426,12 +37760,12 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb" ] }, { @@ -37439,10 +37773,10 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" ] }, { @@ -37450,10 +37784,10 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" ] }, { @@ -37461,12 +37795,12 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb" ] }, { @@ -37474,10 +37808,10 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" ] }, { @@ -37486,9 +37820,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" ] }, { @@ -37496,10 +37830,10 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" ] }, { @@ -37507,10 +37841,10 @@ "kernelrelease": "4.15.0-1014-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb" ] }, { @@ -37518,10 +37852,10 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb" ] }, { @@ -37529,9 +37863,9 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" ] }, @@ -37540,10 +37874,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" ] }, { @@ -37551,9 +37885,9 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" ] }, @@ -37562,10 +37896,10 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb" ] }, { @@ -37573,10 +37907,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" ] }, { @@ -37584,10 +37918,10 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" ] }, { @@ -37606,10 +37940,10 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" ] }, { @@ -37617,8 +37951,8 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" ] @@ -37628,10 +37962,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" ] }, { @@ -37650,10 +37984,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" ] }, { @@ -37662,31 +37996,31 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1023-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-1023-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { @@ -37694,10 +38028,10 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" ] }, { @@ -37705,10 +38039,10 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" ] }, { @@ -37716,10 +38050,10 @@ "kernelrelease": "4.15.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { @@ -37727,8 +38061,8 @@ "kernelrelease": "4.15.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb" ] @@ -37738,10 +38072,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb" ] }, { @@ -37749,10 +38083,10 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb" ] }, { @@ -37761,9 +38095,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" ] }, { @@ -37771,9 +38105,9 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" ] }, @@ -37782,32 +38116,32 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" ] }, { @@ -37815,9 +38149,9 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" ] }, @@ -37826,10 +38160,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb" ] }, { @@ -37837,10 +38171,10 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb" ] }, { @@ -37848,10 +38182,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" ] }, { @@ -37870,10 +38204,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" ] }, { @@ -37881,8 +38215,8 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" ] @@ -37894,8 +38228,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb" ] }, { @@ -37903,10 +38237,10 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb" ] }, { @@ -37914,10 +38248,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" ] }, { @@ -37926,9 +38260,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" ] }, { @@ -37936,32 +38270,32 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" ] }, { @@ -37969,10 +38303,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" ] }, { @@ -37980,9 +38314,9 @@ "kernelrelease": "4.15.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" ] }, @@ -37991,9 +38325,9 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" ] }, @@ -38002,10 +38336,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" ] }, { @@ -38015,8 +38349,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" ] }, { @@ -38035,10 +38369,10 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" ] }, { @@ -38046,10 +38380,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb" ] }, { @@ -38057,10 +38391,10 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" ] }, { @@ -38069,9 +38403,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" ] }, { @@ -38079,10 +38413,10 @@ "kernelrelease": "4.15.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb" ] }, { @@ -38090,10 +38424,10 @@ "kernelrelease": "4.15.0-1047-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" ] }, { @@ -38101,10 +38435,10 @@ "kernelrelease": "4.15.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" ] }, { @@ -38113,9 +38447,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb" ] }, { @@ -38134,10 +38468,10 @@ "kernelrelease": "4.15.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" ] }, { @@ -38145,10 +38479,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb" ] }, { @@ -38156,10 +38490,10 @@ "kernelrelease": "4.15.0-1052-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb" ] }, { @@ -38167,9 +38501,9 @@ "kernelrelease": "4.15.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" ] }, @@ -38179,9 +38513,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" ] }, { @@ -38189,9 +38523,9 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" ] }, @@ -38200,10 +38534,10 @@ "kernelrelease": "4.15.0-1055-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb" ] }, { @@ -38211,10 +38545,10 @@ "kernelrelease": "4.15.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" ] }, { @@ -38222,10 +38556,10 @@ "kernelrelease": "4.15.0-1056-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" ] }, { @@ -38233,10 +38567,10 @@ "kernelrelease": "4.15.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" ] }, { @@ -38244,10 +38578,10 @@ "kernelrelease": "4.15.0-1058-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" ] }, { @@ -38255,10 +38589,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb" ] }, { @@ -38266,9 +38600,9 @@ "kernelrelease": "4.15.0-1059-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" ] }, @@ -38277,12 +38611,12 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb" ] }, { @@ -38290,10 +38624,10 @@ "kernelrelease": "4.15.0-1060-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" ] }, { @@ -38301,10 +38635,10 @@ "kernelrelease": "4.15.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb" ] }, { @@ -38312,10 +38646,10 @@ "kernelrelease": "4.15.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" ] }, { @@ -38325,8 +38659,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" ] }, { @@ -38334,10 +38668,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" ] }, { @@ -38345,9 +38679,9 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" ] }, @@ -38358,8 +38692,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" ] }, { @@ -38367,10 +38701,10 @@ "kernelrelease": "4.15.0-1064-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" ] }, { @@ -38380,8 +38714,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb" ] }, { @@ -38389,10 +38723,10 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" ] }, { @@ -38400,10 +38734,10 @@ "kernelrelease": "4.15.0-1066-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" ] }, { @@ -38412,9 +38746,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb" ] }, { @@ -38423,9 +38757,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" ] }, { @@ -38433,9 +38767,9 @@ "kernelrelease": "4.15.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" ] }, @@ -38444,10 +38778,10 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb" ] }, { @@ -38455,12 +38789,12 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" ] }, { @@ -38468,9 +38802,9 @@ "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" ] }, @@ -38479,10 +38813,10 @@ "kernelrelease": "4.15.0-1071-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" ] }, { @@ -38490,10 +38824,10 @@ "kernelrelease": "4.15.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" ] }, { @@ -38501,9 +38835,9 @@ "kernelrelease": "4.15.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" ] }, @@ -38512,10 +38846,10 @@ "kernelrelease": "4.15.0-1077-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" ] }, { @@ -38534,10 +38868,10 @@ "kernelrelease": "4.15.0-1080-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb" ] }, { @@ -38545,10 +38879,10 @@ "kernelrelease": "4.15.0-1081-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb" ] }, { @@ -38556,8 +38890,8 @@ "kernelrelease": "4.15.0-1082-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb" ] @@ -38568,8 +38902,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" ] }, @@ -38579,8 +38913,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb" ] }, @@ -38590,9 +38924,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" ] }, { @@ -38600,10 +38934,10 @@ "kernelrelease": "4.15.0-1086-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" ] }, { @@ -38611,8 +38945,8 @@ "kernelrelease": "4.15.0-1087-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb" ] @@ -38622,9 +38956,9 @@ "kernelrelease": "4.15.0-1089-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb" ] }, @@ -38633,10 +38967,10 @@ "kernelrelease": "4.15.0-1090-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb" ] }, { @@ -38644,10 +38978,10 @@ "kernelrelease": "4.15.0-1091-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" ] }, { @@ -38655,10 +38989,10 @@ "kernelrelease": "4.15.0-1091-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" ] }, { @@ -38666,10 +39000,10 @@ "kernelrelease": "4.15.0-1092-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb" ] }, { @@ -38677,10 +39011,10 @@ "kernelrelease": "4.15.0-1092-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" ] }, { @@ -38688,10 +39022,10 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" ] }, { @@ -38699,10 +39033,10 @@ "kernelrelease": "4.15.0-1093-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb" ] }, { @@ -38710,10 +39044,10 @@ "kernelrelease": "4.15.0-1093-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" ] }, { @@ -38721,10 +39055,10 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" ] }, { @@ -38732,9 +39066,9 @@ "kernelrelease": "4.15.0-1094-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" ] }, @@ -38745,8 +39079,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" ] }, { @@ -38754,10 +39088,10 @@ "kernelrelease": "4.15.0-1096-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" ] }, { @@ -38765,10 +39099,10 @@ "kernelrelease": "4.15.0-1096-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" ] }, { @@ -38776,10 +39110,10 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" ] }, { @@ -38787,10 +39121,10 @@ "kernelrelease": "4.15.0-1097-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb" ] }, { @@ -38809,10 +39143,10 @@ "kernelrelease": "4.15.0-1098-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" ] }, { @@ -38820,9 +39154,9 @@ "kernelrelease": "4.15.0-1098-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" ] }, @@ -38831,10 +39165,10 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" ] }, { @@ -38842,10 +39176,10 @@ "kernelrelease": "4.15.0-1102-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb" ] }, { @@ -38853,10 +39187,10 @@ "kernelrelease": "4.15.0-1103-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" ] }, { @@ -38864,10 +39198,10 @@ "kernelrelease": "4.15.0-1106-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" ] }, { @@ -38875,10 +39209,10 @@ "kernelrelease": "4.15.0-1108-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" ] }, { @@ -38886,10 +39220,10 @@ "kernelrelease": "4.15.0-1109-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" ] }, { @@ -38898,9 +39232,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" ] }, { @@ -38910,8 +39244,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb" ] }, { @@ -38921,8 +39255,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" ] }, { @@ -38930,12 +39264,12 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" ] }, { @@ -38945,10 +39279,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb" ] }, { @@ -38956,11 +39290,11 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" ] }, @@ -38970,11 +39304,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb" ] }, { @@ -38982,12 +39316,12 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb" ] }, { @@ -38995,12 +39329,12 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" ] }, { @@ -39008,11 +39342,11 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb" ] }, @@ -39021,11 +39355,11 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb" ] }, @@ -39034,12 +39368,12 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb" ] }, { @@ -39047,12 +39381,12 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" ] }, { @@ -39060,12 +39394,12 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" ] }, { @@ -39073,11 +39407,11 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" ] }, @@ -39086,12 +39420,12 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" ] }, { @@ -39100,11 +39434,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" ] }, { @@ -39112,12 +39446,12 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb" ] }, { @@ -39125,11 +39459,11 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" ] }, @@ -39138,12 +39472,12 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" ] }, { @@ -39151,12 +39485,12 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" ] }, { @@ -39164,12 +39498,12 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" ] }, { @@ -39177,12 +39511,12 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" ] }, { @@ -39190,12 +39524,12 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" ] }, { @@ -39203,12 +39537,12 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" ] }, { @@ -39217,11 +39551,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb" ] }, { @@ -39229,11 +39563,11 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" ] }, @@ -39242,12 +39576,12 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" ] }, { @@ -39255,12 +39589,12 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb" ] }, { @@ -39268,12 +39602,12 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb" ] }, { @@ -39281,12 +39615,12 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb" ] }, { @@ -39295,11 +39629,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" ] }, { @@ -39307,12 +39641,12 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" ] }, { @@ -39321,11 +39655,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb" ] }, { @@ -39333,12 +39667,12 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb" ] }, { @@ -39347,11 +39681,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb" ] }, { @@ -39359,12 +39693,12 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" ] }, { @@ -39373,11 +39707,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb" ] }, { @@ -39385,12 +39719,12 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb" ] }, { @@ -39398,12 +39732,12 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" ] }, { @@ -39412,11 +39746,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb" ] }, { @@ -39427,9 +39761,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" ] }, { @@ -39437,12 +39771,12 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb" ] }, { @@ -39450,11 +39784,11 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb" ] }, @@ -39463,12 +39797,12 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" ] }, { @@ -39476,12 +39810,12 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb" ] }, { @@ -39489,12 +39823,12 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" ] }, { @@ -39503,11 +39837,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb" ] }, { @@ -39515,12 +39849,12 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" ] }, { @@ -39528,12 +39862,12 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" ] }, { @@ -39541,12 +39875,12 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb" ] }, { @@ -39555,11 +39889,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, { @@ -39567,12 +39901,12 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" ] }, { @@ -39580,12 +39914,12 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" ] }, { @@ -39593,12 +39927,12 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" ] }, { @@ -39606,12 +39940,12 @@ "kernelrelease": "4.15.0-96-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" ] }, { @@ -39619,12 +39953,12 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" ] }, { @@ -39632,10 +39966,10 @@ "kernelrelease": "4.4.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb" ] }, { @@ -39643,10 +39977,10 @@ "kernelrelease": "4.4.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb" ] }, { @@ -39654,10 +39988,10 @@ "kernelrelease": "4.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" ] }, { @@ -39665,11 +39999,11 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" ] }, @@ -39678,8 +40012,8 @@ "kernelrelease": "4.4.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" ] @@ -39689,10 +40023,10 @@ "kernelrelease": "4.4.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb" ] }, { @@ -39700,9 +40034,9 @@ "kernelrelease": "4.4.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" ] }, @@ -39712,8 +40046,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" ] }, @@ -39723,9 +40057,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb" ] }, { @@ -39733,10 +40067,10 @@ "kernelrelease": "4.4.0-1016-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb" ] }, { @@ -39755,10 +40089,10 @@ "kernelrelease": "4.4.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" ] }, { @@ -39766,9 +40100,9 @@ "kernelrelease": "4.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb" ] }, @@ -39777,10 +40111,10 @@ "kernelrelease": "4.4.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb" ] }, { @@ -39789,9 +40123,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" ] }, { @@ -39799,10 +40133,10 @@ "kernelrelease": "4.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb" ] }, { @@ -39810,9 +40144,9 @@ "kernelrelease": "4.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb" ] }, @@ -39821,8 +40155,8 @@ "kernelrelease": "4.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb" ] @@ -39833,9 +40167,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb" ] }, { @@ -39843,10 +40177,10 @@ "kernelrelease": "4.4.0-1026-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb" ] }, { @@ -39854,10 +40188,10 @@ "kernelrelease": "4.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb" ] }, { @@ -39865,10 +40199,10 @@ "kernelrelease": "4.4.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" ] }, { @@ -39877,9 +40211,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" ] }, { @@ -39887,10 +40221,10 @@ "kernelrelease": "4.4.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" ] }, { @@ -39898,12 +40232,12 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" ] }, { @@ -39911,9 +40245,9 @@ "kernelrelease": "4.4.0-1030-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb" ] }, @@ -39922,9 +40256,9 @@ "kernelrelease": "4.4.0-1031-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" ] }, @@ -39934,8 +40268,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" ] }, @@ -39944,10 +40278,10 @@ "kernelrelease": "4.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" ] }, { @@ -39955,10 +40289,10 @@ "kernelrelease": "4.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb" ] }, { @@ -39966,10 +40300,10 @@ "kernelrelease": "4.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" ] }, { @@ -39977,10 +40311,10 @@ "kernelrelease": "4.4.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb" ] }, { @@ -39989,8 +40323,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" ] }, @@ -40000,8 +40334,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" ] }, @@ -40010,10 +40344,10 @@ "kernelrelease": "4.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb" ] }, { @@ -40021,9 +40355,9 @@ "kernelrelease": "4.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb" ] }, @@ -40032,9 +40366,9 @@ "kernelrelease": "4.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" ] }, @@ -40043,12 +40377,12 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" ] }, { @@ -40056,10 +40390,10 @@ "kernelrelease": "4.4.0-1040-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb" ] }, { @@ -40068,9 +40402,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" ] }, { @@ -40078,9 +40412,9 @@ "kernelrelease": "4.4.0-1041-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb" ] }, @@ -40090,9 +40424,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" ] }, { @@ -40100,9 +40434,9 @@ "kernelrelease": "4.4.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" ] }, @@ -40111,10 +40445,10 @@ "kernelrelease": "4.4.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" ] }, { @@ -40122,10 +40456,10 @@ "kernelrelease": "4.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb" ] }, { @@ -40134,9 +40468,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb" ] }, { @@ -40144,10 +40478,10 @@ "kernelrelease": "4.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb" ] }, { @@ -40156,8 +40490,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" ] }, @@ -40166,10 +40500,10 @@ "kernelrelease": "4.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb" ] }, { @@ -40177,10 +40511,10 @@ "kernelrelease": "4.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" ] }, { @@ -40188,10 +40522,10 @@ "kernelrelease": "4.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb" ] }, { @@ -40199,10 +40533,10 @@ "kernelrelease": "4.4.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" ] }, { @@ -40210,10 +40544,10 @@ "kernelrelease": "4.4.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" ] }, { @@ -40222,9 +40556,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" ] }, { @@ -40233,8 +40567,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb" ] }, @@ -40244,8 +40578,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" ] }, @@ -40255,8 +40589,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb" ] }, @@ -40265,10 +40599,10 @@ "kernelrelease": "4.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" ] }, { @@ -40276,10 +40610,10 @@ "kernelrelease": "4.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" ] }, { @@ -40287,9 +40621,9 @@ "kernelrelease": "4.4.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb" ] }, @@ -40298,10 +40632,10 @@ "kernelrelease": "4.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb" ] }, { @@ -40309,10 +40643,10 @@ "kernelrelease": "4.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" ] }, { @@ -40320,10 +40654,10 @@ "kernelrelease": "4.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" ] }, { @@ -40331,9 +40665,9 @@ "kernelrelease": "4.4.0-1062-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" ] }, @@ -40342,10 +40676,10 @@ "kernelrelease": "4.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb" ] }, { @@ -40353,9 +40687,9 @@ "kernelrelease": "4.4.0-1063-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" ] }, @@ -40364,10 +40698,10 @@ "kernelrelease": "4.4.0-1064-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb" ] }, { @@ -40375,9 +40709,9 @@ "kernelrelease": "4.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb" ] }, @@ -40386,10 +40720,10 @@ "kernelrelease": "4.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" ] }, { @@ -40397,10 +40731,10 @@ "kernelrelease": "4.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb" ] }, { @@ -40408,10 +40742,10 @@ "kernelrelease": "4.4.0-1066-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb" ] }, { @@ -40419,10 +40753,10 @@ "kernelrelease": "4.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb" ] }, { @@ -40430,10 +40764,10 @@ "kernelrelease": "4.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" ] }, { @@ -40443,8 +40777,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb" ] }, { @@ -40452,10 +40786,10 @@ "kernelrelease": "4.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" ] }, { @@ -40464,9 +40798,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb" ] }, { @@ -40474,10 +40808,10 @@ "kernelrelease": "4.4.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb" ] }, { @@ -40485,9 +40819,9 @@ "kernelrelease": "4.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb" ] }, @@ -40496,10 +40830,10 @@ "kernelrelease": "4.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" ] }, { @@ -40507,8 +40841,8 @@ "kernelrelease": "4.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" ] @@ -40518,10 +40852,10 @@ "kernelrelease": "4.4.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" ] }, { @@ -40529,10 +40863,10 @@ "kernelrelease": "4.4.0-1076-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb" ] }, { @@ -40541,9 +40875,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb" ] }, { @@ -40551,10 +40885,10 @@ "kernelrelease": "4.4.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" ] }, { @@ -40562,8 +40896,8 @@ "kernelrelease": "4.4.0-1078-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" ] @@ -40573,10 +40907,10 @@ "kernelrelease": "4.4.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" ] }, { @@ -40586,8 +40920,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" ] }, { @@ -40595,12 +40929,12 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" ] }, { @@ -40608,10 +40942,10 @@ "kernelrelease": "4.4.0-1080-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" ] }, { @@ -40619,10 +40953,10 @@ "kernelrelease": "4.4.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" ] }, { @@ -40631,8 +40965,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb" ] }, @@ -40641,10 +40975,10 @@ "kernelrelease": "4.4.0-1084-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" ] }, { @@ -40652,9 +40986,9 @@ "kernelrelease": "4.4.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" ] }, @@ -40663,9 +40997,9 @@ "kernelrelease": "4.4.0-1085-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" ] }, @@ -40674,10 +41008,10 @@ "kernelrelease": "4.4.0-1085-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" ] }, { @@ -40685,10 +41019,10 @@ "kernelrelease": "4.4.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb" ] }, { @@ -40696,10 +41030,10 @@ "kernelrelease": "4.4.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" ] }, { @@ -40707,9 +41041,9 @@ "kernelrelease": "4.4.0-1088-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb" ] }, @@ -40718,10 +41052,10 @@ "kernelrelease": "4.4.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb" ] }, { @@ -40740,12 +41074,12 @@ "kernelrelease": "4.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb" ] }, { @@ -40753,9 +41087,9 @@ "kernelrelease": "4.4.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" ] }, @@ -40764,8 +41098,8 @@ "kernelrelease": "4.4.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb" ] @@ -40775,10 +41109,10 @@ "kernelrelease": "4.4.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb" ] }, { @@ -40788,8 +41122,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb" ] }, { @@ -40798,9 +41132,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" ] }, { @@ -40808,10 +41142,10 @@ "kernelrelease": "4.4.0-1093-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb" ] }, { @@ -40820,9 +41154,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" ] }, { @@ -40830,10 +41164,10 @@ "kernelrelease": "4.4.0-1095-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" ] }, { @@ -40841,10 +41175,10 @@ "kernelrelease": "4.4.0-1096-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" ] }, { @@ -40852,10 +41186,10 @@ "kernelrelease": "4.4.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" ] }, { @@ -40863,10 +41197,10 @@ "kernelrelease": "4.4.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" ] }, { @@ -40874,10 +41208,10 @@ "kernelrelease": "4.4.0-1100-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" ] }, { @@ -40885,10 +41219,10 @@ "kernelrelease": "4.4.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb" ] }, { @@ -40896,10 +41230,10 @@ "kernelrelease": "4.4.0-1102-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" ] }, { @@ -40907,10 +41241,10 @@ "kernelrelease": "4.4.0-1104-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" ] }, { @@ -40918,10 +41252,10 @@ "kernelrelease": "4.4.0-1105-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb" ] }, { @@ -40929,10 +41263,10 @@ "kernelrelease": "4.4.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb" ] }, { @@ -40940,10 +41274,10 @@ "kernelrelease": "4.4.0-1107-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" ] }, { @@ -40951,10 +41285,10 @@ "kernelrelease": "4.4.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" ] }, { @@ -40962,9 +41296,9 @@ "kernelrelease": "4.4.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" ] }, @@ -40974,9 +41308,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb" ] }, { @@ -40984,9 +41318,9 @@ "kernelrelease": "4.4.0-1112-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" ] }, @@ -40995,10 +41329,10 @@ "kernelrelease": "4.4.0-1113-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" ] }, { @@ -41006,10 +41340,10 @@ "kernelrelease": "4.4.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb" ] }, { @@ -41018,9 +41352,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" ] }, { @@ -41029,9 +41363,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" ] }, { @@ -41040,8 +41374,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" ] }, @@ -41050,12 +41384,12 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" ] }, { @@ -41063,10 +41397,10 @@ "kernelrelease": "4.4.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" ] }, { @@ -41074,10 +41408,10 @@ "kernelrelease": "4.4.0-1122-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb" ] }, { @@ -41087,8 +41421,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" ] }, { @@ -41097,9 +41431,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" ] }, { @@ -41107,10 +41441,10 @@ "kernelrelease": "4.4.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb" ] }, { @@ -41119,9 +41453,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb" ] }, { @@ -41131,8 +41465,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb" ] }, { @@ -41141,11 +41475,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" ] }, { @@ -41153,12 +41487,12 @@ "kernelrelease": "4.4.0-119", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" ] }, { @@ -41166,12 +41500,12 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb" ] }, { @@ -41179,12 +41513,12 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb" ] }, { @@ -41192,11 +41526,11 @@ "kernelrelease": "4.4.0-127", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" ] }, @@ -41205,12 +41539,12 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" ] }, { @@ -41218,12 +41552,12 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" ] }, { @@ -41231,12 +41565,12 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" ] }, { @@ -41244,12 +41578,12 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" ] }, { @@ -41257,12 +41591,12 @@ "kernelrelease": "4.4.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb" ] }, { @@ -41270,11 +41604,11 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb" ] }, @@ -41283,12 +41617,12 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb" ] }, { @@ -41297,11 +41631,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb" ] }, { @@ -41309,12 +41643,12 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb" ] }, { @@ -41322,12 +41656,12 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" ] }, { @@ -41336,11 +41670,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" ] }, { @@ -41348,12 +41682,12 @@ "kernelrelease": "4.4.0-148", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb" ] }, { @@ -41361,12 +41695,12 @@ "kernelrelease": "4.4.0-150", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb" ] }, { @@ -41377,9 +41711,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb" ] }, { @@ -41387,12 +41721,12 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb" ] }, { @@ -41400,12 +41734,12 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb" ] }, { @@ -41413,12 +41747,12 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb" ] }, { @@ -41426,12 +41760,12 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb" ] }, { @@ -41439,12 +41773,12 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" ] }, { @@ -41452,12 +41786,12 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb" ] }, { @@ -41465,11 +41799,11 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" ] }, @@ -41478,12 +41812,12 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" ] }, { @@ -41491,12 +41825,12 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" ] }, { @@ -41504,12 +41838,12 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" ] }, { @@ -41517,12 +41851,12 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb" ] }, { @@ -41530,11 +41864,11 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" ] }, @@ -41543,11 +41877,11 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb" ] }, @@ -41556,12 +41890,12 @@ "kernelrelease": "4.4.0-176", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb" ] }, { @@ -41569,12 +41903,12 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" ] }, { @@ -41582,12 +41916,12 @@ "kernelrelease": "4.4.0-178", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb" ] }, { @@ -41596,11 +41930,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" ] }, { @@ -41608,12 +41942,12 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" ] }, { @@ -41621,11 +41955,11 @@ "kernelrelease": "4.4.0-185", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb" ] }, @@ -41634,11 +41968,11 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" ] }, @@ -41647,12 +41981,12 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb" ] }, { @@ -41660,11 +41994,11 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb" ] }, @@ -41673,12 +42007,12 @@ "kernelrelease": "4.4.0-190", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" ] }, { @@ -41686,11 +42020,11 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb" ] }, @@ -41699,12 +42033,12 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb" ] }, { @@ -41712,12 +42046,12 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb" ] }, { @@ -41726,11 +42060,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" ] }, { @@ -41739,11 +42073,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb" ] }, { @@ -41751,12 +42085,12 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb" ] }, { @@ -41764,12 +42098,12 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" ] }, { @@ -41778,11 +42112,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" ] }, { @@ -41790,12 +42124,12 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb" ] }, { @@ -41803,12 +42137,12 @@ "kernelrelease": "4.4.0-209", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" ] }, { @@ -41816,12 +42150,12 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb" ] }, { @@ -41829,11 +42163,11 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb" ] }, @@ -41842,12 +42176,12 @@ "kernelrelease": "4.4.0-24", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" ] }, { @@ -41855,12 +42189,12 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb" ] }, { @@ -41869,11 +42203,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb" ] }, { @@ -41881,12 +42215,12 @@ "kernelrelease": "4.4.0-34", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb" ] }, { @@ -41895,11 +42229,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb" ] }, { @@ -41907,12 +42241,12 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb" ] }, { @@ -41920,12 +42254,12 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" ] }, { @@ -41934,11 +42268,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" ] }, { @@ -41946,12 +42280,12 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb" ] }, { @@ -41962,8 +42296,8 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" ] }, @@ -41974,10 +42308,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" ] }, { @@ -41985,12 +42319,12 @@ "kernelrelease": "4.4.0-57", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" ] }, { @@ -41998,12 +42332,12 @@ "kernelrelease": "4.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" ] }, { @@ -42011,12 +42345,12 @@ "kernelrelease": "4.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" ] }, { @@ -42024,12 +42358,12 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb" ] }, { @@ -42037,12 +42371,12 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" ] }, { @@ -42051,11 +42385,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" ] }, { @@ -42063,12 +42397,12 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" ] }, { @@ -42076,11 +42410,11 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" ] }, @@ -42089,12 +42423,12 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" ] }, { @@ -42102,12 +42436,12 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" ] }, { @@ -42115,12 +42449,12 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" ] }, { @@ -42128,12 +42462,12 @@ "kernelrelease": "4.4.0-78", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" ] }, { @@ -42141,12 +42475,12 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb" ] }, { @@ -42154,12 +42488,12 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" ] }, { @@ -42167,12 +42501,12 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" ] }, { @@ -42180,12 +42514,12 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb" ] }, { @@ -42193,12 +42527,12 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" ] }, { @@ -42206,12 +42540,12 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" ] }, { @@ -42219,11 +42553,11 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" ] }, @@ -42232,11 +42566,11 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb" ] }, @@ -42245,12 +42579,12 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" ] }, { @@ -42260,10 +42594,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" ] }, { @@ -42272,11 +42606,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb" ] }, { @@ -42284,12 +42618,12 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" ] }, { @@ -42297,12 +42631,12 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" ] }, { @@ -42310,12 +42644,12 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb" ] }, { @@ -42324,11 +42658,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" ] }, { @@ -42337,11 +42671,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb" ] }, { @@ -42349,12 +42683,12 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" ] }, { @@ -42362,12 +42696,12 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb" ] }, { @@ -42375,12 +42709,12 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" ] }, { @@ -42388,12 +42722,12 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" ] }, { @@ -42401,11 +42735,11 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb" ] }, @@ -42414,12 +42748,12 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb" ] }, { @@ -42428,8 +42762,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" ] }, @@ -42440,8 +42774,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" ] }, { @@ -42451,8 +42785,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb" ] }, { @@ -42460,9 +42794,9 @@ "kernelrelease": "4.11.0-1014-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb" ] }, @@ -42471,10 +42805,10 @@ "kernelrelease": "4.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" ] }, { @@ -42482,10 +42816,10 @@ "kernelrelease": "4.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" ] }, { @@ -42493,10 +42827,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" ] }, { @@ -42504,10 +42838,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" ] }, { @@ -42515,9 +42849,9 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" ] }, @@ -42537,9 +42871,9 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb" ] }, @@ -42548,12 +42882,12 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb" ] }, { @@ -42563,8 +42897,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb" ] @@ -42574,9 +42908,9 @@ "kernelrelease": "4.4.0-1033-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb" ] }, @@ -42585,10 +42919,10 @@ "kernelrelease": "4.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb" ] }, { @@ -42596,9 +42930,9 @@ "kernelrelease": "4.4.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb" ] }, @@ -42607,10 +42941,10 @@ "kernelrelease": "4.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" ] }, { @@ -42618,10 +42952,10 @@ "kernelrelease": "4.4.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" ] }, { @@ -42629,10 +42963,10 @@ "kernelrelease": "4.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb" ] }, { @@ -42640,10 +42974,10 @@ "kernelrelease": "4.4.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" ] }, { @@ -42663,9 +42997,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" ] }, { @@ -42675,10 +43009,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" ] }, { @@ -42686,12 +43020,12 @@ "kernelrelease": "4.4.0-131", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" ] }, { @@ -42699,12 +43033,12 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb" ] }, { @@ -42712,12 +43046,12 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" ] }, { @@ -42725,12 +43059,12 @@ "kernelrelease": "4.4.0-146", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" ] }, { @@ -42738,12 +43072,12 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb" ] }, { @@ -42751,10 +43085,10 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb" ] @@ -42764,12 +43098,12 @@ "kernelrelease": "4.8.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb" ] }, { @@ -42777,12 +43111,12 @@ "kernelrelease": "4.8.0-44-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb" ] }, { @@ -42790,12 +43124,12 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" ] }, { @@ -42803,12 +43137,12 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" ] }, { @@ -42816,11 +43150,11 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb" ] } From a0dfe6b66e6f1decc08b1690ea4ded8229c62074 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 16 Jun 2022 15:56:02 +0200 Subject: [PATCH 120/259] fix(crawler): debian needs kbuild too in its headers output. Signed-off-by: Federico Di Pierro --- kernel_crawler/debian.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel_crawler/debian.py b/kernel_crawler/debian.py index 8e5bf97..e582ab6 100644 --- a/kernel_crawler/debian.py +++ b/kernel_crawler/debian.py @@ -46,4 +46,6 @@ def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("headers") != -1: headers.append(dep) + if dep.find("kbuild") != -1: + headers.append(dep) return repo.DriverKitConfig(release + "-" + self.arch, "debian", headers) From 3be970ce7969e22b198bca12091744fa2850b648 Mon Sep 17 00:00:00 2001 From: poiana <51138685+poiana@users.noreply.github.com> Date: Sun, 26 Jun 2022 00:13:23 +0000 Subject: [PATCH 121/259] update(kernels): update kernel json lists. Signed-off-by: poiana <51138685+poiana@users.noreply.github.com> --- kernels/aarch64/list.json | 3753 +++++---- kernels/x86_64/list.json | 16394 ++++++++++++++++++------------------ 2 files changed, 10216 insertions(+), 9931 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 9fe2739..7ada52e 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -1161,18 +1161,18 @@ }, { "kernelversion": 1, - "kernelrelease": "5.17.12-200.fc35.aarch64", + "kernelrelease": "5.18.5-100.fc35.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.17.12-200.fc35.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.18.5-100.fc35.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.12-300.fc36.aarch64", + "kernelrelease": "5.18.6-200.fc36.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.17.12-300.fc36.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.18.6-200.fc36.aarch64.rpm" ] } ], @@ -1948,6 +1948,14 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.245-1.ph3.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-2.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-2.ph3.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.29-1.ph3.aarch64", @@ -2177,7 +2185,7 @@ "kernelrelease": "1.4.0-4.ph4.aarch64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" ] }, { @@ -2236,6 +2244,22 @@ "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.109-4.ph4.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-1.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-1.ph4.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-2.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.118-2.ph4.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "5.10.25-1.ph4.aarch64", @@ -2536,14 +2560,15 @@ "Debian": [ { "kernelversion": 1, - "kernelrelease": "5.18.2-1-arm64", + "kernelrelease": "5.18.5-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-arm64_5.18.2-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-arm64_5.18.2-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-arm64_5.18.2-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-arm64_5.18.5-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-arm64_5.18.5-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-arm64_5.18.5-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb" ] }, { @@ -2552,9 +2577,10 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-arm64_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-arm64_5.10.120-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb" ] }, @@ -2563,11 +2589,25 @@ "kernelrelease": "5.16.12-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.12-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.18.2-1~bpo11+1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-arm64_5.18.2-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-arm64_5.18.2-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-arm64_5.18.2-1~bpo11+1_arm64.deb" ] }, { @@ -2576,10 +2616,11 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb" ] }, { @@ -2587,11 +2628,12 @@ "kernelrelease": "5.10.84-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb" ] }, { @@ -2599,11 +2641,12 @@ "kernelrelease": "5.10.106-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb" ] }, { @@ -2611,10 +2654,11 @@ "kernelrelease": "5.10.103-1~bpo10+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb" ] }, @@ -2623,10 +2667,11 @@ "kernelrelease": "4.19.208-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" ] }, { @@ -2634,22 +2679,11 @@ "kernelrelease": "4.19.235-1-arm64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18.5-1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-arm64_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-arm64_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-arm64_5.18.5-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb" ] }, { @@ -2657,10 +2691,11 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb" ] }, { @@ -2669,6 +2704,7 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb" ] }, @@ -2677,11 +2713,12 @@ "kernelrelease": "5.10.103-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb" ] }, { @@ -2689,8 +2726,9 @@ "kernelrelease": "4.19.232-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb" ] @@ -2700,8 +2738,9 @@ "kernelrelease": "4.9.303-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" ] }, { @@ -2709,9 +2748,10 @@ "kernelrelease": "4.19.232-1~deb9u1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb" ] } @@ -2731,8 +2771,8 @@ "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" ] }, { @@ -2758,8 +2798,8 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb" ] }, { @@ -2767,8 +2807,8 @@ "kernelrelease": "4.15.0-1120-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb" ] }, { @@ -2791,20 +2831,20 @@ }, { "kernelversion": "132", - "kernelrelease": "4.15.0-1123-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1123-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-1123-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1123-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" ] }, { @@ -2812,8 +2852,8 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" ] }, { @@ -2821,17 +2861,8 @@ "kernelrelease": "4.15.0-1124-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-1125-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" ] }, { @@ -2839,17 +2870,17 @@ "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" ] }, { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-aws", - "target": "ubuntu-aws", + "kernelversion": "134", + "kernelrelease": "4.15.0-1125-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb" ] }, { @@ -2861,6 +2892,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" ] }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + ] + }, { "kernelversion": "137", "kernelrelease": "4.15.0-1128-aws", @@ -2872,20 +2912,20 @@ }, { "kernelversion": "138", - "kernelrelease": "4.15.0-1129-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1129-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb" ] }, { "kernelversion": "138", - "kernelrelease": "4.15.0-1129-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1129-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb" ] }, { @@ -2902,8 +2942,8 @@ "kernelrelease": "5.0.0-1028-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb" ] }, { @@ -2911,8 +2951,8 @@ "kernelrelease": "5.4.0-100-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" ] }, { @@ -2920,8 +2960,8 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" ] }, { @@ -2929,8 +2969,8 @@ "kernelrelease": "5.4.0-1058-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" ] }, { @@ -2947,8 +2987,8 @@ "kernelrelease": "5.4.0-1062-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" ] }, { @@ -2956,8 +2996,8 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { @@ -2965,8 +3005,8 @@ "kernelrelease": "5.4.0-1064-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" ] }, { @@ -2983,8 +3023,8 @@ "kernelrelease": "5.4.0-1067-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" ] }, { @@ -2992,8 +3032,8 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" ] }, { @@ -3019,8 +3059,8 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb" ] }, { @@ -3028,8 +3068,8 @@ "kernelrelease": "5.4.0-1071-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_arm64.deb" ] }, { @@ -3037,26 +3077,26 @@ "kernelrelease": "5.4.0-1072-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" ] }, { "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1073-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" ] }, { "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1073-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb" ] }, { @@ -3064,8 +3104,8 @@ "kernelrelease": "5.4.0-1075-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb" ] }, { @@ -3073,8 +3113,8 @@ "kernelrelease": "5.4.0-1075-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" ] }, { @@ -3082,8 +3122,8 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" ] }, { @@ -3109,8 +3149,8 @@ "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" ] }, { @@ -3118,8 +3158,8 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" ] }, { @@ -3127,8 +3167,17 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" + ] + }, + { + "kernelversion": "137~18.04.1", + "kernelrelease": "5.4.0-121-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb" ] }, { @@ -3154,8 +3203,8 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb" ] }, { @@ -3163,8 +3212,8 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" ] }, { @@ -3190,8 +3239,8 @@ "kernelrelease": "4.15.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" ] }, { @@ -3208,8 +3257,8 @@ "kernelrelease": "4.15.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb" ] }, { @@ -3226,8 +3275,8 @@ "kernelrelease": "4.15.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" ] }, { @@ -3244,8 +3293,8 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" ] }, { @@ -3262,8 +3311,8 @@ "kernelrelease": "4.15.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb" ] }, { @@ -3271,8 +3320,8 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb" ] }, { @@ -3280,8 +3329,8 @@ "kernelrelease": "4.15.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb" ] }, { @@ -3307,8 +3356,8 @@ "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" ] }, { @@ -3325,8 +3374,8 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { @@ -3334,8 +3383,8 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb" ] }, { @@ -3352,8 +3401,8 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" ] }, { @@ -3361,8 +3410,8 @@ "kernelrelease": "4.15.0-1054-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb" ] }, { @@ -3370,8 +3419,8 @@ "kernelrelease": "4.15.0-1055-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb" ] }, { @@ -3379,8 +3428,8 @@ "kernelrelease": "4.15.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" ] }, { @@ -3397,8 +3446,8 @@ "kernelrelease": "4.15.0-1057-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb" ] }, { @@ -3415,8 +3464,8 @@ "kernelrelease": "4.15.0-1058-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb" ] }, { @@ -3433,8 +3482,8 @@ "kernelrelease": "4.15.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb" ] }, { @@ -3460,8 +3509,8 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb" ] }, { @@ -3487,8 +3536,8 @@ "kernelrelease": "4.15.0-1065-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb" ] }, { @@ -3496,8 +3545,8 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { @@ -3505,8 +3554,8 @@ "kernelrelease": "4.15.0-1066-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb" ] }, { @@ -3514,8 +3563,8 @@ "kernelrelease": "4.15.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb" ] }, { @@ -3532,8 +3581,8 @@ "kernelrelease": "4.15.0-1069-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" ] }, { @@ -3559,8 +3608,8 @@ "kernelrelease": "4.15.0-1072-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb" ] }, { @@ -3595,8 +3644,8 @@ "kernelrelease": "4.15.0-1076-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb" ] }, { @@ -3613,8 +3662,8 @@ "kernelrelease": "4.15.0-1077-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" ] }, { @@ -3622,8 +3671,8 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" ] }, { @@ -3658,8 +3707,8 @@ "kernelrelease": "4.15.0-1080-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb" ] }, { @@ -3676,8 +3725,8 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" ] }, { @@ -3757,8 +3806,8 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb" ] }, { @@ -3766,8 +3815,8 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb" ] }, { @@ -3811,8 +3860,8 @@ "kernelrelease": "4.15.0-1093-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb" ] }, { @@ -3820,8 +3869,8 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" ] }, { @@ -3856,8 +3905,8 @@ "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb" ] }, { @@ -3874,8 +3923,8 @@ "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" ] }, { @@ -3883,8 +3932,8 @@ "kernelrelease": "4.15.0-1097-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb" ] }, { @@ -3910,8 +3959,8 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb" ] }, { @@ -3919,8 +3968,8 @@ "kernelrelease": "4.15.0-1099-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb" ] }, { @@ -3946,8 +3995,8 @@ "kernelrelease": "4.15.0-1101-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb" ] }, { @@ -3973,8 +4022,8 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" ] }, { @@ -3982,8 +4031,8 @@ "kernelrelease": "4.15.0-1103-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb" ] }, { @@ -3991,8 +4040,8 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb" ] }, { @@ -4000,8 +4049,8 @@ "kernelrelease": "4.15.0-1106-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" ] }, { @@ -4018,8 +4067,8 @@ "kernelrelease": "4.15.0-1109-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb" ] }, { @@ -4036,8 +4085,8 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" ] }, { @@ -4045,8 +4094,8 @@ "kernelrelease": "4.15.0-1110-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb" ] }, { @@ -4063,8 +4112,8 @@ "kernelrelease": "4.15.0-1111-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb" ] }, { @@ -4072,8 +4121,8 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" ] }, { @@ -4090,8 +4139,8 @@ "kernelrelease": "4.15.0-1113-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb" ] }, { @@ -4099,8 +4148,8 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" ] }, { @@ -4144,8 +4193,8 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" ] }, { @@ -4171,8 +4220,8 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" ] }, { @@ -4180,26 +4229,26 @@ "kernelrelease": "4.15.0-1122-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb" ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1126-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb" ] }, { "kernelversion": "135", - "kernelrelease": "4.15.0-1126-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" ] }, { @@ -4234,8 +4283,8 @@ "kernelrelease": "4.15.0-1136-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_arm64.deb" ] }, { @@ -4261,8 +4310,8 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" ] }, { @@ -4270,8 +4319,8 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" ] }, { @@ -4288,8 +4337,8 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb" ] }, { @@ -4297,8 +4346,8 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb" ] }, { @@ -4315,8 +4364,8 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb" ] }, { @@ -4324,8 +4373,8 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" ] }, { @@ -4333,8 +4382,8 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" ] }, { @@ -4342,8 +4391,8 @@ "kernelrelease": "4.15.0-136", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" ] }, { @@ -4360,8 +4409,8 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb" ] }, { @@ -4378,8 +4427,8 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_arm64.deb" ] }, { @@ -4414,8 +4463,8 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb" ] }, { @@ -4423,8 +4472,8 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb" ] }, { @@ -4441,8 +4490,8 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb" ] }, { @@ -4459,8 +4508,8 @@ "kernelrelease": "4.15.0-158", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_arm64.deb" ] }, { @@ -4468,8 +4517,8 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb" ] }, { @@ -4477,8 +4526,8 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb" ] }, { @@ -4486,8 +4535,8 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" ] }, { @@ -4513,8 +4562,8 @@ "kernelrelease": "4.15.0-167", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb" ] }, { @@ -4540,8 +4589,8 @@ "kernelrelease": "4.15.0-173", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb" ] }, { @@ -4549,8 +4598,8 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" ] }, { @@ -4594,8 +4643,8 @@ "kernelrelease": "4.15.0-187", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_arm64.deb" ] }, { @@ -4603,9 +4652,9 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" ] }, { @@ -4613,8 +4662,8 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" ] }, @@ -4623,9 +4672,9 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb" ] }, { @@ -4633,9 +4682,9 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb" ] }, { @@ -4643,8 +4692,8 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb" ] }, @@ -4653,8 +4702,8 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" ] }, @@ -4663,9 +4712,9 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb" ] }, { @@ -4683,9 +4732,9 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb" ] }, { @@ -4693,9 +4742,9 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" ] }, { @@ -4703,9 +4752,9 @@ "kernelrelease": "4.15.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb" ] }, { @@ -4724,8 +4773,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb" ] }, { @@ -4733,8 +4782,8 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb" ] }, @@ -4743,9 +4792,9 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb" ] }, { @@ -4754,8 +4803,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb" ] }, { @@ -4763,8 +4812,8 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb" ] }, { @@ -4817,8 +4866,8 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" ] }, { @@ -4826,8 +4875,8 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb" ] }, { @@ -4835,8 +4884,8 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" ] }, { @@ -4844,8 +4893,8 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" ] }, { @@ -4862,8 +4911,8 @@ "kernelrelease": "4.15.0-69", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb" ] }, { @@ -4889,8 +4938,8 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" ] }, { @@ -4898,8 +4947,8 @@ "kernelrelease": "4.15.0-76", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb" ] }, { @@ -4916,8 +4965,8 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb" ] }, { @@ -4925,8 +4974,8 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" ] }, { @@ -4944,8 +4993,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb" ] }, { @@ -4954,8 +5003,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb" ] }, { @@ -4963,9 +5012,9 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" ] }, { @@ -4973,9 +5022,9 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" ] }, { @@ -4983,9 +5032,9 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb" ] }, { @@ -4993,9 +5042,9 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb" ] }, { @@ -5003,9 +5052,9 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb" ] }, { @@ -5013,9 +5062,9 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb" ] }, { @@ -5023,8 +5072,8 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb" ] }, @@ -5033,8 +5082,8 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" ] }, @@ -5070,8 +5119,8 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb" ] }, { @@ -5088,8 +5137,8 @@ "kernelrelease": "5.0.0-1027-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb" ] }, { @@ -5097,8 +5146,8 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb" ] }, { @@ -5124,8 +5173,8 @@ "kernelrelease": "5.0.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb" ] }, { @@ -5142,8 +5191,8 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" ] }, { @@ -5160,8 +5209,8 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb" ] }, { @@ -5178,8 +5227,8 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb" ] }, { @@ -5223,8 +5272,8 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" ] }, { @@ -5241,8 +5290,8 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb" ] }, { @@ -5259,8 +5308,8 @@ "kernelrelease": "5.0.0-65-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" ] }, { @@ -5286,8 +5335,8 @@ "kernelrelease": "5.3.0-1023-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" ] }, { @@ -5313,8 +5362,8 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" ] }, { @@ -5322,8 +5371,8 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" ] }, { @@ -5331,8 +5380,8 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" ] }, { @@ -5349,8 +5398,8 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb" ] }, { @@ -5367,8 +5416,8 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" ] }, { @@ -5376,8 +5425,8 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" ] }, { @@ -5394,8 +5443,8 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" ] }, { @@ -5403,8 +5452,8 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb" ] }, { @@ -5412,8 +5461,8 @@ "kernelrelease": "5.3.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb" ] }, { @@ -5430,8 +5479,8 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb" ] }, { @@ -5448,8 +5497,8 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" ] }, { @@ -5457,8 +5506,8 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" ] }, { @@ -5466,8 +5515,8 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" ] }, { @@ -5475,8 +5524,8 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb" ] }, { @@ -5493,8 +5542,8 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" ] }, { @@ -5502,8 +5551,8 @@ "kernelrelease": "5.4.0-1022-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb" ] }, { @@ -5511,8 +5560,8 @@ "kernelrelease": "5.4.0-1024-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb" ] }, { @@ -5538,8 +5587,8 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" ] }, { @@ -5547,8 +5596,8 @@ "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { @@ -5556,8 +5605,8 @@ "kernelrelease": "5.4.0-1034-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -5574,8 +5623,8 @@ "kernelrelease": "5.4.0-1037-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" ] }, { @@ -5583,8 +5632,8 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" ] }, { @@ -5601,8 +5650,8 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" ] }, { @@ -5619,8 +5668,8 @@ "kernelrelease": "5.4.0-1043-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, { @@ -5628,8 +5677,8 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb" ] }, { @@ -5646,8 +5695,8 @@ "kernelrelease": "5.4.0-1047-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" ] }, { @@ -5664,8 +5713,8 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" ] }, { @@ -5673,8 +5722,8 @@ "kernelrelease": "5.4.0-1049-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb" ] }, { @@ -5691,8 +5740,8 @@ "kernelrelease": "5.4.0-1052-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" ] }, { @@ -5700,8 +5749,8 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" ] }, { @@ -5727,8 +5776,8 @@ "kernelrelease": "5.4.0-1055-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" ] }, { @@ -5736,8 +5785,8 @@ "kernelrelease": "5.4.0-1055-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" ] }, { @@ -5745,8 +5794,8 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb" ] }, { @@ -5754,8 +5803,8 @@ "kernelrelease": "5.4.0-1056-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" ] }, { @@ -5763,8 +5812,8 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" ] }, { @@ -5781,8 +5830,8 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" ] }, { @@ -5790,8 +5839,8 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" ] }, { @@ -5808,8 +5857,8 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" ] }, { @@ -5817,8 +5866,8 @@ "kernelrelease": "5.4.0-1061-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_arm64.deb" ] }, { @@ -5853,8 +5902,8 @@ "kernelrelease": "5.4.0-1065-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb" ] }, { @@ -5862,8 +5911,8 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb" ] }, { @@ -5880,8 +5929,8 @@ "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb" ] }, { @@ -5898,8 +5947,8 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" ] }, { @@ -5922,20 +5971,20 @@ }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" ] }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1072-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" ] }, { @@ -5952,8 +6001,8 @@ "kernelrelease": "5.4.0-1074-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_arm64.deb" ] }, { @@ -5961,8 +6010,8 @@ "kernelrelease": "5.4.0-1076-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_arm64.deb" ] }, { @@ -5970,8 +6019,8 @@ "kernelrelease": "5.4.0-1076-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_arm64.deb" ] }, { @@ -5988,8 +6037,8 @@ "kernelrelease": "5.4.0-1078-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb" ] }, { @@ -5997,8 +6046,8 @@ "kernelrelease": "5.4.0-1078-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb" ] }, { @@ -6006,26 +6055,26 @@ "kernelrelease": "5.4.0-1078-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb" ] }, { "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1080-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_arm64.deb" ] }, { "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1080-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_arm64.deb" ] }, { @@ -6033,8 +6082,8 @@ "kernelrelease": "5.4.0-1080-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_arm64.deb" ] }, { @@ -6060,8 +6109,8 @@ "kernelrelease": "5.4.0-109-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_arm64.deb" ] }, { @@ -6087,8 +6136,8 @@ "kernelrelease": "5.4.0-120-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb" ] }, { @@ -6096,8 +6145,8 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb" ] }, { @@ -6105,8 +6154,8 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb" ] }, { @@ -6150,8 +6199,8 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb" ] }, { @@ -6168,8 +6217,8 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb" ] }, { @@ -6204,8 +6253,8 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb" ] }, { @@ -6213,8 +6262,8 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" ] }, { @@ -6222,8 +6271,8 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" ] }, { @@ -6249,8 +6298,8 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb" ] }, { @@ -6267,8 +6316,8 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb" ] }, { @@ -6276,8 +6325,8 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" ] }, { @@ -6294,8 +6343,8 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb" ] }, { @@ -6321,8 +6370,8 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" ] }, { @@ -6339,8 +6388,8 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb" ] }, { @@ -6357,8 +6406,8 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb" ] }, { @@ -6402,8 +6451,8 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" ] }, { @@ -6420,8 +6469,8 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" ] }, @@ -6431,8 +6480,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb" ] }, { @@ -6459,8 +6508,8 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" ] }, { @@ -6477,8 +6526,8 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb" ] }, { @@ -6486,8 +6535,8 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb" ] }, { @@ -6522,8 +6571,8 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { @@ -6549,8 +6598,8 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" ] }, { @@ -6558,8 +6607,8 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" ] }, { @@ -6567,27 +6616,36 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb" ] }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb" + ] + }, { "kernelversion": "7", "kernelrelease": "5.15.0-1005-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-oracle", - "target": "ubuntu-oracle", + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb" ] }, { @@ -6595,17 +6653,18 @@ "kernelrelease": "5.15.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-gke", - "target": "ubuntu-gke", + "kernelversion": "36+22.10.1", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" ] }, { @@ -6613,19 +6672,27 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" ] }, { - "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", + "kernelversion": "2", + "kernelrelease": "5.18.0-1002-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb" + ] + }, + { + "kernelversion": "2", + "kernelrelease": "5.18.0-1002-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_arm64.deb" ] }, { @@ -6633,8 +6700,8 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" ] }, { @@ -6642,8 +6709,8 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" ] }, { @@ -6660,8 +6727,8 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb" ] }, { @@ -6678,8 +6745,8 @@ "kernelrelease": "5.15.0-1006-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" ] }, { @@ -6687,8 +6754,8 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb" ] }, @@ -6698,8 +6765,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb" ] }, { @@ -6708,26 +6775,26 @@ "target": "ubuntu-lowlatency", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1029-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1029-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -6735,8 +6802,8 @@ "kernelrelease": "5.11.0-1029-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" ] }, { @@ -6745,8 +6812,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb" ] }, { @@ -6754,8 +6821,8 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb" ] }, { @@ -6763,8 +6830,8 @@ "kernelrelease": "5.13.0-1014-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb" ] }, { @@ -6772,8 +6839,8 @@ "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb" ] }, { @@ -6781,8 +6848,8 @@ "kernelrelease": "5.13.0-1019-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" ] }, { @@ -6799,8 +6866,8 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb" ] }, { @@ -6808,8 +6875,8 @@ "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" ] }, { @@ -6826,8 +6893,8 @@ "kernelrelease": "5.13.0-1023-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb" ] }, { @@ -6835,8 +6902,8 @@ "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb" ] }, { @@ -6844,26 +6911,26 @@ "kernelrelease": "5.13.0-1026-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" ] }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1028-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" ] }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1028-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" ] }, { @@ -6871,9 +6938,9 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb" ] }, { @@ -6881,9 +6948,9 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb" ] }, { @@ -6891,9 +6958,9 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb" ] }, { @@ -6901,9 +6968,9 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" ] }, { @@ -6911,9 +6978,9 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" ] }, { @@ -6921,9 +6988,9 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb" ] }, { @@ -6932,8 +6999,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb" ] }, { @@ -6941,9 +7008,9 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb" ] }, { @@ -6951,8 +7018,8 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb" ] }, @@ -6961,9 +7028,9 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" ] }, { @@ -6972,8 +7039,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb" ] }, { @@ -6981,9 +7048,9 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb" ] }, { @@ -6991,9 +7058,9 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb" ] }, { @@ -7001,8 +7068,8 @@ "kernelrelease": "5.13.0-52-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_arm64.deb" ] }, @@ -7020,8 +7087,17 @@ "kernelrelease": "5.15.0-1009-aws-5.15", "target": "ubuntu-aws-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb" + ] + }, + { + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1012-gcp-5.15", + "target": "ubuntu-gcp-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_arm64.deb" ] }, { @@ -7057,9 +7133,9 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" ] }, { @@ -7077,9 +7153,9 @@ "kernelrelease": "5.15.0-32-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb" ] }, { @@ -7087,17 +7163,17 @@ "kernelrelease": "5.4.0-1039-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1039-bluefield_5.4.0-1039.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1039_5.4.0-1039.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1039_5.4.0-1039.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1039-bluefield_5.4.0-1039.43_arm64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-raspi", - "target": "ubuntu-raspi", + "kernelversion": "44", + "kernelrelease": "5.4.0-1040-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1040-bluefield_5.4.0-1040.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1040_5.4.0-1040.44_all.deb" ] }, { @@ -7105,8 +7181,17 @@ "kernelrelease": "5.4.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb" ] }, { @@ -7132,8 +7217,8 @@ "kernelrelease": "5.4.0-1053-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb" ] }, { @@ -7159,8 +7244,8 @@ "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb" ] }, { @@ -7168,8 +7253,8 @@ "kernelrelease": "5.4.0-1060-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb" ] }, { @@ -7177,8 +7262,8 @@ "kernelrelease": "5.4.0-1061-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1061-raspi_5.4.0-1061.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1061_5.4.0-1061.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1061_5.4.0-1061.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1061-raspi_5.4.0-1061.69_arm64.deb" ] }, { @@ -7222,8 +7307,8 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" ] }, { @@ -7231,8 +7316,8 @@ "kernelrelease": "5.4.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb" ] }, { @@ -7264,20 +7349,20 @@ }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, { @@ -7303,8 +7388,17 @@ "kernelrelease": "5.4.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" + ] + }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" ] }, { @@ -7317,12 +7411,12 @@ ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb" ] }, { @@ -7330,8 +7424,8 @@ "kernelrelease": "5.4.0-1074-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb" ] }, { @@ -7343,15 +7437,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb" ] }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" - ] - }, { "kernelversion": "80", "kernelrelease": "5.4.0-1075-gcp", @@ -7393,8 +7478,8 @@ "kernelrelease": "5.4.0-1078-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" ] }, { @@ -7402,8 +7487,8 @@ "kernelrelease": "5.4.0-1080-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb" ] }, { @@ -7411,8 +7496,8 @@ "kernelrelease": "5.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_arm64.deb" ] }, { @@ -7420,9 +7505,9 @@ "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" ] }, { @@ -7430,17 +7515,8 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" ] }, { @@ -7453,12 +7529,12 @@ ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb" ] }, { @@ -7466,8 +7542,17 @@ "kernelrelease": "5.11.0-1017-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + ] + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -7475,8 +7560,8 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" ] }, { @@ -7484,8 +7569,8 @@ "kernelrelease": "5.11.0-1019-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -7502,8 +7587,8 @@ "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { @@ -7520,35 +7605,35 @@ "kernelrelease": "5.11.0-1021-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb" ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb" ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { @@ -7556,35 +7641,35 @@ "kernelrelease": "5.11.0-1023-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { @@ -7592,8 +7677,8 @@ "kernelrelease": "5.11.0-1025-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -7625,20 +7710,20 @@ }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1028-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb" ] }, { "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1028-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { @@ -7655,9 +7740,9 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" ] }, { @@ -7665,8 +7750,8 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb" ] }, @@ -7675,9 +7760,9 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" ] }, { @@ -7685,8 +7770,8 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" ] }, @@ -7705,9 +7790,9 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" ] }, { @@ -7715,9 +7800,9 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb" ] }, { @@ -7735,9 +7820,9 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" ] }, { @@ -7745,9 +7830,9 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb" ] }, { @@ -7756,8 +7841,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb" ] }, { @@ -7765,8 +7850,8 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb" ] }, @@ -7811,8 +7896,8 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb" ] }, { @@ -7820,26 +7905,26 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { @@ -7892,8 +7977,8 @@ "kernelrelease": "5.13.0-1025-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb" ] }, { @@ -7901,8 +7986,8 @@ "kernelrelease": "5.13.0-1025-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" ] }, { @@ -7910,8 +7995,8 @@ "kernelrelease": "5.13.0-1025-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb" ] }, { @@ -7919,8 +8004,8 @@ "kernelrelease": "5.13.0-1027-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb" ] }, { @@ -7928,8 +8013,8 @@ "kernelrelease": "5.13.0-1028-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb" ] }, { @@ -7937,8 +8022,8 @@ "kernelrelease": "5.13.0-1029-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb" ] }, { @@ -7982,8 +8067,8 @@ "kernelrelease": "5.13.0-1033-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_arm64.deb" ] }, { @@ -8000,8 +8085,8 @@ "kernelrelease": "5.13.0-1036-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" ] }, { @@ -8009,9 +8094,9 @@ "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb" ] }, { @@ -8020,8 +8105,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb" ] }, { @@ -8029,9 +8114,9 @@ "kernelrelease": "5.13.0-27-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb" ] }, { @@ -8039,9 +8124,9 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb" ] }, { @@ -8069,9 +8154,9 @@ "kernelrelease": "5.13.0-51-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic-64k_5.13.0-51.58~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb" ] }, { @@ -8079,8 +8164,8 @@ "kernelrelease": "5.15.0-1006-gcp-5.15", "target": "ubuntu-gcp-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_arm64.deb" ] }, { @@ -8103,22 +8188,22 @@ }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb" ] }, { @@ -8135,8 +8220,8 @@ "kernelrelease": "5.4.0-1011-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" ] }, { @@ -8144,8 +8229,8 @@ "kernelrelease": "5.4.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" ] }, { @@ -8153,8 +8238,8 @@ "kernelrelease": "5.4.0-1011-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb" ] }, { @@ -8162,8 +8247,8 @@ "kernelrelease": "5.4.0-1012-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb" ] }, { @@ -8171,8 +8256,8 @@ "kernelrelease": "5.4.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb" ] }, { @@ -8195,20 +8280,20 @@ }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1015-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" ] }, { @@ -8216,8 +8301,8 @@ "kernelrelease": "5.4.0-1016-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb" ] }, { @@ -8225,8 +8310,8 @@ "kernelrelease": "5.4.0-1016-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb" ] }, { @@ -8243,8 +8328,8 @@ "kernelrelease": "5.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { @@ -8288,8 +8373,8 @@ "kernelrelease": "5.4.0-1020-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb" ] }, { @@ -8303,20 +8388,20 @@ }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1021-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1021-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1021-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1021-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" ] }, { @@ -8342,8 +8427,8 @@ "kernelrelease": "5.4.0-1022-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb" ] }, { @@ -8360,8 +8445,8 @@ "kernelrelease": "5.4.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb" ] }, { @@ -8369,8 +8454,8 @@ "kernelrelease": "5.4.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { @@ -8378,8 +8463,8 @@ "kernelrelease": "5.4.0-1025-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb" ] }, { @@ -8387,26 +8472,26 @@ "kernelrelease": "5.4.0-1025-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1026-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1026-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb" ] }, { @@ -8414,8 +8499,8 @@ "kernelrelease": "5.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" ] }, { @@ -8423,8 +8508,8 @@ "kernelrelease": "5.4.0-1028-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb" ] }, { @@ -8483,20 +8568,20 @@ }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1032-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1032-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb" ] }, { @@ -8504,8 +8589,8 @@ "kernelrelease": "5.4.0-1033-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb" ] }, { @@ -8522,8 +8607,8 @@ "kernelrelease": "5.4.0-1034-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb" ] }, { @@ -8531,26 +8616,26 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1035-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1035-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1035-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1035-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb" ] }, { @@ -8558,8 +8643,8 @@ "kernelrelease": "5.4.0-1036-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb" ] }, { @@ -8567,8 +8652,8 @@ "kernelrelease": "5.4.0-1036-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1036-bluefield_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1036_5.4.0-1036.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1036_5.4.0-1036.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1036-bluefield_5.4.0-1036.39_arm64.deb" ] }, { @@ -8585,8 +8670,8 @@ "kernelrelease": "5.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb" ] }, { @@ -8594,8 +8679,8 @@ "kernelrelease": "5.4.0-1038-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb" ] }, { @@ -8603,8 +8688,8 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb" ] }, { @@ -8612,8 +8697,8 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" ] }, { @@ -8639,8 +8724,8 @@ "kernelrelease": "5.4.0-1042-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb" ] }, { @@ -8648,8 +8733,8 @@ "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb" ] }, { @@ -8657,8 +8742,8 @@ "kernelrelease": "5.4.0-1043-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb" ] }, { @@ -8666,8 +8751,8 @@ "kernelrelease": "5.4.0-1044-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb" ] }, { @@ -8681,20 +8766,20 @@ }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1045-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1045-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb" ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1045-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1045-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb" ] }, { @@ -8711,8 +8796,8 @@ "kernelrelease": "5.4.0-1047-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb" ] }, { @@ -8747,8 +8832,8 @@ "kernelrelease": "5.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { @@ -8756,8 +8841,8 @@ "kernelrelease": "5.4.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb" ] }, { @@ -8792,8 +8877,8 @@ "kernelrelease": "5.4.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb" ] }, { @@ -8810,8 +8895,8 @@ "kernelrelease": "5.4.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb" ] }, { @@ -8828,8 +8913,8 @@ "kernelrelease": "5.4.0-1055-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb" ] }, { @@ -8864,8 +8949,8 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb" ] }, { @@ -8900,8 +8985,8 @@ "kernelrelease": "5.4.0-1059-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb" ] }, { @@ -8909,8 +8994,8 @@ "kernelrelease": "5.4.0-1059-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb" ] }, { @@ -8918,8 +9003,8 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { @@ -8927,8 +9012,8 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" ] }, { @@ -8945,8 +9030,8 @@ "kernelrelease": "5.4.0-1062-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb" ] }, { @@ -8972,8 +9057,8 @@ "kernelrelease": "5.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { @@ -9008,8 +9093,8 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb" ] }, { @@ -9017,17 +9102,8 @@ "kernelrelease": "5.4.0-107", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb" ] }, { @@ -9044,8 +9120,17 @@ "kernelrelease": "5.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" ] }, { @@ -9080,8 +9165,8 @@ "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" ] }, { @@ -9089,8 +9174,8 @@ "kernelrelease": "5.4.0-1078-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb" ] }, { @@ -9098,8 +9183,8 @@ "kernelrelease": "5.4.0-1078-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb" ] }, { @@ -9125,8 +9210,8 @@ "kernelrelease": "5.4.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_arm64.deb" ] }, { @@ -9134,8 +9219,8 @@ "kernelrelease": "5.4.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" ] }, { @@ -9143,8 +9228,8 @@ "kernelrelease": "5.4.0-1085-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb" ] }, { @@ -9161,8 +9246,8 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" ] }, { @@ -9170,8 +9255,8 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb" ] }, { @@ -9179,8 +9264,8 @@ "kernelrelease": "5.4.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb" ] }, { @@ -9188,8 +9273,8 @@ "kernelrelease": "5.4.0-120", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb" ] }, { @@ -9197,8 +9282,8 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb" ] }, { @@ -9206,8 +9291,8 @@ "kernelrelease": "5.4.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb" ] }, { @@ -9215,8 +9300,8 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" ] }, { @@ -9269,8 +9354,8 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" ] }, { @@ -9278,8 +9363,8 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" ] }, { @@ -9287,8 +9372,8 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb" ] }, { @@ -9305,8 +9390,8 @@ "kernelrelease": "5.4.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb" ] }, { @@ -9323,8 +9408,8 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" ] }, { @@ -9332,8 +9417,8 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" ] }, { @@ -9395,8 +9480,8 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" ] }, { @@ -9404,8 +9489,8 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" ] }, { @@ -9458,8 +9543,8 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" ] }, { @@ -9476,8 +9561,8 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" ] }, { @@ -9503,8 +9588,8 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" ] }, { @@ -9512,8 +9597,8 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" ] }, { @@ -9539,8 +9624,8 @@ "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb" ] }, { @@ -9548,8 +9633,8 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" ] }, { @@ -9575,8 +9660,8 @@ "kernelrelease": "5.8.0-1035-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" ] }, { @@ -9593,8 +9678,8 @@ "kernelrelease": "5.8.0-1038-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb" ] }, { @@ -9630,8 +9715,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" ] }, { @@ -9639,9 +9724,9 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" ] }, { @@ -9650,8 +9735,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" ] }, { @@ -9659,9 +9744,9 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" ] }, { @@ -9670,8 +9755,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" ] }, { @@ -9680,8 +9765,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb" ] }, { @@ -9689,9 +9774,9 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb" ] }, { @@ -9699,9 +9784,9 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb" ] }, { @@ -9719,8 +9804,8 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb" ] }, @@ -9729,9 +9814,9 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb" ] }, { @@ -9770,8 +9855,8 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" ] }, { @@ -9853,9 +9938,9 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" ] }, { @@ -9863,9 +9948,9 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb" ] }, { @@ -9892,8 +9977,8 @@ "kernelrelease": "5.4.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb" ] }, { @@ -9914,31 +9999,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb" ] }, - { - "kernelversion": "23", - "kernelrelease": "5.11.0-1022-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" - ] - }, { "kernelversion": "23", "kernelrelease": "5.11.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-raspi", - "target": "ubuntu-raspi", + "kernelversion": "23", + "kernelrelease": "5.11.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { @@ -9950,22 +10026,31 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, + { + "kernelversion": "30", + "kernelrelease": "5.11.0-1027-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + ] + }, { "kernelversion": "30", "kernelrelease": "5.11.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.11.0-1027-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" ] }, { @@ -9973,9 +10058,9 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb" ] }, { @@ -9992,8 +10077,8 @@ "kernelrelease": "5.11.0-1007-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb" ] }, { @@ -10001,9 +10086,9 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb" ] }, { @@ -10017,20 +10102,20 @@ }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1010-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb" ] }, { "kernelversion": "12", - "kernelrelease": "5.13.0-1010-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb" ] }, { @@ -10047,8 +10132,8 @@ "kernelrelease": "5.13.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb" ] }, { @@ -10065,8 +10150,8 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb" ] }, { @@ -10074,35 +10159,35 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1017-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb" ] }, { @@ -10123,15 +10208,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, - { - "kernelversion": "21", - "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" - ] - }, { "kernelversion": "21", "kernelrelease": "5.13.0-1019-azure", @@ -10142,12 +10218,12 @@ ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-aws", + "kernelversion": "21", + "kernelrelease": "5.13.0-1019-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { @@ -10164,8 +10240,17 @@ "kernelrelease": "5.13.0-1020-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb" ] }, { @@ -10173,8 +10258,8 @@ "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" ] }, { @@ -10197,20 +10282,20 @@ }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1022-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.13.0-1022-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" ] }, { @@ -10236,8 +10321,8 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" ] }, { @@ -10254,8 +10339,8 @@ "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" ] }, { @@ -10263,8 +10348,8 @@ "kernelrelease": "5.13.0-1024-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb" ] }, { @@ -10272,8 +10357,8 @@ "kernelrelease": "5.13.0-1024-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_arm64.deb" ] }, { @@ -10281,26 +10366,26 @@ "kernelrelease": "5.13.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1025-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" ] }, { "kernelversion": "27", - "kernelrelease": "5.13.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb" ] }, { @@ -10308,8 +10393,8 @@ "kernelrelease": "5.13.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" ] }, { @@ -10317,8 +10402,8 @@ "kernelrelease": "5.13.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" ] }, { @@ -10350,20 +10435,20 @@ }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1028-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_arm64.deb" ] }, { @@ -10380,8 +10465,8 @@ "kernelrelease": "5.13.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb" ] }, { @@ -10389,9 +10474,9 @@ "kernelrelease": "5.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb" ] }, { @@ -10399,26 +10484,26 @@ "kernelrelease": "5.13.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1008-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb" ] }, { @@ -10426,8 +10511,8 @@ "kernelrelease": "5.13.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { @@ -10435,8 +10520,8 @@ "kernelrelease": "5.13.0-1009-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb" ] }, { @@ -10453,8 +10538,8 @@ "kernelrelease": "5.13.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" ] }, { @@ -10471,8 +10556,8 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" ] }, { @@ -10498,8 +10583,8 @@ "kernelrelease": "5.13.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb" ] }, { @@ -10507,8 +10592,8 @@ "kernelrelease": "5.13.0-1013-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb" ] }, { @@ -10579,8 +10664,8 @@ "kernelrelease": "5.13.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" ] }, { @@ -10615,8 +10700,8 @@ "kernelrelease": "5.13.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_arm64.deb" ] }, { @@ -10633,8 +10718,8 @@ "kernelrelease": "5.13.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_arm64.deb" ] }, { @@ -10642,8 +10727,8 @@ "kernelrelease": "5.13.0-1036-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb" ] }, { @@ -10651,9 +10736,9 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb" ] }, { @@ -10661,9 +10746,9 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb" ] }, { @@ -10672,8 +10757,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" ] }, { @@ -10681,9 +10766,9 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" ] }, { @@ -10691,9 +10776,9 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb" ] }, { @@ -10701,9 +10786,9 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb" ] }, { @@ -10711,9 +10796,9 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" ] }, { @@ -10721,9 +10806,9 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" ] }, { @@ -10731,9 +10816,9 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb" ] }, { @@ -10752,8 +10837,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb" ] }, { @@ -10761,9 +10846,9 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb" ] }, { @@ -10771,9 +10856,9 @@ "kernelrelease": "5.13.0-44", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb" ] }, { @@ -10782,8 +10867,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb" ] }, { @@ -10810,8 +10895,8 @@ "kernelrelease": "5.13.0-1029-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb" ] }, { @@ -10828,9 +10913,9 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" ] }, { @@ -10857,8 +10942,8 @@ "kernelrelease": "5.13.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb" ] }, { @@ -10867,8 +10952,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" ] }, { @@ -10876,8 +10961,8 @@ "kernelrelease": "5.15.0-1004-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_arm64.deb" ] }, { @@ -10885,8 +10970,8 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb" ] }, { @@ -10894,8 +10979,8 @@ "kernelrelease": "5.15.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" ] }, { @@ -10921,8 +11006,8 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { @@ -10930,8 +11015,8 @@ "kernelrelease": "5.15.0-1007-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb" ] }, { @@ -10939,8 +11024,8 @@ "kernelrelease": "5.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb" ] }, { @@ -10948,8 +11033,8 @@ "kernelrelease": "5.15.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" ] }, { @@ -10957,8 +11042,8 @@ "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, @@ -10967,8 +11052,8 @@ "kernelrelease": "5.15.0-30-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb" ] }, @@ -10977,9 +11062,19 @@ "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency-64k_5.15.0-32.33_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency-64k_5.15.0-32.33_arm64.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb" ] }, { @@ -10987,19 +11082,19 @@ "kernelrelease": "5.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-lowlatency", + "kernelversion": "43", + "kernelrelease": "5.15.0-40-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency-64k_5.15.0-40.43_arm64.deb" ] }, { @@ -11008,18 +11103,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic-64k_5.15.0-40.43_arm64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.15.0-40-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency-64k_5.15.0-40.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic-64k_5.15.0-40.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb" ] }, { @@ -11027,8 +11112,8 @@ "kernelrelease": "5.15.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" ] }, { @@ -11036,8 +11121,8 @@ "kernelrelease": "5.15.0-1008-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb" ] }, { @@ -11054,8 +11139,8 @@ "kernelrelease": "5.15.0-1008-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb" ] }, { @@ -11063,8 +11148,8 @@ "kernelrelease": "5.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_arm64.deb" ] }, { @@ -11081,8 +11166,8 @@ "kernelrelease": "5.15.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_arm64.deb" ] }, { @@ -11090,8 +11175,8 @@ "kernelrelease": "5.15.0-1010-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_arm64.deb" ] }, { @@ -11099,8 +11184,8 @@ "kernelrelease": "5.15.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" ] }, { @@ -11108,8 +11193,8 @@ "kernelrelease": "5.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb" ] }, { @@ -11117,8 +11202,8 @@ "kernelrelease": "5.15.0-1011-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1011-raspi_5.15.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1011_5.15.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1011_5.15.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1011-raspi_5.15.0-1011.13_arm64.deb" ] }, { @@ -11135,28 +11220,28 @@ "kernelrelease": "5.15.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.15.0-37-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-37", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.15.0-37", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-37-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb" ] }, { @@ -11164,9 +11249,9 @@ "kernelrelease": "5.15.0-39-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency-64k_5.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_arm64.deb" ] }, { @@ -11174,8 +11259,8 @@ "kernelrelease": "5.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic-64k_5.15.0-39.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic-64k_5.15.0-39.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_arm64.deb" ] }, @@ -11193,8 +11278,8 @@ "kernelrelease": "5.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb" ] }, { @@ -11211,28 +11296,28 @@ "kernelrelease": "5.15.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, { @@ -11267,8 +11352,8 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" ] }, @@ -11295,8 +11380,8 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb" ] }, { @@ -11304,8 +11389,8 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb" ] }, { @@ -11331,8 +11416,8 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" ] }, { @@ -11340,8 +11425,8 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" ] }, { @@ -11349,8 +11434,8 @@ "kernelrelease": "3.13.0-110", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb" ] }, { @@ -11367,8 +11452,8 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb" ] }, { @@ -11403,8 +11488,8 @@ "kernelrelease": "3.13.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb" ] }, { @@ -11430,8 +11515,8 @@ "kernelrelease": "3.13.0-126", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" ] }, { @@ -11439,8 +11524,8 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb" ] }, { @@ -11448,8 +11533,8 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" ] }, { @@ -11475,8 +11560,8 @@ "kernelrelease": "3.13.0-135", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" ] }, { @@ -11520,8 +11605,8 @@ "kernelrelease": "3.13.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" ] }, { @@ -11538,8 +11623,8 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb" ] }, { @@ -11556,8 +11641,8 @@ "kernelrelease": "3.13.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" ] }, { @@ -11565,8 +11650,8 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" ] }, { @@ -11592,8 +11677,8 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb" ] }, { @@ -11628,8 +11713,8 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb" ] }, { @@ -11637,8 +11722,8 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" ] }, { @@ -11655,8 +11740,8 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb" ] }, { @@ -11673,8 +11758,8 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb" ] }, { @@ -11682,8 +11767,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" ] }, { @@ -11691,8 +11776,8 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" ] }, { @@ -11700,8 +11785,8 @@ "kernelrelease": "3.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb" ] }, { @@ -11718,8 +11803,8 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" ] }, { @@ -11727,8 +11812,8 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb" ] }, { @@ -11736,8 +11821,8 @@ "kernelrelease": "3.13.0-34", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb" ] }, { @@ -11772,8 +11857,8 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb" ] }, { @@ -11790,8 +11875,8 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb" ] }, { @@ -11853,8 +11938,8 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" ] }, { @@ -11898,8 +11983,8 @@ "kernelrelease": "3.13.0-58", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_arm64.deb" ] }, { @@ -11907,8 +11992,8 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" ] }, { @@ -11916,8 +12001,8 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" ] }, { @@ -11925,8 +12010,8 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" ] }, { @@ -11961,8 +12046,8 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb" ] }, { @@ -11988,8 +12073,8 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb" ] }, { @@ -11997,8 +12082,8 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb" ] }, { @@ -12015,8 +12100,8 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" ] }, { @@ -12024,8 +12109,8 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" ] }, { @@ -12051,8 +12136,8 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb" ] }, { @@ -12069,8 +12154,8 @@ "kernelrelease": "3.13.0-87", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb" ] }, { @@ -12087,8 +12172,8 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb" ] }, { @@ -12096,8 +12181,8 @@ "kernelrelease": "3.13.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb" ] }, { @@ -12105,8 +12190,8 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb" ] }, { @@ -12114,8 +12199,8 @@ "kernelrelease": "3.13.0-95", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb" ] }, { @@ -12123,8 +12208,8 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb" ] }, { @@ -12132,8 +12217,8 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" ] }, { @@ -12141,8 +12226,8 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb" ] }, { @@ -12168,8 +12253,8 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" ] }, { @@ -12177,8 +12262,8 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb" ] }, { @@ -12204,8 +12289,8 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" ] }, { @@ -12213,8 +12298,8 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" ] }, { @@ -12267,8 +12352,8 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" ] }, { @@ -12276,8 +12361,8 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb" ] }, { @@ -12285,8 +12370,8 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" ] }, { @@ -12294,8 +12379,8 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb" ] }, { @@ -12303,8 +12388,8 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb" ] }, { @@ -12312,8 +12397,8 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb" ] }, { @@ -12321,8 +12406,8 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb" ] }, { @@ -12330,8 +12415,8 @@ "kernelrelease": "3.16.0-53-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" ] }, { @@ -12438,8 +12523,8 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb" ] }, { @@ -12447,8 +12532,8 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb" ] }, { @@ -12483,8 +12568,8 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" ] }, { @@ -12501,8 +12586,8 @@ "kernelrelease": "3.19.0-26-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb" ] }, { @@ -12519,8 +12604,8 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb" ] }, { @@ -12528,8 +12613,8 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" ] }, { @@ -12537,8 +12622,8 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb" ] }, { @@ -12564,8 +12649,8 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb" ] }, { @@ -12573,8 +12658,8 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" ] }, { @@ -12582,8 +12667,8 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb" ] }, { @@ -12591,8 +12676,8 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" ] }, { @@ -12600,8 +12685,8 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb" ] }, { @@ -12609,8 +12694,8 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb" ] }, { @@ -12618,8 +12703,8 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb" ] }, { @@ -12636,8 +12721,8 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb" ] }, { @@ -12645,8 +12730,8 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" ] }, { @@ -12654,8 +12739,8 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb" ] }, { @@ -12663,8 +12748,8 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb" ] }, { @@ -12672,8 +12757,8 @@ "kernelrelease": "3.19.0-65-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" ] }, { @@ -12717,8 +12802,8 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" ] }, { @@ -12726,8 +12811,8 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb" ] }, { @@ -12735,8 +12820,8 @@ "kernelrelease": "3.19.0-75-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" ] }, { @@ -12744,8 +12829,8 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" ] }, { @@ -12780,8 +12865,8 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb" ] }, { @@ -12798,8 +12883,8 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" ] }, { @@ -12834,8 +12919,8 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb" ] }, { @@ -12852,8 +12937,8 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" ] }, { @@ -12870,8 +12955,8 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" ] }, { @@ -12906,8 +12991,8 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb" ] }, { @@ -12915,8 +13000,8 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb" ] }, { @@ -12924,8 +13009,8 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb" ] }, { @@ -12933,8 +13018,8 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" ] }, { @@ -12942,8 +13027,8 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb" ] }, { @@ -12969,8 +13054,8 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb" ] }, { @@ -12996,8 +13081,8 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" ] }, { @@ -13005,8 +13090,8 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb" ] }, { @@ -13014,8 +13099,8 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" ] }, { @@ -13023,8 +13108,8 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" ] }, { @@ -13032,8 +13117,8 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb" ] }, { @@ -13050,8 +13135,8 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" ] }, { @@ -13068,8 +13153,8 @@ "kernelrelease": "4.4.0-139-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" ] }, { @@ -13077,8 +13162,8 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb" ] }, { @@ -13095,8 +13180,8 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" ] }, { @@ -13104,8 +13189,8 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" ] }, { @@ -13122,8 +13207,8 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" ] }, { @@ -13131,8 +13216,8 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb" ] }, { @@ -13140,8 +13225,8 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" ] }, { @@ -13194,8 +13279,8 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb" ] }, { @@ -13203,8 +13288,8 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" ] }, { @@ -13212,8 +13297,8 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb" ] }, { @@ -13230,8 +13315,8 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb" ] }, { @@ -13266,8 +13351,8 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" ] }, { @@ -13311,8 +13396,8 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" ] }, { @@ -13356,8 +13441,8 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" ] }, { @@ -13392,8 +13477,8 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb" ] }, { @@ -13401,8 +13486,8 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb" ] }, { @@ -13410,8 +13495,8 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" ] }, { @@ -13428,8 +13513,8 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" ] }, { @@ -13473,8 +13558,8 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb" ] }, { @@ -13482,8 +13567,8 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb" ] }, { @@ -13500,8 +13585,8 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" ] }, { @@ -13527,8 +13612,8 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb" ] }, { @@ -13545,8 +13630,8 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" ] }, { @@ -13563,8 +13648,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" ] }, { @@ -13581,8 +13666,8 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb" ] }, { @@ -13590,8 +13675,8 @@ "kernelrelease": "4.4.0-206", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb" ] }, { @@ -13599,8 +13684,8 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb" ] }, { @@ -13608,8 +13693,8 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb" ] }, { @@ -13617,8 +13702,8 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb" ] }, { @@ -13644,8 +13729,8 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" ] }, { @@ -13653,8 +13738,8 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" ] }, { @@ -13662,8 +13747,8 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb" ] }, { @@ -13671,8 +13756,8 @@ "kernelrelease": "4.10.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb" ] }, { @@ -13680,8 +13765,8 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb" ] }, { @@ -13698,8 +13783,8 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb" ] }, { @@ -13707,8 +13792,8 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb" ] }, { @@ -13716,8 +13801,8 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb" ] }, { @@ -13725,8 +13810,8 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb" ] }, { @@ -13734,8 +13819,8 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" ] }, { @@ -13743,8 +13828,8 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" ] }, { @@ -13761,8 +13846,8 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb" ] }, { @@ -13770,8 +13855,8 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb" ] }, { @@ -13779,8 +13864,8 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" ] }, { @@ -13797,8 +13882,8 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" ] }, { @@ -13806,8 +13891,8 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb" ] }, { @@ -13815,8 +13900,8 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" ] }, { @@ -13824,8 +13909,8 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb" ] }, { @@ -13851,8 +13936,8 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" ] }, { @@ -13860,8 +13945,8 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb" ] }, { @@ -13878,8 +13963,8 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" ] }, { @@ -13887,8 +13972,8 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" ] }, { @@ -13896,8 +13981,8 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb" ] }, { @@ -13905,8 +13990,8 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb" ] }, { @@ -13914,8 +13999,8 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" ] }, { @@ -13923,8 +14008,8 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" ] }, { @@ -13932,8 +14017,8 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" ] }, { @@ -13941,8 +14026,8 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb" ] }, { @@ -13950,8 +14035,8 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" ] }, { @@ -13959,8 +14044,8 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb" ] }, { @@ -13995,8 +14080,8 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" ] }, { @@ -14004,8 +14089,8 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" ] }, { @@ -14013,8 +14098,8 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb" ] }, { @@ -14040,8 +14125,8 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb" ] }, { @@ -14058,8 +14143,8 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" ] }, { @@ -14076,8 +14161,8 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" ] }, { @@ -14085,8 +14170,8 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" ] }, { @@ -14094,8 +14179,8 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" ] }, { @@ -14103,8 +14188,8 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" ] }, { @@ -14148,8 +14233,8 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" ] }, { @@ -14166,8 +14251,8 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb" ] }, { @@ -14175,8 +14260,8 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb" ] }, { @@ -14193,8 +14278,8 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb" ] }, { @@ -14238,8 +14323,8 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb" ] }, { @@ -14292,8 +14377,8 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb" ] }, { @@ -14301,8 +14386,8 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" ] }, { @@ -14328,8 +14413,8 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" ] }, { @@ -14337,8 +14422,8 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb" ] }, { @@ -14364,8 +14449,8 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb" ] }, { @@ -14382,8 +14467,8 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb" ] }, { @@ -14400,8 +14485,8 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb" ] }, { @@ -14418,8 +14503,8 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" ] }, { @@ -14427,8 +14512,8 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" ] }, { @@ -14436,8 +14521,8 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" ] }, { @@ -14481,8 +14566,8 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" ] }, { @@ -14490,8 +14575,8 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb" ] }, { @@ -14562,8 +14647,8 @@ "kernelrelease": "4.4.0-127", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" ] }, { @@ -14580,8 +14665,8 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb" ] }, { @@ -14616,8 +14701,8 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb" ] }, { @@ -14634,8 +14719,8 @@ "kernelrelease": "4.4.0-141", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb" ] }, { @@ -14652,8 +14737,8 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" ] }, { @@ -14661,8 +14746,8 @@ "kernelrelease": "4.4.0-145", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" ] }, { @@ -14715,8 +14800,8 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" ] }, { @@ -14724,8 +14809,8 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" ] }, { @@ -14751,8 +14836,8 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb" ] }, { @@ -14769,8 +14854,8 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" ] }, { @@ -14778,8 +14863,8 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" ] }, { @@ -14787,8 +14872,8 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" ] }, { @@ -14796,8 +14881,8 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" ] }, { @@ -14805,8 +14890,8 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" ] }, { @@ -14823,8 +14908,8 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb" ] }, { @@ -14850,8 +14935,8 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" ] }, { @@ -14877,8 +14962,8 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" ] }, { @@ -14886,8 +14971,8 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" ] }, { @@ -14904,8 +14989,8 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb" ] }, { @@ -14922,8 +15007,8 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" ] }, { @@ -14931,8 +15016,8 @@ "kernelrelease": "4.4.0-198", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb" ] }, { @@ -14949,8 +15034,8 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb" ] }, { @@ -14958,8 +15043,8 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb" ] }, { @@ -14967,8 +15052,8 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb" ] }, { @@ -14994,8 +15079,8 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb" ] }, { @@ -15003,8 +15088,8 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" ] }, { @@ -15012,8 +15097,8 @@ "kernelrelease": "4.4.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb" ] }, { @@ -15021,8 +15106,8 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" ] }, { @@ -15039,8 +15124,8 @@ "kernelrelease": "4.4.0-34", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" ] }, { @@ -15066,8 +15151,8 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" ] }, { @@ -15075,8 +15160,8 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" ] }, { @@ -15084,8 +15169,8 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" ] }, { @@ -15093,8 +15178,8 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" ] }, { @@ -15102,8 +15187,8 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" ] }, { @@ -15129,8 +15214,8 @@ "kernelrelease": "4.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" ] }, { @@ -15138,8 +15223,8 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb" ] }, { @@ -15165,8 +15250,8 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb" ] }, { @@ -15174,8 +15259,8 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb" ] }, { @@ -15183,8 +15268,8 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" ] }, { @@ -15192,8 +15277,8 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb" ] }, { @@ -15201,8 +15286,8 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb" ] }, { @@ -15210,8 +15295,8 @@ "kernelrelease": "4.4.0-78", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb" ] }, { @@ -15228,8 +15313,8 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb" ] }, { @@ -15237,8 +15322,8 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb" ] }, { @@ -15246,8 +15331,8 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" ] }, { @@ -15255,8 +15340,8 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb" ] }, { @@ -15264,8 +15349,8 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb" ] }, { @@ -15282,8 +15367,8 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" ] }, { @@ -15291,8 +15376,8 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb" ] }, { @@ -15309,8 +15394,8 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" ] }, { @@ -15318,8 +15403,8 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb" ] }, { @@ -15336,8 +15421,8 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" ] }, { @@ -15345,8 +15430,8 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" ] }, { @@ -15354,8 +15439,8 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" ] }, { @@ -15399,8 +15484,8 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb" ] }, { @@ -15426,8 +15511,8 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" ] }, { @@ -15480,8 +15565,8 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb" ] }, { @@ -15489,8 +15574,8 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb" ] }, { @@ -15498,8 +15583,8 @@ "kernelrelease": "4.8.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" ] }, { @@ -15516,8 +15601,8 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" ] }, { @@ -15525,8 +15610,8 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" ] }, { @@ -15534,8 +15619,8 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" ] } ], @@ -15604,6 +15689,14 @@ "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.2/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3139.2.3", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.3/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "3033.1.0", @@ -15684,6 +15777,14 @@ "https://beta.release.flatcar-linux.net/arm64-usr/3227.1.0/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3227.1.1", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3227.1.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "2345.0.1", @@ -16051,6 +16152,14 @@ "headers": [ "https://alpha.release.flatcar-linux.net/arm64-usr/3255.0.0/flatcar_developer_container.bin.bz2" ] + }, + { + "kernelversion": 1, + "kernelrelease": "3277.0.0", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3277.0.0/flatcar_developer_container.bin.bz2" + ] } ] } diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index bc7c078..9de8013 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -1833,7 +1833,7 @@ "kernelrelease": "5.10.75-82.359.amzn2022.x86_64", "target": "amazonlinux2022", "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/db05fcc4b022af5ce6a038ac10b7ed311f7611a5a0c69c9df6233bf2d6bc6c73/x86_64/../../../../blobstore/c9592b941a6713c183a21e4f4f29a4dcf062a1794265426996ffedb0992cebe6/kernel-devel-5.10.75-82.359.amzn2022.x86_64.rpm" + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/c9592b941a6713c183a21e4f4f29a4dcf062a1794265426996ffedb0992cebe6/kernel-devel-5.10.75-82.359.amzn2022.x86_64.rpm" ] } ], @@ -1843,7 +1843,7 @@ "kernelrelease": "3.10.0-1160.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" ] }, { @@ -1859,7 +1859,7 @@ "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" ] }, { @@ -1875,7 +1875,7 @@ "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" ] }, { @@ -1883,7 +1883,7 @@ "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" ] }, { @@ -1891,7 +1891,7 @@ "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" ] }, { @@ -1899,7 +1899,7 @@ "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" ] }, { @@ -1907,7 +1907,7 @@ "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" ] }, { @@ -1915,7 +1915,7 @@ "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" ] }, { @@ -1923,7 +1923,7 @@ "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" ] }, { @@ -1939,7 +1939,7 @@ "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" ] }, { @@ -1979,7 +1979,7 @@ "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" ] }, { @@ -1987,7 +1987,7 @@ "kernelrelease": "3.10.0-1160.66.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" ] }, { @@ -3794,18 +3794,18 @@ }, { "kernelversion": 1, - "kernelrelease": "5.17.12-200.fc35.x86_64", + "kernelrelease": "5.18.5-100.fc35.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.17.12-200.fc35.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.18.5-100.fc35.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.17.12-300.fc36.x86_64", + "kernelrelease": "5.18.6-200.fc36.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.17.12-300.fc36.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.18.6-200.fc36.x86_64.rpm" ] } ], @@ -10349,7 +10349,7 @@ "kernelrelease": "4.19.15-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-devel-4.19.15-2.ph3.x86_64.rpm" ] }, { @@ -10357,7 +10357,7 @@ "kernelrelease": "4.19.15-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-aws-devel-4.19.15-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" ] }, { @@ -10381,7 +10381,7 @@ "kernelrelease": "4.19.112-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.112-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.112-1.ph3.x86_64.rpm" ] }, { @@ -10389,7 +10389,7 @@ "kernelrelease": "4.19.115-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-1.ph3.x86_64.rpm" ] }, { @@ -10429,7 +10429,7 @@ "kernelrelease": "4.19.115-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-6.ph3.x86_64.rpm" ] }, { @@ -10453,7 +10453,7 @@ "kernelrelease": "4.19.124-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-1.ph3.x86_64.rpm" ] }, { @@ -10485,7 +10485,7 @@ "kernelrelease": "4.19.129-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.129-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.129-1.ph3.x86_64.rpm" ] }, { @@ -10517,7 +10517,7 @@ "kernelrelease": "4.19.132-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-2.ph3.x86_64.rpm" ] }, { @@ -10549,7 +10549,7 @@ "kernelrelease": "4.19.138-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.138-1.ph3.x86_64.rpm" ] }, { @@ -10557,7 +10557,7 @@ "kernelrelease": "4.19.138-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.138-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-2.ph3.x86_64.rpm" ] }, { @@ -10581,7 +10581,7 @@ "kernelrelease": "4.19.145-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-2.ph3.x86_64.rpm" ] }, { @@ -10589,7 +10589,7 @@ "kernelrelease": "4.19.145-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-4.ph3.x86_64.rpm" ] }, { @@ -10597,7 +10597,7 @@ "kernelrelease": "4.19.148-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-1.ph3.x86_64.rpm" ] }, { @@ -10605,7 +10605,7 @@ "kernelrelease": "4.19.148-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-2.ph3.x86_64.rpm" ] }, { @@ -10621,7 +10621,7 @@ "kernelrelease": "4.19.148-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-4.ph3.x86_64.rpm" ] }, { @@ -10645,7 +10645,7 @@ "kernelrelease": "4.19.150-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.150-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.150-1.ph3.x86_64.rpm" ] }, { @@ -10677,7 +10677,7 @@ "kernelrelease": "4.19.154-8.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-8.ph3.x86_64.rpm" ] }, { @@ -10701,7 +10701,7 @@ "kernelrelease": "4.19.160-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-4.ph3.x86_64.rpm" ] }, { @@ -10741,7 +10741,7 @@ "kernelrelease": "4.19.174-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-2.ph3.x86_64.rpm" ] }, { @@ -10765,7 +10765,7 @@ "kernelrelease": "4.19.177-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.177-1.ph3.x86_64.rpm" ] }, { @@ -10773,7 +10773,7 @@ "kernelrelease": "4.19.177-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-2.ph3.x86_64.rpm" ] }, { @@ -10781,7 +10781,7 @@ "kernelrelease": "4.19.182-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.182-1.ph3.x86_64.rpm" ] }, { @@ -10813,7 +10813,7 @@ "kernelrelease": "4.19.186-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-3.ph3.x86_64.rpm" ] }, { @@ -10829,7 +10829,7 @@ "kernelrelease": "4.19.189-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" ] }, { @@ -10837,7 +10837,7 @@ "kernelrelease": "4.19.189-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.189-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-3.ph3.x86_64.rpm" ] }, { @@ -10845,7 +10845,7 @@ "kernelrelease": "4.19.189-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" ] }, { @@ -10861,7 +10861,7 @@ "kernelrelease": "4.19.190-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.190-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.190-1.ph3.x86_64.rpm" ] }, { @@ -10869,7 +10869,7 @@ "kernelrelease": "4.19.190-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" ] }, { @@ -10893,7 +10893,7 @@ "kernelrelease": "4.19.191-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-2.ph3.x86_64.rpm" ] }, { @@ -10909,7 +10909,7 @@ "kernelrelease": "4.19.198-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.198-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-1.ph3.x86_64.rpm" ] }, { @@ -10933,7 +10933,7 @@ "kernelrelease": "4.19.198-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-4.ph3.x86_64.rpm" ] }, { @@ -10941,7 +10941,7 @@ "kernelrelease": "4.19.205-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.205-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.205-1.ph3.x86_64.rpm" ] }, { @@ -10949,7 +10949,7 @@ "kernelrelease": "4.19.208-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.208-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.208-1.ph3.x86_64.rpm" ] }, { @@ -10957,7 +10957,7 @@ "kernelrelease": "4.19.214-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" ] }, { @@ -10973,7 +10973,7 @@ "kernelrelease": "4.19.217-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.217-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.217-1.ph3.x86_64.rpm" ] }, { @@ -10989,7 +10989,7 @@ "kernelrelease": "4.19.219-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-3.ph3.x86_64.rpm" ] }, { @@ -10997,7 +10997,7 @@ "kernelrelease": "4.19.219-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-4.ph3.x86_64.rpm" ] }, { @@ -11005,7 +11005,7 @@ "kernelrelease": "4.19.219-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-5.ph3.x86_64.rpm" ] }, { @@ -11013,7 +11013,7 @@ "kernelrelease": "4.19.224-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.224-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-1.ph3.x86_64.rpm" ] }, { @@ -11021,7 +11021,7 @@ "kernelrelease": "4.19.224-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-2.ph3.x86_64.rpm" ] }, { @@ -11045,7 +11045,7 @@ "kernelrelease": "4.19.229-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.229-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-1.ph3.x86_64.rpm" ] }, { @@ -11053,7 +11053,7 @@ "kernelrelease": "4.19.229-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-2.ph3.x86_64.rpm" ] }, { @@ -11069,7 +11069,7 @@ "kernelrelease": "4.19.232-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.232-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm" ] }, { @@ -11077,7 +11077,7 @@ "kernelrelease": "4.19.232-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-2.ph3.x86_64.rpm" ] }, { @@ -11101,7 +11101,7 @@ "kernelrelease": "4.19.241-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.241-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.241-1.ph3.x86_64.rpm" ] }, { @@ -11117,7 +11117,15 @@ "kernelrelease": "4.19.245-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.245-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.245-1.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-2.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.247-2.ph3.x86_64.rpm" ] }, { @@ -11125,7 +11133,7 @@ "kernelrelease": "4.19.29-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.29-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.29-1.ph3.x86_64.rpm" ] }, { @@ -11141,7 +11149,7 @@ "kernelrelease": "4.19.40-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-2.ph3.x86_64.rpm" ] }, { @@ -11149,7 +11157,7 @@ "kernelrelease": "4.19.40-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-3.ph3.x86_64.rpm" ] }, { @@ -11157,7 +11165,7 @@ "kernelrelease": "4.19.52-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.52-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-1.ph3.x86_64.rpm" ] }, { @@ -11189,7 +11197,7 @@ "kernelrelease": "4.19.69-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.69-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm" ] }, { @@ -11197,7 +11205,7 @@ "kernelrelease": "4.19.72-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-1.ph3.x86_64.rpm" ] }, { @@ -11205,7 +11213,7 @@ "kernelrelease": "4.19.72-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.72-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm" ] }, { @@ -11213,7 +11221,7 @@ "kernelrelease": "4.19.76-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-1.ph3.x86_64.rpm" ] }, { @@ -11229,7 +11237,7 @@ "kernelrelease": "4.19.79-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.79-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" ] }, { @@ -11245,7 +11253,7 @@ "kernelrelease": "4.19.82-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.82-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm" ] }, { @@ -11269,7 +11277,7 @@ "kernelrelease": "4.19.87-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm" ] }, { @@ -11277,7 +11285,7 @@ "kernelrelease": "4.19.87-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-4.ph3.x86_64.rpm" ] }, { @@ -11293,7 +11301,7 @@ "kernelrelease": "4.19.97-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-1.ph3.x86_64.rpm" ] }, { @@ -11309,7 +11317,7 @@ "kernelrelease": "4.19.97-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-3.ph3.x86_64.rpm" ] }, { @@ -11325,7 +11333,7 @@ "kernelrelease": "4.19.97-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-5.ph3.x86_64.rpm" ] }, { @@ -11365,7 +11373,7 @@ "kernelrelease": "4.19.160-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-1.ph3.x86_64.rpm" ] }, { @@ -11381,7 +11389,7 @@ "kernelrelease": "4.19.214-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.214-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.214-2.ph3.x86_64.rpm" ] }, { @@ -11397,7 +11405,7 @@ "kernelrelease": "4.19.225-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.225-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-5.ph3.x86_64.rpm" ] }, { @@ -11405,7 +11413,7 @@ "kernelrelease": "4.19.32-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.32-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.32-2.ph3.x86_64.rpm" ] }, { @@ -11477,7 +11485,7 @@ "kernelrelease": "4.19.191-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-4.ph3.x86_64.rpm" ] }, { @@ -11485,7 +11493,7 @@ "kernelrelease": "4.19.191-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-5.ph3.x86_64.rpm" ] }, { @@ -11512,6 +11520,14 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.245-2.ph3.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.245-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.245-3.ph3.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.154-7.ph3.x86_64", @@ -11528,6 +11544,14 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.241-3.ph3.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-1.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.247-1.ph3.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "1.4.0-3.ph4.x86_64", @@ -11541,7 +11565,7 @@ "kernelrelease": "1.4.0-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" ] }, { @@ -11557,7 +11581,7 @@ "kernelrelease": "5.10.103-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-2.ph4.x86_64.rpm" ] }, { @@ -11573,7 +11597,7 @@ "kernelrelease": "5.10.103-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-4.ph4.x86_64.rpm" ] }, { @@ -11589,7 +11613,7 @@ "kernelrelease": "5.10.109-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.109-3.ph4.x86_64.rpm" ] }, { @@ -11597,7 +11621,23 @@ "kernelrelease": "5.10.109-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-4.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-1.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.118-1.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-2.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-devel-5.10.118-2.ph4.x86_64.rpm" ] }, { @@ -11605,7 +11645,7 @@ "kernelrelease": "5.10.25-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-1.ph4.x86_64.rpm" ] }, { @@ -11621,7 +11661,7 @@ "kernelrelease": "5.10.25-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-2.ph4.x86_64.rpm" ] }, { @@ -11629,7 +11669,7 @@ "kernelrelease": "5.10.25-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-3.ph4.x86_64.rpm" ] }, { @@ -11637,7 +11677,7 @@ "kernelrelease": "5.10.25-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-5.ph4.x86_64.rpm" ] }, { @@ -11645,7 +11685,7 @@ "kernelrelease": "5.10.25-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm" ] }, { @@ -11661,7 +11701,7 @@ "kernelrelease": "5.10.25-9.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-9.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-9.ph4.x86_64.rpm" ] }, { @@ -11677,7 +11717,7 @@ "kernelrelease": "5.10.35-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm" ] }, { @@ -11685,7 +11725,7 @@ "kernelrelease": "5.10.35-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-3.ph4.x86_64.rpm" ] }, { @@ -11709,7 +11749,7 @@ "kernelrelease": "5.10.42-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-1.ph4.x86_64.rpm" ] }, { @@ -11717,7 +11757,7 @@ "kernelrelease": "5.10.42-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-2.ph4.x86_64.rpm" ] }, { @@ -11725,7 +11765,7 @@ "kernelrelease": "5.10.42-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-3.ph4.x86_64.rpm" ] }, { @@ -11733,7 +11773,7 @@ "kernelrelease": "5.10.46-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-1.ph4.x86_64.rpm" ] }, { @@ -11741,7 +11781,7 @@ "kernelrelease": "5.10.46-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.46-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-2.ph4.x86_64.rpm" ] }, { @@ -11749,7 +11789,7 @@ "kernelrelease": "5.10.52-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.52-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.52-1.ph4.x86_64.rpm" ] }, { @@ -11765,7 +11805,7 @@ "kernelrelease": "5.10.61-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-1.ph4.x86_64.rpm" ] }, { @@ -11789,7 +11829,7 @@ "kernelrelease": "5.10.78-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-1.ph4.x86_64.rpm" ] }, { @@ -11813,7 +11853,7 @@ "kernelrelease": "5.10.83-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-2.ph4.x86_64.rpm" ] }, { @@ -11821,7 +11861,7 @@ "kernelrelease": "5.10.83-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-3.ph4.x86_64.rpm" ] }, { @@ -11829,7 +11869,7 @@ "kernelrelease": "5.10.83-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-4.ph4.x86_64.rpm" ] }, { @@ -11837,7 +11877,7 @@ "kernelrelease": "5.10.83-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-5.ph4.x86_64.rpm" ] }, { @@ -11853,7 +11893,7 @@ "kernelrelease": "5.10.83-7.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-7.ph4.x86_64.rpm" ] }, { @@ -11869,7 +11909,7 @@ "kernelrelease": "5.10.93-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm" ] }, { @@ -11877,7 +11917,7 @@ "kernelrelease": "5.10.93-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-4.ph4.x86_64.rpm" ] }, { @@ -11885,7 +11925,7 @@ "kernelrelease": "5.10.93-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.93-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-5.ph4.x86_64.rpm" ] }, { @@ -12012,14 +12052,15 @@ "Debian": [ { "kernelversion": 1, - "kernelrelease": "5.18.2-1-amd64", + "kernelrelease": "5.18.5-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common-rt_5.18.2-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-cloud-amd64_5.18.2-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-rt-amd64_5.18.2-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-amd64_5.18.2-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-1-common_5.18.2-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-amd64_5.18.5-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-amd64_5.18.5-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-amd64_5.18.5-1_amd64.deb" ] }, { @@ -12027,11 +12068,25 @@ "kernelrelease": "5.16.12-1~bpo11+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.12-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.18.2-1~bpo11+1-amd64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-amd64_5.18.2-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-amd64_5.18.2-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-amd64_5.18.2-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb" ] }, { @@ -12039,11 +12094,12 @@ "kernelrelease": "5.10.113-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb" ] }, { @@ -12052,9 +12108,10 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb" ] }, @@ -12063,11 +12120,12 @@ "kernelrelease": "5.10.84-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb" ] }, { @@ -12075,11 +12133,12 @@ "kernelrelease": "5.10.106-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb" ] }, { @@ -12087,11 +12146,12 @@ "kernelrelease": "5.10.103-1~bpo10+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb" ] }, { @@ -12099,11 +12159,12 @@ "kernelrelease": "4.19.208-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" ] }, { @@ -12111,10 +12172,11 @@ "kernelrelease": "4.19.235-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb" ] }, @@ -12124,19 +12186,8 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18.5-1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-amd64_5.18.5-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-amd64_5.18.5-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-amd64_5.18.5-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb" ] }, { @@ -12145,10 +12196,11 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" ] }, { @@ -12156,6 +12208,7 @@ "kernelrelease": "4.9.65-2+grsecunoff1~bpo9+1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-common-grsec_4.9.65-2+grsecunoff1~bpo9+1_all.deb" ] @@ -12165,10 +12218,11 @@ "kernelrelease": "4.9.228-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb" ] }, { @@ -12176,10 +12230,11 @@ "kernelrelease": "5.10.103-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb" ] }, @@ -12188,11 +12243,12 @@ "kernelrelease": "4.19.232-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" ] }, { @@ -12200,8 +12256,9 @@ "kernelrelease": "3.16.81-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb" ] }, { @@ -12210,7 +12267,8 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-amd64_3.16.84-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-common_3.16.84-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-common_3.16.84-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb" ] }, { @@ -12218,10 +12276,11 @@ "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb" ] }, { @@ -12229,10 +12288,11 @@ "kernelrelease": "4.9.210-1+deb9u1~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" ] }, { @@ -12240,10 +12300,11 @@ "kernelrelease": "4.9.303-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb" ] }, { @@ -12251,11 +12312,12 @@ "kernelrelease": "4.19.232-1~deb9u1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb" ] } ], @@ -12267,8 +12329,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb" ] }, { @@ -12276,10 +12338,10 @@ "kernelrelease": "4.15.0-1088-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" ] }, { @@ -12287,10 +12349,10 @@ "kernelrelease": "4.15.0-1093-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb" ] }, { @@ -12299,9 +12361,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb" ] }, { @@ -12309,10 +12371,10 @@ "kernelrelease": "4.15.0-1103-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb" ] }, { @@ -12320,10 +12382,10 @@ "kernelrelease": "4.15.0-1104-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb" ] }, { @@ -12331,10 +12393,10 @@ "kernelrelease": "4.15.0-1104-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" ] }, { @@ -12342,10 +12404,10 @@ "kernelrelease": "4.15.0-1107-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" ] }, { @@ -12354,8 +12416,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" ] }, @@ -12365,9 +12427,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb" ] }, { @@ -12376,9 +12438,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" ] }, { @@ -12387,9 +12449,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" ] }, { @@ -12397,8 +12459,8 @@ "kernelrelease": "4.15.0-1113-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb" ] @@ -12408,10 +12470,10 @@ "kernelrelease": "4.15.0-1114-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb" ] }, { @@ -12421,8 +12483,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" ] }, { @@ -12430,9 +12492,9 @@ "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" ] }, @@ -12441,10 +12503,10 @@ "kernelrelease": "4.15.0-1116-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" ] }, { @@ -12452,10 +12514,10 @@ "kernelrelease": "4.15.0-1116-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb" ] }, { @@ -12465,8 +12527,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" ] }, { @@ -12475,8 +12537,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb" ] }, @@ -12485,10 +12547,10 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" ] }, { @@ -12496,9 +12558,9 @@ "kernelrelease": "4.15.0-1121-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" ] }, @@ -12507,10 +12569,10 @@ "kernelrelease": "4.15.0-1121-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" ] }, { @@ -12519,8 +12581,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb" ] }, @@ -12529,10 +12591,10 @@ "kernelrelease": "4.15.0-1123-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb" ] }, { @@ -12552,9 +12614,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb" ] }, { @@ -12562,10 +12624,10 @@ "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" ] }, { @@ -12573,9 +12635,9 @@ "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" ] }, @@ -12584,10 +12646,10 @@ "kernelrelease": "4.15.0-1129-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" ] }, { @@ -12596,9 +12658,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" ] }, { @@ -12607,8 +12669,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" ] }, @@ -12617,10 +12679,10 @@ "kernelrelease": "4.15.0-1134-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" ] }, { @@ -12628,10 +12690,10 @@ "kernelrelease": "4.15.0-1135-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" ] }, { @@ -12641,8 +12703,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" ] }, { @@ -12650,10 +12712,10 @@ "kernelrelease": "4.15.0-1139-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb" ] }, { @@ -12661,9 +12723,9 @@ "kernelrelease": "4.15.0-188", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb" @@ -12675,9 +12737,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" ] }, { @@ -12685,34 +12747,34 @@ "kernelrelease": "5.4.0-100-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" ] }, { "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1032-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb" ] }, { "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1032-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { @@ -12721,31 +12783,31 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1034-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1034-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -12753,10 +12815,10 @@ "kernelrelease": "5.4.0-1040-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" ] }, { @@ -12764,10 +12826,10 @@ "kernelrelease": "5.4.0-1043-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb" ] }, { @@ -12775,12 +12837,12 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb" ] }, { @@ -12790,8 +12852,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { @@ -12799,10 +12861,10 @@ "kernelrelease": "5.4.0-1056-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" ] }, { @@ -12811,9 +12873,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" ] }, { @@ -12833,44 +12895,44 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1060-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1060-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1061-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { @@ -12879,42 +12941,42 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1061-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1062-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" ] }, { @@ -12922,10 +12984,10 @@ "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" ] }, { @@ -12933,21 +12995,10 @@ "kernelrelease": "5.4.0-1063-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" ] }, { @@ -12955,10 +13006,10 @@ "kernelrelease": "5.4.0-1063-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { @@ -12966,21 +13017,21 @@ "kernelrelease": "5.4.0-1063-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-aws-5.4", + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { @@ -12989,20 +13040,20 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" ] }, { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" ] }, { @@ -13010,10 +13061,21 @@ "kernelrelease": "5.4.0-1064-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { @@ -13022,31 +13084,31 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1066-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { @@ -13055,31 +13117,31 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1068-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1068-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" ] }, { @@ -13087,10 +13149,10 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" ] }, { @@ -13099,9 +13161,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" ] }, { @@ -13110,31 +13172,31 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1069-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1069-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1069-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1069-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { @@ -13142,10 +13204,10 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" ] }, { @@ -13153,10 +13215,10 @@ "kernelrelease": "5.4.0-1070-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb" ] }, { @@ -13165,8 +13227,8 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb" ] }, @@ -13176,9 +13238,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" ] }, { @@ -13187,9 +13249,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb" ] }, { @@ -13197,10 +13259,10 @@ "kernelrelease": "5.4.0-1071-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" ] }, { @@ -13208,10 +13270,10 @@ "kernelrelease": "5.4.0-1072-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" ] }, { @@ -13219,10 +13281,10 @@ "kernelrelease": "5.4.0-1073-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" ] }, { @@ -13230,10 +13292,10 @@ "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb" ] }, { @@ -13241,10 +13303,10 @@ "kernelrelease": "5.4.0-1075-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb" ] }, { @@ -13252,10 +13314,10 @@ "kernelrelease": "5.4.0-1075-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" ] }, { @@ -13263,10 +13325,10 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" ] }, { @@ -13274,10 +13336,10 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" ] }, { @@ -13285,10 +13347,10 @@ "kernelrelease": "5.4.0-1079-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" ] }, { @@ -13298,10 +13360,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb" ] }, { @@ -13309,12 +13371,12 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" ] }, { @@ -13322,12 +13384,25 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "137~18.04.1", + "kernelrelease": "5.4.0-121-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb" ] }, { @@ -13335,12 +13410,12 @@ "kernelrelease": "5.4.0-91-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb" ] }, { @@ -13348,11 +13423,11 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb" ] }, @@ -13361,12 +13436,12 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" ] }, { @@ -13374,10 +13449,10 @@ "kernelrelease": "4.15.0-1006-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" ] }, { @@ -13385,10 +13460,10 @@ "kernelrelease": "4.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" ] }, { @@ -13398,8 +13473,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb" ] }, { @@ -13409,8 +13484,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" ] }, { @@ -13420,8 +13495,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb" ] }, { @@ -13431,30 +13506,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1009-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" ] }, { @@ -13462,10 +13537,10 @@ "kernelrelease": "4.15.0-1009-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb" ] }, { @@ -13473,10 +13548,10 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" ] }, { @@ -13484,34 +13559,34 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1010-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1010-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" ] }, { @@ -13520,8 +13595,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb" ] }, @@ -13530,32 +13605,43 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" ] }, + { + "kernelversion": "11", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + ] + }, { "kernelversion": "11", "kernelrelease": "4.15.0-1011-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws", + "kernelversion": "12", + "kernelrelease": "4.15.0-1012-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" ] }, { @@ -13563,21 +13649,10 @@ "kernelrelease": "4.15.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "4.15.0-1012-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" ] }, { @@ -13585,10 +13660,10 @@ "kernelrelease": "4.15.0-1012-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" ] }, { @@ -13596,10 +13671,10 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" ] }, { @@ -13607,10 +13682,10 @@ "kernelrelease": "4.15.0-1013-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" ] }, { @@ -13619,31 +13694,31 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1014-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb" ] }, { @@ -13652,9 +13727,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" ] }, { @@ -13662,10 +13737,10 @@ "kernelrelease": "4.15.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" ] }, { @@ -13673,10 +13748,10 @@ "kernelrelease": "4.15.0-1015-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" ] }, { @@ -13684,32 +13759,32 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" ] }, { "kernelversion": "16", - "kernelrelease": "4.15.0-1016-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1016-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" ] }, { "kernelversion": "16", - "kernelrelease": "4.15.0-1016-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1016-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" ] }, { @@ -13717,10 +13792,10 @@ "kernelrelease": "4.15.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb" ] }, { @@ -13729,9 +13804,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb" ] }, { @@ -13741,8 +13816,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb" ] }, { @@ -13751,9 +13826,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb" ] }, { @@ -13761,9 +13836,9 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" ] }, @@ -13772,9 +13847,9 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb" ] }, @@ -13783,10 +13858,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" ] }, { @@ -13794,10 +13869,10 @@ "kernelrelease": "4.15.0-1018-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" ] }, { @@ -13805,32 +13880,32 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "4.15.0-1019-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1019-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" ] }, { @@ -13838,8 +13913,8 @@ "kernelrelease": "4.15.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" ] @@ -13849,9 +13924,9 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb" ] }, @@ -13860,10 +13935,10 @@ "kernelrelease": "4.15.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { @@ -13871,8 +13946,8 @@ "kernelrelease": "4.15.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] @@ -13882,10 +13957,10 @@ "kernelrelease": "4.15.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { @@ -13893,10 +13968,10 @@ "kernelrelease": "4.15.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" ] }, { @@ -13904,10 +13979,10 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" ] }, { @@ -13915,8 +13990,8 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" ] @@ -13926,10 +14001,10 @@ "kernelrelease": "4.15.0-1021-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" ] }, { @@ -13938,9 +14013,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb" ] }, { @@ -13948,10 +14023,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" ] }, { @@ -13959,10 +14034,10 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" ] }, { @@ -13970,10 +14045,10 @@ "kernelrelease": "4.15.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { @@ -13981,10 +14056,10 @@ "kernelrelease": "4.15.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { @@ -13992,10 +14067,10 @@ "kernelrelease": "4.15.0-1023-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb" ] }, { @@ -14014,9 +14089,9 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" ] }, @@ -14025,32 +14100,32 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" ] }, { @@ -14058,8 +14133,8 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" ] @@ -14071,8 +14146,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" ] }, { @@ -14080,10 +14155,10 @@ "kernelrelease": "4.15.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb" ] }, { @@ -14091,10 +14166,10 @@ "kernelrelease": "4.15.0-1026-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" ] }, { @@ -14102,9 +14177,9 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" ] }, @@ -14113,10 +14188,10 @@ "kernelrelease": "4.15.0-1027-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, { @@ -14126,8 +14201,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, { @@ -14135,10 +14210,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" ] }, { @@ -14154,24 +14229,24 @@ }, { "kernelversion": "29", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" ] }, { @@ -14180,8 +14255,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" ] }, @@ -14191,9 +14266,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb" ] }, { @@ -14201,9 +14276,9 @@ "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" ] }, @@ -14212,9 +14287,9 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" ] }, @@ -14223,10 +14298,10 @@ "kernelrelease": "4.15.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" ] }, { @@ -14234,10 +14309,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" ] }, { @@ -14246,9 +14321,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" ] }, { @@ -14256,10 +14331,10 @@ "kernelrelease": "4.15.0-1030-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" ] }, { @@ -14267,10 +14342,10 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" ] }, { @@ -14278,10 +14353,10 @@ "kernelrelease": "4.15.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" ] }, { @@ -14289,10 +14364,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb" ] }, { @@ -14301,9 +14376,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb" ] }, { @@ -14311,8 +14386,8 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" ] @@ -14323,31 +14398,31 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1032-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" ] }, { @@ -14355,10 +14430,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb" ] }, { @@ -14367,9 +14442,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { @@ -14377,10 +14452,10 @@ "kernelrelease": "4.15.0-1033-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" ] }, { @@ -14388,10 +14463,10 @@ "kernelrelease": "4.15.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" ] }, { @@ -14399,9 +14474,9 @@ "kernelrelease": "4.15.0-1033-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb" ] }, @@ -14411,9 +14486,20 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" + ] + }, + { + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb" ] }, { @@ -14421,10 +14507,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" ] }, { @@ -14438,17 +14524,6 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" ] }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" - ] - }, { "kernelversion": "34", "kernelrelease": "4.15.0-1034-kvm", @@ -14465,10 +14540,10 @@ "kernelrelease": "4.15.0-1034-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" ] }, { @@ -14478,8 +14553,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb" ] }, { @@ -14487,10 +14562,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb" ] }, { @@ -14498,8 +14573,8 @@ "kernelrelease": "4.15.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" ] @@ -14509,10 +14584,10 @@ "kernelrelease": "4.15.0-1035-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb" ] }, { @@ -14520,32 +14595,32 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1036-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" ] }, { @@ -14554,8 +14629,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" ] }, @@ -14564,21 +14639,21 @@ "kernelrelease": "4.15.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1037-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" ] }, { @@ -14586,10 +14661,10 @@ "kernelrelease": "4.15.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" ] }, { @@ -14597,21 +14672,21 @@ "kernelrelease": "4.15.0-1037-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb" ] }, { @@ -14619,10 +14694,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" ] }, { @@ -14631,8 +14706,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb" ] }, @@ -14642,9 +14717,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb" ] }, { @@ -14652,10 +14727,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" ] }, { @@ -14663,9 +14738,9 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" ] }, @@ -14674,10 +14749,10 @@ "kernelrelease": "4.15.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" ] }, { @@ -14685,10 +14760,10 @@ "kernelrelease": "4.15.0-1039-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb" ] }, { @@ -14696,10 +14771,10 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" ] }, { @@ -14707,21 +14782,21 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1040-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" ] }, { @@ -14729,32 +14804,32 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1040-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" ] }, { @@ -14763,20 +14838,20 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1041-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb" ] }, { @@ -14785,9 +14860,20 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb" + ] + }, + { + "kernelversion": "44", + "kernelrelease": "4.15.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" ] }, { @@ -14801,25 +14887,14 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" ] }, - { - "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" - ] - }, { "kernelversion": "42", "kernelrelease": "4.15.0-1042-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" ] }, @@ -14828,10 +14903,10 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" ] }, { @@ -14840,9 +14915,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb" ] }, { @@ -14850,21 +14925,21 @@ "kernelrelease": "4.15.0-1043-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1044-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { @@ -14872,21 +14947,21 @@ "kernelrelease": "4.15.0-1044-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1044-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" ] }, { @@ -14894,9 +14969,9 @@ "kernelrelease": "4.15.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" ] }, @@ -14905,10 +14980,10 @@ "kernelrelease": "4.15.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" ] }, { @@ -14918,8 +14993,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" ] }, { @@ -14927,10 +15002,10 @@ "kernelrelease": "4.15.0-1045-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" ] }, { @@ -14938,21 +15013,10 @@ "kernelrelease": "4.15.0-1045-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-1045-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" ] }, { @@ -14960,21 +15024,21 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb" ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-1046-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1045-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" ] }, { @@ -14982,10 +15046,21 @@ "kernelrelease": "4.15.0-1046-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1046-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" ] }, { @@ -14993,10 +15068,10 @@ "kernelrelease": "4.15.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" ] }, { @@ -15005,8 +15080,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" ] }, @@ -15015,10 +15090,10 @@ "kernelrelease": "4.15.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" ] }, { @@ -15026,10 +15101,10 @@ "kernelrelease": "4.15.0-1047-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" ] }, { @@ -15038,8 +15113,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" ] }, @@ -15048,10 +15123,10 @@ "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" ] }, { @@ -15059,10 +15134,10 @@ "kernelrelease": "4.15.0-1048-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" ] }, { @@ -15070,8 +15145,8 @@ "kernelrelease": "4.15.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" ] @@ -15081,32 +15156,32 @@ "kernelrelease": "4.15.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" ] }, { "kernelversion": "52", - "kernelrelease": "4.15.0-1049-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1049-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb" ] }, { "kernelversion": "52", - "kernelrelease": "4.15.0-1049-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1049-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" ] }, { @@ -15114,32 +15189,32 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1050-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1050-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" ] }, { @@ -15147,10 +15222,10 @@ "kernelrelease": "4.15.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" ] }, { @@ -15159,8 +15234,8 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" ] }, @@ -15170,9 +15245,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" ] }, { @@ -15180,10 +15255,10 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb" ] }, { @@ -15191,10 +15266,10 @@ "kernelrelease": "4.15.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" ] }, { @@ -15202,10 +15277,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" ] }, { @@ -15213,10 +15288,10 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" ] }, { @@ -15224,10 +15299,10 @@ "kernelrelease": "4.15.0-1052-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb" ] }, { @@ -15235,10 +15310,10 @@ "kernelrelease": "4.15.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" ] }, { @@ -15246,10 +15321,10 @@ "kernelrelease": "4.15.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb" ] }, { @@ -15257,10 +15332,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" ] }, { @@ -15270,8 +15345,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" ] }, { @@ -15279,10 +15354,10 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" ] }, { @@ -15290,9 +15365,9 @@ "kernelrelease": "4.15.0-1055-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb" ] }, @@ -15301,10 +15376,10 @@ "kernelrelease": "4.15.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" ] }, { @@ -15312,10 +15387,10 @@ "kernelrelease": "4.15.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" ] }, { @@ -15325,8 +15400,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" ] }, { @@ -15334,10 +15409,10 @@ "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb" ] }, { @@ -15345,10 +15420,10 @@ "kernelrelease": "4.15.0-1057-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" ] }, { @@ -15357,9 +15432,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb" ] }, { @@ -15368,8 +15443,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" ] }, @@ -15378,10 +15453,10 @@ "kernelrelease": "4.15.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb" ] }, { @@ -15389,10 +15464,10 @@ "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" ] }, { @@ -15400,9 +15475,9 @@ "kernelrelease": "4.15.0-1058-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" ] }, @@ -15412,9 +15487,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb" ] }, { @@ -15422,10 +15497,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" ] }, { @@ -15433,10 +15508,10 @@ "kernelrelease": "4.15.0-1059-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" ] }, { @@ -15445,9 +15520,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" ] }, { @@ -15455,10 +15530,10 @@ "kernelrelease": "4.15.0-1059-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" ] }, { @@ -15466,12 +15541,12 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" ] }, { @@ -15479,10 +15554,10 @@ "kernelrelease": "4.15.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" ] }, { @@ -15490,10 +15565,10 @@ "kernelrelease": "4.15.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" ] }, { @@ -15501,10 +15576,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" ] }, { @@ -15512,10 +15587,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" ] }, { @@ -15523,8 +15598,8 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] @@ -15534,10 +15609,10 @@ "kernelrelease": "4.15.0-1063-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" ] }, { @@ -15545,10 +15620,10 @@ "kernelrelease": "4.15.0-1063-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" ] }, { @@ -15556,10 +15631,10 @@ "kernelrelease": "4.15.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb" ] }, { @@ -15567,10 +15642,10 @@ "kernelrelease": "4.15.0-1064-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb" ] }, { @@ -15579,9 +15654,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb" ] }, { @@ -15590,9 +15665,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" ] }, { @@ -15600,9 +15675,9 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, @@ -15611,10 +15686,10 @@ "kernelrelease": "4.15.0-1065-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" ] }, { @@ -15622,10 +15697,10 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb" ] }, { @@ -15633,10 +15708,10 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { @@ -15644,10 +15719,10 @@ "kernelrelease": "4.15.0-1066-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" ] }, { @@ -15656,9 +15731,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" ] }, { @@ -15666,10 +15741,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" ] }, { @@ -15678,9 +15753,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" ] }, { @@ -15688,9 +15763,9 @@ "kernelrelease": "4.15.0-1067-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" ] }, @@ -15699,10 +15774,10 @@ "kernelrelease": "4.15.0-1067-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb" ] }, { @@ -15710,9 +15785,9 @@ "kernelrelease": "4.15.0-1067-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" ] }, @@ -15721,10 +15796,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" ] }, { @@ -15732,10 +15807,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" ] }, { @@ -15743,8 +15818,8 @@ "kernelrelease": "4.15.0-1069-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" ] @@ -15754,8 +15829,8 @@ "kernelrelease": "4.15.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" ] @@ -15765,9 +15840,9 @@ "kernelrelease": "4.15.0-1069-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" ] }, @@ -15777,8 +15852,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb" ] }, @@ -15787,10 +15862,10 @@ "kernelrelease": "4.15.0-1070-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" ] }, { @@ -15798,10 +15873,10 @@ "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" ] }, { @@ -15809,9 +15884,9 @@ "kernelrelease": "4.15.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" ] }, @@ -15820,10 +15895,10 @@ "kernelrelease": "4.15.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" ] }, { @@ -15831,10 +15906,10 @@ "kernelrelease": "4.15.0-1072-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb" ] }, { @@ -15843,9 +15918,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" ] }, { @@ -15853,10 +15928,10 @@ "kernelrelease": "4.15.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" ] }, { @@ -15864,8 +15939,8 @@ "kernelrelease": "4.15.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" ] @@ -15875,10 +15950,10 @@ "kernelrelease": "4.15.0-1073-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb" ] }, { @@ -15887,9 +15962,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" ] }, { @@ -15897,9 +15972,9 @@ "kernelrelease": "4.15.0-1074-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" ] }, @@ -15908,10 +15983,10 @@ "kernelrelease": "4.15.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb" ] }, { @@ -15919,10 +15994,10 @@ "kernelrelease": "4.15.0-1075-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb" ] }, { @@ -15930,10 +16005,10 @@ "kernelrelease": "4.15.0-1076-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" ] }, { @@ -15941,10 +16016,10 @@ "kernelrelease": "4.15.0-1076-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" ] }, { @@ -15952,10 +16027,10 @@ "kernelrelease": "4.15.0-1076-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" ] }, { @@ -15963,9 +16038,9 @@ "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb" ] }, @@ -15974,10 +16049,10 @@ "kernelrelease": "4.15.0-1077-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" ] }, { @@ -15985,8 +16060,8 @@ "kernelrelease": "4.15.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" ] @@ -15996,10 +16071,10 @@ "kernelrelease": "4.15.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" ] }, { @@ -16007,9 +16082,9 @@ "kernelrelease": "4.15.0-1078-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" ] }, @@ -16018,10 +16093,10 @@ "kernelrelease": "4.15.0-1078-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" ] }, { @@ -16029,10 +16104,10 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" ] }, { @@ -16040,10 +16115,10 @@ "kernelrelease": "4.15.0-1079-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" ] }, { @@ -16051,10 +16126,10 @@ "kernelrelease": "4.15.0-1079-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" ] }, { @@ -16062,10 +16137,10 @@ "kernelrelease": "4.15.0-1079-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" ] }, { @@ -16073,12 +16148,12 @@ "kernelrelease": "4.15.0-108", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" ] }, { @@ -16086,10 +16161,10 @@ "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" ] }, { @@ -16098,9 +16173,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb" ] }, { @@ -16108,10 +16183,10 @@ "kernelrelease": "4.15.0-1080-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb" ] }, { @@ -16119,10 +16194,10 @@ "kernelrelease": "4.15.0-1081-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" ] }, { @@ -16130,8 +16205,8 @@ "kernelrelease": "4.15.0-1081-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb" ] @@ -16141,10 +16216,10 @@ "kernelrelease": "4.15.0-1081-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb" ] }, { @@ -16152,10 +16227,10 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" ] }, { @@ -16163,9 +16238,9 @@ "kernelrelease": "4.15.0-1082-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" ] }, @@ -16174,8 +16249,8 @@ "kernelrelease": "4.15.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" ] @@ -16198,8 +16273,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb" ] }, { @@ -16207,10 +16282,10 @@ "kernelrelease": "4.15.0-1083-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" ] }, { @@ -16218,10 +16293,10 @@ "kernelrelease": "4.15.0-1083-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" ] }, { @@ -16229,10 +16304,10 @@ "kernelrelease": "4.15.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb" ] }, { @@ -16240,10 +16315,10 @@ "kernelrelease": "4.15.0-1084-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb" ] }, { @@ -16252,9 +16327,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" ] }, { @@ -16263,9 +16338,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb" ] }, { @@ -16273,9 +16348,9 @@ "kernelrelease": "4.15.0-1086-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb" ] }, @@ -16284,10 +16359,10 @@ "kernelrelease": "4.15.0-1086-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" ] }, { @@ -16295,9 +16370,9 @@ "kernelrelease": "4.15.0-1086-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" ] }, @@ -16306,10 +16381,10 @@ "kernelrelease": "4.15.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" ] }, { @@ -16317,9 +16392,9 @@ "kernelrelease": "4.15.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" ] }, @@ -16328,10 +16403,10 @@ "kernelrelease": "4.15.0-1087-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb" ] }, { @@ -16339,10 +16414,10 @@ "kernelrelease": "4.15.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" ] }, { @@ -16350,10 +16425,10 @@ "kernelrelease": "4.15.0-1089-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" ] }, { @@ -16362,9 +16437,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" ] }, { @@ -16372,10 +16447,10 @@ "kernelrelease": "4.15.0-1089-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" ] }, { @@ -16383,12 +16458,12 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb" ] }, { @@ -16396,10 +16471,10 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { @@ -16408,9 +16483,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" ] }, { @@ -16420,8 +16495,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb" ] }, { @@ -16429,9 +16504,9 @@ "kernelrelease": "4.15.0-1090-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb" ] }, @@ -16440,32 +16515,32 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb" ] }, { "kernelversion": "101", - "kernelrelease": "4.15.0-1091-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1091-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, { "kernelversion": "101", - "kernelrelease": "4.15.0-1091-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1091-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb" ] }, { @@ -16473,8 +16548,8 @@ "kernelrelease": "4.15.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb" ] @@ -16484,10 +16559,10 @@ "kernelrelease": "4.15.0-1091-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" ] }, { @@ -16495,10 +16570,10 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" ] }, { @@ -16507,8 +16582,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb" ] }, @@ -16517,10 +16592,10 @@ "kernelrelease": "4.15.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" ] }, { @@ -16528,10 +16603,10 @@ "kernelrelease": "4.15.0-1092-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" ] }, { @@ -16540,9 +16615,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" ] }, { @@ -16550,9 +16625,9 @@ "kernelrelease": "4.15.0-1093-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" ] }, @@ -16561,8 +16636,8 @@ "kernelrelease": "4.15.0-1093-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb" ] @@ -16572,10 +16647,10 @@ "kernelrelease": "4.15.0-1093-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" ] }, { @@ -16583,10 +16658,10 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" ] }, { @@ -16594,10 +16669,10 @@ "kernelrelease": "4.15.0-1094-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" ] }, { @@ -16605,10 +16680,10 @@ "kernelrelease": "4.15.0-1094-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb" ] }, { @@ -16627,9 +16702,9 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" ] }, @@ -16638,10 +16713,10 @@ "kernelrelease": "4.15.0-1095-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" ] }, { @@ -16650,9 +16725,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb" ] }, { @@ -16660,10 +16735,10 @@ "kernelrelease": "4.15.0-1095-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb" ] }, { @@ -16677,6 +16752,17 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" ] }, + { + "kernelversion": "106", + "kernelrelease": "4.15.0-1096-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" + ] + }, { "kernelversion": "106", "kernelrelease": "4.15.0-1096-oem", @@ -16688,26 +16774,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" ] }, - { - "kernelversion": "106", - "kernelrelease": "4.15.0-1096-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb" - ] - }, { "kernelversion": "109", "kernelrelease": "4.15.0-1096-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" ] }, { @@ -16726,9 +16801,9 @@ "kernelrelease": "4.15.0-1097-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" ] }, @@ -16737,10 +16812,10 @@ "kernelrelease": "4.15.0-1097-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb" ] }, { @@ -16748,10 +16823,10 @@ "kernelrelease": "4.15.0-1097-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" ] }, { @@ -16759,10 +16834,10 @@ "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" ] }, { @@ -16782,9 +16857,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb" ] }, { @@ -16792,10 +16867,10 @@ "kernelrelease": "4.15.0-1098-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb" ] }, { @@ -16803,10 +16878,10 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { @@ -16814,10 +16889,10 @@ "kernelrelease": "4.15.0-1099-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" ] }, { @@ -16825,10 +16900,10 @@ "kernelrelease": "4.15.0-1099-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" ] }, { @@ -16836,10 +16911,10 @@ "kernelrelease": "4.15.0-1099-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb" ] }, { @@ -16847,10 +16922,10 @@ "kernelrelease": "4.15.0-1099-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb" ] }, { @@ -16858,10 +16933,10 @@ "kernelrelease": "4.15.0-1100-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb" ] }, { @@ -16869,10 +16944,10 @@ "kernelrelease": "4.15.0-1100-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" ] }, { @@ -16880,10 +16955,10 @@ "kernelrelease": "4.15.0-1100-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" ] }, { @@ -16891,9 +16966,9 @@ "kernelrelease": "4.15.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" ] }, @@ -16902,32 +16977,32 @@ "kernelrelease": "4.15.0-1101-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb" ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-1101-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1101-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb" ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-1101-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1101-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" ] }, { @@ -16937,8 +17012,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" ] }, { @@ -16946,10 +17021,10 @@ "kernelrelease": "4.15.0-1102-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb" ] }, { @@ -16958,9 +17033,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb" ] }, { @@ -16979,32 +17054,32 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1103-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1103-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.15.0-1103-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelrelease": "4.15.0-1103-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { @@ -17012,10 +17087,10 @@ "kernelrelease": "4.15.0-1103-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" ] }, { @@ -17024,9 +17099,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb" ] }, { @@ -17034,10 +17109,10 @@ "kernelrelease": "4.15.0-1105-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" ] }, { @@ -17057,9 +17132,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" ] }, { @@ -17067,10 +17142,10 @@ "kernelrelease": "4.15.0-1106-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" ] }, { @@ -17078,9 +17153,9 @@ "kernelrelease": "4.15.0-1106-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb" ] }, @@ -17090,9 +17165,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" ] }, { @@ -17100,10 +17175,10 @@ "kernelrelease": "4.15.0-1108-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" ] }, { @@ -17111,10 +17186,10 @@ "kernelrelease": "4.15.0-1108-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" ] }, { @@ -17122,10 +17197,10 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb" ] }, { @@ -17134,9 +17209,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" ] }, { @@ -17144,10 +17219,10 @@ "kernelrelease": "4.15.0-1109-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" ] }, { @@ -17155,10 +17230,10 @@ "kernelrelease": "4.15.0-1109-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" ] }, { @@ -17166,12 +17241,12 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb" ] }, { @@ -17179,10 +17254,10 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" ] }, { @@ -17190,10 +17265,10 @@ "kernelrelease": "4.15.0-1110-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb" ] }, { @@ -17201,10 +17276,10 @@ "kernelrelease": "4.15.0-1110-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" ] }, { @@ -17212,10 +17287,10 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb" ] }, { @@ -17223,10 +17298,10 @@ "kernelrelease": "4.15.0-1111-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" ] }, { @@ -17234,9 +17309,9 @@ "kernelrelease": "4.15.0-1111-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" ] }, @@ -17245,10 +17320,10 @@ "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" ] }, { @@ -17256,10 +17331,10 @@ "kernelrelease": "4.15.0-1112-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" ] }, { @@ -17267,10 +17342,10 @@ "kernelrelease": "4.15.0-1112-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" ] }, { @@ -17279,8 +17354,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" ] }, @@ -17289,10 +17364,10 @@ "kernelrelease": "4.15.0-1113-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" ] }, { @@ -17300,9 +17375,9 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb" ] }, @@ -17311,10 +17386,10 @@ "kernelrelease": "4.15.0-1114-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" ] }, { @@ -17322,10 +17397,10 @@ "kernelrelease": "4.15.0-1114-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb" ] }, { @@ -17333,10 +17408,10 @@ "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" ] }, { @@ -17346,8 +17421,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb" ] }, { @@ -17355,10 +17430,10 @@ "kernelrelease": "4.15.0-1115-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" ] }, { @@ -17366,10 +17441,10 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb" ] }, { @@ -17377,10 +17452,10 @@ "kernelrelease": "4.15.0-1118-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" ] }, { @@ -17388,9 +17463,9 @@ "kernelrelease": "4.15.0-1118-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb" ] }, @@ -17399,10 +17474,10 @@ "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" ] }, { @@ -17410,10 +17485,10 @@ "kernelrelease": "4.15.0-1119-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" ] }, { @@ -17421,10 +17496,10 @@ "kernelrelease": "4.15.0-1119-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb" ] }, { @@ -17432,12 +17507,12 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb" ] }, { @@ -17445,10 +17520,10 @@ "kernelrelease": "4.15.0-1120-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" ] }, { @@ -17456,10 +17531,10 @@ "kernelrelease": "4.15.0-1121-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" ] }, { @@ -17468,8 +17543,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" ] }, @@ -17478,10 +17553,10 @@ "kernelrelease": "4.15.0-1122-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb" ] }, { @@ -17489,10 +17564,10 @@ "kernelrelease": "4.15.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" ] }, { @@ -17500,8 +17575,8 @@ "kernelrelease": "4.15.0-1123-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb" ] @@ -17511,8 +17586,8 @@ "kernelrelease": "4.15.0-1124-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb" ] @@ -17523,8 +17598,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb" ] }, @@ -17533,10 +17608,10 @@ "kernelrelease": "4.15.0-1125-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb" ] }, { @@ -17545,9 +17620,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb" ] }, { @@ -17555,10 +17630,10 @@ "kernelrelease": "4.15.0-1126-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" ] }, { @@ -17567,9 +17642,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb" ] }, { @@ -17577,8 +17652,8 @@ "kernelrelease": "4.15.0-1127-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb" ] @@ -17588,10 +17663,10 @@ "kernelrelease": "4.15.0-1129-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb" ] }, { @@ -17610,9 +17685,9 @@ "kernelrelease": "4.15.0-1130-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb" ] }, @@ -17621,10 +17696,10 @@ "kernelrelease": "4.15.0-1133-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" ] }, { @@ -17632,10 +17707,10 @@ "kernelrelease": "4.15.0-1133-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" ] }, { @@ -17643,10 +17718,10 @@ "kernelrelease": "4.15.0-1136-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb" ] }, { @@ -17654,10 +17729,10 @@ "kernelrelease": "4.15.0-1136-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb" ] }, { @@ -17665,10 +17740,10 @@ "kernelrelease": "4.15.0-1137-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb" ] }, { @@ -17678,8 +17753,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb" ] }, { @@ -17688,8 +17763,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb" ] }, @@ -17698,10 +17773,10 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" ] @@ -17713,10 +17788,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb" ] }, { @@ -17724,11 +17799,11 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" ] }, @@ -17737,11 +17812,11 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb" ] }, @@ -17750,12 +17825,12 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" ] }, { @@ -17763,12 +17838,12 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" ] }, { @@ -17776,12 +17851,12 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb" ] }, { @@ -17789,12 +17864,12 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb" ] }, { @@ -17802,12 +17877,12 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb" ] }, { @@ -17815,12 +17890,12 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" ] }, { @@ -17828,12 +17903,12 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" ] }, { @@ -17841,12 +17916,12 @@ "kernelrelease": "4.15.0-136", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" ] }, { @@ -17854,12 +17929,12 @@ "kernelrelease": "4.15.0-137", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" ] }, { @@ -17867,12 +17942,12 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" ] }, { @@ -17880,9 +17955,9 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" @@ -17893,12 +17968,12 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb" ] }, { @@ -17906,12 +17981,12 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb" ] }, { @@ -17919,12 +17994,12 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" ] }, { @@ -17933,11 +18008,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb" ] }, { @@ -17945,11 +18020,11 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, @@ -17958,11 +18033,11 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb" ] }, @@ -17971,11 +18046,11 @@ "kernelrelease": "4.15.0-153", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" ] }, @@ -17984,10 +18059,10 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb" ] @@ -17998,11 +18073,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" ] }, { @@ -18012,10 +18087,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" ] }, { @@ -18023,12 +18098,12 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb" ] }, { @@ -18036,12 +18111,12 @@ "kernelrelease": "4.15.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" ] }, { @@ -18049,12 +18124,12 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" ] }, { @@ -18062,12 +18137,12 @@ "kernelrelease": "4.15.0-163", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb" ] }, { @@ -18075,9 +18150,9 @@ "kernelrelease": "4.15.0-166", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" @@ -18088,12 +18163,12 @@ "kernelrelease": "4.15.0-167", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" ] }, { @@ -18102,11 +18177,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" ] }, { @@ -18114,12 +18189,12 @@ "kernelrelease": "4.15.0-171", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" ] }, { @@ -18129,8 +18204,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb" ] @@ -18140,12 +18215,12 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" ] }, { @@ -18154,11 +18229,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb" ] }, { @@ -18166,12 +18241,12 @@ "kernelrelease": "4.15.0-177", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb" ] }, { @@ -18179,12 +18254,12 @@ "kernelrelease": "4.15.0-180", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb" ] }, { @@ -18192,12 +18267,12 @@ "kernelrelease": "4.15.0-184", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb" ] }, { @@ -18205,12 +18280,12 @@ "kernelrelease": "4.15.0-187", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb" ] }, { @@ -18218,12 +18293,12 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" ] }, { @@ -18231,12 +18306,12 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" ] }, { @@ -18244,12 +18319,12 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb" ] }, { @@ -18257,12 +18332,12 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" ] }, { @@ -18270,12 +18345,12 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb" ] }, { @@ -18283,12 +18358,12 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" ] }, { @@ -18296,11 +18371,11 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" ] }, @@ -18309,12 +18384,12 @@ "kernelrelease": "4.15.0-34", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" ] }, { @@ -18322,12 +18397,12 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" ] }, { @@ -18335,12 +18410,12 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb" ] }, { @@ -18349,11 +18424,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb" ] }, { @@ -18361,12 +18436,12 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb" ] }, { @@ -18374,11 +18449,11 @@ "kernelrelease": "4.15.0-44", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb" ] }, @@ -18388,10 +18463,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb" ] }, @@ -18400,12 +18475,12 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" ] }, { @@ -18413,12 +18488,12 @@ "kernelrelease": "4.15.0-47", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb" ] }, { @@ -18427,11 +18502,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb" ] }, { @@ -18440,11 +18515,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb" ] }, { @@ -18452,12 +18527,12 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb" ] }, { @@ -18465,12 +18540,12 @@ "kernelrelease": "4.15.0-54", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb" ] }, { @@ -18478,12 +18553,12 @@ "kernelrelease": "4.15.0-55", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb" ] }, { @@ -18491,12 +18566,12 @@ "kernelrelease": "4.15.0-58", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" ] }, { @@ -18504,12 +18579,12 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb" ] }, { @@ -18517,11 +18592,11 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" ] }, @@ -18531,10 +18606,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" ] }, @@ -18543,12 +18618,12 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb" ] }, { @@ -18556,12 +18631,12 @@ "kernelrelease": "4.15.0-66", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb" ] }, { @@ -18569,12 +18644,12 @@ "kernelrelease": "4.15.0-69", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb" ] }, { @@ -18583,11 +18658,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb" ] }, { @@ -18595,12 +18670,12 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb" ] }, { @@ -18609,11 +18684,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" ] }, { @@ -18621,12 +18696,12 @@ "kernelrelease": "4.15.0-76", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb" ] }, { @@ -18634,12 +18709,12 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb" ] }, { @@ -18647,12 +18722,12 @@ "kernelrelease": "4.15.0-91", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb" ] }, { @@ -18660,12 +18735,12 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" ] }, { @@ -18673,11 +18748,11 @@ "kernelrelease": "4.15.0-99", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" ] }, @@ -18687,9 +18762,9 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" ] }, { @@ -18698,9 +18773,9 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" ] }, { @@ -18708,9 +18783,9 @@ "kernelrelease": "4.18.0-1006-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" ] }, @@ -18719,10 +18794,10 @@ "kernelrelease": "4.18.0-1006-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb" ] }, { @@ -18741,9 +18816,9 @@ "kernelrelease": "4.18.0-1007-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb" ] }, @@ -18752,10 +18827,10 @@ "kernelrelease": "4.18.0-1008-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb" ] }, { @@ -18763,10 +18838,10 @@ "kernelrelease": "4.18.0-1008-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -18774,8 +18849,8 @@ "kernelrelease": "4.18.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb" ] @@ -18785,10 +18860,10 @@ "kernelrelease": "4.18.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" ] }, { @@ -18796,9 +18871,9 @@ "kernelrelease": "4.18.0-1012-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" ] }, @@ -18807,10 +18882,10 @@ "kernelrelease": "4.18.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" ] }, { @@ -18818,10 +18893,10 @@ "kernelrelease": "4.18.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -18829,8 +18904,8 @@ "kernelrelease": "4.18.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" ] @@ -18840,8 +18915,8 @@ "kernelrelease": "4.18.0-1015-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" ] @@ -18851,10 +18926,10 @@ "kernelrelease": "4.18.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb" ] }, { @@ -18873,10 +18948,10 @@ "kernelrelease": "4.18.0-1020-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" ] }, { @@ -18885,9 +18960,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -18896,9 +18971,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" ] }, { @@ -18917,12 +18992,12 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" ] }, { @@ -18930,12 +19005,12 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" ] }, { @@ -18943,12 +19018,12 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" ] }, { @@ -18956,12 +19031,12 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" ] }, { @@ -18969,12 +19044,12 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb" ] }, { @@ -18982,12 +19057,12 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" ] }, { @@ -18995,11 +19070,11 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, @@ -19009,10 +19084,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" ] }, @@ -19022,11 +19097,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb" ] }, { @@ -19034,12 +19109,12 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" ] }, { @@ -19047,10 +19122,10 @@ "kernelrelease": "5.0.0-1007-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" ] }, { @@ -19059,8 +19134,8 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb" ] }, @@ -19069,10 +19144,10 @@ "kernelrelease": "5.0.0-1009-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb" ] }, { @@ -19081,9 +19156,9 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" ] }, { @@ -19091,10 +19166,10 @@ "kernelrelease": "5.0.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -19102,9 +19177,9 @@ "kernelrelease": "5.0.0-1011-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb" ] }, @@ -19114,8 +19189,8 @@ "target": "ubuntu-azure-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb" ] }, @@ -19125,8 +19200,8 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" ] }, @@ -19135,10 +19210,10 @@ "kernelrelease": "5.0.0-1013-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" ] }, { @@ -19146,10 +19221,10 @@ "kernelrelease": "5.0.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" ] }, { @@ -19157,10 +19232,10 @@ "kernelrelease": "5.0.0-1014-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" ] }, { @@ -19168,10 +19243,10 @@ "kernelrelease": "5.0.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19179,10 +19254,10 @@ "kernelrelease": "5.0.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19190,8 +19265,8 @@ "kernelrelease": "5.0.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" ] @@ -19201,10 +19276,10 @@ "kernelrelease": "5.0.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" ] }, { @@ -19212,9 +19287,9 @@ "kernelrelease": "5.0.0-1021-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb" ] }, @@ -19223,9 +19298,9 @@ "kernelrelease": "5.0.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" ] }, @@ -19234,10 +19309,10 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" ] }, { @@ -19245,10 +19320,10 @@ "kernelrelease": "5.0.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb" ] }, { @@ -19257,8 +19332,8 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb" ] }, @@ -19267,10 +19342,10 @@ "kernelrelease": "5.0.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" ] }, { @@ -19278,10 +19353,10 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" ] }, { @@ -19289,10 +19364,10 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb" ] }, { @@ -19300,10 +19375,10 @@ "kernelrelease": "5.0.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" ] }, { @@ -19311,10 +19386,10 @@ "kernelrelease": "5.0.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -19322,9 +19397,9 @@ "kernelrelease": "5.0.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" ] }, @@ -19333,10 +19408,10 @@ "kernelrelease": "5.0.0-1027-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" ] }, { @@ -19344,10 +19419,10 @@ "kernelrelease": "5.0.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" ] }, { @@ -19356,9 +19431,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb" ] }, { @@ -19377,10 +19452,10 @@ "kernelrelease": "5.0.0-1029-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" ] }, { @@ -19388,10 +19463,10 @@ "kernelrelease": "5.0.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb" ] }, { @@ -19399,10 +19474,10 @@ "kernelrelease": "5.0.0-1031-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" ] }, { @@ -19410,10 +19485,10 @@ "kernelrelease": "5.0.0-1031-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb" ] }, { @@ -19421,10 +19496,10 @@ "kernelrelease": "5.0.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" ] }, { @@ -19432,10 +19507,10 @@ "kernelrelease": "5.0.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" ] }, { @@ -19443,10 +19518,10 @@ "kernelrelease": "5.0.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb" ] }, { @@ -19454,10 +19529,10 @@ "kernelrelease": "5.0.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" ] }, { @@ -19476,12 +19551,12 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb" ] }, { @@ -19490,11 +19565,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb" ] }, { @@ -19502,11 +19577,11 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" ] }, @@ -19515,12 +19590,12 @@ "kernelrelease": "5.0.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" ] }, { @@ -19528,12 +19603,12 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb" ] }, { @@ -19541,12 +19616,12 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" ] }, { @@ -19554,12 +19629,12 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" ] }, { @@ -19567,12 +19642,12 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" ] }, { @@ -19582,10 +19657,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" ] }, { @@ -19593,11 +19668,11 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" ] }, @@ -19606,12 +19681,12 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb" ] }, { @@ -19619,12 +19694,12 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" ] }, { @@ -19632,12 +19707,12 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb" ] }, { @@ -19646,11 +19721,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb" ] }, { @@ -19658,10 +19733,10 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" ] }, { @@ -19681,9 +19756,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" ] }, { @@ -19691,10 +19766,10 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb" ] }, { @@ -19704,8 +19779,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" ] }, { @@ -19719,26 +19794,37 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" ] }, + { + "kernelversion": "9~18.04.1", + "kernelrelease": "5.3.0-1008-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" + ] + }, { "kernelversion": "9~18.04.1", "kernelrelease": "5.3.0-1008-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { - "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-azure-5.3", + "kernelversion": "10~18.04.1", + "kernelrelease": "5.3.0-1009-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -19746,32 +19832,21 @@ "kernelrelease": "5.3.0-1009-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb" ] }, - { - "kernelversion": "10~18.04.1", - "kernelrelease": "5.3.0-1009-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" - ] - }, { "kernelversion": "11~18.04.1", "kernelrelease": "5.3.0-1010-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -19791,9 +19866,9 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" ] }, { @@ -19801,10 +19876,10 @@ "kernelrelease": "5.3.0-1012-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -19812,21 +19887,10 @@ "kernelrelease": "5.3.0-1012-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "5.3.0-1013-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -19834,21 +19898,32 @@ "kernelrelease": "5.3.0-1013-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, + { + "kernelversion": "14~18.04.1", + "kernelrelease": "5.3.0-1013-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" + ] + }, { "kernelversion": "15~18.04.1", "kernelrelease": "5.3.0-1014-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { @@ -19856,32 +19931,21 @@ "kernelrelease": "5.3.0-1014-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" ] }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" - ] - }, { "kernelversion": "17~18.04.1", "kernelrelease": "5.3.0-1016-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19889,10 +19953,21 @@ "kernelrelease": "5.3.0-1016-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "17~18.04.1", + "kernelrelease": "5.3.0-1016-aws-5.3", + "target": "ubuntu-aws-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19900,10 +19975,10 @@ "kernelrelease": "5.3.0-1016-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb" ] }, { @@ -19912,9 +19987,9 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { @@ -19922,32 +19997,32 @@ "kernelrelease": "5.3.0-1017-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1018-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1018-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19955,10 +20030,10 @@ "kernelrelease": "5.3.0-1018-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" ] }, { @@ -19966,9 +20041,9 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" ] }, @@ -19978,8 +20053,8 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" ] }, @@ -19988,8 +20063,8 @@ "kernelrelease": "5.3.0-1020-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" ] @@ -19999,10 +20074,10 @@ "kernelrelease": "5.3.0-1020-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" ] }, { @@ -20010,10 +20085,10 @@ "kernelrelease": "5.3.0-1022-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -20021,10 +20096,10 @@ "kernelrelease": "5.3.0-1023-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb" ] }, { @@ -20032,9 +20107,9 @@ "kernelrelease": "5.3.0-1024-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb" ] }, @@ -20043,9 +20118,9 @@ "kernelrelease": "5.3.0-1026-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" ] }, @@ -20054,10 +20129,10 @@ "kernelrelease": "5.3.0-1027-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" ] }, { @@ -20065,10 +20140,10 @@ "kernelrelease": "5.3.0-1028-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" ] }, { @@ -20077,8 +20152,8 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" ] }, @@ -20087,10 +20162,10 @@ "kernelrelease": "5.3.0-1028-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb" ] }, { @@ -20098,10 +20173,10 @@ "kernelrelease": "5.3.0-1029-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -20109,32 +20184,32 @@ "kernelrelease": "5.3.0-1030-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1030-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1030-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20154,9 +20229,9 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" ] }, { @@ -20165,9 +20240,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" ] }, { @@ -20175,10 +20250,10 @@ "kernelrelease": "5.3.0-1032-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -20186,10 +20261,10 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb" ] }, { @@ -20199,8 +20274,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb" ] }, { @@ -20208,10 +20283,10 @@ "kernelrelease": "5.3.0-1034-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -20219,10 +20294,10 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" ] }, { @@ -20241,12 +20316,12 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" ] }, { @@ -20254,12 +20329,12 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb" ] }, { @@ -20267,12 +20342,12 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" ] }, { @@ -20280,12 +20355,12 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb" ] }, { @@ -20293,12 +20368,12 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb" ] }, { @@ -20306,12 +20381,12 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb" ] }, { @@ -20319,12 +20394,12 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" ] }, { @@ -20332,12 +20407,12 @@ "kernelrelease": "5.3.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb" ] }, { @@ -20345,11 +20420,11 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb" ] }, @@ -20358,12 +20433,12 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" ] }, { @@ -20371,12 +20446,12 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" ] }, { @@ -20385,11 +20460,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb" ] }, { @@ -20398,11 +20473,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" ] }, { @@ -20410,12 +20485,12 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb" ] }, { @@ -20423,12 +20498,12 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" ] }, { @@ -20436,12 +20511,12 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb" ] }, { @@ -20449,11 +20524,11 @@ "kernelrelease": "5.3.0-65-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb" ] }, @@ -20463,11 +20538,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" ] }, { @@ -20475,12 +20550,12 @@ "kernelrelease": "5.3.0-67-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb" ] }, { @@ -20488,12 +20563,12 @@ "kernelrelease": "5.3.0-68-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" ] }, { @@ -20501,10 +20576,10 @@ "kernelrelease": "5.3.0-69-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" ] @@ -20514,11 +20589,11 @@ "kernelrelease": "5.3.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb" ] }, @@ -20527,11 +20602,11 @@ "kernelrelease": "5.3.0-72-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" ] }, @@ -20540,12 +20615,12 @@ "kernelrelease": "5.3.0-73-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" ] }, { @@ -20553,12 +20628,12 @@ "kernelrelease": "5.3.0-74-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" ] }, { @@ -20566,12 +20641,12 @@ "kernelrelease": "5.3.0-75-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb" ] }, { @@ -20579,12 +20654,12 @@ "kernelrelease": "5.3.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" ] }, { @@ -20592,32 +20667,32 @@ "kernelrelease": "5.4.0-1003-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" ] }, { "kernelversion": "5", - "kernelrelease": "5.4.0-1004-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1004-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb" ] }, { "kernelversion": "5", - "kernelrelease": "5.4.0-1004-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1004-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb" ] }, { @@ -20625,10 +20700,10 @@ "kernelrelease": "5.4.0-1007-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb" ] }, { @@ -20636,10 +20711,10 @@ "kernelrelease": "5.4.0-1008-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -20647,10 +20722,10 @@ "kernelrelease": "5.4.0-1009-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" ] }, { @@ -20658,9 +20733,9 @@ "kernelrelease": "5.4.0-1010-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" ] }, @@ -20669,8 +20744,8 @@ "kernelrelease": "5.4.0-1011-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb" ] @@ -20680,10 +20755,10 @@ "kernelrelease": "5.4.0-1012-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -20691,10 +20766,10 @@ "kernelrelease": "5.4.0-1013-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" ] }, { @@ -20702,8 +20777,8 @@ "kernelrelease": "5.4.0-1014-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb" ] @@ -20713,10 +20788,10 @@ "kernelrelease": "5.4.0-1015-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" ] }, { @@ -20724,10 +20799,10 @@ "kernelrelease": "5.4.0-1016-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -20735,10 +20810,10 @@ "kernelrelease": "5.4.0-1018-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -20754,24 +20829,24 @@ }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1021-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1021-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -20779,54 +20854,54 @@ "kernelrelease": "5.4.0-1021-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1022-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1022-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1022-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1022-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20834,10 +20909,10 @@ "kernelrelease": "5.4.0-1022-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -20845,10 +20920,10 @@ "kernelrelease": "5.4.0-1023-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb" ] }, { @@ -20856,10 +20931,21 @@ "kernelrelease": "5.4.0-1023-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.4.0-1024-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" ] }, { @@ -20867,10 +20953,10 @@ "kernelrelease": "5.4.0-1024-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20878,21 +20964,10 @@ "kernelrelease": "5.4.0-1024-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" ] }, { @@ -20901,9 +20976,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" ] }, { @@ -20912,31 +20987,31 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1025-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1025-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -20944,10 +21019,10 @@ "kernelrelease": "5.4.0-1025-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -20955,9 +21030,9 @@ "kernelrelease": "5.4.0-1025-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" ] }, @@ -20966,10 +21041,10 @@ "kernelrelease": "5.4.0-1025-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" ] }, { @@ -20977,10 +21052,10 @@ "kernelrelease": "5.4.0-1026-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" ] }, { @@ -20988,10 +21063,10 @@ "kernelrelease": "5.4.0-1026-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -21001,8 +21076,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { @@ -21012,30 +21087,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1028-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1028-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { @@ -21044,9 +21119,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -21054,32 +21129,32 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1029-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" ] }, { "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1029-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21089,8 +21164,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21098,9 +21173,9 @@ "kernelrelease": "5.4.0-1029-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb" ] }, @@ -21109,8 +21184,8 @@ "kernelrelease": "5.4.0-1031-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb" ] @@ -21120,32 +21195,32 @@ "kernelrelease": "5.4.0-1031-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" ] }, { "kernelversion": "34~18.04.1", - "kernelrelease": "5.4.0-1032-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1032-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { "kernelversion": "34~18.04.1", - "kernelrelease": "5.4.0-1032-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1032-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21154,8 +21229,8 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" ] }, @@ -21165,9 +21240,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21176,9 +21251,20 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1033-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" ] }, { @@ -21186,10 +21272,10 @@ "kernelrelease": "5.4.0-1033-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" ] }, { @@ -21197,21 +21283,10 @@ "kernelrelease": "5.4.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1033-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" ] }, { @@ -21219,10 +21294,10 @@ "kernelrelease": "5.4.0-1034-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb" ] }, { @@ -21230,32 +21305,32 @@ "kernelrelease": "5.4.0-1034-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1035-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1035-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" ] }, { @@ -21263,9 +21338,9 @@ "kernelrelease": "5.4.0-1035-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" ] }, @@ -21274,21 +21349,10 @@ "kernelrelease": "5.4.0-1035-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" - ] - }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb" ] }, { @@ -21296,20 +21360,31 @@ "kernelrelease": "5.4.0-1036-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb" ] }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.4.0-1036-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" + ] + }, { "kernelversion": "39~18.04.1", "kernelrelease": "5.4.0-1036-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" ] }, @@ -21319,8 +21394,8 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" ] }, @@ -21329,9 +21404,9 @@ "kernelrelease": "5.4.0-1037-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" ] }, @@ -21340,32 +21415,32 @@ "kernelrelease": "5.4.0-1037-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1037-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1037-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1037-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1037-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21373,10 +21448,10 @@ "kernelrelease": "5.4.0-1037-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb" ] }, { @@ -21384,9 +21459,9 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb" ] }, @@ -21395,10 +21470,10 @@ "kernelrelease": "5.4.0-1038-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { @@ -21406,9 +21481,9 @@ "kernelrelease": "5.4.0-1038-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" ] }, @@ -21418,20 +21493,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" ] }, { @@ -21439,10 +21503,10 @@ "kernelrelease": "5.4.0-1039-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { @@ -21450,10 +21514,21 @@ "kernelrelease": "5.4.0-1039-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + ] + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1039-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21461,10 +21536,10 @@ "kernelrelease": "5.4.0-1039-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" ] }, { @@ -21472,10 +21547,10 @@ "kernelrelease": "5.4.0-1039-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" ] }, { @@ -21483,10 +21558,10 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" ] @@ -21496,10 +21571,10 @@ "kernelrelease": "5.4.0-1040-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" ] }, { @@ -21507,10 +21582,10 @@ "kernelrelease": "5.4.0-1040-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { @@ -21518,10 +21593,21 @@ "kernelrelease": "5.4.0-1040-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-1041-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" ] }, { @@ -21535,26 +21621,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, - { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1041-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" - ] - }, { "kernelversion": "44~18.04.1", "kernelrelease": "5.4.0-1041-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" ] }, { @@ -21563,9 +21638,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { @@ -21573,10 +21648,10 @@ "kernelrelease": "5.4.0-1042-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" ] }, { @@ -21584,10 +21659,10 @@ "kernelrelease": "5.4.0-1042-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb" ] }, { @@ -21595,21 +21670,21 @@ "kernelrelease": "5.4.0-1042-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1043-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -21617,21 +21692,21 @@ "kernelrelease": "5.4.0-1043-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1043-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -21639,9 +21714,9 @@ "kernelrelease": "5.4.0-1043-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb" ] }, @@ -21650,32 +21725,32 @@ "kernelrelease": "5.4.0-1043-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb" ] }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1044-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1044-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -21683,10 +21758,10 @@ "kernelrelease": "5.4.0-1044-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" ] }, { @@ -21694,10 +21769,10 @@ "kernelrelease": "5.4.0-1044-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" ] }, { @@ -21705,21 +21780,21 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1046-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" ] }, { @@ -21727,21 +21802,21 @@ "kernelrelease": "5.4.0-1046-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1046-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -21749,10 +21824,10 @@ "kernelrelease": "5.4.0-1046-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" ] }, { @@ -21760,10 +21835,10 @@ "kernelrelease": "5.4.0-1046-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" ] }, { @@ -21771,9 +21846,9 @@ "kernelrelease": "5.4.0-1047-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" ] }, @@ -21782,32 +21857,32 @@ "kernelrelease": "5.4.0-1047-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" ] }, { "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1048-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" ] }, { "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1048-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" ] }, { @@ -21817,8 +21892,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb" ] }, { @@ -21826,10 +21901,10 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" ] }, { @@ -21837,10 +21912,10 @@ "kernelrelease": "5.4.0-1049-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { @@ -21848,9 +21923,9 @@ "kernelrelease": "5.4.0-1049-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" ] }, @@ -21859,9 +21934,9 @@ "kernelrelease": "5.4.0-1049-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" ] }, @@ -21870,10 +21945,10 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" ] }, { @@ -21881,32 +21956,32 @@ "kernelrelease": "5.4.0-1049-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1051-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" ] }, { "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1051-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" ] }, { @@ -21914,10 +21989,10 @@ "kernelrelease": "5.4.0-1051-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" ] }, { @@ -21925,9 +22000,9 @@ "kernelrelease": "5.4.0-1051-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" ] }, @@ -21936,9 +22011,9 @@ "kernelrelease": "5.4.0-1052-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb" ] }, @@ -21947,9 +22022,9 @@ "kernelrelease": "5.4.0-1052-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" ] }, @@ -21958,9 +22033,9 @@ "kernelrelease": "5.4.0-1052-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" ] }, @@ -21971,8 +22046,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -21980,10 +22055,10 @@ "kernelrelease": "5.4.0-1053-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -21991,10 +22066,10 @@ "kernelrelease": "5.4.0-1053-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" ] }, { @@ -22002,9 +22077,9 @@ "kernelrelease": "5.4.0-1054-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb" ] }, @@ -22013,9 +22088,9 @@ "kernelrelease": "5.4.0-1054-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" ] }, @@ -22024,9 +22099,9 @@ "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" ] }, @@ -22035,10 +22110,10 @@ "kernelrelease": "5.4.0-1055-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" ] }, { @@ -22046,10 +22121,10 @@ "kernelrelease": "5.4.0-1055-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { @@ -22057,21 +22132,10 @@ "kernelrelease": "5.4.0-1055-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" ] }, { @@ -22080,20 +22144,20 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1055-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { @@ -22101,10 +22165,21 @@ "kernelrelease": "5.4.0-1056-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "59~18.04.1", + "kernelrelease": "5.4.0-1056-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" ] }, { @@ -22112,9 +22187,9 @@ "kernelrelease": "5.4.0-1056-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" ] }, @@ -22123,9 +22198,9 @@ "kernelrelease": "5.4.0-1057-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" ] }, @@ -22134,10 +22209,10 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb" ] }, { @@ -22145,10 +22220,10 @@ "kernelrelease": "5.4.0-1057-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -22158,8 +22233,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -22169,8 +22244,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" ] }, { @@ -22178,10 +22253,10 @@ "kernelrelease": "5.4.0-1058-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" ] }, { @@ -22200,10 +22275,10 @@ "kernelrelease": "5.4.0-1059-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -22211,10 +22286,10 @@ "kernelrelease": "5.4.0-1059-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -22222,10 +22297,10 @@ "kernelrelease": "5.4.0-1059-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" ] }, { @@ -22234,9 +22309,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" ] }, { @@ -22244,10 +22319,10 @@ "kernelrelease": "5.4.0-1060-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb" ] }, { @@ -22255,21 +22330,10 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1062-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb" ] }, { @@ -22277,21 +22341,21 @@ "kernelrelease": "5.4.0-1062-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "65~18.04.1", + "kernelrelease": "5.4.0-1062-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { @@ -22300,9 +22364,9 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -22310,10 +22374,21 @@ "kernelrelease": "5.4.0-1065-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1065-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" ] }, { @@ -22321,32 +22396,32 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1067-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1067-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { @@ -22354,21 +22429,10 @@ "kernelrelease": "5.4.0-1067-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" ] }, { @@ -22376,20 +22440,31 @@ "kernelrelease": "5.4.0-1068-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" ] }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1068-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" + ] + }, { "kernelversion": "75~18.04.1", "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" ] }, @@ -22398,11 +22473,11 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb" ] }, @@ -22411,10 +22486,10 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" ] }, { @@ -22422,21 +22497,10 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" ] }, { @@ -22445,8 +22509,8 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" ] }, @@ -22457,8 +22521,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22466,10 +22541,10 @@ "kernelrelease": "5.4.0-1072-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb" ] }, { @@ -22479,8 +22554,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb" ] }, { @@ -22490,8 +22565,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" ] }, { @@ -22500,9 +22575,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" ] }, { @@ -22510,9 +22585,9 @@ "kernelrelease": "5.4.0-1074-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb" ] }, @@ -22523,8 +22598,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb" ] }, { @@ -22532,10 +22607,10 @@ "kernelrelease": "5.4.0-1076-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb" ] }, { @@ -22543,10 +22618,10 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" ] }, { @@ -22554,9 +22629,9 @@ "kernelrelease": "5.4.0-1078-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb" ] }, @@ -22565,10 +22640,10 @@ "kernelrelease": "5.4.0-1078-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb" ] }, { @@ -22578,30 +22653,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb" ] }, { "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1080-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb" ] }, { "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1080-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb" ] }, { @@ -22610,9 +22685,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" ] }, { @@ -22622,8 +22697,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb" ] }, { @@ -22631,9 +22706,9 @@ "kernelrelease": "5.4.0-1085-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb" ] }, @@ -22642,12 +22717,12 @@ "kernelrelease": "5.4.0-109-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb" ] }, { @@ -22655,11 +22730,11 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" ] }, @@ -22669,11 +22744,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb" ] }, { @@ -22681,12 +22756,12 @@ "kernelrelease": "5.4.0-120-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb" ] }, { @@ -22694,12 +22769,12 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" ] }, { @@ -22707,12 +22782,12 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb" ] }, { @@ -22720,12 +22795,12 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" ] }, { @@ -22733,11 +22808,11 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb" ] }, @@ -22746,12 +22821,12 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" ] }, { @@ -22759,12 +22834,12 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb" ] }, { @@ -22772,12 +22847,12 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" ] }, { @@ -22785,12 +22860,12 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" ] }, { @@ -22799,11 +22874,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" ] }, { @@ -22811,12 +22886,12 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb" ] }, { @@ -22824,12 +22899,12 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" ] }, { @@ -22837,12 +22912,12 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb" ] }, { @@ -22850,12 +22925,12 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb" ] }, { @@ -22863,12 +22938,12 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb" ] }, { @@ -22876,12 +22951,12 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb" ] }, { @@ -22889,11 +22964,11 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb" ] }, @@ -22902,12 +22977,12 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" ] }, { @@ -22915,12 +22990,12 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" ] }, { @@ -22928,12 +23003,12 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb" ] }, { @@ -22941,12 +23016,12 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb" ] }, { @@ -22954,11 +23029,11 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" ] }, @@ -22967,12 +23042,12 @@ "kernelrelease": "5.4.0-74-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb" ] }, { @@ -22980,11 +23055,11 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" ] }, @@ -22993,12 +23068,12 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb" ] }, { @@ -23006,12 +23081,12 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb" ] }, { @@ -23020,10 +23095,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" ] }, @@ -23032,12 +23107,12 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb" ] }, { @@ -23045,12 +23120,12 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" ] }, { @@ -23058,12 +23133,12 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb" ] }, { @@ -23071,12 +23146,12 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb" ] }, { @@ -23085,11 +23160,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" ] }, { @@ -23098,11 +23173,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" ] }, { @@ -23110,12 +23185,12 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb" ] }, { @@ -23124,9 +23199,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" ] }, { @@ -23134,10 +23209,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb" ] }, { @@ -23145,32 +23220,32 @@ "kernelrelease": "4.15.0-1024-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1025-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-1025-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb" ] }, { @@ -23178,32 +23253,32 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-1030-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1030-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-1030-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1030-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" ] }, { @@ -23211,9 +23286,9 @@ "kernelrelease": "4.15.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" ] }, @@ -23222,10 +23297,10 @@ "kernelrelease": "4.15.0-1036-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" ] }, { @@ -23234,11 +23309,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" ] }, { @@ -23247,11 +23322,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" ] }, { @@ -23259,12 +23334,12 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" ] }, { @@ -23272,11 +23347,11 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, @@ -23285,10 +23360,10 @@ "kernelrelease": "4.18.0-1009-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -23296,12 +23371,12 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" ] }, { @@ -23309,10 +23384,10 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" ] }, { @@ -23320,10 +23395,10 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" ] }, { @@ -23331,9 +23406,9 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" ] }, @@ -23342,9 +23417,9 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb" ] }, @@ -23353,9 +23428,9 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" ] }, @@ -23364,8 +23439,8 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" ] @@ -23376,8 +23451,8 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" ] }, @@ -23386,10 +23461,10 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" ] }, { @@ -23408,10 +23483,10 @@ "kernelrelease": "5.4.0-1018-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" ] }, { @@ -23420,9 +23495,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" ] }, { @@ -23430,10 +23505,10 @@ "kernelrelease": "5.4.0-1019-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" ] }, { @@ -23441,10 +23516,10 @@ "kernelrelease": "5.4.0-1020-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb" ] }, { @@ -23452,12 +23527,12 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] }, { @@ -23465,12 +23540,12 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" ] }, { @@ -23478,10 +23553,10 @@ "kernelrelease": "4.15.0-1004-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb" ] }, { @@ -23489,10 +23564,10 @@ "kernelrelease": "4.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb" ] }, { @@ -23500,10 +23575,10 @@ "kernelrelease": "4.15.0-1007-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" ] }, { @@ -23512,11 +23587,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" ] }, { @@ -23525,9 +23600,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb" ] }, { @@ -23536,9 +23611,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb" ] }, { @@ -23547,9 +23622,9 @@ "target": "ubuntu-gke", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" ] }, { @@ -23557,10 +23632,10 @@ "kernelrelease": "5.15.0-1005-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" ] }, { @@ -23568,9 +23643,9 @@ "kernelrelease": "5.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb" ] }, @@ -23579,9 +23654,9 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb" ] }, @@ -23590,10 +23665,54 @@ "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb" + ] + }, + { + "kernelversion": "1", + "kernelrelease": "5.18.0-1001-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.18.0-1001-kvm_5.18.0-1001.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.18.0-1001_5.18.0-1001.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.18.0-1001-kvm_5.18.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.18.0-1001_5.18.0-1001.1_all.deb" + ] + }, + { + "kernelversion": "1", + "kernelrelease": "5.18.0-1001-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.18.0-1001-ibm_5.18.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.18.0-1001_5.18.0-1001.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.18.0-1001_5.18.0-1001.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.18.0-1001-ibm_5.18.0-1001.1_amd64.deb" + ] + }, + { + "kernelversion": "2", + "kernelrelease": "5.18.0-1002-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_amd64.deb" + ] + }, + { + "kernelversion": "2", + "kernelrelease": "5.18.0-1002-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_amd64.deb" ] }, { @@ -23601,10 +23720,10 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" ] }, { @@ -23614,8 +23733,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb" ] }, { @@ -23623,9 +23742,9 @@ "kernelrelease": "5.15.0-1003-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb" ] }, @@ -23634,21 +23753,21 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1004-intel-iotg", + "target": "ubuntu-intel-iotg", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23656,21 +23775,21 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-intel-iotg", - "target": "ubuntu-intel-iotg", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23678,10 +23797,10 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" ] }, { @@ -23689,10 +23808,10 @@ "kernelrelease": "5.15.0-1004-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, { @@ -23700,10 +23819,10 @@ "kernelrelease": "5.15.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, { @@ -23712,11 +23831,22 @@ "target": "ubuntu-lowlatency", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" ] }, + { + "kernelversion": "28", + "kernelrelease": "5.15.0-27-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" + ] + }, { "kernelversion": "28", "kernelrelease": "5.15.0-27", @@ -23728,26 +23858,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb" ] }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" - ] - }, { "kernelversion": "3", "kernelrelease": "5.17.0-1003-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" ] }, { @@ -23766,9 +23885,9 @@ "kernelrelease": "5.11.0-1029-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, @@ -23777,9 +23896,9 @@ "kernelrelease": "5.11.0-1029-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" ] }, @@ -23788,10 +23907,10 @@ "kernelrelease": "5.11.0-1029-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" ] }, { @@ -23799,10 +23918,10 @@ "kernelrelease": "5.11.0-1030-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb" ] }, { @@ -23810,10 +23929,10 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" ] @@ -23825,8 +23944,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" ] }, { @@ -23834,10 +23953,10 @@ "kernelrelease": "5.13.0-1014-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" ] }, { @@ -23846,31 +23965,31 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1016-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1016-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" ] }, { @@ -23878,9 +23997,9 @@ "kernelrelease": "5.13.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, @@ -23889,10 +24008,10 @@ "kernelrelease": "5.13.0-1018-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" ] }, { @@ -23911,10 +24030,10 @@ "kernelrelease": "5.13.0-1019-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -23922,10 +24041,10 @@ "kernelrelease": "5.13.0-1019-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -23933,10 +24052,10 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" ] }, { @@ -23944,10 +24063,10 @@ "kernelrelease": "5.13.0-1020-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" ] }, { @@ -23955,10 +24074,10 @@ "kernelrelease": "5.13.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb" ] }, { @@ -23972,37 +24091,37 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" ] }, - { - "kernelversion": "26", - "kernelrelease": "5.13.0-1022-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb" - ] - }, { "kernelversion": "26", "kernelrelease": "5.13.0-1022-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb" ] }, + { + "kernelversion": "26", + "kernelrelease": "5.13.0-1022-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb" + ] + }, { "kernelversion": "25~20.04.1", "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -24010,10 +24129,10 @@ "kernelrelease": "5.13.0-1023-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb" ] }, { @@ -24033,9 +24152,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { @@ -24043,9 +24162,9 @@ "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" ] }, @@ -24054,10 +24173,10 @@ "kernelrelease": "5.13.0-1025-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb" ] }, { @@ -24065,10 +24184,10 @@ "kernelrelease": "5.13.0-1025-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" ] }, { @@ -24076,32 +24195,32 @@ "kernelrelease": "5.13.0-1026-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" ] }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1028-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1028-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" ] }, { @@ -24109,12 +24228,12 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb" ] }, { @@ -24122,12 +24241,12 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb" ] }, { @@ -24135,12 +24254,12 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" ] }, { @@ -24148,12 +24267,12 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb" ] }, { @@ -24161,12 +24280,12 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" ] }, { @@ -24174,12 +24293,12 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb" ] }, { @@ -24187,10 +24306,10 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb" ] @@ -24200,12 +24319,12 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" ] }, { @@ -24213,12 +24332,12 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb" ] }, { @@ -24226,12 +24345,12 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" ] }, { @@ -24240,11 +24359,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" ] }, { @@ -24252,12 +24371,12 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb" ] }, { @@ -24265,12 +24384,12 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb" ] }, { @@ -24278,12 +24397,12 @@ "kernelrelease": "5.13.0-52-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb" ] }, { @@ -24291,10 +24410,10 @@ "kernelrelease": "5.14.0-1006-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb" ] }, { @@ -24302,10 +24421,10 @@ "kernelrelease": "5.14.0-1007-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb" ] }, { @@ -24314,9 +24433,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" ] }, { @@ -24324,10 +24443,10 @@ "kernelrelease": "5.14.0-1009-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" ] }, { @@ -24336,9 +24455,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" ] }, { @@ -24346,10 +24465,10 @@ "kernelrelease": "5.14.0-1012-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" ] }, { @@ -24357,10 +24476,10 @@ "kernelrelease": "5.14.0-1013-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" ] }, { @@ -24370,8 +24489,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb" ] }, { @@ -24379,9 +24498,9 @@ "kernelrelease": "5.14.0-1022-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb" ] }, @@ -24390,9 +24509,9 @@ "kernelrelease": "5.14.0-1023-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" ] }, @@ -24401,8 +24520,8 @@ "kernelrelease": "5.14.0-1024-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" ] @@ -24412,10 +24531,10 @@ "kernelrelease": "5.14.0-1028-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb" ] }, { @@ -24423,9 +24542,9 @@ "kernelrelease": "5.14.0-1029-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" ] }, @@ -24434,9 +24553,9 @@ "kernelrelease": "5.14.0-1030-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" ] }, @@ -24445,10 +24564,10 @@ "kernelrelease": "5.14.0-1032-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb" ] }, { @@ -24456,10 +24575,10 @@ "kernelrelease": "5.14.0-1033-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb" ] }, { @@ -24468,9 +24587,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb" ] }, { @@ -24478,10 +24597,10 @@ "kernelrelease": "5.14.0-1036-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb" ] }, { @@ -24490,9 +24609,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" ] }, { @@ -24500,12 +24619,23 @@ "kernelrelease": "5.14.0-1038-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb" ] }, + { + "kernelversion": "48", + "kernelrelease": "5.14.0-1043-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1043-oem_5.14.0-1043.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1043_5.14.0-1043.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1043_5.14.0-1043.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1043-oem_5.14.0-1043.48_amd64.deb" + ] + }, { "kernelversion": "4~20.04.2", "kernelrelease": "5.15.0-1002-intel-iotg-5.15", @@ -24522,9 +24652,9 @@ "kernelrelease": "5.15.0-1007-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb" ] }, @@ -24533,21 +24663,32 @@ "kernelrelease": "5.15.0-1009-aws-5.15", "target": "ubuntu-aws-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb" ] }, + { + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1012-gcp-5.15", + "target": "ubuntu-gcp-5.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb" + ] + }, { "kernelversion": "16~20.04.1", "kernelrelease": "5.15.0-1013-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb" ] }, { @@ -24556,8 +24697,8 @@ "target": "ubuntu-aws-5.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb" ] }, @@ -24566,9 +24707,9 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" ] }, @@ -24578,9 +24719,9 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" ] }, { @@ -24588,8 +24729,8 @@ "kernelrelease": "5.15.0-28-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb" ] @@ -24601,19 +24742,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.4.0-1013-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" ] }, { @@ -24623,19 +24753,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.4.0-1015-ibm", - "target": "ubuntu-ibm", + "kernelversion": "14", + "kernelrelease": "5.4.0-1013-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { @@ -24643,32 +24773,32 @@ "kernelrelease": "5.4.0-1015-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.4.0-1021-ibm", + "kernelversion": "16", + "kernelrelease": "5.4.0-1015-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws", + "kernelversion": "23", + "kernelrelease": "5.4.0-1021-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb" ] }, { @@ -24677,9 +24807,20 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + ] + }, + { + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { @@ -24687,10 +24828,10 @@ "kernelrelease": "5.4.0-1032-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { @@ -24699,9 +24840,20 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -24709,9 +24861,9 @@ "kernelrelease": "5.4.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" ] }, @@ -24720,21 +24872,10 @@ "kernelrelease": "5.4.0-1034-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -24742,10 +24883,10 @@ "kernelrelease": "5.4.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" ] }, { @@ -24753,32 +24894,32 @@ "kernelrelease": "5.4.0-1035-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1039-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1039-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb" ] }, { "kernelversion": "40", - "kernelrelease": "5.4.0-1039-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1039-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" ] }, { @@ -24786,10 +24927,10 @@ "kernelrelease": "5.4.0-1040-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" ] }, { @@ -24797,10 +24938,10 @@ "kernelrelease": "5.4.0-1040-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" ] }, { @@ -24808,9 +24949,9 @@ "kernelrelease": "5.4.0-1041-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, @@ -24830,10 +24971,10 @@ "kernelrelease": "5.4.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb" ] }, { @@ -24841,10 +24982,10 @@ "kernelrelease": "5.4.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" ] }, { @@ -24852,9 +24993,9 @@ "kernelrelease": "5.4.0-1054-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" ] }, @@ -24863,43 +25004,32 @@ "kernelrelease": "5.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" ] }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1055-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb" - ] - }, { "kernelversion": "59", "kernelrelease": "5.4.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1056-azure", - "target": "ubuntu-azure", + "kernelversion": "59", + "kernelrelease": "5.4.0-1055-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" ] }, { @@ -24907,10 +25037,21 @@ "kernelrelease": "5.4.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1056-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" ] }, { @@ -24918,9 +25059,9 @@ "kernelrelease": "5.4.0-1057-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" ] }, @@ -24929,10 +25070,10 @@ "kernelrelease": "5.4.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" ] }, { @@ -24941,9 +25082,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" ] }, { @@ -24951,21 +25092,21 @@ "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" ] }, { @@ -24973,10 +25114,10 @@ "kernelrelease": "5.4.0-1059-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" ] }, { @@ -24984,32 +25125,21 @@ "kernelrelease": "5.4.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "5.4.0-1060-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1059-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" ] }, { @@ -25017,10 +25147,10 @@ "kernelrelease": "5.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" ] }, { @@ -25035,14 +25165,14 @@ ] }, { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-kvm", - "target": "ubuntu-kvm", + "kernelversion": "63", + "kernelrelease": "5.4.0-1060-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { @@ -25050,10 +25180,21 @@ "kernelrelease": "5.4.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" + ] + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" ] }, { @@ -25061,10 +25202,10 @@ "kernelrelease": "5.4.0-1061-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" ] }, { @@ -25072,10 +25213,10 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb" ] }, { @@ -25083,10 +25224,10 @@ "kernelrelease": "5.4.0-1062-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" ] }, { @@ -25094,10 +25235,10 @@ "kernelrelease": "5.4.0-1062-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" ] }, { @@ -25105,21 +25246,10 @@ "kernelrelease": "5.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1062-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" ] }, { @@ -25128,31 +25258,31 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1062-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1063-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" ] }, { @@ -25160,21 +25290,32 @@ "kernelrelease": "5.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { "kernelversion": "66", - "kernelrelease": "5.4.0-1063-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1063-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + ] + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" ] }, { @@ -25182,9 +25323,9 @@ "kernelrelease": "5.4.0-1063-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" ] }, @@ -25193,10 +25334,10 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" ] }, { @@ -25204,21 +25345,32 @@ "kernelrelease": "5.4.0-1063-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb" ] }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1064-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb" + ] + }, { "kernelversion": "67", "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -25232,26 +25384,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb" ] }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" - ] - }, { "kernelversion": "68", "kernelrelease": "5.4.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" ] }, { @@ -25259,10 +25400,10 @@ "kernelrelease": "5.4.0-1064-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb" ] }, { @@ -25270,32 +25411,21 @@ "kernelrelease": "5.4.0-1065-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1065-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" ] }, { @@ -25305,30 +25435,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { "kernelversion": "68", - "kernelrelease": "5.4.0-1065-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1065-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "5.4.0-1066-gke", - "target": "ubuntu-gke", + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { @@ -25336,10 +25466,21 @@ "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" + ] + }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1066-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb" ] }, { @@ -25347,10 +25488,10 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" ] }, { @@ -25358,10 +25499,10 @@ "kernelrelease": "5.4.0-1068-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" ] }, { @@ -25369,9 +25510,9 @@ "kernelrelease": "5.4.0-1068-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb" ] }, @@ -25381,8 +25522,8 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" ] }, @@ -25391,21 +25532,10 @@ "kernelrelease": "5.4.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" ] }, { @@ -25413,21 +25543,21 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1069-azure", - "target": "ubuntu-azure", + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" ] }, { @@ -25435,21 +25565,32 @@ "kernelrelease": "5.4.0-1069-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb" ] }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1069-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" + ] + }, { "kernelversion": "74", "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" ] }, { @@ -25457,10 +25598,10 @@ "kernelrelease": "5.4.0-1070-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" ] }, { @@ -25468,10 +25609,10 @@ "kernelrelease": "5.4.0-1070-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" ] }, { @@ -25479,10 +25620,10 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" ] }, { @@ -25491,31 +25632,31 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb" ] }, { @@ -25534,10 +25675,10 @@ "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" ] }, { @@ -25546,9 +25687,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb" ] }, { @@ -25556,10 +25697,10 @@ "kernelrelease": "5.4.0-1073-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" ] }, { @@ -25569,8 +25710,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" ] }, { @@ -25578,9 +25719,9 @@ "kernelrelease": "5.4.0-1073-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" ] }, @@ -25589,10 +25730,21 @@ "kernelrelease": "5.4.0-1073-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" + ] + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" ] }, { @@ -25600,10 +25752,10 @@ "kernelrelease": "5.4.0-1074-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" ] }, { @@ -25611,32 +25763,21 @@ "kernelrelease": "5.4.0-1074-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb" ] }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb" - ] - }, { "kernelversion": "77", "kernelrelease": "5.4.0-1074-azure", "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" ] }, { @@ -25656,9 +25797,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb" ] }, { @@ -25679,8 +25820,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb" ] }, { @@ -25688,10 +25829,10 @@ "kernelrelease": "5.4.0-1078-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" ] }, { @@ -25699,10 +25840,10 @@ "kernelrelease": "5.4.0-1078-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb" ] }, { @@ -25710,10 +25851,10 @@ "kernelrelease": "5.4.0-1080-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" ] }, { @@ -25721,34 +25862,45 @@ "kernelrelease": "5.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb" ] }, + { + "kernelversion": "35~20.04.1", + "kernelrelease": "5.8.0-1033-azure-5.8", + "target": "ubuntu-azure-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb" + ] + }, { "kernelversion": "35~20.04.1", "kernelrelease": "5.8.0-1033-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1036-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb" ] }, { @@ -25756,34 +25908,23 @@ "kernelrelease": "5.8.0-1036-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" ] }, - { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-gcp-5.8", - "target": "ubuntu-gcp-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" - ] - }, { "kernelversion": "75", "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" ] }, { @@ -25791,8 +25932,8 @@ "kernelrelease": "5.10.0-1013-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb" ] @@ -25802,9 +25943,9 @@ "kernelrelease": "5.10.0-1014-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb" ] }, @@ -25824,9 +25965,9 @@ "kernelrelease": "5.10.0-1017-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb" ] }, @@ -25846,10 +25987,10 @@ "kernelrelease": "5.10.0-1021-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" ] }, { @@ -25858,9 +25999,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" ] }, { @@ -25868,9 +26009,9 @@ "kernelrelease": "5.10.0-1023-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb" ] }, @@ -25879,10 +26020,10 @@ "kernelrelease": "5.10.0-1025-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb" ] }, { @@ -25890,10 +26031,10 @@ "kernelrelease": "5.10.0-1026-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" ] }, { @@ -25901,10 +26042,10 @@ "kernelrelease": "5.10.0-1029-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" ] }, { @@ -25912,10 +26053,10 @@ "kernelrelease": "5.10.0-1033-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" ] }, { @@ -25923,9 +26064,9 @@ "kernelrelease": "5.10.0-1038-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" ] }, @@ -25934,10 +26075,10 @@ "kernelrelease": "5.10.0-1044-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb" ] }, { @@ -25945,9 +26086,9 @@ "kernelrelease": "5.10.0-1045-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb" ] }, @@ -25956,10 +26097,10 @@ "kernelrelease": "5.10.0-1049-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" ] }, { @@ -25968,9 +26109,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" ] }, { @@ -25978,9 +26119,9 @@ "kernelrelease": "5.10.0-1051-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" ] }, @@ -25989,10 +26130,10 @@ "kernelrelease": "5.10.0-1053-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" ] }, { @@ -26000,10 +26141,10 @@ "kernelrelease": "5.10.0-1055-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb" ] }, { @@ -26011,9 +26152,9 @@ "kernelrelease": "5.10.0-1057-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" ] }, @@ -26024,30 +26165,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb" ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1013-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb" ] }, { "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1013-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, { @@ -26055,10 +26196,10 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" ] }, { @@ -26066,9 +26207,9 @@ "kernelrelease": "5.11.0-1014-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb" ] }, @@ -26077,10 +26218,10 @@ "kernelrelease": "5.11.0-1015-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" ] }, { @@ -26088,9 +26229,9 @@ "kernelrelease": "5.11.0-1016-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" ] }, @@ -26099,21 +26240,21 @@ "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1017-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb" ] }, { @@ -26121,21 +26262,21 @@ "kernelrelease": "5.11.0-1017-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb" ] }, { @@ -26144,9 +26285,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" ] }, { @@ -26154,21 +26295,10 @@ "kernelrelease": "5.11.0-1018-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" ] }, { @@ -26176,10 +26306,10 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { @@ -26187,32 +26317,32 @@ "kernelrelease": "5.11.0-1019-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb" ] }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + ] + }, { "kernelversion": "21~20.04.2", "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" ] }, { @@ -26220,21 +26350,32 @@ "kernelrelease": "5.11.0-1020-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb" ] }, + { + "kernelversion": "21~20.04.1", + "kernelrelease": "5.11.0-1020-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" + ] + }, { "kernelversion": "22~20.04.1", "kernelrelease": "5.11.0-1020-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb" ] }, { @@ -26242,10 +26383,10 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" ] }, { @@ -26253,10 +26394,10 @@ "kernelrelease": "5.11.0-1021-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, { @@ -26264,10 +26405,10 @@ "kernelrelease": "5.11.0-1021-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, { @@ -26275,32 +26416,32 @@ "kernelrelease": "5.11.0-1021-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { @@ -26308,10 +26449,10 @@ "kernelrelease": "5.11.0-1022-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -26319,10 +26460,21 @@ "kernelrelease": "5.11.0-1022-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -26331,9 +26483,9 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { @@ -26341,21 +26493,10 @@ "kernelrelease": "5.11.0-1023-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -26363,10 +26504,10 @@ "kernelrelease": "5.11.0-1023-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb" ] }, { @@ -26375,31 +26516,31 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -26407,10 +26548,10 @@ "kernelrelease": "5.11.0-1025-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" ] }, { @@ -26419,9 +26560,9 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" ] }, { @@ -26430,31 +26571,31 @@ "target": "ubuntu-oracle-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1027-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { @@ -26462,10 +26603,10 @@ "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -26473,10 +26614,10 @@ "kernelrelease": "5.11.0-1028-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -26484,10 +26625,10 @@ "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" ] }, { @@ -26495,10 +26636,10 @@ "kernelrelease": "5.11.0-1028-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" ] }, { @@ -26506,10 +26647,10 @@ "kernelrelease": "5.11.0-1029-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" ] }, { @@ -26517,12 +26658,12 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb" ] }, { @@ -26530,12 +26671,12 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" ] }, { @@ -26543,12 +26684,12 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" ] }, { @@ -26556,12 +26697,12 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" ] }, { @@ -26569,11 +26710,11 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" ] }, @@ -26582,12 +26723,12 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb" ] }, { @@ -26596,11 +26737,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb" ] }, { @@ -26608,12 +26749,12 @@ "kernelrelease": "5.11.0-40-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb" ] }, { @@ -26621,12 +26762,12 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" ] }, { @@ -26634,11 +26775,11 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" ] }, @@ -26647,12 +26788,12 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb" ] }, { @@ -26660,12 +26801,12 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" ] }, { @@ -26673,10 +26814,10 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" ] }, { @@ -26684,32 +26825,32 @@ "kernelrelease": "5.13.0-1008-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1008-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.13.0-1008-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.13.0-1008-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelrelease": "5.13.0-1008-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb" ] }, { @@ -26717,10 +26858,10 @@ "kernelrelease": "5.13.0-1009-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" ] }, { @@ -26728,21 +26869,10 @@ "kernelrelease": "5.13.0-1009-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" ] }, { @@ -26750,10 +26880,10 @@ "kernelrelease": "5.13.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { @@ -26761,10 +26891,21 @@ "kernelrelease": "5.13.0-1009-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" ] }, { @@ -26772,10 +26913,21 @@ "kernelrelease": "5.13.0-1010-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1010-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb" ] }, { @@ -26783,10 +26935,10 @@ "kernelrelease": "5.13.0-1010-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb" ] }, { @@ -26794,21 +26946,10 @@ "kernelrelease": "5.13.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.13.0-1010-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb" ] }, { @@ -26816,9 +26957,9 @@ "kernelrelease": "5.13.0-1011-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" ] }, @@ -26827,10 +26968,10 @@ "kernelrelease": "5.13.0-1011-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb" ] }, { @@ -26838,10 +26979,10 @@ "kernelrelease": "5.13.0-1011-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" ] }, { @@ -26849,10 +26990,10 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb" ] }, { @@ -26860,10 +27001,10 @@ "kernelrelease": "5.13.0-1012-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" ] }, { @@ -26871,9 +27012,9 @@ "kernelrelease": "5.13.0-1012-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" ] }, @@ -26882,10 +27023,10 @@ "kernelrelease": "5.13.0-1012-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" ] }, { @@ -26895,8 +27036,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" ] }, { @@ -26904,10 +27045,10 @@ "kernelrelease": "5.13.0-1014-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" ] }, { @@ -26915,10 +27056,10 @@ "kernelrelease": "5.13.0-1014-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb" ] }, { @@ -26926,10 +27067,10 @@ "kernelrelease": "5.13.0-1014-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" ] }, { @@ -26937,10 +27078,10 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" ] }, { @@ -26948,10 +27089,10 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" ] }, { @@ -26959,10 +27100,10 @@ "kernelrelease": "5.13.0-1017-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { @@ -26972,30 +27113,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1017-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb" ] }, { "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" ] }, { @@ -27003,10 +27144,10 @@ "kernelrelease": "5.13.0-1017-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb" ] }, { @@ -27014,10 +27155,10 @@ "kernelrelease": "5.13.0-1017-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb" ] }, { @@ -27025,10 +27166,10 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" ] }, { @@ -27036,9 +27177,9 @@ "kernelrelease": "5.13.0-1019-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" ] }, @@ -27047,10 +27188,10 @@ "kernelrelease": "5.13.0-1019-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb" ] }, { @@ -27058,10 +27199,10 @@ "kernelrelease": "5.13.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" ] }, { @@ -27069,10 +27210,10 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb" ] }, { @@ -27080,10 +27221,10 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" ] }, { @@ -27091,10 +27232,10 @@ "kernelrelease": "5.13.0-1021-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" ] }, { @@ -27103,9 +27244,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" ] }, { @@ -27113,10 +27254,10 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" ] }, { @@ -27124,10 +27265,10 @@ "kernelrelease": "5.13.0-1022-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" ] }, { @@ -27135,10 +27276,10 @@ "kernelrelease": "5.13.0-1024-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" ] }, { @@ -27146,10 +27287,10 @@ "kernelrelease": "5.13.0-1025-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" ] }, { @@ -27157,10 +27298,10 @@ "kernelrelease": "5.13.0-1025-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb" ] }, { @@ -27168,32 +27309,32 @@ "kernelrelease": "5.13.0-1026-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1027-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelrelease": "5.13.0-1027-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { @@ -27201,10 +27342,10 @@ "kernelrelease": "5.13.0-1028-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb" ] }, { @@ -27212,10 +27353,10 @@ "kernelrelease": "5.13.0-1028-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" ] }, { @@ -27223,10 +27364,10 @@ "kernelrelease": "5.13.0-1029-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" ] }, { @@ -27236,8 +27377,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb" ] }, { @@ -27247,8 +27388,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" ] }, { @@ -27256,10 +27397,10 @@ "kernelrelease": "5.13.0-1030-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb" ] }, { @@ -27267,9 +27408,9 @@ "kernelrelease": "5.13.0-1030-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb" ] }, @@ -27278,21 +27419,10 @@ "kernelrelease": "5.13.0-1031-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.13.0-1031-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb" ] }, { @@ -27306,15 +27436,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb" ] }, + { + "kernelversion": "37~20.04.1", + "kernelrelease": "5.13.0-1031-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb" + ] + }, { "kernelversion": "40~20.04.1", "kernelrelease": "5.13.0-1033-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb" ] }, { @@ -27322,10 +27463,10 @@ "kernelrelease": "5.13.0-1033-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" ] }, { @@ -27333,8 +27474,8 @@ "kernelrelease": "5.13.0-1034-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb" ] @@ -27344,10 +27485,10 @@ "kernelrelease": "5.13.0-1036-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb" ] }, { @@ -27355,12 +27496,12 @@ "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" ] }, { @@ -27368,12 +27509,12 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" ] }, { @@ -27381,12 +27522,12 @@ "kernelrelease": "5.13.0-27-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" ] }, { @@ -27394,12 +27535,12 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb" ] }, { @@ -27407,9 +27548,9 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" @@ -27421,11 +27562,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb" ] }, { @@ -27433,9 +27574,9 @@ "kernelrelease": "5.13.0-51-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb" @@ -27446,10 +27587,10 @@ "kernelrelease": "5.14.0-1004-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" ] }, { @@ -27457,10 +27598,10 @@ "kernelrelease": "5.14.0-1005-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" ] }, { @@ -27469,9 +27610,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb" ] }, { @@ -27479,10 +27620,10 @@ "kernelrelease": "5.14.0-1020-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb" ] }, { @@ -27490,10 +27631,10 @@ "kernelrelease": "5.14.0-1027-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" ] }, { @@ -27501,10 +27642,10 @@ "kernelrelease": "5.14.0-1031-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" ] }, { @@ -27512,10 +27653,10 @@ "kernelrelease": "5.14.0-1042-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb" ] }, { @@ -27523,9 +27664,9 @@ "kernelrelease": "5.15.0-1003-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" ] }, @@ -27534,10 +27675,10 @@ "kernelrelease": "5.15.0-1006-gcp-5.15", "target": "ubuntu-gcp-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb" ] }, { @@ -27545,10 +27686,10 @@ "kernelrelease": "5.15.0-1007-oracle-5.15", "target": "ubuntu-oracle-5.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" ] }, { @@ -27556,10 +27697,10 @@ "kernelrelease": "5.15.0-1008-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" ] }, { @@ -27569,8 +27710,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb" ] }, { @@ -27578,32 +27719,32 @@ "kernelrelease": "5.15.0-1010-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb" ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb" ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { @@ -27612,11 +27753,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" ] }, { @@ -27624,10 +27765,10 @@ "kernelrelease": "5.4.0-1005-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb" ] }, { @@ -27636,9 +27777,9 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" ] }, { @@ -27646,8 +27787,8 @@ "kernelrelease": "5.4.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" ] @@ -27657,10 +27798,10 @@ "kernelrelease": "5.4.0-1008-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb" ] }, { @@ -27668,10 +27809,10 @@ "kernelrelease": "5.4.0-1008-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" ] }, { @@ -27679,10 +27820,21 @@ "kernelrelease": "5.4.0-1009-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.4.0-1010-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { @@ -27690,32 +27842,32 @@ "kernelrelease": "5.4.0-1010-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1010-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.4.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb" ] }, { @@ -27723,10 +27875,10 @@ "kernelrelease": "5.4.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" ] }, { @@ -27734,21 +27886,10 @@ "kernelrelease": "5.4.0-1011-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" ] }, { @@ -27756,10 +27897,10 @@ "kernelrelease": "5.4.0-1011-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" ] }, { @@ -27767,10 +27908,10 @@ "kernelrelease": "5.4.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" ] }, { @@ -27778,10 +27919,10 @@ "kernelrelease": "5.4.0-1012-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, { @@ -27790,31 +27931,42 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, + { + "kernelversion": "15", + "kernelrelease": "5.4.0-1014-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb" + ] + }, { "kernelversion": "15", "kernelrelease": "5.4.0-1014-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1014-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { @@ -27822,10 +27974,10 @@ "kernelrelease": "5.4.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb" ] }, { @@ -27834,20 +27986,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" ] }, { @@ -27855,10 +27996,10 @@ "kernelrelease": "5.4.0-1015-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" ] }, { @@ -27866,10 +28007,10 @@ "kernelrelease": "5.4.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb" ] }, { @@ -27878,9 +28019,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" ] }, { @@ -27888,10 +28029,10 @@ "kernelrelease": "5.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" ] }, { @@ -27899,9 +28040,9 @@ "kernelrelease": "5.4.0-1017-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb" ] }, @@ -27910,32 +28051,32 @@ "kernelrelease": "5.4.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { "kernelversion": "18", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1018-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { @@ -27954,10 +28095,10 @@ "kernelrelease": "5.4.0-1018-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" ] }, { @@ -27965,21 +28106,10 @@ "kernelrelease": "5.4.0-1018-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.4.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" ] }, { @@ -27987,10 +28117,10 @@ "kernelrelease": "5.4.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" ] }, { @@ -27999,9 +28129,20 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.4.0-1019-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" ] }, { @@ -28010,9 +28151,20 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" + ] + }, + { + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -28020,10 +28172,10 @@ "kernelrelease": "5.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -28031,21 +28183,10 @@ "kernelrelease": "5.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -28053,54 +28194,54 @@ "kernelrelease": "5.4.0-1020-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1021-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1021-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1021-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb" ] }, { @@ -28116,46 +28257,46 @@ }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1022-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1022-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb" ] }, { @@ -28163,10 +28304,10 @@ "kernelrelease": "5.4.0-1022-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" ] }, { @@ -28174,10 +28315,10 @@ "kernelrelease": "5.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb" ] }, { @@ -28185,9 +28326,9 @@ "kernelrelease": "5.4.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb" ] }, @@ -28196,10 +28337,10 @@ "kernelrelease": "5.4.0-1023-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb" ] }, { @@ -28207,21 +28348,32 @@ "kernelrelease": "5.4.0-1023-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1024-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + ] + }, + { + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" ] }, { @@ -28237,24 +28389,13 @@ }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1024-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -28262,12 +28403,23 @@ "kernelrelease": "5.4.0-1024-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb" ] }, + { + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" + ] + }, { "kernelversion": "25", "kernelrelease": "5.4.0-1025-aws", @@ -28275,8 +28427,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { @@ -28284,10 +28436,10 @@ "kernelrelease": "5.4.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb" ] }, { @@ -28295,21 +28447,10 @@ "kernelrelease": "5.4.0-1025-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { @@ -28318,8 +28459,8 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" ] }, @@ -28328,10 +28469,10 @@ "kernelrelease": "5.4.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" ] }, { @@ -28339,10 +28480,10 @@ "kernelrelease": "5.4.0-1026-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" ] }, { @@ -28350,10 +28491,10 @@ "kernelrelease": "5.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" ] }, { @@ -28361,10 +28502,10 @@ "kernelrelease": "5.4.0-1026-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb" ] }, { @@ -28372,32 +28513,21 @@ "kernelrelease": "5.4.0-1027-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb" ] }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" - ] - }, { "kernelversion": "29", "kernelrelease": "5.4.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb" ] }, { @@ -28405,10 +28535,21 @@ "kernelrelease": "5.4.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + ] + }, + { + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" ] }, { @@ -28416,10 +28557,10 @@ "kernelrelease": "5.4.0-1028-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb" ] }, { @@ -28427,9 +28568,9 @@ "kernelrelease": "5.4.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" ] }, @@ -28438,8 +28579,8 @@ "kernelrelease": "5.4.0-1029-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" ] @@ -28449,10 +28590,10 @@ "kernelrelease": "5.4.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" ] }, { @@ -28460,10 +28601,10 @@ "kernelrelease": "5.4.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" ] }, { @@ -28471,10 +28612,10 @@ "kernelrelease": "5.4.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" ] }, { @@ -28493,9 +28634,9 @@ "kernelrelease": "5.4.0-1031-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, @@ -28515,10 +28656,10 @@ "kernelrelease": "5.4.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" ] }, { @@ -28526,32 +28667,32 @@ "kernelrelease": "5.4.0-1032-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1033-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1033-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.4.0-1033-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1033-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb" ] }, { @@ -28560,9 +28701,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" ] }, { @@ -28571,9 +28712,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" ] }, { @@ -28581,10 +28722,10 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" ] }, { @@ -28594,8 +28735,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" ] }, { @@ -28603,32 +28744,32 @@ "kernelrelease": "5.4.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1036-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1036-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1036-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb" ] }, { @@ -28636,10 +28777,21 @@ "kernelrelease": "5.4.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" + ] + }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1036-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" ] }, { @@ -28647,21 +28799,21 @@ "kernelrelease": "5.4.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.4.0-1036-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "39", + "kernelrelease": "5.4.0-1037-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb" ] }, { @@ -28675,26 +28827,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" ] }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1037-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" - ] - }, { "kernelversion": "40", "kernelrelease": "5.4.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" ] }, { @@ -28702,10 +28843,10 @@ "kernelrelease": "5.4.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb" ] }, { @@ -28713,9 +28854,9 @@ "kernelrelease": "5.4.0-1037-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, @@ -28726,8 +28867,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, { @@ -28735,10 +28876,10 @@ "kernelrelease": "5.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" ] }, { @@ -28746,8 +28887,8 @@ "kernelrelease": "5.4.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" ] @@ -28759,8 +28900,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" ] }, { @@ -28768,10 +28909,10 @@ "kernelrelease": "5.4.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb" ] }, { @@ -28779,21 +28920,10 @@ "kernelrelease": "5.4.0-1038-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1039-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" ] }, { @@ -28802,9 +28932,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { @@ -28813,11 +28943,22 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb" ] }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1039-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb" + ] + }, { "kernelversion": "42", "kernelrelease": "5.4.0-1039-oracle", @@ -28825,8 +28966,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" ] }, { @@ -28834,12 +28975,12 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb" ] }, { @@ -28847,8 +28988,8 @@ "kernelrelease": "5.4.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" ] @@ -28858,8 +28999,8 @@ "kernelrelease": "5.4.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" ] @@ -28869,21 +29010,10 @@ "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" ] }, { @@ -28893,19 +29023,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "5.4.0-1041-gcp", - "target": "ubuntu-gcp", + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" ] }, { @@ -28915,19 +29045,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.4.0-1042-gcp", + "kernelversion": "44", + "kernelrelease": "5.4.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" ] }, { @@ -28935,10 +29065,21 @@ "kernelrelease": "5.4.0-1042-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb" ] }, { @@ -28946,10 +29087,10 @@ "kernelrelease": "5.4.0-1042-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" ] }, { @@ -28958,31 +29099,31 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1043-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1043-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" ] }, { "kernelversion": "45", - "kernelrelease": "5.4.0-1043-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1043-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { @@ -28991,9 +29132,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" ] }, { @@ -29013,8 +29154,8 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" ] }, @@ -29023,10 +29164,10 @@ "kernelrelease": "5.4.0-1044-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" ] }, { @@ -29034,9 +29175,9 @@ "kernelrelease": "5.4.0-1044-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, @@ -29046,8 +29187,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, @@ -29056,10 +29197,10 @@ "kernelrelease": "5.4.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" ] }, { @@ -29067,10 +29208,10 @@ "kernelrelease": "5.4.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, { @@ -29078,9 +29219,9 @@ "kernelrelease": "5.4.0-1045-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" ] }, @@ -29090,9 +29231,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" ] }, { @@ -29100,10 +29241,10 @@ "kernelrelease": "5.4.0-1046-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" ] }, { @@ -29111,9 +29252,9 @@ "kernelrelease": "5.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" ] }, @@ -29122,10 +29263,10 @@ "kernelrelease": "5.4.0-1046-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { @@ -29134,9 +29275,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb" ] }, { @@ -29144,10 +29285,10 @@ "kernelrelease": "5.4.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb" ] }, { @@ -29156,20 +29297,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" ] }, { @@ -29177,10 +29307,10 @@ "kernelrelease": "5.4.0-1047-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { @@ -29188,21 +29318,21 @@ "kernelrelease": "5.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws", + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" ] }, { @@ -29210,10 +29340,21 @@ "kernelrelease": "5.4.0-1048-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" ] }, { @@ -29221,10 +29362,10 @@ "kernelrelease": "5.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb" ] }, { @@ -29232,9 +29373,9 @@ "kernelrelease": "5.4.0-1048-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb" ] }, @@ -29243,10 +29384,10 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" ] }, { @@ -29254,32 +29395,32 @@ "kernelrelease": "5.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { "kernelversion": "51", - "kernelrelease": "5.4.0-1049-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1049-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { "kernelversion": "51", - "kernelrelease": "5.4.0-1049-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1049-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb" ] }, { @@ -29287,9 +29428,9 @@ "kernelrelease": "5.4.0-1049-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, @@ -29298,10 +29439,10 @@ "kernelrelease": "5.4.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" ] }, { @@ -29309,9 +29450,9 @@ "kernelrelease": "5.4.0-1049-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" ] }, @@ -29320,12 +29461,12 @@ "kernelrelease": "5.4.0-105", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb" ] }, { @@ -29333,23 +29474,12 @@ "kernelrelease": "5.4.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb" - ] - }, { "kernelversion": "53", "kernelrelease": "5.4.0-1051-aws", @@ -29361,15 +29491,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + ] + }, { "kernelversion": "55", "kernelrelease": "5.4.0-1051-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb" ] }, { @@ -29379,30 +29520,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1052-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" ] }, { "kernelversion": "56", - "kernelrelease": "5.4.0-1052-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1052-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" ] }, { @@ -29410,32 +29551,32 @@ "kernelrelease": "5.4.0-1052-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1053-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1053-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" ] }, { @@ -29443,10 +29584,10 @@ "kernelrelease": "5.4.0-1053-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" ] }, { @@ -29454,32 +29595,32 @@ "kernelrelease": "5.4.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1054-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1054-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1054-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1054-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb" ] }, { @@ -29487,10 +29628,10 @@ "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" ] }, { @@ -29498,10 +29639,10 @@ "kernelrelease": "5.4.0-1055-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" ] }, { @@ -29521,9 +29662,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb" ] }, { @@ -29533,8 +29674,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" ] }, { @@ -29543,31 +29684,42 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" ] }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" + ] + }, { "kernelversion": "60", "kernelrelease": "5.4.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" ] }, { "kernelversion": "60", - "kernelrelease": "5.4.0-1056-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1057-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" ] }, { @@ -29575,21 +29727,21 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-gke", - "target": "ubuntu-gke", + "kernelversion": "61", + "kernelrelease": "5.4.0-1058-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { @@ -29597,21 +29749,10 @@ "kernelrelease": "5.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb" ] }, { @@ -29621,30 +29762,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1059-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1059-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" ] }, { @@ -29653,9 +29794,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb" ] }, { @@ -29663,9 +29804,9 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" ] }, @@ -29674,32 +29815,32 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" ] }, { "kernelversion": "70", - "kernelrelease": "5.4.0-1067-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1067-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb" ] }, { "kernelversion": "70", - "kernelrelease": "5.4.0-1067-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1067-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb" ] }, { @@ -29707,10 +29848,10 @@ "kernelrelease": "5.4.0-1067-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" ] }, { @@ -29718,21 +29859,21 @@ "kernelrelease": "5.4.0-1067-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1068-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1068-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" ] }, { @@ -29740,21 +29881,21 @@ "kernelrelease": "5.4.0-1068-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "5.4.0-1068-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1068-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb" ] }, { @@ -29762,10 +29903,10 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" ] }, { @@ -29773,12 +29914,12 @@ "kernelrelease": "5.4.0-107", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb" ] }, { @@ -29787,20 +29928,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb" ] }, { @@ -29808,10 +29938,10 @@ "kernelrelease": "5.4.0-1072-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb" ] }, { @@ -29819,10 +29949,21 @@ "kernelrelease": "5.4.0-1072-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + ] + }, + { + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" ] }, { @@ -29830,10 +29971,10 @@ "kernelrelease": "5.4.0-1072-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb" ] }, { @@ -29841,9 +29982,9 @@ "kernelrelease": "5.4.0-1072-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" ] }, @@ -29852,9 +29993,9 @@ "kernelrelease": "5.4.0-1073-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" ] }, @@ -29863,9 +30004,9 @@ "kernelrelease": "5.4.0-1076-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb" ] }, @@ -29874,10 +30015,10 @@ "kernelrelease": "5.4.0-1076-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb" ] }, { @@ -29885,32 +30026,32 @@ "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" ] }, { "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1078-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb" ] }, { "kernelversion": "84", - "kernelrelease": "5.4.0-1078-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1078-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb" ] }, { @@ -29918,10 +30059,10 @@ "kernelrelease": "5.4.0-1078-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb" ] }, { @@ -29929,10 +30070,10 @@ "kernelrelease": "5.4.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" ] }, { @@ -29940,10 +30081,10 @@ "kernelrelease": "5.4.0-1080-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb" ] }, { @@ -29952,9 +30093,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb" ] }, { @@ -29962,10 +30103,10 @@ "kernelrelease": "5.4.0-1083-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb" ] }, { @@ -29975,8 +30116,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb" ] }, { @@ -29985,9 +30126,9 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb" ] }, { @@ -29995,12 +30136,12 @@ "kernelrelease": "5.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" ] }, { @@ -30009,11 +30150,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb" ] }, { @@ -30021,12 +30162,12 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb" ] }, { @@ -30035,11 +30176,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb" ] }, { @@ -30047,12 +30188,12 @@ "kernelrelease": "5.4.0-120", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb" ] }, { @@ -30060,12 +30201,12 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb" ] }, { @@ -30073,12 +30214,12 @@ "kernelrelease": "5.4.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" ] }, { @@ -30086,12 +30227,12 @@ "kernelrelease": "5.4.0-31", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" ] }, { @@ -30099,12 +30240,12 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" ] }, { @@ -30112,12 +30253,12 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" ] }, { @@ -30126,11 +30267,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" ] }, { @@ -30139,11 +30280,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb" ] }, { @@ -30151,12 +30292,12 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb" ] }, { @@ -30164,12 +30305,12 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb" ] }, { @@ -30179,10 +30320,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb" ] }, { @@ -30192,10 +30333,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb" ] }, { @@ -30203,12 +30344,12 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb" ] }, { @@ -30216,12 +30357,12 @@ "kernelrelease": "5.4.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb" ] }, { @@ -30229,11 +30370,11 @@ "kernelrelease": "5.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" ] }, @@ -30242,12 +30383,12 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb" ] }, { @@ -30255,12 +30396,12 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb" ] }, { @@ -30268,12 +30409,12 @@ "kernelrelease": "5.4.0-60", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" ] }, { @@ -30281,12 +30422,12 @@ "kernelrelease": "5.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb" ] }, { @@ -30294,12 +30435,12 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" ] }, { @@ -30307,11 +30448,11 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" ] }, @@ -30320,12 +30461,12 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb" ] }, { @@ -30333,12 +30474,12 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb" ] }, { @@ -30346,12 +30487,12 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb" ] }, { @@ -30359,12 +30500,12 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" ] }, { @@ -30372,11 +30513,11 @@ "kernelrelease": "5.4.0-73", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb" ] }, @@ -30386,11 +30527,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb" ] }, { @@ -30398,12 +30539,12 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb" ] }, { @@ -30411,12 +30552,12 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" ] }, { @@ -30424,12 +30565,12 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb" ] }, { @@ -30437,12 +30578,12 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" ] }, { @@ -30450,12 +30591,12 @@ "kernelrelease": "5.4.0-86", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" ] }, { @@ -30463,12 +30604,12 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" ] }, { @@ -30476,12 +30617,12 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" ] }, { @@ -30489,12 +30630,12 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb" ] }, { @@ -30502,12 +30643,12 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" ] }, { @@ -30515,12 +30656,12 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" ] }, { @@ -30528,12 +30669,12 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" ] }, { @@ -30541,10 +30682,10 @@ "kernelrelease": "5.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb" ] @@ -30554,12 +30695,12 @@ "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" ] }, { @@ -30568,11 +30709,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb" ] }, { @@ -30580,10 +30721,10 @@ "kernelrelease": "5.6.0-1008-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" ] }, { @@ -30591,8 +30732,8 @@ "kernelrelease": "5.6.0-1010-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" ] @@ -30602,9 +30743,9 @@ "kernelrelease": "5.6.0-1011-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" ] }, @@ -30613,10 +30754,10 @@ "kernelrelease": "5.6.0-1013-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" ] }, { @@ -30624,9 +30765,9 @@ "kernelrelease": "5.6.0-1017-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb" ] }, @@ -30635,9 +30776,9 @@ "kernelrelease": "5.6.0-1018-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" ] }, @@ -30646,10 +30787,10 @@ "kernelrelease": "5.6.0-1020-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb" ] }, { @@ -30657,10 +30798,10 @@ "kernelrelease": "5.6.0-1023-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb" ] }, { @@ -30668,10 +30809,10 @@ "kernelrelease": "5.6.0-1026-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" ] }, { @@ -30679,9 +30820,9 @@ "kernelrelease": "5.6.0-1028-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" ] }, @@ -30691,9 +30832,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb" ] }, { @@ -30701,10 +30842,10 @@ "kernelrelease": "5.6.0-1032-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" ] }, { @@ -30712,10 +30853,10 @@ "kernelrelease": "5.6.0-1033-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" ] }, { @@ -30724,9 +30865,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" ] }, { @@ -30734,10 +30875,10 @@ "kernelrelease": "5.6.0-1042-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" ] }, { @@ -30745,10 +30886,10 @@ "kernelrelease": "5.6.0-1047-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" ] }, { @@ -30756,10 +30897,10 @@ "kernelrelease": "5.6.0-1048-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" ] }, { @@ -30769,8 +30910,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" ] }, { @@ -30778,10 +30919,10 @@ "kernelrelease": "5.6.0-1052-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" ] }, { @@ -30789,10 +30930,10 @@ "kernelrelease": "5.6.0-1053-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb" ] }, { @@ -30800,10 +30941,10 @@ "kernelrelease": "5.6.0-1054-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb" ] }, { @@ -30812,8 +30953,8 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" ] }, @@ -30822,10 +30963,10 @@ "kernelrelease": "5.6.0-1056-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" ] }, { @@ -30834,9 +30975,9 @@ "target": "ubuntu-oracle-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, { @@ -30844,10 +30985,10 @@ "kernelrelease": "5.8.0-1032-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb" ] }, { @@ -30855,32 +30996,32 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" ] }, { "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelrelease": "5.8.0-1035-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-aws-5.8", - "target": "ubuntu-aws-5.8", + "kernelrelease": "5.8.0-1035-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { @@ -30888,10 +31029,10 @@ "kernelrelease": "5.8.0-1037-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, { @@ -30899,10 +31040,10 @@ "kernelrelease": "5.8.0-1038-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { @@ -30910,10 +31051,10 @@ "kernelrelease": "5.8.0-1038-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { @@ -30921,10 +31062,10 @@ "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" ] }, { @@ -30932,9 +31073,9 @@ "kernelrelease": "5.8.0-1039-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb" ] }, @@ -30943,10 +31084,10 @@ "kernelrelease": "5.8.0-1039-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb" ] }, { @@ -30954,10 +31095,10 @@ "kernelrelease": "5.8.0-1040-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" ] }, { @@ -30965,9 +31106,9 @@ "kernelrelease": "5.8.0-1041-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" ] }, @@ -30976,10 +31117,10 @@ "kernelrelease": "5.8.0-1041-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" ] }, { @@ -30988,9 +31129,9 @@ "target": "ubuntu-aws-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" ] }, { @@ -31009,12 +31150,12 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" ] }, { @@ -31022,12 +31163,12 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" ] }, { @@ -31035,12 +31176,12 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" ] }, { @@ -31048,12 +31189,12 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb" ] }, { @@ -31061,12 +31202,12 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" ] }, { @@ -31075,11 +31216,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb" ] }, { @@ -31087,12 +31228,12 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" ] }, { @@ -31100,12 +31241,12 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" ] }, { @@ -31113,12 +31254,12 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb" ] }, { @@ -31127,11 +31268,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" ] }, { @@ -31140,11 +31281,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb" ] }, { @@ -31153,11 +31294,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" ] }, { @@ -31165,12 +31306,12 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb" ] }, { @@ -31179,11 +31320,11 @@ "target": "ubuntu-hwe-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" ] }, { @@ -31191,11 +31332,11 @@ "kernelrelease": "5.8.0-63-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" ] }, @@ -31204,10 +31345,10 @@ "kernelrelease": "5.10.0-1011-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" ] }, { @@ -31216,9 +31357,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" ] }, { @@ -31226,10 +31367,10 @@ "kernelrelease": "5.10.0-1034-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" ] }, { @@ -31248,8 +31389,8 @@ "kernelrelease": "5.11.0-1007-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" ] @@ -31259,10 +31400,10 @@ "kernelrelease": "5.11.0-1008-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" ] }, { @@ -31271,8 +31412,8 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" ] }, @@ -31281,10 +31422,10 @@ "kernelrelease": "5.11.0-1009-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" ] }, { @@ -31292,10 +31433,10 @@ "kernelrelease": "5.13.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" ] }, { @@ -31303,10 +31444,10 @@ "kernelrelease": "5.13.0-1007-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb" ] }, { @@ -31315,20 +31456,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.13.0-1021-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" ] }, { @@ -31337,20 +31467,31 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" ] }, + { + "kernelversion": "25", + "kernelrelease": "5.13.0-1021-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb" + ] + }, { "kernelversion": "10", "kernelrelease": "5.14.0-1010-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" ] }, { @@ -31358,10 +31499,10 @@ "kernelrelease": "5.14.0-1034-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb" ] }, { @@ -31369,10 +31510,10 @@ "kernelrelease": "5.4.0-1064-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" ] }, { @@ -31380,10 +31521,10 @@ "kernelrelease": "5.4.0-1065-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" ] }, { @@ -31391,10 +31532,10 @@ "kernelrelease": "5.4.0-1069-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" ] }, { @@ -31402,10 +31543,10 @@ "kernelrelease": "5.4.0-1074-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" ] }, { @@ -31413,10 +31554,10 @@ "kernelrelease": "5.4.0-1076-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" ] }, { @@ -31424,10 +31565,10 @@ "kernelrelease": "5.4.0-1080-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" ] }, { @@ -31435,12 +31576,12 @@ "kernelrelease": "5.4.0-54", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb" ] }, { @@ -31448,12 +31589,12 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" ] }, { @@ -31461,10 +31602,10 @@ "kernelrelease": "5.6.0-1021-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb" ] }, { @@ -31472,10 +31613,10 @@ "kernelrelease": "5.6.0-1027-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" ] }, { @@ -31494,9 +31635,9 @@ "kernelrelease": "5.6.0-1035-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" ] }, @@ -31505,10 +31646,10 @@ "kernelrelease": "5.6.0-1036-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb" ] }, { @@ -31516,10 +31657,10 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" ] }, { @@ -31527,9 +31668,9 @@ "kernelrelease": "5.8.0-1042-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" ] }, @@ -31538,11 +31679,11 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" ] }, @@ -31551,12 +31692,12 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb" ] }, { @@ -31564,12 +31705,12 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb" ] }, { @@ -31577,12 +31718,12 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb" ] }, { @@ -31590,34 +31731,23 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1009-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1009-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" ] }, { @@ -31626,20 +31756,31 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.4.0-1009-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1009-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + ] + }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb" ] }, { @@ -31647,8 +31788,8 @@ "kernelrelease": "5.4.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb" ] @@ -31658,12 +31799,12 @@ "kernelrelease": "5.4.0-26", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb" ] }, { @@ -31671,10 +31812,10 @@ "kernelrelease": "5.6.0-1007-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" ] }, { @@ -31682,10 +31823,10 @@ "kernelrelease": "5.11.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" ] }, { @@ -31693,32 +31834,32 @@ "kernelrelease": "5.11.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" ] }, { @@ -31726,32 +31867,32 @@ "kernelrelease": "5.11.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1027-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb" ] }, { @@ -31761,8 +31902,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb" ] }, { @@ -31770,10 +31911,10 @@ "kernelrelease": "5.11.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" ] }, { @@ -31781,12 +31922,12 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb" ] }, { @@ -31795,9 +31936,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb" ] }, { @@ -31805,10 +31946,10 @@ "kernelrelease": "5.11.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" ] }, { @@ -31816,10 +31957,10 @@ "kernelrelease": "5.11.0-1006-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" ] }, { @@ -31827,10 +31968,10 @@ "kernelrelease": "5.11.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb" ] }, { @@ -31838,10 +31979,10 @@ "kernelrelease": "5.11.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb" ] }, { @@ -31849,12 +31990,12 @@ "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb" ] }, { @@ -31862,21 +32003,21 @@ "kernelrelease": "5.13.0-1005-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1006-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1006-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { @@ -31886,19 +32027,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1006-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1006-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" ] }, { @@ -31906,10 +32047,10 @@ "kernelrelease": "5.13.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb" ] }, { @@ -31917,10 +32058,10 @@ "kernelrelease": "5.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, { @@ -31929,9 +32070,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" ] }, { @@ -31939,21 +32080,10 @@ "kernelrelease": "5.13.0-1007-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" ] }, { @@ -31962,9 +32092,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" ] }, { @@ -31973,20 +32103,20 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelversion": "9", + "kernelrelease": "5.13.0-1008-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb" ] }, { @@ -31994,10 +32124,21 @@ "kernelrelease": "5.13.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" + ] + }, + { + "kernelversion": "12", + "kernelrelease": "5.13.0-1010-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" ] }, { @@ -32006,9 +32147,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" ] }, { @@ -32016,21 +32157,10 @@ "kernelrelease": "5.13.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.13.0-1012-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" ] }, { @@ -32039,20 +32169,20 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.13.0-1013-kvm", - "target": "ubuntu-kvm", + "kernelversion": "13", + "kernelrelease": "5.13.0-1012-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" ] }, { @@ -32060,21 +32190,21 @@ "kernelrelease": "5.13.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1013-gcp", - "target": "ubuntu-gcp", + "kernelversion": "14", + "kernelrelease": "5.13.0-1013-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, { @@ -32082,21 +32212,32 @@ "kernelrelease": "5.13.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" ] }, + { + "kernelversion": "16", + "kernelrelease": "5.13.0-1013-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" + ] + }, { "kernelversion": "16", "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb" ] }, { @@ -32104,8 +32245,8 @@ "kernelrelease": "5.13.0-1014-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb" ] @@ -32115,10 +32256,10 @@ "kernelrelease": "5.13.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" ] }, { @@ -32126,10 +32267,10 @@ "kernelrelease": "5.13.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb" ] }, { @@ -32148,10 +32289,10 @@ "kernelrelease": "5.13.0-1018-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" ] }, { @@ -32159,10 +32300,10 @@ "kernelrelease": "5.13.0-1019-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { @@ -32170,10 +32311,10 @@ "kernelrelease": "5.13.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, { @@ -32181,10 +32322,10 @@ "kernelrelease": "5.13.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" ] }, { @@ -32192,9 +32333,9 @@ "kernelrelease": "5.13.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, @@ -32203,9 +32344,9 @@ "kernelrelease": "5.13.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, @@ -32215,9 +32356,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" ] }, { @@ -32225,9 +32366,9 @@ "kernelrelease": "5.13.0-1022-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb" ] }, @@ -32236,10 +32377,10 @@ "kernelrelease": "5.13.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" ] }, { @@ -32247,9 +32388,9 @@ "kernelrelease": "5.13.0-1023-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" ] }, @@ -32258,8 +32399,8 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb" ] @@ -32269,21 +32410,10 @@ "kernelrelease": "5.13.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.13.0-1023-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb" ] }, { @@ -32291,20 +32421,31 @@ "kernelrelease": "5.13.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" ] }, + { + "kernelversion": "28", + "kernelrelease": "5.13.0-1023-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb" + ] + }, { "kernelversion": "26", "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" ] }, @@ -32313,43 +32454,43 @@ "kernelrelease": "5.13.0-1024-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb" ] }, - { - "kernelversion": "29", - "kernelrelease": "5.13.0-1024-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb" - ] - }, { "kernelversion": "29", "kernelrelease": "5.13.0-1024-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" ] }, + { + "kernelversion": "29", + "kernelrelease": "5.13.0-1024-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb" + ] + }, { "kernelversion": "27", "kernelrelease": "5.13.0-1025-aws", "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb" ] }, { @@ -32357,8 +32498,8 @@ "kernelrelease": "5.13.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb" ] @@ -32368,10 +32509,10 @@ "kernelrelease": "5.13.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb" ] }, { @@ -32379,32 +32520,32 @@ "kernelrelease": "5.13.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" ] }, { "kernelversion": "31", - "kernelrelease": "5.13.0-1026-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1026-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" ] }, { "kernelversion": "31", - "kernelrelease": "5.13.0-1026-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1026-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb" ] }, { @@ -32412,10 +32553,10 @@ "kernelrelease": "5.13.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb" ] }, { @@ -32423,10 +32564,10 @@ "kernelrelease": "5.13.0-1028-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" ] }, { @@ -32434,8 +32575,8 @@ "kernelrelease": "5.13.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] @@ -32445,10 +32586,10 @@ "kernelrelease": "5.13.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb" ] }, { @@ -32456,12 +32597,12 @@ "kernelrelease": "5.13.0-52", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb" ] }, { @@ -32469,10 +32610,10 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" ] }, { @@ -32480,9 +32621,9 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" ] }, @@ -32491,10 +32632,10 @@ "kernelrelease": "5.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb" ] }, { @@ -32503,9 +32644,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb" ] }, { @@ -32513,10 +32654,10 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" ] }, { @@ -32524,9 +32665,9 @@ "kernelrelease": "5.13.0-1016-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" ] }, @@ -32535,10 +32676,10 @@ "kernelrelease": "5.13.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb" ] }, { @@ -32546,10 +32687,10 @@ "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb" ] }, { @@ -32557,10 +32698,10 @@ "kernelrelease": "5.13.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" ] }, { @@ -32568,10 +32709,10 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" ] }, { @@ -32590,32 +32731,32 @@ "kernelrelease": "5.13.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb" ] }, { "kernelversion": "32", - "kernelrelease": "5.13.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1027-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb" ] }, { "kernelversion": "32", - "kernelrelease": "5.13.0-1027-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1027-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" ] }, { @@ -32623,10 +32764,10 @@ "kernelrelease": "5.13.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb" ] }, { @@ -32634,10 +32775,10 @@ "kernelrelease": "5.13.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb" ] }, { @@ -32645,10 +32786,10 @@ "kernelrelease": "5.13.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb" ] }, { @@ -32656,10 +32797,10 @@ "kernelrelease": "5.13.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb" ] }, { @@ -32667,9 +32808,9 @@ "kernelrelease": "5.13.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb" ] }, @@ -32678,10 +32819,10 @@ "kernelrelease": "5.13.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb" ] }, { @@ -32689,10 +32830,10 @@ "kernelrelease": "5.13.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb" ] }, { @@ -32700,10 +32841,10 @@ "kernelrelease": "5.13.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb" ] }, { @@ -32712,9 +32853,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb" ] }, { @@ -32723,9 +32864,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_amd64.deb" ] }, { @@ -32734,11 +32875,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" ] }, { @@ -32746,12 +32887,12 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" ] }, { @@ -32759,12 +32900,12 @@ "kernelrelease": "5.13.0-23", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb" ] }, { @@ -32772,12 +32913,12 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" ] }, { @@ -32785,12 +32926,12 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb" ] }, { @@ -32798,12 +32939,12 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb" ] }, { @@ -32811,10 +32952,10 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" ] @@ -32824,12 +32965,12 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" ] }, { @@ -32837,12 +32978,12 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb" ] }, { @@ -32850,12 +32991,12 @@ "kernelrelease": "5.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb" ] }, { @@ -32864,10 +33005,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb" ] }, @@ -32876,12 +33017,12 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" ] }, { @@ -32889,12 +33030,12 @@ "kernelrelease": "5.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb" ] }, { @@ -32902,12 +33043,12 @@ "kernelrelease": "5.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb" ] }, { @@ -32915,12 +33056,12 @@ "kernelrelease": "5.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb" ] }, { @@ -32929,8 +33070,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb" ] }, @@ -32939,10 +33080,10 @@ "kernelrelease": "5.13.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb" ] }, { @@ -32950,10 +33091,10 @@ "kernelrelease": "5.13.0-1026-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb" ] }, { @@ -32962,9 +33103,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" ] }, { @@ -32973,10 +33114,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" ] }, @@ -32985,12 +33126,12 @@ "kernelrelease": "5.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb" ] }, { @@ -32999,9 +33140,20 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb" + ] + }, + { + "kernelversion": "6", + "kernelrelease": "5.13.0-1005-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb" ] }, { @@ -33015,26 +33167,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb" ] }, - { - "kernelversion": "6", - "kernelrelease": "5.13.0-1005-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" - ] - }, { "kernelversion": "10", "kernelrelease": "5.13.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" ] }, { @@ -33042,12 +33183,12 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" ] }, { @@ -33055,10 +33196,10 @@ "kernelrelease": "5.15.0-1004-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb" ] }, { @@ -33066,32 +33207,32 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.15.0-1006-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.15.0-1006-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.15.0-1006-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1006-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" ] }, { @@ -33099,10 +33240,10 @@ "kernelrelease": "5.15.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb" ] }, { @@ -33111,9 +33252,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb" ] }, { @@ -33121,9 +33262,9 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, @@ -33132,10 +33273,10 @@ "kernelrelease": "5.15.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb" ] }, { @@ -33143,9 +33284,9 @@ "kernelrelease": "5.15.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" ] }, @@ -33155,9 +33296,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb" ] }, { @@ -33165,32 +33306,32 @@ "kernelrelease": "5.15.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb" ] }, { "kernelversion": "31", - "kernelrelease": "5.15.0-30-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-30", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" ] }, { "kernelversion": "31", - "kernelrelease": "5.15.0-30", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-30-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" ] }, { @@ -33198,32 +33339,43 @@ "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" ] }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb" + ] + }, { "kernelversion": "34", "kernelrelease": "5.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "43", + "kernelrelease": "5.15.0-40", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb" ] }, { @@ -33231,31 +33383,20 @@ "kernelrelease": "5.15.0-40-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb" ] }, - { - "kernelversion": "43", - "kernelrelease": "5.15.0-40", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb" - ] - }, { "kernelversion": "4", "kernelrelease": "5.17.0-1004-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" ] }, @@ -33264,21 +33405,21 @@ "kernelrelease": "5.17.0-1005-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-ibm", - "target": "ubuntu-ibm", + "kernelversion": "13", + "kernelrelease": "5.17.0-1012-oem-5.17", + "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1012-oem_5.17.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1012-oem_5.17.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1012_5.17.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1012_5.17.0-1012.13_all.deb" ] }, { @@ -33286,21 +33427,21 @@ "kernelrelease": "5.15.0-1005-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", - "target": "ubuntu-aws", + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" ] }, { @@ -33308,10 +33449,21 @@ "kernelrelease": "5.15.0-1008-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb" + ] + }, + { + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb" ] }, { @@ -33319,10 +33471,10 @@ "kernelrelease": "5.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb" ] }, { @@ -33330,10 +33482,10 @@ "kernelrelease": "5.15.0-1008-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb" ] }, { @@ -33341,10 +33493,10 @@ "kernelrelease": "5.15.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" ] }, { @@ -33353,9 +33505,9 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb" ] }, { @@ -33365,8 +33517,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" ] }, { @@ -33374,8 +33526,8 @@ "kernelrelease": "5.15.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" ] @@ -33386,8 +33538,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb" ] }, @@ -33398,8 +33550,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb" ] }, { @@ -33407,10 +33559,10 @@ "kernelrelease": "5.15.0-1010-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb" ] }, { @@ -33418,9 +33570,9 @@ "kernelrelease": "5.15.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb" ] }, @@ -33429,10 +33581,10 @@ "kernelrelease": "5.15.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" ] }, { @@ -33440,10 +33592,10 @@ "kernelrelease": "5.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb" ] }, { @@ -33451,10 +33603,10 @@ "kernelrelease": "5.15.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb" ] }, { @@ -33462,10 +33614,10 @@ "kernelrelease": "5.15.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb" ] }, { @@ -33473,9 +33625,9 @@ "kernelrelease": "5.15.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb" ] }, @@ -33484,10 +33636,10 @@ "kernelrelease": "5.15.0-37", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb" ] }, { @@ -33495,32 +33647,32 @@ "kernelrelease": "5.15.0-37-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb" ] }, { "kernelversion": "42", - "kernelrelease": "5.15.0-39-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-39", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb" ] }, { "kernelversion": "42", - "kernelrelease": "5.15.0-39", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-39-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb" ] }, { @@ -33528,10 +33680,10 @@ "kernelrelease": "5.17.0-1006-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb" ] }, { @@ -33539,10 +33691,10 @@ "kernelrelease": "5.17.0-1011-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb" ] }, { @@ -33550,10 +33702,10 @@ "kernelrelease": "5.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb" ] }, { @@ -33572,10 +33724,10 @@ "kernelrelease": "5.15.0-1008-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" ] }, { @@ -33583,10 +33735,10 @@ "kernelrelease": "5.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb" ] }, { @@ -33594,9 +33746,9 @@ "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, @@ -33605,9 +33757,9 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" ] }, @@ -33616,9 +33768,9 @@ "kernelrelease": "5.15.0-1002-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" ] }, @@ -33627,10 +33779,10 @@ "kernelrelease": "5.15.0-1002-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" ] }, { @@ -33638,10 +33790,10 @@ "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" ] }, { @@ -33649,8 +33801,8 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb" ] @@ -33660,10 +33812,10 @@ "kernelrelease": "5.15.0-25", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" ] }, { @@ -33671,10 +33823,10 @@ "kernelrelease": "4.15.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" ] }, { @@ -33682,12 +33834,12 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb" ] }, { @@ -33695,12 +33847,12 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb" ] }, { @@ -33708,12 +33860,12 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" ] }, { @@ -33721,12 +33873,12 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" ] }, { @@ -33734,12 +33886,12 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" ] }, { @@ -33747,12 +33899,12 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb" ] }, { @@ -33760,12 +33912,12 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb" ] }, { @@ -33773,12 +33925,12 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" ] }, { @@ -33786,12 +33938,12 @@ "kernelrelease": "3.13.0-110", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb" ] }, { @@ -33799,12 +33951,12 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb" ] }, { @@ -33812,12 +33964,12 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" ] }, { @@ -33825,12 +33977,12 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb" ] }, { @@ -33838,12 +33990,12 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb" ] }, { @@ -33851,12 +34003,12 @@ "kernelrelease": "3.13.0-119", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" ] }, { @@ -33864,12 +34016,12 @@ "kernelrelease": "3.13.0-121", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb" ] }, { @@ -33877,12 +34029,12 @@ "kernelrelease": "3.13.0-123", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" ] }, { @@ -33890,12 +34042,12 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb" ] }, { @@ -33903,12 +34055,12 @@ "kernelrelease": "3.13.0-126", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" ] }, { @@ -33916,12 +34068,12 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" ] }, { @@ -33929,12 +34081,12 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" ] }, { @@ -33942,12 +34094,12 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb" ] }, { @@ -33955,12 +34107,12 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb" ] }, { @@ -33968,12 +34120,12 @@ "kernelrelease": "3.13.0-135", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb" ] }, { @@ -33981,12 +34133,12 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" ] }, { @@ -33995,11 +34147,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb" ] }, { @@ -34007,12 +34159,12 @@ "kernelrelease": "3.13.0-141", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" ] }, { @@ -34021,11 +34173,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" ] }, { @@ -34034,11 +34186,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" ] }, { @@ -34046,11 +34198,11 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" ] }, @@ -34059,11 +34211,11 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" ] }, @@ -34072,12 +34224,12 @@ "kernelrelease": "3.13.0-149", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb" ] }, { @@ -34085,11 +34237,11 @@ "kernelrelease": "3.13.0-151", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" ] }, @@ -34098,12 +34250,12 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb" ] }, { @@ -34111,12 +34263,12 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb" ] }, { @@ -34125,11 +34277,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" ] }, { @@ -34137,12 +34289,12 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb" ] }, { @@ -34150,12 +34302,12 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb" ] }, { @@ -34163,12 +34315,12 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb" ] }, { @@ -34177,11 +34329,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb" ] }, { @@ -34189,12 +34341,12 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" ] }, { @@ -34202,12 +34354,12 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" ] }, { @@ -34215,12 +34367,12 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" ] }, { @@ -34228,12 +34380,12 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" ] }, { @@ -34241,12 +34393,12 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" ] }, { @@ -34254,12 +34406,12 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb" ] }, { @@ -34268,11 +34420,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb" ] }, { @@ -34280,12 +34432,12 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" ] }, { @@ -34293,12 +34445,12 @@ "kernelrelease": "3.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb" ] }, { @@ -34307,10 +34459,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb" ] }, @@ -34319,12 +34471,12 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" ] }, { @@ -34332,12 +34484,12 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" ] }, { @@ -34345,12 +34497,12 @@ "kernelrelease": "3.13.0-34", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb" ] }, { @@ -34358,12 +34510,12 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb" ] }, { @@ -34371,12 +34523,12 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb" ] }, { @@ -34384,12 +34536,12 @@ "kernelrelease": "3.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" ] }, { @@ -34397,12 +34549,12 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb" ] }, { @@ -34411,11 +34563,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb" ] }, { @@ -34424,11 +34576,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" ] }, { @@ -34436,12 +34588,12 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" ] }, { @@ -34449,11 +34601,11 @@ "kernelrelease": "3.13.0-44", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" ] }, @@ -34462,10 +34614,10 @@ "kernelrelease": "3.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb" ] @@ -34475,12 +34627,12 @@ "kernelrelease": "3.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb" ] }, { @@ -34489,11 +34641,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, { @@ -34502,11 +34654,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" ] }, { @@ -34514,11 +34666,11 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb" ] }, @@ -34527,12 +34679,12 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" ] }, { @@ -34540,12 +34692,12 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb" ] }, { @@ -34553,11 +34705,11 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb" ] }, @@ -34566,12 +34718,12 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb" ] }, { @@ -34579,12 +34731,12 @@ "kernelrelease": "3.13.0-58", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb" ] }, { @@ -34592,12 +34744,12 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb" ] }, { @@ -34605,12 +34757,12 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb" ] }, { @@ -34618,12 +34770,12 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb" ] }, { @@ -34631,12 +34783,12 @@ "kernelrelease": "3.13.0-63", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb" ] }, { @@ -34644,11 +34796,11 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb" ] }, @@ -34657,12 +34809,12 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" ] }, { @@ -34670,12 +34822,12 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" ] }, { @@ -34683,12 +34835,12 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb" ] }, { @@ -34697,11 +34849,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb" ] }, { @@ -34709,12 +34861,12 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb" ] }, { @@ -34722,11 +34874,11 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb" ] }, @@ -34735,12 +34887,12 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb" ] }, { @@ -34748,12 +34900,12 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" ] }, { @@ -34761,12 +34913,12 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" ] }, { @@ -34774,12 +34926,12 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" ] }, { @@ -34787,12 +34939,12 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb" ] }, { @@ -34800,12 +34952,12 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb" ] }, { @@ -34813,12 +34965,12 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb" ] }, { @@ -34826,12 +34978,12 @@ "kernelrelease": "3.13.0-87", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb" ] }, { @@ -34839,12 +34991,12 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" ] }, { @@ -34852,10 +35004,10 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" ] @@ -34866,10 +35018,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb" ] }, @@ -34879,11 +35031,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" ] }, { @@ -34891,11 +35043,11 @@ "kernelrelease": "3.13.0-95", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb" ] }, @@ -34904,12 +35056,12 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb" ] }, { @@ -34917,11 +35069,11 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb" ] }, @@ -34930,12 +35082,12 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" ] }, { @@ -34944,11 +35096,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" ] }, { @@ -34956,12 +35108,12 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" ] }, { @@ -34969,12 +35121,12 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" ] }, { @@ -34982,11 +35134,11 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" ] }, @@ -34995,12 +35147,12 @@ "kernelrelease": "3.16.0-33-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" ] }, { @@ -35009,11 +35161,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" ] }, { @@ -35021,12 +35173,12 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" ] }, { @@ -35034,11 +35186,11 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb" ] }, @@ -35047,12 +35199,12 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" ] }, { @@ -35061,11 +35213,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb" ] }, { @@ -35074,10 +35226,10 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb" ] }, @@ -35086,12 +35238,12 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" ] }, { @@ -35099,12 +35251,12 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" ] }, { @@ -35112,12 +35264,12 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" ] }, { @@ -35125,12 +35277,12 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb" ] }, { @@ -35138,12 +35290,12 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb" ] }, { @@ -35151,12 +35303,12 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" ] }, { @@ -35164,12 +35316,12 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb" ] }, { @@ -35177,12 +35329,12 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb" ] }, { @@ -35191,11 +35343,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" ] }, { @@ -35203,12 +35355,12 @@ "kernelrelease": "3.16.0-53-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb" ] }, { @@ -35216,12 +35368,12 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb" ] }, { @@ -35229,12 +35381,12 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb" ] }, { @@ -35242,12 +35394,12 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb" ] }, { @@ -35256,11 +35408,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" ] }, { @@ -35268,11 +35420,11 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb" ] }, @@ -35281,12 +35433,12 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb" ] }, { @@ -35294,12 +35446,12 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb" ] }, { @@ -35307,12 +35459,12 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb" ] }, { @@ -35320,12 +35472,12 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb" ] }, { @@ -35333,12 +35485,12 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb" ] }, { @@ -35346,12 +35498,12 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb" ] }, { @@ -35359,12 +35511,12 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb" ] }, { @@ -35372,12 +35524,12 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb" ] }, { @@ -35385,12 +35537,12 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" ] }, { @@ -35398,12 +35550,12 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" ] }, { @@ -35411,12 +35563,12 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb" ] }, { @@ -35424,12 +35576,12 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" ] }, { @@ -35437,12 +35589,12 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" ] }, { @@ -35450,12 +35602,12 @@ "kernelrelease": "3.19.0-26-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb" ] }, { @@ -35463,12 +35615,12 @@ "kernelrelease": "3.19.0-28-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb" ] }, { @@ -35476,12 +35628,12 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" ] }, { @@ -35490,11 +35642,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb" ] }, { @@ -35502,11 +35654,11 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb" ] }, @@ -35515,12 +35667,12 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb" ] }, { @@ -35528,10 +35680,10 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" ] @@ -35541,12 +35693,12 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" ] }, { @@ -35554,12 +35706,12 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" ] }, { @@ -35567,12 +35719,12 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb" ] }, { @@ -35581,11 +35733,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb" ] }, { @@ -35594,11 +35746,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" ] }, { @@ -35606,12 +35758,12 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb" ] }, { @@ -35619,12 +35771,12 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb" ] }, { @@ -35632,12 +35784,12 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" ] }, { @@ -35645,12 +35797,12 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" ] }, { @@ -35658,12 +35810,12 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" ] }, { @@ -35671,12 +35823,12 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" ] }, { @@ -35684,12 +35836,12 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" ] }, { @@ -35697,12 +35849,12 @@ "kernelrelease": "3.19.0-65-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb" ] }, { @@ -35712,10 +35864,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb" ] }, { @@ -35723,12 +35875,12 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb" ] }, { @@ -35736,12 +35888,12 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" ] }, { @@ -35749,12 +35901,12 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" ] }, { @@ -35762,12 +35914,12 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb" ] }, { @@ -35776,11 +35928,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" ] }, { @@ -35788,12 +35940,12 @@ "kernelrelease": "3.19.0-75-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" ] }, { @@ -35805,8 +35957,8 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb" ] }, { @@ -35814,12 +35966,12 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" ] }, { @@ -35827,12 +35979,12 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" ] }, { @@ -35840,12 +35992,12 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb" ] }, { @@ -35853,9 +36005,9 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb" ] }, @@ -35864,10 +36016,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" ] }, { @@ -35875,10 +36027,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb" ] }, { @@ -35887,9 +36039,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb" ] }, { @@ -35897,10 +36049,10 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb" ] }, { @@ -35908,10 +36060,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb" ] }, { @@ -35920,9 +36072,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb" ] }, { @@ -35930,10 +36082,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" ] }, { @@ -35942,9 +36094,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" ] }, { @@ -35952,8 +36104,8 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" ] @@ -35964,11 +36116,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" ] }, { @@ -35976,12 +36128,12 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" ] }, { @@ -35989,12 +36141,12 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" ] }, { @@ -36002,12 +36154,12 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" ] }, { @@ -36015,12 +36167,12 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb" ] }, { @@ -36028,12 +36180,12 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb" ] }, { @@ -36041,11 +36193,11 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb" ] }, @@ -36054,11 +36206,11 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" ] }, @@ -36067,11 +36219,11 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb" ] }, @@ -36080,12 +36232,12 @@ "kernelrelease": "4.2.0-35-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" ] }, { @@ -36093,12 +36245,12 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb" ] }, { @@ -36106,12 +36258,12 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb" ] }, { @@ -36119,12 +36271,12 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb" ] }, { @@ -36132,11 +36284,11 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb" ] }, @@ -36146,11 +36298,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" ] }, { @@ -36158,12 +36310,12 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" ] }, { @@ -36171,11 +36323,11 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" ] }, @@ -36184,12 +36336,12 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb" ] }, { @@ -36198,11 +36350,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb" ] }, { @@ -36210,12 +36362,12 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" ] }, { @@ -36223,12 +36375,12 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" ] }, { @@ -36236,12 +36388,12 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" ] }, { @@ -36249,12 +36401,12 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb" ] }, { @@ -36262,12 +36414,12 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" ] }, { @@ -36275,12 +36427,12 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb" ] }, { @@ -36288,11 +36440,11 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb" ] }, @@ -36301,11 +36453,11 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" ] }, @@ -36314,12 +36466,12 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" ] }, { @@ -36327,12 +36479,12 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" ] }, { @@ -36340,12 +36492,12 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" ] }, { @@ -36353,12 +36505,12 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb" ] }, { @@ -36366,12 +36518,12 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb" ] }, { @@ -36380,11 +36532,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb" ] }, { @@ -36392,12 +36544,12 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" ] }, { @@ -36405,11 +36557,11 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" ] }, @@ -36418,12 +36570,12 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb" ] }, { @@ -36431,12 +36583,12 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb" ] }, { @@ -36445,11 +36597,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" ] }, { @@ -36457,12 +36609,12 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb" ] }, { @@ -36471,11 +36623,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb" ] }, { @@ -36483,12 +36635,12 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" ] }, { @@ -36496,12 +36648,12 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb" ] }, { @@ -36509,12 +36661,12 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb" ] }, { @@ -36522,11 +36674,11 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" ] }, @@ -36535,12 +36687,12 @@ "kernelrelease": "4.4.0-36-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" ] }, { @@ -36548,12 +36700,12 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" ] }, { @@ -36561,12 +36713,12 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" ] }, { @@ -36574,12 +36726,12 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb" ] }, { @@ -36588,11 +36740,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" ] }, { @@ -36600,12 +36752,12 @@ "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb" ] }, { @@ -36613,12 +36765,12 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" ] }, { @@ -36626,12 +36778,12 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" ] }, { @@ -36639,12 +36791,12 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" ] }, { @@ -36652,12 +36804,12 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb" ] }, { @@ -36665,12 +36817,12 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" ] }, { @@ -36678,12 +36830,12 @@ "kernelrelease": "4.4.0-64-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb" ] }, { @@ -36691,12 +36843,12 @@ "kernelrelease": "4.4.0-66-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb" ] }, { @@ -36704,12 +36856,12 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb" ] }, { @@ -36717,12 +36869,12 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" ] }, { @@ -36730,11 +36882,11 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" ] }, @@ -36743,12 +36895,12 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb" ] }, { @@ -36756,12 +36908,12 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" ] }, { @@ -36769,11 +36921,11 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb" ] }, @@ -36783,11 +36935,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb" ] }, { @@ -36795,12 +36947,12 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb" ] }, { @@ -36808,9 +36960,9 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb" @@ -36821,12 +36973,12 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb" ] }, { @@ -36835,11 +36987,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb" ] }, { @@ -36847,12 +36999,12 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb" ] }, { @@ -36860,12 +37012,12 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" ] }, { @@ -36873,12 +37025,12 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb" ] }, { @@ -36886,12 +37038,12 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb" ] }, { @@ -36900,10 +37052,10 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" ] }, @@ -36912,12 +37064,12 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" ] }, { @@ -36925,12 +37077,12 @@ "kernelrelease": "3.13.0-113", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb" ] }, { @@ -36938,12 +37090,12 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" ] }, { @@ -36951,12 +37103,12 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb" ] }, { @@ -36964,12 +37116,12 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" ] }, { @@ -36977,11 +37129,11 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb" ] }, @@ -36990,12 +37142,12 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" ] }, { @@ -37003,12 +37155,12 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb" ] }, { @@ -37016,12 +37168,12 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" ] }, { @@ -37030,11 +37182,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb" ] }, { @@ -37042,9 +37194,9 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb" ] }, @@ -37054,8 +37206,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb" ] }, @@ -37064,11 +37216,11 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" ] }, @@ -37078,11 +37230,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb" ] }, { @@ -37090,12 +37242,12 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb" ] }, { @@ -37103,11 +37255,11 @@ "kernelrelease": "4.4.0-146-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" ] }, @@ -37116,11 +37268,11 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb" ] }, @@ -37130,8 +37282,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" ] }, @@ -37151,8 +37303,8 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb" ] @@ -37163,8 +37315,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb" ] }, @@ -37173,10 +37325,10 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, { @@ -37184,10 +37336,10 @@ "kernelrelease": "4.15.0-1110-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" ] }, { @@ -37196,8 +37348,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" ] }, @@ -37206,12 +37358,12 @@ "kernelrelease": "4.4.0-206", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" ] }, { @@ -37219,12 +37371,12 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" ] }, { @@ -37232,12 +37384,12 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb" ] }, { @@ -37245,12 +37397,12 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" ] }, { @@ -37258,12 +37410,12 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb" ] }, { @@ -37271,12 +37423,12 @@ "kernelrelease": "4.10.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" ] }, { @@ -37284,12 +37436,12 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" ] }, { @@ -37297,12 +37449,12 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" ] }, { @@ -37311,11 +37463,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" ] }, { @@ -37324,10 +37476,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb" ] }, @@ -37336,12 +37488,12 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" ] }, { @@ -37349,12 +37501,12 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" ] }, { @@ -37362,12 +37514,12 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" ] }, { @@ -37375,12 +37527,12 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" ] }, { @@ -37388,12 +37540,12 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" ] }, { @@ -37401,12 +37553,12 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" ] }, { @@ -37414,12 +37566,12 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb" ] }, { @@ -37427,12 +37579,12 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb" ] }, { @@ -37441,11 +37593,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" ] }, { @@ -37454,8 +37606,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb" ] }, @@ -37464,8 +37616,8 @@ "kernelrelease": "4.11.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" ] @@ -37475,12 +37627,12 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb" ] }, { @@ -37488,12 +37640,12 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb" ] }, { @@ -37501,10 +37653,10 @@ "kernelrelease": "4.13.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb" ] }, { @@ -37512,10 +37664,10 @@ "kernelrelease": "4.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb" ] }, { @@ -37523,10 +37675,10 @@ "kernelrelease": "4.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" ] }, { @@ -37534,10 +37686,10 @@ "kernelrelease": "4.13.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb" ] }, { @@ -37545,9 +37697,9 @@ "kernelrelease": "4.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" ] }, @@ -37556,10 +37708,10 @@ "kernelrelease": "4.13.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" ] }, { @@ -37567,10 +37719,10 @@ "kernelrelease": "4.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb" ] }, { @@ -37578,12 +37730,12 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" ] }, { @@ -37592,11 +37744,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb" ] }, { @@ -37604,12 +37756,12 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb" ] }, { @@ -37617,12 +37769,12 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" ] }, { @@ -37631,11 +37783,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" ] }, { @@ -37643,12 +37795,12 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb" ] }, { @@ -37656,10 +37808,10 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb" ] @@ -37669,12 +37821,12 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" ] }, { @@ -37682,12 +37834,12 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" ] }, { @@ -37695,12 +37847,12 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb" ] }, { @@ -37708,12 +37860,12 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb" ] }, { @@ -37721,12 +37873,12 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb" ] }, { @@ -37734,12 +37886,12 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb" ] }, { @@ -37747,12 +37899,12 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb" ] }, { @@ -37760,12 +37912,12 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb" ] }, { @@ -37774,9 +37926,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" ] }, { @@ -37784,10 +37936,10 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" ] }, { @@ -37795,12 +37947,12 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" ] }, { @@ -37808,10 +37960,10 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" ] }, { @@ -37819,10 +37971,10 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" ] }, { @@ -37852,8 +38004,8 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb" ] @@ -37864,9 +38016,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" ] }, { @@ -37874,10 +38026,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" ] }, { @@ -37885,10 +38037,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" ] }, { @@ -37896,10 +38048,10 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb" ] }, { @@ -37907,10 +38059,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" ] }, { @@ -37918,9 +38070,9 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" ] }, @@ -37929,10 +38081,10 @@ "kernelrelease": "4.15.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" ] }, { @@ -37940,9 +38092,9 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" ] }, @@ -37952,9 +38104,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" ] }, { @@ -37962,10 +38114,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" ] }, { @@ -37973,10 +38125,10 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb" ] }, { @@ -37986,8 +38138,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" ] }, { @@ -37995,10 +38147,10 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" ] }, { @@ -38007,9 +38159,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { @@ -38017,10 +38169,10 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { @@ -38028,10 +38180,10 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb" ] }, { @@ -38039,32 +38191,32 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { @@ -38072,10 +38224,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" ] }, { @@ -38083,9 +38235,9 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb" ] }, @@ -38094,9 +38246,9 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" ] }, @@ -38105,10 +38257,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" ] }, { @@ -38116,10 +38268,10 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb" ] }, { @@ -38127,10 +38279,10 @@ "kernelrelease": "4.15.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -38138,10 +38290,10 @@ "kernelrelease": "4.15.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -38149,10 +38301,10 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb" ] }, { @@ -38160,10 +38312,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb" ] }, { @@ -38171,9 +38323,9 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb" ] }, @@ -38182,9 +38334,9 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" ] }, @@ -38194,9 +38346,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" ] }, { @@ -38204,10 +38356,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" ] }, { @@ -38215,10 +38367,10 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb" ] }, { @@ -38227,9 +38379,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" ] }, { @@ -38237,10 +38389,10 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" ] }, { @@ -38248,10 +38400,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" ] }, { @@ -38259,9 +38411,9 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" ] }, @@ -38270,32 +38422,32 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { @@ -38303,9 +38455,9 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" ] }, @@ -38315,9 +38467,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb" ] }, { @@ -38325,10 +38477,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb" ] }, { @@ -38336,10 +38488,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" ] }, { @@ -38349,8 +38501,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb" ] }, { @@ -38358,10 +38510,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" ] }, { @@ -38370,9 +38522,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb" ] }, { @@ -38380,10 +38532,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" ] }, { @@ -38391,10 +38543,10 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" ] }, { @@ -38402,10 +38554,10 @@ "kernelrelease": "4.15.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" ] }, { @@ -38413,10 +38565,10 @@ "kernelrelease": "4.15.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" ] }, { @@ -38426,8 +38578,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" ] }, { @@ -38435,10 +38587,10 @@ "kernelrelease": "4.15.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" ] }, { @@ -38446,10 +38598,10 @@ "kernelrelease": "4.15.0-1050-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" ] }, { @@ -38457,10 +38609,10 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" ] }, { @@ -38468,10 +38620,10 @@ "kernelrelease": "4.15.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" ] }, { @@ -38479,9 +38631,9 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb" ] }, @@ -38490,10 +38642,10 @@ "kernelrelease": "4.15.0-1052-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" ] }, { @@ -38501,10 +38653,10 @@ "kernelrelease": "4.15.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" ] }, { @@ -38514,8 +38666,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" ] }, { @@ -38523,10 +38675,10 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb" ] }, { @@ -38534,8 +38686,8 @@ "kernelrelease": "4.15.0-1055-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb" ] @@ -38545,10 +38697,10 @@ "kernelrelease": "4.15.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" ] }, { @@ -38556,10 +38708,10 @@ "kernelrelease": "4.15.0-1056-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb" ] }, { @@ -38567,10 +38719,10 @@ "kernelrelease": "4.15.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb" ] }, { @@ -38579,9 +38731,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb" ] }, { @@ -38590,9 +38742,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" ] }, { @@ -38601,9 +38753,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" ] }, { @@ -38611,11 +38763,11 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb" ] }, @@ -38625,9 +38777,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb" ] }, { @@ -38635,10 +38787,10 @@ "kernelrelease": "4.15.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" ] }, { @@ -38646,8 +38798,8 @@ "kernelrelease": "4.15.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" ] @@ -38658,9 +38810,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" ] }, { @@ -38668,10 +38820,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb" ] }, { @@ -38679,10 +38831,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb" ] }, { @@ -38690,10 +38842,10 @@ "kernelrelease": "4.15.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" ] }, { @@ -38701,10 +38853,10 @@ "kernelrelease": "4.15.0-1064-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" ] }, { @@ -38712,9 +38864,9 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb" ] }, @@ -38723,10 +38875,10 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" ] }, { @@ -38735,9 +38887,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb" ] }, { @@ -38745,9 +38897,9 @@ "kernelrelease": "4.15.0-1067-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb" ] }, @@ -38768,9 +38920,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" ] }, { @@ -38778,10 +38930,10 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" ] }, { @@ -38789,12 +38941,12 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb" ] }, { @@ -38803,9 +38955,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb" ] }, { @@ -38813,10 +38965,10 @@ "kernelrelease": "4.15.0-1071-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb" ] }, { @@ -38835,10 +38987,10 @@ "kernelrelease": "4.15.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb" ] }, { @@ -38846,9 +38998,9 @@ "kernelrelease": "4.15.0-1077-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" ] }, @@ -38857,9 +39009,9 @@ "kernelrelease": "4.15.0-1078-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb" ] }, @@ -38868,10 +39020,10 @@ "kernelrelease": "4.15.0-1080-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" ] }, { @@ -38879,10 +39031,10 @@ "kernelrelease": "4.15.0-1081-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" ] }, { @@ -38890,10 +39042,10 @@ "kernelrelease": "4.15.0-1082-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" ] }, { @@ -38901,10 +39053,10 @@ "kernelrelease": "4.15.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" ] }, { @@ -38912,10 +39064,10 @@ "kernelrelease": "4.15.0-1083-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" ] }, { @@ -38934,10 +39086,10 @@ "kernelrelease": "4.15.0-1086-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" ] }, { @@ -38956,10 +39108,10 @@ "kernelrelease": "4.15.0-1089-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" ] }, { @@ -38967,10 +39119,10 @@ "kernelrelease": "4.15.0-1090-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" ] }, { @@ -38978,10 +39130,10 @@ "kernelrelease": "4.15.0-1091-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb" ] }, { @@ -38989,10 +39141,10 @@ "kernelrelease": "4.15.0-1091-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" ] }, { @@ -39000,10 +39152,10 @@ "kernelrelease": "4.15.0-1092-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" ] }, { @@ -39011,9 +39163,9 @@ "kernelrelease": "4.15.0-1092-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" ] }, @@ -39022,10 +39174,10 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" ] }, { @@ -39033,10 +39185,10 @@ "kernelrelease": "4.15.0-1093-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" ] }, { @@ -39044,10 +39196,10 @@ "kernelrelease": "4.15.0-1093-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb" ] }, { @@ -39055,10 +39207,10 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" ] }, { @@ -39066,10 +39218,10 @@ "kernelrelease": "4.15.0-1094-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" ] }, { @@ -39077,10 +39229,10 @@ "kernelrelease": "4.15.0-1095-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" ] }, { @@ -39089,9 +39241,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb" ] }, { @@ -39110,9 +39262,9 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" ] }, @@ -39122,9 +39274,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" ] }, { @@ -39132,10 +39284,10 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" ] }, { @@ -39143,10 +39295,10 @@ "kernelrelease": "4.15.0-1098-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb" ] }, { @@ -39166,9 +39318,9 @@ "target": "ubuntu-aws-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" ] }, { @@ -39177,9 +39329,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb" ] }, { @@ -39187,10 +39339,10 @@ "kernelrelease": "4.15.0-1103-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb" ] }, { @@ -39198,10 +39350,10 @@ "kernelrelease": "4.15.0-1106-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" ] }, { @@ -39209,10 +39361,10 @@ "kernelrelease": "4.15.0-1108-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" ] }, { @@ -39220,10 +39372,10 @@ "kernelrelease": "4.15.0-1109-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb" ] }, { @@ -39231,9 +39383,9 @@ "kernelrelease": "4.15.0-1111-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" ] }, @@ -39243,9 +39395,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb" ] }, { @@ -39253,10 +39405,10 @@ "kernelrelease": "4.15.0-1113-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" ] }, { @@ -39264,12 +39416,12 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb" ] }, { @@ -39277,11 +39429,11 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb" ] }, @@ -39290,12 +39442,12 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb" ] }, { @@ -39304,11 +39456,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb" ] }, { @@ -39316,12 +39468,12 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" ] }, { @@ -39329,12 +39481,12 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb" ] }, { @@ -39342,12 +39494,12 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb" ] }, { @@ -39355,12 +39507,12 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" ] }, { @@ -39368,12 +39520,12 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb" ] }, { @@ -39381,12 +39533,12 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" ] }, { @@ -39394,12 +39546,12 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb" ] }, { @@ -39407,12 +39559,12 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" ] }, { @@ -39421,11 +39573,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb" ] }, { @@ -39433,12 +39585,12 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" ] }, { @@ -39447,10 +39599,10 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb" ] }, @@ -39459,12 +39611,12 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb" ] }, { @@ -39472,12 +39624,12 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb" ] }, { @@ -39485,12 +39637,12 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb" ] }, { @@ -39498,12 +39650,12 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" ] }, { @@ -39511,12 +39663,12 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" ] }, { @@ -39525,11 +39677,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb" ] }, { @@ -39537,12 +39689,12 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" ] }, { @@ -39550,12 +39702,12 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb" ] }, { @@ -39564,10 +39716,10 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" ] }, @@ -39576,12 +39728,12 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb" ] }, { @@ -39589,12 +39741,12 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" ] }, { @@ -39603,11 +39755,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" ] }, { @@ -39615,12 +39767,12 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb" ] }, { @@ -39628,12 +39780,12 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb" ] }, { @@ -39641,12 +39793,12 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" ] }, { @@ -39654,10 +39806,10 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb" ] @@ -39667,12 +39819,12 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb" ] }, { @@ -39680,12 +39832,12 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" ] }, { @@ -39693,12 +39845,12 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" ] }, { @@ -39706,12 +39858,12 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb" ] }, { @@ -39720,10 +39872,10 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb" ] }, @@ -39732,12 +39884,12 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb" ] }, { @@ -39745,12 +39897,12 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" ] }, { @@ -39758,12 +39910,12 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb" ] }, { @@ -39771,11 +39923,11 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb" ] }, @@ -39784,12 +39936,12 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb" ] }, { @@ -39797,12 +39949,12 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" ] }, { @@ -39810,12 +39962,12 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb" ] }, { @@ -39823,12 +39975,12 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" ] }, { @@ -39836,12 +39988,12 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" ] }, { @@ -39849,12 +40001,12 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb" ] }, { @@ -39862,12 +40014,12 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" ] }, { @@ -39876,10 +40028,10 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb" ] }, @@ -39888,12 +40040,12 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb" ] }, { @@ -39901,12 +40053,12 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb" ] }, { @@ -39914,12 +40066,12 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb" ] }, { @@ -39927,11 +40079,11 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" ] }, @@ -39940,10 +40092,10 @@ "kernelrelease": "4.15.0-96-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" ] @@ -39954,11 +40106,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" ] }, { @@ -39966,10 +40118,10 @@ "kernelrelease": "4.4.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb" ] }, { @@ -39977,10 +40129,10 @@ "kernelrelease": "4.4.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" ] }, { @@ -39988,8 +40140,8 @@ "kernelrelease": "4.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" ] @@ -39999,12 +40151,12 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb" ] }, { @@ -40012,10 +40164,10 @@ "kernelrelease": "4.4.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb" ] }, { @@ -40023,9 +40175,9 @@ "kernelrelease": "4.4.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb" ] }, @@ -40034,10 +40186,10 @@ "kernelrelease": "4.4.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" ] }, { @@ -40045,10 +40197,10 @@ "kernelrelease": "4.4.0-1013-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" ] }, { @@ -40057,9 +40209,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" ] }, { @@ -40067,10 +40219,10 @@ "kernelrelease": "4.4.0-1016-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" ] }, { @@ -40079,9 +40231,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb" ] }, { @@ -40089,10 +40241,10 @@ "kernelrelease": "4.4.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb" ] }, { @@ -40100,10 +40252,10 @@ "kernelrelease": "4.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" ] }, { @@ -40112,9 +40264,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb" ] }, { @@ -40122,8 +40274,8 @@ "kernelrelease": "4.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" ] @@ -40133,10 +40285,10 @@ "kernelrelease": "4.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb" ] }, { @@ -40144,10 +40296,10 @@ "kernelrelease": "4.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" ] }, { @@ -40155,8 +40307,8 @@ "kernelrelease": "4.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb" ] @@ -40177,10 +40329,10 @@ "kernelrelease": "4.4.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb" ] }, { @@ -40188,10 +40340,10 @@ "kernelrelease": "4.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb" ] }, { @@ -40199,10 +40351,10 @@ "kernelrelease": "4.4.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb" ] }, { @@ -40210,10 +40362,10 @@ "kernelrelease": "4.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb" ] }, { @@ -40223,8 +40375,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb" ] }, { @@ -40232,12 +40384,12 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" ] }, { @@ -40245,10 +40397,10 @@ "kernelrelease": "4.4.0-1030-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" ] }, { @@ -40256,10 +40408,10 @@ "kernelrelease": "4.4.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb" ] }, { @@ -40267,10 +40419,10 @@ "kernelrelease": "4.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" ] }, { @@ -40278,10 +40430,10 @@ "kernelrelease": "4.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" ] }, { @@ -40289,10 +40441,10 @@ "kernelrelease": "4.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" ] }, { @@ -40300,10 +40452,10 @@ "kernelrelease": "4.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" ] }, { @@ -40311,10 +40463,10 @@ "kernelrelease": "4.4.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" ] }, { @@ -40322,10 +40474,10 @@ "kernelrelease": "4.4.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" ] }, { @@ -40334,9 +40486,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" ] }, { @@ -40344,10 +40496,10 @@ "kernelrelease": "4.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb" ] }, { @@ -40355,10 +40507,10 @@ "kernelrelease": "4.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" ] }, { @@ -40368,8 +40520,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" ] }, { @@ -40377,12 +40529,12 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" ] }, { @@ -40392,8 +40544,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" ] }, { @@ -40401,10 +40553,10 @@ "kernelrelease": "4.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb" ] }, { @@ -40412,10 +40564,10 @@ "kernelrelease": "4.4.0-1041-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb" ] }, { @@ -40423,10 +40575,10 @@ "kernelrelease": "4.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb" ] }, { @@ -40434,10 +40586,10 @@ "kernelrelease": "4.4.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb" ] }, { @@ -40445,9 +40597,9 @@ "kernelrelease": "4.4.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" ] }, @@ -40456,9 +40608,9 @@ "kernelrelease": "4.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb" ] }, @@ -40467,10 +40619,10 @@ "kernelrelease": "4.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb" ] }, { @@ -40479,9 +40631,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" ] }, { @@ -40490,9 +40642,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" ] }, { @@ -40500,10 +40652,10 @@ "kernelrelease": "4.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" ] }, { @@ -40511,10 +40663,10 @@ "kernelrelease": "4.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" ] }, { @@ -40522,10 +40674,10 @@ "kernelrelease": "4.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" ] }, { @@ -40533,9 +40685,9 @@ "kernelrelease": "4.4.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" ] }, @@ -40544,10 +40696,10 @@ "kernelrelease": "4.4.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" ] }, { @@ -40566,9 +40718,9 @@ "kernelrelease": "4.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb" ] }, @@ -40577,10 +40729,10 @@ "kernelrelease": "4.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" ] }, { @@ -40589,9 +40741,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" ] }, { @@ -40599,10 +40751,10 @@ "kernelrelease": "4.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" ] }, { @@ -40611,8 +40763,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" ] }, @@ -40622,9 +40774,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb" ] }, { @@ -40632,10 +40784,10 @@ "kernelrelease": "4.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" ] }, { @@ -40643,10 +40795,10 @@ "kernelrelease": "4.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb" ] }, { @@ -40654,10 +40806,10 @@ "kernelrelease": "4.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb" ] }, { @@ -40665,9 +40817,9 @@ "kernelrelease": "4.4.0-1062-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" ] }, @@ -40676,10 +40828,10 @@ "kernelrelease": "4.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" ] }, { @@ -40688,9 +40840,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb" ] }, { @@ -40698,10 +40850,10 @@ "kernelrelease": "4.4.0-1064-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" ] }, { @@ -40709,9 +40861,9 @@ "kernelrelease": "4.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb" ] }, @@ -40721,9 +40873,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" ] }, { @@ -40732,9 +40884,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" ] }, { @@ -40743,9 +40895,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" ] }, { @@ -40753,10 +40905,10 @@ "kernelrelease": "4.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb" ] }, { @@ -40764,10 +40916,10 @@ "kernelrelease": "4.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb" ] }, { @@ -40775,9 +40927,9 @@ "kernelrelease": "4.4.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb" ] }, @@ -40786,10 +40938,10 @@ "kernelrelease": "4.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb" ] }, { @@ -40798,8 +40950,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb" ] }, @@ -40808,9 +40960,9 @@ "kernelrelease": "4.4.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb" ] }, @@ -40819,10 +40971,10 @@ "kernelrelease": "4.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" ] }, { @@ -40831,9 +40983,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" ] }, { @@ -40841,10 +40993,10 @@ "kernelrelease": "4.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" ] }, { @@ -40852,10 +41004,10 @@ "kernelrelease": "4.4.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" ] }, { @@ -40863,10 +41015,10 @@ "kernelrelease": "4.4.0-1076-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" ] }, { @@ -40874,10 +41026,10 @@ "kernelrelease": "4.4.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" ] }, { @@ -40885,10 +41037,10 @@ "kernelrelease": "4.4.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb" ] }, { @@ -40896,10 +41048,10 @@ "kernelrelease": "4.4.0-1078-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" ] }, { @@ -40908,9 +41060,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" ] }, { @@ -40918,9 +41070,9 @@ "kernelrelease": "4.4.0-1079-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" ] }, @@ -40929,12 +41081,12 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb" ] }, { @@ -40942,10 +41094,10 @@ "kernelrelease": "4.4.0-1080-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" ] }, { @@ -40954,9 +41106,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb" ] }, { @@ -40964,10 +41116,10 @@ "kernelrelease": "4.4.0-1083-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" ] }, { @@ -40976,9 +41128,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" ] }, { @@ -40986,10 +41138,10 @@ "kernelrelease": "4.4.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" ] }, { @@ -40998,8 +41150,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" ] }, @@ -41008,9 +41160,9 @@ "kernelrelease": "4.4.0-1085-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" ] }, @@ -41019,10 +41171,10 @@ "kernelrelease": "4.4.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb" ] }, { @@ -41030,10 +41182,10 @@ "kernelrelease": "4.4.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" ] }, { @@ -41041,10 +41193,10 @@ "kernelrelease": "4.4.0-1088-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb" ] }, { @@ -41052,10 +41204,10 @@ "kernelrelease": "4.4.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" ] }, { @@ -41063,8 +41215,8 @@ "kernelrelease": "4.4.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" ] @@ -41075,11 +41227,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb" ] }, { @@ -41087,10 +41239,10 @@ "kernelrelease": "4.4.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb" ] }, { @@ -41098,10 +41250,10 @@ "kernelrelease": "4.4.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb" ] }, { @@ -41109,10 +41261,10 @@ "kernelrelease": "4.4.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb" ] }, { @@ -41120,10 +41272,10 @@ "kernelrelease": "4.4.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" ] }, { @@ -41131,10 +41283,10 @@ "kernelrelease": "4.4.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb" ] }, { @@ -41142,10 +41294,10 @@ "kernelrelease": "4.4.0-1093-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" ] }, { @@ -41153,10 +41305,10 @@ "kernelrelease": "4.4.0-1094-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" ] }, { @@ -41164,9 +41316,9 @@ "kernelrelease": "4.4.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" ] }, @@ -41175,10 +41327,10 @@ "kernelrelease": "4.4.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" ] }, { @@ -41187,9 +41339,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" ] }, { @@ -41198,8 +41350,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" ] }, @@ -41208,10 +41360,10 @@ "kernelrelease": "4.4.0-1100-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" ] }, { @@ -41220,8 +41372,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb" ] }, @@ -41230,10 +41382,10 @@ "kernelrelease": "4.4.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" ] }, { @@ -41241,10 +41393,10 @@ "kernelrelease": "4.4.0-1104-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" ] }, { @@ -41252,10 +41404,10 @@ "kernelrelease": "4.4.0-1105-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" ] }, { @@ -41274,10 +41426,10 @@ "kernelrelease": "4.4.0-1107-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" ] }, { @@ -41286,8 +41438,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" ] }, @@ -41296,10 +41448,10 @@ "kernelrelease": "4.4.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" ] }, { @@ -41307,10 +41459,10 @@ "kernelrelease": "4.4.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" ] }, { @@ -41319,9 +41471,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb" ] }, { @@ -41329,10 +41481,10 @@ "kernelrelease": "4.4.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb" ] }, { @@ -41341,8 +41493,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb" ] }, @@ -41351,9 +41503,9 @@ "kernelrelease": "4.4.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" ] }, @@ -41362,10 +41514,10 @@ "kernelrelease": "4.4.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" ] }, { @@ -41373,10 +41525,10 @@ "kernelrelease": "4.4.0-1119-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb" ] }, { @@ -41384,12 +41536,12 @@ "kernelrelease": "4.4.0-112", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" ] }, { @@ -41397,10 +41549,10 @@ "kernelrelease": "4.4.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" ] }, { @@ -41408,10 +41560,10 @@ "kernelrelease": "4.4.0-1122-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" ] }, { @@ -41419,9 +41571,9 @@ "kernelrelease": "4.4.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" ] }, @@ -41441,10 +41593,10 @@ "kernelrelease": "4.4.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" ] }, { @@ -41453,9 +41605,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" ] }, { @@ -41464,9 +41616,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb" ] }, { @@ -41474,12 +41626,12 @@ "kernelrelease": "4.4.0-116", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb" ] }, { @@ -41487,12 +41639,12 @@ "kernelrelease": "4.4.0-119", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb" ] }, { @@ -41500,12 +41652,12 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb" ] }, { @@ -41513,12 +41665,12 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb" ] }, { @@ -41527,11 +41679,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" ] }, { @@ -41539,12 +41691,12 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" ] }, { @@ -41552,12 +41704,12 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb" ] }, { @@ -41566,11 +41718,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" ] }, { @@ -41578,12 +41730,12 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb" ] }, { @@ -41591,11 +41743,11 @@ "kernelrelease": "4.4.0-137", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb" ] }, @@ -41605,10 +41757,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb" ] }, @@ -41617,12 +41769,12 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" ] }, { @@ -41631,9 +41783,9 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb" ] @@ -41643,12 +41795,12 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb" ] }, { @@ -41656,11 +41808,11 @@ "kernelrelease": "4.4.0-143", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" ] }, @@ -41670,11 +41822,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" ] }, { @@ -41683,11 +41835,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb" ] }, { @@ -41695,12 +41847,12 @@ "kernelrelease": "4.4.0-150", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" ] }, { @@ -41708,11 +41860,11 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb" ] }, @@ -41721,12 +41873,12 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" ] }, { @@ -41734,12 +41886,12 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb" ] }, { @@ -41747,12 +41899,12 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb" ] }, { @@ -41760,12 +41912,12 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" ] }, { @@ -41774,11 +41926,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" ] }, { @@ -41786,12 +41938,12 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb" ] }, { @@ -41799,12 +41951,12 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb" ] }, { @@ -41812,12 +41964,12 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" ] }, { @@ -41825,12 +41977,12 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" ] }, { @@ -41838,12 +41990,12 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" ] }, { @@ -41851,12 +42003,12 @@ "kernelrelease": "4.4.0-171", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb" ] }, { @@ -41864,12 +42016,12 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" ] }, { @@ -41877,12 +42029,12 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb" ] }, { @@ -41891,11 +42043,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb" ] }, { @@ -41903,11 +42055,11 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" ] }, @@ -41916,12 +42068,12 @@ "kernelrelease": "4.4.0-178", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" ] }, { @@ -41929,12 +42081,12 @@ "kernelrelease": "4.4.0-179", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" ] }, { @@ -41942,12 +42094,12 @@ "kernelrelease": "4.4.0-184", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" ] }, { @@ -41955,12 +42107,12 @@ "kernelrelease": "4.4.0-185", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb" ] }, { @@ -41968,12 +42120,12 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" ] }, { @@ -41981,12 +42133,12 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb" ] }, { @@ -41994,12 +42146,12 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb" ] }, { @@ -42010,9 +42162,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" ] }, { @@ -42020,11 +42172,11 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb" ] }, @@ -42033,12 +42185,12 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb" ] }, { @@ -42047,11 +42199,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" ] }, { @@ -42059,11 +42211,11 @@ "kernelrelease": "4.4.0-198", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" ] }, @@ -42072,11 +42224,11 @@ "kernelrelease": "4.4.0-200", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb" ] }, @@ -42085,12 +42237,12 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" ] }, { @@ -42098,12 +42250,12 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" ] }, { @@ -42112,10 +42264,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" ] }, @@ -42124,12 +42276,12 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" ] }, { @@ -42137,12 +42289,12 @@ "kernelrelease": "4.4.0-209", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb" ] }, { @@ -42150,12 +42302,12 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb" ] }, { @@ -42163,12 +42315,12 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" ] }, { @@ -42176,12 +42328,12 @@ "kernelrelease": "4.4.0-24", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb" ] }, { @@ -42189,12 +42341,12 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb" ] }, { @@ -42203,10 +42355,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb" ] }, @@ -42215,12 +42367,12 @@ "kernelrelease": "4.4.0-34", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" ] }, { @@ -42228,12 +42380,12 @@ "kernelrelease": "4.4.0-36", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" ] }, { @@ -42241,12 +42393,12 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" ] }, { @@ -42254,12 +42406,12 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb" ] }, { @@ -42267,12 +42419,12 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" ] }, { @@ -42280,11 +42432,11 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb" ] }, @@ -42293,12 +42445,12 @@ "kernelrelease": "4.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" ] }, { @@ -42306,10 +42458,10 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" ] @@ -42319,9 +42471,9 @@ "kernelrelease": "4.4.0-57", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" @@ -42332,11 +42484,11 @@ "kernelrelease": "4.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" ] }, @@ -42347,10 +42499,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb" ] }, { @@ -42359,11 +42511,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb" ] }, { @@ -42371,12 +42523,12 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb" ] }, { @@ -42385,11 +42537,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" ] }, { @@ -42397,12 +42549,12 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" ] }, { @@ -42411,11 +42563,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb" ] }, { @@ -42425,10 +42577,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" ] }, { @@ -42436,12 +42588,12 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb" ] }, { @@ -42449,12 +42601,12 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" ] }, { @@ -42463,11 +42615,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" ] }, { @@ -42476,11 +42628,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" ] }, { @@ -42489,11 +42641,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb" ] }, { @@ -42501,12 +42653,12 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb" ] }, { @@ -42514,12 +42666,12 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb" ] }, { @@ -42527,9 +42679,9 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" @@ -42540,12 +42692,12 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb" ] }, { @@ -42553,12 +42705,12 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb" ] }, { @@ -42566,12 +42718,12 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" ] }, { @@ -42579,12 +42731,12 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" ] }, { @@ -42592,12 +42744,12 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb" ] }, { @@ -42605,12 +42757,12 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" ] }, { @@ -42618,12 +42770,12 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb" ] }, { @@ -42634,8 +42786,8 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" ] }, @@ -42645,11 +42797,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" ] }, { @@ -42657,12 +42809,12 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb" ] }, { @@ -42670,11 +42822,11 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb" ] }, @@ -42683,11 +42835,11 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" ] }, @@ -42696,11 +42848,11 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb" ] }, @@ -42709,11 +42861,11 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" ] }, @@ -42722,11 +42874,11 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" ] }, @@ -42735,12 +42887,12 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb" ] }, { @@ -42749,11 +42901,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb" ] }, { @@ -42761,10 +42913,10 @@ "kernelrelease": "4.11.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb" ] }, { @@ -42772,10 +42924,10 @@ "kernelrelease": "4.11.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" ] }, { @@ -42783,10 +42935,10 @@ "kernelrelease": "4.11.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" ] }, { @@ -42794,10 +42946,10 @@ "kernelrelease": "4.11.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" ] }, { @@ -42805,10 +42957,10 @@ "kernelrelease": "4.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb" ] }, { @@ -42817,9 +42969,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb" ] }, { @@ -42827,10 +42979,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" ] }, { @@ -42838,10 +42990,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" ] }, { @@ -42850,9 +43002,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb" ] }, { @@ -42860,10 +43012,10 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" ] }, { @@ -42871,10 +43023,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" ] }, { @@ -42882,12 +43034,12 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb" ] }, { @@ -42895,12 +43047,12 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb" ] }, { @@ -42910,8 +43062,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb" ] }, { @@ -42919,10 +43071,10 @@ "kernelrelease": "4.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" ] }, { @@ -42930,9 +43082,9 @@ "kernelrelease": "4.4.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb" ] }, @@ -42942,9 +43094,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" ] }, { @@ -42952,10 +43104,10 @@ "kernelrelease": "4.4.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" ] }, { @@ -42963,10 +43115,10 @@ "kernelrelease": "4.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb" ] }, { @@ -42974,10 +43126,10 @@ "kernelrelease": "4.4.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb" ] }, { @@ -42985,10 +43137,10 @@ "kernelrelease": "4.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb" ] }, { @@ -42996,9 +43148,9 @@ "kernelrelease": "4.4.0-1081-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" ] }, @@ -43007,12 +43159,12 @@ "kernelrelease": "4.4.0-122", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb" ] }, { @@ -43022,10 +43174,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb" ] }, { @@ -43034,10 +43186,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb" ] }, @@ -43046,12 +43198,12 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" ] }, { @@ -43059,12 +43211,12 @@ "kernelrelease": "4.4.0-146", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb" ] }, { @@ -43075,9 +43227,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb" ] }, { @@ -43085,12 +43237,12 @@ "kernelrelease": "4.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" ] }, { @@ -43099,11 +43251,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" ] }, { @@ -43111,11 +43263,11 @@ "kernelrelease": "4.8.0-44-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb" ] }, @@ -43124,12 +43276,12 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" ] }, { @@ -43137,12 +43289,12 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" ] }, { @@ -43150,12 +43302,12 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" ] } ], @@ -43800,6 +43952,14 @@ "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.2/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3139.2.3", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.3/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "1722.2.0", @@ -44528,6 +44688,14 @@ "https://beta.release.flatcar-linux.net/amd64-usr/3227.1.0/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3227.1.1", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3227.1.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "1745.0.0", @@ -45343,6 +45511,14 @@ "headers": [ "https://alpha.release.flatcar-linux.net/amd64-usr/3255.0.0/flatcar_developer_container.bin.bz2" ] + }, + { + "kernelversion": 1, + "kernelrelease": "3277.0.0", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3277.0.0/flatcar_developer_container.bin.bz2" + ] } ] } From 57f0a318711182b39b4bcf38b0412592b3c81629 Mon Sep 17 00:00:00 2001 From: poiana <51138685+poiana@users.noreply.github.com> Date: Mon, 4 Jul 2022 08:23:09 +0000 Subject: [PATCH 122/259] update(kernels): update kernel json lists. Signed-off-by: poiana <51138685+poiana@users.noreply.github.com> --- kernels/aarch64/list.json | 3952 +++++---- kernels/x86_64/list.json | 16693 ++++++++++++++++++------------------ 2 files changed, 10593 insertions(+), 10052 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 7ada52e..7b28341 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -936,7 +936,7 @@ "kernelrelease": "5.10.75-82.359.amzn2022.aarch64", "target": "amazonlinux2022", "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/db05fcc4b022af5ce6a038ac10b7ed311f7611a5a0c69c9df6233bf2d6bc6c73/aarch64/../../../../blobstore/440a6228082d68b5e322f6a4d372b09207a8f4b22eb133cf08d3bbcd2581cd5d/kernel-devel-5.10.75-82.359.amzn2022.aarch64.rpm" + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/440a6228082d68b5e322f6a4d372b09207a8f4b22eb133cf08d3bbcd2581cd5d/kernel-devel-5.10.75-82.359.amzn2022.aarch64.rpm" ] }, { @@ -1161,18 +1161,18 @@ }, { "kernelversion": 1, - "kernelrelease": "5.18.5-100.fc35.aarch64", + "kernelrelease": "5.18.9-100.fc35.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.18.5-100.fc35.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.18.9-100.fc35.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.18.6-200.fc36.aarch64", + "kernelrelease": "5.18.9-200.fc36.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.18.6-200.fc36.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.18.9-200.fc36.aarch64.rpm" ] } ], @@ -1956,6 +1956,22 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-2.ph3.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-3.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-3.ph3.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-4.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-4.ph3.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.29-1.ph3.aarch64", @@ -2185,7 +2201,7 @@ "kernelrelease": "1.4.0-4.ph4.aarch64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" ] }, { @@ -2257,7 +2273,15 @@ "kernelrelease": "5.10.118-2.ph4.aarch64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.118-2.ph4.aarch64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-2.ph4.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-3.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.118-3.ph4.aarch64.rpm" ] }, { @@ -2563,12 +2587,12 @@ "kernelrelease": "5.18.5-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-arm64_5.18.5-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-arm64_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-arm64_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-arm64_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb" ] }, { @@ -2576,25 +2600,12 @@ "kernelrelease": "5.10.120-1-arm64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-arm64_5.10.120-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-arm64_5.10.120-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-arm64_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.16.12-1~bpo11+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-arm64_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.12-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-arm64_5.16.12-1~bpo11+1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb" ] }, { @@ -2604,10 +2615,10 @@ "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-arm64_5.18.2-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-arm64_5.18.2-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-arm64_5.18.2-1~bpo11+1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-arm64_5.18.2-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-arm64_5.18.2-1~bpo11+1_arm64.deb" ] }, { @@ -2615,12 +2626,25 @@ "kernelrelease": "5.10.113-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.127-1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-cloud-arm64_5.10.127-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-common_5.10.127-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-rt-arm64_5.10.127-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-arm64_5.10.127-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-common-rt_5.10.127-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb" ] }, { @@ -2629,11 +2653,11 @@ "target": "debian", "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb" ] }, { @@ -2641,37 +2665,24 @@ "kernelrelease": "5.10.106-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb" ] }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-1~bpo10+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-arm64_5.10.103-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb" - ] - }, { "kernelversion": 1, "kernelrelease": "4.19.208-1-arm64", "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb" ] }, { @@ -2680,10 +2691,23 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.19~rc4-1~exp1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-rt-arm64_5.19~rc4-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-common-rt_5.19~rc4-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-arm64_5.19~rc4-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.19_5.19~rc4-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-cloud-arm64_5.19~rc4-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-common_5.19~rc4-1~exp1_all.deb" ] }, { @@ -2692,10 +2716,10 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb" ] }, { @@ -2703,9 +2727,9 @@ "kernelrelease": "4.9.228-1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb" ] }, { @@ -2713,11 +2737,11 @@ "kernelrelease": "5.10.103-1-arm64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb" ] }, @@ -2728,9 +2752,21 @@ "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.249-2-arm64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-rt-arm64_4.19.249-2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common_4.19.249-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common-rt_4.19.249-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-arm64_4.19.249-2_arm64.deb" ] }, { @@ -2738,9 +2774,19 @@ "kernelrelease": "4.9.303-1-arm64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.9.320-2-arm64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-arm64_4.9.320-2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common_4.9.320-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb" ] }, { @@ -2748,11 +2794,11 @@ "kernelrelease": "4.19.232-1~deb9u1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb" ] } ], @@ -2789,8 +2835,8 @@ "kernelrelease": "4.15.0-1119-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb" ] }, { @@ -2798,8 +2844,8 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" ] }, { @@ -2807,8 +2853,8 @@ "kernelrelease": "4.15.0-1120-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" ] }, { @@ -2843,26 +2889,26 @@ "kernelrelease": "4.15.0-1123-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb" ] }, { "kernelversion": "133", - "kernelrelease": "4.15.0-1124-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1124-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" ] }, { "kernelversion": "133", - "kernelrelease": "4.15.0-1124-snapdragon", - "target": "ubuntu-snapdragon", + "kernelrelease": "4.15.0-1124-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" ] }, { @@ -2870,8 +2916,8 @@ "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" ] }, { @@ -2883,6 +2929,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb" ] }, + { + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + ] + }, { "kernelversion": "136", "kernelrelease": "4.15.0-1127-snapdragon", @@ -2893,21 +2948,21 @@ ] }, { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-aws", + "kernelversion": "137", + "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb" ] }, { - "kernelversion": "137", - "kernelrelease": "4.15.0-1128-aws", - "target": "ubuntu-aws", + "kernelversion": "138", + "kernelrelease": "4.15.0-1129-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb" ] }, { @@ -2920,12 +2975,30 @@ ] }, { - "kernelversion": "138", - "kernelrelease": "4.15.0-1129-snapdragon", + "kernelversion": "143", + "kernelrelease": "4.15.0-1133-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1133_4.15.0-1133.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1133-snapdragon_4.15.0-1133.143_arm64.deb" + ] + }, + { + "kernelversion": "143", + "kernelrelease": "4.15.0-1133-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_arm64.deb" + ] + }, + { + "kernelversion": "148", + "kernelrelease": "4.15.0-1137-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb" ] }, { @@ -2933,8 +3006,17 @@ "kernelrelease": "4.15.0-188", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb" + ] + }, + { + "kernelversion": "200", + "kernelrelease": "4.15.0-189", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_arm64.deb" ] }, { @@ -2969,8 +3051,8 @@ "kernelrelease": "5.4.0-1058-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb" ] }, { @@ -2978,8 +3060,8 @@ "kernelrelease": "5.4.0-106-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" ] }, { @@ -2987,8 +3069,8 @@ "kernelrelease": "5.4.0-1062-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" ] }, { @@ -2996,8 +3078,8 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" ] }, { @@ -3005,8 +3087,8 @@ "kernelrelease": "5.4.0-1064-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" ] }, { @@ -3014,8 +3096,8 @@ "kernelrelease": "5.4.0-1066-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb" ] }, { @@ -3050,8 +3132,8 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb" ] }, { @@ -3059,8 +3141,8 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" ] }, { @@ -3077,8 +3159,8 @@ "kernelrelease": "5.4.0-1072-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb" ] }, { @@ -3101,20 +3183,20 @@ }, { "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1075-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb" ] }, { "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1075-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb" ] }, { @@ -3122,8 +3204,8 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb" ] }, { @@ -3131,8 +3213,8 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" ] }, { @@ -3149,8 +3231,26 @@ "kernelrelease": "5.4.0-108-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "88~18.04.1", + "kernelrelease": "5.4.0-1081-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-1086-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_arm64.deb" ] }, { @@ -3158,8 +3258,8 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb" ] }, { @@ -3167,8 +3267,8 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_arm64.deb" ] }, { @@ -3176,8 +3276,17 @@ "kernelrelease": "5.4.0-121-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "138~18.04.1", + "kernelrelease": "5.4.0-122-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_arm64.deb" ] }, { @@ -3185,8 +3294,8 @@ "kernelrelease": "5.4.0-91-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" ] }, { @@ -3236,20 +3345,20 @@ }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1031-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1031-raspi2", + "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "4.15.0-1031-raspi2", - "target": "ubuntu-raspi2", + "kernelrelease": "4.15.0-1031-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb" ] }, { @@ -3257,8 +3366,8 @@ "kernelrelease": "4.15.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" ] }, { @@ -3266,8 +3375,8 @@ "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { @@ -3284,8 +3393,8 @@ "kernelrelease": "4.15.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" ] }, { @@ -3329,8 +3438,8 @@ "kernelrelease": "4.15.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { @@ -3338,8 +3447,8 @@ "kernelrelease": "4.15.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb" ] }, { @@ -3347,8 +3456,8 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" ] }, { @@ -3365,8 +3474,8 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" ] }, { @@ -3374,8 +3483,8 @@ "kernelrelease": "4.15.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" ] }, { @@ -3392,8 +3501,8 @@ "kernelrelease": "4.15.0-1053-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb" ] }, { @@ -3401,8 +3510,8 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb" ] }, { @@ -3419,8 +3528,8 @@ "kernelrelease": "4.15.0-1055-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" ] }, { @@ -3437,8 +3546,8 @@ "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" ] }, { @@ -3455,8 +3564,8 @@ "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" ] }, { @@ -3464,8 +3573,8 @@ "kernelrelease": "4.15.0-1058-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb" ] }, { @@ -3482,8 +3591,8 @@ "kernelrelease": "4.15.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" ] }, { @@ -3500,8 +3609,8 @@ "kernelrelease": "4.15.0-1062-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb" ] }, { @@ -3518,8 +3627,8 @@ "kernelrelease": "4.15.0-1064-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" ] }, { @@ -3527,8 +3636,8 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, { @@ -3545,8 +3654,8 @@ "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" ] }, { @@ -3554,8 +3663,8 @@ "kernelrelease": "4.15.0-1066-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" ] }, { @@ -3608,8 +3717,8 @@ "kernelrelease": "4.15.0-1072-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb" ] }, { @@ -3617,8 +3726,8 @@ "kernelrelease": "4.15.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" ] }, { @@ -3653,8 +3762,8 @@ "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb" ] }, { @@ -3671,8 +3780,8 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" ] }, { @@ -3680,8 +3789,8 @@ "kernelrelease": "4.15.0-1079-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb" ] }, { @@ -3689,8 +3798,8 @@ "kernelrelease": "4.15.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb" ] }, { @@ -3707,8 +3816,8 @@ "kernelrelease": "4.15.0-1080-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb" ] }, { @@ -3725,8 +3834,8 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" ] }, { @@ -3734,8 +3843,8 @@ "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb" ] }, { @@ -3743,8 +3852,8 @@ "kernelrelease": "4.15.0-1083-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb" ] }, { @@ -3752,8 +3861,8 @@ "kernelrelease": "4.15.0-1084-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb" ] }, { @@ -3761,8 +3870,8 @@ "kernelrelease": "4.15.0-1086-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb" ] }, { @@ -3770,8 +3879,8 @@ "kernelrelease": "4.15.0-1086-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb" ] }, { @@ -3779,8 +3888,8 @@ "kernelrelease": "4.15.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb" ] }, { @@ -3788,8 +3897,8 @@ "kernelrelease": "4.15.0-1087-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" ] }, { @@ -3806,8 +3915,8 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" ] }, { @@ -3815,8 +3924,8 @@ "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { @@ -3824,8 +3933,8 @@ "kernelrelease": "4.15.0-1090-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb" ] }, { @@ -3833,8 +3942,8 @@ "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" ] }, { @@ -3842,8 +3951,8 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb" ] }, { @@ -3860,8 +3969,8 @@ "kernelrelease": "4.15.0-1093-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb" ] }, { @@ -3869,8 +3978,8 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb" ] }, { @@ -3887,8 +3996,8 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb" ] }, { @@ -3914,8 +4023,8 @@ "kernelrelease": "4.15.0-1096-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb" ] }, { @@ -3959,8 +4068,8 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { @@ -3977,8 +4086,8 @@ "kernelrelease": "4.15.0-1100-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb" ] }, { @@ -3995,8 +4104,8 @@ "kernelrelease": "4.15.0-1101-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb" ] }, { @@ -4004,8 +4113,8 @@ "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" ] }, { @@ -4022,8 +4131,8 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb" ] }, { @@ -4031,8 +4140,8 @@ "kernelrelease": "4.15.0-1103-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb" ] }, { @@ -4040,8 +4149,8 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" ] }, { @@ -4049,8 +4158,8 @@ "kernelrelease": "4.15.0-1106-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb" ] }, { @@ -4058,8 +4167,8 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, { @@ -4085,8 +4194,8 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb" ] }, { @@ -4094,8 +4203,8 @@ "kernelrelease": "4.15.0-1110-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" ] }, { @@ -4103,8 +4212,8 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" ] }, { @@ -4139,8 +4248,8 @@ "kernelrelease": "4.15.0-1113-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb" ] }, { @@ -4148,8 +4257,8 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" ] }, { @@ -4157,8 +4266,8 @@ "kernelrelease": "4.15.0-1114-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb" ] }, { @@ -4175,8 +4284,8 @@ "kernelrelease": "4.15.0-1115-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb" ] }, { @@ -4184,8 +4293,8 @@ "kernelrelease": "4.15.0-1116-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb" ] }, { @@ -4202,8 +4311,8 @@ "kernelrelease": "4.15.0-1118-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb" ] }, { @@ -4211,8 +4320,8 @@ "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" ] }, { @@ -4229,8 +4338,8 @@ "kernelrelease": "4.15.0-1122-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb" ] }, { @@ -4269,22 +4378,13 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1132_4.15.0-1132.142_arm64.deb" ] }, - { - "kernelversion": "143", - "kernelrelease": "4.15.0-1133-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_arm64.deb" - ] - }, { "kernelversion": "147", "kernelrelease": "4.15.0-1136-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" ] }, { @@ -4301,8 +4401,8 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb" ] }, { @@ -4310,8 +4410,8 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" ] }, { @@ -4337,8 +4437,8 @@ "kernelrelease": "4.15.0-123", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" ] }, { @@ -4346,8 +4446,8 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" ] }, { @@ -4400,8 +4500,8 @@ "kernelrelease": "4.15.0-137", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" ] }, { @@ -4418,8 +4518,8 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb" ] }, { @@ -4463,8 +4563,8 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, { @@ -4472,8 +4572,8 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" ] }, { @@ -4490,8 +4590,8 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" ] }, { @@ -4499,8 +4599,8 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb" ] }, { @@ -4562,8 +4662,8 @@ "kernelrelease": "4.15.0-167", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" ] }, { @@ -4571,8 +4671,8 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" ] }, { @@ -4589,8 +4689,8 @@ "kernelrelease": "4.15.0-173", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" ] }, { @@ -4598,8 +4698,8 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb" ] }, { @@ -4607,8 +4707,8 @@ "kernelrelease": "4.15.0-176", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb" ] }, { @@ -4616,8 +4716,8 @@ "kernelrelease": "4.15.0-177", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" ] }, { @@ -4652,9 +4752,9 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb" ] }, { @@ -4662,8 +4762,8 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" ] }, @@ -4672,8 +4772,8 @@ "kernelrelease": "4.15.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb" ] }, @@ -4682,9 +4782,9 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" ] }, { @@ -4692,9 +4792,9 @@ "kernelrelease": "4.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" ] }, { @@ -4702,8 +4802,8 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" ] }, @@ -4713,8 +4813,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" ] }, { @@ -4732,8 +4832,8 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb" ] }, @@ -4742,9 +4842,9 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb" ] }, { @@ -4762,9 +4862,9 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" ] }, { @@ -4782,8 +4882,8 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb" ] }, @@ -4792,8 +4892,8 @@ "kernelrelease": "4.15.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb" ] }, @@ -4812,8 +4912,8 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb" ] }, { @@ -4821,8 +4921,8 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" ] }, { @@ -4866,8 +4966,8 @@ "kernelrelease": "4.15.0-60", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb" ] }, { @@ -4929,8 +5029,8 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" ] }, { @@ -4938,8 +5038,8 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb" ] }, { @@ -4956,8 +5056,8 @@ "kernelrelease": "4.15.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" ] }, { @@ -4974,8 +5074,8 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb" ] }, { @@ -5003,8 +5103,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb" ] }, { @@ -5012,9 +5112,9 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" ] }, { @@ -5022,9 +5122,9 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb" ] }, { @@ -5032,9 +5132,9 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb" ] }, { @@ -5043,8 +5143,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" ] }, { @@ -5052,9 +5152,9 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb" ] }, { @@ -5063,8 +5163,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" ] }, { @@ -5082,9 +5182,9 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb" ] }, { @@ -5092,8 +5192,8 @@ "kernelrelease": "5.0.0-1021-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb" ] }, { @@ -5101,8 +5201,8 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" ] }, { @@ -5173,8 +5273,8 @@ "kernelrelease": "5.0.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" ] }, { @@ -5182,8 +5282,8 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" ] }, { @@ -5191,8 +5291,8 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb" ] }, { @@ -5227,8 +5327,8 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" ] }, { @@ -5254,8 +5354,8 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb" ] }, { @@ -5263,8 +5363,8 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb" ] }, { @@ -5317,8 +5417,8 @@ "kernelrelease": "5.3.0-1017-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" ] }, { @@ -5353,8 +5453,8 @@ "kernelrelease": "5.3.0-1030-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb" ] }, { @@ -5362,8 +5462,8 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" ] }, { @@ -5371,8 +5471,8 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb" ] }, { @@ -5407,8 +5507,8 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" ] }, { @@ -5416,8 +5516,8 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb" ] }, { @@ -5425,8 +5525,8 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" ] }, { @@ -5443,8 +5543,8 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" ] }, { @@ -5452,8 +5552,8 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" ] }, { @@ -5470,8 +5570,8 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" ] }, { @@ -5515,8 +5615,8 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb" ] }, { @@ -5533,8 +5633,8 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb" ] }, { @@ -5560,8 +5660,8 @@ "kernelrelease": "5.4.0-1024-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" ] }, { @@ -5587,8 +5687,8 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" ] }, { @@ -5596,8 +5696,8 @@ "kernelrelease": "5.4.0-1032-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb" ] }, { @@ -5605,8 +5705,8 @@ "kernelrelease": "5.4.0-1034-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb" ] }, { @@ -5614,8 +5714,8 @@ "kernelrelease": "5.4.0-1035-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb" ] }, { @@ -5623,8 +5723,8 @@ "kernelrelease": "5.4.0-1037-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb" ] }, { @@ -5641,8 +5741,8 @@ "kernelrelease": "5.4.0-1039-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb" ] }, { @@ -5650,8 +5750,8 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb" ] }, { @@ -5668,8 +5768,8 @@ "kernelrelease": "5.4.0-1043-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb" ] }, { @@ -5677,8 +5777,8 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" ] }, { @@ -5722,8 +5822,8 @@ "kernelrelease": "5.4.0-1049-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" ] }, { @@ -5731,8 +5831,8 @@ "kernelrelease": "5.4.0-1051-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" ] }, { @@ -5749,8 +5849,8 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" ] }, { @@ -5758,8 +5858,8 @@ "kernelrelease": "5.4.0-1054-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb" ] }, { @@ -5767,8 +5867,8 @@ "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb" ] }, { @@ -5776,8 +5876,8 @@ "kernelrelease": "5.4.0-1055-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb" ] }, { @@ -5785,8 +5885,8 @@ "kernelrelease": "5.4.0-1055-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb" ] }, { @@ -5794,8 +5894,8 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" ] }, { @@ -5812,8 +5912,8 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb" ] }, { @@ -5830,8 +5930,8 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb" ] }, { @@ -5839,8 +5939,8 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { @@ -5848,8 +5948,8 @@ "kernelrelease": "5.4.0-1059-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb" ] }, { @@ -5857,8 +5957,8 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" ] }, { @@ -5875,8 +5975,8 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" ] }, { @@ -5884,8 +5984,8 @@ "kernelrelease": "5.4.0-1063-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb" ] }, { @@ -5893,8 +5993,8 @@ "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" ] }, { @@ -5902,8 +6002,8 @@ "kernelrelease": "5.4.0-1065-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" ] }, { @@ -5911,8 +6011,8 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" ] }, { @@ -5938,8 +6038,8 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" ] }, { @@ -5960,15 +6060,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb" ] }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb" - ] - }, { "kernelversion": "77~18.04.1", "kernelrelease": "5.4.0-1072-aws-5.4", @@ -5987,13 +6078,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" ] }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" + ] + }, { "kernelversion": "79~18.04.1", "kernelrelease": "5.4.0-1073-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" ] }, { @@ -6001,8 +6101,8 @@ "kernelrelease": "5.4.0-1074-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_arm64.deb" ] }, { @@ -6010,8 +6110,8 @@ "kernelrelease": "5.4.0-1076-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_arm64.deb" ] }, { @@ -6019,8 +6119,8 @@ "kernelrelease": "5.4.0-1076-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb" ] }, { @@ -6028,26 +6128,26 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb" ] }, { "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1078-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb" ] }, { "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1078-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" ] }, { @@ -6055,26 +6155,26 @@ "kernelrelease": "5.4.0-1078-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_arm64.deb" ] }, { "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1080-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" ] }, { "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1080-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_arm64.deb" ] }, { @@ -6091,8 +6191,8 @@ "kernelrelease": "5.4.0-1083-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb" ] }, { @@ -6118,8 +6218,8 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb" ] }, { @@ -6127,8 +6227,8 @@ "kernelrelease": "5.4.0-117-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb" ] }, { @@ -6136,8 +6236,8 @@ "kernelrelease": "5.4.0-120-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_arm64.deb" ] }, { @@ -6145,8 +6245,8 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" ] }, { @@ -6163,8 +6263,8 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" ] }, { @@ -6172,8 +6272,8 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" ] }, { @@ -6181,8 +6281,8 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb" ] }, { @@ -6226,8 +6326,8 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" ] }, { @@ -6244,8 +6344,8 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb" ] }, { @@ -6253,8 +6353,8 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" ] }, { @@ -6271,8 +6371,8 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb" ] }, { @@ -6280,8 +6380,8 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" ] }, { @@ -6289,8 +6389,8 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb" ] }, { @@ -6298,8 +6398,8 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb" ] }, { @@ -6316,8 +6416,8 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" ] }, { @@ -6325,8 +6425,8 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" ] }, { @@ -6343,8 +6443,8 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" ] }, { @@ -6361,8 +6461,8 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb" ] }, { @@ -6397,8 +6497,8 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" ] }, { @@ -6406,8 +6506,8 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" ] }, { @@ -6415,8 +6515,8 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" ] }, { @@ -6451,8 +6551,8 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb" ] }, { @@ -6460,8 +6560,8 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb" ] }, { @@ -6469,9 +6569,9 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb" ] }, { @@ -6480,8 +6580,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb" ] }, { @@ -6489,9 +6589,9 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" ] }, { @@ -6535,8 +6635,8 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" ] }, { @@ -6544,8 +6644,8 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" ] }, { @@ -6562,8 +6662,8 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb" ] }, { @@ -6571,8 +6671,8 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" ] }, { @@ -6580,8 +6680,8 @@ "kernelrelease": "5.4.0-1018-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb" ] }, { @@ -6589,8 +6689,8 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb" ] }, { @@ -6607,8 +6707,8 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" ] }, { @@ -6616,9 +6716,9 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb" ] }, { @@ -6644,8 +6744,8 @@ "kernelrelease": "5.15.0-1005-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb" ] }, { @@ -6672,9 +6772,9 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb" ] }, { @@ -6682,8 +6782,8 @@ "kernelrelease": "5.18.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_arm64.deb" ] }, { @@ -6691,8 +6791,8 @@ "kernelrelease": "5.18.0-1002-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_arm64.deb" ] }, { @@ -6700,8 +6800,8 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb" ] }, { @@ -6709,8 +6809,8 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb" ] }, { @@ -6727,8 +6827,8 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -6736,8 +6836,8 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_arm64.deb" ] }, { @@ -6745,8 +6845,8 @@ "kernelrelease": "5.15.0-1006-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb" ] }, { @@ -6755,8 +6855,8 @@ "target": "ubuntu-lowlatency", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" ] }, { @@ -6765,8 +6865,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, { @@ -6774,9 +6874,9 @@ "kernelrelease": "5.15.0-27-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, { @@ -6784,8 +6884,8 @@ "kernelrelease": "5.11.0-1029-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -6793,8 +6893,8 @@ "kernelrelease": "5.11.0-1029-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" ] }, { @@ -6802,8 +6902,8 @@ "kernelrelease": "5.11.0-1029-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb" ] }, { @@ -6811,8 +6911,8 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb" ] }, @@ -6821,8 +6921,8 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" ] }, { @@ -6845,20 +6945,20 @@ }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" ] }, { @@ -6866,8 +6966,8 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" ] }, { @@ -6875,8 +6975,8 @@ "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb" ] }, { @@ -6884,8 +6984,8 @@ "kernelrelease": "5.13.0-1023-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_arm64.deb" ] }, { @@ -6917,20 +7017,20 @@ }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1028-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" - ] + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" + ] }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1028-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" ] }, { @@ -6938,8 +7038,8 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb" ] }, @@ -6948,9 +7048,9 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb" ] }, { @@ -6968,9 +7068,9 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" ] }, { @@ -6979,8 +7079,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb" ] }, { @@ -6988,9 +7088,9 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" ] }, { @@ -6998,8 +7098,8 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb" ] }, @@ -7008,9 +7108,9 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb" ] }, { @@ -7018,9 +7118,9 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb" ] }, { @@ -7048,9 +7148,9 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" ] }, { @@ -7058,9 +7158,9 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb" ] }, { @@ -7068,9 +7168,9 @@ "kernelrelease": "5.13.0-52-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59~20.04.1_arm64.deb" ] }, { @@ -7078,8 +7178,8 @@ "kernelrelease": "5.15.0-1007-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_arm64.deb" ] }, { @@ -7087,8 +7187,8 @@ "kernelrelease": "5.15.0-1009-aws-5.15", "target": "ubuntu-aws-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_arm64.deb" ] }, { @@ -7096,8 +7196,8 @@ "kernelrelease": "5.15.0-1012-gcp-5.15", "target": "ubuntu-gcp-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_arm64.deb" ] }, { @@ -7118,6 +7218,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_arm64.deb" ] }, + { + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1014-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_arm64.deb" + ] + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.15.0-1015-aws-5.15", + "target": "ubuntu-aws-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb" + ] + }, { "kernelversion": "24~20.04.3", "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", @@ -7134,8 +7252,8 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb" ] }, { @@ -7153,9 +7271,19 @@ "kernelrelease": "5.15.0-32-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" + ] + }, + { + "kernelversion": "44~20.04.1", + "kernelrelease": "5.15.0-41-hwe-5.15", + "target": "ubuntu-hwe-5.15", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic-64k_5.15.0-41.44~20.04.1_arm64.deb" ] }, { @@ -7163,8 +7291,8 @@ "kernelrelease": "5.4.0-1039-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1039_5.4.0-1039.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1039-bluefield_5.4.0-1039.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1039-bluefield_5.4.0-1039.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1039_5.4.0-1039.43_all.deb" ] }, { @@ -7181,8 +7309,8 @@ "kernelrelease": "5.4.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" ] }, { @@ -7208,8 +7336,8 @@ "kernelrelease": "5.4.0-1052-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" ] }, { @@ -7217,8 +7345,8 @@ "kernelrelease": "5.4.0-1053-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" ] }, { @@ -7226,8 +7354,8 @@ "kernelrelease": "5.4.0-1056-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb" ] }, { @@ -7235,8 +7363,8 @@ "kernelrelease": "5.4.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb" ] }, { @@ -7244,8 +7372,8 @@ "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" ] }, { @@ -7253,8 +7381,8 @@ "kernelrelease": "5.4.0-1060-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb" ] }, { @@ -7262,8 +7390,8 @@ "kernelrelease": "5.4.0-1061-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1061_5.4.0-1061.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1061-raspi_5.4.0-1061.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1061-raspi_5.4.0-1061.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1061_5.4.0-1061.69_arm64.deb" ] }, { @@ -7280,8 +7408,8 @@ "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" ] }, { @@ -7298,8 +7426,17 @@ "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + ] + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1066-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1066_5.4.0-1066.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1066-raspi_5.4.0-1066.76_arm64.deb" ] }, { @@ -7307,8 +7444,8 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb" ] }, { @@ -7325,8 +7462,8 @@ "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" ] }, { @@ -7334,8 +7471,8 @@ "kernelrelease": "5.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" ] }, { @@ -7358,20 +7495,20 @@ }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb" ] }, { @@ -7388,8 +7525,8 @@ "kernelrelease": "5.4.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb" ] }, { @@ -7397,8 +7534,8 @@ "kernelrelease": "5.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb" ] }, { @@ -7406,8 +7543,8 @@ "kernelrelease": "5.4.0-1073-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb" ] }, { @@ -7421,20 +7558,20 @@ }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1074-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb" ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1074-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb" ] }, { @@ -7442,8 +7579,8 @@ "kernelrelease": "5.4.0-1075-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb" ] }, { @@ -7451,8 +7588,8 @@ "kernelrelease": "5.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb" ] }, { @@ -7460,8 +7597,8 @@ "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" ] }, { @@ -7482,13 +7619,40 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" ] }, + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1079-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb" + ] + }, { "kernelversion": "83", "kernelrelease": "5.4.0-1080-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" + ] + }, + { + "kernelversion": "88", + "kernelrelease": "5.4.0-1081-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_arm64.deb" + ] + }, + { + "kernelversion": "91", + "kernelrelease": "5.4.0-1086-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_arm64.deb" ] }, { @@ -7496,8 +7660,17 @@ "kernelrelease": "5.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb" + ] + }, + { + "kernelversion": "138", + "kernelrelease": "5.4.0-122", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_arm64.deb" ] }, { @@ -7524,8 +7697,8 @@ "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { @@ -7542,8 +7715,8 @@ "kernelrelease": "5.11.0-1017-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" ] }, { @@ -7551,8 +7724,8 @@ "kernelrelease": "5.11.0-1017-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb" ] }, { @@ -7560,8 +7733,8 @@ "kernelrelease": "5.11.0-1019-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { @@ -7578,8 +7751,8 @@ "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb" ] }, { @@ -7587,8 +7760,8 @@ "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" ] }, { @@ -7605,8 +7778,8 @@ "kernelrelease": "5.11.0-1021-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, { @@ -7614,8 +7787,8 @@ "kernelrelease": "5.11.0-1022-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb" ] }, { @@ -7629,11 +7802,11 @@ }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -7641,17 +7814,17 @@ "kernelrelease": "5.11.0-1023-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { @@ -7659,8 +7832,17 @@ "kernelrelease": "5.11.0-1025-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + ] + }, + { + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { @@ -7668,17 +7850,17 @@ "kernelrelease": "5.11.0-1025-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -7700,12 +7882,12 @@ ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { @@ -7713,17 +7895,8 @@ "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { @@ -7740,9 +7913,9 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb" ] }, { @@ -7750,8 +7923,8 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb" ] }, @@ -7760,9 +7933,9 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb" ] }, { @@ -7770,9 +7943,9 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb" ] }, { @@ -7781,8 +7954,8 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb" ] }, { @@ -7800,9 +7973,9 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" ] }, { @@ -7810,9 +7983,9 @@ "kernelrelease": "5.11.0-40-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb" ] }, { @@ -7820,8 +7993,8 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" ] }, @@ -7830,9 +8003,9 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb" ] }, { @@ -7840,9 +8013,9 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" ] }, { @@ -7850,9 +8023,9 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb" ] }, { @@ -7860,8 +8033,8 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb" ] }, { @@ -7878,8 +8051,8 @@ "kernelrelease": "5.13.0-1011-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" ] }, { @@ -7887,8 +8060,8 @@ "kernelrelease": "5.13.0-1012-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" ] }, { @@ -7896,8 +8069,8 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" ] }, { @@ -7905,26 +8078,26 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb" ] }, { @@ -7932,8 +8105,8 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" ] }, { @@ -7941,8 +8114,8 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" ] }, { @@ -7959,8 +8132,8 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" ] }, { @@ -7986,8 +8159,8 @@ "kernelrelease": "5.13.0-1025-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb" ] }, { @@ -8004,8 +8177,8 @@ "kernelrelease": "5.13.0-1027-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" ] }, { @@ -8013,8 +8186,8 @@ "kernelrelease": "5.13.0-1028-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_arm64.deb" ] }, { @@ -8022,8 +8195,8 @@ "kernelrelease": "5.13.0-1029-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" ] }, { @@ -8031,8 +8204,8 @@ "kernelrelease": "5.13.0-1029-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb" ] }, { @@ -8040,8 +8213,8 @@ "kernelrelease": "5.13.0-1030-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb" ] }, { @@ -8058,8 +8231,8 @@ "kernelrelease": "5.13.0-1031-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_arm64.deb" ] }, { @@ -8085,8 +8258,8 @@ "kernelrelease": "5.13.0-1036-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_arm64.deb" ] }, { @@ -8094,9 +8267,9 @@ "kernelrelease": "5.13.0-23-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" ] }, { @@ -8104,9 +8277,9 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb" ] }, { @@ -8124,9 +8297,9 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" ] }, { @@ -8134,9 +8307,9 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb" ] }, { @@ -8144,9 +8317,9 @@ "kernelrelease": "5.13.0-48-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" ] }, { @@ -8154,9 +8327,9 @@ "kernelrelease": "5.13.0-51-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic-64k_5.13.0-51.58~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic-64k_5.13.0-51.58~20.04.1_arm64.deb" ] }, { @@ -8173,8 +8346,8 @@ "kernelrelease": "5.15.0-1007-oracle-5.15", "target": "ubuntu-oracle-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" ] }, { @@ -8182,8 +8355,8 @@ "kernelrelease": "5.15.0-1008-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_arm64.deb" ] }, { @@ -8191,9 +8364,9 @@ "kernelrelease": "5.15.0-33-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb" ] }, { @@ -8202,8 +8375,8 @@ "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { @@ -8211,26 +8384,26 @@ "kernelrelease": "5.4.0-100", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1011-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" ] }, { @@ -8247,8 +8420,8 @@ "kernelrelease": "5.4.0-1012-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb" ] }, { @@ -8256,8 +8429,8 @@ "kernelrelease": "5.4.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" ] }, { @@ -8265,8 +8438,8 @@ "kernelrelease": "5.4.0-1013-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb" ] }, { @@ -8274,8 +8447,8 @@ "kernelrelease": "5.4.0-1013-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb" ] }, { @@ -8283,8 +8456,8 @@ "kernelrelease": "5.4.0-1015-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb" ] }, { @@ -8292,8 +8465,8 @@ "kernelrelease": "5.4.0-1015-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb" ] }, { @@ -8301,8 +8474,8 @@ "kernelrelease": "5.4.0-1016-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb" ] }, { @@ -8310,8 +8483,8 @@ "kernelrelease": "5.4.0-1016-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb" ] }, { @@ -8337,8 +8510,8 @@ "kernelrelease": "5.4.0-1018-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" ] }, { @@ -8355,8 +8528,8 @@ "kernelrelease": "5.4.0-1019-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb" ] }, { @@ -8373,8 +8546,8 @@ "kernelrelease": "5.4.0-1020-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" ] }, { @@ -8391,8 +8564,8 @@ "kernelrelease": "5.4.0-1021-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb" ] }, { @@ -8400,8 +8573,8 @@ "kernelrelease": "5.4.0-1021-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb" ] }, { @@ -8445,8 +8618,8 @@ "kernelrelease": "5.4.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -8478,20 +8651,20 @@ }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1026-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1026-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1026-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb" ] }, { @@ -8508,8 +8681,8 @@ "kernelrelease": "5.4.0-1028-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" ] }, { @@ -8517,8 +8690,8 @@ "kernelrelease": "5.4.0-1028-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb" ] }, { @@ -8526,8 +8699,8 @@ "kernelrelease": "5.4.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb" ] }, { @@ -8544,8 +8717,8 @@ "kernelrelease": "5.4.0-1030-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb" ] }, { @@ -8553,8 +8726,8 @@ "kernelrelease": "5.4.0-1030-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" ] }, { @@ -8568,20 +8741,20 @@ }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1032-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1032-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb" ] }, { @@ -8598,8 +8771,8 @@ "kernelrelease": "5.4.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb" ] }, { @@ -8616,26 +8789,26 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1035-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1035-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "5.4.0-1035-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1035-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" ] }, { @@ -8643,8 +8816,8 @@ "kernelrelease": "5.4.0-1036-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" ] }, { @@ -8679,8 +8852,8 @@ "kernelrelease": "5.4.0-1038-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" ] }, { @@ -8688,8 +8861,8 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { @@ -8706,8 +8879,8 @@ "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { @@ -8715,8 +8888,8 @@ "kernelrelease": "5.4.0-1041-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb" ] }, { @@ -8724,8 +8897,8 @@ "kernelrelease": "5.4.0-1042-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb" ] }, { @@ -8733,8 +8906,8 @@ "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { @@ -8751,8 +8924,8 @@ "kernelrelease": "5.4.0-1044-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb" ] }, { @@ -8766,20 +8939,20 @@ }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1045-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1045-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb" ] }, { "kernelversion": "49", - "kernelrelease": "5.4.0-1045-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1045-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb" ] }, { @@ -8787,8 +8960,8 @@ "kernelrelease": "5.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { @@ -8805,8 +8978,8 @@ "kernelrelease": "5.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" ] }, { @@ -8823,8 +8996,8 @@ "kernelrelease": "5.4.0-1048-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb" ] }, { @@ -8832,8 +9005,8 @@ "kernelrelease": "5.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb" ] }, { @@ -8841,8 +9014,8 @@ "kernelrelease": "5.4.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" ] }, { @@ -8850,8 +9023,8 @@ "kernelrelease": "5.4.0-1050-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb" ] }, { @@ -8895,8 +9068,8 @@ "kernelrelease": "5.4.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" ] }, { @@ -8904,8 +9077,8 @@ "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb" ] }, { @@ -8949,8 +9122,8 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" ] }, { @@ -8958,8 +9131,8 @@ "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb" ] }, { @@ -8967,8 +9140,8 @@ "kernelrelease": "5.4.0-1058-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb" ] }, { @@ -8994,8 +9167,8 @@ "kernelrelease": "5.4.0-1059-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb" ] }, { @@ -9003,8 +9176,8 @@ "kernelrelease": "5.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb" ] }, { @@ -9012,8 +9185,8 @@ "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -9021,8 +9194,8 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb" ] }, { @@ -9048,8 +9221,8 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" ] }, { @@ -9066,8 +9239,8 @@ "kernelrelease": "5.4.0-1065-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1065-raspi_5.4.0-1065.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1065_5.4.0-1065.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1065_5.4.0-1065.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1065-raspi_5.4.0-1065.75_arm64.deb" ] }, { @@ -9084,8 +9257,8 @@ "kernelrelease": "5.4.0-1068-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" ] }, { @@ -9117,20 +9290,20 @@ }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" ] }, { @@ -9156,8 +9329,8 @@ "kernelrelease": "5.4.0-1076-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_arm64.deb" ] }, { @@ -9165,26 +9338,26 @@ "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb" ] }, { "kernelversion": "84", - "kernelrelease": "5.4.0-1078-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1078-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb" ] }, { "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1078-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb" ] }, { @@ -9210,8 +9383,8 @@ "kernelrelease": "5.4.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" ] }, { @@ -9228,8 +9401,8 @@ "kernelrelease": "5.4.0-1085-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_arm64.deb" ] }, { @@ -9237,8 +9410,8 @@ "kernelrelease": "5.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" ] }, { @@ -9246,8 +9419,8 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" ] }, { @@ -9255,8 +9428,8 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" ] }, { @@ -9264,8 +9437,8 @@ "kernelrelease": "5.4.0-117", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb" ] }, { @@ -9282,8 +9455,8 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" ] }, { @@ -9291,8 +9464,8 @@ "kernelrelease": "5.4.0-29", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" ] }, { @@ -9309,8 +9482,8 @@ "kernelrelease": "5.4.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" ] }, { @@ -9318,8 +9491,8 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb" ] }, { @@ -9327,8 +9500,8 @@ "kernelrelease": "5.4.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" ] }, { @@ -9354,8 +9527,8 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb" ] }, { @@ -9363,8 +9536,8 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb" ] }, { @@ -9390,8 +9563,8 @@ "kernelrelease": "5.4.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" ] }, { @@ -9444,8 +9617,8 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb" ] }, { @@ -9462,8 +9635,8 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb" ] }, { @@ -9525,8 +9698,8 @@ "kernelrelease": "5.4.0-80", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb" ] }, { @@ -9552,8 +9725,8 @@ "kernelrelease": "5.4.0-86", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb" ] }, { @@ -9561,8 +9734,8 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" ] }, { @@ -9570,8 +9743,8 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb" ] }, { @@ -9588,8 +9761,8 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb" ] }, { @@ -9597,8 +9770,8 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" ] }, { @@ -9606,8 +9779,8 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb" ] }, { @@ -9633,8 +9806,8 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" ] }, { @@ -9642,8 +9815,8 @@ "kernelrelease": "5.8.0-1031-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb" ] }, { @@ -9651,8 +9824,8 @@ "kernelrelease": "5.8.0-1033-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" ] }, { @@ -9660,8 +9833,8 @@ "kernelrelease": "5.8.0-1035-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb" ] }, { @@ -9669,8 +9842,8 @@ "kernelrelease": "5.8.0-1037-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, { @@ -9678,8 +9851,8 @@ "kernelrelease": "5.8.0-1038-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" ] }, { @@ -9687,8 +9860,8 @@ "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb" ] }, { @@ -9705,8 +9878,8 @@ "kernelrelease": "5.8.0-1042-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb" ] }, { @@ -9714,9 +9887,9 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb" ] }, { @@ -9724,9 +9897,9 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb" ] }, { @@ -9734,8 +9907,8 @@ "kernelrelease": "5.8.0-36-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" ] }, @@ -9744,8 +9917,8 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" ] }, @@ -9764,9 +9937,9 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" ] }, { @@ -9774,9 +9947,9 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" ] }, { @@ -9784,9 +9957,9 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" ] }, { @@ -9804,9 +9977,9 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb" ] }, { @@ -9814,9 +9987,9 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" ] }, { @@ -9824,8 +9997,8 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb" ] }, @@ -9834,8 +10007,8 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb" ] }, @@ -9844,9 +10017,9 @@ "kernelrelease": "5.8.0-59-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb" ] }, { @@ -9854,9 +10027,9 @@ "kernelrelease": "5.8.0-63-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb" ] }, { @@ -9864,8 +10037,8 @@ "kernelrelease": "5.11.0-1009-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb" ] }, { @@ -9873,8 +10046,8 @@ "kernelrelease": "5.4.0-1007-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb" ] }, { @@ -9882,8 +10055,8 @@ "kernelrelease": "5.4.0-1049-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb" ] }, { @@ -9909,8 +10082,8 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" ] }, { @@ -9918,9 +10091,9 @@ "kernelrelease": "5.8.0-23-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb" ] }, { @@ -9938,9 +10111,9 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" ] }, { @@ -9958,9 +10131,9 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" ] }, { @@ -9986,8 +10159,8 @@ "kernelrelease": "5.4.0-26", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" ] }, { @@ -10004,8 +10177,8 @@ "kernelrelease": "5.11.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb" ] }, { @@ -10013,17 +10186,17 @@ "kernelrelease": "5.11.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1027-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb" ] }, { @@ -10031,17 +10204,17 @@ "kernelrelease": "5.11.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb" ] }, { "kernelversion": "30", - "kernelrelease": "5.11.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1027-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -10059,8 +10232,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" ] }, { @@ -10068,8 +10241,8 @@ "kernelrelease": "5.11.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb" ] }, { @@ -10087,8 +10260,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb" ] }, { @@ -10105,8 +10278,8 @@ "kernelrelease": "5.13.0-1010-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" ] }, { @@ -10132,8 +10305,8 @@ "kernelrelease": "5.13.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" ] }, { @@ -10150,8 +10323,8 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb" ] }, { @@ -10159,8 +10332,17 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb" ] }, { @@ -10177,17 +10359,8 @@ "kernelrelease": "5.13.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb" ] }, { @@ -10208,40 +10381,31 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, - { - "kernelversion": "21", - "kernelrelease": "5.13.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" - ] - }, { "kernelversion": "21", "kernelrelease": "5.13.0-1019-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-azure", + "kernelversion": "21", + "kernelrelease": "5.13.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.13.0-1020-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1020-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb" ] }, { @@ -10254,12 +10418,12 @@ ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1021-aws", - "target": "ubuntu-aws", + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb" ] }, { @@ -10267,8 +10431,17 @@ "kernelrelease": "5.13.0-1021-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb" + ] + }, + { + "kernelversion": "23", + "kernelrelease": "5.13.0-1021-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" ] }, { @@ -10280,31 +10453,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb" ] }, - { - "kernelversion": "24", - "kernelrelease": "5.13.0-1022-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" - ] - }, { "kernelversion": "24", "kernelrelease": "5.13.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.13.0-1023-raspi", + "kernelversion": "24", + "kernelrelease": "5.13.0-1022-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" ] }, { @@ -10316,13 +10480,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_arm64.deb" ] }, + { + "kernelversion": "25", + "kernelrelease": "5.13.0-1023-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" + ] + }, { "kernelversion": "27", "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb" ] }, { @@ -10330,26 +10503,26 @@ "kernelrelease": "5.13.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1024-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1024-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1024-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1024-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb" ] }, { @@ -10384,8 +10557,8 @@ "kernelrelease": "5.13.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" ] }, { @@ -10408,20 +10581,20 @@ }, { "kernelversion": "28", - "kernelrelease": "5.13.0-1026-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1026-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1026_5.13.0-1026.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1026-raspi_5.13.0-1026.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_arm64.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.13.0-1026-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1026-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1026-raspi_5.13.0-1026.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1026_5.13.0-1026.28_arm64.deb" ] }, { @@ -10438,8 +10611,8 @@ "kernelrelease": "5.13.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb" ] }, { @@ -10456,8 +10629,8 @@ "kernelrelease": "5.13.0-1028-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb" ] }, { @@ -10474,9 +10647,9 @@ "kernelrelease": "5.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_arm64.deb" ] }, { @@ -10484,26 +10657,26 @@ "kernelrelease": "5.13.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1008-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" ] }, { @@ -10529,8 +10702,8 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" ] }, { @@ -10538,26 +10711,26 @@ "kernelrelease": "5.13.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb" ] }, { "kernelversion": "13", - "kernelrelease": "5.13.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.13.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb" ] }, { "kernelversion": "13", - "kernelrelease": "5.13.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1011-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" ] }, { @@ -10565,8 +10738,8 @@ "kernelrelease": "5.13.0-1012-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb" ] }, { @@ -10574,8 +10747,8 @@ "kernelrelease": "5.13.0-1012-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" ] }, { @@ -10583,8 +10756,8 @@ "kernelrelease": "5.13.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" ] }, { @@ -10592,8 +10765,8 @@ "kernelrelease": "5.13.0-1013-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb" ] }, { @@ -10601,8 +10774,8 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb" ] }, { @@ -10628,8 +10801,8 @@ "kernelrelease": "5.13.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb" ] }, { @@ -10637,8 +10810,8 @@ "kernelrelease": "5.13.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" ] }, { @@ -10646,8 +10819,8 @@ "kernelrelease": "5.13.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb" ] }, { @@ -10700,8 +10873,8 @@ "kernelrelease": "5.13.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb" ] }, { @@ -10709,8 +10882,8 @@ "kernelrelease": "5.13.0-1031-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1031_5.13.0-1031.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1031-raspi_5.13.0-1031.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1031-raspi_5.13.0-1031.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1031_5.13.0-1031.34_arm64.deb" ] }, { @@ -10736,9 +10909,9 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" ] }, { @@ -10746,9 +10919,9 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb" ] }, { @@ -10756,9 +10929,9 @@ "kernelrelease": "5.13.0-23", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb" ] }, { @@ -10766,9 +10939,9 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb" ] }, { @@ -10776,9 +10949,9 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" ] }, { @@ -10796,9 +10969,9 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb" ] }, { @@ -10806,9 +10979,9 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb" ] }, { @@ -10816,9 +10989,9 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" ] }, { @@ -10827,8 +11000,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb" ] }, { @@ -10836,9 +11009,9 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb" ] }, { @@ -10846,8 +11019,8 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb" ] }, @@ -10867,8 +11040,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54_arm64.deb" ] }, { @@ -10895,8 +11068,8 @@ "kernelrelease": "5.13.0-1029-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb" ] }, { @@ -10904,8 +11077,8 @@ "kernelrelease": "5.13.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" ] }, { @@ -10914,8 +11087,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb" ] }, { @@ -10923,9 +11096,9 @@ "kernelrelease": "5.13.0-46", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic-64k_5.13.0-46.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_arm64.deb" ] }, { @@ -10951,8 +11124,8 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" ] }, @@ -10970,8 +11143,8 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb" ] }, { @@ -10979,8 +11152,8 @@ "kernelrelease": "5.15.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb" ] }, { @@ -11019,6 +11192,33 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb" ] }, + { + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-gke", + "target": "ubuntu-gke", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_arm64.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.15.0-1012-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1012_5.15.0-1012.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1012-raspi_5.15.0-1012.14_arm64.deb" + ] + }, { "kernelversion": "16", "kernelrelease": "5.15.0-1013-azure", @@ -11028,13 +11228,49 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb" ] }, + { + "kernelversion": "17", + "kernelrelease": "5.15.0-1013-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb" + ] + }, + { + "kernelversion": "17", + "kernelrelease": "5.15.0-1013-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_arm64.deb" + ] + }, { "kernelversion": "18", "kernelrelease": "5.15.0-1014-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_arm64.deb" + ] + }, + { + "kernelversion": "17", + "kernelrelease": "5.15.0-1014-azure", + "target": "ubuntu-azure", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_arm64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.15.0-1015-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_arm64.deb" ] }, { @@ -11042,9 +11278,9 @@ "kernelrelease": "5.15.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb" ] }, { @@ -11052,9 +11288,9 @@ "kernelrelease": "5.15.0-30-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb" ] }, { @@ -11062,21 +11298,11 @@ "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency-64k_5.15.0-32.33_arm64.deb" ] }, - { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb" - ] - }, { "kernelversion": "34", "kernelrelease": "5.15.0-33", @@ -11087,13 +11313,23 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb" ] }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb" + ] + }, { "kernelversion": "43", "kernelrelease": "5.15.0-40-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency-64k_5.15.0-40.43_arm64.deb" ] }, @@ -11108,12 +11344,13 @@ ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", - "target": "ubuntu-aws", + "kernelversion": "44", + "kernelrelease": "5.15.0-41", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41-generic-64k_5.15.0-41.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb" ] }, { @@ -11125,6 +11362,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb" ] }, + { + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" + ] + }, { "kernelversion": "12", "kernelrelease": "5.15.0-1008-gcp", @@ -11175,17 +11421,8 @@ "kernelrelease": "5.15.0-1010-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_arm64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_arm64.deb" ] }, { @@ -11202,8 +11439,8 @@ "kernelrelease": "5.15.0-1011-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1011_5.15.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1011-raspi_5.15.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1011-raspi_5.15.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1011_5.15.0-1011.13_arm64.deb" ] }, { @@ -11211,17 +11448,18 @@ "kernelrelease": "5.15.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.15.0-1013-aws", - "target": "ubuntu-aws", + "kernelversion": "39", + "kernelrelease": "5.15.0-37-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb" ] }, { @@ -11229,19 +11467,19 @@ "kernelrelease": "5.15.0-37", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.15.0-37-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "42", + "kernelrelease": "5.15.0-39", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic-64k_5.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_arm64.deb" ] }, { @@ -11249,28 +11487,18 @@ "kernelrelease": "5.15.0-39-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency-64k_5.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_arm64.deb" ] }, - { - "kernelversion": "42", - "kernelrelease": "5.15.0-39", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic-64k_5.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_arm64.deb" - ] - }, { "kernelversion": "9", "kernelrelease": "5.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_arm64.deb" ] }, { @@ -11278,8 +11506,8 @@ "kernelrelease": "5.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" ] }, { @@ -11305,9 +11533,9 @@ "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb" ] }, { @@ -11315,8 +11543,8 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, @@ -11334,8 +11562,8 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb" ] }, { @@ -11353,8 +11581,8 @@ "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb" ] }, { @@ -11371,8 +11599,8 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" ] }, { @@ -11380,8 +11608,8 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" ] }, { @@ -11389,8 +11617,8 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" ] }, { @@ -11407,8 +11635,8 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" ] }, { @@ -11416,8 +11644,8 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" ] }, { @@ -11425,8 +11653,8 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb" ] }, { @@ -11452,8 +11680,8 @@ "kernelrelease": "3.13.0-115", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" ] }, { @@ -11461,8 +11689,8 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb" ] }, { @@ -11479,8 +11707,8 @@ "kernelrelease": "3.13.0-119", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_arm64.deb" ] }, { @@ -11506,8 +11734,8 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" ] }, { @@ -11542,8 +11770,8 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" ] }, { @@ -11551,8 +11779,8 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb" ] }, { @@ -11569,8 +11797,8 @@ "kernelrelease": "3.13.0-137", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" ] }, { @@ -11578,8 +11806,8 @@ "kernelrelease": "3.13.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb" ] }, { @@ -11587,8 +11815,8 @@ "kernelrelease": "3.13.0-141", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb" ] }, { @@ -11596,8 +11824,8 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" ] }, { @@ -11623,8 +11851,8 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" ] }, { @@ -11641,8 +11869,8 @@ "kernelrelease": "3.13.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb" ] }, { @@ -11659,8 +11887,8 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" ] }, { @@ -11668,8 +11896,8 @@ "kernelrelease": "3.13.0-156", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" ] }, { @@ -11677,8 +11905,8 @@ "kernelrelease": "3.13.0-157", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" ] }, { @@ -11686,8 +11914,8 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb" ] }, { @@ -11731,8 +11959,8 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" ] }, { @@ -11740,8 +11968,8 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" ] }, { @@ -11749,8 +11977,8 @@ "kernelrelease": "3.13.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb" ] }, { @@ -11758,8 +11986,8 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" ] }, { @@ -11794,8 +12022,8 @@ "kernelrelease": "3.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" ] }, { @@ -11812,8 +12040,8 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" ] }, { @@ -11830,8 +12058,8 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb" ] }, { @@ -11839,8 +12067,8 @@ "kernelrelease": "3.13.0-36", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" ] }, { @@ -11857,8 +12085,8 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" ] }, { @@ -11893,8 +12121,8 @@ "kernelrelease": "3.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_arm64.deb" ] }, { @@ -11902,8 +12130,8 @@ "kernelrelease": "3.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" ] }, { @@ -11920,8 +12148,8 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb" ] }, { @@ -11938,8 +12166,8 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" ] }, { @@ -11956,8 +12184,8 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb" ] }, { @@ -11992,8 +12220,8 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb" ] }, { @@ -12001,8 +12229,8 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb" ] }, { @@ -12010,8 +12238,8 @@ "kernelrelease": "3.13.0-62", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb" ] }, { @@ -12028,8 +12256,8 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" ] }, { @@ -12037,8 +12265,8 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" ] }, { @@ -12055,8 +12283,8 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb" ] }, { @@ -12064,8 +12292,8 @@ "kernelrelease": "3.13.0-70", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" ] }, { @@ -12073,8 +12301,8 @@ "kernelrelease": "3.13.0-71", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" ] }, { @@ -12082,8 +12310,8 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb" ] }, { @@ -12100,8 +12328,8 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb" ] }, { @@ -12109,8 +12337,8 @@ "kernelrelease": "3.13.0-77", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb" ] }, { @@ -12127,8 +12355,8 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb" ] }, { @@ -12145,8 +12373,8 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb" ] }, { @@ -12163,8 +12391,8 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb" ] }, { @@ -12172,8 +12400,8 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" ] }, { @@ -12181,8 +12409,8 @@ "kernelrelease": "3.13.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" ] }, { @@ -12217,8 +12445,8 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb" ] }, { @@ -12226,8 +12454,8 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" ] }, { @@ -12235,8 +12463,8 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb" ] }, { @@ -12244,8 +12472,8 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" ] }, { @@ -12262,8 +12490,8 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" ] }, { @@ -12280,8 +12508,8 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" ] }, { @@ -12289,8 +12517,8 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb" ] }, { @@ -12298,8 +12526,8 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb" ] }, { @@ -12307,8 +12535,8 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" ] }, { @@ -12316,8 +12544,8 @@ "kernelrelease": "3.16.0-39-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" ] }, { @@ -12343,8 +12571,8 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" ] }, { @@ -12352,8 +12580,8 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb" ] }, { @@ -12379,8 +12607,8 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" ] }, { @@ -12406,8 +12634,8 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" ] }, { @@ -12415,8 +12643,8 @@ "kernelrelease": "3.16.0-53-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb" ] }, { @@ -12424,8 +12652,8 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb" ] }, { @@ -12460,8 +12688,8 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" ] }, { @@ -12469,8 +12697,8 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" ] }, { @@ -12487,8 +12715,8 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" ] }, { @@ -12496,8 +12724,8 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb" ] }, { @@ -12532,8 +12760,8 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" ] }, { @@ -12550,8 +12778,8 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" ] }, { @@ -12568,8 +12796,8 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb" ] }, { @@ -12577,8 +12805,8 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb" ] }, { @@ -12595,8 +12823,8 @@ "kernelrelease": "3.19.0-28-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb" ] }, { @@ -12613,8 +12841,8 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb" ] }, { @@ -12622,8 +12850,8 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" ] }, { @@ -12676,8 +12904,8 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" ] }, { @@ -12685,8 +12913,8 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb" ] }, { @@ -12694,8 +12922,8 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" ] }, { @@ -12721,8 +12949,8 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" ] }, { @@ -12730,8 +12958,8 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" ] }, { @@ -12739,8 +12967,8 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" ] }, { @@ -12802,8 +13030,8 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" ] }, { @@ -12811,8 +13039,8 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" ] }, { @@ -12838,8 +13066,8 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb" ] }, { @@ -12874,8 +13102,8 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" ] }, { @@ -12883,8 +13111,8 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" ] }, { @@ -12892,8 +13120,8 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" ] }, { @@ -12910,8 +13138,8 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb" ] }, { @@ -12919,8 +13147,8 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" ] }, { @@ -12955,8 +13183,8 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb" ] }, { @@ -12964,8 +13192,8 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb" ] }, { @@ -13027,8 +13255,8 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" ] }, { @@ -13036,8 +13264,8 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" ] }, { @@ -13045,8 +13273,8 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb" ] }, { @@ -13054,8 +13282,8 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" ] }, { @@ -13063,8 +13291,8 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb" ] }, { @@ -13081,8 +13309,8 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb" ] }, { @@ -13099,8 +13327,8 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb" ] }, { @@ -13108,8 +13336,8 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb" ] }, { @@ -13117,8 +13345,8 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" ] }, { @@ -13135,8 +13363,8 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" ] }, { @@ -13144,8 +13372,8 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" ] }, { @@ -13171,8 +13399,8 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb" ] }, { @@ -13180,8 +13408,8 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" ] }, { @@ -13198,8 +13426,8 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb" ] }, { @@ -13225,8 +13453,8 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" ] }, { @@ -13234,8 +13462,8 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb" ] }, { @@ -13243,8 +13471,8 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb" ] }, { @@ -13252,8 +13480,8 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb" ] }, { @@ -13279,8 +13507,8 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" ] }, { @@ -13297,8 +13525,8 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" ] }, { @@ -13333,8 +13561,8 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb" ] }, { @@ -13342,8 +13570,8 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb" ] }, { @@ -13405,8 +13633,8 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb" ] }, { @@ -13432,8 +13660,8 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" ] }, { @@ -13450,8 +13678,8 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb" ] }, { @@ -13459,8 +13687,8 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" ] }, { @@ -13468,8 +13696,8 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb" ] }, { @@ -13486,8 +13714,8 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" ] }, { @@ -13495,8 +13723,8 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb" ] }, { @@ -13504,8 +13732,8 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" ] }, { @@ -13513,8 +13741,8 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb" ] }, { @@ -13540,8 +13768,8 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb" ] }, { @@ -13549,8 +13777,8 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb" ] }, { @@ -13558,8 +13786,8 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" ] }, { @@ -13567,8 +13795,8 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" ] }, { @@ -13576,8 +13804,8 @@ "kernelrelease": "3.13.0-45", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" ] }, { @@ -13585,8 +13813,8 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb" ] }, { @@ -13594,8 +13822,8 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" ] }, { @@ -13603,8 +13831,8 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb" ] }, { @@ -13630,8 +13858,8 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb" ] }, { @@ -13639,8 +13867,8 @@ "kernelrelease": "4.4.0-146-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" ] }, { @@ -13648,8 +13876,8 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb" ] }, { @@ -13666,8 +13894,8 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, { @@ -13684,8 +13912,8 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" ] }, { @@ -13729,8 +13957,8 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb" ] }, { @@ -13756,8 +13984,8 @@ "kernelrelease": "4.10.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb" ] }, { @@ -13783,8 +14011,8 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" ] }, { @@ -13819,8 +14047,8 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb" ] }, { @@ -13828,8 +14056,8 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb" ] }, { @@ -13837,8 +14065,8 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb" ] }, { @@ -13855,8 +14083,8 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" ] }, { @@ -13864,8 +14092,8 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb" ] }, { @@ -13882,8 +14110,8 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb" ] }, { @@ -13891,8 +14119,8 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" ] }, { @@ -13918,8 +14146,8 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb" ] }, { @@ -13927,8 +14155,8 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb" ] }, { @@ -13945,8 +14173,8 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" ] }, { @@ -13963,8 +14191,8 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb" ] }, { @@ -13981,8 +14209,8 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" ] }, { @@ -13999,8 +14227,8 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" ] }, { @@ -14026,8 +14254,8 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" ] }, { @@ -14062,8 +14290,8 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" ] }, { @@ -14071,8 +14299,8 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb" ] }, { @@ -14089,8 +14317,8 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb" ] }, { @@ -14107,8 +14335,8 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb" ] }, { @@ -14116,8 +14344,8 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" ] }, { @@ -14125,8 +14353,8 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" ] }, { @@ -14134,8 +14362,8 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" ] }, { @@ -14161,8 +14389,8 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb" ] }, { @@ -14170,8 +14398,8 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" ] }, { @@ -14188,8 +14416,8 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb" ] }, { @@ -14206,8 +14434,8 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb" ] }, { @@ -14242,8 +14470,8 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb" ] }, { @@ -14251,8 +14479,8 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" ] }, { @@ -14260,8 +14488,8 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" ] }, { @@ -14278,8 +14506,8 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb" ] }, { @@ -14305,8 +14533,8 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" ] }, { @@ -14341,8 +14569,8 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" ] }, { @@ -14359,8 +14587,8 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" ] }, { @@ -14386,8 +14614,8 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" ] }, { @@ -14395,8 +14623,8 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" ] }, { @@ -14413,8 +14641,8 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" ] }, { @@ -14431,8 +14659,8 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb" ] }, { @@ -14449,8 +14677,8 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" ] }, { @@ -14458,8 +14686,8 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" ] }, { @@ -14467,8 +14695,8 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" ] }, { @@ -14485,8 +14713,8 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" ] }, { @@ -14494,8 +14722,8 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" ] }, { @@ -14503,8 +14731,8 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, { @@ -14512,8 +14740,8 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" ] }, { @@ -14521,8 +14749,8 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb" ] }, { @@ -14530,8 +14758,8 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" ] }, { @@ -14548,8 +14776,8 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb" ] }, { @@ -14584,8 +14812,8 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb" ] }, { @@ -14593,8 +14821,8 @@ "kernelrelease": "4.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" ] }, { @@ -14611,8 +14839,8 @@ "kernelrelease": "4.4.0-116", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" ] }, { @@ -14629,8 +14857,8 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" ] }, { @@ -14656,8 +14884,8 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb" ] }, { @@ -14674,8 +14902,8 @@ "kernelrelease": "4.4.0-133", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" ] }, { @@ -14683,8 +14911,8 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb" ] }, { @@ -14710,8 +14938,8 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb" ] }, { @@ -14728,8 +14956,8 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb" ] }, { @@ -14764,8 +14992,8 @@ "kernelrelease": "4.4.0-150", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" ] }, { @@ -14773,8 +15001,8 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb" ] }, { @@ -14782,8 +15010,8 @@ "kernelrelease": "4.4.0-154", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb" ] }, { @@ -14827,8 +15055,8 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" ] }, { @@ -14836,8 +15064,8 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb" ] }, { @@ -14845,8 +15073,8 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" ] }, { @@ -14863,8 +15091,8 @@ "kernelrelease": "4.4.0-170", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb" ] }, { @@ -14881,8 +15109,8 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb" ] }, { @@ -14890,8 +15118,8 @@ "kernelrelease": "4.4.0-174", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb" ] }, { @@ -14899,8 +15127,8 @@ "kernelrelease": "4.4.0-176", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb" ] }, { @@ -14926,8 +15154,8 @@ "kernelrelease": "4.4.0-179", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb" ] }, { @@ -14962,8 +15190,8 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" ] }, { @@ -14971,8 +15199,8 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb" ] }, { @@ -14980,8 +15208,8 @@ "kernelrelease": "4.4.0-190", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb" ] }, { @@ -14989,8 +15217,8 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" ] }, { @@ -15007,8 +15235,8 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb" ] }, { @@ -15043,8 +15271,8 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" ] }, { @@ -15052,8 +15280,8 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb" ] }, { @@ -15079,8 +15307,8 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" ] }, { @@ -15088,8 +15316,8 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb" ] }, { @@ -15106,8 +15334,8 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb" ] }, { @@ -15124,8 +15352,8 @@ "kernelrelease": "4.4.0-34", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_arm64.deb" ] }, { @@ -15142,8 +15370,8 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" ] }, { @@ -15151,8 +15379,8 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb" ] }, { @@ -15169,8 +15397,8 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb" ] }, { @@ -15187,8 +15415,8 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb" ] }, { @@ -15223,8 +15451,8 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" ] }, { @@ -15241,8 +15469,8 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb" ] }, { @@ -15277,8 +15505,8 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" ] }, { @@ -15304,8 +15532,8 @@ "kernelrelease": "4.4.0-79", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" ] }, { @@ -15313,8 +15541,8 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" ] }, { @@ -15331,8 +15559,8 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb" ] }, { @@ -15340,8 +15568,8 @@ "kernelrelease": "4.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" ] }, { @@ -15349,8 +15577,8 @@ "kernelrelease": "4.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" ] }, { @@ -15358,8 +15586,8 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" ] }, { @@ -15367,8 +15595,8 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb" ] }, { @@ -15376,8 +15604,8 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" ] }, { @@ -15385,8 +15613,8 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" ] }, { @@ -15394,8 +15622,8 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb" ] }, { @@ -15403,8 +15631,8 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" ] }, { @@ -15430,8 +15658,8 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb" ] }, { @@ -15439,8 +15667,8 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" ] }, { @@ -15448,8 +15676,8 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb" ] }, { @@ -15457,8 +15685,8 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" ] }, { @@ -15466,8 +15694,8 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb" ] }, { @@ -15502,8 +15730,8 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb" ] }, { @@ -15511,8 +15739,8 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" ] }, { @@ -15547,8 +15775,8 @@ "kernelrelease": "4.4.0-140", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb" ] }, { @@ -15556,8 +15784,8 @@ "kernelrelease": "4.4.0-146", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_arm64.deb" ] }, { @@ -15583,8 +15811,8 @@ "kernelrelease": "4.8.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb" ] }, { @@ -15601,8 +15829,8 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb" ] }, { diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index 9de8013..7cc73e9 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -1875,7 +1875,7 @@ "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" ] }, { @@ -1899,7 +1899,7 @@ "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" ] }, { @@ -1915,7 +1915,7 @@ "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" ] }, { @@ -1939,7 +1939,7 @@ "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" ] }, { @@ -1947,7 +1947,7 @@ "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" ] }, { @@ -1955,7 +1955,7 @@ "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" ] }, { @@ -1963,7 +1963,7 @@ "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" ] }, { @@ -1987,7 +1987,15 @@ "kernelrelease": "3.10.0-1160.66.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.71.1.el7.x86_64", + "target": "centos", + "headers": [ + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.71.1.el7.x86_64.rpm" ] }, { @@ -3794,18 +3802,18 @@ }, { "kernelversion": 1, - "kernelrelease": "5.18.5-100.fc35.x86_64", + "kernelrelease": "5.18.9-100.fc35.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.18.5-100.fc35.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.18.9-100.fc35.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.18.6-200.fc36.x86_64", + "kernelrelease": "5.18.9-200.fc36.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.18.6-200.fc36.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.18.9-200.fc36.x86_64.rpm" ] } ], @@ -9854,6 +9862,14 @@ "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.el8.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-372.13.1.0.1.el8_6.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-372.13.1.0.1.el8_6.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.18.0-372.9.1.el8.x86_64", @@ -10349,7 +10365,7 @@ "kernelrelease": "4.19.15-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-devel-4.19.15-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-2.ph3.x86_64.rpm" ] }, { @@ -10381,7 +10397,7 @@ "kernelrelease": "4.19.112-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.112-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.112-1.ph3.x86_64.rpm" ] }, { @@ -10389,7 +10405,7 @@ "kernelrelease": "4.19.115-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm" ] }, { @@ -10405,7 +10421,7 @@ "kernelrelease": "4.19.115-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-2.ph3.x86_64.rpm" ] }, { @@ -10413,7 +10429,7 @@ "kernelrelease": "4.19.115-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-3.ph3.x86_64.rpm" ] }, { @@ -10421,7 +10437,7 @@ "kernelrelease": "4.19.115-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-5.ph3.x86_64.rpm" ] }, { @@ -10453,7 +10469,7 @@ "kernelrelease": "4.19.124-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.124-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-1.ph3.x86_64.rpm" ] }, { @@ -10461,7 +10477,7 @@ "kernelrelease": "4.19.124-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-2.ph3.x86_64.rpm" ] }, { @@ -10485,7 +10501,7 @@ "kernelrelease": "4.19.129-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.129-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.129-1.ph3.x86_64.rpm" ] }, { @@ -10509,7 +10525,7 @@ "kernelrelease": "4.19.132-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm" ] }, { @@ -10517,7 +10533,7 @@ "kernelrelease": "4.19.132-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-2.ph3.x86_64.rpm" ] }, { @@ -10525,7 +10541,7 @@ "kernelrelease": "4.19.132-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-3.ph3.x86_64.rpm" ] }, { @@ -10533,7 +10549,7 @@ "kernelrelease": "4.19.132-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-5.ph3.x86_64.rpm" ] }, { @@ -10549,7 +10565,7 @@ "kernelrelease": "4.19.138-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.138-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-1.ph3.x86_64.rpm" ] }, { @@ -10573,7 +10589,7 @@ "kernelrelease": "4.19.145-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-1.ph3.x86_64.rpm" ] }, { @@ -10589,7 +10605,7 @@ "kernelrelease": "4.19.145-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm" ] }, { @@ -10597,7 +10613,7 @@ "kernelrelease": "4.19.148-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-1.ph3.x86_64.rpm" ] }, { @@ -10605,7 +10621,7 @@ "kernelrelease": "4.19.148-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" ] }, { @@ -10613,7 +10629,7 @@ "kernelrelease": "4.19.148-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.148-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-3.ph3.x86_64.rpm" ] }, { @@ -10621,7 +10637,7 @@ "kernelrelease": "4.19.148-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-4.ph3.x86_64.rpm" ] }, { @@ -10629,7 +10645,7 @@ "kernelrelease": "4.19.148-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-5.ph3.x86_64.rpm" ] }, { @@ -10645,7 +10661,7 @@ "kernelrelease": "4.19.150-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.150-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm" ] }, { @@ -10653,7 +10669,7 @@ "kernelrelease": "4.19.154-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-1.ph3.x86_64.rpm" ] }, { @@ -10725,7 +10741,7 @@ "kernelrelease": "4.19.164-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.164-1.ph3.x86_64.rpm" ] }, { @@ -10733,7 +10749,7 @@ "kernelrelease": "4.19.164-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm" ] }, { @@ -10741,7 +10757,7 @@ "kernelrelease": "4.19.174-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-2.ph3.x86_64.rpm" ] }, { @@ -10765,7 +10781,7 @@ "kernelrelease": "4.19.177-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.177-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.177-1.ph3.x86_64.rpm" ] }, { @@ -10773,7 +10789,7 @@ "kernelrelease": "4.19.177-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.177-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" ] }, { @@ -10781,7 +10797,7 @@ "kernelrelease": "4.19.182-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.182-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-1.ph3.x86_64.rpm" ] }, { @@ -10789,7 +10805,7 @@ "kernelrelease": "4.19.182-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.182-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-2.ph3.x86_64.rpm" ] }, { @@ -10797,7 +10813,7 @@ "kernelrelease": "4.19.186-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-1.ph3.x86_64.rpm" ] }, { @@ -10805,7 +10821,7 @@ "kernelrelease": "4.19.186-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-2.ph3.x86_64.rpm" ] }, { @@ -10813,7 +10829,7 @@ "kernelrelease": "4.19.186-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.186-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-3.ph3.x86_64.rpm" ] }, { @@ -10829,7 +10845,7 @@ "kernelrelease": "4.19.189-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-2.ph3.x86_64.rpm" ] }, { @@ -10845,7 +10861,7 @@ "kernelrelease": "4.19.189-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" ] }, { @@ -10861,7 +10877,7 @@ "kernelrelease": "4.19.190-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.190-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-1.ph3.x86_64.rpm" ] }, { @@ -10885,7 +10901,7 @@ "kernelrelease": "4.19.191-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-1.ph3.x86_64.rpm" ] }, { @@ -10901,7 +10917,7 @@ "kernelrelease": "4.19.191-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-3.ph3.x86_64.rpm" ] }, { @@ -10933,7 +10949,7 @@ "kernelrelease": "4.19.198-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-4.ph3.x86_64.rpm" ] }, { @@ -10941,7 +10957,7 @@ "kernelrelease": "4.19.205-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.205-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.205-1.ph3.x86_64.rpm" ] }, { @@ -10949,7 +10965,7 @@ "kernelrelease": "4.19.208-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.208-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.208-1.ph3.x86_64.rpm" ] }, { @@ -10957,7 +10973,7 @@ "kernelrelease": "4.19.214-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-3.ph3.x86_64.rpm" ] }, { @@ -10973,7 +10989,7 @@ "kernelrelease": "4.19.217-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.217-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.217-1.ph3.x86_64.rpm" ] }, { @@ -10981,7 +10997,7 @@ "kernelrelease": "4.19.219-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-1.ph3.x86_64.rpm" ] }, { @@ -10989,7 +11005,7 @@ "kernelrelease": "4.19.219-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-3.ph3.x86_64.rpm" ] }, { @@ -10997,7 +11013,7 @@ "kernelrelease": "4.19.219-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm" ] }, { @@ -11005,7 +11021,7 @@ "kernelrelease": "4.19.219-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-5.ph3.x86_64.rpm" ] }, { @@ -11029,7 +11045,7 @@ "kernelrelease": "4.19.225-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-3.ph3.x86_64.rpm" ] }, { @@ -11045,7 +11061,7 @@ "kernelrelease": "4.19.229-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-1.ph3.x86_64.rpm" ] }, { @@ -11053,7 +11069,7 @@ "kernelrelease": "4.19.229-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.229-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-2.ph3.x86_64.rpm" ] }, { @@ -11069,7 +11085,7 @@ "kernelrelease": "4.19.232-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-1.ph3.x86_64.rpm" ] }, { @@ -11085,7 +11101,7 @@ "kernelrelease": "4.19.232-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm" ] }, { @@ -11093,7 +11109,7 @@ "kernelrelease": "4.19.232-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-4.ph3.x86_64.rpm" ] }, { @@ -11101,7 +11117,7 @@ "kernelrelease": "4.19.241-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.241-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.241-1.ph3.x86_64.rpm" ] }, { @@ -11117,7 +11133,7 @@ "kernelrelease": "4.19.245-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.245-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.245-1.ph3.x86_64.rpm" ] }, { @@ -11125,7 +11141,23 @@ "kernelrelease": "4.19.247-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.247-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.247-2.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-3.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-3.ph3.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-4.ph3.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.247-4.ph3.x86_64.rpm" ] }, { @@ -11149,7 +11181,7 @@ "kernelrelease": "4.19.40-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-2.ph3.x86_64.rpm" ] }, { @@ -11157,7 +11189,7 @@ "kernelrelease": "4.19.40-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" ] }, { @@ -11213,7 +11245,7 @@ "kernelrelease": "4.19.72-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-2.ph3.x86_64.rpm" ] }, { @@ -11237,7 +11269,7 @@ "kernelrelease": "4.19.79-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.79-1.ph3.x86_64.rpm" ] }, { @@ -11253,7 +11285,7 @@ "kernelrelease": "4.19.82-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.82-1.ph3.x86_64.rpm" ] }, { @@ -11285,7 +11317,7 @@ "kernelrelease": "4.19.87-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.87-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" ] }, { @@ -11301,7 +11333,7 @@ "kernelrelease": "4.19.97-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" ] }, { @@ -11309,7 +11341,7 @@ "kernelrelease": "4.19.97-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm" ] }, { @@ -11325,7 +11357,7 @@ "kernelrelease": "4.19.97-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-4.ph3.x86_64.rpm" ] }, { @@ -11333,7 +11365,7 @@ "kernelrelease": "4.19.97-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" ] }, { @@ -11349,7 +11381,7 @@ "kernelrelease": "4.19.115-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm" ] }, { @@ -11373,7 +11405,7 @@ "kernelrelease": "4.19.160-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.160-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-1.ph3.x86_64.rpm" ] }, { @@ -11381,7 +11413,7 @@ "kernelrelease": "4.19.174-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.174-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-1.ph3.x86_64.rpm" ] }, { @@ -11445,7 +11477,7 @@ "kernelrelease": "4.19.132-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-4.ph3.x86_64.rpm" ] }, { @@ -11485,7 +11517,7 @@ "kernelrelease": "4.19.191-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" ] }, { @@ -11493,7 +11525,7 @@ "kernelrelease": "4.19.191-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm" ] }, { @@ -11573,7 +11605,7 @@ "kernelrelease": "5.10.103-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-1.ph4.x86_64.rpm" ] }, { @@ -11581,7 +11613,7 @@ "kernelrelease": "5.10.103-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-2.ph4.x86_64.rpm" ] }, { @@ -11589,7 +11621,7 @@ "kernelrelease": "5.10.103-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-3.ph4.x86_64.rpm" ] }, { @@ -11597,7 +11629,7 @@ "kernelrelease": "5.10.103-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" ] }, { @@ -11605,7 +11637,7 @@ "kernelrelease": "5.10.109-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.109-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-2.ph4.x86_64.rpm" ] }, { @@ -11621,7 +11653,7 @@ "kernelrelease": "5.10.109-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-4.ph4.x86_64.rpm" ] }, { @@ -11629,7 +11661,7 @@ "kernelrelease": "5.10.118-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.118-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-1.ph4.x86_64.rpm" ] }, { @@ -11637,7 +11669,15 @@ "kernelrelease": "5.10.118-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-devel-5.10.118-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.118-2.ph4.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-3.ph4.x86_64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.118-3.ph4.x86_64.rpm" ] }, { @@ -11645,7 +11685,7 @@ "kernelrelease": "5.10.25-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-1.ph4.x86_64.rpm" ] }, { @@ -11669,7 +11709,7 @@ "kernelrelease": "5.10.25-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-3.ph4.x86_64.rpm" ] }, { @@ -11685,7 +11725,7 @@ "kernelrelease": "5.10.25-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-6.ph4.x86_64.rpm" ] }, { @@ -11709,7 +11749,7 @@ "kernelrelease": "5.10.35-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.35-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.35-1.ph4.x86_64.rpm" ] }, { @@ -11717,7 +11757,7 @@ "kernelrelease": "5.10.35-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm" ] }, { @@ -11757,7 +11797,7 @@ "kernelrelease": "5.10.42-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-2.ph4.x86_64.rpm" ] }, { @@ -11765,7 +11805,7 @@ "kernelrelease": "5.10.42-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-3.ph4.x86_64.rpm" ] }, { @@ -11773,7 +11813,7 @@ "kernelrelease": "5.10.46-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-1.ph4.x86_64.rpm" ] }, { @@ -11781,7 +11821,7 @@ "kernelrelease": "5.10.46-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.46-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-2.ph4.x86_64.rpm" ] }, { @@ -11789,7 +11829,7 @@ "kernelrelease": "5.10.52-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.52-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.52-1.ph4.x86_64.rpm" ] }, { @@ -11813,7 +11853,7 @@ "kernelrelease": "5.10.61-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.61-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-2.ph4.x86_64.rpm" ] }, { @@ -11821,7 +11861,7 @@ "kernelrelease": "5.10.75-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.75-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.75-1.ph4.x86_64.rpm" ] }, { @@ -11861,7 +11901,7 @@ "kernelrelease": "5.10.83-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm" ] }, { @@ -11869,7 +11909,7 @@ "kernelrelease": "5.10.83-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-4.ph4.x86_64.rpm" ] }, { @@ -11877,7 +11917,7 @@ "kernelrelease": "5.10.83-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-5.ph4.x86_64.rpm" ] }, { @@ -11901,7 +11941,7 @@ "kernelrelease": "5.10.93-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-1.ph4.x86_64.rpm" ] }, { @@ -11909,7 +11949,7 @@ "kernelrelease": "5.10.93-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-3.ph4.x86_64.rpm" ] }, { @@ -11917,7 +11957,7 @@ "kernelrelease": "5.10.93-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm" ] }, { @@ -12055,25 +12095,12 @@ "kernelrelease": "5.18.5-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-amd64_5.18.5-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-amd64_5.18.5-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-amd64_5.18.5-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-amd64_5.18.5-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.16.12-1~bpo11+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.16_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common-rt_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-common_5.16.12-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-rt-amd64_5.16.12-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.16.0-0.bpo.4-cloud-amd64_5.16.12-1~bpo11+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-amd64_5.18.5-1_amd64.deb" ] }, { @@ -12083,10 +12110,10 @@ "headers": [ "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-amd64_5.18.2-1~bpo11+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-amd64_5.18.2-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-amd64_5.18.2-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-amd64_5.18.2-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb" ] }, { @@ -12094,12 +12121,12 @@ "kernelrelease": "5.10.113-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb" ] }, { @@ -12107,51 +12134,51 @@ "kernelrelease": "5.10.120-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.84-1-amd64", + "kernelrelease": "5.10.127-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-rt-amd64_5.10.127-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-common_5.10.127-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-cloud-amd64_5.10.127-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-amd64_5.10.127-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-common-rt_5.10.127-1_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-1-amd64", + "kernelrelease": "5.10.84-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.103-1~bpo10+1-amd64", + "kernelrelease": "5.10.106-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-rt-amd64_5.10.103-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common-rt_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-common_5.10.103-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.12-cloud-amd64_5.10.103-1~bpo10+1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb" ] }, { @@ -12159,12 +12186,12 @@ "kernelrelease": "4.19.208-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb" ] }, { @@ -12173,11 +12200,24 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.19~rc4-1~exp1-amd64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-common_5.19~rc4-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-cloud-amd64_5.19~rc4-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-amd64_5.19~rc4-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-rt-amd64_5.19~rc4-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.19_5.19~rc4-1~exp1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-common-rt_5.19~rc4-1~exp1_all.deb" ] }, { @@ -12185,9 +12225,9 @@ "kernelrelease": "3.16.56-1+deb8u1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb" ] }, { @@ -12195,12 +12235,12 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" ] }, { @@ -12208,9 +12248,9 @@ "kernelrelease": "4.9.65-2+grsecunoff1~bpo9+1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-common-grsec_4.9.65-2+grsecunoff1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-common-grsec_4.9.65-2+grsecunoff1~bpo9+1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb" ] }, { @@ -12218,10 +12258,10 @@ "kernelrelease": "4.9.228-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb" ] }, @@ -12230,11 +12270,11 @@ "kernelrelease": "5.10.103-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb" ] }, @@ -12243,22 +12283,35 @@ "kernelrelease": "4.19.232-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.249-2-amd64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-cloud-amd64_4.19.249-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-amd64_4.19.249-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common_4.19.249-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common-rt_4.19.249-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-rt-amd64_4.19.249-2_amd64.deb" + ] + }, { "kernelversion": 1, "kernelrelease": "3.16.81-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb" ] }, { @@ -12266,9 +12319,9 @@ "kernelrelease": "3.16.84-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-amd64_3.16.84-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-common_3.16.84-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-amd64_3.16.84-1_amd64.deb" ] }, { @@ -12276,10 +12329,10 @@ "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb" ] }, @@ -12288,11 +12341,11 @@ "kernelrelease": "4.9.210-1+deb9u1~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb" ] }, { @@ -12300,23 +12353,35 @@ "kernelrelease": "4.9.303-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.9.320-2-amd64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common-rt_4.9.320-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-rt-amd64_4.9.320-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common_4.9.320-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-amd64_4.9.320-2_amd64.deb" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.232-1~deb9u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb" ] } @@ -12327,9 +12392,9 @@ "kernelrelease": "4.15.0-1087-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb" ] }, @@ -12338,10 +12403,10 @@ "kernelrelease": "4.15.0-1088-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" ] }, { @@ -12349,10 +12414,10 @@ "kernelrelease": "4.15.0-1093-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb" ] }, { @@ -12360,10 +12425,43 @@ "kernelrelease": "4.15.0-1094-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb" + ] + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1102-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1102-oracle_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1102-oracle_4.15.0-1102.113_amd64.deb" + ] + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1102-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" + ] + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1102-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" ] }, { @@ -12371,9 +12469,9 @@ "kernelrelease": "4.15.0-1103-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb" ] }, @@ -12383,9 +12481,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb" ] }, { @@ -12393,10 +12491,10 @@ "kernelrelease": "4.15.0-1104-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" ] }, { @@ -12406,8 +12504,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb" ] }, { @@ -12416,9 +12514,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb" ] }, { @@ -12427,9 +12525,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb" ] }, { @@ -12437,10 +12535,10 @@ "kernelrelease": "4.15.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" ] }, { @@ -12448,8 +12546,8 @@ "kernelrelease": "4.15.0-1113-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" ] @@ -12461,8 +12559,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" ] }, { @@ -12471,9 +12569,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb" ] }, { @@ -12482,9 +12580,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" ] }, { @@ -12492,10 +12590,10 @@ "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" ] }, { @@ -12505,8 +12603,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" ] }, { @@ -12515,8 +12613,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb" ] }, @@ -12525,10 +12623,10 @@ "kernelrelease": "4.15.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" ] }, { @@ -12537,9 +12635,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb" ] }, { @@ -12547,10 +12645,10 @@ "kernelrelease": "4.15.0-1120-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb" ] }, { @@ -12558,10 +12656,10 @@ "kernelrelease": "4.15.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" ] }, { @@ -12570,9 +12668,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" ] }, { @@ -12580,10 +12678,10 @@ "kernelrelease": "4.15.0-1122-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" ] }, { @@ -12592,9 +12690,20 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb" + ] + }, + { + "kernelversion": "128", + "kernelrelease": "4.15.0-1123-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1123_4.15.0-1123.128_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1123-kvm_4.15.0-1123.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1123_4.15.0-1123.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1123-kvm_4.15.0-1123.128_amd64.deb" ] }, { @@ -12602,10 +12711,10 @@ "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" ] }, { @@ -12613,10 +12722,10 @@ "kernelrelease": "4.15.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" ] }, { @@ -12624,10 +12733,10 @@ "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" ] }, { @@ -12635,10 +12744,10 @@ "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb" ] }, { @@ -12646,10 +12755,10 @@ "kernelrelease": "4.15.0-1129-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" ] }, { @@ -12657,10 +12766,10 @@ "kernelrelease": "4.15.0-1130-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb" ] }, { @@ -12669,9 +12778,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb" ] }, { @@ -12679,10 +12788,10 @@ "kernelrelease": "4.15.0-1134-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb" ] }, { @@ -12690,12 +12799,23 @@ "kernelrelease": "4.15.0-1135-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" ] }, + { + "kernelversion": "148", + "kernelrelease": "4.15.0-1137-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_amd64.deb" + ] + }, { "kernelversion": "151", "kernelrelease": "4.15.0-1138-azure-4.15", @@ -12712,10 +12832,10 @@ "kernelrelease": "4.15.0-1139-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb" ] }, { @@ -12723,12 +12843,25 @@ "kernelrelease": "4.15.0-188", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb" + ] + }, + { + "kernelversion": "200", + "kernelrelease": "4.15.0-189", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-lowlatency_4.15.0-189.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-lowlatency_4.15.0-189.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_amd64.deb" ] }, { @@ -12736,10 +12869,10 @@ "kernelrelease": "5.0.0-1028-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" ] }, { @@ -12747,34 +12880,34 @@ "kernelrelease": "5.4.0-100-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb" ] }, { "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1032-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb" ] }, { "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1032-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { @@ -12782,10 +12915,10 @@ "kernelrelease": "5.4.0-1034-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -12793,10 +12926,10 @@ "kernelrelease": "5.4.0-1034-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -12804,10 +12937,10 @@ "kernelrelease": "5.4.0-1034-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { @@ -12815,9 +12948,9 @@ "kernelrelease": "5.4.0-1040-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" ] }, @@ -12826,10 +12959,10 @@ "kernelrelease": "5.4.0-1043-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb" ] }, { @@ -12837,12 +12970,12 @@ "kernelrelease": "5.4.0-105-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" ] }, { @@ -12850,10 +12983,10 @@ "kernelrelease": "5.4.0-1056-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { @@ -12862,31 +12995,31 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1058-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb" ] }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1058-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" ] }, { @@ -12896,10 +13029,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" ] }, { @@ -12918,32 +13051,32 @@ "kernelrelease": "5.4.0-1060-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1061-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1061-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { @@ -12951,32 +13084,32 @@ "kernelrelease": "5.4.0-1061-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" ] }, { "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1062-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb" ] }, { @@ -12985,9 +13118,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" ] }, { @@ -12995,21 +13128,10 @@ "kernelrelease": "5.4.0-1063-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb" ] }, { @@ -13017,9 +13139,9 @@ "kernelrelease": "5.4.0-1063-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" ] }, @@ -13028,21 +13150,21 @@ "kernelrelease": "5.4.0-1063-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { @@ -13050,21 +13172,21 @@ "kernelrelease": "5.4.0-1064-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" ] }, { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb" ] }, { @@ -13072,32 +13194,32 @@ "kernelrelease": "5.4.0-1064-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1065-gcp-5.4", + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" ] }, { "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1065-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" ] }, { @@ -13105,10 +13227,21 @@ "kernelrelease": "5.4.0-1066-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { @@ -13117,8 +13250,8 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" ] }, @@ -13127,8 +13260,8 @@ "kernelrelease": "5.4.0-1068-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" ] @@ -13139,8 +13272,8 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" ] }, @@ -13149,10 +13282,10 @@ "kernelrelease": "5.4.0-1068-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" ] }, { @@ -13160,10 +13293,10 @@ "kernelrelease": "5.4.0-1069-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { @@ -13171,10 +13304,10 @@ "kernelrelease": "5.4.0-1069-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" ] }, { @@ -13182,10 +13315,10 @@ "kernelrelease": "5.4.0-1069-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" ] }, { @@ -13193,10 +13326,10 @@ "kernelrelease": "5.4.0-1069-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { @@ -13204,10 +13337,10 @@ "kernelrelease": "5.4.0-1070-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" ] }, { @@ -13215,9 +13348,9 @@ "kernelrelease": "5.4.0-1070-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb" ] }, @@ -13226,10 +13359,10 @@ "kernelrelease": "5.4.0-1071-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb" ] }, { @@ -13237,10 +13370,10 @@ "kernelrelease": "5.4.0-1071-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb" ] }, { @@ -13248,10 +13381,10 @@ "kernelrelease": "5.4.0-1071-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb" ] }, { @@ -13259,8 +13392,8 @@ "kernelrelease": "5.4.0-1071-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" ] @@ -13270,43 +13403,43 @@ "kernelrelease": "5.4.0-1072-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" ] }, - { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb" - ] - }, { "kernelversion": "78~18.04.1", "kernelrelease": "5.4.0-1073-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb" ] }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" + ] + }, { "kernelversion": "80~18.04.1", "kernelrelease": "5.4.0-1075-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb" ] }, { @@ -13314,9 +13447,9 @@ "kernelrelease": "5.4.0-1075-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" ] }, @@ -13325,8 +13458,8 @@ "kernelrelease": "5.4.0-1076-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" ] @@ -13336,9 +13469,9 @@ "kernelrelease": "5.4.0-1078-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" ] }, @@ -13347,10 +13480,10 @@ "kernelrelease": "5.4.0-1079-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb" ] }, { @@ -13359,11 +13492,33 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" + ] + }, + { + "kernelversion": "88~18.04.1", + "kernelrelease": "5.4.0-1081-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-1086-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb" ] }, { @@ -13371,12 +13526,12 @@ "kernelrelease": "5.4.0-110-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" ] }, { @@ -13384,12 +13539,12 @@ "kernelrelease": "5.4.0-112-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" ] }, { @@ -13397,12 +13552,25 @@ "kernelrelease": "5.4.0-121-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "138~18.04.1", + "kernelrelease": "5.4.0-122-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138~18.04.1_amd64.deb" ] }, { @@ -13410,12 +13578,12 @@ "kernelrelease": "5.4.0-91-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" ] }, { @@ -13423,12 +13591,12 @@ "kernelrelease": "5.4.0-97-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb" ] }, { @@ -13436,12 +13604,12 @@ "kernelrelease": "5.4.0-99-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb" ] }, { @@ -13449,10 +13617,10 @@ "kernelrelease": "4.15.0-1006-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb" ] }, { @@ -13460,10 +13628,10 @@ "kernelrelease": "4.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" ] }, { @@ -13471,9 +13639,9 @@ "kernelrelease": "4.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb" ] }, @@ -13482,10 +13650,10 @@ "kernelrelease": "4.15.0-1008-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" ] }, { @@ -13493,21 +13661,21 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" ] }, { @@ -13517,19 +13685,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" ] }, { "kernelversion": "9", - "kernelrelease": "4.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1009-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" ] }, { @@ -13537,10 +13705,10 @@ "kernelrelease": "4.15.0-1009-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" ] }, { @@ -13549,8 +13717,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" ] }, @@ -13559,34 +13727,34 @@ "kernelrelease": "4.15.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1010-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" ] }, { "kernelversion": "10", - "kernelrelease": "4.15.0-1010-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1010-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb" ] }, { @@ -13594,10 +13762,10 @@ "kernelrelease": "4.15.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" ] }, { @@ -13605,21 +13773,10 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb" ] }, { @@ -13627,20 +13784,31 @@ "kernelrelease": "4.15.0-1011-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" ] }, + { + "kernelversion": "11", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + ] + }, { "kernelversion": "12", "kernelrelease": "4.15.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" ] }, @@ -13660,8 +13828,8 @@ "kernelrelease": "4.15.0-1012-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" ] @@ -13671,10 +13839,10 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb" ] }, { @@ -13683,9 +13851,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" ] }, { @@ -13693,32 +13861,32 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1014-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" ] }, { "kernelversion": "14", - "kernelrelease": "4.15.0-1014-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" ] }, { @@ -13726,8 +13894,8 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" ] @@ -13749,9 +13917,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" ] }, { @@ -13759,10 +13927,10 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" ] }, { @@ -13770,10 +13938,10 @@ "kernelrelease": "4.15.0-1016-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" ] }, { @@ -13782,31 +13950,31 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" ] }, { "kernelversion": "17", - "kernelrelease": "4.15.0-1017-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" ] }, { "kernelversion": "17", - "kernelrelease": "4.15.0-1017-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1017-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" ] }, { @@ -13814,10 +13982,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" ] }, { @@ -13825,10 +13993,10 @@ "kernelrelease": "4.15.0-1017-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb" ] }, { @@ -13836,10 +14004,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" ] }, { @@ -13848,9 +14016,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb" ] }, { @@ -13858,10 +14026,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" ] }, { @@ -13869,10 +14037,10 @@ "kernelrelease": "4.15.0-1018-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" ] }, { @@ -13881,22 +14049,11 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb" ] }, - { - "kernelversion": "19", - "kernelrelease": "4.15.0-1019-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" - ] - }, { "kernelversion": "19", "kernelrelease": "4.15.0-1019-kvm", @@ -13904,8 +14061,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb" ] }, { @@ -13913,19 +14070,30 @@ "kernelrelease": "4.15.0-1019-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" ] }, + { + "kernelversion": "19", + "kernelrelease": "4.15.0-1019-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" + ] + }, { "kernelversion": "20", "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb" ] @@ -13935,10 +14103,10 @@ "kernelrelease": "4.15.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { @@ -13946,21 +14114,21 @@ "kernelrelease": "4.15.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "4.15.0-1021-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "4.15.0-1021-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" ] }, { @@ -13968,21 +14136,21 @@ "kernelrelease": "4.15.0-1021-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "4.15.0-1021-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1021-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" ] }, { @@ -13990,10 +14158,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" ] }, { @@ -14001,10 +14169,10 @@ "kernelrelease": "4.15.0-1021-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" ] }, { @@ -14012,9 +14180,9 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb" ] }, @@ -14025,8 +14193,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" ] }, { @@ -14034,10 +14202,10 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb" ] }, { @@ -14045,10 +14213,10 @@ "kernelrelease": "4.15.0-1023-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { @@ -14057,9 +14225,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { @@ -14067,10 +14235,10 @@ "kernelrelease": "4.15.0-1023-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" ] }, { @@ -14078,10 +14246,10 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" ] }, { @@ -14089,9 +14257,9 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" ] }, @@ -14101,9 +14269,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" ] }, { @@ -14111,8 +14279,8 @@ "kernelrelease": "4.15.0-1025-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb" ] @@ -14123,9 +14291,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb" ] }, { @@ -14133,10 +14301,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb" ] }, { @@ -14144,10 +14312,10 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb" ] }, { @@ -14155,10 +14323,10 @@ "kernelrelease": "4.15.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" ] }, { @@ -14166,10 +14334,10 @@ "kernelrelease": "4.15.0-1026-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" ] }, { @@ -14177,21 +14345,10 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" - ] - }, - { - "kernelversion": "27", - "kernelrelease": "4.15.0-1027-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb" ] }, { @@ -14199,21 +14356,32 @@ "kernelrelease": "4.15.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, + { + "kernelversion": "27", + "kernelrelease": "4.15.0-1027-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + ] + }, { "kernelversion": "28", "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" ] }, { @@ -14221,32 +14389,32 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" ] }, { "kernelversion": "29", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb" ] }, { @@ -14256,8 +14424,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb" ] }, { @@ -14266,9 +14434,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" ] }, { @@ -14277,9 +14445,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" ] }, { @@ -14287,8 +14455,8 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" ] @@ -14298,9 +14466,9 @@ "kernelrelease": "4.15.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" ] }, @@ -14309,10 +14477,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" ] }, { @@ -14320,10 +14488,10 @@ "kernelrelease": "4.15.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" ] }, { @@ -14331,10 +14499,10 @@ "kernelrelease": "4.15.0-1030-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" ] }, { @@ -14342,10 +14510,10 @@ "kernelrelease": "4.15.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb" ] }, { @@ -14353,8 +14521,8 @@ "kernelrelease": "4.15.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" ] @@ -14364,10 +14532,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb" ] }, { @@ -14375,8 +14543,8 @@ "kernelrelease": "4.15.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb" ] @@ -14386,32 +14554,32 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1032-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1032-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { @@ -14419,10 +14587,10 @@ "kernelrelease": "4.15.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" ] }, { @@ -14430,10 +14598,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb" ] }, { @@ -14441,10 +14609,10 @@ "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { @@ -14452,9 +14620,9 @@ "kernelrelease": "4.15.0-1033-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" ] }, @@ -14463,10 +14631,10 @@ "kernelrelease": "4.15.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" ] }, { @@ -14474,10 +14642,10 @@ "kernelrelease": "4.15.0-1033-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb" ] }, { @@ -14486,8 +14654,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" ] }, @@ -14497,9 +14665,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" ] }, { @@ -14507,10 +14675,10 @@ "kernelrelease": "4.15.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" ] }, { @@ -14518,10 +14686,10 @@ "kernelrelease": "4.15.0-1034-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" ] }, { @@ -14529,10 +14697,10 @@ "kernelrelease": "4.15.0-1034-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb" ] }, { @@ -14540,10 +14708,10 @@ "kernelrelease": "4.15.0-1034-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb" ] }, { @@ -14551,10 +14719,10 @@ "kernelrelease": "4.15.0-1035-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb" ] }, { @@ -14562,9 +14730,9 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb" ] }, @@ -14573,10 +14741,10 @@ "kernelrelease": "4.15.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" ] }, { @@ -14584,10 +14752,10 @@ "kernelrelease": "4.15.0-1035-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb" ] }, { @@ -14596,20 +14764,20 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" ] }, { @@ -14617,21 +14785,21 @@ "kernelrelease": "4.15.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" ] }, { "kernelversion": "38", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1036-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" ] }, { @@ -14640,8 +14808,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" ] }, @@ -14650,9 +14818,9 @@ "kernelrelease": "4.15.0-1037-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" ] }, @@ -14662,31 +14830,31 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1037-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" ] }, { @@ -14694,8 +14862,8 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" ] @@ -14705,10 +14873,10 @@ "kernelrelease": "4.15.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb" ] }, { @@ -14727,10 +14895,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb" ] }, { @@ -14738,10 +14906,10 @@ "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" ] }, { @@ -14750,9 +14918,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" ] }, { @@ -14760,21 +14928,10 @@ "kernelrelease": "4.15.0-1039-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1039-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" ] }, { @@ -14782,54 +14939,54 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws", + "kernelversion": "43", + "kernelrelease": "4.15.0-1039-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1040-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1040-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" ] }, { @@ -14837,10 +14994,10 @@ "kernelrelease": "4.15.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, { @@ -14848,32 +15005,32 @@ "kernelrelease": "4.15.0-1041-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb" ] }, { - "kernelversion": "44", + "kernelversion": "45", "kernelrelease": "4.15.0-1042-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" ] }, { @@ -14882,9 +15039,20 @@ "target": "ubuntu-gke-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" + ] + }, + { + "kernelversion": "44", + "kernelrelease": "4.15.0-1042-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" ] }, { @@ -14892,10 +15060,10 @@ "kernelrelease": "4.15.0-1042-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" ] }, { @@ -14903,10 +15071,10 @@ "kernelrelease": "4.15.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" ] }, { @@ -14916,8 +15084,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" ] }, { @@ -14926,20 +15094,20 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws", + "kernelrelease": "4.15.0-1044-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" ] }, { @@ -14947,21 +15115,21 @@ "kernelrelease": "4.15.0-1044-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1044-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { @@ -14971,8 +15139,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" ] }, { @@ -14980,10 +15148,10 @@ "kernelrelease": "4.15.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb" ] }, { @@ -14991,10 +15159,10 @@ "kernelrelease": "4.15.0-1045-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" ] }, { @@ -15002,10 +15170,10 @@ "kernelrelease": "4.15.0-1045-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb" ] }, { @@ -15014,9 +15182,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb" ] }, { @@ -15024,9 +15192,9 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb" ] }, @@ -15035,8 +15203,8 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" ] @@ -15046,10 +15214,10 @@ "kernelrelease": "4.15.0-1046-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" ] }, { @@ -15057,10 +15225,10 @@ "kernelrelease": "4.15.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" ] }, { @@ -15068,10 +15236,10 @@ "kernelrelease": "4.15.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb" ] }, { @@ -15079,9 +15247,9 @@ "kernelrelease": "4.15.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" ] }, @@ -15090,21 +15258,10 @@ "kernelrelease": "4.15.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "4.15.0-1047-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" ] }, { @@ -15118,15 +15275,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" ] }, + { + "kernelversion": "51", + "kernelrelease": "4.15.0-1047-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + ] + }, { "kernelversion": "50", "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb" ] }, { @@ -15134,10 +15302,10 @@ "kernelrelease": "4.15.0-1048-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" ] }, { @@ -15146,9 +15314,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" ] }, { @@ -15156,9 +15324,9 @@ "kernelrelease": "4.15.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" ] }, @@ -15167,10 +15335,10 @@ "kernelrelease": "4.15.0-1049-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] }, { @@ -15178,10 +15346,10 @@ "kernelrelease": "4.15.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] }, { @@ -15189,32 +15357,32 @@ "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1050-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1050-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" ] }, { @@ -15222,9 +15390,9 @@ "kernelrelease": "4.15.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" ] }, @@ -15233,10 +15401,10 @@ "kernelrelease": "4.15.0-1050-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" ] }, { @@ -15244,10 +15412,10 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" ] }, { @@ -15256,9 +15424,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { @@ -15266,9 +15434,9 @@ "kernelrelease": "4.15.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" ] }, @@ -15277,10 +15445,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" ] }, { @@ -15288,10 +15456,10 @@ "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" ] }, { @@ -15299,9 +15467,9 @@ "kernelrelease": "4.15.0-1052-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb" ] }, @@ -15311,9 +15479,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" ] }, { @@ -15321,10 +15489,10 @@ "kernelrelease": "4.15.0-1053-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" ] }, { @@ -15334,8 +15502,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" ] }, { @@ -15343,9 +15511,9 @@ "kernelrelease": "4.15.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" ] }, @@ -15365,10 +15533,10 @@ "kernelrelease": "4.15.0-1055-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" ] }, { @@ -15377,8 +15545,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" ] }, @@ -15388,9 +15556,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb" ] }, { @@ -15398,9 +15566,9 @@ "kernelrelease": "4.15.0-1056-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" ] }, @@ -15410,9 +15578,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" ] }, { @@ -15420,10 +15588,10 @@ "kernelrelease": "4.15.0-1057-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb" ] }, { @@ -15443,9 +15611,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb" ] }, { @@ -15453,10 +15621,10 @@ "kernelrelease": "4.15.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" ] }, { @@ -15475,9 +15643,9 @@ "kernelrelease": "4.15.0-1058-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" ] }, @@ -15497,10 +15665,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" ] }, { @@ -15508,9 +15676,9 @@ "kernelrelease": "4.15.0-1059-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" ] }, @@ -15521,8 +15689,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb" ] }, { @@ -15530,8 +15698,8 @@ "kernelrelease": "4.15.0-1059-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" ] @@ -15541,12 +15709,12 @@ "kernelrelease": "4.15.0-106", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb" ] }, { @@ -15554,10 +15722,10 @@ "kernelrelease": "4.15.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" ] }, { @@ -15565,10 +15733,10 @@ "kernelrelease": "4.15.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" ] }, { @@ -15576,10 +15744,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb" ] }, { @@ -15587,10 +15755,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" ] }, { @@ -15598,10 +15766,10 @@ "kernelrelease": "4.15.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] }, { @@ -15609,10 +15777,10 @@ "kernelrelease": "4.15.0-1063-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" ] }, { @@ -15620,10 +15788,10 @@ "kernelrelease": "4.15.0-1063-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" ] }, { @@ -15632,9 +15800,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" ] }, { @@ -15642,10 +15810,10 @@ "kernelrelease": "4.15.0-1064-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" ] }, { @@ -15653,10 +15821,10 @@ "kernelrelease": "4.15.0-1064-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb" ] }, { @@ -15665,9 +15833,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" ] }, { @@ -15675,10 +15843,10 @@ "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, { @@ -15686,10 +15854,10 @@ "kernelrelease": "4.15.0-1065-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" ] }, { @@ -15697,10 +15865,10 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" ] }, { @@ -15710,8 +15878,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { @@ -15719,10 +15887,10 @@ "kernelrelease": "4.15.0-1066-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" ] }, { @@ -15730,10 +15898,10 @@ "kernelrelease": "4.15.0-1066-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" ] }, { @@ -15743,8 +15911,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" ] }, { @@ -15752,10 +15920,10 @@ "kernelrelease": "4.15.0-1067-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" ] }, { @@ -15763,9 +15931,9 @@ "kernelrelease": "4.15.0-1067-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" ] }, @@ -15774,10 +15942,10 @@ "kernelrelease": "4.15.0-1067-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" ] }, { @@ -15785,9 +15953,9 @@ "kernelrelease": "4.15.0-1067-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" ] }, @@ -15796,10 +15964,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" ] }, { @@ -15807,9 +15975,9 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" ] }, @@ -15818,10 +15986,10 @@ "kernelrelease": "4.15.0-1069-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb" ] }, { @@ -15829,10 +15997,10 @@ "kernelrelease": "4.15.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb" ] }, { @@ -15841,9 +16009,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb" ] }, { @@ -15851,10 +16019,10 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb" ] }, { @@ -15862,10 +16030,10 @@ "kernelrelease": "4.15.0-1070-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" ] }, { @@ -15873,10 +16041,10 @@ "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" ] }, { @@ -15885,9 +16053,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb" ] }, { @@ -15895,10 +16063,10 @@ "kernelrelease": "4.15.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" ] }, { @@ -15917,10 +16085,10 @@ "kernelrelease": "4.15.0-1072-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb" ] }, { @@ -15939,9 +16107,9 @@ "kernelrelease": "4.15.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" ] }, @@ -15950,10 +16118,10 @@ "kernelrelease": "4.15.0-1073-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" ] }, { @@ -15961,10 +16129,10 @@ "kernelrelease": "4.15.0-1073-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb" ] }, { @@ -15973,8 +16141,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" ] }, @@ -15994,10 +16162,10 @@ "kernelrelease": "4.15.0-1075-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" ] }, { @@ -16016,10 +16184,10 @@ "kernelrelease": "4.15.0-1076-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" ] }, { @@ -16028,9 +16196,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" ] }, { @@ -16038,10 +16206,10 @@ "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" ] }, { @@ -16049,10 +16217,10 @@ "kernelrelease": "4.15.0-1077-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" ] }, { @@ -16061,9 +16229,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" ] }, { @@ -16071,9 +16239,9 @@ "kernelrelease": "4.15.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" ] }, @@ -16082,10 +16250,10 @@ "kernelrelease": "4.15.0-1078-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb" ] }, { @@ -16094,9 +16262,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" ] }, { @@ -16104,10 +16272,10 @@ "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" ] }, { @@ -16115,10 +16283,10 @@ "kernelrelease": "4.15.0-1079-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" ] }, { @@ -16126,9 +16294,9 @@ "kernelrelease": "4.15.0-1079-oem", "target": "ubuntu-oem", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" ] }, @@ -16137,9 +16305,9 @@ "kernelrelease": "4.15.0-1079-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" ] }, @@ -16149,11 +16317,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" ] }, { @@ -16161,10 +16329,10 @@ "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" ] }, { @@ -16172,8 +16340,8 @@ "kernelrelease": "4.15.0-1080-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb" ] @@ -16184,9 +16352,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" ] }, { @@ -16196,8 +16364,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb" ] }, { @@ -16205,10 +16373,10 @@ "kernelrelease": "4.15.0-1081-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" ] }, { @@ -16216,9 +16384,9 @@ "kernelrelease": "4.15.0-1081-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb" ] }, @@ -16227,10 +16395,10 @@ "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" ] }, { @@ -16239,8 +16407,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" ] }, @@ -16249,10 +16417,10 @@ "kernelrelease": "4.15.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb" ] }, { @@ -16260,10 +16428,10 @@ "kernelrelease": "4.15.0-1082-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" ] }, { @@ -16271,10 +16439,10 @@ "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" ] }, { @@ -16282,10 +16450,10 @@ "kernelrelease": "4.15.0-1083-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" ] }, { @@ -16293,10 +16461,10 @@ "kernelrelease": "4.15.0-1083-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" ] }, { @@ -16304,10 +16472,10 @@ "kernelrelease": "4.15.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" ] }, { @@ -16316,9 +16484,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb" ] }, { @@ -16327,9 +16495,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb" ] }, { @@ -16338,8 +16506,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb" ] }, @@ -16348,10 +16516,10 @@ "kernelrelease": "4.15.0-1086-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" ] }, { @@ -16359,10 +16527,10 @@ "kernelrelease": "4.15.0-1086-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" ] }, { @@ -16372,8 +16540,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" ] }, { @@ -16383,8 +16551,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" ] }, { @@ -16392,10 +16560,10 @@ "kernelrelease": "4.15.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb" ] }, { @@ -16403,8 +16571,8 @@ "kernelrelease": "4.15.0-1087-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb" ] @@ -16414,10 +16582,10 @@ "kernelrelease": "4.15.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" ] }, { @@ -16426,9 +16594,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb" ] }, { @@ -16436,10 +16604,10 @@ "kernelrelease": "4.15.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" ] }, { @@ -16448,9 +16616,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" ] }, { @@ -16458,11 +16626,11 @@ "kernelrelease": "4.15.0-109", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb" ] }, @@ -16472,8 +16640,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, @@ -16483,9 +16651,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" ] }, { @@ -16494,9 +16662,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" ] }, { @@ -16504,9 +16672,9 @@ "kernelrelease": "4.15.0-1090-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb" ] }, @@ -16516,9 +16684,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" ] }, { @@ -16526,9 +16694,9 @@ "kernelrelease": "4.15.0-1091-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, @@ -16537,10 +16705,10 @@ "kernelrelease": "4.15.0-1091-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, { @@ -16550,8 +16718,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb" ] }, { @@ -16559,9 +16727,9 @@ "kernelrelease": "4.15.0-1091-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" ] }, @@ -16570,10 +16738,10 @@ "kernelrelease": "4.15.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" ] }, { @@ -16581,10 +16749,10 @@ "kernelrelease": "4.15.0-1092-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" ] }, { @@ -16592,9 +16760,9 @@ "kernelrelease": "4.15.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" ] }, @@ -16603,10 +16771,10 @@ "kernelrelease": "4.15.0-1092-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" ] }, { @@ -16614,21 +16782,10 @@ "kernelrelease": "4.15.0-1093-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "4.15.0-1093-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" ] }, { @@ -16637,20 +16794,31 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb" ] }, + { + "kernelversion": "103", + "kernelrelease": "4.15.0-1093-oem", + "target": "ubuntu-oem", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" + ] + }, { "kernelversion": "106", "kernelrelease": "4.15.0-1093-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb" ] }, { @@ -16658,9 +16826,9 @@ "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" ] }, @@ -16670,9 +16838,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" ] }, { @@ -16680,10 +16848,10 @@ "kernelrelease": "4.15.0-1094-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" ] }, { @@ -16691,9 +16859,9 @@ "kernelrelease": "4.15.0-1094-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" ] }, @@ -16702,10 +16870,10 @@ "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" ] }, { @@ -16713,9 +16881,9 @@ "kernelrelease": "4.15.0-1095-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" ] }, @@ -16724,10 +16892,10 @@ "kernelrelease": "4.15.0-1095-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb" ] }, { @@ -16735,10 +16903,10 @@ "kernelrelease": "4.15.0-1095-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" ] }, { @@ -16746,10 +16914,10 @@ "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" ] }, { @@ -16757,10 +16925,10 @@ "kernelrelease": "4.15.0-1096-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb" ] }, { @@ -16769,9 +16937,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" ] }, { @@ -16779,10 +16947,10 @@ "kernelrelease": "4.15.0-1096-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" ] }, { @@ -16791,9 +16959,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" ] }, { @@ -16801,10 +16969,10 @@ "kernelrelease": "4.15.0-1097-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" ] }, { @@ -16823,10 +16991,10 @@ "kernelrelease": "4.15.0-1097-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb" ] }, { @@ -16836,8 +17004,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" ] }, { @@ -16845,10 +17013,10 @@ "kernelrelease": "4.15.0-1098-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" ] }, { @@ -16856,10 +17024,10 @@ "kernelrelease": "4.15.0-1098-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" ] }, { @@ -16867,10 +17035,10 @@ "kernelrelease": "4.15.0-1098-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb" ] }, { @@ -16878,10 +17046,10 @@ "kernelrelease": "4.15.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb" ] }, { @@ -16890,8 +17058,8 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" ] }, @@ -16900,8 +17068,8 @@ "kernelrelease": "4.15.0-1099-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" ] @@ -16911,10 +17079,10 @@ "kernelrelease": "4.15.0-1099-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" ] }, { @@ -16922,10 +17090,10 @@ "kernelrelease": "4.15.0-1099-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb" ] }, { @@ -16934,8 +17102,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb" ] }, @@ -16944,10 +17112,10 @@ "kernelrelease": "4.15.0-1100-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb" ] }, { @@ -16955,10 +17123,10 @@ "kernelrelease": "4.15.0-1100-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" ] }, { @@ -16967,8 +17135,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" ] }, @@ -16977,32 +17145,32 @@ "kernelrelease": "4.15.0-1101-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-1101-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "4.15.0-1101-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" ] }, { "kernelversion": "112", - "kernelrelease": "4.15.0-1101-oem", - "target": "ubuntu-oem", + "kernelrelease": "4.15.0-1101-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb" ] }, { @@ -17010,32 +17178,10 @@ "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1102-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1102-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" ] }, { @@ -17043,10 +17189,10 @@ "kernelrelease": "4.15.0-1102-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" ] }, { @@ -17054,10 +17200,10 @@ "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb" ] }, { @@ -17065,10 +17211,10 @@ "kernelrelease": "4.15.0-1103-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb" ] }, { @@ -17077,9 +17223,9 @@ "target": "ubuntu-oem", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { @@ -17087,9 +17233,9 @@ "kernelrelease": "4.15.0-1103-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" ] }, @@ -17098,10 +17244,10 @@ "kernelrelease": "4.15.0-1104-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" ] }, { @@ -17109,10 +17255,10 @@ "kernelrelease": "4.15.0-1105-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" ] }, { @@ -17120,9 +17266,9 @@ "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" ] }, @@ -17131,10 +17277,10 @@ "kernelrelease": "4.15.0-1106-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb" ] }, { @@ -17142,9 +17288,9 @@ "kernelrelease": "4.15.0-1106-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" ] }, @@ -17153,10 +17299,10 @@ "kernelrelease": "4.15.0-1106-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" ] }, { @@ -17164,10 +17310,10 @@ "kernelrelease": "4.15.0-1107-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" ] }, { @@ -17176,9 +17322,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" ] }, { @@ -17197,10 +17343,10 @@ "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, { @@ -17208,10 +17354,10 @@ "kernelrelease": "4.15.0-1109-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" ] }, { @@ -17219,10 +17365,10 @@ "kernelrelease": "4.15.0-1109-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb" ] }, { @@ -17231,8 +17377,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" ] }, @@ -17241,12 +17387,12 @@ "kernelrelease": "4.15.0-111", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb" ] }, { @@ -17254,10 +17400,10 @@ "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" ] }, { @@ -17276,10 +17422,10 @@ "kernelrelease": "4.15.0-1110-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" ] }, { @@ -17287,10 +17433,10 @@ "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" ] }, { @@ -17298,8 +17444,8 @@ "kernelrelease": "4.15.0-1111-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" ] @@ -17309,10 +17455,10 @@ "kernelrelease": "4.15.0-1111-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb" ] }, { @@ -17321,9 +17467,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb" ] }, { @@ -17331,10 +17477,10 @@ "kernelrelease": "4.15.0-1112-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb" ] }, { @@ -17342,10 +17488,10 @@ "kernelrelease": "4.15.0-1112-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" ] }, { @@ -17354,9 +17500,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" ] }, { @@ -17364,9 +17510,9 @@ "kernelrelease": "4.15.0-1113-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" ] }, @@ -17375,10 +17521,10 @@ "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" ] }, { @@ -17386,10 +17532,10 @@ "kernelrelease": "4.15.0-1114-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" ] }, { @@ -17397,10 +17543,10 @@ "kernelrelease": "4.15.0-1114-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" ] }, { @@ -17409,9 +17555,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" ] }, { @@ -17419,10 +17565,10 @@ "kernelrelease": "4.15.0-1115-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" ] }, { @@ -17431,8 +17577,8 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" ] }, @@ -17441,10 +17587,10 @@ "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb" ] }, { @@ -17452,9 +17598,9 @@ "kernelrelease": "4.15.0-1118-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" ] }, @@ -17463,10 +17609,10 @@ "kernelrelease": "4.15.0-1118-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" ] }, { @@ -17485,10 +17631,10 @@ "kernelrelease": "4.15.0-1119-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" ] }, { @@ -17497,8 +17643,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb" ] }, @@ -17507,12 +17653,12 @@ "kernelrelease": "4.15.0-112", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb" ] }, { @@ -17521,9 +17667,9 @@ "target": "ubuntu-gcp-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" ] }, { @@ -17531,10 +17677,10 @@ "kernelrelease": "4.15.0-1121-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" ] }, { @@ -17542,10 +17688,10 @@ "kernelrelease": "4.15.0-1122-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" ] }, { @@ -17553,10 +17699,10 @@ "kernelrelease": "4.15.0-1122-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb" ] }, { @@ -17564,10 +17710,10 @@ "kernelrelease": "4.15.0-1123-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" ] }, { @@ -17575,10 +17721,10 @@ "kernelrelease": "4.15.0-1123-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" ] }, { @@ -17586,10 +17732,10 @@ "kernelrelease": "4.15.0-1124-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" ] }, { @@ -17597,10 +17743,10 @@ "kernelrelease": "4.15.0-1124-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb" ] }, { @@ -17609,9 +17755,9 @@ "target": "ubuntu-azure-4.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" ] }, { @@ -17620,9 +17766,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" ] }, { @@ -17630,10 +17776,10 @@ "kernelrelease": "4.15.0-1126-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" ] }, { @@ -17641,10 +17787,10 @@ "kernelrelease": "4.15.0-1127-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" ] }, { @@ -17652,10 +17798,10 @@ "kernelrelease": "4.15.0-1127-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb" ] }, { @@ -17663,10 +17809,10 @@ "kernelrelease": "4.15.0-1129-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" ] }, { @@ -17674,10 +17820,10 @@ "kernelrelease": "4.15.0-1130-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb" ] }, { @@ -17696,9 +17842,9 @@ "kernelrelease": "4.15.0-1133-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" ] }, @@ -17707,10 +17853,10 @@ "kernelrelease": "4.15.0-1133-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb" ] }, { @@ -17718,10 +17864,10 @@ "kernelrelease": "4.15.0-1136-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" ] }, { @@ -17729,10 +17875,10 @@ "kernelrelease": "4.15.0-1136-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" ] }, { @@ -17740,10 +17886,10 @@ "kernelrelease": "4.15.0-1137-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb" ] }, { @@ -17751,10 +17897,10 @@ "kernelrelease": "4.15.0-1142-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb" ] }, { @@ -17762,10 +17908,10 @@ "kernelrelease": "4.15.0-1145-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb" ] }, { @@ -17773,12 +17919,12 @@ "kernelrelease": "4.15.0-115", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb" ] }, { @@ -17786,12 +17932,12 @@ "kernelrelease": "4.15.0-117", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" ] }, { @@ -17799,12 +17945,12 @@ "kernelrelease": "4.15.0-118", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" ] }, { @@ -17812,12 +17958,12 @@ "kernelrelease": "4.15.0-121", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" ] }, { @@ -17825,12 +17971,12 @@ "kernelrelease": "4.15.0-122", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" ] }, { @@ -17839,11 +17985,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb" ] }, { @@ -17851,12 +17997,12 @@ "kernelrelease": "4.15.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" ] }, { @@ -17864,12 +18010,12 @@ "kernelrelease": "4.15.0-129", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" ] }, { @@ -17877,12 +18023,12 @@ "kernelrelease": "4.15.0-130", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" ] }, { @@ -17890,12 +18036,12 @@ "kernelrelease": "4.15.0-132", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" ] }, { @@ -17903,12 +18049,12 @@ "kernelrelease": "4.15.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" ] }, { @@ -17917,9 +18063,9 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" ] @@ -17930,11 +18076,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb" ] }, { @@ -17942,11 +18088,11 @@ "kernelrelease": "4.15.0-139", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" ] }, @@ -17955,12 +18101,12 @@ "kernelrelease": "4.15.0-140", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb" ] }, { @@ -17968,12 +18114,12 @@ "kernelrelease": "4.15.0-141", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" ] }, { @@ -17981,12 +18127,12 @@ "kernelrelease": "4.15.0-142", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb" ] }, { @@ -17994,11 +18140,11 @@ "kernelrelease": "4.15.0-143", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" ] }, @@ -18008,11 +18154,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" ] }, { @@ -18020,11 +18166,11 @@ "kernelrelease": "4.15.0-147", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" ] }, @@ -18033,12 +18179,12 @@ "kernelrelease": "4.15.0-151", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb" ] }, { @@ -18046,12 +18192,12 @@ "kernelrelease": "4.15.0-153", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb" ] }, { @@ -18059,12 +18205,12 @@ "kernelrelease": "4.15.0-154", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" ] }, { @@ -18072,12 +18218,12 @@ "kernelrelease": "4.15.0-156", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" ] }, { @@ -18085,12 +18231,12 @@ "kernelrelease": "4.15.0-158", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" ] }, { @@ -18098,12 +18244,12 @@ "kernelrelease": "4.15.0-159", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb" ] }, { @@ -18112,11 +18258,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb" ] }, { @@ -18124,12 +18270,12 @@ "kernelrelease": "4.15.0-162", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" ] }, { @@ -18137,12 +18283,12 @@ "kernelrelease": "4.15.0-163", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" ] }, { @@ -18151,11 +18297,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb" ] }, { @@ -18163,12 +18309,12 @@ "kernelrelease": "4.15.0-167", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb" ] }, { @@ -18176,12 +18322,12 @@ "kernelrelease": "4.15.0-169", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" ] }, { @@ -18189,12 +18335,12 @@ "kernelrelease": "4.15.0-171", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" ] }, { @@ -18203,8 +18349,8 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb" @@ -18215,10 +18361,10 @@ "kernelrelease": "4.15.0-175", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" ] @@ -18228,12 +18374,12 @@ "kernelrelease": "4.15.0-176", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb" ] }, { @@ -18241,12 +18387,12 @@ "kernelrelease": "4.15.0-177", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb" ] }, { @@ -18255,11 +18401,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb" ] }, { @@ -18267,12 +18413,12 @@ "kernelrelease": "4.15.0-184", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" ] }, { @@ -18280,12 +18426,12 @@ "kernelrelease": "4.15.0-187", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb" ] }, { @@ -18293,12 +18439,12 @@ "kernelrelease": "4.15.0-22", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb" ] }, { @@ -18306,12 +18452,12 @@ "kernelrelease": "4.15.0-23", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb" ] }, { @@ -18321,10 +18467,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" ] }, { @@ -18332,12 +18478,12 @@ "kernelrelease": "4.15.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb" ] }, { @@ -18346,11 +18492,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" ] }, { @@ -18358,12 +18504,12 @@ "kernelrelease": "4.15.0-32", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" ] }, { @@ -18371,12 +18517,12 @@ "kernelrelease": "4.15.0-33", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb" ] }, { @@ -18385,11 +18531,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" ] }, { @@ -18397,12 +18543,12 @@ "kernelrelease": "4.15.0-36", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb" ] }, { @@ -18410,12 +18556,12 @@ "kernelrelease": "4.15.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" ] }, { @@ -18424,11 +18570,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb" ] }, { @@ -18436,12 +18582,12 @@ "kernelrelease": "4.15.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" ] }, { @@ -18449,12 +18595,12 @@ "kernelrelease": "4.15.0-44", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" ] }, { @@ -18462,12 +18608,12 @@ "kernelrelease": "4.15.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb" ] }, { @@ -18476,11 +18622,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb" ] }, { @@ -18488,11 +18634,11 @@ "kernelrelease": "4.15.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb" ] }, @@ -18501,11 +18647,11 @@ "kernelrelease": "4.15.0-50", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb" ] }, @@ -18514,12 +18660,12 @@ "kernelrelease": "4.15.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" ] }, { @@ -18527,12 +18673,12 @@ "kernelrelease": "4.15.0-52", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" ] }, { @@ -18541,11 +18687,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" ] }, { @@ -18553,12 +18699,12 @@ "kernelrelease": "4.15.0-55", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" ] }, { @@ -18566,12 +18712,12 @@ "kernelrelease": "4.15.0-58", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" ] }, { @@ -18580,11 +18726,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" ] }, { @@ -18592,12 +18738,12 @@ "kernelrelease": "4.15.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" ] }, { @@ -18605,12 +18751,12 @@ "kernelrelease": "4.15.0-64", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb" ] }, { @@ -18618,12 +18764,12 @@ "kernelrelease": "4.15.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" ] }, { @@ -18631,12 +18777,12 @@ "kernelrelease": "4.15.0-66", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" ] }, { @@ -18644,12 +18790,12 @@ "kernelrelease": "4.15.0-69", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb" ] }, { @@ -18657,12 +18803,12 @@ "kernelrelease": "4.15.0-70", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb" ] }, { @@ -18670,12 +18816,12 @@ "kernelrelease": "4.15.0-72", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" ] }, { @@ -18683,12 +18829,12 @@ "kernelrelease": "4.15.0-74", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb" ] }, { @@ -18696,11 +18842,11 @@ "kernelrelease": "4.15.0-76", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb" ] }, @@ -18711,10 +18857,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" ] }, { @@ -18723,11 +18869,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb" ] }, { @@ -18735,12 +18881,12 @@ "kernelrelease": "4.15.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb" ] }, { @@ -18748,12 +18894,12 @@ "kernelrelease": "4.15.0-99", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb" ] }, { @@ -18772,8 +18918,8 @@ "kernelrelease": "4.18.0-1005-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" ] @@ -18783,10 +18929,10 @@ "kernelrelease": "4.18.0-1006-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" ] }, { @@ -18794,10 +18940,10 @@ "kernelrelease": "4.18.0-1006-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" ] }, { @@ -18805,9 +18951,9 @@ "kernelrelease": "4.18.0-1007-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb" ] }, @@ -18816,10 +18962,10 @@ "kernelrelease": "4.18.0-1007-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb" ] }, { @@ -18827,10 +18973,10 @@ "kernelrelease": "4.18.0-1008-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" ] }, { @@ -18838,8 +18984,8 @@ "kernelrelease": "4.18.0-1008-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" ] @@ -18849,10 +18995,10 @@ "kernelrelease": "4.18.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" ] }, { @@ -18872,9 +19018,9 @@ "target": "ubuntu-gcp-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -18882,10 +19028,10 @@ "kernelrelease": "4.18.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" ] }, { @@ -18893,10 +19039,10 @@ "kernelrelease": "4.18.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -18904,10 +19050,10 @@ "kernelrelease": "4.18.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" ] }, { @@ -18917,8 +19063,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb" ] }, { @@ -18928,8 +19074,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" ] }, { @@ -18937,9 +19083,9 @@ "kernelrelease": "4.18.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" ] }, @@ -18948,10 +19094,10 @@ "kernelrelease": "4.18.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" ] }, { @@ -18959,10 +19105,10 @@ "kernelrelease": "4.18.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -18971,9 +19117,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" ] }, { @@ -18982,8 +19128,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb" ] }, @@ -18993,11 +19139,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" ] }, { @@ -19005,12 +19151,12 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" ] }, { @@ -19018,12 +19164,12 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" ] }, { @@ -19031,12 +19177,12 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" ] }, { @@ -19044,12 +19190,12 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb" ] }, { @@ -19057,12 +19203,12 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" ] }, { @@ -19070,12 +19216,12 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, { @@ -19083,12 +19229,12 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb" ] }, { @@ -19096,12 +19242,12 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" ] }, { @@ -19109,12 +19255,12 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb" ] }, { @@ -19122,10 +19268,10 @@ "kernelrelease": "5.0.0-1007-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb" ] }, { @@ -19134,8 +19280,8 @@ "target": "ubuntu-oracle-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb" ] }, @@ -19155,10 +19301,10 @@ "kernelrelease": "5.0.0-1010-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" ] }, { @@ -19166,10 +19312,10 @@ "kernelrelease": "5.0.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -19177,10 +19323,10 @@ "kernelrelease": "5.0.0-1011-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb" ] }, { @@ -19188,8 +19334,8 @@ "kernelrelease": "5.0.0-1012-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb" ] @@ -19199,10 +19345,10 @@ "kernelrelease": "5.0.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb" ] }, { @@ -19210,10 +19356,10 @@ "kernelrelease": "5.0.0-1013-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb" ] }, { @@ -19221,10 +19367,10 @@ "kernelrelease": "5.0.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb" ] }, { @@ -19232,10 +19378,10 @@ "kernelrelease": "5.0.0-1014-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb" ] }, { @@ -19244,8 +19390,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" ] }, @@ -19256,8 +19402,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb" ] }, { @@ -19265,10 +19411,10 @@ "kernelrelease": "5.0.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -19276,9 +19422,9 @@ "kernelrelease": "5.0.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" ] }, @@ -19287,9 +19433,9 @@ "kernelrelease": "5.0.0-1021-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb" ] }, @@ -19298,10 +19444,10 @@ "kernelrelease": "5.0.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -19309,10 +19455,10 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb" ] }, { @@ -19320,8 +19466,8 @@ "kernelrelease": "5.0.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb" ] @@ -19331,10 +19477,10 @@ "kernelrelease": "5.0.0-1023-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb" ] }, { @@ -19342,10 +19488,10 @@ "kernelrelease": "5.0.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -19353,10 +19499,10 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" ] }, { @@ -19365,9 +19511,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb" ] }, { @@ -19375,10 +19521,10 @@ "kernelrelease": "5.0.0-1025-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" ] }, { @@ -19386,10 +19532,10 @@ "kernelrelease": "5.0.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -19397,10 +19543,10 @@ "kernelrelease": "5.0.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -19408,9 +19554,9 @@ "kernelrelease": "5.0.0-1027-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" ] }, @@ -19419,10 +19565,10 @@ "kernelrelease": "5.0.0-1027-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" ] }, { @@ -19430,10 +19576,10 @@ "kernelrelease": "5.0.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" ] }, { @@ -19453,9 +19599,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -19463,10 +19609,10 @@ "kernelrelease": "5.0.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" ] }, { @@ -19474,10 +19620,10 @@ "kernelrelease": "5.0.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" ] }, { @@ -19487,8 +19633,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" ] }, { @@ -19496,9 +19642,9 @@ "kernelrelease": "5.0.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" ] }, @@ -19508,9 +19654,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" ] }, { @@ -19518,10 +19664,10 @@ "kernelrelease": "5.0.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb" ] }, { @@ -19529,10 +19675,10 @@ "kernelrelease": "5.0.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" ] }, { @@ -19540,10 +19686,10 @@ "kernelrelease": "5.0.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" ] }, { @@ -19551,11 +19697,11 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb" ] }, @@ -19566,10 +19712,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb" ] }, { @@ -19577,12 +19723,12 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" ] }, { @@ -19590,12 +19736,12 @@ "kernelrelease": "5.0.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" ] }, { @@ -19604,11 +19750,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb" ] }, { @@ -19616,12 +19762,12 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" ] }, { @@ -19630,11 +19776,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb" ] }, { @@ -19642,12 +19788,12 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb" ] }, { @@ -19655,12 +19801,12 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" ] }, { @@ -19668,12 +19814,12 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" ] }, { @@ -19681,12 +19827,12 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb" ] }, { @@ -19695,11 +19841,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" ] }, { @@ -19707,12 +19853,12 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb" ] }, { @@ -19720,12 +19866,12 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" ] }, { @@ -19733,10 +19879,10 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" ] }, { @@ -19744,10 +19890,10 @@ "kernelrelease": "5.0.0-61-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" ] }, { @@ -19755,10 +19901,10 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" ] }, { @@ -19766,10 +19912,10 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" ] }, { @@ -19777,10 +19923,10 @@ "kernelrelease": "5.0.0-65-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" ] }, { @@ -19788,9 +19934,9 @@ "kernelrelease": "5.3.0-1007-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" ] }, @@ -19800,9 +19946,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -19810,43 +19956,43 @@ "kernelrelease": "5.3.0-1008-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" ] }, - { - "kernelversion": "10~18.04.1", - "kernelrelease": "5.3.0-1009-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" - ] - }, { "kernelversion": "10~18.04.1", "kernelrelease": "5.3.0-1009-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb" ] }, + { + "kernelversion": "10~18.04.1", + "kernelrelease": "5.3.0-1009-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" + ] + }, { "kernelversion": "11~18.04.1", "kernelrelease": "5.3.0-1010-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -19854,10 +20000,10 @@ "kernelrelease": "5.3.0-1010-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -19865,32 +20011,32 @@ "kernelrelease": "5.3.0-1011-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "5.3.0-1012-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1012-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb" ] }, { "kernelversion": "13~18.04.1", - "kernelrelease": "5.3.0-1012-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1012-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -19898,10 +20044,10 @@ "kernelrelease": "5.3.0-1013-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -19909,43 +20055,43 @@ "kernelrelease": "5.3.0-1013-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" ] }, { "kernelversion": "15~18.04.1", - "kernelrelease": "5.3.0-1014-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1014-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { "kernelversion": "15~18.04.1", - "kernelrelease": "5.3.0-1014-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1014-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1016-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { @@ -19953,21 +20099,21 @@ "kernelrelease": "5.3.0-1016-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1016-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -19975,10 +20121,10 @@ "kernelrelease": "5.3.0-1016-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb" ] }, { @@ -19987,8 +20133,8 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" ] }, @@ -19998,9 +20144,9 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { @@ -20009,9 +20155,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" ] }, { @@ -20019,10 +20165,10 @@ "kernelrelease": "5.3.0-1018-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -20031,9 +20177,9 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb" ] }, { @@ -20041,10 +20187,10 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" ] }, { @@ -20053,8 +20199,8 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" ] }, @@ -20063,10 +20209,10 @@ "kernelrelease": "5.3.0-1020-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb" ] }, { @@ -20074,10 +20220,10 @@ "kernelrelease": "5.3.0-1020-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" ] }, { @@ -20085,10 +20231,10 @@ "kernelrelease": "5.3.0-1022-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -20096,9 +20242,9 @@ "kernelrelease": "5.3.0-1023-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb" ] }, @@ -20107,10 +20253,10 @@ "kernelrelease": "5.3.0-1024-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" ] }, { @@ -20119,9 +20265,9 @@ "target": "ubuntu-gcp-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb" ] }, { @@ -20129,10 +20275,10 @@ "kernelrelease": "5.3.0-1027-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb" ] }, { @@ -20141,8 +20287,8 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" ] }, @@ -20151,9 +20297,9 @@ "kernelrelease": "5.3.0-1028-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" ] }, @@ -20162,10 +20308,10 @@ "kernelrelease": "5.3.0-1028-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -20173,10 +20319,21 @@ "kernelrelease": "5.3.0-1029-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1030-gcp-5.3", + "target": "ubuntu-gcp-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20184,10 +20341,10 @@ "kernelrelease": "5.3.0-1030-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20195,21 +20352,10 @@ "kernelrelease": "5.3.0-1030-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -20217,10 +20363,10 @@ "kernelrelease": "5.3.0-1031-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" ] }, { @@ -20228,9 +20374,9 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" ] }, @@ -20239,10 +20385,10 @@ "kernelrelease": "5.3.0-1032-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb" ] }, { @@ -20252,8 +20398,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -20261,10 +20407,10 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" ] }, { @@ -20272,9 +20418,9 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb" ] }, @@ -20283,10 +20429,10 @@ "kernelrelease": "5.3.0-1034-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" ] }, { @@ -20294,10 +20440,10 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" ] }, { @@ -20305,10 +20451,10 @@ "kernelrelease": "5.3.0-1035-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" ] }, { @@ -20317,11 +20463,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb" ] }, { @@ -20331,10 +20477,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb" ] }, { @@ -20342,12 +20488,12 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" ] }, { @@ -20355,12 +20501,12 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" ] }, { @@ -20368,12 +20514,12 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" ] }, { @@ -20382,11 +20528,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" ] }, { @@ -20394,12 +20540,12 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb" ] }, { @@ -20407,12 +20553,12 @@ "kernelrelease": "5.3.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb" ] }, { @@ -20420,11 +20566,11 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb" ] }, @@ -20433,12 +20579,12 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb" ] }, { @@ -20448,10 +20594,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" ] }, { @@ -20459,12 +20605,12 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb" ] }, { @@ -20472,12 +20618,12 @@ "kernelrelease": "5.3.0-59-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" ] }, { @@ -20485,12 +20631,12 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" ] }, { @@ -20500,10 +20646,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb" ] }, { @@ -20511,12 +20657,12 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" ] }, { @@ -20524,12 +20670,12 @@ "kernelrelease": "5.3.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb" ] }, { @@ -20537,12 +20683,12 @@ "kernelrelease": "5.3.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb" ] }, { @@ -20550,12 +20696,12 @@ "kernelrelease": "5.3.0-67-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb" ] }, { @@ -20565,9 +20711,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" ] }, @@ -20576,12 +20722,12 @@ "kernelrelease": "5.3.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb" ] }, { @@ -20590,11 +20736,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" ] }, { @@ -20602,12 +20748,12 @@ "kernelrelease": "5.3.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb" ] }, { @@ -20616,11 +20762,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb" ] }, { @@ -20628,11 +20774,11 @@ "kernelrelease": "5.3.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" ] }, @@ -20641,11 +20787,11 @@ "kernelrelease": "5.3.0-75-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb" ] }, @@ -20654,12 +20800,12 @@ "kernelrelease": "5.3.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb" ] }, { @@ -20668,9 +20814,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb" ] }, { @@ -20678,10 +20824,10 @@ "kernelrelease": "5.4.0-1004-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" ] }, { @@ -20690,8 +20836,8 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb" ] }, @@ -20700,10 +20846,10 @@ "kernelrelease": "5.4.0-1007-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" ] }, { @@ -20713,8 +20859,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" ] }, { @@ -20724,8 +20870,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -20734,8 +20880,8 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" ] }, @@ -20744,10 +20890,10 @@ "kernelrelease": "5.4.0-1011-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb" ] }, { @@ -20756,8 +20902,8 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" ] }, @@ -20766,10 +20912,10 @@ "kernelrelease": "5.4.0-1013-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" ] }, { @@ -20777,10 +20923,10 @@ "kernelrelease": "5.4.0-1014-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" ] }, { @@ -20790,8 +20936,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" ] }, { @@ -20799,10 +20945,10 @@ "kernelrelease": "5.4.0-1016-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb" ] }, { @@ -20812,8 +20958,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" ] }, { @@ -20821,8 +20967,8 @@ "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" ] @@ -20832,10 +20978,10 @@ "kernelrelease": "5.4.0-1021-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -20843,10 +20989,10 @@ "kernelrelease": "5.4.0-1021-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -20855,20 +21001,20 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1022-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20876,10 +21022,10 @@ "kernelrelease": "5.4.0-1022-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { @@ -20889,19 +21035,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1022-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -20910,9 +21056,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" ] }, { @@ -20920,10 +21066,10 @@ "kernelrelease": "5.4.0-1023-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" ] }, { @@ -20931,21 +21077,10 @@ "kernelrelease": "5.4.0-1023-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" ] }, { @@ -20953,10 +21088,10 @@ "kernelrelease": "5.4.0-1024-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20964,10 +21099,21 @@ "kernelrelease": "5.4.0-1024-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + ] + }, + { + "kernelversion": "24~18.04.1", + "kernelrelease": "5.4.0-1024-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -20975,10 +21121,10 @@ "kernelrelease": "5.4.0-1024-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" ] }, { @@ -20986,8 +21132,8 @@ "kernelrelease": "5.4.0-1025-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb" ] @@ -20997,21 +21143,21 @@ "kernelrelease": "5.4.0-1025-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1025-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -21019,21 +21165,21 @@ "kernelrelease": "5.4.0-1025-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1025-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -21041,10 +21187,10 @@ "kernelrelease": "5.4.0-1025-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" ] }, { @@ -21052,10 +21198,10 @@ "kernelrelease": "5.4.0-1026-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" ] }, { @@ -21063,32 +21209,32 @@ "kernelrelease": "5.4.0-1026-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1027-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1027-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { @@ -21096,10 +21242,21 @@ "kernelrelease": "5.4.0-1028-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "29~18.04.1", + "kernelrelease": "5.4.0-1028-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -21113,26 +21270,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" - ] - }, { "kernelversion": "30~18.04.1", "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.4.0-1029-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21140,10 +21297,10 @@ "kernelrelease": "5.4.0-1029-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21151,21 +21308,10 @@ "kernelrelease": "5.4.0-1029-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21173,21 +21319,10 @@ "kernelrelease": "5.4.0-1029-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb" ] }, { @@ -21201,15 +21336,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" ] }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.4.0-1031-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" + ] + }, { "kernelversion": "34~18.04.1", "kernelrelease": "5.4.0-1032-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21217,32 +21363,32 @@ "kernelrelease": "5.4.0-1032-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1033-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1033-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21250,21 +21396,21 @@ "kernelrelease": "5.4.0-1033-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1033-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1033-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" ] }, { @@ -21272,21 +21418,21 @@ "kernelrelease": "5.4.0-1033-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1033-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1033-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" ] }, { @@ -21294,10 +21440,10 @@ "kernelrelease": "5.4.0-1034-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" ] }, { @@ -21305,9 +21451,9 @@ "kernelrelease": "5.4.0-1034-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" ] }, @@ -21316,10 +21462,10 @@ "kernelrelease": "5.4.0-1035-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -21327,10 +21473,10 @@ "kernelrelease": "5.4.0-1035-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -21340,8 +21486,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" ] }, { @@ -21349,12 +21495,23 @@ "kernelrelease": "5.4.0-1035-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb" ] }, + { + "kernelversion": "38~18.04.1", + "kernelrelease": "5.4.0-1036-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" + ] + }, { "kernelversion": "38~18.04.1", "kernelrelease": "5.4.0-1036-gke-5.4", @@ -21366,26 +21523,15 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb" ] }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" - ] - }, { "kernelversion": "39~18.04.1", "kernelrelease": "5.4.0-1036-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" ] }, { @@ -21393,10 +21539,10 @@ "kernelrelease": "5.4.0-1036-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb" ] }, { @@ -21404,10 +21550,10 @@ "kernelrelease": "5.4.0-1037-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { @@ -21415,10 +21561,10 @@ "kernelrelease": "5.4.0-1037-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { @@ -21426,10 +21572,10 @@ "kernelrelease": "5.4.0-1037-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21437,10 +21583,10 @@ "kernelrelease": "5.4.0-1037-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21448,9 +21594,9 @@ "kernelrelease": "5.4.0-1037-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb" ] }, @@ -21459,32 +21605,32 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1038-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1038-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1038-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1038-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { @@ -21492,21 +21638,10 @@ "kernelrelease": "5.4.0-1038-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" ] }, { @@ -21514,10 +21649,10 @@ "kernelrelease": "5.4.0-1039-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" ] }, { @@ -21525,10 +21660,21 @@ "kernelrelease": "5.4.0-1039-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1039-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { @@ -21536,10 +21682,10 @@ "kernelrelease": "5.4.0-1039-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" ] }, { @@ -21547,8 +21693,8 @@ "kernelrelease": "5.4.0-1039-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" ] @@ -21558,12 +21704,12 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" ] }, { @@ -21571,10 +21717,10 @@ "kernelrelease": "5.4.0-1040-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { @@ -21582,10 +21728,10 @@ "kernelrelease": "5.4.0-1040-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { @@ -21599,17 +21745,6 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" ] }, - { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1041-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" - ] - }, { "kernelversion": "43~18.04.1", "kernelrelease": "5.4.0-1041-azure-5.4", @@ -21617,19 +21752,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb" ] }, { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "43~18.04.1", + "kernelrelease": "5.4.0-1041-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" ] }, { @@ -21638,20 +21773,20 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1042-oracle-5.4", + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1041-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" ] }, { @@ -21659,21 +21794,32 @@ "kernelrelease": "5.4.0-1042-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb" ] }, + { + "kernelversion": "45~18.04.1", + "kernelrelease": "5.4.0-1042-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb" + ] + }, { "kernelversion": "44~18.04.1", "kernelrelease": "5.4.0-1042-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb" ] }, { @@ -21692,10 +21838,10 @@ "kernelrelease": "5.4.0-1043-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -21703,8 +21849,8 @@ "kernelrelease": "5.4.0-1043-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" ] @@ -21715,9 +21861,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb" ] }, { @@ -21725,43 +21871,43 @@ "kernelrelease": "5.4.0-1043-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb" ] }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb" - ] - }, { "kernelversion": "46~18.04.1", "kernelrelease": "5.4.0-1044-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" ] }, + { + "kernelversion": "46~18.04.1", + "kernelrelease": "5.4.0-1044-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb" + ] + }, { "kernelversion": "47~18.04.2", "kernelrelease": "5.4.0-1044-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" ] }, { @@ -21769,9 +21915,9 @@ "kernelrelease": "5.4.0-1044-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" ] }, @@ -21780,10 +21926,21 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "48~18.04.1", + "kernelrelease": "5.4.0-1046-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -21791,10 +21948,10 @@ "kernelrelease": "5.4.0-1046-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -21802,21 +21959,10 @@ "kernelrelease": "5.4.0-1046-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -21824,10 +21970,10 @@ "kernelrelease": "5.4.0-1046-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" ] }, { @@ -21836,9 +21982,20 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" + ] + }, + { + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1047-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" ] }, { @@ -21847,20 +22004,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" ] }, { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "50~18.04.1", + "kernelrelease": "5.4.0-1048-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" ] }, { @@ -21868,21 +22025,10 @@ "kernelrelease": "5.4.0-1048-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" ] }, { @@ -21890,10 +22036,10 @@ "kernelrelease": "5.4.0-1048-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb" ] }, { @@ -21901,9 +22047,9 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" ] }, @@ -21913,9 +22059,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { @@ -21924,11 +22070,22 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" ] }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1049-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" + ] + }, { "kernelversion": "53~18.04.1", "kernelrelease": "5.4.0-1049-gcp-5.4", @@ -21940,24 +22097,13 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" ] }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" - ] - }, { "kernelversion": "52~18.04.1", "kernelrelease": "5.4.0-1049-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" ] @@ -21968,8 +22114,8 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" ] }, @@ -21979,9 +22125,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" ] }, { @@ -21989,10 +22135,10 @@ "kernelrelease": "5.4.0-1051-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" ] }, { @@ -22000,9 +22146,9 @@ "kernelrelease": "5.4.0-1051-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" ] }, @@ -22011,10 +22157,10 @@ "kernelrelease": "5.4.0-1052-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb" ] }, { @@ -22023,8 +22169,8 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" ] }, @@ -22033,10 +22179,10 @@ "kernelrelease": "5.4.0-1052-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" ] }, { @@ -22044,10 +22190,10 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -22056,9 +22202,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -22066,65 +22212,65 @@ "kernelrelease": "5.4.0-1053-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" ] }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb" - ] - }, { "kernelversion": "57~18.04.1", "kernelrelease": "5.4.0-1054-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" ] }, + { + "kernelversion": "57~18.04.1", + "kernelrelease": "5.4.0-1054-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" + ] + }, { "kernelversion": "58~18.04.1", "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1055-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1055-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" ] }, { @@ -22132,10 +22278,10 @@ "kernelrelease": "5.4.0-1055-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" ] }, { @@ -22145,8 +22291,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" ] }, { @@ -22154,10 +22300,10 @@ "kernelrelease": "5.4.0-1055-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { @@ -22165,10 +22311,10 @@ "kernelrelease": "5.4.0-1056-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" ] }, { @@ -22176,10 +22322,10 @@ "kernelrelease": "5.4.0-1056-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" ] }, { @@ -22188,31 +22334,31 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb" ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1057-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb" ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1057-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" ] }, { @@ -22221,9 +22367,9 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" ] }, { @@ -22231,10 +22377,10 @@ "kernelrelease": "5.4.0-1057-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -22243,9 +22389,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb" ] }, { @@ -22265,8 +22411,8 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb" ] }, @@ -22275,10 +22421,10 @@ "kernelrelease": "5.4.0-1059-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -22286,32 +22432,32 @@ "kernelrelease": "5.4.0-1059-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1059-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb" ] }, { "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1059-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" ] }, { @@ -22319,10 +22465,10 @@ "kernelrelease": "5.4.0-1060-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" ] }, { @@ -22330,10 +22476,21 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" + ] + }, + { + "kernelversion": "65~18.04.1", + "kernelrelease": "5.4.0-1062-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { @@ -22341,21 +22498,21 @@ "kernelrelease": "5.4.0-1062-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { - "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1062-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1065-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -22363,9 +22520,9 @@ "kernelrelease": "5.4.0-1065-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb" ] }, @@ -22374,21 +22531,10 @@ "kernelrelease": "5.4.0-1065-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" ] }, { @@ -22396,32 +22542,32 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1067-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1067-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { @@ -22430,31 +22576,31 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1068-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1068-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { @@ -22462,8 +22608,8 @@ "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" ] @@ -22473,12 +22619,12 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" ] }, { @@ -22486,9 +22632,9 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" ] }, @@ -22497,9 +22643,9 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" ] }, @@ -22508,10 +22654,10 @@ "kernelrelease": "5.4.0-1072-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22519,10 +22665,10 @@ "kernelrelease": "5.4.0-1072-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22530,10 +22676,10 @@ "kernelrelease": "5.4.0-1072-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22541,8 +22687,8 @@ "kernelrelease": "5.4.0-1072-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb" ] @@ -22553,8 +22699,8 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb" ] }, @@ -22563,10 +22709,10 @@ "kernelrelease": "5.4.0-1073-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" ] }, { @@ -22574,10 +22720,10 @@ "kernelrelease": "5.4.0-1074-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb" ] }, { @@ -22585,10 +22731,10 @@ "kernelrelease": "5.4.0-1074-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb" ] }, { @@ -22596,10 +22742,10 @@ "kernelrelease": "5.4.0-1076-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb" ] }, { @@ -22607,8 +22753,8 @@ "kernelrelease": "5.4.0-1076-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb" ] @@ -22618,32 +22764,32 @@ "kernelrelease": "5.4.0-1077-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" ] }, { "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1078-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb" ] }, { "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1078-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb" ] }, { @@ -22651,21 +22797,10 @@ "kernelrelease": "5.4.0-1078-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb" ] }, { @@ -22674,20 +22809,31 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb" ] }, + { + "kernelversion": "87~18.04.1", + "kernelrelease": "5.4.0-1080-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" + ] + }, { "kernelversion": "83~18.04.2", "kernelrelease": "5.4.0-1080-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" ] }, { @@ -22695,10 +22841,10 @@ "kernelrelease": "5.4.0-1083-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb" ] }, { @@ -22706,10 +22852,10 @@ "kernelrelease": "5.4.0-1085-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb" ] }, { @@ -22717,12 +22863,12 @@ "kernelrelease": "5.4.0-109-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" ] }, { @@ -22730,12 +22876,12 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" ] }, { @@ -22743,11 +22889,11 @@ "kernelrelease": "5.4.0-117-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb" ] }, @@ -22756,12 +22902,12 @@ "kernelrelease": "5.4.0-120-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb" ] }, { @@ -22769,12 +22915,12 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb" ] }, { @@ -22782,12 +22928,12 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb" ] }, { @@ -22795,12 +22941,12 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" ] }, { @@ -22808,12 +22954,12 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" ] }, { @@ -22821,12 +22967,12 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb" ] }, { @@ -22834,12 +22980,12 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb" ] }, { @@ -22847,12 +22993,12 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb" ] }, { @@ -22860,12 +23006,12 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" ] }, { @@ -22873,12 +23019,12 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" ] }, { @@ -22886,12 +23032,12 @@ "kernelrelease": "5.4.0-53-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb" ] }, { @@ -22899,12 +23045,12 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" ] }, { @@ -22914,9 +23060,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb" ] }, @@ -22925,12 +23071,12 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb" ] }, { @@ -22939,9 +23085,9 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb" ] @@ -22951,12 +23097,12 @@ "kernelrelease": "5.4.0-65-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb" ] }, { @@ -22964,12 +23110,12 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb" ] }, { @@ -22977,12 +23123,12 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" ] }, { @@ -22990,11 +23136,11 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" ] }, @@ -23003,12 +23149,12 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" ] }, { @@ -23016,12 +23162,12 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb" ] }, { @@ -23029,12 +23175,12 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb" ] }, { @@ -23043,11 +23189,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" ] }, { @@ -23055,12 +23201,12 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb" ] }, { @@ -23068,12 +23214,12 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" ] }, { @@ -23081,12 +23227,12 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" ] }, { @@ -23094,12 +23240,12 @@ "kernelrelease": "5.4.0-84-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" ] }, { @@ -23107,12 +23253,12 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb" ] }, { @@ -23120,12 +23266,12 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb" ] }, { @@ -23133,12 +23279,12 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" ] }, { @@ -23146,12 +23292,12 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb" ] }, { @@ -23159,12 +23305,12 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb" ] }, { @@ -23172,12 +23318,12 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" ] }, { @@ -23185,12 +23331,12 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb" ] }, { @@ -23198,9 +23344,9 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" ] }, @@ -23209,10 +23355,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" ] }, { @@ -23221,9 +23367,9 @@ "target": "ubuntu-oem", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb" ] }, { @@ -23231,8 +23377,8 @@ "kernelrelease": "4.15.0-1025-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" ] @@ -23242,10 +23388,10 @@ "kernelrelease": "4.15.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb" ] }, { @@ -23253,32 +23399,32 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-1030-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1030-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-1030-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelrelease": "4.15.0-1030-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" ] }, { @@ -23286,10 +23432,10 @@ "kernelrelease": "4.15.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb" ] }, { @@ -23297,10 +23443,10 @@ "kernelrelease": "4.15.0-1036-oem", "target": "ubuntu-oem", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb" ] }, { @@ -23308,12 +23454,12 @@ "kernelrelease": "4.15.0-124", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" ] }, { @@ -23321,12 +23467,12 @@ "kernelrelease": "4.15.0-134", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb" ] }, { @@ -23334,12 +23480,12 @@ "kernelrelease": "4.15.0-38", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" ] }, { @@ -23347,12 +23493,12 @@ "kernelrelease": "4.15.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, { @@ -23360,10 +23506,10 @@ "kernelrelease": "4.18.0-1009-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -23371,12 +23517,12 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb" ] }, { @@ -23384,9 +23530,9 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" ] }, @@ -23395,10 +23541,10 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" ] }, { @@ -23406,8 +23552,8 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" ] @@ -23417,10 +23563,10 @@ "kernelrelease": "5.0.0-47-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" ] }, { @@ -23429,9 +23575,9 @@ "target": "ubuntu-hwe-5.0", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" ] }, { @@ -23439,10 +23585,10 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" ] }, { @@ -23450,10 +23596,10 @@ "kernelrelease": "5.0.0-58-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" ] }, { @@ -23461,10 +23607,10 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" ] }, { @@ -23472,10 +23618,10 @@ "kernelrelease": "5.4.0-1001-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" ] }, { @@ -23483,10 +23629,10 @@ "kernelrelease": "5.4.0-1018-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" ] }, { @@ -23494,10 +23640,10 @@ "kernelrelease": "5.4.0-1019-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" ] }, { @@ -23505,10 +23651,10 @@ "kernelrelease": "5.4.0-1019-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" ] }, { @@ -23527,10 +23673,10 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] @@ -23540,12 +23686,12 @@ "kernelrelease": "5.4.0-64-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb" ] }, { @@ -23553,10 +23699,10 @@ "kernelrelease": "4.15.0-1004-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" ] }, { @@ -23564,10 +23710,10 @@ "kernelrelease": "4.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb" ] }, { @@ -23575,9 +23721,9 @@ "kernelrelease": "4.15.0-1007-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" ] }, @@ -23586,11 +23732,11 @@ "kernelrelease": "4.15.0-20", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" ] }, @@ -23599,10 +23745,10 @@ "kernelrelease": "5.15.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { @@ -23612,30 +23758,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1005-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1005-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1005-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.15.0-1005-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" ] }, { @@ -23643,43 +23789,32 @@ "kernelrelease": "5.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb" ] }, - { - "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb" - ] - }, { "kernelversion": "36+22.10.1", "kernelrelease": "5.15.0-35", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb" ] }, { - "kernelversion": "1", - "kernelrelease": "5.18.0-1001-kvm", - "target": "ubuntu-kvm", + "kernelversion": "36+22.10.1", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.18.0-1001-kvm_5.18.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.18.0-1001_5.18.0-1001.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.18.0-1001-kvm_5.18.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.18.0-1001_5.18.0-1001.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" ] }, { @@ -23687,10 +23822,21 @@ "kernelrelease": "5.18.0-1001-ibm", "target": "ubuntu-ibm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.18.0-1001-ibm_5.18.0-1001.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.18.0-1001-ibm_5.18.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.18.0-1001_5.18.0-1001.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.18.0-1001_5.18.0-1001.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.18.0-1001-ibm_5.18.0-1001.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.18.0-1001_5.18.0-1001.1_all.deb" + ] + }, + { + "kernelversion": "1", + "kernelrelease": "5.18.0-1001-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.18.0-1001-kvm_5.18.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.18.0-1001-kvm_5.18.0-1001.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.18.0-1001_5.18.0-1001.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.18.0-1001_5.18.0-1001.1_all.deb" ] }, { @@ -23698,9 +23844,9 @@ "kernelrelease": "5.18.0-1002-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_amd64.deb" ] }, @@ -23709,10 +23855,10 @@ "kernelrelease": "5.18.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb" ] }, { @@ -23720,32 +23866,32 @@ "kernelrelease": "5.15.0-1003-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" ] }, { "kernelversion": "3", - "kernelrelease": "5.15.0-1003-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1003-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" ] }, { "kernelversion": "3", - "kernelrelease": "5.15.0-1003-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.15.0-1003-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" ] }, { @@ -23753,21 +23899,21 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-intel-iotg", - "target": "ubuntu-intel-iotg", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23775,21 +23921,21 @@ "kernelrelease": "5.15.0-1004-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1004-intel-iotg", + "target": "ubuntu-intel-iotg", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" ] }, { @@ -23797,10 +23943,10 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" ] }, { @@ -23808,10 +23954,10 @@ "kernelrelease": "5.15.0-1004-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb" ] }, { @@ -23821,8 +23967,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, { @@ -23830,8 +23976,8 @@ "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" ] @@ -23841,10 +23987,10 @@ "kernelrelease": "5.15.0-27-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" ] }, { @@ -23853,9 +23999,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, { @@ -23863,10 +24009,10 @@ "kernelrelease": "5.17.0-1003-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb" ] }, { @@ -23874,10 +24020,10 @@ "kernelrelease": "5.10.0-1058-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb" ] }, { @@ -23885,10 +24031,10 @@ "kernelrelease": "5.11.0-1029-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" ] }, { @@ -23896,10 +24042,10 @@ "kernelrelease": "5.11.0-1029-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -23908,8 +24054,8 @@ "target": "ubuntu-azure-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" ] }, @@ -23919,8 +24065,8 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb" ] }, @@ -23929,12 +24075,12 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb" ] }, { @@ -23942,10 +24088,10 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb" ] }, { @@ -23954,9 +24100,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" ] }, { @@ -23964,21 +24110,10 @@ "kernelrelease": "5.13.0-1015-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" ] }, { @@ -23986,20 +24121,31 @@ "kernelrelease": "5.13.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" ] }, + { + "kernelversion": "20", + "kernelrelease": "5.13.0-1016-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb" + ] + }, { "kernelversion": "22", "kernelrelease": "5.13.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" ] }, @@ -24009,9 +24155,9 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" ] }, { @@ -24020,9 +24166,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" ] }, { @@ -24031,9 +24177,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" ] }, { @@ -24041,10 +24187,10 @@ "kernelrelease": "5.13.0-1019-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" ] }, { @@ -24052,10 +24198,10 @@ "kernelrelease": "5.13.0-1020-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" ] }, { @@ -24063,8 +24209,8 @@ "kernelrelease": "5.13.0-1020-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" ] @@ -24074,32 +24220,32 @@ "kernelrelease": "5.13.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1022-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1022-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" ] }, { "kernelversion": "26", - "kernelrelease": "5.13.0-1022-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1022-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb" ] }, { @@ -24108,9 +24254,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" ] }, { @@ -24130,31 +24276,31 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" ] }, { "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelrelease": "5.13.0-1023-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" ] }, { "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1023-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" ] }, { @@ -24163,20 +24309,9 @@ "target": "ubuntu-aws-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb" ] }, { @@ -24184,21 +24319,43 @@ "kernelrelease": "5.13.0-1025-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" ] }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.13.0-1025-gcp-5.13", + "target": "ubuntu-gcp-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" + ] + }, { "kernelversion": "31~20.04.2", "kernelrelease": "5.13.0-1026-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" + ] + }, + { + "kernelversion": "33~20.04.1", + "kernelrelease": "5.13.0-1028-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" ] }, { @@ -24212,28 +24369,17 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] }, - { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" - ] - }, { "kernelversion": "19~20.04.1", "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" ] }, { @@ -24241,12 +24387,12 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb" ] }, { @@ -24255,10 +24401,10 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" ] }, @@ -24268,11 +24414,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" ] }, { @@ -24280,12 +24426,12 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb" ] }, { @@ -24293,12 +24439,12 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb" ] }, { @@ -24307,11 +24453,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb" ] }, { @@ -24319,12 +24465,12 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb" ] }, { @@ -24332,12 +24478,12 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb" ] }, { @@ -24345,12 +24491,12 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb" ] }, { @@ -24358,12 +24504,12 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" ] }, { @@ -24371,12 +24517,12 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb" ] }, { @@ -24384,12 +24530,12 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" ] }, { @@ -24398,11 +24544,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb" ] }, { @@ -24410,10 +24556,10 @@ "kernelrelease": "5.14.0-1006-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" ] }, { @@ -24421,10 +24567,10 @@ "kernelrelease": "5.14.0-1007-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" ] }, { @@ -24432,10 +24578,10 @@ "kernelrelease": "5.14.0-1008-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb" ] }, { @@ -24443,10 +24589,10 @@ "kernelrelease": "5.14.0-1009-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb" ] }, { @@ -24465,9 +24611,9 @@ "kernelrelease": "5.14.0-1012-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" ] }, @@ -24476,10 +24622,10 @@ "kernelrelease": "5.14.0-1013-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb" ] }, { @@ -24488,9 +24634,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" ] }, { @@ -24499,9 +24645,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" ] }, { @@ -24509,10 +24655,10 @@ "kernelrelease": "5.14.0-1023-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb" ] }, { @@ -24520,10 +24666,10 @@ "kernelrelease": "5.14.0-1024-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb" ] }, { @@ -24531,9 +24677,9 @@ "kernelrelease": "5.14.0-1028-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb" ] }, @@ -24542,10 +24688,10 @@ "kernelrelease": "5.14.0-1029-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" ] }, { @@ -24553,10 +24699,10 @@ "kernelrelease": "5.14.0-1030-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" ] }, { @@ -24575,10 +24721,10 @@ "kernelrelease": "5.14.0-1033-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb" ] }, { @@ -24586,8 +24732,8 @@ "kernelrelease": "5.14.0-1035-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb" ] @@ -24597,10 +24743,10 @@ "kernelrelease": "5.14.0-1036-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb" ] }, { @@ -24608,10 +24754,10 @@ "kernelrelease": "5.14.0-1037-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" ] }, { @@ -24619,10 +24765,10 @@ "kernelrelease": "5.14.0-1038-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb" ] }, { @@ -24632,8 +24778,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1043-oem_5.14.0-1043.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1043_5.14.0-1043.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1043_5.14.0-1043.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1043-oem_5.14.0-1043.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1043-oem_5.14.0-1043.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1043_5.14.0-1043.48_all.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.14.0-1044-oem-5.14", + "target": "ubuntu-oem-5.14", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1044_5.14.0-1044.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1044-oem_5.14.0-1044.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1044-oem_5.14.0-1044.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1044_5.14.0-1044.49_all.deb" ] }, { @@ -24641,10 +24798,10 @@ "kernelrelease": "5.15.0-1002-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" ] }, { @@ -24652,9 +24809,9 @@ "kernelrelease": "5.15.0-1007-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb" ] }, @@ -24664,9 +24821,9 @@ "target": "ubuntu-aws-5.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb" ] }, { @@ -24674,10 +24831,10 @@ "kernelrelease": "5.15.0-1012-gcp-5.15", "target": "ubuntu-gcp-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb" ] }, { @@ -24685,10 +24842,10 @@ "kernelrelease": "5.15.0-1013-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb" ] }, { @@ -24696,10 +24853,32 @@ "kernelrelease": "5.15.0-1014-aws-5.15", "target": "ubuntu-aws-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1014-azure-5.15", + "target": "ubuntu-azure-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb" + ] + }, + { + "kernelversion": "19~20.04.1", + "kernelrelease": "5.15.0-1015-aws-5.15", + "target": "ubuntu-aws-5.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_amd64.deb" ] }, { @@ -24707,10 +24886,10 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" ] }, { @@ -24718,10 +24897,10 @@ "kernelrelease": "5.15.0-25-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" ] }, { @@ -24730,9 +24909,9 @@ "target": "ubuntu-hwe-5.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" ] }, { @@ -24747,14 +24926,14 @@ ] }, { - "kernelversion": "14", - "kernelrelease": "5.4.0-1013-ibm", - "target": "ubuntu-ibm", + "kernelversion": "44~20.04.1", + "kernelrelease": "5.15.0-41-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_amd64.deb" ] }, { @@ -24763,20 +24942,20 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.4.0-1015-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "14", + "kernelrelease": "5.4.0-1013-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb" ] }, { @@ -24785,11 +24964,22 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" ] }, + { + "kernelversion": "16", + "kernelrelease": "5.4.0-1015-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + ] + }, { "kernelversion": "23", "kernelrelease": "5.4.0-1021-ibm", @@ -24797,30 +24987,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1032-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1032-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1032-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { @@ -24829,20 +25019,31 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-gkeop", + "target": "ubuntu-gkeop", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -24850,32 +25051,32 @@ "kernelrelease": "5.4.0-1034-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1034-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-gkeop", + "kernelversion": "36", + "kernelrelease": "5.4.0-1035-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb" ] }, { @@ -24883,21 +25084,10 @@ "kernelrelease": "5.4.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.4.0-1035-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb" ] }, { @@ -24905,9 +25095,9 @@ "kernelrelease": "5.4.0-1039-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb" ] }, @@ -24916,10 +25106,10 @@ "kernelrelease": "5.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb" ] }, { @@ -24928,9 +25118,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" ] }, { @@ -24938,32 +25128,32 @@ "kernelrelease": "5.4.0-1040-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "5.4.0-1041-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1041-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, { "kernelversion": "42", - "kernelrelease": "5.4.0-1041-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1041-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb" ] }, { @@ -24971,32 +25161,32 @@ "kernelrelease": "5.4.0-1050-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1054-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "5.4.0-1054-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1054-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" ] }, { @@ -25004,10 +25194,10 @@ "kernelrelease": "5.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" ] }, { @@ -25015,10 +25205,10 @@ "kernelrelease": "5.4.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" ] }, { @@ -25026,10 +25216,10 @@ "kernelrelease": "5.4.0-1055-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb" ] }, { @@ -25037,9 +25227,9 @@ "kernelrelease": "5.4.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" ] }, @@ -25050,8 +25240,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" ] }, { @@ -25059,10 +25249,10 @@ "kernelrelease": "5.4.0-1057-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" ] }, { @@ -25071,20 +25261,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" ] }, { @@ -25092,21 +25271,21 @@ "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1058-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" ] }, { @@ -25114,10 +25293,10 @@ "kernelrelease": "5.4.0-1059-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" ] }, { @@ -25126,8 +25305,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" ] }, @@ -25136,21 +25315,32 @@ "kernelrelease": "5.4.0-1059-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" + ] + }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1060-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { @@ -25159,20 +25349,31 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1060-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1060-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" + ] + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -25180,21 +25381,21 @@ "kernelrelease": "5.4.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "5.4.0-1061-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1061-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { @@ -25202,32 +25403,21 @@ "kernelrelease": "5.4.0-1061-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" ] }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb" - ] - }, { "kernelversion": "65", - "kernelrelease": "5.4.0-1062-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1062-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" ] }, { @@ -25236,20 +25426,20 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" ] }, { "kernelversion": "65", - "kernelrelease": "5.4.0-1062-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1062-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" ] }, { @@ -25257,9 +25447,9 @@ "kernelrelease": "5.4.0-1062-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb" ] }, @@ -25268,10 +25458,10 @@ "kernelrelease": "5.4.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb" ] }, { @@ -25279,10 +25469,10 @@ "kernelrelease": "5.4.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" ] }, { @@ -25290,10 +25480,10 @@ "kernelrelease": "5.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { @@ -25302,9 +25492,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { @@ -25312,10 +25502,10 @@ "kernelrelease": "5.4.0-1063-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" ] }, { @@ -25323,10 +25513,10 @@ "kernelrelease": "5.4.0-1063-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb" ] }, { @@ -25334,10 +25524,10 @@ "kernelrelease": "5.4.0-1063-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" ] }, { @@ -25345,10 +25535,21 @@ "kernelrelease": "5.4.0-1063-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb" + ] + }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1064-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { @@ -25356,10 +25557,10 @@ "kernelrelease": "5.4.0-1064-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb" ] }, { @@ -25367,21 +25568,10 @@ "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" ] }, { @@ -25389,10 +25579,10 @@ "kernelrelease": "5.4.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" ] }, { @@ -25400,10 +25590,10 @@ "kernelrelease": "5.4.0-1064-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" ] }, { @@ -25411,10 +25601,10 @@ "kernelrelease": "5.4.0-1065-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" ] }, { @@ -25422,8 +25612,8 @@ "kernelrelease": "5.4.0-1065-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" ] @@ -25433,9 +25623,9 @@ "kernelrelease": "5.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, @@ -25455,10 +25645,10 @@ "kernelrelease": "5.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" ] }, { @@ -25466,10 +25656,10 @@ "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" ] }, { @@ -25477,10 +25667,10 @@ "kernelrelease": "5.4.0-1066-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" ] }, { @@ -25488,10 +25678,10 @@ "kernelrelease": "5.4.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" ] }, { @@ -25499,8 +25689,8 @@ "kernelrelease": "5.4.0-1068-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" ] @@ -25512,8 +25702,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb" ] }, { @@ -25522,9 +25712,9 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb" ] }, { @@ -25532,21 +25722,10 @@ "kernelrelease": "5.4.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" ] }, { @@ -25555,20 +25734,31 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" ] }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + ] + }, { "kernelversion": "72", "kernelrelease": "5.4.0-1069-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb" ] }, { @@ -25576,10 +25766,10 @@ "kernelrelease": "5.4.0-1069-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb" ] }, { @@ -25588,9 +25778,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" ] }, { @@ -25598,8 +25788,8 @@ "kernelrelease": "5.4.0-1070-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" ] @@ -25609,10 +25799,10 @@ "kernelrelease": "5.4.0-1070-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" ] }, { @@ -25620,10 +25810,10 @@ "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" ] }, { @@ -25632,31 +25822,31 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, { "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1071-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1071-kvm_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1071-kvm_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, { @@ -25665,9 +25855,20 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + ] + }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" ] }, { @@ -25675,8 +25876,8 @@ "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" ] @@ -25686,32 +25887,32 @@ "kernelrelease": "5.4.0-1072-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1073-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" ] }, { "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1073-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" ] }, { @@ -25720,9 +25921,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb" ] }, { @@ -25738,24 +25939,24 @@ }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1074-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1074-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb" ] }, { "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1074-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" ] }, { @@ -25774,10 +25975,10 @@ "kernelrelease": "5.4.0-1074-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb" ] }, { @@ -25785,10 +25986,10 @@ "kernelrelease": "5.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" ] }, { @@ -25796,10 +25997,10 @@ "kernelrelease": "5.4.0-1075-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb" ] }, { @@ -25807,10 +26008,10 @@ "kernelrelease": "5.4.0-1075-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb" ] }, { @@ -25818,9 +26019,9 @@ "kernelrelease": "5.4.0-1076-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb" ] }, @@ -25829,10 +26030,10 @@ "kernelrelease": "5.4.0-1078-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" ] }, { @@ -25840,10 +26041,21 @@ "kernelrelease": "5.4.0-1078-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" + ] + }, + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1079-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_amd64.deb" ] }, { @@ -25851,10 +26063,43 @@ "kernelrelease": "5.4.0-1080-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" + ] + }, + { + "kernelversion": "88", + "kernelrelease": "5.4.0-1081-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_amd64.deb" + ] + }, + { + "kernelversion": "90+cvm2", + "kernelrelease": "5.4.0-1085-azure-cvm", + "target": "ubuntu-azure-cvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm2_amd64.deb" + ] + }, + { + "kernelversion": "91", + "kernelrelease": "5.4.0-1086-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_amd64.deb" ] }, { @@ -25862,23 +26107,25 @@ "kernelrelease": "5.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb" ] }, { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "138", + "kernelrelease": "5.4.0-122", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_amd64.deb" ] }, { @@ -25886,21 +26133,21 @@ "kernelrelease": "5.8.0-1033-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.8.0-1033-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { @@ -25908,23 +26155,34 @@ "kernelrelease": "5.8.0-1036-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" ] }, + { + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1036-gcp-5.8", + "target": "ubuntu-gcp-5.8", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" + ] + }, { "kernelversion": "75", "kernelrelease": "5.8.0-67-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" ] }, { @@ -25933,8 +26191,8 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb" ] }, @@ -25943,10 +26201,10 @@ "kernelrelease": "5.10.0-1014-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb" ] }, { @@ -25954,8 +26212,8 @@ "kernelrelease": "5.10.0-1016-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb" ] @@ -25976,10 +26234,10 @@ "kernelrelease": "5.10.0-1019-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" ] }, { @@ -25987,9 +26245,9 @@ "kernelrelease": "5.10.0-1021-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" ] }, @@ -25998,10 +26256,10 @@ "kernelrelease": "5.10.0-1022-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb" ] }, { @@ -26010,9 +26268,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb" ] }, { @@ -26020,9 +26278,9 @@ "kernelrelease": "5.10.0-1025-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb" ] }, @@ -26031,8 +26289,8 @@ "kernelrelease": "5.10.0-1026-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" ] @@ -26042,10 +26300,10 @@ "kernelrelease": "5.10.0-1029-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb" ] }, { @@ -26055,8 +26313,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb" ] }, { @@ -26064,10 +26322,10 @@ "kernelrelease": "5.10.0-1038-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" ] }, { @@ -26076,9 +26334,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" ] }, { @@ -26086,10 +26344,10 @@ "kernelrelease": "5.10.0-1045-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" ] }, { @@ -26097,10 +26355,10 @@ "kernelrelease": "5.10.0-1049-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" ] }, { @@ -26108,10 +26366,10 @@ "kernelrelease": "5.10.0-1050-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" ] }, { @@ -26119,8 +26377,8 @@ "kernelrelease": "5.10.0-1051-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" ] @@ -26130,10 +26388,10 @@ "kernelrelease": "5.10.0-1053-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" ] }, { @@ -26141,10 +26399,10 @@ "kernelrelease": "5.10.0-1055-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" ] }, { @@ -26153,9 +26411,9 @@ "target": "ubuntu-oem-5.10", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb" ] }, { @@ -26163,10 +26421,10 @@ "kernelrelease": "5.11.0-1012-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" ] }, { @@ -26174,10 +26432,10 @@ "kernelrelease": "5.11.0-1013-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb" ] }, { @@ -26185,10 +26443,10 @@ "kernelrelease": "5.11.0-1013-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb" ] }, { @@ -26196,10 +26454,10 @@ "kernelrelease": "5.11.0-1014-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb" ] }, { @@ -26207,10 +26465,10 @@ "kernelrelease": "5.11.0-1014-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" ] }, { @@ -26218,21 +26476,10 @@ "kernelrelease": "5.11.0-1015-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" ] }, { @@ -26240,21 +26487,21 @@ "kernelrelease": "5.11.0-1016-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { @@ -26262,10 +26509,10 @@ "kernelrelease": "5.11.0-1017-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" ] }, { @@ -26273,10 +26520,21 @@ "kernelrelease": "5.11.0-1017-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + ] + }, + { + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-oracle-5.11", + "target": "ubuntu-oracle-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { @@ -26285,8 +26543,8 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" ] }, @@ -26295,21 +26553,10 @@ "kernelrelease": "5.11.0-1018-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb" ] }, { @@ -26317,8 +26564,8 @@ "kernelrelease": "5.11.0-1019-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb" ] @@ -26328,10 +26575,21 @@ "kernelrelease": "5.11.0-1019-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { @@ -26339,10 +26597,10 @@ "kernelrelease": "5.11.0-1020-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" ] }, { @@ -26350,10 +26608,10 @@ "kernelrelease": "5.11.0-1020-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { @@ -26361,10 +26619,10 @@ "kernelrelease": "5.11.0-1020-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { @@ -26372,10 +26630,10 @@ "kernelrelease": "5.11.0-1020-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" ] }, { @@ -26383,32 +26641,32 @@ "kernelrelease": "5.11.0-1021-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1021-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, { "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1021-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" ] }, { @@ -26416,10 +26674,21 @@ "kernelrelease": "5.11.0-1021-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-azure-5.11", + "target": "ubuntu-azure-5.11", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { @@ -26427,9 +26696,9 @@ "kernelrelease": "5.11.0-1022-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" ] }, @@ -26439,20 +26708,9 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { @@ -26460,10 +26718,21 @@ "kernelrelease": "5.11.0-1022-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -26471,10 +26740,10 @@ "kernelrelease": "5.11.0-1023-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { @@ -26482,21 +26751,10 @@ "kernelrelease": "5.11.0-1023-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { @@ -26505,8 +26763,8 @@ "target": "ubuntu-gcp-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb" ] }, @@ -26515,32 +26773,32 @@ "kernelrelease": "5.11.0-1024-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb" ] }, { "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { @@ -26548,9 +26806,9 @@ "kernelrelease": "5.11.0-1025-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" ] }, @@ -26559,10 +26817,21 @@ "kernelrelease": "5.11.0-1026-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" + ] + }, + { + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { @@ -26570,10 +26839,10 @@ "kernelrelease": "5.11.0-1027-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { @@ -26581,32 +26850,21 @@ "kernelrelease": "5.11.0-1027-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" - ] - }, { "kernelversion": "31~20.04.1", "kernelrelease": "5.11.0-1028-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { @@ -26614,10 +26872,10 @@ "kernelrelease": "5.11.0-1028-aws-5.11", "target": "ubuntu-aws-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { @@ -26625,8 +26883,8 @@ "kernelrelease": "5.11.0-1028-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" ] @@ -26636,10 +26894,10 @@ "kernelrelease": "5.11.0-1028-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb" ] }, { @@ -26647,8 +26905,8 @@ "kernelrelease": "5.11.0-1029-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" ] @@ -26658,12 +26916,12 @@ "kernelrelease": "5.11.0-22-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" ] }, { @@ -26671,12 +26929,12 @@ "kernelrelease": "5.11.0-25-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb" ] }, { @@ -26684,12 +26942,12 @@ "kernelrelease": "5.11.0-27-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" ] }, { @@ -26697,12 +26955,12 @@ "kernelrelease": "5.11.0-34-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" ] }, { @@ -26710,12 +26968,12 @@ "kernelrelease": "5.11.0-36-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" ] }, { @@ -26723,12 +26981,12 @@ "kernelrelease": "5.11.0-37-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb" ] }, { @@ -26736,12 +26994,12 @@ "kernelrelease": "5.11.0-38-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" ] }, { @@ -26749,12 +27007,12 @@ "kernelrelease": "5.11.0-40-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" ] }, { @@ -26762,12 +27020,12 @@ "kernelrelease": "5.11.0-41-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb" ] }, { @@ -26775,11 +27033,11 @@ "kernelrelease": "5.11.0-43-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" ] }, @@ -26788,12 +27046,12 @@ "kernelrelease": "5.11.0-44-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" ] }, { @@ -26801,12 +27059,12 @@ "kernelrelease": "5.11.0-46-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" ] }, { @@ -26814,10 +27072,10 @@ "kernelrelease": "5.13.0-1008-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" ] }, { @@ -26826,9 +27084,9 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb" ] }, { @@ -26848,9 +27106,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" ] }, { @@ -26858,10 +27116,10 @@ "kernelrelease": "5.13.0-1009-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" ] }, { @@ -26870,31 +27128,31 @@ "target": "ubuntu-intel-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb" ] }, { "kernelversion": "10", - "kernelrelease": "5.13.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1009-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { "kernelversion": "10", - "kernelrelease": "5.13.0-1009-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.13.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb" ] }, { @@ -26903,9 +27161,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { @@ -26914,9 +27172,20 @@ "target": "ubuntu-intel-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" + ] + }, + { + "kernelversion": "11", + "kernelrelease": "5.13.0-1010-oem-5.13", + "target": "ubuntu-oem-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" ] }, { @@ -26930,26 +27199,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb" ] }, - { - "kernelversion": "11", - "kernelrelease": "5.13.0-1010-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb" - ] - }, { "kernelversion": "11", "kernelrelease": "5.13.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" ] }, { @@ -26968,8 +27226,8 @@ "kernelrelease": "5.13.0-1011-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb" ] @@ -26980,9 +27238,9 @@ "target": "ubuntu-oracle-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" ] }, { @@ -26992,8 +27250,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" ] }, { @@ -27001,10 +27259,10 @@ "kernelrelease": "5.13.0-1012-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" ] }, { @@ -27014,8 +27272,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" ] }, { @@ -27023,10 +27281,10 @@ "kernelrelease": "5.13.0-1012-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" ] }, { @@ -27034,21 +27292,10 @@ "kernelrelease": "5.13.0-1013-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" ] }, { @@ -27056,21 +27303,32 @@ "kernelrelease": "5.13.0-1014-intel-5.13", "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb" ] }, + { + "kernelversion": "15", + "kernelrelease": "5.13.0-1014-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" + ] + }, { "kernelversion": "18", "kernelrelease": "5.13.0-1014-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb" ] }, { @@ -27078,10 +27336,10 @@ "kernelrelease": "5.13.0-1015-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" ] }, { @@ -27089,32 +27347,32 @@ "kernelrelease": "5.13.0-1016-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { @@ -27123,9 +27381,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" ] }, { @@ -27133,10 +27391,10 @@ "kernelrelease": "5.13.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" ] }, { @@ -27155,10 +27413,10 @@ "kernelrelease": "5.13.0-1017-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb" ] }, { @@ -27166,10 +27424,10 @@ "kernelrelease": "5.13.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" ] }, { @@ -27178,9 +27436,9 @@ "target": "ubuntu-gcp-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" ] }, { @@ -27199,9 +27457,9 @@ "kernelrelease": "5.13.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" ] }, @@ -27210,8 +27468,8 @@ "kernelrelease": "5.13.0-1021-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb" ] @@ -27221,8 +27479,8 @@ "kernelrelease": "5.13.0-1021-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" ] @@ -27232,10 +27490,10 @@ "kernelrelease": "5.13.0-1021-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" ] }, { @@ -27245,8 +27503,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" ] }, { @@ -27254,10 +27512,10 @@ "kernelrelease": "5.13.0-1022-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb" ] }, { @@ -27265,10 +27523,10 @@ "kernelrelease": "5.13.0-1022-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" ] }, { @@ -27276,8 +27534,8 @@ "kernelrelease": "5.13.0-1024-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" ] @@ -27287,10 +27545,10 @@ "kernelrelease": "5.13.0-1025-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" ] }, { @@ -27300,8 +27558,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb" ] }, { @@ -27309,32 +27567,32 @@ "kernelrelease": "5.13.0-1026-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelrelease": "5.13.0-1027-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1027-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { @@ -27342,10 +27600,10 @@ "kernelrelease": "5.13.0-1028-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb" ] }, { @@ -27353,9 +27611,9 @@ "kernelrelease": "5.13.0-1028-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" ] }, @@ -27364,10 +27622,10 @@ "kernelrelease": "5.13.0-1029-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" ] }, { @@ -27375,9 +27633,9 @@ "kernelrelease": "5.13.0-1029-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb" ] }, @@ -27386,9 +27644,9 @@ "kernelrelease": "5.13.0-1029-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" ] }, @@ -27397,9 +27655,9 @@ "kernelrelease": "5.13.0-1030-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb" ] }, @@ -27408,10 +27666,10 @@ "kernelrelease": "5.13.0-1030-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" ] }, { @@ -27419,12 +27677,23 @@ "kernelrelease": "5.13.0-1031-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb" ] }, + { + "kernelversion": "37~20.04.1", + "kernelrelease": "5.13.0-1031-azure-5.13", + "target": "ubuntu-azure-5.13", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb" + ] + }, { "kernelversion": "37~20.04.1", "kernelrelease": "5.13.0-1031-gcp-5.13", @@ -27436,26 +27705,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb" ] }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.13.0-1031-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb" - ] - }, { "kernelversion": "40~20.04.1", "kernelrelease": "5.13.0-1033-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb" ] }, { @@ -27463,9 +27721,9 @@ "kernelrelease": "5.13.0-1033-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" ] }, @@ -27474,10 +27732,10 @@ "kernelrelease": "5.13.0-1034-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb" ] }, { @@ -27485,10 +27743,10 @@ "kernelrelease": "5.13.0-1036-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" ] }, { @@ -27497,11 +27755,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" ] }, { @@ -27509,12 +27767,12 @@ "kernelrelease": "5.13.0-25-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb" ] }, { @@ -27522,12 +27780,12 @@ "kernelrelease": "5.13.0-27-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb" ] }, { @@ -27535,12 +27793,12 @@ "kernelrelease": "5.13.0-35-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb" ] }, { @@ -27548,12 +27806,12 @@ "kernelrelease": "5.13.0-39-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" ] }, { @@ -27561,12 +27819,12 @@ "kernelrelease": "5.13.0-48-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" ] }, { @@ -27575,11 +27833,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb" ] }, { @@ -27587,10 +27845,10 @@ "kernelrelease": "5.14.0-1004-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb" ] }, { @@ -27599,9 +27857,9 @@ "target": "ubuntu-oem-5.14", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" ] }, { @@ -27609,10 +27867,10 @@ "kernelrelease": "5.14.0-1018-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" ] }, { @@ -27631,10 +27889,10 @@ "kernelrelease": "5.14.0-1027-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb" ] }, { @@ -27642,10 +27900,10 @@ "kernelrelease": "5.14.0-1031-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" ] }, { @@ -27653,10 +27911,10 @@ "kernelrelease": "5.14.0-1042-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb" ] }, { @@ -27664,9 +27922,9 @@ "kernelrelease": "5.15.0-1003-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" ] }, @@ -27676,8 +27934,8 @@ "target": "ubuntu-gcp-5.15", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb" ] }, @@ -27686,10 +27944,10 @@ "kernelrelease": "5.15.0-1007-oracle-5.15", "target": "ubuntu-oracle-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb" ] }, { @@ -27699,8 +27957,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" ] }, { @@ -27708,10 +27966,10 @@ "kernelrelease": "5.15.0-1008-intel-iotg-5.15", "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb" ] }, { @@ -27720,31 +27978,31 @@ "target": "ubuntu-intel-iotg-5.15", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb" ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb" ] }, { @@ -27752,12 +28010,12 @@ "kernelrelease": "5.4.0-100", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb" ] }, { @@ -27766,9 +28024,9 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" ] }, { @@ -27776,8 +28034,8 @@ "kernelrelease": "5.4.0-1006-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" ] @@ -27787,10 +28045,10 @@ "kernelrelease": "5.4.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb" ] }, { @@ -27799,9 +28057,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" ] }, { @@ -27809,9 +28067,9 @@ "kernelrelease": "5.4.0-1008-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" ] }, @@ -27820,10 +28078,10 @@ "kernelrelease": "5.4.0-1009-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" ] }, { @@ -27831,10 +28089,10 @@ "kernelrelease": "5.4.0-1010-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" ] }, { @@ -27842,54 +28100,54 @@ "kernelrelease": "5.4.0-1010-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1011-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb" ] }, { @@ -27897,10 +28155,10 @@ "kernelrelease": "5.4.0-1011-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" ] }, { @@ -27908,21 +28166,10 @@ "kernelrelease": "5.4.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.4.0-1012-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb" ] }, { @@ -27930,21 +28177,32 @@ "kernelrelease": "5.4.0-1012-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, + { + "kernelversion": "13", + "kernelrelease": "5.4.0-1012-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" + ] + }, { "kernelversion": "15", "kernelrelease": "5.4.0-1014-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" ] }, { @@ -27952,54 +28210,54 @@ "kernelrelease": "5.4.0-1014-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1015-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1015-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1015-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" ] }, { @@ -28007,8 +28265,8 @@ "kernelrelease": "5.4.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb" ] @@ -28018,10 +28276,10 @@ "kernelrelease": "5.4.0-1016-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" ] }, { @@ -28029,10 +28287,10 @@ "kernelrelease": "5.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" ] }, { @@ -28041,9 +28299,9 @@ "target": "ubuntu-ibm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" ] }, { @@ -28051,10 +28309,21 @@ "kernelrelease": "5.4.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb" + ] + }, + { + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { @@ -28062,10 +28331,10 @@ "kernelrelease": "5.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb" ] }, { @@ -28074,20 +28343,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" ] }, { @@ -28095,10 +28353,10 @@ "kernelrelease": "5.4.0-1018-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb" ] }, { @@ -28106,21 +28364,10 @@ "kernelrelease": "5.4.0-1018-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.4.0-1019-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" ] }, { @@ -28128,9 +28375,9 @@ "kernelrelease": "5.4.0-1019-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb" ] }, @@ -28139,10 +28386,21 @@ "kernelrelease": "5.4.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.4.0-1019-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" ] }, { @@ -28152,8 +28410,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" ] }, { @@ -28161,32 +28419,32 @@ "kernelrelease": "5.4.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1020-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { "kernelversion": "20", - "kernelrelease": "5.4.0-1020-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" ] }, { @@ -28194,54 +28452,54 @@ "kernelrelease": "5.4.0-1020-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1021-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1021-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1021-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.4.0-1021-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" ] }, { @@ -28249,32 +28507,21 @@ "kernelrelease": "5.4.0-1021-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1022-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" ] }, { @@ -28282,21 +28529,32 @@ "kernelrelease": "5.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { "kernelversion": "22", - "kernelrelease": "5.4.0-1022-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1022-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" + ] + }, + { + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" ] }, { @@ -28304,10 +28562,10 @@ "kernelrelease": "5.4.0-1022-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" ] }, { @@ -28317,8 +28575,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" ] }, { @@ -28326,10 +28584,10 @@ "kernelrelease": "5.4.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb" ] }, { @@ -28337,10 +28595,10 @@ "kernelrelease": "5.4.0-1023-gkeop", "target": "ubuntu-gkeop", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" ] }, { @@ -28348,10 +28606,10 @@ "kernelrelease": "5.4.0-1023-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb" ] }, { @@ -28360,20 +28618,20 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1024-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -28381,21 +28639,21 @@ "kernelrelease": "5.4.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "5.4.0-1024-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { @@ -28403,32 +28661,32 @@ "kernelrelease": "5.4.0-1024-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1025-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" ] }, { @@ -28436,21 +28694,21 @@ "kernelrelease": "5.4.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.4.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb" ] }, { @@ -28459,8 +28717,8 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" ] }, @@ -28469,10 +28727,10 @@ "kernelrelease": "5.4.0-1026-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" ] }, { @@ -28481,9 +28739,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" ] }, { @@ -28492,9 +28750,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" ] }, { @@ -28502,10 +28760,10 @@ "kernelrelease": "5.4.0-1026-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb" ] }, { @@ -28521,24 +28779,24 @@ }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1028-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.4.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb" ] }, { @@ -28546,9 +28804,9 @@ "kernelrelease": "5.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" ] }, @@ -28557,21 +28815,10 @@ "kernelrelease": "5.4.0-1028-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.4.0-1029-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb" ] }, { @@ -28581,19 +28828,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.4.0-1029-oracle", - "target": "ubuntu-oracle", + "kernelversion": "30", + "kernelrelease": "5.4.0-1029-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" ] }, { @@ -28602,9 +28849,20 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.4.0-1029-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" ] }, { @@ -28612,21 +28870,32 @@ "kernelrelease": "5.4.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" ] }, + { + "kernelversion": "32", + "kernelrelease": "5.4.0-1031-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb" + ] + }, { "kernelversion": "32", "kernelrelease": "5.4.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb" ] }, { @@ -28634,21 +28903,21 @@ "kernelrelease": "5.4.0-1031-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.4.0-1031-kvm", - "target": "ubuntu-kvm", + "kernelversion": "34", + "kernelrelease": "5.4.0-1032-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" ] }, { @@ -28656,21 +28925,10 @@ "kernelrelease": "5.4.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.4.0-1032-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb" ] }, { @@ -28678,10 +28936,10 @@ "kernelrelease": "5.4.0-1033-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb" ] }, { @@ -28689,10 +28947,10 @@ "kernelrelease": "5.4.0-1033-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb" ] }, { @@ -28700,10 +28958,10 @@ "kernelrelease": "5.4.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" ] }, { @@ -28713,19 +28971,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb" ] }, { @@ -28739,15 +28986,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" ] }, + { + "kernelversion": "37", + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" + ] + }, { "kernelversion": "38", "kernelrelease": "5.4.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" ] }, { @@ -28757,8 +29015,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" ] }, { @@ -28767,9 +29025,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" ] }, { @@ -28779,30 +29037,30 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1036-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1036-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.4.0-1036-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1036-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" ] }, { @@ -28810,10 +29068,10 @@ "kernelrelease": "5.4.0-1037-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" ] }, { @@ -28821,10 +29079,21 @@ "kernelrelease": "5.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb" + ] + }, + { + "kernelversion": "40", + "kernelrelease": "5.4.0-1037-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" ] }, { @@ -28832,21 +29101,21 @@ "kernelrelease": "5.4.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.4.0-1037-gcp", - "target": "ubuntu-gcp", + "kernelversion": "38", + "kernelrelease": "5.4.0-1037-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, { @@ -28856,19 +29125,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1037-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, { @@ -28877,8 +29135,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" ] }, @@ -28887,10 +29145,10 @@ "kernelrelease": "5.4.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb" ] }, { @@ -28898,9 +29156,9 @@ "kernelrelease": "5.4.0-1038-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" ] }, @@ -28909,8 +29167,8 @@ "kernelrelease": "5.4.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb" ] @@ -28920,10 +29178,21 @@ "kernelrelease": "5.4.0-1038-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb" + ] + }, + { + "kernelversion": "41", + "kernelrelease": "5.4.0-1039-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" ] }, { @@ -28931,8 +29200,8 @@ "kernelrelease": "5.4.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] @@ -28942,21 +29211,10 @@ "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1039-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { @@ -28964,10 +29222,10 @@ "kernelrelease": "5.4.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" ] }, { @@ -28975,12 +29233,12 @@ "kernelrelease": "5.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb" ] }, { @@ -28988,9 +29246,9 @@ "kernelrelease": "5.4.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" ] }, @@ -28999,21 +29257,32 @@ "kernelrelease": "5.4.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" ] }, + { + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" + ] + }, { "kernelversion": "43", "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { @@ -29022,31 +29291,20 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb" ] }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" - ] - }, { "kernelversion": "44", "kernelrelease": "5.4.0-1041-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb" ] }, { @@ -29054,10 +29312,10 @@ "kernelrelease": "5.4.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" ] }, { @@ -29066,8 +29324,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" ] }, @@ -29087,10 +29345,10 @@ "kernelrelease": "5.4.0-1042-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" ] }, { @@ -29098,10 +29356,10 @@ "kernelrelease": "5.4.0-1043-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb" ] }, { @@ -29110,9 +29368,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" ] }, { @@ -29120,9 +29378,9 @@ "kernelrelease": "5.4.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, @@ -29131,10 +29389,10 @@ "kernelrelease": "5.4.0-1043-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb" ] }, { @@ -29142,10 +29400,10 @@ "kernelrelease": "5.4.0-1043-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" ] }, { @@ -29154,20 +29412,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1044-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" ] }, { @@ -29175,10 +29422,10 @@ "kernelrelease": "5.4.0-1044-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" ] }, { @@ -29186,32 +29433,32 @@ "kernelrelease": "5.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "5.4.0-1044-gcp", - "target": "ubuntu-gcp", + "kernelversion": "46", + "kernelrelease": "5.4.0-1044-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb" ] }, { "kernelversion": "47", - "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1044-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb" ] }, { @@ -29219,10 +29466,21 @@ "kernelrelease": "5.4.0-1045-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" + ] + }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1045-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb" ] }, { @@ -29230,54 +29488,54 @@ "kernelrelease": "5.4.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" ] }, { "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1046-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { "kernelversion": "48", - "kernelrelease": "5.4.0-1046-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.4.0-1046-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb" ] }, { "kernelversion": "48", - "kernelrelease": "5.4.0-1046-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.4.0-1046-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" ] }, { "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gkeop", - "target": "ubuntu-gkeop", + "kernelrelease": "5.4.0-1046-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" ] }, { @@ -29286,9 +29544,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" ] }, { @@ -29297,31 +29555,20 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" ] }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb" - ] - }, { "kernelversion": "49", "kernelrelease": "5.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" ] }, { @@ -29329,21 +29576,21 @@ "kernelrelease": "5.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-azure", + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb" ] }, { @@ -29351,10 +29598,21 @@ "kernelrelease": "5.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" ] }, { @@ -29362,10 +29620,10 @@ "kernelrelease": "5.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" ] }, { @@ -29374,9 +29632,9 @@ "target": "ubuntu-gkeop", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb" ] }, { @@ -29384,9 +29642,9 @@ "kernelrelease": "5.4.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" ] }, @@ -29395,10 +29653,10 @@ "kernelrelease": "5.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb" ] }, { @@ -29406,10 +29664,10 @@ "kernelrelease": "5.4.0-1049-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb" ] }, { @@ -29418,8 +29676,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb" ] }, @@ -29429,8 +29687,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, @@ -29439,10 +29697,10 @@ "kernelrelease": "5.4.0-1049-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" ] }, { @@ -29450,10 +29708,10 @@ "kernelrelease": "5.4.0-1049-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" ] }, { @@ -29462,11 +29720,22 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" + ] + }, + { + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { @@ -29475,8 +29744,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, @@ -29485,21 +29754,10 @@ "kernelrelease": "5.4.0-1051-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { @@ -29507,8 +29765,8 @@ "kernelrelease": "5.4.0-1051-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb" ] @@ -29518,10 +29776,10 @@ "kernelrelease": "5.4.0-1051-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" ] }, { @@ -29530,9 +29788,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" ] }, { @@ -29540,10 +29798,10 @@ "kernelrelease": "5.4.0-1052-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" ] }, { @@ -29551,32 +29809,32 @@ "kernelrelease": "5.4.0-1052-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1053-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb" ] }, { "kernelversion": "57", - "kernelrelease": "5.4.0-1053-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1053-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb" ] }, { @@ -29586,8 +29844,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" ] }, { @@ -29596,9 +29854,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" ] }, { @@ -29606,10 +29864,10 @@ "kernelrelease": "5.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" ] }, { @@ -29617,10 +29875,10 @@ "kernelrelease": "5.4.0-1054-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" ] }, { @@ -29628,10 +29886,10 @@ "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" ] }, { @@ -29640,31 +29898,42 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" ] }, + { + "kernelversion": "57", + "kernelrelease": "5.4.0-1055-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + ] + }, { "kernelversion": "57", "kernelrelease": "5.4.0-1055-azure", "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.4.0-1055-kvm", - "target": "ubuntu-kvm", + "kernelversion": "59", + "kernelrelease": "5.4.0-1056-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" ] }, { @@ -29672,32 +29941,21 @@ "kernelrelease": "5.4.0-1056-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" ] }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1056-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" - ] - }, { "kernelversion": "60", "kernelrelease": "5.4.0-1056-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb" ] }, { @@ -29705,8 +29963,8 @@ "kernelrelease": "5.4.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" ] @@ -29717,9 +29975,9 @@ "target": "ubuntu-gke", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" ] }, { @@ -29727,9 +29985,9 @@ "kernelrelease": "5.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" ] }, @@ -29738,9 +29996,9 @@ "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, @@ -29750,9 +30008,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { @@ -29760,32 +30018,32 @@ "kernelrelease": "5.4.0-1058-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.4.0-1059-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" ] }, { "kernelversion": "63", - "kernelrelease": "5.4.0-1059-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1059-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" ] }, { @@ -29793,10 +30051,10 @@ "kernelrelease": "5.4.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb" ] }, { @@ -29804,10 +30062,10 @@ "kernelrelease": "5.4.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" ] }, { @@ -29815,21 +30073,10 @@ "kernelrelease": "5.4.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.4.0-1067-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" ] }, { @@ -29843,15 +30090,26 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb" ] }, + { + "kernelversion": "70", + "kernelrelease": "5.4.0-1067-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb" + ] + }, { "kernelversion": "70+cvm1", "kernelrelease": "5.4.0-1067-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb" ] }, { @@ -29859,21 +30117,32 @@ "kernelrelease": "5.4.0-1067-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" ] }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1068-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + ] + }, { "kernelversion": "72", "kernelrelease": "5.4.0-1068-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" ] }, { @@ -29881,21 +30150,10 @@ "kernelrelease": "5.4.0-1068-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1068-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" ] }, { @@ -29903,10 +30161,10 @@ "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" ] }, { @@ -29915,11 +30173,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb" ] }, { @@ -29928,20 +30186,20 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb" ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" ] }, { @@ -29949,21 +30207,21 @@ "kernelrelease": "5.4.0-1072-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1072-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" ] }, { @@ -29971,9 +30229,9 @@ "kernelrelease": "5.4.0-1072-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb" ] }, @@ -29984,8 +30242,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" ] }, { @@ -29995,8 +30253,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" ] }, { @@ -30004,8 +30262,8 @@ "kernelrelease": "5.4.0-1076-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb" ] @@ -30015,10 +30273,10 @@ "kernelrelease": "5.4.0-1076-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb" ] }, { @@ -30026,10 +30284,10 @@ "kernelrelease": "5.4.0-1077-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" ] }, { @@ -30038,9 +30296,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb" ] }, { @@ -30048,8 +30306,8 @@ "kernelrelease": "5.4.0-1078-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb" ] @@ -30061,8 +30319,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb" ] }, { @@ -30070,10 +30328,10 @@ "kernelrelease": "5.4.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" ] }, { @@ -30081,10 +30339,10 @@ "kernelrelease": "5.4.0-1080-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb" ] }, { @@ -30092,10 +30350,10 @@ "kernelrelease": "5.4.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" ] }, { @@ -30103,10 +30361,10 @@ "kernelrelease": "5.4.0-1083-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb" ] }, { @@ -30114,10 +30372,10 @@ "kernelrelease": "5.4.0-1085-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb" ] }, { @@ -30125,10 +30383,10 @@ "kernelrelease": "5.4.0-1085-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb" ] }, { @@ -30136,11 +30394,11 @@ "kernelrelease": "5.4.0-109", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" ] }, @@ -30149,12 +30407,12 @@ "kernelrelease": "5.4.0-110", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" ] }, { @@ -30162,12 +30420,12 @@ "kernelrelease": "5.4.0-113", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb" ] }, { @@ -30175,12 +30433,12 @@ "kernelrelease": "5.4.0-117", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb" ] }, { @@ -30188,11 +30446,11 @@ "kernelrelease": "5.4.0-120", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb" ] }, @@ -30201,12 +30459,12 @@ "kernelrelease": "5.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" ] }, { @@ -30214,12 +30472,12 @@ "kernelrelease": "5.4.0-29", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb" ] }, { @@ -30228,11 +30486,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb" ] }, { @@ -30241,11 +30499,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" ] }, { @@ -30253,10 +30511,10 @@ "kernelrelease": "5.4.0-37", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" ] @@ -30266,12 +30524,12 @@ "kernelrelease": "5.4.0-39", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" ] }, { @@ -30279,12 +30537,12 @@ "kernelrelease": "5.4.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb" ] }, { @@ -30292,11 +30550,11 @@ "kernelrelease": "5.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb" ] }, @@ -30305,12 +30563,12 @@ "kernelrelease": "5.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" ] }, { @@ -30318,12 +30576,12 @@ "kernelrelease": "5.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb" ] }, { @@ -30331,12 +30589,12 @@ "kernelrelease": "5.4.0-48", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb" ] }, { @@ -30344,12 +30602,12 @@ "kernelrelease": "5.4.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb" ] }, { @@ -30359,10 +30617,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" ] }, { @@ -30370,12 +30628,12 @@ "kernelrelease": "5.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" ] }, { @@ -30383,12 +30641,12 @@ "kernelrelease": "5.4.0-58", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb" ] }, { @@ -30396,12 +30654,12 @@ "kernelrelease": "5.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb" ] }, { @@ -30409,12 +30667,12 @@ "kernelrelease": "5.4.0-60", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb" ] }, { @@ -30422,12 +30680,12 @@ "kernelrelease": "5.4.0-62", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb" ] }, { @@ -30435,12 +30693,12 @@ "kernelrelease": "5.4.0-65", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb" ] }, { @@ -30448,12 +30706,12 @@ "kernelrelease": "5.4.0-66", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb" ] }, { @@ -30461,12 +30719,12 @@ "kernelrelease": "5.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" ] }, { @@ -30474,12 +30732,12 @@ "kernelrelease": "5.4.0-70", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb" ] }, { @@ -30487,11 +30745,11 @@ "kernelrelease": "5.4.0-71", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb" ] }, @@ -30500,12 +30758,12 @@ "kernelrelease": "5.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" ] }, { @@ -30513,12 +30771,12 @@ "kernelrelease": "5.4.0-73", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" ] }, { @@ -30526,12 +30784,12 @@ "kernelrelease": "5.4.0-74", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb" ] }, { @@ -30539,10 +30797,10 @@ "kernelrelease": "5.4.0-77", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb" ] @@ -30554,8 +30812,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" ] @@ -30565,12 +30823,12 @@ "kernelrelease": "5.4.0-81", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb" ] }, { @@ -30578,11 +30836,11 @@ "kernelrelease": "5.4.0-84", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" ] }, @@ -30592,11 +30850,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" ] }, { @@ -30604,12 +30862,12 @@ "kernelrelease": "5.4.0-88", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb" ] }, { @@ -30617,12 +30875,12 @@ "kernelrelease": "5.4.0-89", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" ] }, { @@ -30630,11 +30888,11 @@ "kernelrelease": "5.4.0-90", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb" ] }, @@ -30643,12 +30901,12 @@ "kernelrelease": "5.4.0-91", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb" ] }, { @@ -30656,12 +30914,12 @@ "kernelrelease": "5.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" ] }, { @@ -30669,12 +30927,12 @@ "kernelrelease": "5.4.0-94", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" ] }, { @@ -30682,12 +30940,12 @@ "kernelrelease": "5.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" ] }, { @@ -30695,12 +30953,12 @@ "kernelrelease": "5.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" ] }, { @@ -30708,12 +30966,12 @@ "kernelrelease": "5.4.0-99", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb" ] }, { @@ -30721,9 +30979,9 @@ "kernelrelease": "5.6.0-1008-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" ] }, @@ -30733,9 +30991,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" ] }, { @@ -30743,9 +31001,9 @@ "kernelrelease": "5.6.0-1011-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" ] }, @@ -30755,9 +31013,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" ] }, { @@ -30766,8 +31024,8 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb" ] }, @@ -30777,9 +31035,9 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb" ] }, { @@ -30787,10 +31045,10 @@ "kernelrelease": "5.6.0-1020-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb" ] }, { @@ -30798,10 +31056,10 @@ "kernelrelease": "5.6.0-1023-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb" ] }, { @@ -30809,9 +31067,9 @@ "kernelrelease": "5.6.0-1026-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" ] }, @@ -30820,10 +31078,10 @@ "kernelrelease": "5.6.0-1028-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" ] }, { @@ -30831,10 +31089,10 @@ "kernelrelease": "5.6.0-1031-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb" ] }, { @@ -30842,8 +31100,8 @@ "kernelrelease": "5.6.0-1032-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" ] @@ -30853,10 +31111,10 @@ "kernelrelease": "5.6.0-1033-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb" ] }, { @@ -30864,10 +31122,10 @@ "kernelrelease": "5.6.0-1039-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" ] }, { @@ -30875,10 +31133,10 @@ "kernelrelease": "5.6.0-1042-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb" ] }, { @@ -30886,9 +31144,9 @@ "kernelrelease": "5.6.0-1047-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" ] }, @@ -30897,10 +31155,10 @@ "kernelrelease": "5.6.0-1048-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb" ] }, { @@ -30908,10 +31166,10 @@ "kernelrelease": "5.6.0-1050-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb" ] }, { @@ -30919,10 +31177,10 @@ "kernelrelease": "5.6.0-1052-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" ] }, { @@ -30941,10 +31199,10 @@ "kernelrelease": "5.6.0-1054-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb" ] }, { @@ -30952,9 +31210,9 @@ "kernelrelease": "5.6.0-1055-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" ] }, @@ -30963,10 +31221,10 @@ "kernelrelease": "5.6.0-1056-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb" ] }, { @@ -30974,9 +31232,9 @@ "kernelrelease": "5.8.0-1031-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, @@ -30985,10 +31243,10 @@ "kernelrelease": "5.8.0-1032-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb" ] }, { @@ -31007,10 +31265,10 @@ "kernelrelease": "5.8.0-1035-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" ] }, { @@ -31018,10 +31276,10 @@ "kernelrelease": "5.8.0-1035-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { @@ -31029,21 +31287,10 @@ "kernelrelease": "5.8.0-1037-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, { @@ -31051,21 +31298,32 @@ "kernelrelease": "5.8.0-1038-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb" ] }, + { + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-1038-aws-5.8", + "target": "ubuntu-aws-5.8", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" + ] + }, { "kernelversion": "39~20.04.1", "kernelrelease": "5.8.0-1038-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" ] }, { @@ -31073,9 +31331,9 @@ "kernelrelease": "5.8.0-1039-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb" ] }, @@ -31084,10 +31342,10 @@ "kernelrelease": "5.8.0-1039-gcp-5.8", "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" ] }, { @@ -31096,8 +31354,8 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" ] }, @@ -31106,8 +31364,8 @@ "kernelrelease": "5.8.0-1041-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" ] @@ -31119,8 +31377,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" ] }, { @@ -31128,9 +31386,9 @@ "kernelrelease": "5.8.0-1042-aws-5.8", "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" ] }, @@ -31139,10 +31397,10 @@ "kernelrelease": "5.8.0-1043-azure-5.8", "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" ] }, { @@ -31150,12 +31408,12 @@ "kernelrelease": "5.8.0-33-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb" ] }, { @@ -31163,12 +31421,12 @@ "kernelrelease": "5.8.0-34-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" ] }, { @@ -31189,12 +31447,12 @@ "kernelrelease": "5.8.0-38-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" ] }, { @@ -31202,12 +31460,12 @@ "kernelrelease": "5.8.0-41-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" ] }, { @@ -31215,12 +31473,12 @@ "kernelrelease": "5.8.0-43-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" ] }, { @@ -31228,12 +31486,12 @@ "kernelrelease": "5.8.0-44-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" ] }, { @@ -31241,11 +31499,11 @@ "kernelrelease": "5.8.0-45-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" ] }, @@ -31254,12 +31512,12 @@ "kernelrelease": "5.8.0-48-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" ] }, { @@ -31267,12 +31525,12 @@ "kernelrelease": "5.8.0-49-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" ] }, { @@ -31280,12 +31538,12 @@ "kernelrelease": "5.8.0-50-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" ] }, { @@ -31293,12 +31551,12 @@ "kernelrelease": "5.8.0-53-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" ] }, { @@ -31306,12 +31564,12 @@ "kernelrelease": "5.8.0-55-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" ] }, { @@ -31319,12 +31577,12 @@ "kernelrelease": "5.8.0-59-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" ] }, { @@ -31332,12 +31590,12 @@ "kernelrelease": "5.8.0-63-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" ] }, { @@ -31345,10 +31603,10 @@ "kernelrelease": "5.10.0-1011-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" ] }, { @@ -31356,9 +31614,9 @@ "kernelrelease": "5.10.0-1032-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" ] }, @@ -31367,10 +31625,10 @@ "kernelrelease": "5.10.0-1034-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" ] }, { @@ -31378,10 +31636,10 @@ "kernelrelease": "5.10.0-1052-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" ] }, { @@ -31400,8 +31658,8 @@ "kernelrelease": "5.11.0-1008-oracle-5.11", "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" ] @@ -31412,9 +31670,9 @@ "target": "ubuntu-aws-5.11", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" ] }, { @@ -31422,32 +31680,32 @@ "kernelrelease": "5.11.0-1009-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1007-kvm", - "target": "ubuntu-kvm", + "kernelrelease": "5.13.0-1007-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1007-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelrelease": "5.13.0-1007-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, { @@ -31455,10 +31713,10 @@ "kernelrelease": "5.13.0-1013-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" ] }, { @@ -31466,10 +31724,10 @@ "kernelrelease": "5.13.0-1021-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" ] }, { @@ -31477,10 +31735,10 @@ "kernelrelease": "5.13.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb" ] }, { @@ -31490,8 +31748,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" ] }, { @@ -31499,10 +31757,10 @@ "kernelrelease": "5.14.0-1034-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" ] }, { @@ -31511,8 +31769,8 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" ] }, @@ -31521,10 +31779,10 @@ "kernelrelease": "5.4.0-1065-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" ] }, { @@ -31532,10 +31790,10 @@ "kernelrelease": "5.4.0-1069-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" ] }, { @@ -31543,10 +31801,10 @@ "kernelrelease": "5.4.0-1074-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" ] }, { @@ -31554,10 +31812,10 @@ "kernelrelease": "5.4.0-1076-azure-cvm", "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" ] }, { @@ -31566,9 +31824,9 @@ "target": "ubuntu-azure-cvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb" ] }, { @@ -31577,11 +31835,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" ] }, { @@ -31589,12 +31847,12 @@ "kernelrelease": "5.4.0-64", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" ] }, { @@ -31602,10 +31860,10 @@ "kernelrelease": "5.6.0-1021-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" ] }, { @@ -31613,9 +31871,9 @@ "kernelrelease": "5.6.0-1027-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" ] }, @@ -31625,8 +31883,8 @@ "target": "ubuntu-oem-5.6", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" ] }, @@ -31635,9 +31893,9 @@ "kernelrelease": "5.6.0-1035-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" ] }, @@ -31646,10 +31904,10 @@ "kernelrelease": "5.6.0-1036-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" ] }, { @@ -31657,10 +31915,10 @@ "kernelrelease": "5.8.0-1034-oracle-5.8", "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" ] }, { @@ -31669,9 +31927,9 @@ "target": "ubuntu-azure-5.8", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" ] }, { @@ -31681,10 +31939,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb" ] }, { @@ -31692,12 +31950,12 @@ "kernelrelease": "5.8.0-25-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" ] }, { @@ -31705,12 +31963,12 @@ "kernelrelease": "5.8.0-28-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" ] }, { @@ -31718,12 +31976,12 @@ "kernelrelease": "5.8.0-29-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb" ] }, { @@ -31731,12 +31989,12 @@ "kernelrelease": "5.8.0-40-hwe-5.8", "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" ] }, { @@ -31744,21 +32002,10 @@ "kernelrelease": "5.4.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { @@ -31778,20 +32025,31 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb" ] }, + { + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + ] + }, { "kernelversion": "10", "kernelrelease": "5.4.0-1010-azure", "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" ] }, { @@ -31799,12 +32057,12 @@ "kernelrelease": "5.4.0-26", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" ] }, { @@ -31812,9 +32070,9 @@ "kernelrelease": "5.6.0-1007-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" ] }, @@ -31823,9 +32081,9 @@ "kernelrelease": "5.11.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" ] }, @@ -31834,32 +32092,32 @@ "kernelrelease": "5.11.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.11.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" ] }, { "kernelversion": "23", - "kernelrelease": "5.11.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.11.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" ] }, { @@ -31867,10 +32125,10 @@ "kernelrelease": "5.11.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb" ] }, { @@ -31878,10 +32136,10 @@ "kernelrelease": "5.11.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -31890,8 +32148,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb" ] }, @@ -31900,10 +32158,10 @@ "kernelrelease": "5.11.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" ] }, { @@ -31911,10 +32169,10 @@ "kernelrelease": "5.11.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb" ] }, { @@ -31922,12 +32180,12 @@ "kernelrelease": "5.11.0-49", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" ] }, { @@ -31935,10 +32193,10 @@ "kernelrelease": "5.11.0-1004-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" ] }, { @@ -31946,8 +32204,8 @@ "kernelrelease": "5.11.0-1005-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" ] @@ -31957,21 +32215,10 @@ "kernelrelease": "5.11.0-1006-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.11.0-1006-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" ] }, { @@ -31985,17 +32232,28 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb" ] }, + { + "kernelversion": "6", + "kernelrelease": "5.11.0-1006-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" + ] + }, { "kernelversion": "17", "kernelrelease": "5.11.0-16", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" ] }, { @@ -32004,8 +32262,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb" ] }, @@ -32014,32 +32272,32 @@ "kernelrelease": "5.13.0-1006-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1006-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1006-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" ] }, { "kernelversion": "7", - "kernelrelease": "5.13.0-1006-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1006-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" ] }, { @@ -32047,21 +32305,32 @@ "kernelrelease": "5.13.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb" ] }, + { + "kernelversion": "8", + "kernelrelease": "5.13.0-1007-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb" + ] + }, { "kernelversion": "8", "kernelrelease": "5.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" ] }, { @@ -32071,30 +32340,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.13.0-1007-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1008-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb" ] }, { @@ -32102,21 +32360,21 @@ "kernelrelease": "5.13.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb" ] }, { "kernelversion": "9", - "kernelrelease": "5.13.0-1008-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1008-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" ] }, { @@ -32124,10 +32382,10 @@ "kernelrelease": "5.13.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb" ] }, { @@ -32135,10 +32393,10 @@ "kernelrelease": "5.13.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" ] }, { @@ -32146,10 +32404,10 @@ "kernelrelease": "5.13.0-1011-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb" ] }, { @@ -32157,21 +32415,10 @@ "kernelrelease": "5.13.0-1011-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.13.0-1012-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" ] }, { @@ -32180,19 +32427,30 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" ] }, + { + "kernelversion": "13", + "kernelrelease": "5.13.0-1012-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" + ] + }, { "kernelversion": "14", "kernelrelease": "5.13.0-1013-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" ] }, @@ -32201,32 +32459,32 @@ "kernelrelease": "5.13.0-1013-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" ] }, { "kernelversion": "16", - "kernelrelease": "5.13.0-1013-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1013-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb" ] }, { "kernelversion": "16", - "kernelrelease": "5.13.0-1013-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1013-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" ] }, { @@ -32234,10 +32492,10 @@ "kernelrelease": "5.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" ] }, { @@ -32256,10 +32514,10 @@ "kernelrelease": "5.13.0-1015-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" ] }, { @@ -32267,8 +32525,8 @@ "kernelrelease": "5.13.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb" ] @@ -32278,10 +32536,10 @@ "kernelrelease": "5.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" ] }, { @@ -32290,9 +32548,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb" ] }, { @@ -32300,9 +32558,9 @@ "kernelrelease": "5.13.0-1019-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, @@ -32312,8 +32570,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" ] }, @@ -32322,21 +32580,10 @@ "kernelrelease": "5.13.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" ] }, { @@ -32344,19 +32591,30 @@ "kernelrelease": "5.13.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" ] }, + { + "kernelversion": "22", + "kernelrelease": "5.13.0-1020-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb" + ] + }, { "kernelversion": "22", "kernelrelease": "5.13.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" ] @@ -32367,9 +32625,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb" ] }, { @@ -32377,10 +32635,10 @@ "kernelrelease": "5.13.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" ] }, { @@ -32389,8 +32647,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" ] }, @@ -32399,10 +32657,10 @@ "kernelrelease": "5.13.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" ] }, { @@ -32410,10 +32668,10 @@ "kernelrelease": "5.13.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb" ] }, { @@ -32422,8 +32680,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" ] }, @@ -32434,8 +32692,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb" ] }, { @@ -32443,8 +32701,8 @@ "kernelrelease": "5.13.0-1024-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" ] @@ -32454,32 +32712,32 @@ "kernelrelease": "5.13.0-1024-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.13.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1024-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb" ] }, { "kernelversion": "29", - "kernelrelease": "5.13.0-1024-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1024-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" ] }, { @@ -32487,10 +32745,10 @@ "kernelrelease": "5.13.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" ] }, { @@ -32499,9 +32757,20 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" + ] + }, + { + "kernelversion": "30", + "kernelrelease": "5.13.0-1025-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb" ] }, { @@ -32509,21 +32778,21 @@ "kernelrelease": "5.13.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.13.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelversion": "31", + "kernelrelease": "5.13.0-1026-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb" ] }, { @@ -32531,54 +32800,43 @@ "kernelrelease": "5.13.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" ] }, - { - "kernelversion": "31", - "kernelrelease": "5.13.0-1026-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb" - ] - }, { "kernelversion": "33", "kernelrelease": "5.13.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.13.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.13.0-1028-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb" ] }, { @@ -32586,10 +32844,10 @@ "kernelrelease": "5.13.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" ] }, { @@ -32597,12 +32855,12 @@ "kernelrelease": "5.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb" ] }, { @@ -32610,10 +32868,10 @@ "kernelrelease": "5.13.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" ] }, { @@ -32621,10 +32879,10 @@ "kernelrelease": "5.13.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" ] }, { @@ -32632,10 +32890,10 @@ "kernelrelease": "5.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" ] }, { @@ -32644,9 +32902,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" ] }, { @@ -32654,9 +32912,9 @@ "kernelrelease": "5.13.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" ] }, @@ -32667,8 +32925,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" ] }, { @@ -32676,10 +32934,10 @@ "kernelrelease": "5.13.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" ] }, { @@ -32687,10 +32945,10 @@ "kernelrelease": "5.13.0-1021-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb" ] }, { @@ -32698,10 +32956,10 @@ "kernelrelease": "5.13.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" ] }, { @@ -32710,9 +32968,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb" ] }, { @@ -32720,9 +32978,9 @@ "kernelrelease": "5.13.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" ] }, @@ -32731,32 +32989,32 @@ "kernelrelease": "5.13.0-1024-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb" ] }, { "kernelversion": "32", - "kernelrelease": "5.13.0-1027-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1027-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" ] }, { "kernelversion": "32", - "kernelrelease": "5.13.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.13.0-1027-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" ] }, { @@ -32766,8 +33024,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb" ] }, { @@ -32776,9 +33034,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb" ] }, { @@ -32787,9 +33045,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb" ] }, { @@ -32797,10 +33055,10 @@ "kernelrelease": "5.13.0-1030-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb" ] }, { @@ -32808,9 +33066,9 @@ "kernelrelease": "5.13.0-1030-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb" ] }, @@ -32819,10 +33077,10 @@ "kernelrelease": "5.13.0-1031-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_amd64.deb" ] }, { @@ -32830,10 +33088,10 @@ "kernelrelease": "5.13.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb" ] }, { @@ -32841,10 +33099,10 @@ "kernelrelease": "5.13.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb" ] }, { @@ -32852,10 +33110,10 @@ "kernelrelease": "5.13.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" ] }, { @@ -32874,12 +33132,12 @@ "kernelrelease": "5.13.0-21", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" ] }, { @@ -32887,12 +33145,12 @@ "kernelrelease": "5.13.0-22", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb" ] }, { @@ -32900,12 +33158,12 @@ "kernelrelease": "5.13.0-23", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" ] }, { @@ -32913,12 +33171,12 @@ "kernelrelease": "5.13.0-25", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" ] }, { @@ -32926,12 +33184,12 @@ "kernelrelease": "5.13.0-27", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb" ] }, { @@ -32939,12 +33197,12 @@ "kernelrelease": "5.13.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb" ] }, { @@ -32952,12 +33210,12 @@ "kernelrelease": "5.13.0-30", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb" ] }, { @@ -32965,12 +33223,12 @@ "kernelrelease": "5.13.0-35", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" ] }, { @@ -32978,12 +33236,12 @@ "kernelrelease": "5.13.0-37", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" ] }, { @@ -32992,9 +33250,9 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb" ] @@ -33004,12 +33262,12 @@ "kernelrelease": "5.13.0-40", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb" ] }, { @@ -33017,12 +33275,12 @@ "kernelrelease": "5.13.0-41", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb" ] }, { @@ -33030,12 +33288,12 @@ "kernelrelease": "5.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb" ] }, { @@ -33043,12 +33301,12 @@ "kernelrelease": "5.13.0-48", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb" ] }, { @@ -33056,12 +33314,12 @@ "kernelrelease": "5.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb" ] }, { @@ -33069,10 +33327,10 @@ "kernelrelease": "5.13.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb" ] }, { @@ -33080,10 +33338,10 @@ "kernelrelease": "5.13.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb" ] }, { @@ -33093,8 +33351,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb" ] }, { @@ -33102,10 +33360,10 @@ "kernelrelease": "5.13.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb" ] }, { @@ -33113,12 +33371,12 @@ "kernelrelease": "5.13.0-20", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" ] }, { @@ -33128,10 +33386,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb" ] }, { @@ -33140,31 +33398,31 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.13.0-1005-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.13.0-1005-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.13.0-1005-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.13.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb" ] }, { @@ -33172,10 +33430,10 @@ "kernelrelease": "5.13.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" ] }, { @@ -33183,10 +33441,10 @@ "kernelrelease": "5.13.0-19", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" ] @@ -33196,10 +33454,10 @@ "kernelrelease": "5.15.0-1004-gke", "target": "ubuntu-gke", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" ] }, { @@ -33207,9 +33465,9 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb" ] }, @@ -33218,10 +33476,10 @@ "kernelrelease": "5.15.0-1006-gke", "target": "ubuntu-gke", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb" ] }, { @@ -33230,9 +33488,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" ] }, { @@ -33240,10 +33498,10 @@ "kernelrelease": "5.15.0-1006-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb" ] }, { @@ -33253,8 +33511,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { @@ -33262,8 +33520,8 @@ "kernelrelease": "5.15.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] @@ -33273,9 +33531,9 @@ "kernelrelease": "5.15.0-1007-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb" ] }, @@ -33284,10 +33542,32 @@ "kernelrelease": "5.15.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_amd64.deb" ] }, { @@ -33295,10 +33575,32 @@ "kernelrelease": "5.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb" + ] + }, + { + "kernelversion": "17", + "kernelrelease": "5.15.0-1013-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb" + ] + }, + { + "kernelversion": "17", + "kernelrelease": "5.15.0-1013-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb" ] }, { @@ -33306,21 +33608,32 @@ "kernelrelease": "5.15.0-1014-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.15.0-30", - "target": "ubuntu-generic", + "kernelversion": "17", + "kernelrelease": "5.15.0-1014-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_amd64.deb" + ] + }, + { + "kernelversion": "19", + "kernelrelease": "5.15.0-1015-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb" ] }, { @@ -33328,10 +33641,21 @@ "kernelrelease": "5.15.0-30-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.15.0-30", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { @@ -33339,10 +33663,10 @@ "kernelrelease": "5.15.0-32-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" ] }, { @@ -33350,10 +33674,10 @@ "kernelrelease": "5.15.0-33-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" ] }, { @@ -33361,10 +33685,21 @@ "kernelrelease": "5.15.0-33", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.15.0-40-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb" ] }, { @@ -33372,21 +33707,21 @@ "kernelrelease": "5.15.0-40", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.15.0-40-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "44", + "kernelrelease": "5.15.0-41", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_amd64.deb" ] }, { @@ -33394,10 +33729,10 @@ "kernelrelease": "5.17.0-1004-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" ] }, { @@ -33406,9 +33741,9 @@ "target": "ubuntu-oem-5.17", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb" ] }, { @@ -33427,9 +33762,9 @@ "kernelrelease": "5.15.0-1005-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" ] }, @@ -33438,32 +33773,32 @@ "kernelrelease": "5.15.0-1005-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" ] }, { "kernelversion": "10", - "kernelrelease": "5.15.0-1008-gke", - "target": "ubuntu-gke", + "kernelrelease": "5.15.0-1008-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" ] }, { "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1008-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb" ] }, { @@ -33471,10 +33806,10 @@ "kernelrelease": "5.15.0-1008-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb" ] }, { @@ -33482,32 +33817,32 @@ "kernelrelease": "5.15.0-1008-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1009-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.15.0-1009-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.15.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" ] }, { @@ -33526,10 +33861,10 @@ "kernelrelease": "5.15.0-1010-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" ] }, { @@ -33537,10 +33872,10 @@ "kernelrelease": "5.15.0-1010-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb" ] }, { @@ -33548,10 +33883,10 @@ "kernelrelease": "5.15.0-1010-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb" ] }, { @@ -33559,10 +33894,10 @@ "kernelrelease": "5.15.0-1010-intel-iotg", "target": "ubuntu-intel-iotg", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb" ] }, { @@ -33570,21 +33905,10 @@ "kernelrelease": "5.15.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb" ] }, { @@ -33592,10 +33916,10 @@ "kernelrelease": "5.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb" ] }, { @@ -33603,10 +33927,10 @@ "kernelrelease": "5.15.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb" ] }, { @@ -33615,31 +33939,20 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb" ] }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1013-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb" - ] - }, { "kernelversion": "39", "kernelrelease": "5.15.0-37", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb" ] }, { @@ -33649,30 +33962,30 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "5.15.0-39", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-39-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "5.15.0-39-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-39", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb" ] }, { @@ -33680,10 +33993,10 @@ "kernelrelease": "5.17.0-1006-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb" ] }, { @@ -33691,10 +34004,10 @@ "kernelrelease": "5.17.0-1011-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb" ] }, { @@ -33702,10 +34015,10 @@ "kernelrelease": "5.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb" ] }, { @@ -33713,9 +34026,9 @@ "kernelrelease": "5.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb" ] }, @@ -33725,9 +34038,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" ] }, { @@ -33735,32 +34048,32 @@ "kernelrelease": "5.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", + "kernelrelease": "5.15.0-35-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", + "kernelrelease": "5.15.0-35", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, { @@ -33768,10 +34081,10 @@ "kernelrelease": "5.15.0-1002-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" ] }, { @@ -33779,9 +34092,9 @@ "kernelrelease": "5.15.0-1002-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" ] }, @@ -33790,8 +34103,8 @@ "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" ] @@ -33801,9 +34114,9 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb" ] }, @@ -33823,10 +34136,10 @@ "kernelrelease": "4.15.0-1043-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" ] }, { @@ -33834,12 +34147,12 @@ "kernelrelease": "3.13.0-100", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb" ] }, { @@ -33847,12 +34160,12 @@ "kernelrelease": "3.13.0-101", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb" ] }, { @@ -33860,12 +34173,12 @@ "kernelrelease": "3.13.0-103", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb" ] }, { @@ -33873,12 +34186,12 @@ "kernelrelease": "3.13.0-105", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" ] }, { @@ -33886,12 +34199,12 @@ "kernelrelease": "3.13.0-106", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" ] }, { @@ -33899,12 +34212,12 @@ "kernelrelease": "3.13.0-107", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" ] }, { @@ -33912,12 +34225,12 @@ "kernelrelease": "3.13.0-108", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb" ] }, { @@ -33925,12 +34238,12 @@ "kernelrelease": "3.13.0-109", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb" ] }, { @@ -33938,11 +34251,11 @@ "kernelrelease": "3.13.0-110", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb" ] }, @@ -33951,12 +34264,12 @@ "kernelrelease": "3.13.0-112", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb" ] }, { @@ -33965,11 +34278,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb" ] }, { @@ -33977,12 +34290,12 @@ "kernelrelease": "3.13.0-116", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" ] }, { @@ -33990,12 +34303,12 @@ "kernelrelease": "3.13.0-117", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" ] }, { @@ -34003,12 +34316,12 @@ "kernelrelease": "3.13.0-119", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" ] }, { @@ -34016,12 +34329,12 @@ "kernelrelease": "3.13.0-121", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb" ] }, { @@ -34029,12 +34342,12 @@ "kernelrelease": "3.13.0-123", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" ] }, { @@ -34042,12 +34355,12 @@ "kernelrelease": "3.13.0-125", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" ] }, { @@ -34056,10 +34369,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" ] }, @@ -34068,12 +34381,12 @@ "kernelrelease": "3.13.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" ] }, { @@ -34081,12 +34394,12 @@ "kernelrelease": "3.13.0-129", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" ] }, { @@ -34094,12 +34407,12 @@ "kernelrelease": "3.13.0-132", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb" ] }, { @@ -34107,12 +34420,12 @@ "kernelrelease": "3.13.0-133", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" ] }, { @@ -34121,11 +34434,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" ] }, { @@ -34134,11 +34447,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb" ] }, { @@ -34146,11 +34459,11 @@ "kernelrelease": "3.13.0-139", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb" ] }, @@ -34159,12 +34472,12 @@ "kernelrelease": "3.13.0-141", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb" ] }, { @@ -34172,12 +34485,12 @@ "kernelrelease": "3.13.0-142", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" ] }, { @@ -34186,10 +34499,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" ] }, @@ -34198,12 +34511,12 @@ "kernelrelease": "3.13.0-144", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb" ] }, { @@ -34211,12 +34524,12 @@ "kernelrelease": "3.13.0-147", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" ] }, { @@ -34224,12 +34537,12 @@ "kernelrelease": "3.13.0-149", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb" ] }, { @@ -34238,11 +34551,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb" ] }, { @@ -34250,12 +34563,12 @@ "kernelrelease": "3.13.0-153", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" ] }, { @@ -34263,12 +34576,12 @@ "kernelrelease": "3.13.0-155", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" ] }, { @@ -34276,12 +34589,12 @@ "kernelrelease": "3.13.0-156", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb" ] }, { @@ -34290,11 +34603,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb" ] }, { @@ -34302,12 +34615,12 @@ "kernelrelease": "3.13.0-160", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" ] }, { @@ -34315,12 +34628,12 @@ "kernelrelease": "3.13.0-161", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" ] }, { @@ -34328,12 +34641,12 @@ "kernelrelease": "3.13.0-162", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb" ] }, { @@ -34341,11 +34654,11 @@ "kernelrelease": "3.13.0-164", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" ] }, @@ -34354,12 +34667,12 @@ "kernelrelease": "3.13.0-165", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" ] }, { @@ -34367,11 +34680,11 @@ "kernelrelease": "3.13.0-166", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" ] }, @@ -34380,12 +34693,12 @@ "kernelrelease": "3.13.0-167", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb" ] }, { @@ -34395,10 +34708,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb" ] }, { @@ -34406,12 +34719,12 @@ "kernelrelease": "3.13.0-170", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb" ] }, { @@ -34419,12 +34732,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb" ] }, { @@ -34432,12 +34745,12 @@ "kernelrelease": "3.13.0-27", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb" ] }, { @@ -34445,12 +34758,12 @@ "kernelrelease": "3.13.0-29", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb" ] }, { @@ -34459,11 +34772,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb" ] }, { @@ -34471,12 +34784,12 @@ "kernelrelease": "3.13.0-32", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" ] }, { @@ -34484,12 +34797,12 @@ "kernelrelease": "3.13.0-33", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb" ] }, { @@ -34497,12 +34810,12 @@ "kernelrelease": "3.13.0-34", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" ] }, { @@ -34510,12 +34823,12 @@ "kernelrelease": "3.13.0-35", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb" ] }, { @@ -34524,11 +34837,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" ] }, { @@ -34536,12 +34849,12 @@ "kernelrelease": "3.13.0-37", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb" ] }, { @@ -34549,11 +34862,11 @@ "kernelrelease": "3.13.0-39", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb" ] }, @@ -34562,12 +34875,12 @@ "kernelrelease": "3.13.0-40", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb" ] }, { @@ -34575,12 +34888,12 @@ "kernelrelease": "3.13.0-41", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb" ] }, { @@ -34588,12 +34901,12 @@ "kernelrelease": "3.13.0-43", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" ] }, { @@ -34601,11 +34914,11 @@ "kernelrelease": "3.13.0-44", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" ] }, @@ -34614,12 +34927,12 @@ "kernelrelease": "3.13.0-46", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb" ] }, { @@ -34628,11 +34941,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb" ] }, { @@ -34640,11 +34953,11 @@ "kernelrelease": "3.13.0-49", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, @@ -34653,12 +34966,12 @@ "kernelrelease": "3.13.0-51", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" ] }, { @@ -34666,12 +34979,12 @@ "kernelrelease": "3.13.0-52", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb" ] }, { @@ -34679,12 +34992,12 @@ "kernelrelease": "3.13.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" ] }, { @@ -34692,12 +35005,12 @@ "kernelrelease": "3.13.0-54", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb" ] }, { @@ -34705,12 +35018,12 @@ "kernelrelease": "3.13.0-55", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb" ] }, { @@ -34718,12 +35031,12 @@ "kernelrelease": "3.13.0-57", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" ] }, { @@ -34733,10 +35046,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb" ] }, { @@ -34744,12 +35057,12 @@ "kernelrelease": "3.13.0-59", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb" ] }, { @@ -34757,12 +35070,12 @@ "kernelrelease": "3.13.0-61", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" ] }, { @@ -34771,11 +35084,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb" ] }, { @@ -34785,9 +35098,9 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb" ] }, @@ -34796,12 +35109,12 @@ "kernelrelease": "3.13.0-65", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb" ] }, { @@ -34809,12 +35122,12 @@ "kernelrelease": "3.13.0-66", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb" ] }, { @@ -34822,9 +35135,9 @@ "kernelrelease": "3.13.0-67", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" @@ -34835,12 +35148,12 @@ "kernelrelease": "3.13.0-68", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb" ] }, { @@ -34849,11 +35162,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb" ] }, { @@ -34862,11 +35175,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" ] }, { @@ -34874,12 +35187,12 @@ "kernelrelease": "3.13.0-73", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb" ] }, { @@ -34887,12 +35200,12 @@ "kernelrelease": "3.13.0-74", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb" ] }, { @@ -34900,12 +35213,12 @@ "kernelrelease": "3.13.0-76", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" ] }, { @@ -34914,11 +35227,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb" ] }, { @@ -34926,12 +35239,12 @@ "kernelrelease": "3.13.0-79", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" ] }, { @@ -34939,12 +35252,12 @@ "kernelrelease": "3.13.0-83", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb" ] }, { @@ -34952,12 +35265,12 @@ "kernelrelease": "3.13.0-85", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" ] }, { @@ -34965,12 +35278,12 @@ "kernelrelease": "3.13.0-86", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" ] }, { @@ -34979,11 +35292,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb" ] }, { @@ -34991,12 +35304,12 @@ "kernelrelease": "3.13.0-88", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" ] }, { @@ -35004,12 +35317,12 @@ "kernelrelease": "3.13.0-91", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb" ] }, { @@ -35017,12 +35330,12 @@ "kernelrelease": "3.13.0-92", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb" ] }, { @@ -35030,12 +35343,12 @@ "kernelrelease": "3.13.0-93", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb" ] }, { @@ -35046,8 +35359,8 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb" ] }, @@ -35056,12 +35369,12 @@ "kernelrelease": "3.13.0-96", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb" ] }, { @@ -35069,12 +35382,12 @@ "kernelrelease": "3.13.0-98", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb" ] }, { @@ -35082,12 +35395,12 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb" ] }, { @@ -35095,12 +35408,12 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb" ] }, { @@ -35108,12 +35421,12 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb" ] }, { @@ -35121,12 +35434,12 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" ] }, { @@ -35134,12 +35447,12 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" ] }, { @@ -35148,11 +35461,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" ] }, { @@ -35160,11 +35473,11 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" ] }, @@ -35173,12 +35486,12 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb" ] }, { @@ -35187,11 +35500,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb" ] }, { @@ -35199,11 +35512,11 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" ] }, @@ -35212,12 +35525,12 @@ "kernelrelease": "3.16.0-39-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb" ] }, { @@ -35227,10 +35540,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" ] }, { @@ -35238,12 +35551,12 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" ] }, { @@ -35251,9 +35564,9 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" @@ -35265,11 +35578,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" ] }, { @@ -35277,12 +35590,12 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb" ] }, { @@ -35290,12 +35603,12 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" ] }, { @@ -35303,12 +35616,12 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb" ] }, { @@ -35316,11 +35629,11 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb" ] }, @@ -35329,12 +35642,12 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb" ] }, { @@ -35342,12 +35655,12 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb" ] }, { @@ -35355,11 +35668,11 @@ "kernelrelease": "3.16.0-53-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb" ] }, @@ -35368,12 +35681,12 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb" ] }, { @@ -35381,12 +35694,12 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" ] }, { @@ -35394,11 +35707,11 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb" ] }, @@ -35407,12 +35720,12 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb" ] }, { @@ -35420,12 +35733,12 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" ] }, { @@ -35433,12 +35746,12 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb" ] }, { @@ -35446,12 +35759,12 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" ] }, { @@ -35459,11 +35772,11 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb" ] }, @@ -35472,12 +35785,12 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" ] }, { @@ -35485,12 +35798,12 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb" ] }, { @@ -35498,12 +35811,12 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" ] }, { @@ -35511,12 +35824,12 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb" ] }, { @@ -35524,11 +35837,11 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb" ] }, @@ -35537,12 +35850,12 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" ] }, { @@ -35550,10 +35863,10 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" ] @@ -35565,10 +35878,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" ] }, { @@ -35576,11 +35889,11 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" ] }, @@ -35589,11 +35902,11 @@ "kernelrelease": "3.19.0-25-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" ] }, @@ -35602,12 +35915,12 @@ "kernelrelease": "3.19.0-26-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" ] }, { @@ -35615,12 +35928,12 @@ "kernelrelease": "3.19.0-28-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb" ] }, { @@ -35628,12 +35941,12 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb" ] }, { @@ -35641,12 +35954,12 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" ] }, { @@ -35654,12 +35967,12 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" ] }, { @@ -35667,12 +35980,12 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" ] }, { @@ -35683,9 +35996,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb" ] }, { @@ -35693,12 +36006,12 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb" ] }, { @@ -35706,12 +36019,12 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" ] }, { @@ -35719,11 +36032,11 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb" ] }, @@ -35732,12 +36045,12 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb" ] }, { @@ -35745,12 +36058,12 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb" ] }, { @@ -35758,12 +36071,12 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" ] }, { @@ -35771,12 +36084,12 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" ] }, { @@ -35784,12 +36097,12 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" ] }, { @@ -35797,12 +36110,12 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb" ] }, { @@ -35810,12 +36123,12 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" ] }, { @@ -35823,12 +36136,12 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb" ] }, { @@ -35836,12 +36149,12 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb" ] }, { @@ -35849,12 +36162,12 @@ "kernelrelease": "3.19.0-65-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb" ] }, { @@ -35862,12 +36175,12 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" ] }, { @@ -35875,12 +36188,12 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" ] }, { @@ -35888,12 +36201,12 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb" ] }, { @@ -35901,12 +36214,12 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb" ] }, { @@ -35914,12 +36227,12 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb" ] }, { @@ -35927,11 +36240,11 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" ] }, @@ -35941,10 +36254,10 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" ] }, @@ -35953,12 +36266,12 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb" ] }, { @@ -35966,12 +36279,12 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb" ] }, { @@ -35979,12 +36292,12 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" ] }, { @@ -35992,12 +36305,12 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb" ] }, { @@ -36005,10 +36318,10 @@ "kernelrelease": "4.15.0-1023-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb" ] }, { @@ -36017,9 +36330,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb" ] }, { @@ -36027,10 +36340,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" ] }, { @@ -36039,9 +36352,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" ] }, { @@ -36049,10 +36362,10 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" ] }, { @@ -36060,10 +36373,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" ] }, { @@ -36071,10 +36384,10 @@ "kernelrelease": "4.15.0-1039-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" ] }, { @@ -36082,10 +36395,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" ] }, { @@ -36093,10 +36406,10 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" ] }, { @@ -36104,9 +36417,9 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" ] }, @@ -36116,11 +36429,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb" ] }, { @@ -36129,11 +36442,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" ] }, { @@ -36141,12 +36454,12 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb" ] }, { @@ -36155,11 +36468,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" ] }, { @@ -36167,12 +36480,12 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb" ] }, { @@ -36180,12 +36493,12 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" ] }, { @@ -36194,10 +36507,10 @@ "target": "ubuntu-lts-wily", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb" ] }, @@ -36206,12 +36519,12 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb" ] }, { @@ -36219,12 +36532,12 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" ] }, { @@ -36233,11 +36546,11 @@ "target": "ubuntu-lts-wily", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb" ] }, { @@ -36245,12 +36558,12 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" ] }, { @@ -36258,12 +36571,12 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb" ] }, { @@ -36271,11 +36584,11 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb" ] }, @@ -36284,12 +36597,12 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" ] }, { @@ -36297,12 +36610,12 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb" ] }, { @@ -36310,12 +36623,12 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" ] }, { @@ -36323,12 +36636,12 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" ] }, { @@ -36336,12 +36649,12 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" ] }, { @@ -36349,12 +36662,12 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb" ] }, { @@ -36362,12 +36675,12 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" ] }, { @@ -36375,11 +36688,11 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" ] }, @@ -36388,12 +36701,12 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb" ] }, { @@ -36401,12 +36714,12 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" ] }, { @@ -36414,12 +36727,12 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" ] }, { @@ -36427,12 +36740,12 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" ] }, { @@ -36441,11 +36754,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" ] }, { @@ -36453,12 +36766,12 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" ] }, { @@ -36466,11 +36779,11 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" ] }, @@ -36479,12 +36792,12 @@ "kernelrelease": "4.4.0-133-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb" ] }, { @@ -36492,12 +36805,12 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb" ] }, { @@ -36505,12 +36818,12 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" ] }, { @@ -36518,12 +36831,12 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" ] }, { @@ -36531,12 +36844,12 @@ "kernelrelease": "4.4.0-139-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb" ] }, { @@ -36545,10 +36858,10 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" ] }, @@ -36557,12 +36870,12 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" ] }, { @@ -36571,9 +36884,9 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb" ] @@ -36584,11 +36897,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" ] }, { @@ -36596,12 +36909,12 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" ] }, { @@ -36609,12 +36922,12 @@ "kernelrelease": "4.4.0-21-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" ] }, { @@ -36622,11 +36935,11 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb" ] }, @@ -36635,12 +36948,12 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb" ] }, { @@ -36648,11 +36961,11 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb" ] }, @@ -36661,12 +36974,12 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb" ] }, { @@ -36674,12 +36987,12 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb" ] }, { @@ -36688,10 +37001,10 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" ] }, @@ -36700,12 +37013,12 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb" ] }, { @@ -36713,12 +37026,12 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb" ] }, { @@ -36726,12 +37039,12 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" ] }, { @@ -36739,12 +37052,12 @@ "kernelrelease": "4.4.0-47-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb" ] }, { @@ -36753,10 +37066,10 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb" ] }, @@ -36765,12 +37078,12 @@ "kernelrelease": "4.4.0-53-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" ] }, { @@ -36778,12 +37091,12 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb" ] }, { @@ -36791,12 +37104,12 @@ "kernelrelease": "4.4.0-59-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb" ] }, { @@ -36804,12 +37117,12 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" ] }, { @@ -36818,11 +37131,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" ] }, { @@ -36830,12 +37143,12 @@ "kernelrelease": "4.4.0-64-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" ] }, { @@ -36843,12 +37156,12 @@ "kernelrelease": "4.4.0-66-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" ] }, { @@ -36856,12 +37169,12 @@ "kernelrelease": "4.4.0-67-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" ] }, { @@ -36869,12 +37182,12 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb" ] }, { @@ -36882,12 +37195,12 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb" ] }, { @@ -36895,12 +37208,12 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" ] }, { @@ -36908,12 +37221,12 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" ] }, { @@ -36921,12 +37234,12 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb" ] }, { @@ -36934,12 +37247,12 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" ] }, { @@ -36947,12 +37260,12 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb" ] }, { @@ -36960,9 +37273,9 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb" @@ -36973,12 +37286,12 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb" ] }, { @@ -36986,12 +37299,12 @@ "kernelrelease": "4.4.0-89-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" ] }, { @@ -36999,11 +37312,11 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb" ] }, @@ -37012,12 +37325,12 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" ] }, { @@ -37025,12 +37338,12 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb" ] }, { @@ -37038,12 +37351,12 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb" ] }, { @@ -37052,11 +37365,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" ] }, { @@ -37064,12 +37377,12 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb" ] }, { @@ -37078,9 +37391,9 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb" ] @@ -37090,12 +37403,12 @@ "kernelrelease": "3.13.0-145", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb" ] }, { @@ -37103,10 +37416,10 @@ "kernelrelease": "3.13.0-158", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb" ] @@ -37116,12 +37429,12 @@ "kernelrelease": "3.13.0-163", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" ] }, { @@ -37129,11 +37442,11 @@ "kernelrelease": "3.13.0-169", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb" ] }, @@ -37144,10 +37457,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb" ] }, { @@ -37155,12 +37468,12 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" ] }, { @@ -37168,12 +37481,12 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" ] }, { @@ -37181,12 +37494,12 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb" ] }, { @@ -37194,10 +37507,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" ] }, { @@ -37205,10 +37518,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb" ] }, { @@ -37216,10 +37529,10 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" ] @@ -37229,12 +37542,12 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" ] }, { @@ -37242,12 +37555,12 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb" ] }, { @@ -37257,10 +37570,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" ] }, { @@ -37268,12 +37581,12 @@ "kernelrelease": "3.13.0-24", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" ] }, { @@ -37281,10 +37594,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" ] }, { @@ -37292,10 +37605,10 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" ] }, { @@ -37304,9 +37617,9 @@ "target": "ubuntu-aws-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb" ] }, { @@ -37314,10 +37627,10 @@ "kernelrelease": "4.15.0-1095-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" ] }, { @@ -37326,8 +37639,8 @@ "target": "ubuntu-aws-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, @@ -37336,10 +37649,10 @@ "kernelrelease": "4.15.0-1110-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb" ] }, { @@ -37347,10 +37660,10 @@ "kernelrelease": "4.4.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" ] }, { @@ -37358,12 +37671,12 @@ "kernelrelease": "4.4.0-206", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb" ] }, { @@ -37371,12 +37684,12 @@ "kernelrelease": "4.4.0-207", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" ] }, { @@ -37385,11 +37698,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" ] }, { @@ -37397,11 +37710,11 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" ] }, @@ -37410,12 +37723,12 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb" ] }, { @@ -37424,11 +37737,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" ] }, { @@ -37436,11 +37749,11 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" ] }, @@ -37450,11 +37763,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb" ] }, { @@ -37462,10 +37775,10 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" ] @@ -37476,11 +37789,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb" ] }, { @@ -37488,12 +37801,12 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" ] }, { @@ -37501,12 +37814,12 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" ] }, { @@ -37514,11 +37827,11 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" ] }, @@ -37527,11 +37840,11 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" ] }, @@ -37540,12 +37853,12 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" ] }, { @@ -37553,12 +37866,12 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" ] }, { @@ -37566,12 +37879,12 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" ] }, { @@ -37579,12 +37892,12 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" ] }, { @@ -37592,11 +37905,11 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" ] }, @@ -37605,10 +37918,10 @@ "kernelrelease": "4.11.0-1015-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb" ] }, { @@ -37616,10 +37929,10 @@ "kernelrelease": "4.11.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb" ] }, { @@ -37627,12 +37940,12 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" ] }, { @@ -37640,10 +37953,10 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb" ] @@ -37664,10 +37977,10 @@ "kernelrelease": "4.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb" ] }, { @@ -37675,10 +37988,10 @@ "kernelrelease": "4.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" ] }, { @@ -37686,10 +37999,10 @@ "kernelrelease": "4.13.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" ] }, { @@ -37697,10 +38010,10 @@ "kernelrelease": "4.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" ] }, { @@ -37708,9 +38021,9 @@ "kernelrelease": "4.13.0-1016-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" ] }, @@ -37719,9 +38032,9 @@ "kernelrelease": "4.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb" ] }, @@ -37730,12 +38043,12 @@ "kernelrelease": "4.13.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb" ] }, { @@ -37743,12 +38056,12 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" ] }, { @@ -37756,12 +38069,12 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" ] }, { @@ -37769,12 +38082,12 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" ] }, { @@ -37782,12 +38095,12 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb" ] }, { @@ -37795,11 +38108,11 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb" ] }, @@ -37808,12 +38121,12 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" ] }, { @@ -37821,11 +38134,11 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" ] }, @@ -37834,12 +38147,12 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" ] }, { @@ -37847,12 +38160,12 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb" ] }, { @@ -37874,11 +38187,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" ] }, { @@ -37887,11 +38200,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" ] }, { @@ -37899,12 +38212,12 @@ "kernelrelease": "4.13.0-43-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" ] }, { @@ -37912,12 +38225,12 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb" ] }, { @@ -37925,10 +38238,10 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb" ] }, { @@ -37936,10 +38249,10 @@ "kernelrelease": "4.15.0-1009-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb" ] }, { @@ -37947,12 +38260,12 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb" ] }, { @@ -37960,10 +38273,10 @@ "kernelrelease": "4.15.0-1010-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" ] }, { @@ -37971,10 +38284,10 @@ "kernelrelease": "4.15.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb" ] }, { @@ -37983,9 +38296,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" ] }, { @@ -37993,10 +38306,10 @@ "kernelrelease": "4.15.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb" ] }, { @@ -38004,10 +38317,10 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" ] }, { @@ -38015,10 +38328,10 @@ "kernelrelease": "4.15.0-1015-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb" ] }, { @@ -38028,8 +38341,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" ] }, { @@ -38037,10 +38350,10 @@ "kernelrelease": "4.15.0-1017-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb" ] }, { @@ -38048,10 +38361,10 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" ] }, { @@ -38059,10 +38372,10 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" ] }, { @@ -38070,9 +38383,9 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" ] }, @@ -38081,9 +38394,9 @@ "kernelrelease": "4.15.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" ] }, @@ -38092,8 +38405,8 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" ] @@ -38103,10 +38416,10 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" ] }, { @@ -38114,10 +38427,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" ] }, { @@ -38125,10 +38438,10 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" ] }, { @@ -38136,10 +38449,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb" ] }, { @@ -38147,10 +38460,10 @@ "kernelrelease": "4.15.0-1022-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" ] }, { @@ -38159,8 +38472,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" ] }, @@ -38171,8 +38484,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" ] }, { @@ -38181,9 +38494,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" ] }, { @@ -38191,10 +38504,10 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" ] }, { @@ -38203,9 +38516,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" ] }, { @@ -38215,8 +38528,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { @@ -38225,8 +38538,8 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" ] }, @@ -38235,10 +38548,10 @@ "kernelrelease": "4.15.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb" ] }, { @@ -38247,8 +38560,8 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" ] }, @@ -38257,10 +38570,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb" ] }, { @@ -38268,32 +38581,32 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" ] }, { "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -38301,10 +38614,10 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" ] }, { @@ -38312,10 +38625,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" ] }, { @@ -38324,9 +38637,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" ] }, { @@ -38334,10 +38647,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb" ] }, { @@ -38345,10 +38658,10 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" ] }, { @@ -38356,10 +38669,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" ] }, { @@ -38367,10 +38680,10 @@ "kernelrelease": "4.15.0-1032-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb" ] }, { @@ -38378,10 +38691,10 @@ "kernelrelease": "4.15.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" ] }, { @@ -38389,10 +38702,10 @@ "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" ] }, { @@ -38401,9 +38714,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" ] }, { @@ -38411,10 +38724,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb" ] }, { @@ -38422,32 +38735,32 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { @@ -38455,10 +38768,10 @@ "kernelrelease": "4.15.0-1037-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb" ] }, { @@ -38466,10 +38779,10 @@ "kernelrelease": "4.15.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" ] }, { @@ -38477,10 +38790,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" ] }, { @@ -38488,10 +38801,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" ] }, { @@ -38499,10 +38812,10 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" ] }, { @@ -38510,8 +38823,8 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" ] @@ -38521,10 +38834,10 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" ] }, { @@ -38533,9 +38846,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb" ] }, { @@ -38543,10 +38856,10 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" ] }, { @@ -38554,9 +38867,9 @@ "kernelrelease": "4.15.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" ] }, @@ -38565,10 +38878,10 @@ "kernelrelease": "4.15.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" ] }, { @@ -38576,8 +38889,8 @@ "kernelrelease": "4.15.0-1047-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" ] @@ -38587,10 +38900,10 @@ "kernelrelease": "4.15.0-1049-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" ] }, { @@ -38599,9 +38912,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb" ] }, { @@ -38609,10 +38922,10 @@ "kernelrelease": "4.15.0-1050-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" ] }, { @@ -38620,10 +38933,10 @@ "kernelrelease": "4.15.0-1051-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" ] }, { @@ -38631,10 +38944,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" ] }, { @@ -38643,9 +38956,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" ] }, { @@ -38653,10 +38966,10 @@ "kernelrelease": "4.15.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" ] }, { @@ -38664,10 +38977,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" ] }, { @@ -38676,9 +38989,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" ] }, { @@ -38686,10 +38999,10 @@ "kernelrelease": "4.15.0-1055-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" ] }, { @@ -38697,10 +39010,10 @@ "kernelrelease": "4.15.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" ] }, { @@ -38708,10 +39021,10 @@ "kernelrelease": "4.15.0-1056-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" ] }, { @@ -38720,9 +39033,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" ] }, { @@ -38731,9 +39044,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb" ] }, { @@ -38741,10 +39054,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" ] }, { @@ -38752,10 +39065,10 @@ "kernelrelease": "4.15.0-1059-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb" ] }, { @@ -38763,12 +39076,12 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" ] }, { @@ -38778,8 +39091,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" ] }, { @@ -38787,9 +39100,9 @@ "kernelrelease": "4.15.0-1060-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" ] }, @@ -38798,9 +39111,9 @@ "kernelrelease": "4.15.0-1061-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" ] }, @@ -38809,9 +39122,9 @@ "kernelrelease": "4.15.0-1061-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" ] }, @@ -38820,10 +39133,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" ] }, { @@ -38831,10 +39144,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" ] }, { @@ -38842,10 +39155,10 @@ "kernelrelease": "4.15.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" ] }, { @@ -38854,9 +39167,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" ] }, { @@ -38864,10 +39177,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" ] }, { @@ -38875,10 +39188,10 @@ "kernelrelease": "4.15.0-1065-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb" ] }, { @@ -38886,10 +39199,10 @@ "kernelrelease": "4.15.0-1066-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" ] }, { @@ -38897,10 +39210,10 @@ "kernelrelease": "4.15.0-1067-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" ] }, { @@ -38909,9 +39222,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" ] }, { @@ -38919,10 +39232,10 @@ "kernelrelease": "4.15.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb" ] }, { @@ -38930,9 +39243,9 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" ] }, @@ -38941,12 +39254,12 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb" ] }, { @@ -38956,8 +39269,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" ] }, { @@ -38966,8 +39279,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb" ] }, @@ -38976,10 +39289,10 @@ "kernelrelease": "4.15.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb" ] }, { @@ -38987,10 +39300,10 @@ "kernelrelease": "4.15.0-1075-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" ] }, { @@ -38999,8 +39312,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" ] }, @@ -39020,10 +39333,10 @@ "kernelrelease": "4.15.0-1080-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" ] }, { @@ -39031,10 +39344,10 @@ "kernelrelease": "4.15.0-1081-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" ] }, { @@ -39042,10 +39355,10 @@ "kernelrelease": "4.15.0-1082-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb" ] }, { @@ -39053,8 +39366,8 @@ "kernelrelease": "4.15.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" ] @@ -39065,9 +39378,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" ] }, { @@ -39076,9 +39389,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb" ] }, { @@ -39086,10 +39399,10 @@ "kernelrelease": "4.15.0-1086-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" ] }, { @@ -39098,9 +39411,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" ] }, { @@ -39108,10 +39421,10 @@ "kernelrelease": "4.15.0-1089-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb" ] }, { @@ -39119,10 +39432,10 @@ "kernelrelease": "4.15.0-1090-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb" ] }, { @@ -39141,10 +39454,10 @@ "kernelrelease": "4.15.0-1091-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" ] }, { @@ -39152,8 +39465,8 @@ "kernelrelease": "4.15.0-1092-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" ] @@ -39163,10 +39476,10 @@ "kernelrelease": "4.15.0-1092-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb" ] }, { @@ -39174,10 +39487,10 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" ] }, { @@ -39185,9 +39498,9 @@ "kernelrelease": "4.15.0-1093-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" ] }, @@ -39196,9 +39509,9 @@ "kernelrelease": "4.15.0-1093-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb" ] }, @@ -39218,10 +39531,10 @@ "kernelrelease": "4.15.0-1094-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb" ] }, { @@ -39229,10 +39542,10 @@ "kernelrelease": "4.15.0-1095-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" ] }, { @@ -39240,9 +39553,9 @@ "kernelrelease": "4.15.0-1096-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb" ] }, @@ -39252,9 +39565,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" ] }, { @@ -39262,10 +39575,10 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" ] }, { @@ -39273,9 +39586,9 @@ "kernelrelease": "4.15.0-1097-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" ] }, @@ -39284,10 +39597,10 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb" ] }, { @@ -39296,9 +39609,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" ] }, { @@ -39307,9 +39620,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" ] }, { @@ -39317,10 +39630,10 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" ] }, { @@ -39328,10 +39641,10 @@ "kernelrelease": "4.15.0-1102-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb" ] }, { @@ -39339,10 +39652,10 @@ "kernelrelease": "4.15.0-1103-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" ] }, { @@ -39350,9 +39663,9 @@ "kernelrelease": "4.15.0-1106-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" ] }, @@ -39363,8 +39676,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" ] }, { @@ -39372,9 +39685,9 @@ "kernelrelease": "4.15.0-1109-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb" ] }, @@ -39383,9 +39696,9 @@ "kernelrelease": "4.15.0-1111-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" ] }, @@ -39394,10 +39707,10 @@ "kernelrelease": "4.15.0-1112-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" ] }, { @@ -39405,9 +39718,9 @@ "kernelrelease": "4.15.0-1113-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" ] }, @@ -39416,12 +39729,12 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb" ] }, { @@ -39429,11 +39742,11 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb" ] }, @@ -39442,12 +39755,12 @@ "kernelrelease": "4.15.0-117-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb" ] }, { @@ -39455,12 +39768,12 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb" ] }, { @@ -39468,12 +39781,12 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" ] }, { @@ -39481,12 +39794,12 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb" ] }, { @@ -39495,11 +39808,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb" ] }, { @@ -39507,11 +39820,11 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" ] }, @@ -39521,11 +39834,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb" ] }, { @@ -39534,11 +39847,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" ] }, { @@ -39546,11 +39859,11 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb" ] }, @@ -39559,12 +39872,12 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" ] }, { @@ -39572,11 +39885,11 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb" ] }, @@ -39585,12 +39898,12 @@ "kernelrelease": "4.15.0-137-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" ] }, { @@ -39598,12 +39911,12 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb" ] }, { @@ -39611,12 +39924,12 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" ] }, { @@ -39624,11 +39937,11 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb" ] }, @@ -39637,12 +39950,12 @@ "kernelrelease": "4.15.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" ] }, { @@ -39650,12 +39963,12 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" ] }, { @@ -39663,12 +39976,12 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" ] }, { @@ -39678,10 +39991,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" ] }, { @@ -39689,12 +40002,12 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb" ] }, { @@ -39702,11 +40015,11 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb" ] }, @@ -39715,12 +40028,12 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" ] }, { @@ -39730,10 +40043,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" ] }, { @@ -39741,12 +40054,12 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" ] }, { @@ -39754,11 +40067,11 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" ] }, @@ -39767,12 +40080,12 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb" ] }, { @@ -39780,12 +40093,12 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb" ] }, { @@ -39793,8 +40106,8 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", @@ -39806,12 +40119,12 @@ "kernelrelease": "4.15.0-43-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" ] }, { @@ -39819,12 +40132,12 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb" ] }, { @@ -39832,12 +40145,12 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb" ] }, { @@ -39845,12 +40158,12 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" ] }, { @@ -39858,12 +40171,12 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb" ] }, { @@ -39871,12 +40184,12 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" ] }, { @@ -39884,12 +40197,12 @@ "kernelrelease": "4.15.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb" ] }, { @@ -39897,12 +40210,12 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" ] }, { @@ -39910,12 +40223,12 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb" ] }, { @@ -39923,12 +40236,12 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb" ] }, { @@ -39937,11 +40250,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" ] }, { @@ -39949,12 +40262,12 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb" ] }, { @@ -39962,12 +40275,12 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" ] }, { @@ -39975,12 +40288,12 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" ] }, { @@ -39988,12 +40301,12 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" ] }, { @@ -40001,12 +40314,12 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" ] }, { @@ -40014,12 +40327,12 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" ] }, { @@ -40028,11 +40341,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" ] }, { @@ -40040,12 +40353,12 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" ] }, { @@ -40053,12 +40366,12 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" ] }, { @@ -40066,12 +40379,12 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb" ] }, { @@ -40079,12 +40392,12 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb" ] }, { @@ -40093,11 +40406,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb" ] }, { @@ -40105,12 +40418,12 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" ] }, { @@ -40118,8 +40431,8 @@ "kernelrelease": "4.4.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb" ] @@ -40130,8 +40443,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" ] }, @@ -40140,10 +40453,10 @@ "kernelrelease": "4.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" ] }, { @@ -40151,12 +40464,12 @@ "kernelrelease": "4.4.0-101", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb" ] }, { @@ -40165,9 +40478,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb" ] }, { @@ -40175,9 +40488,9 @@ "kernelrelease": "4.4.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb" ] }, @@ -40187,9 +40500,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" ] }, { @@ -40197,8 +40510,8 @@ "kernelrelease": "4.4.0-1013-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" ] @@ -40208,10 +40521,10 @@ "kernelrelease": "4.4.0-1015-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb" ] }, { @@ -40219,10 +40532,10 @@ "kernelrelease": "4.4.0-1016-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" ] }, { @@ -40231,9 +40544,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" ] }, { @@ -40241,10 +40554,10 @@ "kernelrelease": "4.4.0-1017-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" ] }, { @@ -40252,8 +40565,8 @@ "kernelrelease": "4.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" ] @@ -40264,9 +40577,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb" ] }, { @@ -40274,10 +40587,10 @@ "kernelrelease": "4.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb" ] }, { @@ -40286,8 +40599,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb" ] }, @@ -40296,9 +40609,9 @@ "kernelrelease": "4.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" ] }, @@ -40307,10 +40620,10 @@ "kernelrelease": "4.4.0-1022-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb" ] }, { @@ -40318,10 +40631,10 @@ "kernelrelease": "4.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb" ] }, { @@ -40329,10 +40642,10 @@ "kernelrelease": "4.4.0-1026-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" ] }, { @@ -40340,9 +40653,9 @@ "kernelrelease": "4.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb" ] }, @@ -40351,10 +40664,10 @@ "kernelrelease": "4.4.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb" ] }, { @@ -40362,10 +40675,10 @@ "kernelrelease": "4.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" ] }, { @@ -40373,8 +40686,8 @@ "kernelrelease": "4.4.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb" ] @@ -40384,12 +40697,12 @@ "kernelrelease": "4.4.0-103", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" ] }, { @@ -40399,8 +40712,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" ] }, { @@ -40409,9 +40722,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" ] }, { @@ -40419,10 +40732,10 @@ "kernelrelease": "4.4.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" ] }, { @@ -40431,9 +40744,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb" ] }, { @@ -40441,9 +40754,9 @@ "kernelrelease": "4.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" ] }, @@ -40452,8 +40765,8 @@ "kernelrelease": "4.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" ] @@ -40463,8 +40776,8 @@ "kernelrelease": "4.4.0-1035-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" ] @@ -40474,9 +40787,9 @@ "kernelrelease": "4.4.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" ] }, @@ -40485,10 +40798,10 @@ "kernelrelease": "4.4.0-1037-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" ] }, { @@ -40496,10 +40809,10 @@ "kernelrelease": "4.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" ] }, { @@ -40507,10 +40820,10 @@ "kernelrelease": "4.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb" ] }, { @@ -40519,9 +40832,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb" ] }, { @@ -40529,12 +40842,12 @@ "kernelrelease": "4.4.0-104", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" ] }, { @@ -40543,8 +40856,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" ] }, @@ -40554,9 +40867,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" ] }, { @@ -40565,8 +40878,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb" ] }, @@ -40575,10 +40888,10 @@ "kernelrelease": "4.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" ] }, { @@ -40586,9 +40899,9 @@ "kernelrelease": "4.4.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb" ] }, @@ -40597,10 +40910,10 @@ "kernelrelease": "4.4.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb" ] }, { @@ -40608,10 +40921,10 @@ "kernelrelease": "4.4.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb" ] }, { @@ -40619,10 +40932,10 @@ "kernelrelease": "4.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb" ] }, { @@ -40631,9 +40944,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb" ] }, { @@ -40641,10 +40954,10 @@ "kernelrelease": "4.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb" ] }, { @@ -40652,10 +40965,10 @@ "kernelrelease": "4.4.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" ] }, { @@ -40663,10 +40976,10 @@ "kernelrelease": "4.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb" ] }, { @@ -40674,10 +40987,10 @@ "kernelrelease": "4.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb" ] }, { @@ -40685,10 +40998,10 @@ "kernelrelease": "4.4.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb" ] }, { @@ -40696,9 +41009,9 @@ "kernelrelease": "4.4.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" ] }, @@ -40707,10 +41020,10 @@ "kernelrelease": "4.4.0-1054-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb" ] }, { @@ -40718,8 +41031,8 @@ "kernelrelease": "4.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb" ] @@ -40730,9 +41043,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb" ] }, { @@ -40740,10 +41053,10 @@ "kernelrelease": "4.4.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" ] }, { @@ -40751,10 +41064,10 @@ "kernelrelease": "4.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb" ] }, { @@ -40762,10 +41075,10 @@ "kernelrelease": "4.4.0-1058-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb" ] }, { @@ -40773,10 +41086,10 @@ "kernelrelease": "4.4.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb" ] }, { @@ -40785,8 +41098,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" ] }, @@ -40795,10 +41108,10 @@ "kernelrelease": "4.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" ] }, { @@ -40806,10 +41119,10 @@ "kernelrelease": "4.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" ] }, { @@ -40817,10 +41130,10 @@ "kernelrelease": "4.4.0-1062-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" ] }, { @@ -40828,10 +41141,10 @@ "kernelrelease": "4.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" ] }, { @@ -40839,10 +41152,10 @@ "kernelrelease": "4.4.0-1063-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb" ] }, { @@ -40850,10 +41163,10 @@ "kernelrelease": "4.4.0-1064-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb" ] }, { @@ -40861,10 +41174,10 @@ "kernelrelease": "4.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb" ] }, { @@ -40872,10 +41185,10 @@ "kernelrelease": "4.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" ] }, { @@ -40883,10 +41196,10 @@ "kernelrelease": "4.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb" ] }, { @@ -40894,10 +41207,10 @@ "kernelrelease": "4.4.0-1066-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" ] }, { @@ -40905,9 +41218,9 @@ "kernelrelease": "4.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb" ] }, @@ -40916,10 +41229,10 @@ "kernelrelease": "4.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" ] }, { @@ -40927,10 +41240,10 @@ "kernelrelease": "4.4.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb" ] }, { @@ -40938,10 +41251,10 @@ "kernelrelease": "4.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb" ] }, { @@ -40949,10 +41262,10 @@ "kernelrelease": "4.4.0-1070-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" ] }, { @@ -40960,9 +41273,9 @@ "kernelrelease": "4.4.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb" ] }, @@ -40971,10 +41284,10 @@ "kernelrelease": "4.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb" ] }, { @@ -40982,10 +41295,10 @@ "kernelrelease": "4.4.0-1074-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" ] }, { @@ -40994,9 +41307,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb" ] }, { @@ -41005,8 +41318,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" ] }, @@ -41016,8 +41329,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" ] }, @@ -41027,9 +41340,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb" ] }, { @@ -41037,10 +41350,10 @@ "kernelrelease": "4.4.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" ] }, { @@ -41048,10 +41361,10 @@ "kernelrelease": "4.4.0-1078-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" ] }, { @@ -41059,10 +41372,10 @@ "kernelrelease": "4.4.0-1079-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" ] }, { @@ -41081,12 +41394,12 @@ "kernelrelease": "4.4.0-108", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" ] }, { @@ -41095,9 +41408,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" ] }, { @@ -41105,10 +41418,10 @@ "kernelrelease": "4.4.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" ] }, { @@ -41116,10 +41429,10 @@ "kernelrelease": "4.4.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb" ] }, { @@ -41127,10 +41440,10 @@ "kernelrelease": "4.4.0-1084-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" ] }, { @@ -41139,9 +41452,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb" ] }, { @@ -41149,10 +41462,10 @@ "kernelrelease": "4.4.0-1085-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" ] }, { @@ -41160,10 +41473,10 @@ "kernelrelease": "4.4.0-1085-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb" ] }, { @@ -41171,8 +41484,8 @@ "kernelrelease": "4.4.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb" ] @@ -41182,10 +41495,10 @@ "kernelrelease": "4.4.0-1087-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" ] }, { @@ -41215,10 +41528,10 @@ "kernelrelease": "4.4.0-1089-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb" ] }, { @@ -41226,12 +41539,12 @@ "kernelrelease": "4.4.0-109", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb" ] }, { @@ -41239,10 +41552,10 @@ "kernelrelease": "4.4.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" ] }, { @@ -41251,9 +41564,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" ] }, { @@ -41262,9 +41575,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" ] }, { @@ -41272,9 +41585,9 @@ "kernelrelease": "4.4.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" ] }, @@ -41283,10 +41596,10 @@ "kernelrelease": "4.4.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" ] }, { @@ -41294,9 +41607,9 @@ "kernelrelease": "4.4.0-1093-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" ] }, @@ -41305,9 +41618,9 @@ "kernelrelease": "4.4.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" ] }, @@ -41316,9 +41629,9 @@ "kernelrelease": "4.4.0-1095-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" ] }, @@ -41327,10 +41640,10 @@ "kernelrelease": "4.4.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb" ] }, { @@ -41338,10 +41651,10 @@ "kernelrelease": "4.4.0-1098-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" ] }, { @@ -41349,9 +41662,9 @@ "kernelrelease": "4.4.0-1099-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" ] }, @@ -41360,10 +41673,10 @@ "kernelrelease": "4.4.0-1100-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" ] }, { @@ -41371,10 +41684,10 @@ "kernelrelease": "4.4.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" ] }, { @@ -41382,9 +41695,9 @@ "kernelrelease": "4.4.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" ] }, @@ -41393,9 +41706,9 @@ "kernelrelease": "4.4.0-1104-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" ] }, @@ -41404,10 +41717,10 @@ "kernelrelease": "4.4.0-1105-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb" ] }, { @@ -41415,10 +41728,10 @@ "kernelrelease": "4.4.0-1106-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" ] }, { @@ -41427,9 +41740,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" ] }, { @@ -41437,10 +41750,10 @@ "kernelrelease": "4.4.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb" ] }, { @@ -41450,8 +41763,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" ] }, { @@ -41459,10 +41772,10 @@ "kernelrelease": "4.4.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb" ] }, { @@ -41470,10 +41783,10 @@ "kernelrelease": "4.4.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" ] }, { @@ -41481,10 +41794,10 @@ "kernelrelease": "4.4.0-1113-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb" ] }, { @@ -41492,10 +41805,10 @@ "kernelrelease": "4.4.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" ] }, { @@ -41503,10 +41816,10 @@ "kernelrelease": "4.4.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb" ] }, { @@ -41514,10 +41827,10 @@ "kernelrelease": "4.4.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" ] }, { @@ -41525,10 +41838,10 @@ "kernelrelease": "4.4.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" ] }, { @@ -41537,10 +41850,10 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" ] }, @@ -41550,9 +41863,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" ] }, { @@ -41561,9 +41874,9 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb" ] }, { @@ -41571,9 +41884,9 @@ "kernelrelease": "4.4.0-1123-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" ] }, @@ -41582,10 +41895,10 @@ "kernelrelease": "4.4.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb" ] }, { @@ -41593,10 +41906,10 @@ "kernelrelease": "4.4.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb" ] }, { @@ -41604,10 +41917,10 @@ "kernelrelease": "4.4.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" ] }, { @@ -41615,9 +41928,9 @@ "kernelrelease": "4.4.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb" ] }, @@ -41626,12 +41939,12 @@ "kernelrelease": "4.4.0-116", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" ] }, { @@ -41640,10 +41953,10 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb" ] }, @@ -41652,11 +41965,11 @@ "kernelrelease": "4.4.0-121", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb" ] }, @@ -41665,12 +41978,12 @@ "kernelrelease": "4.4.0-124", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb" ] }, { @@ -41678,12 +41991,12 @@ "kernelrelease": "4.4.0-127", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" ] }, { @@ -41691,12 +42004,12 @@ "kernelrelease": "4.4.0-128", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" ] }, { @@ -41704,12 +42017,12 @@ "kernelrelease": "4.4.0-130", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" ] }, { @@ -41718,11 +42031,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" ] }, { @@ -41730,12 +42043,12 @@ "kernelrelease": "4.4.0-134", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb" ] }, { @@ -41743,12 +42056,12 @@ "kernelrelease": "4.4.0-137", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb" ] }, { @@ -41756,12 +42069,12 @@ "kernelrelease": "4.4.0-138", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb" ] }, { @@ -41769,12 +42082,12 @@ "kernelrelease": "4.4.0-139", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb" ] }, { @@ -41782,12 +42095,12 @@ "kernelrelease": "4.4.0-141", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb" ] }, { @@ -41795,11 +42108,11 @@ "kernelrelease": "4.4.0-142", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb" ] }, @@ -41809,11 +42122,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" ] }, { @@ -41822,11 +42135,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb" ] }, { @@ -41835,11 +42148,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" ] }, { @@ -41848,11 +42161,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" ] }, { @@ -41860,12 +42173,12 @@ "kernelrelease": "4.4.0-151", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb" ] }, { @@ -41875,10 +42188,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb" ] }, { @@ -41886,12 +42199,12 @@ "kernelrelease": "4.4.0-157", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb" ] }, { @@ -41899,11 +42212,11 @@ "kernelrelease": "4.4.0-159", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb" ] }, @@ -41912,12 +42225,12 @@ "kernelrelease": "4.4.0-161", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" ] }, { @@ -41925,12 +42238,12 @@ "kernelrelease": "4.4.0-164", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" ] }, { @@ -41938,12 +42251,12 @@ "kernelrelease": "4.4.0-165", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" ] }, { @@ -41951,12 +42264,12 @@ "kernelrelease": "4.4.0-166", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" ] }, { @@ -41964,11 +42277,11 @@ "kernelrelease": "4.4.0-168", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" ] }, @@ -41977,12 +42290,12 @@ "kernelrelease": "4.4.0-169", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" ] }, { @@ -41991,11 +42304,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb" ] }, { @@ -42004,11 +42317,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb" ] }, { @@ -42016,12 +42329,12 @@ "kernelrelease": "4.4.0-173", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb" ] }, { @@ -42030,11 +42343,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb" ] }, { @@ -42042,12 +42355,12 @@ "kernelrelease": "4.4.0-176", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" ] }, { @@ -42055,11 +42368,11 @@ "kernelrelease": "4.4.0-177", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" ] }, @@ -42070,10 +42383,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb" ] }, { @@ -42081,12 +42394,12 @@ "kernelrelease": "4.4.0-179", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb" ] }, { @@ -42096,10 +42409,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb" ] }, { @@ -42107,12 +42420,12 @@ "kernelrelease": "4.4.0-185", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb" ] }, { @@ -42120,10 +42433,10 @@ "kernelrelease": "4.4.0-186", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" ] @@ -42133,12 +42446,12 @@ "kernelrelease": "4.4.0-187", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" ] }, { @@ -42146,12 +42459,12 @@ "kernelrelease": "4.4.0-189", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" ] }, { @@ -42159,12 +42472,12 @@ "kernelrelease": "4.4.0-190", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" ] }, { @@ -42172,12 +42485,12 @@ "kernelrelease": "4.4.0-193", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb" ] }, { @@ -42185,12 +42498,12 @@ "kernelrelease": "4.4.0-194", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb" ] }, { @@ -42198,12 +42511,12 @@ "kernelrelease": "4.4.0-197", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb" ] }, { @@ -42211,12 +42524,12 @@ "kernelrelease": "4.4.0-198", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb" ] }, { @@ -42225,11 +42538,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb" ] }, { @@ -42237,12 +42550,12 @@ "kernelrelease": "4.4.0-201", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb" ] }, { @@ -42250,12 +42563,12 @@ "kernelrelease": "4.4.0-203", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb" ] }, { @@ -42263,12 +42576,12 @@ "kernelrelease": "4.4.0-204", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" ] }, { @@ -42276,11 +42589,11 @@ "kernelrelease": "4.4.0-208", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" ] }, @@ -42290,11 +42603,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" ] }, { @@ -42302,12 +42615,12 @@ "kernelrelease": "4.4.0-210", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" ] }, { @@ -42315,12 +42628,12 @@ "kernelrelease": "4.4.0-22", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb" ] }, { @@ -42329,11 +42642,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb" ] }, { @@ -42341,12 +42654,12 @@ "kernelrelease": "4.4.0-28", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb" ] }, { @@ -42355,11 +42668,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb" ] }, { @@ -42367,12 +42680,12 @@ "kernelrelease": "4.4.0-34", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" ] }, { @@ -42380,12 +42693,12 @@ "kernelrelease": "4.4.0-36", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb" ] }, { @@ -42393,12 +42706,12 @@ "kernelrelease": "4.4.0-38", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" ] }, { @@ -42406,12 +42719,12 @@ "kernelrelease": "4.4.0-42", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb" ] }, { @@ -42419,10 +42732,10 @@ "kernelrelease": "4.4.0-45", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" ] @@ -42432,12 +42745,12 @@ "kernelrelease": "4.4.0-47", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" ] }, { @@ -42446,11 +42759,11 @@ "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb" ] }, { @@ -42458,11 +42771,11 @@ "kernelrelease": "4.4.0-53", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" ] }, @@ -42471,12 +42784,12 @@ "kernelrelease": "4.4.0-57", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb" ] }, { @@ -42484,12 +42797,12 @@ "kernelrelease": "4.4.0-59", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" ] }, { @@ -42497,12 +42810,12 @@ "kernelrelease": "4.4.0-62", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb" ] }, { @@ -42510,12 +42823,12 @@ "kernelrelease": "4.4.0-63", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb" ] }, { @@ -42523,12 +42836,12 @@ "kernelrelease": "4.4.0-64", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb" ] }, { @@ -42536,12 +42849,12 @@ "kernelrelease": "4.4.0-66", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" ] }, { @@ -42549,12 +42862,12 @@ "kernelrelease": "4.4.0-67", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb" ] }, { @@ -42562,12 +42875,12 @@ "kernelrelease": "4.4.0-70", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" ] }, { @@ -42575,12 +42888,12 @@ "kernelrelease": "4.4.0-71", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" ] }, { @@ -42588,12 +42901,12 @@ "kernelrelease": "4.4.0-72", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb" ] }, { @@ -42601,12 +42914,12 @@ "kernelrelease": "4.4.0-75", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" ] }, { @@ -42614,12 +42927,12 @@ "kernelrelease": "4.4.0-78", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb" ] }, { @@ -42628,11 +42941,11 @@ "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb" ] }, { @@ -42640,12 +42953,12 @@ "kernelrelease": "4.4.0-81", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" ] }, { @@ -42653,12 +42966,12 @@ "kernelrelease": "4.4.0-83", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb" ] }, { @@ -42666,11 +42979,11 @@ "kernelrelease": "4.4.0-87", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb" ] }, @@ -42682,9 +42995,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" ] }, { @@ -42694,10 +43007,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb" ] }, { @@ -42705,12 +43018,12 @@ "kernelrelease": "4.4.0-92", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb" ] }, { @@ -42718,12 +43031,12 @@ "kernelrelease": "4.4.0-93", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb" ] }, { @@ -42731,11 +43044,11 @@ "kernelrelease": "4.4.0-96", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" ] }, @@ -42744,12 +43057,12 @@ "kernelrelease": "4.4.0-97", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" ] }, { @@ -42757,12 +43070,12 @@ "kernelrelease": "4.4.0-98", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" ] }, { @@ -42770,12 +43083,12 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb" ] }, { @@ -42783,12 +43096,12 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb" ] }, { @@ -42796,12 +43109,12 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" ] }, { @@ -42809,12 +43122,12 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb" ] }, { @@ -42822,12 +43135,12 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" ] }, { @@ -42835,12 +43148,12 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" ] }, { @@ -42848,12 +43161,12 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" ] }, { @@ -42861,12 +43174,12 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb" ] }, { @@ -42874,12 +43187,12 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" ] }, { @@ -42887,12 +43200,12 @@ "kernelrelease": "4.8.0-56-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb" ] }, { @@ -42900,12 +43213,12 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" ] }, { @@ -42913,10 +43226,10 @@ "kernelrelease": "4.11.0-1009-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" ] }, { @@ -42925,9 +43238,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" ] }, { @@ -42936,9 +43249,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" ] }, { @@ -42946,10 +43259,10 @@ "kernelrelease": "4.11.0-1014-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" ] }, { @@ -42957,10 +43270,10 @@ "kernelrelease": "4.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" ] }, { @@ -42968,10 +43281,10 @@ "kernelrelease": "4.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" ] }, { @@ -42979,10 +43292,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" ] }, { @@ -42990,10 +43303,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" ] }, { @@ -43001,10 +43314,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" ] }, { @@ -43012,10 +43325,10 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb" ] }, { @@ -43023,9 +43336,9 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" ] }, @@ -43034,12 +43347,12 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb" ] }, { @@ -43048,11 +43361,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" ] }, { @@ -43060,10 +43373,10 @@ "kernelrelease": "4.4.0-1033-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" ] }, { @@ -43071,9 +43384,9 @@ "kernelrelease": "4.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" ] }, @@ -43083,9 +43396,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb" ] }, { @@ -43093,10 +43406,10 @@ "kernelrelease": "4.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" ] }, { @@ -43104,10 +43417,10 @@ "kernelrelease": "4.4.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" ] }, { @@ -43115,10 +43428,10 @@ "kernelrelease": "4.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" ] }, { @@ -43126,10 +43439,10 @@ "kernelrelease": "4.4.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" ] }, { @@ -43137,10 +43450,10 @@ "kernelrelease": "4.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" ] }, { @@ -43148,10 +43461,10 @@ "kernelrelease": "4.4.0-1081-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" ] }, { @@ -43159,11 +43472,11 @@ "kernelrelease": "4.4.0-122", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb" ] }, @@ -43172,10 +43485,10 @@ "kernelrelease": "4.4.0-131", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb" ] @@ -43185,12 +43498,12 @@ "kernelrelease": "4.4.0-135", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb" ] }, { @@ -43201,9 +43514,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb" ] }, { @@ -43211,12 +43524,12 @@ "kernelrelease": "4.4.0-146", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb" ] }, { @@ -43224,12 +43537,12 @@ "kernelrelease": "4.4.0-43", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" ] }, { @@ -43240,9 +43553,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" ] }, { @@ -43251,10 +43564,10 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" ] }, @@ -43264,11 +43577,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb" ] }, { @@ -43276,12 +43589,12 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb" ] }, { @@ -43289,12 +43602,12 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" ] }, { @@ -43302,12 +43615,12 @@ "kernelrelease": "4.4.0-21", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb" ] } ], From 0317194c299cd0d4aa6befb01c651827d8c61a8e Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Mon, 18 Jul 2022 14:58:49 -0500 Subject: [PATCH 123/259] switching to vault.centos.org and adding archive.kernel.org Signed-off-by: Logan Bond --- kernel_crawler/centos.py | 9 ++++++--- requirements.txt | 2 ++ 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 requirements.txt diff --git a/kernel_crawler/centos.py b/kernel_crawler/centos.py index e7f5e1b..13589a9 100644 --- a/kernel_crawler/centos.py +++ b/kernel_crawler/centos.py @@ -19,9 +19,12 @@ def __init__(self, arch): rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/' + arch + '/', v7_only), # CentOS 8 reached end-of-life at the end of 2021, so no point looking for it # rpm.RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), - rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'os/' + arch + '/', v6_or_v7), - rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'updates/' + arch + '/', v6_or_v7), - rpm.RpmMirror('http://linuxsoft.cern.ch/centos-vault/', 'BaseOS/' + arch + '/os/', v8_only), + rpm.RpmMirror('http://vault.centos.org/centos/', 'os/' + arch + '/', v6_or_v7), + rpm.RpmMirror('http://vault.centos.org/centos/', 'updates/' + arch + '/', v6_or_v7), + rpm.RpmMirror('http://vault.centos.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), + rpm.RpmMirror('http://archive.kernel.org/centos/', 'os/' + arch + '/', v6_or_v7), + rpm.RpmMirror('http://archive.kernel.org/centos/', 'updates/' + arch + '/', v6_or_v7), + rpm.RpmMirror('http://archive.kernel.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), ] super(CentosMirror, self).__init__(mirrors, arch) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f746ab2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +lxml +click \ No newline at end of file From dab4231b11dcead931b1e20a5fdc0fbf86efe54a Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 21 Jul 2022 17:23:07 +0200 Subject: [PATCH 124/259] fix(crawler): skip photonOS linux-PAM-devel packages. Signed-off-by: Federico Di Pierro --- kernel_crawler/__init__.py | 13 +++++++------ kernel_crawler/photon_os.py | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 88d0573..10e1ebb 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -35,12 +35,13 @@ def to_driverkit_config(d, res): # Moreover, we do not really care about performance here. for ver, deps in res.items(): dk_conf = d.to_driverkit_config(ver, deps) - try: - # Ubuntu returns multiple for each - dk_configs.extend(dk_conf) - except TypeError: - # Others return just a single dk config - dk_configs.append(dk_conf) + if dk_conf is not None: + try: + # Ubuntu returns multiple for each + dk_configs.extend(dk_conf) + except TypeError: + # Others return just a single dk config + dk_configs.append(dk_conf) return dk_configs diff --git a/kernel_crawler/photon_os.py b/kernel_crawler/photon_os.py index f309702..9c233bc 100644 --- a/kernel_crawler/photon_os.py +++ b/kernel_crawler/photon_os.py @@ -27,5 +27,5 @@ def list_repos(self): def to_driverkit_config(self, release, deps): for dep in deps: - if dep.find("devel") != -1: + if dep.find("linux-devel") != -1: return repo.DriverKitConfig(release, "photonOS", dep) From 56b83111f54a27877b27735a6b22c4b0d08173bf Mon Sep 17 00:00:00 2001 From: John Brydon Date: Thu, 30 Jun 2022 15:18:28 +0100 Subject: [PATCH 125/259] Basic crawl of kernels as taken from container image Signed-off-by: John Brydon --- README.md | 7 ++++++- __init__.py | 31 +++++++++++++++++++++++++++---- kernel_crawler/__init__.py | 12 +++++++++++- kernel_crawler/container.py | 16 ++++++++++++++++ kernel_crawler/redhat.py | 15 +++++++++++++++ kernel_crawler/repo.py | 9 +++++++++ setup.py | 1 + 7 files changed, 85 insertions(+), 6 deletions(-) create mode 100644 kernel_crawler/container.py create mode 100644 kernel_crawler/redhat.py diff --git a/README.md b/README.md index bede2b3..4f7461a 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,11 @@ python __init__.py crawl --help Usage: __init__.py crawl [OPTIONS] Options: - --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|CentOS|Debian|Fedora|Flatcar|Oracle6|Oracle7|Oracle8|PhotonOS|Ubuntu|*] + --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|CentOS|Debian|Fedora|Flatcar|Oracle6|Oracle7|Oracle8|PhotonOS|Redhat|Ubuntu|*] --version TEXT --arch [x86_64|aarch64] --out_fmt [plain|json|driverkit] + --container TEXT --help ``` ## Examples @@ -30,3 +31,7 @@ python __init__.py crawl --distro=Ubuntu --out_fmt=driverkit ```commandline python __init__.py crawl --distro=* --out_fmt=json ``` +* Crawl Redhat kernels (specific to the container supplied), with no-formatted output: +```commandline +python __init__.py crawl --distro=Redhat --container=redhat/ubi8:registered +``` \ No newline at end of file diff --git a/__init__.py b/__init__.py index 3b28fdc..f90d7ff 100644 --- a/__init__.py +++ b/__init__.py @@ -3,7 +3,7 @@ import sys import click -from kernel_crawler import crawl_kernels, DISTROS +from kernel_crawler import crawl_kernels, DISTROS, CONTAINER_DISTROS logger = logging.getLogger(__name__) @@ -27,13 +27,36 @@ def default(self, obj): return list(obj) return json.JSONEncoder.default(self, obj) +class DistroContainerValidation(click.Option): + def __init__(self, *args, **kwargs): + self.required_if_distro:list = kwargs.pop("required_if_distro") + + assert self.required_if_distro, "'required_if_distro' parameter required" + kwargs["help"] = (kwargs.get("help", "") + "Option is required when distro is " + ", ".join(self.required_if_distro) + ".").strip() + super(DistroContainerValidation, self).__init__(*args, **kwargs) + + def handle_parse_result(self, ctx, opts, args): + current_opt:bool = self.name in opts + tgt_distro:str = opts["distro"] + for distro_opt in self.required_if_distro: + if distro_opt == tgt_distro: + if current_opt: + self.prompt = None + else: + raise click.UsageError("Missing argument: '" + str(self.name) + "' is required with " + str(distro_opt) + " distro.") + else: + if current_opt: + raise click.UsageError("Invalid argument: '" + str(self.name) + "' is not required with " + tgt_distro + " distro.") + return super(DistroContainerValidation, self).handle_parse_result(ctx, opts, args) + @click.command() -@click.option('--distro', type=click.Choice(sorted(DISTROS.keys()) + ['*'], case_sensitive=False)) +@click.option('--distro', type=click.Choice(sorted(list(DISTROS.keys()) + list(CONTAINER_DISTROS.keys())) + ['*'], case_sensitive=False)) @click.option('--version', required=False, default='') @click.option('--arch', required=False, type=click.Choice(['x86_64', 'aarch64'], case_sensitive=False), default='x86_64') @click.option('--out_fmt', required=False, type=click.Choice(['plain', 'json', 'driverkit'], case_sensitive=False), default='plain') -def crawl(distro, version='', arch='', out_fmt=''): - res = crawl_kernels(distro, version, arch, out_fmt == 'driverkit') +@click.option('--container', cls=DistroContainerValidation, required_if_distro=["Redhat"]) +def crawl(distro, version='', arch='', out_fmt='', container=''): + res = crawl_kernels(distro, version, arch, container, out_fmt == 'driverkit') out_fmt = str.lower(out_fmt) if out_fmt == 'plain': for dist, ks in res.items(): diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 10e1ebb..005a197 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -9,6 +9,8 @@ from .flatcar import FlatcarMirror +from .redhat import RedhatContainer + DISTROS = { 'AmazonLinux': AmazonLinux1Mirror, 'AmazonLinux2': AmazonLinux2Mirror, @@ -26,6 +28,9 @@ 'Flatcar': FlatcarMirror, } +CONTAINER_DISTROS = { + 'Redhat': RedhatContainer, +} def to_driverkit_config(d, res): dk_configs = [] @@ -45,7 +50,7 @@ def to_driverkit_config(d, res): return dk_configs -def crawl_kernels(distro, version, arch, to_driverkit): +def crawl_kernels(distro, version, arch, image, to_driverkit): ret = {} for distname, dist in DISTROS.items(): @@ -57,4 +62,9 @@ def crawl_kernels(distro, version, arch, to_driverkit): else: ret[distname] = res + for distname, container in CONTAINER_DISTROS.items(): + if distname == distro: + c = container(image) + res = c.get_kernel_versions() + return ret diff --git a/kernel_crawler/container.py b/kernel_crawler/container.py new file mode 100644 index 0000000..7ba26f4 --- /dev/null +++ b/kernel_crawler/container.py @@ -0,0 +1,16 @@ +import docker + +class Container(): + def __init__(self, image): + self.image = image + + def run_cmd(self, cmd, encoding ="utf-8"): + client = docker.from_env() + container = client.containers.run(self.image, cmd, detach=True) + logs = container.attach(stdout=True, stderr=True, stream=True, logs=True) + cmd_output = [] + for line in logs: + decoded_line = line.decode(encoding) + sp = list(filter(None, decoded_line.split("\n"))) + cmd_output.extend(sp) + return cmd_output \ No newline at end of file diff --git a/kernel_crawler/redhat.py b/kernel_crawler/redhat.py new file mode 100644 index 0000000..d13640c --- /dev/null +++ b/kernel_crawler/redhat.py @@ -0,0 +1,15 @@ +from . import repo +import re + +class RedhatContainer(repo.ContainerDistro): + def __init__(self, image): + super(RedhatContainer, self).__init__(image) + + def get_kernel_versions(self): + kernels = [] + cmd_out = super().run_cmd("repoquery --show-duplicates kernel-devel") + for log_line in cmd_out: + m = re.search("(?<=kernel-devel-0:).*", log_line); + if m: + kernels.append(m.group(0)) + return kernels \ No newline at end of file diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index d9c9bdc..34f56a5 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -1,4 +1,5 @@ from __future__ import print_function +from . import container import click import sys @@ -56,3 +57,11 @@ def list_repos(self): for mirror in mirrors: repos.extend(mirror.list_repos()) return repos + + +class ContainerDistro(container.Container): + def __init__(self, container_name): + super(ContainerDistro, self).__init__(container_name) + + def get_kernel_versions(self): + raise NotImplementedError \ No newline at end of file diff --git a/setup.py b/setup.py index 1fb24cc..4ad8c71 100644 --- a/setup.py +++ b/setup.py @@ -14,5 +14,6 @@ 'click', 'requests', 'lxml', + 'docker', ], ) From c9d8419dae3fcdf014af06b67d364ee6a9e06536 Mon Sep 17 00:00:00 2001 From: John Brydon Date: Thu, 30 Jun 2022 15:44:28 +0100 Subject: [PATCH 126/259] Fix plain/json output Signed-off-by: John Brydon --- kernel_crawler/__init__.py | 5 ++++- kernel_crawler/container.py | 2 +- kernel_crawler/redhat.py | 6 +++--- kernel_crawler/repo.py | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 005a197..e2d1733 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -66,5 +66,8 @@ def crawl_kernels(distro, version, arch, image, to_driverkit): if distname == distro: c = container(image) res = c.get_kernel_versions() - + if to_driverkit: + ret[distname] = to_driverkit_config(c, res) + else: + ret[distname] = res return ret diff --git a/kernel_crawler/container.py b/kernel_crawler/container.py index 7ba26f4..c230482 100644 --- a/kernel_crawler/container.py +++ b/kernel_crawler/container.py @@ -13,4 +13,4 @@ def run_cmd(self, cmd, encoding ="utf-8"): decoded_line = line.decode(encoding) sp = list(filter(None, decoded_line.split("\n"))) cmd_output.extend(sp) - return cmd_output \ No newline at end of file + return cmd_output diff --git a/kernel_crawler/redhat.py b/kernel_crawler/redhat.py index d13640c..dd18ea4 100644 --- a/kernel_crawler/redhat.py +++ b/kernel_crawler/redhat.py @@ -6,10 +6,10 @@ def __init__(self, image): super(RedhatContainer, self).__init__(image) def get_kernel_versions(self): - kernels = [] + kernels = {} cmd_out = super().run_cmd("repoquery --show-duplicates kernel-devel") for log_line in cmd_out: m = re.search("(?<=kernel-devel-0:).*", log_line); if m: - kernels.append(m.group(0)) - return kernels \ No newline at end of file + kernels[m.group(0)] = [] + return kernels diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index 34f56a5..bd56806 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -64,4 +64,4 @@ def __init__(self, container_name): super(ContainerDistro, self).__init__(container_name) def get_kernel_versions(self): - raise NotImplementedError \ No newline at end of file + raise NotImplementedError From 3452fcfa043fc30057346155719552031835baea Mon Sep 17 00:00:00 2001 From: John Brydon Date: Thu, 30 Jun 2022 17:10:53 +0100 Subject: [PATCH 127/259] Fix driverkit output Signed-off-by: John Brydon --- kernel_crawler/redhat.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel_crawler/redhat.py b/kernel_crawler/redhat.py index dd18ea4..f8c4737 100644 --- a/kernel_crawler/redhat.py +++ b/kernel_crawler/redhat.py @@ -13,3 +13,6 @@ def get_kernel_versions(self): if m: kernels[m.group(0)] = [] return kernels + + def to_driverkit_config(self, release, deps): + return repo.DriverKitConfig(release, "redhat", list(deps)) From 0ea2bedb2d66a544fe22f4ef5e88108771218ced Mon Sep 17 00:00:00 2001 From: John Brydon Date: Thu, 30 Jun 2022 17:52:04 +0100 Subject: [PATCH 128/259] Add progress bar that shows output of command Signed-off-by: John Brydon --- kernel_crawler/container.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/kernel_crawler/container.py b/kernel_crawler/container.py index c230482..2541a57 100644 --- a/kernel_crawler/container.py +++ b/kernel_crawler/container.py @@ -1,4 +1,10 @@ import docker +import click + +def decoded_str(s): + if s is None: + return '' + return s.decode("utf-8") class Container(): def __init__(self, image): @@ -9,8 +15,9 @@ def run_cmd(self, cmd, encoding ="utf-8"): container = client.containers.run(self.image, cmd, detach=True) logs = container.attach(stdout=True, stderr=True, stream=True, logs=True) cmd_output = [] - for line in logs: - decoded_line = line.decode(encoding) - sp = list(filter(None, decoded_line.split("\n"))) - cmd_output.extend(sp) + with click.progressbar(logs, label='Running command \'' + cmd + '\'', item_show_func=decoded_str) as logs: + for line in logs: + decoded_line = line.decode(encoding) + sp = list(filter(None, decoded_line.split("\n"))) + cmd_output.extend(sp) return cmd_output From 0cfac7d579e942bfd27dfbd1b53d79079aa868c5 Mon Sep 17 00:00:00 2001 From: John Brydon Date: Fri, 1 Jul 2022 19:07:24 +0100 Subject: [PATCH 129/259] Allow multiple images at one time Signed-off-by: John Brydon --- README.md | 5 +++-- __init__.py | 17 +++++++---------- kernel_crawler/__init__.py | 29 ++++++++++++++++------------- kernel_crawler/container.py | 4 ++-- kernel_crawler/redhat.py | 17 ++++++++++------- kernel_crawler/repo.py | 16 +++++++++++----- 6 files changed, 49 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index 4f7461a..bbe99ba 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # Falcosecurity kernel-crawler -[![Update list of kernels weekly](https://github.com/falcosecurity/kernel-crawler/actions/workflows/update_kernels.yaml/badge.svg)](https://github.com/falcosecurity/kernel-crawler/actions/workflows/update_kernels.yaml) - Helper text and options: ```commandline python __init__.py crawl --help @@ -31,6 +29,9 @@ python __init__.py crawl --distro=Ubuntu --out_fmt=driverkit ```commandline python __init__.py crawl --distro=* --out_fmt=json ``` +| :exclamation: **Note**: Passing ```--image``` argument is supported with ```--distro=*``` | +|-------------------------------------------------------------------------------------------| + * Crawl Redhat kernels (specific to the container supplied), with no-formatted output: ```commandline python __init__.py crawl --distro=Redhat --container=redhat/ubi8:registered diff --git a/__init__.py b/__init__.py index f90d7ff..8830e73 100644 --- a/__init__.py +++ b/__init__.py @@ -27,36 +27,33 @@ def default(self, obj): return list(obj) return json.JSONEncoder.default(self, obj) -class DistroContainerValidation(click.Option): +class DistroImageValidation(click.Option): def __init__(self, *args, **kwargs): self.required_if_distro:list = kwargs.pop("required_if_distro") assert self.required_if_distro, "'required_if_distro' parameter required" kwargs["help"] = (kwargs.get("help", "") + "Option is required when distro is " + ", ".join(self.required_if_distro) + ".").strip() - super(DistroContainerValidation, self).__init__(*args, **kwargs) + super(DistroImageValidation, self).__init__(*args, **kwargs) def handle_parse_result(self, ctx, opts, args): current_opt:bool = self.name in opts tgt_distro:str = opts["distro"] for distro_opt in self.required_if_distro: - if distro_opt == tgt_distro: + if distro_opt.casefold() == tgt_distro.casefold(): if current_opt: self.prompt = None else: raise click.UsageError("Missing argument: '" + str(self.name) + "' is required with " + str(distro_opt) + " distro.") - else: - if current_opt: - raise click.UsageError("Invalid argument: '" + str(self.name) + "' is not required with " + tgt_distro + " distro.") - return super(DistroContainerValidation, self).handle_parse_result(ctx, opts, args) + return super(DistroImageValidation, self).handle_parse_result(ctx, opts, args) @click.command() @click.option('--distro', type=click.Choice(sorted(list(DISTROS.keys()) + list(CONTAINER_DISTROS.keys())) + ['*'], case_sensitive=False)) @click.option('--version', required=False, default='') @click.option('--arch', required=False, type=click.Choice(['x86_64', 'aarch64'], case_sensitive=False), default='x86_64') @click.option('--out_fmt', required=False, type=click.Choice(['plain', 'json', 'driverkit'], case_sensitive=False), default='plain') -@click.option('--container', cls=DistroContainerValidation, required_if_distro=["Redhat"]) -def crawl(distro, version='', arch='', out_fmt='', container=''): - res = crawl_kernels(distro, version, arch, container, out_fmt == 'driverkit') +@click.option('--image', cls=DistroImageValidation, required_if_distro=["Redhat"], multiple=True) +def crawl(distro, version='', arch='', out_fmt='', image=''): + res = crawl_kernels(distro, version, arch, image, out_fmt == 'driverkit') out_fmt = str.lower(out_fmt) if out_fmt == 'plain': for dist, ks in res.items(): diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index e2d1733..4210cf9 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -26,6 +26,8 @@ 'Ubuntu': UbuntuMirror, 'Flatcar': FlatcarMirror, + + 'Redhat': RedhatContainer } CONTAINER_DISTROS = { @@ -55,19 +57,20 @@ def crawl_kernels(distro, version, arch, image, to_driverkit): for distname, dist in DISTROS.items(): if distname == distro or distro == "*": - d = dist(arch) - res = d.get_package_tree(version) - if to_driverkit: - ret[distname] = to_driverkit_config(d, res) + if issubclass(dist, repo.ContainerDistro): + if image: + d = dist(image) + res = d.get_kernel_versions() + else: + d = None + res.clear() else: - ret[distname] = res + d = dist(arch) + res = d.get_package_tree(version) - for distname, container in CONTAINER_DISTROS.items(): - if distname == distro: - c = container(image) - res = c.get_kernel_versions() - if to_driverkit: - ret[distname] = to_driverkit_config(c, res) - else: - ret[distname] = res + if d and res: + if to_driverkit: + ret[distname] = to_driverkit_config(d, res) + else: + ret[distname] = res return ret diff --git a/kernel_crawler/container.py b/kernel_crawler/container.py index 2541a57..a46d188 100644 --- a/kernel_crawler/container.py +++ b/kernel_crawler/container.py @@ -4,7 +4,7 @@ def decoded_str(s): if s is None: return '' - return s.decode("utf-8") + return s.partition(b'\n')[0].decode("utf-8") class Container(): def __init__(self, image): @@ -15,7 +15,7 @@ def run_cmd(self, cmd, encoding ="utf-8"): container = client.containers.run(self.image, cmd, detach=True) logs = container.attach(stdout=True, stderr=True, stream=True, logs=True) cmd_output = [] - with click.progressbar(logs, label='Running command \'' + cmd + '\'', item_show_func=decoded_str) as logs: + with click.progressbar(logs, label='[' + self.image + '] Running command \'' + cmd + '\'', item_show_func=decoded_str) as logs: for line in logs: decoded_line = line.decode(encoding) sp = list(filter(None, decoded_line.split("\n"))) diff --git a/kernel_crawler/redhat.py b/kernel_crawler/redhat.py index f8c4737..2144771 100644 --- a/kernel_crawler/redhat.py +++ b/kernel_crawler/redhat.py @@ -1,17 +1,20 @@ from . import repo +from .container import Container import re class RedhatContainer(repo.ContainerDistro): - def __init__(self, image): - super(RedhatContainer, self).__init__(image) + def __init__(self, images): + super(RedhatContainer, self).__init__(images) def get_kernel_versions(self): kernels = {} - cmd_out = super().run_cmd("repoquery --show-duplicates kernel-devel") - for log_line in cmd_out: - m = re.search("(?<=kernel-devel-0:).*", log_line); - if m: - kernels[m.group(0)] = [] + for image in self.images: + c = Container(image) + cmd_out = c.run_cmd("repoquery --show-duplicates kernel-devel") + for log_line in cmd_out: + m = re.search("(?<=kernel-devel-0:).*", log_line); + if m: + kernels[m.group(0)] = [] return kernels def to_driverkit_config(self, release, deps): diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index bd56806..44e9d8a 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -1,5 +1,5 @@ from __future__ import print_function -from . import container +from abc import ABC, abstractmethod import click import sys @@ -59,9 +59,15 @@ def list_repos(self): return repos -class ContainerDistro(container.Container): - def __init__(self, container_name): - super(ContainerDistro, self).__init__(container_name) +class ContainerDistro(ABC): + def __init__(self, images): + self.images = images + @classmethod + def __subclasshook__(cls, other): + hook = getattr(other, 'get_kernel_versions', None) + return callable(hook) + + @abstractmethod def get_kernel_versions(self): - raise NotImplementedError + pass From 0d29a3ceaa46a101aa8bc4608017289fa063ff41 Mon Sep 17 00:00:00 2001 From: John Brydon Date: Fri, 1 Jul 2022 19:10:27 +0100 Subject: [PATCH 130/259] Remove unused container list Signed-off-by: John Brydon --- __init__.py | 4 ++-- kernel_crawler/__init__.py | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/__init__.py b/__init__.py index 8830e73..4942c2e 100644 --- a/__init__.py +++ b/__init__.py @@ -3,7 +3,7 @@ import sys import click -from kernel_crawler import crawl_kernels, DISTROS, CONTAINER_DISTROS +from kernel_crawler import crawl_kernels, DISTROS logger = logging.getLogger(__name__) @@ -47,7 +47,7 @@ def handle_parse_result(self, ctx, opts, args): return super(DistroImageValidation, self).handle_parse_result(ctx, opts, args) @click.command() -@click.option('--distro', type=click.Choice(sorted(list(DISTROS.keys()) + list(CONTAINER_DISTROS.keys())) + ['*'], case_sensitive=False)) +@click.option('--distro', type=click.Choice(sorted(list(DISTROS.keys())) + ['*'], case_sensitive=False)) @click.option('--version', required=False, default='') @click.option('--arch', required=False, type=click.Choice(['x86_64', 'aarch64'], case_sensitive=False), default='x86_64') @click.option('--out_fmt', required=False, type=click.Choice(['plain', 'json', 'driverkit'], case_sensitive=False), default='plain') diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 4210cf9..691c1ea 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -30,10 +30,6 @@ 'Redhat': RedhatContainer } -CONTAINER_DISTROS = { - 'Redhat': RedhatContainer, -} - def to_driverkit_config(d, res): dk_configs = [] # Note, this is not good performance-wise because we are post-processing the list From 0f624af2a0f3a11ae4819c36c35df9dc477a454a Mon Sep 17 00:00:00 2001 From: John Brydon Date: Mon, 4 Jul 2022 17:31:22 +0100 Subject: [PATCH 131/259] replace 'container' with 'image' in readme Signed-off-by: John Brydon --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bbe99ba..9c30022 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Options: --version TEXT --arch [x86_64|aarch64] --out_fmt [plain|json|driverkit] - --container TEXT + --image TEXT --help ``` ## Examples @@ -34,5 +34,5 @@ python __init__.py crawl --distro=* --out_fmt=json * Crawl Redhat kernels (specific to the container supplied), with no-formatted output: ```commandline -python __init__.py crawl --distro=Redhat --container=redhat/ubi8:registered +python __init__.py crawl --distro=Redhat --image=redhat/ubi8:registered ``` \ No newline at end of file From b96684757959f03e40282e3e3a1e165ed79cc499 Mon Sep 17 00:00:00 2001 From: John Brydon Date: Mon, 25 Jul 2022 15:13:37 +0100 Subject: [PATCH 132/259] moved image loop to 'crawl_kernels' Signed-off-by: John Brydon --- kernel_crawler/__init__.py | 18 +++++++++++++----- kernel_crawler/redhat.py | 17 ++++++++--------- kernel_crawler/repo.py | 4 ++-- 3 files changed, 23 insertions(+), 16 deletions(-) diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 691c1ea..4f3f94e 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -48,18 +48,26 @@ def to_driverkit_config(d, res): return dk_configs -def crawl_kernels(distro, version, arch, image, to_driverkit): +def crawl_kernels(distro, version, arch, images, to_driverkit): ret = {} for distname, dist in DISTROS.items(): if distname == distro or distro == "*": + # If the distro requires an image (Redhat only so far), we need to amalgamate + # the kernel versions from the supplied images before choosing the output. if issubclass(dist, repo.ContainerDistro): - if image: - d = dist(image) - res = d.get_kernel_versions() + if images: + kv = {} + for image in images: + d = dist(image) + if len(kv) == 0: + kv = d.get_kernel_versions() + else: + kv.update(d.get_kernel_versions()) + # We should now have a list of all kernel versions for the supplied images + res = kv else: d = None - res.clear() else: d = dist(arch) res = d.get_package_tree(version) diff --git a/kernel_crawler/redhat.py b/kernel_crawler/redhat.py index 2144771..f27fa6b 100644 --- a/kernel_crawler/redhat.py +++ b/kernel_crawler/redhat.py @@ -3,18 +3,17 @@ import re class RedhatContainer(repo.ContainerDistro): - def __init__(self, images): - super(RedhatContainer, self).__init__(images) + def __init__(self, image): + super(RedhatContainer, self).__init__(image) def get_kernel_versions(self): kernels = {} - for image in self.images: - c = Container(image) - cmd_out = c.run_cmd("repoquery --show-duplicates kernel-devel") - for log_line in cmd_out: - m = re.search("(?<=kernel-devel-0:).*", log_line); - if m: - kernels[m.group(0)] = [] + c = Container(self.image) + cmd_out = c.run_cmd("repoquery --show-duplicates kernel-devel") + for log_line in cmd_out: + m = re.search("(?<=kernel-devel-0:).*", log_line); + if m: + kernels[m.group(0)] = [] return kernels def to_driverkit_config(self, release, deps): diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index 44e9d8a..b6a2d0d 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -60,8 +60,8 @@ def list_repos(self): class ContainerDistro(ABC): - def __init__(self, images): - self.images = images + def __init__(self, image): + self.image = image @classmethod def __subclasshook__(cls, other): From 98a27d918d1e8f13ffb517b4b4dad129b0c17fc6 Mon Sep 17 00:00:00 2001 From: John Brydon Date: Mon, 25 Jul 2022 17:05:35 +0100 Subject: [PATCH 133/259] fixed output of container command when buffered Signed-off-by: John Brydon --- kernel_crawler/container.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/kernel_crawler/container.py b/kernel_crawler/container.py index a46d188..aa97771 100644 --- a/kernel_crawler/container.py +++ b/kernel_crawler/container.py @@ -14,10 +14,12 @@ def run_cmd(self, cmd, encoding ="utf-8"): client = docker.from_env() container = client.containers.run(self.image, cmd, detach=True) logs = container.attach(stdout=True, stderr=True, stream=True, logs=True) - cmd_output = [] + # Depending on the command, the output could be buffered so first amalgamate + # into one byte stream so that the outut can be processed correctly. with click.progressbar(logs, label='[' + self.image + '] Running command \'' + cmd + '\'', item_show_func=decoded_str) as logs: + output = b'' for line in logs: - decoded_line = line.decode(encoding) - sp = list(filter(None, decoded_line.split("\n"))) - cmd_output.extend(sp) + output += line + decoded_line = output.decode(encoding) + cmd_output = list(filter(None, decoded_line.split("\n"))) return cmd_output From 2bdcbe391cb8165f3454f641b48767b7a384d05d Mon Sep 17 00:00:00 2001 From: Aldo Lacuku Date: Sun, 24 Jul 2022 11:42:38 +0200 Subject: [PATCH 134/259] update(crawler): add 'kernelconfigdata' attribute to 'DriverKitConfig' class Signed-off-by: Aldo Lacuku --- kernel_crawler/repo.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index b6a2d0d..fe048dd 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -12,15 +12,15 @@ def __str__(self): raise NotImplementedError class DriverKitConfig(object): - def __init__(self, kernelrelease, target, headers, kernelversion=1): + def __init__(self, kernelrelease, target, headers=None, kernelversion=1, kernelconfigdata=None): self.kernelversion = kernelversion self.kernelrelease = kernelrelease self.target = target + if kernelconfigdata != None: + self.kernelconfigdata = kernelconfigdata + if isinstance(headers, list): self.headers = headers - else: - # Fake single-list - self.headers = [headers] def to_s(s): if s is None: From 03b05fe706eb4ad3a81d007ea7398f54509defa2 Mon Sep 17 00:00:00 2001 From: Aldo Lacuku Date: Sun, 24 Jul 2022 11:53:12 +0200 Subject: [PATCH 135/259] new(crawler): add support for minikube distro The crawler supports the last three releases of Minikube and their minor patches. The crawler uses the github repository of Minikube as source to build the kernel configs for Minikube. Signed-off-by: Aldo Lacuku --- kernel_crawler/__init__.py | 3 + kernel_crawler/minikube.py | 139 +++++++++++++++++++++++++++++++++++++ kernel_crawler/repo.py | 3 + 3 files changed, 145 insertions(+) create mode 100644 kernel_crawler/minikube.py diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 4f3f94e..f97a077 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -1,3 +1,4 @@ +from .minikube import MinikubeMirror from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror from .centos import CentosMirror from .fedora import FedoraMirror @@ -26,6 +27,8 @@ 'Ubuntu': UbuntuMirror, 'Flatcar': FlatcarMirror, + + 'Minikube': MinikubeMirror, 'Redhat': RedhatContainer } diff --git a/kernel_crawler/minikube.py b/kernel_crawler/minikube.py new file mode 100644 index 0000000..22a03ec --- /dev/null +++ b/kernel_crawler/minikube.py @@ -0,0 +1,139 @@ +import tempfile +import shutil +import re +import os +import base64 +import sys +from types import NoneType + +from click import progressbar as ProgressBar +from semantic_version import Version as SemVersion +import pygit2 + +from .repo import Distro, DriverKitConfig + + +class ProgressCallback(pygit2.RemoteCallbacks): + def __init__(self): + self.progress_bar_initialized = False + super().__init__() + def transfer_progress(self, stats): + if not self.progress_bar_initialized: + bar = ProgressBar(label='Cloning minikube repository',length=stats.total_objects, file=sys.stderr) + bar.update(stats.indexed_objects) + if stats.indexed_objects == stats.total_objects: + bar.render_finish() + +class MinikubeMirror(Distro): + # dictionary keys used to build the kernel configuration dict. + KERNEL_VERSION = "kernelversion" + KERNEL_RELEASE = "kernelrelease" + DISTRO_TARGET = "target" + BASE_64_CONFIG_DATA = "kernelconfigdata" + + def __init__(self, arch): + mirrors = "https://github.com/kubernetes/minikube.git" + + Distro.__init__(self, mirrors, arch) + + def clone_repo(self, repo_url): + work_dir = tempfile.mkdtemp(prefix="minikube-") + return pygit2.clone_repository(repo_url, work_dir, callbacks=ProgressCallback()) + + def list_repos(self): + return self.clone_repo(self.mirrors) + + def getVersions(self, repo): + re_tags = re.compile('^refs/tags/v(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)$') + + all_versions = [os.path.basename(v).strip('v') for v in repo.references if re_tags.match(v)] + all_versions.sort(key=SemVersion) + + no_patch_versions = list(filter((lambda x: SemVersion(x).patch == 0), all_versions)) + no_patch_versions.sort(key=SemVersion) + + # We only get the last three releases without considering the patch releases. + no_patch_versions = no_patch_versions[-3:] + # Here we are taking the three last releases plus the patch releases if they have any. + # We are just taking all the releases(x.y.z) that are equal or greater than the older release we are considering, + # i.e the older from the last three releases. + # For example, if the last three releases without considering the patches are : 1.24.0, 1.25.0 and 1.26.0 then + # we will consider the three release + all their patch releases. + return [v for v in all_versions if SemVersion(v) >= SemVersion(no_patch_versions[0])] + + def checkout_version(self, minikube_version, repo): + repo.checkout("refs/tags/v" + minikube_version) + + def search_files(self, directory, file_name): + for dirpath, dirnames, files in os.walk(directory): + for name in files : + if name == file_name: + return os.path.join(dirpath, name) + return NoneType + + def extract_kernel_release(self, minikube_version, repo): + # here kernel release is the same a the one given by "uname -r" + file_name = self.get_minikube_config_file_name(minikube_version) + full_path = self.search_files(repo.workdir, file_name) + for line in open(full_path): + if re.search(r'^BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE=', line): + tokens = line.strip().split('=') + return tokens[1].strip('"') + + def encode_base64_defconfig(self, minikube_version, repo): + file_name = self.get_kernel_config_file_name(minikube_version) + full_path = self.search_files(repo.workdir, file_name) + with open(full_path, "rb") as config_file: + return base64.b64encode(config_file.read()).decode() + + def get_kernel_config_file_name(self, minikube_version): + if SemVersion(minikube_version) >= SemVersion("1.26.0"): + return "linux_" + self.arch + "_defconfig" + return "linux_defconfig" + + def get_minikube_config_file_name(self, minikube_version): + if SemVersion(minikube_version) >= SemVersion("1.26.0"): + return "minikube_" + self.arch + "_defconfig" + return "minikube_defconfig" + + def get_package_tree(self, version=''): + repo = self.list_repos() + kernel_configs = {} + minikube_versions = self.getVersions(repo) + + for v in minikube_versions: + bar = ProgressBar(label="Building config for minikube v{}".format(v), length=1, file=sys.stderr) + # minikube has support for aarch64 starting from version 1.26.0. + # versions older than 1.26.0 are just skipped if building for aarch64. + if self.arch == "aarch64" and SemVersion(v) < SemVersion("1.26.0"): + continue + self.checkout_version(v, repo) + # same meaning as the output of "uname -r" + kernel_release = self.extract_kernel_release(v, repo) + # kernelversion is computed as "1_" + minikube version. + # The reason behind that is due to how minikube distributes the iso images. + # It could happen that two different minikube versions use the same kernel release but + # built with a different defconfig file. So having the minikube version in the kernelversion + # makes easier to get the right falco drivers from within a minikube instance. + # same meaning as "uname -v" + kernel_version = "1_" + v + defconfig_base64 = self.encode_base64_defconfig(v, repo) + kernel_configs[v] = { + self.KERNEL_VERSION: kernel_version, + self.KERNEL_RELEASE: kernel_release, + self.DISTRO_TARGET: "minikube", + self.BASE_64_CONFIG_DATA: defconfig_base64, + } + bar.update(1) + bar.render_finish() + + shutil.rmtree(repo.workdir, True) + return kernel_configs + + def to_driverkit_config(self, distro_release, config): + return DriverKitConfig( + config[self.KERNEL_RELEASE], + config[self.DISTRO_TARGET], + None, + config[self.KERNEL_VERSION], + config[self.BASE_64_CONFIG_DATA]) \ No newline at end of file diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index fe048dd..915be07 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -21,6 +21,9 @@ def __init__(self, kernelrelease, target, headers=None, kernelversion=1, kernelc if isinstance(headers, list): self.headers = headers + elif headers != None: + # Fake single-list + self.headers = [headers] def to_s(s): if s is None: From cb7d3526e1433efeb8503b9b54ea58e186081752 Mon Sep 17 00:00:00 2001 From: Aldo Lacuku Date: Sun, 24 Jul 2022 12:07:17 +0200 Subject: [PATCH 136/259] update(crawler): add required packages for minikube distro Signed-off-by: Aldo Lacuku --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 4ad8c71..f80e9ff 100644 --- a/setup.py +++ b/setup.py @@ -15,5 +15,7 @@ 'requests', 'lxml', 'docker', + 'semantic-version', + 'pygit2' ], ) From 1c6bcae6a51f77662676031b5ef1fdc70c3861c3 Mon Sep 17 00:00:00 2001 From: Aldo Lacuku Date: Tue, 26 Jul 2022 16:37:07 +0200 Subject: [PATCH 137/259] update(docs): add minikube to the list of supported distros Signed-off-by: Aldo Lacuku --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c30022..9dc4132 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ python __init__.py crawl --help Usage: __init__.py crawl [OPTIONS] Options: - --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|CentOS|Debian|Fedora|Flatcar|Oracle6|Oracle7|Oracle8|PhotonOS|Redhat|Ubuntu|*] + --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|CentOS|Debian|Fedora|Flatcar|Minikube|Oracle6|Oracle7|Oracle8|PhotonOS|Redhat|Ubuntu|*] --version TEXT --arch [x86_64|aarch64] --out_fmt [plain|json|driverkit] From a1fa909de9ff59782def6815c03da5a40a947998 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Wed, 20 Jul 2022 09:51:14 -0500 Subject: [PATCH 138/259] initial changes to simplify target to ubuntu Signed-off-by: Logan Bond --- kernel_crawler/ubuntu.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/kernel_crawler/ubuntu.py b/kernel_crawler/ubuntu.py index f843193..84b8844 100644 --- a/kernel_crawler/ubuntu.py +++ b/kernel_crawler/ubuntu.py @@ -24,13 +24,9 @@ def to_driverkit_config(self, release, deps): continue d = d.group(0) - target = "ubuntu" + d[7:len(d) - 1] + target = "ubuntu" release = krel + d[7:len(d) - 1] - # Driverkit wants "-generic" for generic ubuntu - if target == "ubuntu": - target += "-generic" - val = dk_configs.get(target) if val is None: headers = [dep] From 6ebd85cc90be3b5e9c069897ba52ebad710bf761 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Wed, 20 Jul 2022 10:53:28 -0500 Subject: [PATCH 139/259] adjusted the regex logic, set a default flavor to generic, and build the release with an fstring Signed-off-by: Logan Bond --- kernel_crawler/ubuntu.py | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/kernel_crawler/ubuntu.py b/kernel_crawler/ubuntu.py index 84b8844..0725f62 100644 --- a/kernel_crawler/ubuntu.py +++ b/kernel_crawler/ubuntu.py @@ -17,15 +17,20 @@ def to_driverkit_config(self, release, deps): dk_configs = {} krel, kver = release.split("/") for dep in deps: - if dep.find("headers") != -1: + if 'headers' in dep: + + # set a default flavor + flavor = 'generic' + # capture the flavor from the string after 'linux-' in the url subdir # example: http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb - d = re.search(r"(\bl/linux(\-.+\/)?\b)", dep) - if d is None: - continue + flavor_capture = re.search(r"^.*l/linux-(.+)/.*$", dep) + + # if capture was successful, set the flavor + if flavor_capture is not None: + flavor = flavor_capture.group(1) # set flavor to the first capture group - d = d.group(0) - target = "ubuntu" - release = krel + d[7:len(d) - 1] + target = 'ubuntu' # driverkit just uses 'ubuntu' + release = f'{krel}-{flavor}' # add flavor to release val = dk_configs.get(target) if val is None: From 421438ea511b11e3927562561ef3c435deeb3af7 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Tue, 26 Jul 2022 10:52:20 -0500 Subject: [PATCH 140/259] fixing python3 support Signed-off-by: Logan Bond --- kernel_crawler/minikube.py | 5 ++--- requirements.txt | 6 +++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/kernel_crawler/minikube.py b/kernel_crawler/minikube.py index 22a03ec..f0ad3f5 100644 --- a/kernel_crawler/minikube.py +++ b/kernel_crawler/minikube.py @@ -4,7 +4,6 @@ import os import base64 import sys -from types import NoneType from click import progressbar as ProgressBar from semantic_version import Version as SemVersion @@ -69,7 +68,7 @@ def search_files(self, directory, file_name): for name in files : if name == file_name: return os.path.join(dirpath, name) - return NoneType + return None def extract_kernel_release(self, minikube_version, repo): # here kernel release is the same a the one given by "uname -r" @@ -136,4 +135,4 @@ def to_driverkit_config(self, distro_release, config): config[self.DISTRO_TARGET], None, config[self.KERNEL_VERSION], - config[self.BASE_64_CONFIG_DATA]) \ No newline at end of file + config[self.BASE_64_CONFIG_DATA]) diff --git a/requirements.txt b/requirements.txt index f746ab2..9332ffb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,6 @@ lxml -click \ No newline at end of file +click +requests +docker +semantic-version +pygit2 From bb9fcb257611637168879d7e0705ee5777644347 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 29 Jul 2022 10:31:22 +0200 Subject: [PATCH 141/259] new(kernel_crawler): added centos9 stream support. Moreover, updated README with better informations. Signed-off-by: Federico Di Pierro --- README.md | 6 ++++++ kernel_crawler/centos.py | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9dc4132..e46e3d3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # Falcosecurity kernel-crawler +It is a tool used to crawl supported kernels by multiple distros, and generate a [driverkit](https://github.com/falcosecurity/driverkit)-like config json. +Output json can be found, for each supported architecture, under [kernels](/kernels) folder. + +A weekly [prow job](https://github.com/falcosecurity/test-infra/blob/master/config/jobs/update-kernels/update-kernels.yaml) will open a PR on this repo to update the json. +As soon as the PR is merged and the json updated, another [prow job](https://github.com/falcosecurity/test-infra/blob/master/config/jobs/update-dbg/update-dbg.yaml) will create a PR on [test-infra](https://github.com/falcosecurity/test-infra) to generate the new Driverkit configs from the updated json. + Helper text and options: ```commandline python __init__.py crawl --help diff --git a/kernel_crawler/centos.py b/kernel_crawler/centos.py index 13589a9..737b346 100644 --- a/kernel_crawler/centos.py +++ b/kernel_crawler/centos.py @@ -4,10 +4,11 @@ def v7_only(ver): return ver.startswith('7') - def v8_only(ver): return ver.startswith('8') +def v9_only(ver): + return ver.startswith('9') def v6_or_v7(ver): return ver.startswith('6') or ver.startswith('7') @@ -25,6 +26,9 @@ def __init__(self, arch): rpm.RpmMirror('http://archive.kernel.org/centos/', 'os/' + arch + '/', v6_or_v7), rpm.RpmMirror('http://archive.kernel.org/centos/', 'updates/' + arch + '/', v6_or_v7), rpm.RpmMirror('http://archive.kernel.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), + # It seems like centos stream uses /AppStream for kernel-devel, instead of BaseOS + rpm.RpmMirror('http://mirror.stream.centos.org/', 'BaseOS/' + arch + '/os/', v9_only), + rpm.RpmMirror('http://mirror.stream.centos.org/', 'AppStream/' + arch + '/os/', v9_only) ] super(CentosMirror, self).__init__(mirrors, arch) From 7a7a40198d08617024648daf9142aa852b164242 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 29 Jul 2022 10:32:33 +0200 Subject: [PATCH 142/259] chore(docs): updated kernels/README. Signed-off-by: Federico Di Pierro --- kernels/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernels/README.md b/kernels/README.md index 42c8793..2414bf4 100644 --- a/kernels/README.md +++ b/kernels/README.md @@ -1 +1 @@ -Here a weekly GH action will store current list of supported kernels. +Home of the crawled kernels for the supported distros. From 934d5e2fda7c5801b4a20c9b13fa2c27b0e768f9 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 1 Aug 2022 09:00:16 +0200 Subject: [PATCH 143/259] fix(crawler): made click.Choice options actually case sensitive. Signed-off-by: Federico Di Pierro --- __init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/__init__.py b/__init__.py index 4942c2e..0adfd53 100644 --- a/__init__.py +++ b/__init__.py @@ -47,10 +47,10 @@ def handle_parse_result(self, ctx, opts, args): return super(DistroImageValidation, self).handle_parse_result(ctx, opts, args) @click.command() -@click.option('--distro', type=click.Choice(sorted(list(DISTROS.keys())) + ['*'], case_sensitive=False)) +@click.option('--distro', type=click.Choice(sorted(list(DISTROS.keys())) + ['*'], case_sensitive=True)) @click.option('--version', required=False, default='') -@click.option('--arch', required=False, type=click.Choice(['x86_64', 'aarch64'], case_sensitive=False), default='x86_64') -@click.option('--out_fmt', required=False, type=click.Choice(['plain', 'json', 'driverkit'], case_sensitive=False), default='plain') +@click.option('--arch', required=False, type=click.Choice(['x86_64', 'aarch64'], case_sensitive=True), default='x86_64') +@click.option('--out_fmt', required=False, type=click.Choice(['plain', 'json', 'driverkit'], case_sensitive=True), default='plain') @click.option('--image', cls=DistroImageValidation, required_if_distro=["Redhat"], multiple=True) def crawl(distro, version='', arch='', out_fmt='', image=''): res = crawl_kernels(distro, version, arch, image, out_fmt == 'driverkit') From 31a9eb341204652713782394f49edeaf7e7b7e6d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 26 Aug 2022 10:59:51 +0200 Subject: [PATCH 144/259] fix(kernel_crawler): fixed ubuntu targets: actually use real ubuntu flavor as target. Note that kernel-crawler output wants to be as agnostic as possible from driverkit/test-infra internal representation/implementation. Therefore, we should adhere to correct ubuntu flavor as a target. It is up to the consumers to fix data for their usage. Signed-off-by: Federico Di Pierro --- kernel_crawler/ubuntu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel_crawler/ubuntu.py b/kernel_crawler/ubuntu.py index 0725f62..ca35160 100644 --- a/kernel_crawler/ubuntu.py +++ b/kernel_crawler/ubuntu.py @@ -29,7 +29,7 @@ def to_driverkit_config(self, release, deps): if flavor_capture is not None: flavor = flavor_capture.group(1) # set flavor to the first capture group - target = 'ubuntu' # driverkit just uses 'ubuntu' + target = f'ubuntu-{flavor}' # expose the correct ubuntu flavor release = f'{krel}-{flavor}' # add flavor to release val = dk_configs.get(target) From 2794967dec74ae473de6e4b99541896a15763651 Mon Sep 17 00:00:00 2001 From: poiana <51138685+poiana@users.noreply.github.com> Date: Mon, 29 Aug 2022 09:08:10 +0000 Subject: [PATCH 145/259] update(kernels): update kernel json lists. Signed-off-by: poiana <51138685+poiana@users.noreply.github.com> --- kernels/aarch64/list.json | 9442 ++++++----- kernels/x86_64/list.json | 31013 ++++++++++++++++++------------------ 2 files changed, 19757 insertions(+), 20698 deletions(-) diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json index 7b28341..177bdb2 100644 --- a/kernels/aarch64/list.json +++ b/kernels/aarch64/list.json @@ -1,340 +1,339 @@ { - "AmazonLinux": [], "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.aarch64", + "kernelrelease": "4.14.238-182.421.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.aarch64", + "kernelrelease": "4.14.192-147.314.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.aarch64", + "kernelrelease": "4.14.241-184.433.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.aarch64", + "kernelrelease": "4.14.273-207.502.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.aarch64", + "kernelrelease": "4.14.143-118.123.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.aarch64", + "kernelrelease": "4.14.252-195.483.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.aarch64", + "kernelrelease": "4.14.177-139.253.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.aarch64", + "kernelrelease": "4.14.290-217.505.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/3a56c8ae4fdfa64dbabbbe1e936d4a4144073ee52f51676e447120ead890ce7b/kernel-devel-4.14.290-217.505.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.aarch64", + "kernelrelease": "4.14.173-137.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.aarch64", + "kernelrelease": "4.14.198-152.320.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.aarch64", + "kernelrelease": "4.14.106-97.85.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.aarch64", + "kernelrelease": "4.14.128-112.105.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.aarch64", + "kernelrelease": "4.14.133-113.105.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.aarch64", + "kernelrelease": "4.14.181-140.257.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.aarch64", + "kernelrelease": "4.14.146-119.123.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.aarch64", + "kernelrelease": "4.14.232-177.418.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.aarch64", + "kernelrelease": "4.14.146-120.181.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.aarch64", + "kernelrelease": "4.14.256-197.484.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.aarch64", + "kernelrelease": "4.14.225-168.357.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.aarch64", + "kernelrelease": "4.14.121-109.96.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.aarch64", + "kernelrelease": "4.14.77-80.57.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.aarch64", + "kernelrelease": "4.14.231-173.361.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.aarch64", + "kernelrelease": "4.14.97-90.72.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.aarch64", + "kernelrelease": "4.14.268-205.500.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.aarch64", + "kernelrelease": "4.14.77-81.59.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.aarch64", + "kernelrelease": "4.14.200-155.322.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.aarch64", + "kernelrelease": "4.14.114-103.97.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.aarch64", + "kernelrelease": "4.14.123-111.109.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.aarch64", + "kernelrelease": "4.14.231-173.360.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.aarch64", + "kernelrelease": "4.14.177-139.254.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.aarch64", + "kernelrelease": "4.14.109-99.92.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.aarch64", + "kernelrelease": "4.14.165-131.185.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.aarch64", + "kernelrelease": "4.14.94-89.73.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.aarch64", + "kernelrelease": "4.14.165-133.209.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.aarch64", + "kernelrelease": "4.14.287-215.504.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f28942d8c87f43ead48e60083711a0778eed1e31eb8cb7b4db6cd8f5aa98dc50/kernel-devel-4.14.287-215.504.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.aarch64", + "kernelrelease": "4.14.101-91.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.aarch64", + "kernelrelease": "4.14.88-88.73.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.aarch64", + "kernelrelease": "4.14.138-114.102.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.aarch64", + "kernelrelease": "4.14.181-142.260.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.aarch64", + "kernelrelease": "4.14.248-189.473.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.aarch64", + "kernelrelease": "4.14.262-200.489.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.aarch64", + "kernelrelease": "4.14.219-164.354.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" ] }, { @@ -342,255 +341,255 @@ "kernelrelease": "4.14.225-169.362.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.aarch64", + "kernelrelease": "4.14.203-156.332.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.aarch64", + "kernelrelease": "4.14.154-128.181.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.aarch64", + "kernelrelease": "4.14.158-129.185.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.aarch64", + "kernelrelease": "4.14.275-207.503.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.aarch64", + "kernelrelease": "4.14.77-86.82.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.aarch64", + "kernelrelease": "4.14.88-88.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.aarch64", + "kernelrelease": "4.14.276-211.499.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.aarch64", + "kernelrelease": "4.14.281-212.502.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/2603843a89547a5efb5c01783df4c019a28d484dd8221e92836d5377cee0d246/kernel-devel-4.14.281-212.502.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.aarch64", + "kernelrelease": "4.14.152-124.171.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.aarch64", + "kernelrelease": "4.14.238-182.422.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.aarch64", + "kernelrelease": "4.14.243-185.433.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.aarch64", + "kernelrelease": "4.14.171-136.231.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.aarch64", + "kernelrelease": "4.14.133-113.112.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.aarch64", + "kernelrelease": "4.14.209-160.335.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.aarch64", + "kernelrelease": "4.14.186-146.268.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.aarch64", + "kernelrelease": "4.14.214-160.339.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.aarch64", + "kernelrelease": "4.14.209-160.339.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.aarch64", + "kernelrelease": "4.14.232-176.381.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.aarch64", + "kernelrelease": "4.14.104-95.84.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.aarch64", + "kernelrelease": "4.14.193-149.317.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.aarch64", + "kernelrelease": "4.14.285-215.501.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7cf24663ef5c83290d818e6dc1913308d1801cb50053788661205deae0c5fa5f/kernel-devel-4.14.285-215.501.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.281-212.502.amzn2.aarch64", + "kernelrelease": "4.14.173-137.228.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/2603843a89547a5efb5c01783df4c019a28d484dd8221e92836d5377cee0d246/kernel-devel-4.14.281-212.502.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.aarch64", + "kernelrelease": "4.14.152-127.182.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.aarch64", + "kernelrelease": "4.14.219-161.340.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.aarch64", + "kernelrelease": "4.14.252-195.481.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.aarch64", + "kernelrelease": "4.14.246-187.474.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.aarch64", + "kernelrelease": "4.14.114-105.126.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.aarch64", + "kernelrelease": "5.10.35-31.135.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.109-104.500.amzn2.aarch64", + "kernelrelease": "5.10.135-122.509.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/57ef3deb0c4479e0b7fe577a241c606f849a21feedf9667f948ff489f99ae2d9/kernel-devel-5.10.109-104.500.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/3c57e5026ba579f576055871e4b9ae943cfe14434e2efb4ef5186695baddd4bf/kernel-devel-5.10.135-122.509.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.aarch64", + "kernelrelease": "5.10.29-27.126.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.112-108.499.amzn2.aarch64", + "kernelrelease": "5.10.126-117.518.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/7e8f971b1fba0eae384a4c46840311122e0d27ae6d5c29443762e690d08e87b1/kernel-devel-5.10.112-108.499.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/fa3fec9b7aac1e90dd310392064b76b0fb51b007c2776c26a03b9476e621be7d/kernel-devel-5.10.126-117.518.amzn2.aarch64.rpm" ] }, { @@ -598,23 +597,23 @@ "kernelrelease": "5.10.75-79.358.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.aarch64", + "kernelrelease": "5.10.96-90.460.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.aarch64", + "kernelrelease": "5.10.62-55.141.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" ] }, { @@ -622,363 +621,435 @@ "kernelrelease": "5.10.93-87.444.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.aarch64", + "kernelrelease": "5.10.50-44.131.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.aarch64", + "kernelrelease": "5.10.109-104.500.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/57ef3deb0c4479e0b7fe577a241c606f849a21feedf9667f948ff489f99ae2d9/kernel-devel-5.10.109-104.500.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.aarch64", + "kernelrelease": "5.10.29-27.128.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.aarch64", + "kernelrelease": "5.10.102-99.473.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.aarch64", + "kernelrelease": "5.10.106-102.504.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.aarch64", + "kernelrelease": "5.10.50-44.132.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.118-111.515.amzn2.aarch64", + "kernelrelease": "5.10.47-39.130.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/dd46c37ca2f0977b67d8c444306d2e7d0ffa49ff18514c659dae8a3f8dd1c225/kernel-devel-5.10.118-111.515.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.aarch64", + "kernelrelease": "5.10.68-62.173.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.aarch64", + "kernelrelease": "5.10.118-111.515.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/dd46c37ca2f0977b67d8c444306d2e7d0ffa49ff18514c659dae8a3f8dd1c225/kernel-devel-5.10.118-111.515.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.aarch64", + "kernelrelease": "5.10.130-118.517.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/7aa11bfdc99317f841d777f4edf664e19713241cc4a4ed6980f625fb6b746321/kernel-devel-5.10.130-118.517.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.196-108.356.amzn2.aarch64", + "kernelrelease": "5.10.59-52.142.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4cd4c13fe3579198e4fd22f3f67071d32ac0e049265569eea729d066efb9f196/kernel-devel-5.4.196-108.356.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.aarch64", + "kernelrelease": "5.10.112-108.499.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/7e8f971b1fba0eae384a4c46840311122e0d27ae6d5c29443762e690d08e87b1/kernel-devel-5.10.112-108.499.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.aarch64", + "kernelrelease": "5.10.82-83.359.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.aarch64", + "kernelrelease": "5.4.186-102.354.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.aarch64", + "kernelrelease": "5.4.209-116.363.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/e85d360af253bf6d425f0d6dbf480dd31e031064774d9dd2c4e8184699c730cb/kernel-devel-5.4.209-116.363.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.aarch64", + "kernelrelease": "5.4.176-91.338.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.aarch64", + "kernelrelease": "5.4.196-108.356.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4cd4c13fe3579198e4fd22f3f67071d32ac0e049265569eea729d066efb9f196/kernel-devel-5.4.196-108.356.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.aarch64", + "kernelrelease": "5.4.80-40.140.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.aarch64", + "kernelrelease": "5.4.46-19.75.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.aarch64", + "kernelrelease": "5.4.38-17.76.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.aarch64", + "kernelrelease": "5.4.117-58.216.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.189.amzn2.aarch64", + "kernelrelease": "5.4.74-36.135.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.aarch64", + "kernelrelease": "5.4.110-54.182.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.aarch64", + "kernelrelease": "5.4.188-104.359.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/a479c59221509ff906755d5afcc71d323d91d3c67834c8e2e40ccc0c33d368eb/kernel-devel-5.4.188-104.359.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.188-104.359.amzn2.aarch64", + "kernelrelease": "5.4.95-42.163.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/a479c59221509ff906755d5afcc71d323d91d3c67834c8e2e40ccc0c33d368eb/kernel-devel-5.4.188-104.359.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.38-17.76.amzn2.aarch64", + "kernelrelease": "5.4.58-27.104.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.aarch64", + "kernelrelease": "5.4.129-62.227.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.aarch64", + "kernelrelease": "5.4.201-111.359.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/bf5b52f23977ea7464e8c0e7cd3fd72925de26eb11b3a9ca66735cad279e4764/kernel-devel-5.4.201-111.359.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.aarch64", + "kernelrelease": "5.4.110-54.189.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.aarch64", + "kernelrelease": "5.4.204-113.362.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/fa9cf9d2036f9a94dcb8b3e2d5f29e6c3c738010bcfd336069cea38444a583e8/kernel-devel-5.4.204-113.362.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.aarch64", + "kernelrelease": "5.4.20-12.75.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.aarch64", + "kernelrelease": "5.4.68-34.125.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.aarch64", + "kernelrelease": "5.4.91-41.139.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.aarch64", + "kernelrelease": "5.4.172-90.336.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.aarch64", + "kernelrelease": "5.4.129-63.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.190-107.353.amzn2.aarch64", + "kernelrelease": "5.4.141-67.229.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/44b056fde8b6a4ff48b585dd4d0b6fb0655f2883eade7bf8331d08b95f7d20f2/kernel-devel-5.4.190-107.353.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.aarch64", + "kernelrelease": "5.4.50-25.83.amzn2.aarch64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm" ] - } - ], - "AmazonLinux2022": [ + }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2022.aarch64", - "target": "amazonlinux2022", + "kernelrelease": "5.4.181-99.354.amzn2.aarch64", + "target": "amazonlinux2", "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/2a2b9b6f424c1d6e1a8b5ec3ffab0eab03b5a82003a0386d89911ddbab5ac374/kernel-devel-5.10.96-90.460.amzn2022.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.75-82.359.amzn2022.aarch64", - "target": "amazonlinux2022", + "kernelrelease": "5.4.162-86.275.amzn2.aarch64", + "target": "amazonlinux2", "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/440a6228082d68b5e322f6a4d372b09207a8f4b22eb133cf08d3bbcd2581cd5d/kernel-devel-5.10.75-82.359.amzn2022.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.15.24-13.97.amzn2022.aarch64", - "target": "amazonlinux2022", + "kernelrelease": "5.4.105-48.177.amzn2.aarch64", + "target": "amazonlinux2", "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/c0d2623a67a9e286e094a66da07cd61b1b3292fecb961e8882215cb38bdcf066/kernel-devel-5.15.24-13.97.amzn2022.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.15.23-11.98.amzn2022.aarch64", - "target": "amazonlinux2022", + "kernelrelease": "5.4.46-23.77.amzn2.aarch64", + "target": "amazonlinux2", "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/842a809c835f3519b4f40ae8039677952763438525e2f0f557ca52120501258c/kernel-devel-5.15.23-11.98.amzn2022.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.15.25-14.106.amzn2022.aarch64", - "target": "amazonlinux2022", + "kernelrelease": "5.4.156-83.273.amzn2.aarch64", + "target": "amazonlinux2", "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/869961ff26a7ec258044368a20c802dfd57aabbcc3f0923322fff3342a6d2cc8/kernel-devel-5.15.25-14.106.amzn2022.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm" ] - } - ], - "CentOS": [ + }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.1.2.el8_0.aarch64", - "target": "centos", + "kernelrelease": "5.4.190-107.353.amzn2.aarch64", + "target": "amazonlinux2", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/44b056fde8b6a4ff48b585dd4d0b6fb0655f2883eade7bf8331d08b95f7d20f2/kernel-devel-5.4.190-107.353.amzn2.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.1.el8_0.aarch64", - "target": "centos", + "kernelrelease": "5.4.144-69.257.amzn2.aarch64", + "target": "amazonlinux2", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.aarch64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.58-32.125.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.149-73.259.amzn2.aarch64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" + ] + } + ], + "AmazonLinux2022": [ + { + "kernelversion": 1, + "kernelrelease": "5.10.96-90.460.amzn2022.aarch64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/2a2b9b6f424c1d6e1a8b5ec3ffab0eab03b5a82003a0386d89911ddbab5ac374/kernel-devel-5.10.96-90.460.amzn2022.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.75-82.359.amzn2022.aarch64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/440a6228082d68b5e322f6a4d372b09207a8f4b22eb133cf08d3bbcd2581cd5d/kernel-devel-5.10.75-82.359.amzn2022.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.24-13.97.amzn2022.aarch64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/c0d2623a67a9e286e094a66da07cd61b1b3292fecb961e8882215cb38bdcf066/kernel-devel-5.15.24-13.97.amzn2022.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.23-11.98.amzn2022.aarch64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/842a809c835f3519b4f40ae8039677952763438525e2f0f557ca52120501258c/kernel-devel-5.15.23-11.98.amzn2022.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.15.25-14.106.amzn2022.aarch64", + "target": "amazonlinux2022", + "headers": [ + "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/869961ff26a7ec258044368a20c802dfd57aabbcc3f0923322fff3342a6d2cc8/kernel-devel-5.15.25-14.106.amzn2022.aarch64.rpm" + ] + } + ], + "CentOS": [ + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.1.2.el8_0.aarch64", + "target": "centos", + "headers": [ + "http://archive.kernel.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-80.11.1.el8_0.aarch64", + "target": "centos", + "headers": [ + "http://vault.centos.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.aarch64.rpm" ] }, { @@ -986,7 +1057,7 @@ "kernelrelease": "4.18.0-80.11.2.el8_0.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.aarch64.rpm" + "http://archive.kernel.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.aarch64.rpm" ] }, { @@ -994,7 +1065,7 @@ "kernelrelease": "4.18.0-80.4.2.el8_0.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.aarch64.rpm" + "http://vault.centos.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.aarch64.rpm" ] }, { @@ -1002,7 +1073,7 @@ "kernelrelease": "4.18.0-80.7.1.el8_0.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.aarch64.rpm" + "http://vault.centos.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.aarch64.rpm" ] }, { @@ -1010,7 +1081,7 @@ "kernelrelease": "4.18.0-80.7.2.el8_0.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.aarch64.rpm" + "http://vault.centos.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.aarch64.rpm" ] }, { @@ -1018,7 +1089,7 @@ "kernelrelease": "4.18.0-80.el8.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.el8.aarch64.rpm" + "http://archive.kernel.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.el8.aarch64.rpm" ] }, { @@ -1026,7 +1097,7 @@ "kernelrelease": "4.18.0-147.8.1.el8_1.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.aarch64.rpm" + "http://archive.kernel.org/centos/8.1.1911/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.aarch64.rpm" ] }, { @@ -1034,7 +1105,7 @@ "kernelrelease": "4.18.0-193.28.1.el8_2.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.aarch64.rpm" + "http://archive.kernel.org/centos/8.2.2004/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.aarch64.rpm" ] }, { @@ -1042,7 +1113,7 @@ "kernelrelease": "4.18.0-240.22.1.el8_3.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.aarch64.rpm" + "http://archive.kernel.org/centos/8.3.2011/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.aarch64.rpm" ] }, { @@ -1050,7 +1121,7 @@ "kernelrelease": "4.18.0-305.10.2.el8_4.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.aarch64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.aarch64.rpm" ] }, { @@ -1058,7 +1129,7 @@ "kernelrelease": "4.18.0-305.12.1.el8_4.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.aarch64.rpm" + "http://vault.centos.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.aarch64.rpm" ] }, { @@ -1066,7 +1137,7 @@ "kernelrelease": "4.18.0-305.17.1.el8_4.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.aarch64.rpm" + "http://vault.centos.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.aarch64.rpm" ] }, { @@ -1074,7 +1145,7 @@ "kernelrelease": "4.18.0-305.19.1.el8_4.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.aarch64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.aarch64.rpm" ] }, { @@ -1082,7 +1153,7 @@ "kernelrelease": "4.18.0-305.25.1.el8_4.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.aarch64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.aarch64.rpm" ] }, { @@ -1090,7 +1161,7 @@ "kernelrelease": "4.18.0-305.3.1.el8.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.aarch64.rpm" + "http://vault.centos.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.aarch64.rpm" ] }, { @@ -1098,7 +1169,7 @@ "kernelrelease": "4.18.0-305.7.1.el8_4.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.aarch64.rpm" + "http://vault.centos.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.aarch64.rpm" ] }, { @@ -1106,7 +1177,7 @@ "kernelrelease": "4.18.0-348.2.1.el8_5.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.aarch64.rpm" + "http://vault.centos.org/centos/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.aarch64.rpm" ] }, { @@ -1114,7 +1185,7 @@ "kernelrelease": "4.18.0-348.7.1.el8_5.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.aarch64.rpm" + "http://vault.centos.org/centos/8/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.aarch64.rpm" ] }, { @@ -1122,7 +1193,47 @@ "kernelrelease": "4.18.0-348.el8.aarch64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.el8.aarch64.rpm" + "http://vault.centos.org/centos/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.el8.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.0-130.el9.aarch64", + "target": "centos", + "headers": [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-130.el9.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.0-134.el9.aarch64", + "target": "centos", + "headers": [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-134.el9.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.0-142.el9.aarch64", + "target": "centos", + "headers": [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-142.el9.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.0-145.el9.aarch64", + "target": "centos", + "headers": [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-145.el9.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.0-148.el9.aarch64", + "target": "centos", + "headers": [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-148.el9.aarch64.rpm" ] } ], @@ -1161,33 +1272,22 @@ }, { "kernelversion": 1, - "kernelrelease": "5.18.9-100.fc35.aarch64", + "kernelrelease": "5.18.19-100.fc35.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.18.9-100.fc35.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.18.19-100.fc35.aarch64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.18.9-200.fc36.aarch64", + "kernelrelease": "5.19.4-200.fc36.aarch64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.18.9-200.fc36.aarch64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.19.4-200.fc36.aarch64.rpm" ] } ], - "Oracle6": [], - "Oracle7": [], - "Oracle8": [], "PhotonOS": [ - { - "kernelversion": 1, - "kernelrelease": "1.3.0-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/Linux-PAM-devel-1.3.0-1.ph3.aarch64.rpm" - ] - }, { "kernelversion": 1, "kernelrelease": "4.19.15-2.ph3.aarch64", @@ -1948,6 +2048,38 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.245-1.ph3.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-10.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-10.ph3.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-11.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-11.ph3.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-12.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-12.ph3.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-13.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-13.ph3.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.247-2.ph3.aarch64", @@ -1972,6 +2104,46 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-4.ph3.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-5.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-5.ph3.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-6.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-6.ph3.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-7.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-7.ph3.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-8.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-8.ph3.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.247-9.ph3.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-9.ph3.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.19.29-1.ph3.aarch64", @@ -2188,22 +2360,6 @@ "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-6.ph3.aarch64.rpm" ] }, - { - "kernelversion": 1, - "kernelrelease": "1.4.0-3.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-3.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1.4.0-4.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-4.ph4.aarch64.rpm" - ] - }, { "kernelversion": 1, "kernelrelease": "5.10.103-1.ph4.aarch64", @@ -2268,6 +2424,38 @@ "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-1.ph4.aarch64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-11.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-11.ph4.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-12.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-12.ph4.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-13.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-13.ph4.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-14.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-14.ph4.aarch64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "5.10.118-2.ph4.aarch64", @@ -2281,7 +2469,39 @@ "kernelrelease": "5.10.118-3.ph4.aarch64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.118-3.ph4.aarch64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-3.ph4.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-4.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-4.ph4.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-5.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-5.ph4.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.118-6.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-6.ph4.aarch64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.132-1.ph4.aarch64", + "target": "photonOS", + "headers": [ + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.132-1.ph4.aarch64.rpm" ] }, { @@ -2564,14 +2784,6 @@ "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-5.ph4.aarch64.rpm" ] }, - { - "kernelversion": 1, - "kernelrelease": "1.4.0-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/Linux-PAM-devel-1.4.0-2.ph4.aarch64.rpm" - ] - }, { "kernelversion": 1, "kernelrelease": "5.10.4-16.ph4.aarch64", @@ -2584,28 +2796,28 @@ "Debian": [ { "kernelversion": 1, - "kernelrelease": "5.18.5-1-arm64", + "kernelrelease": "5.18.16-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-arm64_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-arm64_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-arm64_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-common-rt_5.18.16-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-rt-arm64_5.18.16-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-common_5.18.16-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-cloud-arm64_5.18.16-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-arm64_5.18.16-1_arm64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.120-1-arm64", + "kernelrelease": "5.10.136-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-cloud-arm64_5.10.136-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-common_5.10.136-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-arm64_5.10.136-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-rt-arm64_5.10.136-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-common-rt_5.10.136-1_all.deb" ] }, { @@ -2613,74 +2825,86 @@ "kernelrelease": "5.18.2-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-arm64_5.18.2-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-arm64_5.18.2-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-arm64_5.18.2-1~bpo11+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-arm64_5.18.2-1~bpo11+1_arm64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.113-1-arm64", + "kernelrelease": "5.18.14-1~bpo11+1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-common-rt_5.18.14-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-arm64_5.18.14-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-rt-arm64_5.18.14-1~bpo11+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-common_5.18.14-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-cloud-arm64_5.18.14-1~bpo11+1_arm64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.127-1-arm64", + "kernelrelease": "5.10.127-2-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-cloud-arm64_5.10.127-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-common_5.10.127-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-rt-arm64_5.10.127-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-arm64_5.10.127-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-common-rt_5.10.127-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-cloud-arm64_5.10.127-2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-rt-arm64_5.10.127-2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-common_5.10.127-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-arm64_5.10.127-2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-common-rt_5.10.127-2_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.84-1-arm64", + "kernelrelease": "5.10.106-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-arm64_5.10.84-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-arm64_5.10.84-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-arm64_5.10.84-1_arm64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-1-arm64", + "kernelrelease": "5.10.120-1~bpo10+1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-common-rt_5.10.120-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-arm64_5.10.120-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-common_5.10.120-1~bpo10+1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-rt-arm64_5.10.120-1~bpo10+1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-cloud-arm64_5.10.120-1~bpo10+1_arm64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.208-1-arm64", + "kernelrelease": "4.19.249-2-arm64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-rt-arm64_4.19.249-2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-arm64_4.19.249-2_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common_4.19.249-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common-rt_4.19.249-2_all.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.208-1-arm64", + "target": "debian", + "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb" ] @@ -2691,23 +2915,23 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.19~rc4-1~exp1-arm64", + "kernelrelease": "5.19-1~exp1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-rt-arm64_5.19~rc4-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-common-rt_5.19~rc4-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-arm64_5.19~rc4-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.19_5.19~rc4-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-cloud-arm64_5.19~rc4-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-common_5.19~rc4-1~exp1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-common-rt_5.19-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-common_5.19-1~exp1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-cloud-arm64_5.19-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-rt-arm64_5.19-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-arm64_5.19-1~exp1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.19_5.19-1~exp1_arm64.deb" ] }, { @@ -2715,10 +2939,10 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb" ] }, @@ -2727,8 +2951,8 @@ "kernelrelease": "4.9.228-1-arm64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb" ] }, @@ -2737,36 +2961,50 @@ "kernelrelease": "5.10.103-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.232-1-arm64", + "kernelrelease": "5.10.113-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.249-2-arm64", + "kernelrelease": "5.10.120-1-arm64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-arm64_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-arm64_5.10.120-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-1-arm64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-rt-arm64_4.19.249-2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common_4.19.249-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common-rt_4.19.249-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-arm64_4.19.249-2_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb" ] }, { @@ -2774,9 +3012,9 @@ "kernelrelease": "4.9.303-1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" ] }, { @@ -2784,9 +3022,9 @@ "kernelrelease": "4.9.320-2-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-arm64_4.9.320-2_arm64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common_4.9.320-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-arm64_4.9.320-2_arm64.deb" ] }, { @@ -2794,1602 +3032,1368 @@ "kernelrelease": "4.19.232-1~deb9u1-arm64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb" ] } ], "Ubuntu": [ { - "kernelversion": "120", - "kernelrelease": "4.15.0-1113-aws", - "target": "ubuntu-aws", + "kernelversion": "146", + "kernelrelease": "4.15.0-1136-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1136_4.15.0-1136.146_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1136-snapdragon_4.15.0-1136.146_arm64.deb" ] }, { - "kernelversion": "123", - "kernelrelease": "4.15.0-1116-aws", + "kernelversion": "151", + "kernelrelease": "4.15.0-1140-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1140-aws_4.15.0-1140.151_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1140_4.15.0-1140.151_all.deb" ] }, { - "kernelversion": "124", - "kernelrelease": "4.15.0-1117-aws", - "target": "ubuntu-aws", + "kernelversion": "203", + "kernelrelease": "4.15.0-192-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-192_4.15.0-192.203_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-192-generic_4.15.0-192.203_arm64.deb" ] }, { - "kernelversion": "128", - "kernelrelease": "4.15.0-1119-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "31", + "kernelrelease": "5.0.0-1028-aws-5.0", + "target": "ubuntu-aws-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" ] }, { - "kernelversion": "128", - "kernelrelease": "4.15.0-1120-aws", - "target": "ubuntu-aws", + "kernelversion": "76~18.04.3", + "kernelrelease": "5.4.0-1071-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" ] }, { - "kernelversion": "129", - "kernelrelease": "4.15.0-1120-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "83~18.04.1", + "kernelrelease": "5.4.0-1077-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1077-gke_5.4.0-1077.83~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1077_5.4.0-1077.83~18.04.1_arm64.deb" ] }, { - "kernelversion": "129", - "kernelrelease": "4.15.0-1121-aws", - "target": "ubuntu-aws", + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1078-gke_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb" ] }, { - "kernelversion": "130", - "kernelrelease": "4.15.0-1121-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1121-snapdragon_4.15.0-1121.130_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1121_4.15.0-1121.130_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" ] }, { - "kernelversion": "132", - "kernelrelease": "4.15.0-1123-aws", - "target": "ubuntu-aws", + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb" ] }, { - "kernelversion": "132", - "kernelrelease": "4.15.0-1123-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "90~18.04.1", + "kernelrelease": "5.4.0-1082-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1082_5.4.0-1082.90~18.04.1_all.deb" ] }, { - "kernelversion": "133", - "kernelrelease": "4.15.0-1124-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-1084-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1124-snapdragon_4.15.0-1124.133_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1124_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1084-aws_5.4.0-1084.91~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1084_5.4.0-1084.91~18.04.1_all.deb" ] }, { - "kernelversion": "133", - "kernelrelease": "4.15.0-1124-aws", - "target": "ubuntu-aws", + "kernelversion": "95~18.04.1", + "kernelrelease": "5.4.0-1087-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1087_5.4.0-1087.95~18.04.1_arm64.deb" ] }, { - "kernelversion": "134", - "kernelrelease": "4.15.0-1125-aws", - "target": "ubuntu-aws", + "kernelversion": "95~18.04.1", + "kernelrelease": "5.4.0-1090-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1090_5.4.0-1090.95~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1090-azure_5.4.0-1090.95~18.04.1_arm64.deb" ] }, { - "kernelversion": "134", - "kernelrelease": "4.15.0-1125-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "141~18.04.1", + "kernelrelease": "5.4.0-125-hwe-5.4", + "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-generic_5.4.0-125.141~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-125_5.4.0-125.141~18.04.1_all.deb" ] }, { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-aws", - "target": "ubuntu-aws", + "kernelversion": "102", + "kernelrelease": "4.15.0-101-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" ] }, { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "30", + "kernelrelease": "4.15.0-1029-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb" ] }, { - "kernelversion": "137", - "kernelrelease": "4.15.0-1128-aws", - "target": "ubuntu-aws", + "kernelversion": "32", + "kernelrelease": "4.15.0-1030-raspi2", + "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb" ] }, { - "kernelversion": "138", - "kernelrelease": "4.15.0-1129-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "33", + "kernelrelease": "4.15.0-1031-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" ] }, { - "kernelversion": "138", - "kernelrelease": "4.15.0-1129-aws", - "target": "ubuntu-aws", + "kernelversion": "33", + "kernelrelease": "4.15.0-1031-raspi2", + "target": "ubuntu-raspi2", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" ] }, { - "kernelversion": "143", - "kernelrelease": "4.15.0-1133-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "34", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1133_4.15.0-1133.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1133-snapdragon_4.15.0-1133.143_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" ] }, { - "kernelversion": "143", - "kernelrelease": "4.15.0-1133-aws", + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { - "kernelversion": "148", - "kernelrelease": "4.15.0-1137-aws", + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" ] }, { - "kernelversion": "199", - "kernelrelease": "4.15.0-188", - "target": "ubuntu-generic", + "kernelversion": "37", + "kernelrelease": "4.15.0-1035-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb" ] }, { - "kernelversion": "200", - "kernelrelease": "4.15.0-189", - "target": "ubuntu-generic", + "kernelversion": "41", + "kernelrelease": "4.15.0-1039-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.0.0-1028-aws-5.0", - "target": "ubuntu-aws-5.0", + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" ] }, { - "kernelversion": "113~18.04.1", - "kernelrelease": "5.4.0-100-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" ] }, { - "kernelversion": "119~18.04.1", - "kernelrelease": "5.4.0-105-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "45", + "kernelrelease": "4.15.0-1043-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb" ] }, { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "46", + "kernelrelease": "4.15.0-1044-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { - "kernelversion": "120~18.04.1", - "kernelrelease": "5.4.0-106-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "47", + "kernelrelease": "4.15.0-1045-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "49", + "kernelrelease": "4.15.0-1047-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "50", + "kernelrelease": "4.15.0-1048-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb" ] }, { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "52", + "kernelrelease": "4.15.0-1050-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" ] }, { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "53", + "kernelrelease": "4.15.0-1051-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1067-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "54", + "kernelrelease": "4.15.0-1052-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" ] }, { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1068-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "57", + "kernelrelease": "4.15.0-1053-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb" ] }, { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1069-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "56", + "kernelrelease": "4.15.0-1054-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" ] }, { - "kernelversion": "74~18.04.1", - "kernelrelease": "5.4.0-1070-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "58", + "kernelrelease": "4.15.0-1054-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb" ] }, { - "kernelversion": "76~18.04.3", - "kernelrelease": "5.4.0-1071-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "59", + "kernelrelease": "4.15.0-1055-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" ] }, { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1071-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "58", + "kernelrelease": "4.15.0-1056-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1072-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "59", + "kernelrelease": "4.15.0-1057-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb" ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "62", + "kernelrelease": "4.15.0-1057-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "60", + "kernelrelease": "4.15.0-1058-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" ] }, { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "64", + "kernelrelease": "4.15.0-1058-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb" ] }, { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "107", + "kernelrelease": "4.15.0-106-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb" ] }, { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1076-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "62", + "kernelrelease": "4.15.0-1060-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb" ] }, { - "kernelversion": "81~18.04.1", - "kernelrelease": "5.4.0-1078-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "66", + "kernelrelease": "4.15.0-1060-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb" ] }, { - "kernelversion": "82~18.04.1", - "kernelrelease": "5.4.0-1079-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "69", + "kernelrelease": "4.15.0-1062-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb" ] }, { - "kernelversion": "122~18.04.1", - "kernelrelease": "5.4.0-108-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "67", + "kernelrelease": "4.15.0-1063-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" ] }, { - "kernelversion": "88~18.04.1", - "kernelrelease": "5.4.0-1081-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "71", + "kernelrelease": "4.15.0-1064-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb" ] }, { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-1086-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "69", + "kernelrelease": "4.15.0-1065-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb" ] }, { - "kernelversion": "124~18.04.1", - "kernelrelease": "5.4.0-110-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "72", + "kernelrelease": "4.15.0-1065-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb" ] }, { - "kernelversion": "126~18.04.1", - "kernelrelease": "5.4.0-112-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "70", + "kernelrelease": "4.15.0-1066-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { - "kernelversion": "137~18.04.1", - "kernelrelease": "5.4.0-121-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "73", + "kernelrelease": "4.15.0-1066-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" ] }, { - "kernelversion": "138~18.04.1", - "kernelrelease": "5.4.0-122-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "71", + "kernelrelease": "4.15.0-1067-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" ] }, { - "kernelversion": "102~18.04.1", - "kernelrelease": "5.4.0-91-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "74", + "kernelrelease": "4.15.0-1067-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb" ] }, { - "kernelversion": "110~18.04.1", - "kernelrelease": "5.4.0-97-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "76", + "kernelrelease": "4.15.0-1069-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb" ] }, { - "kernelversion": "112~18.04.1", - "kernelrelease": "5.4.0-99-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "77", + "kernelrelease": "4.15.0-1070-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb" ] }, { - "kernelversion": "102", - "kernelrelease": "4.15.0-101", - "target": "ubuntu-generic", + "kernelversion": "78", + "kernelrelease": "4.15.0-1071-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "4.15.0-1029-aws", - "target": "ubuntu-aws", + "kernelversion": "79", + "kernelrelease": "4.15.0-1072-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "4.15.0-1030-raspi2", - "target": "ubuntu-raspi2", + "kernelversion": "77", + "kernelrelease": "4.15.0-1073-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "4.15.0-1031-raspi2", - "target": "ubuntu-raspi2", + "kernelversion": "81", + "kernelrelease": "4.15.0-1074-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "4.15.0-1031-aws", + "kernelversion": "80", + "kernelrelease": "4.15.0-1076-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", + "kernelversion": "83", + "kernelrelease": "4.15.0-1076-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-aws", + "kernelversion": "81", + "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-aws", - "target": "ubuntu-aws", + "kernelversion": "84", + "kernelrelease": "4.15.0-1077-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "4.15.0-1035-aws", + "kernelversion": "83", + "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "4.15.0-1039-aws", - "target": "ubuntu-aws", + "kernelversion": "86", + "kernelrelease": "4.15.0-1079-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws", + "kernelversion": "109", + "kernelrelease": "4.15.0-108-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", + "kernelversion": "84", + "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "4.15.0-1043-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws", + "kernelversion": "87", + "kernelrelease": "4.15.0-1080-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "4.15.0-1045-aws", - "target": "ubuntu-aws", + "kernelversion": "88", + "kernelrelease": "4.15.0-1081-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "4.15.0-1047-aws", + "kernelversion": "86", + "kernelrelease": "4.15.0-1082-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "4.15.0-1048-aws", + "kernelversion": "87", + "kernelrelease": "4.15.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "4.15.0-1050-aws", - "target": "ubuntu-aws", + "kernelversion": "91", + "kernelrelease": "4.15.0-1083-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb" ] }, { - "kernelversion": "53", - "kernelrelease": "4.15.0-1051-aws", - "target": "ubuntu-aws", + "kernelversion": "92", + "kernelrelease": "4.15.0-1084-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb" ] }, { - "kernelversion": "54", - "kernelrelease": "4.15.0-1052-aws", + "kernelversion": "91", + "kernelrelease": "4.15.0-1086-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "4.15.0-1053-snapdragon", + "kernelversion": "94", + "kernelrelease": "4.15.0-1086-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb" ] }, { - "kernelversion": "56", - "kernelrelease": "4.15.0-1054-aws", + "kernelversion": "92", + "kernelrelease": "4.15.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "4.15.0-1054-snapdragon", + "kernelversion": "95", + "kernelrelease": "4.15.0-1087-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "4.15.0-1055-snapdragon", + "kernelversion": "98", + "kernelrelease": "4.15.0-1089-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "4.15.0-1056-aws", - "target": "ubuntu-aws", + "kernelversion": "110", + "kernelrelease": "4.15.0-109-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "4.15.0-1057-aws", + "kernelversion": "95", + "kernelrelease": "4.15.0-1090-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "4.15.0-1057-snapdragon", + "kernelversion": "99", + "kernelrelease": "4.15.0-1090-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "4.15.0-1058-aws", + "kernelversion": "96", + "kernelrelease": "4.15.0-1091-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" ] }, { - "kernelversion": "64", - "kernelrelease": "4.15.0-1058-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "98", + "kernelrelease": "4.15.0-1092-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" ] }, { - "kernelversion": "107", - "kernelrelease": "4.15.0-106", - "target": "ubuntu-generic", + "kernelversion": "99", + "kernelrelease": "4.15.0-1093-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "4.15.0-1060-aws", - "target": "ubuntu-aws", + "kernelversion": "102", + "kernelrelease": "4.15.0-1093-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "4.15.0-1060-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "101", + "kernelrelease": "4.15.0-1094-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "4.15.0-1062-snapdragon", + "kernelversion": "103", + "kernelrelease": "4.15.0-1094-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "4.15.0-1063-aws", + "kernelversion": "102", + "kernelrelease": "4.15.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" ] }, { - "kernelversion": "71", - "kernelrelease": "4.15.0-1064-snapdragon", + "kernelversion": "104", + "kernelrelease": "4.15.0-1095-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "4.15.0-1065-aws", + "kernelversion": "103", + "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "4.15.0-1065-snapdragon", + "kernelversion": "105", + "kernelrelease": "4.15.0-1096-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb" ] }, { - "kernelversion": "70", - "kernelrelease": "4.15.0-1066-aws", + "kernelversion": "104", + "kernelrelease": "4.15.0-1097-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "4.15.0-1066-snapdragon", + "kernelversion": "106", + "kernelrelease": "4.15.0-1097-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb" ] }, { - "kernelversion": "71", - "kernelrelease": "4.15.0-1067-aws", + "kernelversion": "105", + "kernelrelease": "4.15.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" ] }, { - "kernelversion": "74", - "kernelrelease": "4.15.0-1067-snapdragon", + "kernelversion": "107", + "kernelrelease": "4.15.0-1098-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "4.15.0-1069-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "106", + "kernelrelease": "4.15.0-1099-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "4.15.0-1070-snapdragon", + "kernelversion": "108", + "kernelrelease": "4.15.0-1099-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "4.15.0-1071-snapdragon", + "kernelversion": "109", + "kernelrelease": "4.15.0-1100-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "4.15.0-1072-snapdragon", + "kernelversion": "108", + "kernelrelease": "4.15.0-1101-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" + ] + }, + { + "kernelversion": "110", + "kernelrelease": "4.15.0-1101-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "4.15.0-1073-aws", + "kernelversion": "109", + "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb" ] }, { - "kernelversion": "81", - "kernelrelease": "4.15.0-1074-snapdragon", + "kernelversion": "111", + "kernelrelease": "4.15.0-1102-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb" ] }, { - "kernelversion": "80", - "kernelrelease": "4.15.0-1076-aws", + "kernelversion": "110", + "kernelrelease": "4.15.0-1103-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "4.15.0-1076-snapdragon", + "kernelversion": "112", + "kernelrelease": "4.15.0-1103-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb" ] }, { - "kernelversion": "81", - "kernelrelease": "4.15.0-1077-aws", + "kernelversion": "113", + "kernelrelease": "4.15.0-1106-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "4.15.0-1077-snapdragon", + "kernelversion": "115", + "kernelrelease": "4.15.0-1106-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "4.15.0-1079-aws", + "kernelversion": "116", + "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" ] }, { - "kernelversion": "86", - "kernelrelease": "4.15.0-1079-snapdragon", + "kernelversion": "118", + "kernelrelease": "4.15.0-1109-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb" ] }, { - "kernelversion": "109", - "kernelrelease": "4.15.0-108", + "kernelversion": "112", + "kernelrelease": "4.15.0-111-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "4.15.0-1080-aws", + "kernelversion": "117", + "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" ] }, { - "kernelversion": "87", - "kernelrelease": "4.15.0-1080-snapdragon", + "kernelversion": "119", + "kernelrelease": "4.15.0-1110-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" ] }, { - "kernelversion": "88", - "kernelrelease": "4.15.0-1081-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "118", + "kernelrelease": "4.15.0-1111-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" ] }, { - "kernelversion": "86", - "kernelrelease": "4.15.0-1082-aws", - "target": "ubuntu-aws", + "kernelversion": "120", + "kernelrelease": "4.15.0-1111-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb" ] }, { - "kernelversion": "87", - "kernelrelease": "4.15.0-1083-aws", + "kernelversion": "119", + "kernelrelease": "4.15.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" ] }, { - "kernelversion": "91", - "kernelrelease": "4.15.0-1083-snapdragon", + "kernelversion": "121", + "kernelrelease": "4.15.0-1112-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb" ] }, { - "kernelversion": "92", - "kernelrelease": "4.15.0-1084-snapdragon", + "kernelversion": "122", + "kernelrelease": "4.15.0-1113-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb" ] }, { - "kernelversion": "91", - "kernelrelease": "4.15.0-1086-aws", + "kernelversion": "121", + "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" ] }, { - "kernelversion": "94", - "kernelrelease": "4.15.0-1086-snapdragon", + "kernelversion": "123", + "kernelrelease": "4.15.0-1114-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb" ] }, { - "kernelversion": "92", - "kernelrelease": "4.15.0-1087-aws", + "kernelversion": "122", + "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb" ] }, { - "kernelversion": "95", - "kernelrelease": "4.15.0-1087-snapdragon", + "kernelversion": "124", + "kernelrelease": "4.15.0-1115-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb" ] }, { - "kernelversion": "98", - "kernelrelease": "4.15.0-1089-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "123", + "kernelrelease": "4.15.0-1116-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb" ] }, { - "kernelversion": "110", - "kernelrelease": "4.15.0-109", - "target": "ubuntu-generic", + "kernelversion": "125", + "kernelrelease": "4.15.0-1116-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb" ] }, { - "kernelversion": "95", - "kernelrelease": "4.15.0-1090-aws", + "kernelversion": "125", + "kernelrelease": "4.15.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" ] }, { - "kernelversion": "99", - "kernelrelease": "4.15.0-1090-snapdragon", + "kernelversion": "127", + "kernelrelease": "4.15.0-1118-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb" ] }, { - "kernelversion": "96", - "kernelrelease": "4.15.0-1091-aws", + "kernelversion": "127", + "kernelrelease": "4.15.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" ] }, { - "kernelversion": "98", - "kernelrelease": "4.15.0-1092-aws", - "target": "ubuntu-aws", + "kernelversion": "128", + "kernelrelease": "4.15.0-1119-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb" ] }, { - "kernelversion": "99", - "kernelrelease": "4.15.0-1093-aws", - "target": "ubuntu-aws", + "kernelversion": "113", + "kernelrelease": "4.15.0-112-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" ] }, { - "kernelversion": "102", - "kernelrelease": "4.15.0-1093-snapdragon", + "kernelversion": "129", + "kernelrelease": "4.15.0-1120-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" ] }, { - "kernelversion": "101", - "kernelrelease": "4.15.0-1094-aws", + "kernelversion": "129", + "kernelrelease": "4.15.0-1121-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb" ] }, { - "kernelversion": "103", - "kernelrelease": "4.15.0-1094-snapdragon", + "kernelversion": "131", + "kernelrelease": "4.15.0-1122-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb" ] }, { - "kernelversion": "102", - "kernelrelease": "4.15.0-1095-aws", - "target": "ubuntu-aws", + "kernelversion": "132", + "kernelrelease": "4.15.0-1123-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" ] }, { - "kernelversion": "104", - "kernelrelease": "4.15.0-1095-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "132", + "kernelrelease": "4.15.0-1123-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb" ] }, { - "kernelversion": "103", - "kernelrelease": "4.15.0-1096-aws", + "kernelversion": "133", + "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" ] }, { - "kernelversion": "105", - "kernelrelease": "4.15.0-1096-snapdragon", + "kernelversion": "134", + "kernelrelease": "4.15.0-1125-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb" ] }, { - "kernelversion": "104", - "kernelrelease": "4.15.0-1097-aws", - "target": "ubuntu-aws", + "kernelversion": "135", + "kernelrelease": "4.15.0-1126-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb" ] }, { - "kernelversion": "106", - "kernelrelease": "4.15.0-1097-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "135", + "kernelrelease": "4.15.0-1126-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" ] }, { - "kernelversion": "105", - "kernelrelease": "4.15.0-1098-aws", + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" ] }, { - "kernelversion": "107", - "kernelrelease": "4.15.0-1098-snapdragon", + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" ] }, { - "kernelversion": "106", - "kernelrelease": "4.15.0-1099-aws", + "kernelversion": "137", + "kernelrelease": "4.15.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb" ] }, { - "kernelversion": "108", - "kernelrelease": "4.15.0-1099-snapdragon", + "kernelversion": "138", + "kernelrelease": "4.15.0-1129-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb" ] }, { - "kernelversion": "109", - "kernelrelease": "4.15.0-1100-snapdragon", - "target": "ubuntu-snapdragon", + "kernelversion": "139", + "kernelrelease": "4.15.0-1130-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb" ] }, { - "kernelversion": "108", - "kernelrelease": "4.15.0-1101-aws", - "target": "ubuntu-aws", + "kernelversion": "142", + "kernelrelease": "4.15.0-1132-snapdragon", + "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1132-snapdragon_4.15.0-1132.142_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1132_4.15.0-1132.142_arm64.deb" ] }, { - "kernelversion": "110", - "kernelrelease": "4.15.0-1101-snapdragon", + "kernelversion": "143", + "kernelrelease": "4.15.0-1133-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1133_4.15.0-1133.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1133-snapdragon_4.15.0-1133.143_arm64.deb" ] }, { - "kernelversion": "109", - "kernelrelease": "4.15.0-1102-aws", + "kernelversion": "143", + "kernelrelease": "4.15.0-1133-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_arm64.deb" ] }, { - "kernelversion": "111", - "kernelrelease": "4.15.0-1102-snapdragon", + "kernelversion": "145", + "kernelrelease": "4.15.0-1135-snapdragon", "target": "ubuntu-snapdragon", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1135-snapdragon_4.15.0-1135.145_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1135_4.15.0-1135.145_arm64.deb" ] }, { - "kernelversion": "110", - "kernelrelease": "4.15.0-1103-aws", + "kernelversion": "147", + "kernelrelease": "4.15.0-1136-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-1103-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1106-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" - ] - }, - { - "kernelversion": "115", - "kernelrelease": "4.15.0-1106-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.15.0-1109-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.15.0-1109-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-111", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" - ] - }, - { - "kernelversion": "117", - "kernelrelease": "4.15.0-1110-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.15.0-1110-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.15.0-1111-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "4.15.0-1111-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.15.0-1112-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.15.0-1112-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb" - ] - }, - { - "kernelversion": "122", - "kernelrelease": "4.15.0-1113-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.15.0-1114-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-1114-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb" - ] - }, - { - "kernelversion": "122", - "kernelrelease": "4.15.0-1115-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "4.15.0-1115-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb" - ] - }, - { - "kernelversion": "125", - "kernelrelease": "4.15.0-1116-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb" - ] - }, - { - "kernelversion": "125", - "kernelrelease": "4.15.0-1118-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-1118-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-1119-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-112", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.15.0-1122-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.15.0-1126-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" ] }, { - "kernelversion": "139", - "kernelrelease": "4.15.0-1130-aws", + "kernelversion": "148", + "kernelrelease": "4.15.0-1137-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb" - ] - }, - { - "kernelversion": "142", - "kernelrelease": "4.15.0-1132-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1132-snapdragon_4.15.0-1132.142_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1132_4.15.0-1132.142_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb" ] }, { - "kernelversion": "147", - "kernelrelease": "4.15.0-1136-aws", + "kernelversion": "150", + "kernelrelease": "4.15.0-1139-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1139_4.15.0-1139.150_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1139-aws_4.15.0-1139.150_arm64.deb" ] }, { "kernelversion": "116", - "kernelrelease": "4.15.0-115", + "kernelrelease": "4.15.0-115-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", @@ -4398,25 +4402,25 @@ }, { "kernelversion": "118", - "kernelrelease": "4.15.0-117", + "kernelrelease": "4.15.0-117-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" ] }, { "kernelversion": "119", - "kernelrelease": "4.15.0-118", + "kernelrelease": "4.15.0-118-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" ] }, { "kernelversion": "123", - "kernelrelease": "4.15.0-121", + "kernelrelease": "4.15.0-121-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb", @@ -4425,7 +4429,7 @@ }, { "kernelversion": "124", - "kernelrelease": "4.15.0-122", + "kernelrelease": "4.15.0-122-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", @@ -4434,25 +4438,25 @@ }, { "kernelversion": "126", - "kernelrelease": "4.15.0-123", + "kernelrelease": "4.15.0-123-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb" ] }, { "kernelversion": "131", - "kernelrelease": "4.15.0-128", + "kernelrelease": "4.15.0-128-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb" ] }, { "kernelversion": "132", - "kernelrelease": "4.15.0-129", + "kernelrelease": "4.15.0-129-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb", @@ -4461,25 +4465,25 @@ }, { "kernelversion": "134", - "kernelrelease": "4.15.0-130", + "kernelrelease": "4.15.0-130-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" ] }, { "kernelversion": "136", - "kernelrelease": "4.15.0-132", + "kernelrelease": "4.15.0-132-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb" ] }, { "kernelversion": "139", - "kernelrelease": "4.15.0-135", + "kernelrelease": "4.15.0-135-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb", @@ -4488,16 +4492,16 @@ }, { "kernelversion": "140", - "kernelrelease": "4.15.0-136", + "kernelrelease": "4.15.0-136-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb" ] }, { "kernelversion": "141", - "kernelrelease": "4.15.0-137", + "kernelrelease": "4.15.0-137-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb", @@ -4506,16 +4510,16 @@ }, { "kernelversion": "143", - "kernelrelease": "4.15.0-139", + "kernelrelease": "4.15.0-139-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" ] }, { "kernelversion": "144", - "kernelrelease": "4.15.0-140", + "kernelrelease": "4.15.0-140-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", @@ -4524,7 +4528,7 @@ }, { "kernelversion": "145", - "kernelrelease": "4.15.0-141", + "kernelrelease": "4.15.0-141-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", @@ -4533,16 +4537,16 @@ }, { "kernelversion": "146", - "kernelrelease": "4.15.0-142", + "kernelrelease": "4.15.0-142-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb" ] }, { "kernelversion": "147", - "kernelrelease": "4.15.0-143", + "kernelrelease": "4.15.0-143-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb", @@ -4551,16 +4555,16 @@ }, { "kernelversion": "148", - "kernelrelease": "4.15.0-144", + "kernelrelease": "4.15.0-144-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" ] }, { "kernelversion": "151", - "kernelrelease": "4.15.0-147", + "kernelrelease": "4.15.0-147-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", @@ -4569,7 +4573,7 @@ }, { "kernelversion": "157", - "kernelrelease": "4.15.0-151", + "kernelrelease": "4.15.0-151-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", @@ -4578,7 +4582,7 @@ }, { "kernelversion": "160", - "kernelrelease": "4.15.0-153", + "kernelrelease": "4.15.0-153-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb", @@ -4587,7 +4591,7 @@ }, { "kernelversion": "161", - "kernelrelease": "4.15.0-154", + "kernelrelease": "4.15.0-154-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb", @@ -4596,16 +4600,16 @@ }, { "kernelversion": "163", - "kernelrelease": "4.15.0-156", + "kernelrelease": "4.15.0-156-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" ] }, { "kernelversion": "166", - "kernelrelease": "4.15.0-158", + "kernelrelease": "4.15.0-158-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", @@ -4614,7 +4618,7 @@ }, { "kernelversion": "167", - "kernelrelease": "4.15.0-159", + "kernelrelease": "4.15.0-159-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb", @@ -4623,7 +4627,7 @@ }, { "kernelversion": "169", - "kernelrelease": "4.15.0-161", + "kernelrelease": "4.15.0-161-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", @@ -4632,16 +4636,16 @@ }, { "kernelversion": "170", - "kernelrelease": "4.15.0-162", + "kernelrelease": "4.15.0-162-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb" ] }, { "kernelversion": "171", - "kernelrelease": "4.15.0-163", + "kernelrelease": "4.15.0-163-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_arm64.deb", @@ -4650,7 +4654,7 @@ }, { "kernelversion": "174", - "kernelrelease": "4.15.0-166", + "kernelrelease": "4.15.0-166-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", @@ -4659,7 +4663,7 @@ }, { "kernelversion": "175", - "kernelrelease": "4.15.0-167", + "kernelrelease": "4.15.0-167-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb", @@ -4668,7 +4672,7 @@ }, { "kernelversion": "177", - "kernelrelease": "4.15.0-169", + "kernelrelease": "4.15.0-169-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb", @@ -4677,25 +4681,25 @@ }, { "kernelversion": "180", - "kernelrelease": "4.15.0-171", + "kernelrelease": "4.15.0-171-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb" ] }, { "kernelversion": "182", - "kernelrelease": "4.15.0-173", + "kernelrelease": "4.15.0-173-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb" ] }, { "kernelversion": "184", - "kernelrelease": "4.15.0-175", + "kernelrelease": "4.15.0-175-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", @@ -4704,7 +4708,7 @@ }, { "kernelversion": "185", - "kernelrelease": "4.15.0-176", + "kernelrelease": "4.15.0-176-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", @@ -4713,7 +4717,7 @@ }, { "kernelversion": "186", - "kernelrelease": "4.15.0-177", + "kernelrelease": "4.15.0-177-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb", @@ -4722,7 +4726,7 @@ }, { "kernelversion": "189", - "kernelrelease": "4.15.0-180", + "kernelrelease": "4.15.0-180-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", @@ -4731,155 +4735,182 @@ }, { "kernelversion": "194", - "kernelrelease": "4.15.0-184", + "kernelrelease": "4.15.0-184-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" ] }, { "kernelversion": "198", - "kernelrelease": "4.15.0-187", + "kernelrelease": "4.15.0-187-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_arm64.deb" ] }, + { + "kernelversion": "199", + "kernelrelease": "4.15.0-188-generic", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_arm64.deb" + ] + }, + { + "kernelversion": "200", + "kernelrelease": "4.15.0-189-generic", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_arm64.deb" + ] + }, + { + "kernelversion": "202", + "kernelrelease": "4.15.0-191-generic", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-191_4.15.0-191.202_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-191-generic_4.15.0-191.202_arm64.deb" + ] + }, { "kernelversion": "24", - "kernelrelease": "4.15.0-22", + "kernelrelease": "4.15.0-22-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-23", + "kernelrelease": "4.15.0-23-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-24", + "kernelrelease": "4.15.0-24-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb" ] }, { "kernelversion": "31", - "kernelrelease": "4.15.0-29", + "kernelrelease": "4.15.0-29-generic", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb" ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-30", + "kernelrelease": "4.15.0-30-generic", "target": "ubuntu-generic", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-32", + "kernelrelease": "4.15.0-32-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-33", + "kernelrelease": "4.15.0-33-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" ] }, { "kernelversion": "37", - "kernelrelease": "4.15.0-34", + "kernelrelease": "4.15.0-34-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-36", + "kernelrelease": "4.15.0-36-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-39", + "kernelrelease": "4.15.0-39-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" ] }, { "kernelversion": "45", - "kernelrelease": "4.15.0-42", + "kernelrelease": "4.15.0-42-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-43", + "kernelrelease": "4.15.0-43-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" ] }, { "kernelversion": "47", - "kernelrelease": "4.15.0-44", + "kernelrelease": "4.15.0-44-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb" ] }, { "kernelversion": "48", - "kernelrelease": "4.15.0-45", + "kernelrelease": "4.15.0-45-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", @@ -4889,17 +4920,17 @@ }, { "kernelversion": "49", - "kernelrelease": "4.15.0-46", + "kernelrelease": "4.15.0-46-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" ] }, { "kernelversion": "50", - "kernelrelease": "4.15.0-47", + "kernelrelease": "4.15.0-47-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", @@ -4909,7 +4940,7 @@ }, { "kernelversion": "54", - "kernelrelease": "4.15.0-50", + "kernelrelease": "4.15.0-50-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", @@ -4918,7 +4949,7 @@ }, { "kernelversion": "55", - "kernelrelease": "4.15.0-51", + "kernelrelease": "4.15.0-51-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb", @@ -4927,7 +4958,7 @@ }, { "kernelversion": "56", - "kernelrelease": "4.15.0-52", + "kernelrelease": "4.15.0-52-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb", @@ -4936,70 +4967,70 @@ }, { "kernelversion": "58", - "kernelrelease": "4.15.0-54", + "kernelrelease": "4.15.0-54-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" ] }, { "kernelversion": "60", - "kernelrelease": "4.15.0-55", + "kernelrelease": "4.15.0-55-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "4.15.0-58", + "kernelrelease": "4.15.0-58-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb" ] }, { "kernelversion": "67", - "kernelrelease": "4.15.0-60", + "kernelrelease": "4.15.0-60-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" ] }, { "kernelversion": "69", - "kernelrelease": "4.15.0-62", + "kernelrelease": "4.15.0-62-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" ] }, { "kernelversion": "73", - "kernelrelease": "4.15.0-64", + "kernelrelease": "4.15.0-64-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb" ] }, { "kernelversion": "74", - "kernelrelease": "4.15.0-65", + "kernelrelease": "4.15.0-65-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" ] }, { "kernelversion": "75", - "kernelrelease": "4.15.0-66", + "kernelrelease": "4.15.0-66-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_arm64.deb", @@ -5008,16 +5039,16 @@ }, { "kernelversion": "78", - "kernelrelease": "4.15.0-69", + "kernelrelease": "4.15.0-69-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" ] }, { "kernelversion": "79", - "kernelrelease": "4.15.0-70", + "kernelrelease": "4.15.0-70-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", @@ -5026,7 +5057,7 @@ }, { "kernelversion": "81", - "kernelrelease": "4.15.0-72", + "kernelrelease": "4.15.0-72-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb", @@ -5035,7 +5066,7 @@ }, { "kernelversion": "84", - "kernelrelease": "4.15.0-74", + "kernelrelease": "4.15.0-74-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", @@ -5044,25 +5075,25 @@ }, { "kernelversion": "86", - "kernelrelease": "4.15.0-76", + "kernelrelease": "4.15.0-76-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" ] }, { "kernelversion": "88", - "kernelrelease": "4.15.0-88", + "kernelrelease": "4.15.0-88-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb" ] }, { "kernelversion": "92", - "kernelrelease": "4.15.0-91", + "kernelrelease": "4.15.0-91-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", @@ -5071,16 +5102,16 @@ }, { "kernelversion": "97", - "kernelrelease": "4.15.0-96", + "kernelrelease": "4.15.0-96-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" ] }, { "kernelversion": "100", - "kernelrelease": "4.15.0-99", + "kernelrelease": "4.15.0-99-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", @@ -5092,9 +5123,9 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" ] }, { @@ -5102,9 +5133,9 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" ] }, { @@ -5112,9 +5143,9 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" ] }, { @@ -5123,8 +5154,8 @@ "target": "ubuntu-hwe", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" ] }, { @@ -5132,9 +5163,9 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" ] }, { @@ -5142,9 +5173,9 @@ "kernelrelease": "4.18.0-20-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" ] }, { @@ -5152,9 +5183,9 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, { @@ -5162,9 +5193,9 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb" ] }, { @@ -5182,9 +5213,9 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" ] }, { @@ -5255,8 +5286,8 @@ "kernelrelease": "5.0.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" ] }, { @@ -5264,8 +5295,8 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb" ] }, { @@ -5273,8 +5304,8 @@ "kernelrelease": "5.0.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb" ] }, { @@ -5300,8 +5331,8 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" ] }, { @@ -5309,8 +5340,8 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" ] }, { @@ -5318,8 +5349,8 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb" ] }, { @@ -5327,8 +5358,8 @@ "kernelrelease": "5.0.0-31-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb" ] }, { @@ -5381,8 +5412,8 @@ "kernelrelease": "5.0.0-61-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_arm64.deb" ] }, { @@ -5426,8 +5457,8 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb" ] }, { @@ -5462,8 +5493,8 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" ] }, { @@ -5480,8 +5511,8 @@ "kernelrelease": "5.3.0-1034-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb" ] }, { @@ -5525,8 +5556,8 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" ] }, { @@ -5534,8 +5565,8 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb" ] }, { @@ -5543,8 +5574,8 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" ] }, { @@ -5552,8 +5583,8 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb" ] }, { @@ -5579,8 +5610,8 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" ] }, { @@ -5588,8 +5619,8 @@ "kernelrelease": "5.3.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" ] }, { @@ -5615,8 +5646,8 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" ] }, { @@ -5624,8 +5655,8 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" ] }, { @@ -5633,17 +5664,26 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" ] }, { - "kernelversion": "20~18.04.2", + "kernelversion": "113~18.04.1", + "kernelrelease": "5.4.0-100-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "20~18.04.2", "kernelrelease": "5.4.0-1020-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb" ] }, { @@ -5669,8 +5709,8 @@ "kernelrelease": "5.4.0-1025-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb" ] }, { @@ -5678,8 +5718,8 @@ "kernelrelease": "5.4.0-1028-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { @@ -5687,8 +5727,8 @@ "kernelrelease": "5.4.0-1029-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" ] }, { @@ -5714,8 +5754,8 @@ "kernelrelease": "5.4.0-1035-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" ] }, { @@ -5759,8 +5799,8 @@ "kernelrelease": "5.4.0-1041-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb" ] }, { @@ -5768,8 +5808,8 @@ "kernelrelease": "5.4.0-1043-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, { @@ -5813,8 +5853,8 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb" ] }, { @@ -5826,13 +5866,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" ] }, + { + "kernelversion": "119~18.04.1", + "kernelrelease": "5.4.0-105-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" + ] + }, { "kernelversion": "53~18.04.1", "kernelrelease": "5.4.0-1051-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb" ] }, { @@ -5840,8 +5889,8 @@ "kernelrelease": "5.4.0-1052-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb" ] }, { @@ -5849,8 +5898,8 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" ] }, { @@ -5858,8 +5907,8 @@ "kernelrelease": "5.4.0-1054-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" ] }, { @@ -5885,8 +5934,8 @@ "kernelrelease": "5.4.0-1055-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" ] }, { @@ -5912,8 +5961,8 @@ "kernelrelease": "5.4.0-1057-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" ] }, { @@ -5930,8 +5979,17 @@ "kernelrelease": "5.4.0-1058-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" + ] + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1058-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" ] }, { @@ -5939,8 +5997,8 @@ "kernelrelease": "5.4.0-1059-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" ] }, { @@ -5948,8 +6006,8 @@ "kernelrelease": "5.4.0-1059-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" ] }, { @@ -5975,8 +6033,17 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" ] }, { @@ -5984,8 +6051,8 @@ "kernelrelease": "5.4.0-1063-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" ] }, { @@ -5993,8 +6060,26 @@ "kernelrelease": "5.4.0-1063-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" ] }, { @@ -6002,8 +6087,17 @@ "kernelrelease": "5.4.0-1065-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" ] }, { @@ -6011,8 +6105,17 @@ "kernelrelease": "5.4.0-1066-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1067-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb" ] }, { @@ -6024,6 +6127,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_arm64.deb" ] }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1069-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" + ] + }, { "kernelversion": "75~18.04.1", "kernelrelease": "5.4.0-1069-oracle-5.4", @@ -6062,11 +6174,11 @@ }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1071-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_arm64.deb" ] }, { @@ -6078,6 +6190,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" ] }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" + ] + }, { "kernelversion": "77~18.04.1", "kernelrelease": "5.4.0-1072-gcp-5.4", @@ -6087,13 +6208,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" ] }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb" + ] + }, { "kernelversion": "79~18.04.1", "kernelrelease": "5.4.0-1073-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb" ] }, { @@ -6101,8 +6231,26 @@ "kernelrelease": "5.4.0-1074-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb" ] }, { @@ -6110,8 +6258,8 @@ "kernelrelease": "5.4.0-1076-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_arm64.deb" ] }, { @@ -6133,21 +6281,12 @@ ] }, { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb" - ] - }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "81~18.04.1", + "kernelrelease": "5.4.0-1078-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" ] }, { @@ -6159,6 +6298,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_arm64.deb" ] }, + { + "kernelversion": "87~18.04.1", + "kernelrelease": "5.4.0-1079-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1079_5.4.0-1079.87~18.04.1_all.deb" + ] + }, { "kernelversion": "87~18.04.1", "kernelrelease": "5.4.0-1080-aws-5.4", @@ -6182,8 +6330,44 @@ "kernelrelease": "5.4.0-1080-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" + ] + }, + { + "kernelversion": "86~18.04.1", + "kernelrelease": "5.4.0-1080-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1080-gke_5.4.0-1080.86~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1080_5.4.0-1080.86~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "88~18.04.1", + "kernelrelease": "5.4.0-1081-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb" + ] + }, + { + "kernelversion": "89~18.04.1", + "kernelrelease": "5.4.0-1081-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1081_5.4.0-1081.89~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "90~18.04.1", + "kernelrelease": "5.4.0-1083-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1083_5.4.0-1083.90~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1083-aws_5.4.0-1083.90~18.04.1_arm64.deb" ] }, { @@ -6195,13 +6379,49 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb" ] }, + { + "kernelversion": "92~18.04.1", + "kernelrelease": "5.4.0-1084-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1084_5.4.0-1084.92~18.04.1_arm64.deb" + ] + }, { "kernelversion": "90~18.04.1", "kernelrelease": "5.4.0-1085-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-1086-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb" + ] + }, + { + "kernelversion": "94~18.04.1", + "kernelrelease": "5.4.0-1086-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1086_5.4.0-1086.94~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "94~18.04.1", + "kernelrelease": "5.4.0-1089-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1089-azure_5.4.0-1089.94~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1089_5.4.0-1089.94~18.04.1_all.deb" ] }, { @@ -6213,6 +6433,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_arm64.deb" ] }, + { + "kernelversion": "124~18.04.1", + "kernelrelease": "5.4.0-110-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" + ] + }, { "kernelversion": "127~18.04.1", "kernelrelease": "5.4.0-113-hwe-5.4", @@ -6227,8 +6456,8 @@ "kernelrelease": "5.4.0-117-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_arm64.deb" ] }, { @@ -6236,8 +6465,35 @@ "kernelrelease": "5.4.0-120-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb" + ] + }, + { + "kernelversion": "137~18.04.1", + "kernelrelease": "5.4.0-121-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb" + ] + }, + { + "kernelversion": "138~18.04.1", + "kernelrelease": "5.4.0-122-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "140~18.04.1", + "kernelrelease": "5.4.0-124-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-124_5.4.0-124.140~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-generic_5.4.0-124.140~18.04.1_arm64.deb" ] }, { @@ -6245,8 +6501,8 @@ "kernelrelease": "5.4.0-37-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb" ] }, { @@ -6254,8 +6510,8 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" ] }, { @@ -6263,8 +6519,8 @@ "kernelrelease": "5.4.0-40-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb" ] }, { @@ -6272,8 +6528,8 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" ] }, { @@ -6290,8 +6546,8 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb" ] }, { @@ -6317,8 +6573,8 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" ] }, { @@ -6335,8 +6591,8 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb" ] }, { @@ -6380,8 +6636,8 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" ] }, { @@ -6398,8 +6654,8 @@ "kernelrelease": "5.4.0-70-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb" ] }, { @@ -6407,8 +6663,8 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb" ] }, { @@ -6416,8 +6672,8 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb" ] }, { @@ -6461,8 +6717,8 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" ] }, { @@ -6479,8 +6735,8 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb" ] }, { @@ -6488,8 +6744,8 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" ] }, { @@ -6506,8 +6762,17 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "102~18.04.1", + "kernelrelease": "5.4.0-91-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" ] }, { @@ -6515,8 +6780,8 @@ "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" ] }, { @@ -6524,8 +6789,8 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb" ] }, { @@ -6537,6 +6802,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" ] }, + { + "kernelversion": "110~18.04.1", + "kernelrelease": "5.4.0-97-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb" + ] + }, + { + "kernelversion": "112~18.04.1", + "kernelrelease": "5.4.0-99-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb" + ] + }, { "kernelversion": "39", "kernelrelease": "4.15.0-1037-aws", @@ -6548,16 +6831,16 @@ }, { "kernelversion": "127", - "kernelrelease": "4.15.0-124", + "kernelrelease": "4.15.0-124-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" ] }, { "kernelversion": "138", - "kernelrelease": "4.15.0-134", + "kernelrelease": "4.15.0-134-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", @@ -6566,22 +6849,22 @@ }, { "kernelversion": "41", - "kernelrelease": "4.15.0-38", + "kernelrelease": "4.15.0-38-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb" ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-48", + "kernelrelease": "4.15.0-48-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, { @@ -6589,9 +6872,9 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb" ] }, { @@ -6599,8 +6882,8 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb" ] }, { @@ -6608,8 +6891,8 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb" ] }, { @@ -6617,8 +6900,8 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb" ] }, { @@ -6635,8 +6918,8 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb" ] }, { @@ -6644,8 +6927,8 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" ] }, { @@ -6662,8 +6945,8 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" ] }, { @@ -6671,8 +6954,8 @@ "kernelrelease": "5.3.0-1016-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { @@ -6680,8 +6963,8 @@ "kernelrelease": "5.4.0-1018-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" ] }, { @@ -6693,13 +6976,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb" ] }, + { + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-1083-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1083_5.4.0-1083.91~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91~18.04.1_arm64.deb" + ] + }, { "kernelversion": "60~18.04.1", "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] }, { @@ -6713,7 +7005,7 @@ }, { "kernelversion": "21", - "kernelrelease": "4.15.0-20", + "kernelrelease": "4.15.0-20-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", @@ -6722,77 +7014,68 @@ ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-oracle", - "target": "ubuntu-oracle", + "kernelversion": "3", + "kernelrelease": "5.19.0-1001-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.19.0-1001-raspi_5.19.0-1001.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.19.0-1001_5.19.0-1001.3_arm64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws", + "kernelversion": "3", + "kernelrelease": "5.19.0-1003-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.19.0-1003_5.19.0-1003.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.19.0-1003-lowlatency-64k_5.19.0-1003.3_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.19.0-1003-lowlatency_5.19.0-1003.3_arm64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-gke", - "target": "ubuntu-gke", + "kernelversion": "4", + "kernelrelease": "5.19.0-1004-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.19.0-1004-gcp_5.19.0-1004.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.19.0-1004_5.19.0-1004.4_arm64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb" - ] - }, - { - "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", + "kernelversion": "4", + "kernelrelease": "5.19.0-1004-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.19.0-1004-oracle_5.19.0-1004.4_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.19.0-1004_5.19.0-1004.4_all.deb" ] }, { - "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "4", + "kernelrelease": "5.19.0-1004-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36+22.10.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.19.0-1004_5.19.0-1004.4_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.19.0-1004-azure_5.19.0-1004.4_arm64.deb" ] }, { - "kernelversion": "2", - "kernelrelease": "5.18.0-1002-oracle", - "target": "ubuntu-oracle", + "kernelversion": "5", + "kernelrelease": "5.19.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.19.0-1005-aws_5.19.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.19.0-1005_5.19.0-1005.5_all.deb" ] }, { - "kernelversion": "2", - "kernelrelease": "5.18.0-1002-gcp", - "target": "ubuntu-gcp", + "kernelversion": "15", + "kernelrelease": "5.19.0-15-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.19.0-15-generic_5.19.0-15.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.19.0-15_5.19.0-15.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.19.0-15-generic-64k_5.19.0-15.15_arm64.deb" ] }, { @@ -6809,8 +7092,8 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" ] }, { @@ -6822,15 +7105,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1004-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb" - ] - }, { "kernelversion": "7", "kernelrelease": "5.15.0-1004-gcp", @@ -6845,8 +7119,8 @@ "kernelrelease": "5.15.0-1006-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" ] }, { @@ -6861,11 +7135,11 @@ }, { "kernelversion": "28", - "kernelrelease": "5.15.0-27", + "kernelrelease": "5.15.0-27-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, @@ -6874,27 +7148,27 @@ "kernelrelease": "5.15.0-27-lowlatency", "target": "ubuntu-lowlatency", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1029-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1029-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" ] }, { @@ -6902,8 +7176,8 @@ "kernelrelease": "5.11.0-1029-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" ] }, { @@ -6911,9 +7185,9 @@ "kernelrelease": "5.11.0-61-hwe-5.11", "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb" ] }, { @@ -6921,8 +7195,8 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb" ] }, { @@ -6939,8 +7213,8 @@ "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" ] }, { @@ -6948,8 +7222,8 @@ "kernelrelease": "5.13.0-1019-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -6975,8 +7249,8 @@ "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" ] }, { @@ -6993,8 +7267,8 @@ "kernelrelease": "5.13.0-1023-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" ] }, { @@ -7017,20 +7291,20 @@ }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1028-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" ] }, { "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1028-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] }, { @@ -7038,9 +7312,9 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" ] }, { @@ -7048,8 +7322,8 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb" ] }, @@ -7058,8 +7332,8 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb" ] }, @@ -7088,9 +7362,9 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb" ] }, { @@ -7109,8 +7383,8 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb" ] }, { @@ -7128,9 +7402,9 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" ] }, { @@ -7138,9 +7412,9 @@ "kernelrelease": "5.13.0-41-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" ] }, { @@ -7148,9 +7422,9 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb" ] }, { @@ -7158,82 +7432,54 @@ "kernelrelease": "5.13.0-44-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb" ] }, { - "kernelversion": "59~20.04.1", - "kernelrelease": "5.13.0-52-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "8~20.04.1", - "kernelrelease": "5.15.0-1007-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "11~20.04.1", - "kernelrelease": "5.15.0-1009-aws-5.15", - "target": "ubuntu-aws-5.15", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.15.0-1015-gke-5.15", + "target": "ubuntu-gke-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1015-gke_5.15.0-1015.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1015_5.15.0-1015.18~20.04.1_arm64.deb" ] }, { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1012-gcp-5.15", + "kernelversion": "23~20.04.2", + "kernelrelease": "5.15.0-1017-gcp-5.15", "target": "ubuntu-gcp-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1017_5.15.0-1017.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23~20.04.2_arm64.deb" ] }, { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.15.0-1013-azure-5.15", - "target": "ubuntu-azure-5.15", + "kernelversion": "22~20.04.1", + "kernelrelease": "5.15.0-1017-oracle-5.15", + "target": "ubuntu-oracle-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1017_5.15.0-1017.22~20.04.1_all.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.15.0-1014-aws-5.15", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.15.0-1019-aws-5.15", "target": "ubuntu-aws-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1019-aws_5.15.0-1019.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1019_5.15.0-1019.23~20.04.1_all.deb" ] }, { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1014-azure-5.15", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.15.0-1019-azure-5.15", "target": "ubuntu-azure-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.15.0-1015-aws-5.15", - "target": "ubuntu-aws-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1019-azure_5.15.0-1019.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1019_5.15.0-1019.24~20.04.1_all.deb" ] }, { @@ -7241,39 +7487,19 @@ "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb" ] }, { - "kernelversion": "25~20.04.2", - "kernelrelease": "5.15.0-25-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.15.0-28-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic-64k_5.15.0-28.29~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.15.0-32-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelversion": "44~20.04.1", + "kernelrelease": "5.15.0-41-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic-64k_5.15.0-32.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-41-lowlatency-64k_5.15.0-41.44~20.04.1_arm64.deb" ] }, { @@ -7281,1107 +7507,933 @@ "kernelrelease": "5.15.0-41-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic-64k_5.15.0-41.44~20.04.1_arm64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.4.0-1039-bluefield", + "kernelversion": "50", + "kernelrelease": "5.4.0-1045-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1039-bluefield_5.4.0-1039.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1039_5.4.0-1039.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1045-bluefield_5.4.0-1045.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1045_5.4.0-1045.50_all.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "5.4.0-1040-bluefield", - "target": "ubuntu-bluefield", + "kernelversion": "87", + "kernelrelease": "5.4.0-1081-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1040-bluefield_5.4.0-1040.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1040_5.4.0-1040.44_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1081_5.4.0-1081.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1081-gke_5.4.0-1081.87_arm64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-oracle", + "kernelversion": "90", + "kernelrelease": "5.4.0-1082-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1082_5.4.0-1082.90_all.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-raspi", - "target": "ubuntu-raspi", + "kernelversion": "91", + "kernelrelease": "5.4.0-1084-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1084-aws_5.4.0-1084.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1084_5.4.0-1084.91_all.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.4.0-1051-raspi", - "target": "ubuntu-raspi", + "kernelversion": "95", + "kernelrelease": "5.4.0-1087-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1051-raspi_5.4.0-1051.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1051_5.4.0-1051.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1087_5.4.0-1087.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95_arm64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1052-raspi", - "target": "ubuntu-raspi", + "kernelversion": "95", + "kernelrelease": "5.4.0-1090-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1090_5.4.0-1090.95_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1090-azure_5.4.0-1090.95_arm64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.4.0-1053-raspi", - "target": "ubuntu-raspi", + "kernelversion": "75", + "kernelrelease": "5.8.0-67-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" ] }, { - "kernelversion": "63", - "kernelrelease": "5.4.0-1056-raspi", - "target": "ubuntu-raspi", + "kernelversion": "15~20.04.1", + "kernelrelease": "5.11.0-1014-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "5.4.0-1057-oracle", - "target": "ubuntu-oracle", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-oracle", - "target": "ubuntu-oracle", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "5.4.0-1060-raspi", - "target": "ubuntu-raspi", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "5.4.0-1061-raspi", - "target": "ubuntu-raspi", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1061-raspi_5.4.0-1061.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1061_5.4.0-1061.69_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "5.4.0-1062-oracle", - "target": "ubuntu-oracle", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-aws", - "target": "ubuntu-aws", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "5.4.0-1064-oracle", - "target": "ubuntu-oracle", + "kernelversion": "21~20.04.2", + "kernelrelease": "5.11.0-1020-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws", + "kernelversion": "21~20.04.1", + "kernelrelease": "5.11.0-1020-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1066-raspi", - "target": "ubuntu-raspi", + "kernelversion": "22~20.04.2", + "kernelrelease": "5.11.0-1021-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1066_5.4.0-1066.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1066-raspi_5.4.0-1066.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1067-oracle", - "target": "ubuntu-oracle", + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1021-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "5.4.0-1068-oracle", - "target": "ubuntu-oracle", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" ] }, { - "kernelversion": "74", - "kernelrelease": "5.4.0-1070-aws", - "target": "ubuntu-aws", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1070-oracle", - "target": "ubuntu-oracle", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1071-oracle", - "target": "ubuntu-oracle", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1072-oracle", - "target": "ubuntu-oracle", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", - "target": "ubuntu-aws", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", - "target": "ubuntu-gcp", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-aws", - "target": "ubuntu-aws", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gcp", - "target": "ubuntu-gcp", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gke", - "target": "ubuntu-gke", + "kernelversion": "31~20.04.2", + "kernelrelease": "5.11.0-1028-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" ] }, { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-gcp", - "target": "ubuntu-gcp", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-22-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb" ] }, { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-aws", - "target": "ubuntu-aws", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-25-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1075-azure", - "target": "ubuntu-azure", + "kernelversion": "29~20.04.1", + "kernelrelease": "5.11.0-27-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1076-azure", - "target": "ubuntu-azure", + "kernelversion": "36~20.04.1", + "kernelrelease": "5.11.0-34-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb" ] }, { - "kernelversion": "81", - "kernelrelease": "5.4.0-1078-azure", - "target": "ubuntu-azure", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.11.0-36-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb" ] }, { - "kernelversion": "87", - "kernelrelease": "5.4.0-1079-oracle", - "target": "ubuntu-oracle", + "kernelversion": "41~20.04.2", + "kernelrelease": "5.11.0-37-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "5.4.0-1080-azure", - "target": "ubuntu-azure", + "kernelversion": "42~20.04.1", + "kernelrelease": "5.11.0-38-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb" ] }, { - "kernelversion": "88", - "kernelrelease": "5.4.0-1081-aws", - "target": "ubuntu-aws", + "kernelversion": "44~20.04.2", + "kernelrelease": "5.11.0-40-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb" ] }, { - "kernelversion": "91", - "kernelrelease": "5.4.0-1086-azure", - "target": "ubuntu-azure", + "kernelversion": "45~20.04.1", + "kernelrelease": "5.11.0-41-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb" ] }, { - "kernelversion": "137", - "kernelrelease": "5.4.0-121", - "target": "ubuntu-generic", + "kernelversion": "47~20.04.2", + "kernelrelease": "5.11.0-43-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb" ] }, { - "kernelversion": "138", - "kernelrelease": "5.4.0-122", - "target": "ubuntu-generic", + "kernelversion": "48~20.04.2", + "kernelrelease": "5.11.0-44-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb" ] }, { - "kernelversion": "75", - "kernelrelease": "5.8.0-67-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "51~20.04.1", + "kernelrelease": "5.11.0-46-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" ] }, { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.11.0-1014-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "9~20.04.2", + "kernelrelease": "5.13.0-1008-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" ] }, { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "12~20.04.1", + "kernelrelease": "5.13.0-1011-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb" ] }, { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "13~20.04.2", + "kernelrelease": "5.13.0-1011-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "13~20.04.1", + "kernelrelease": "5.13.0-1012-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1015-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" ] }, { "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.13.0-1016-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" ] }, { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { - "kernelversion": "21~20.04.2", - "kernelrelease": "5.11.0-1020-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb" ] }, { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "23~20.04.2", + "kernelrelease": "5.13.0-1021-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" ] }, { - "kernelversion": "22~20.04.2", - "kernelrelease": "5.11.0-1021-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1021-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb" ] }, { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1021-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1022-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb" ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1022-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.13.0-1025-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1025-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.13.0-1025-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.13.0-1028-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1029-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "34~20.04.1", + "kernelrelease": "5.13.0-1029-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1030-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1031-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_arm64.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "37~20.04.1", + "kernelrelease": "5.13.0-1031-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_arm64.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "39~20.04.1", + "kernelrelease": "5.13.0-1033-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" ] }, { - "kernelversion": "31~20.04.2", - "kernelrelease": "5.11.0-1028-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.13.0-1034-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb" ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-22-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "43~20.04.1", + "kernelrelease": "5.13.0-1036-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-25-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "23~20.04.2", + "kernelrelease": "5.13.0-23-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" ] }, { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.11.0-27-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-25-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" ] }, { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.11.0-34-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-27-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb" ] }, { "kernelversion": "40~20.04.1", - "kernelrelease": "5.11.0-36-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelrelease": "5.13.0-35-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" ] }, { - "kernelversion": "41~20.04.2", - "kernelrelease": "5.11.0-37-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "44~20.04.1", + "kernelrelease": "5.13.0-39-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb" ] }, { - "kernelversion": "42~20.04.1", - "kernelrelease": "5.11.0-38-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "54~20.04.1", + "kernelrelease": "5.13.0-48-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb" ] }, { - "kernelversion": "44~20.04.2", - "kernelrelease": "5.11.0-40-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "58~20.04.1", + "kernelrelease": "5.13.0-51-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic-64k_5.13.0-51.58~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb" ] }, { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.11.0-41-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "59~20.04.1", + "kernelrelease": "5.13.0-52-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_arm64.deb" ] }, { - "kernelversion": "47~20.04.2", - "kernelrelease": "5.11.0-43-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1006-gcp-5.15", + "target": "ubuntu-gcp-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_arm64.deb" ] }, { - "kernelversion": "48~20.04.2", - "kernelrelease": "5.11.0-44-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "8~20.04.1", + "kernelrelease": "5.15.0-1007-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb" ] }, { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.11.0-46-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1007-oracle-5.15", + "target": "ubuntu-oracle-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_arm64.deb" ] }, { - "kernelversion": "9~20.04.2", - "kernelrelease": "5.13.0-1008-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1008-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" ] }, { - "kernelversion": "12~20.04.1", - "kernelrelease": "5.13.0-1011-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "14~20.04.1", + "kernelrelease": "5.15.0-1011-gke-5.15", + "target": "ubuntu-gke-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1011-gke_5.15.0-1011.14~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1011_5.15.0-1011.14~20.04.1_arm64.deb" ] }, { - "kernelversion": "13~20.04.2", - "kernelrelease": "5.13.0-1011-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.15.0-1013-gcp-5.15", + "target": "ubuntu-gcp-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1013_5.15.0-1013.18~20.04.1_arm64.deb" ] }, { - "kernelversion": "13~20.04.1", - "kernelrelease": "5.13.0-1012-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1013-oracle-5.15", + "target": "ubuntu-oracle-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1013_5.15.0-1013.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17~20.04.1_arm64.deb" ] }, { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1015-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1014-gke-5.15", + "target": "ubuntu-gke-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1014-gke_5.15.0-1014.17~20.04.1_arm64.deb" ] }, { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.13.0-1016-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1014-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_arm64.deb" ] }, { "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.15.0-1015-aws-5.15", + "target": "ubuntu-aws-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_arm64.deb" ] }, { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "21~20.04.1", + "kernelrelease": "5.15.0-1016-gcp-5.15", + "target": "ubuntu-gcp-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1016_5.15.0-1016.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21~20.04.1_arm64.deb" ] }, { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-1021-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1021-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1021-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1022-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1022-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.13.0-1025-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1025-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.15.0-1016-oracle-5.15", + "target": "ubuntu-oracle-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1016_5.15.0-1016.20~20.04.1_all.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.13.0-1028-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "21~20.04.1", + "kernelrelease": "5.15.0-1017-aws-5.15", + "target": "ubuntu-aws-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1017-aws_5.15.0-1017.21~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1017_5.15.0-1017.21~20.04.1_all.deb" ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1029-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.15.0-1017-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1017-azure_5.15.0-1017.20~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1017_5.15.0-1017.20~20.04.1_all.deb" ] }, { "kernelversion": "34~20.04.1", - "kernelrelease": "5.13.0-1029-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1030-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1031-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.13.0-1031-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "39~20.04.1", - "kernelrelease": "5.13.0-1033-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-1034-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.13.0-1036-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-23-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-25-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-27-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-35-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.13.0-39-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb" ] }, { - "kernelversion": "54~20.04.1", - "kernelrelease": "5.13.0-48-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { - "kernelversion": "58~20.04.1", - "kernelrelease": "5.13.0-51-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelversion": "45~20.04.1", + "kernelrelease": "5.15.0-42-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic-64k_5.13.0-51.58~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-42_5.15.0-42.45~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-42-lowlatency-64k_5.15.0-42.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-42-lowlatency_5.15.0-42.45~20.04.1_arm64.deb" ] }, { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1006-gcp-5.15", - "target": "ubuntu-gcp-5.15", + "kernelversion": "46~20.04.1", + "kernelrelease": "5.15.0-43-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-43-generic_5.15.0-43.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-43-generic-64k_5.15.0-43.46~20.04.1_arm64.deb" ] }, { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1007-oracle-5.15", - "target": "ubuntu-oracle-5.15", + "kernelversion": "46~20.04.1", + "kernelrelease": "5.15.0-43-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-43-lowlatency-64k_5.15.0-43.46~20.04.1_arm64.deb" ] }, { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1008-azure-5.15", - "target": "ubuntu-azure-5.15", + "kernelversion": "49~20.04.1", + "kernelrelease": "5.15.0-46-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-46-lowlatency-64k_5.15.0-46.49~20.04.1_arm64.deb" ] }, { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", + "kernelversion": "49~20.04.1", + "kernelrelease": "5.15.0-46-hwe-5.15", "target": "ubuntu-hwe-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-46-generic_5.15.0-46.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-46-generic-64k_5.15.0-46.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb" ] }, { "kernelversion": "113", - "kernelrelease": "5.4.0-100", + "kernelrelease": "5.4.0-100-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", @@ -8390,20 +8442,20 @@ }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1011-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb" ] }, { "kernelversion": "11", - "kernelrelease": "5.4.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" ] }, { @@ -8411,8 +8463,8 @@ "kernelrelease": "5.4.0-1011-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb" ] }, { @@ -8420,8 +8472,8 @@ "kernelrelease": "5.4.0-1012-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb" ] }, { @@ -8447,26 +8499,26 @@ "kernelrelease": "5.4.0-1013-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.4.0-1015-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" ] }, { "kernelversion": "15", - "kernelrelease": "5.4.0-1015-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb" ] }, { @@ -8492,8 +8544,8 @@ "kernelrelease": "5.4.0-1017-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" ] }, { @@ -8528,8 +8580,8 @@ "kernelrelease": "5.4.0-1019-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb" ] }, { @@ -8537,8 +8589,8 @@ "kernelrelease": "5.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { @@ -8573,8 +8625,8 @@ "kernelrelease": "5.4.0-1021-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" ] }, { @@ -8591,8 +8643,8 @@ "kernelrelease": "5.4.0-1022-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb" ] }, { @@ -8609,8 +8661,8 @@ "kernelrelease": "5.4.0-1023-bluefield", "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb" ] }, { @@ -8627,26 +8679,26 @@ "kernelrelease": "5.4.0-1025-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1025-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.4.0-1025-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1025-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" ] }, { @@ -8663,8 +8715,8 @@ "kernelrelease": "5.4.0-1026-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" ] }, { @@ -8672,26 +8724,26 @@ "kernelrelease": "5.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb" ] }, { "kernelversion": "31", - "kernelrelease": "5.4.0-1028-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" + "kernelrelease": "5.4.0-1028-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb" ] }, { "kernelversion": "31", - "kernelrelease": "5.4.0-1028-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1028-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" ] }, { @@ -8699,8 +8751,8 @@ "kernelrelease": "5.4.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb" ] }, { @@ -8708,8 +8760,8 @@ "kernelrelease": "5.4.0-1029-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb" ] }, { @@ -8726,8 +8778,8 @@ "kernelrelease": "5.4.0-1030-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb" ] }, { @@ -8735,26 +8787,26 @@ "kernelrelease": "5.4.0-1032-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1032-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.4.0-1032-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1032-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" ] }, { @@ -8762,8 +8814,8 @@ "kernelrelease": "5.4.0-1033-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" ] }, { @@ -8771,8 +8823,8 @@ "kernelrelease": "5.4.0-1034-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { @@ -8780,8 +8832,8 @@ "kernelrelease": "5.4.0-1034-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" ] }, { @@ -8789,8 +8841,8 @@ "kernelrelease": "5.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" ] }, { @@ -8813,20 +8865,20 @@ }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1036-raspi", - "target": "ubuntu-raspi", + "kernelrelease": "5.4.0-1036-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1036_5.4.0-1036.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1036-bluefield_5.4.0-1036.39_arm64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.4.0-1036-bluefield", - "target": "ubuntu-bluefield", + "kernelrelease": "5.4.0-1036-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1036_5.4.0-1036.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1036-bluefield_5.4.0-1036.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" ] }, { @@ -8834,8 +8886,8 @@ "kernelrelease": "5.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb" ] }, { @@ -8843,8 +8895,8 @@ "kernelrelease": "5.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" ] }, { @@ -8867,11 +8919,20 @@ }, { "kernelversion": "118", - "kernelrelease": "5.4.0-104", + "kernelrelease": "5.4.0-104-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb" + ] + }, + { + "kernelversion": "44", + "kernelrelease": "5.4.0-1040-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1040_5.4.0-1040.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1040-bluefield_5.4.0-1040.44_arm64.deb" ] }, { @@ -8892,6 +8953,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb" ] }, + { + "kernelversion": "47", + "kernelrelease": "5.4.0-1042-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1042-bluefield_5.4.0-1042.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1042_5.4.0-1042.47_all.deb" + ] + }, { "kernelversion": "46", "kernelrelease": "5.4.0-1042-raspi", @@ -8919,13 +8989,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb" ] }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1044-bluefield", + "target": "ubuntu-bluefield", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1044-bluefield_5.4.0-1044.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1044_5.4.0-1044.49_all.deb" + ] + }, { "kernelversion": "48", "kernelrelease": "5.4.0-1044-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb" ] }, { @@ -8937,22 +9016,40 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" ] }, + { + "kernelversion": "49", + "kernelrelease": "5.4.0-1045-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb" + ] + }, { "kernelversion": "49", "kernelrelease": "5.4.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.4.0-1045-raspi", + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" + ] + }, + { + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb" ] }, { @@ -8960,8 +9057,8 @@ "kernelrelease": "5.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb" ] }, { @@ -8978,8 +9075,8 @@ "kernelrelease": "5.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb" ] }, { @@ -8996,8 +9093,8 @@ "kernelrelease": "5.4.0-1048-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" ] }, { @@ -9005,17 +9102,17 @@ "kernelrelease": "5.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { "kernelversion": "119", - "kernelrelease": "5.4.0-105", + "kernelrelease": "5.4.0-105-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb" ] }, { @@ -9023,8 +9120,8 @@ "kernelrelease": "5.4.0-1050-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb" ] }, { @@ -9041,8 +9138,17 @@ "kernelrelease": "5.4.0-1052-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" + ] + }, + { + "kernelversion": "58", + "kernelrelease": "5.4.0-1052-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb" ] }, { @@ -9050,8 +9156,17 @@ "kernelrelease": "5.4.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" + ] + }, + { + "kernelversion": "60", + "kernelrelease": "5.4.0-1053-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" ] }, { @@ -9077,8 +9192,8 @@ "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" ] }, { @@ -9086,8 +9201,8 @@ "kernelrelease": "5.4.0-1055-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" ] }, { @@ -9117,6 +9232,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb" ] }, + { + "kernelversion": "63", + "kernelrelease": "5.4.0-1056-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb" + ] + }, { "kernelversion": "60", "kernelrelease": "5.4.0-1057-aws", @@ -9126,6 +9250,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" ] }, + { + "kernelversion": "61", + "kernelrelease": "5.4.0-1057-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" + ] + }, { "kernelversion": "61", "kernelrelease": "5.4.0-1058-aws", @@ -9135,13 +9268,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb" ] }, + { + "kernelversion": "62", + "kernelrelease": "5.4.0-1058-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb" + ] + }, { "kernelversion": "65", "kernelrelease": "5.4.0-1058-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb" ] }, { @@ -9149,8 +9291,8 @@ "kernelrelease": "5.4.0-1059-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb" ] }, { @@ -9158,8 +9300,8 @@ "kernelrelease": "5.4.0-1059-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" ] }, { @@ -9180,13 +9322,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb" ] }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1060-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb" + ] + }, { "kernelversion": "64", "kernelrelease": "5.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" ] }, { @@ -9198,13 +9349,22 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb" ] }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1062-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" + ] + }, { "kernelversion": "70", "kernelrelease": "5.4.0-1062-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb" ] }, { @@ -9212,8 +9372,8 @@ "kernelrelease": "5.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb" ] }, { @@ -9225,6 +9385,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" ] }, + { + "kernelversion": "67", + "kernelrelease": "5.4.0-1064-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + ] + }, + { + "kernelversion": "68", + "kernelrelease": "5.4.0-1064-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb" + ] + }, { "kernelversion": "68", "kernelrelease": "5.4.0-1065-aws", @@ -9243,6 +9421,15 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1065-raspi_5.4.0-1065.75_arm64.deb" ] }, + { + "kernelversion": "69", + "kernelrelease": "5.4.0-1066-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + ] + }, { "kernelversion": "71", "kernelrelease": "5.4.0-1066-oracle", @@ -9252,6 +9439,24 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb" ] }, + { + "kernelversion": "76", + "kernelrelease": "5.4.0-1066-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1066_5.4.0-1066.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1066-raspi_5.4.0-1066.76_arm64.deb" + ] + }, + { + "kernelversion": "72", + "kernelrelease": "5.4.0-1067-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb" + ] + }, { "kernelversion": "72", "kernelrelease": "5.4.0-1068-aws", @@ -9261,18 +9466,45 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" ] }, + { + "kernelversion": "78", + "kernelrelease": "5.4.0-1068-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1068_5.4.0-1068.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1068-raspi_5.4.0-1068.78_arm64.deb" + ] + }, + { + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + ] + }, { "kernelversion": "75", "kernelrelease": "5.4.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" + ] + }, + { + "kernelversion": "79", + "kernelrelease": "5.4.0-1069-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1069_5.4.0-1069.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1069-raspi_5.4.0-1069.79_arm64.deb" ] }, { "kernelversion": "121", - "kernelrelease": "5.4.0-107", + "kernelrelease": "5.4.0-107-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", @@ -9280,1934 +9512,1421 @@ ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", - "target": "ubuntu-gke", + "kernelversion": "76", + "kernelrelease": "5.4.0-1070-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1073-oracle", + "kernelversion": "77", + "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" ] }, { - "kernelversion": "82", - "kernelrelease": "5.4.0-1076-gke", + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "5.4.0-1076-oracle", - "target": "ubuntu-oracle", + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" ] }, { - "kernelversion": "80", - "kernelrelease": "5.4.0-1077-azure", - "target": "ubuntu-azure", + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gcp", + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-aws", + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" ] }, { - "kernelversion": "86", - "kernelrelease": "5.4.0-1078-oracle", + "kernelversion": "79", + "kernelrelease": "5.4.0-1073-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1080-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_arm64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1080-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1083-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-1085-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_arm64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "5.4.0-109", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "5.4.0-110", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "5.4.0-113", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "5.4.0-117", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "5.4.0-120", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-28", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-29", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-31", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-33", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-37", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-39", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-40", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_arm64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-42", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-45", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-47", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-48", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-51", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-52", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-53", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_arm64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-58", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-59", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-60", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.4.0-62", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-65", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "5.4.0-66", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-67", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-70", - "target": "ubuntu-generic", + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-71", - "target": "ubuntu-generic", + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb" ] }, { "kernelversion": "80", - "kernelrelease": "5.4.0-72", - "target": "ubuntu-generic", + "kernelrelease": "5.4.0-1075-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb" ] }, { "kernelversion": "82", - "kernelrelease": "5.4.0-73", - "target": "ubuntu-generic", + "kernelrelease": "5.4.0-1076-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_arm64.deb" ] }, { "kernelversion": "83", - "kernelrelease": "5.4.0-74", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "5.4.0-77", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-80", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-81", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "5.4.0-84", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "5.4.0-86", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "5.4.0-88", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "5.4.0-89", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "5.4.0-90", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "5.4.0-91", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "5.4.0-92", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "5.4.0-94", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "5.4.0-96", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "5.4.0-97", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "5.4.0-99", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb" - ] - }, - { - "kernelversion": "32~20.04.2", - "kernelrelease": "5.8.0-1031-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.8.0-1033-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" - ] - }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1037-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" - ] - }, - { - "kernelversion": "39~20.04.1", - "kernelrelease": "5.8.0-1038-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-1041-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.8.0-1042-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.8.0-33-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "37~20.04.2", - "kernelrelease": "5.8.0-34-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-36-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelrelease": "5.4.0-1076-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb" ] }, { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-38-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "80", + "kernelrelease": "5.4.0-1077-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" ] }, { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.8.0-41-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb" ] }, { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.8.0-43-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb" ] }, { - "kernelversion": "50~20.04.1", - "kernelrelease": "5.8.0-44-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1078-gke_5.4.0-1078.84_arm64.deb" ] }, { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.8.0-45-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "81", + "kernelrelease": "5.4.0-1078-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" ] }, { - "kernelversion": "54~20.04.1", - "kernelrelease": "5.8.0-48-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "86", + "kernelrelease": "5.4.0-1078-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_arm64.deb" ] }, { - "kernelversion": "55~20.04.1", - "kernelrelease": "5.8.0-49-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "87", + "kernelrelease": "5.4.0-1079-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb" ] }, { - "kernelversion": "56~20.04.1", - "kernelrelease": "5.8.0-50-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "87", + "kernelrelease": "5.4.0-1080-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_arm64.deb" ] }, - { - "kernelversion": "60~20.04.1", - "kernelrelease": "5.8.0-53-hwe-5.8", - "target": "ubuntu-hwe-5.8", + { + "kernelversion": "87", + "kernelrelease": "5.4.0-1080-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" ] }, { - "kernelversion": "62~20.04.1", - "kernelrelease": "5.8.0-55-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "83", + "kernelrelease": "5.4.0-1080-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb" ] }, { - "kernelversion": "66~20.04.1", - "kernelrelease": "5.8.0-59-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "86", + "kernelrelease": "5.4.0-1080-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1080_5.4.0-1080.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1080-gke_5.4.0-1080.86_arm64.deb" ] }, { - "kernelversion": "71~20.04.1", - "kernelrelease": "5.8.0-63-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "88", + "kernelrelease": "5.4.0-1081-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_arm64.deb" ] }, { - "kernelversion": "9~20.04.2", - "kernelrelease": "5.11.0-1009-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "89", + "kernelrelease": "5.4.0-1081-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1081_5.4.0-1081.89_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89_arm64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.4.0-1007-bluefield", - "target": "ubuntu-bluefield", + "kernelversion": "90", + "kernelrelease": "5.4.0-1083-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1083_5.4.0-1083.90_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1083-aws_5.4.0-1083.90_arm64.deb" ] }, { - "kernelversion": "53", - "kernelrelease": "5.4.0-1049-oracle", - "target": "ubuntu-oracle", + "kernelversion": "87", + "kernelrelease": "5.4.0-1083-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.4.0-54", - "target": "ubuntu-generic", + "kernelversion": "92", + "kernelrelease": "5.4.0-1084-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1084_5.4.0-1084.92_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92_arm64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-64", - "target": "ubuntu-generic", + "kernelversion": "90", + "kernelrelease": "5.4.0-1085-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_arm64.deb" ] }, { - "kernelversion": "35~20.04.2", - "kernelrelease": "5.8.0-1034-oracle-5.8", - "target": "ubuntu-oracle-5.8", + "kernelversion": "91", + "kernelrelease": "5.4.0-1086-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.8.0-23-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "94", + "kernelrelease": "5.4.0-1086-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1086_5.4.0-1086.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94_arm64.deb" ] }, { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.8.0-25-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "94", + "kernelrelease": "5.4.0-1089-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1089_5.4.0-1089.94_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1089-azure_5.4.0-1089.94_arm64.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.8.0-28-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "123", + "kernelrelease": "5.4.0-109-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.8.0-29-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "124", + "kernelrelease": "5.4.0-110-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" ] }, { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.8.0-40-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "127", + "kernelrelease": "5.4.0-113-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.4.0-1008-raspi", - "target": "ubuntu-raspi", + "kernelversion": "132", + "kernelrelease": "5.4.0-117-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-aws", - "target": "ubuntu-aws", + "kernelversion": "136", + "kernelrelease": "5.4.0-120-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.4.0-26", + "kernelversion": "137", + "kernelrelease": "5.4.0-121-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_arm64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.11.0-1021-oracle", - "target": "ubuntu-oracle", + "kernelversion": "138", + "kernelrelease": "5.4.0-122-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_arm64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws", + "kernelversion": "140", + "kernelrelease": "5.4.0-124-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-124-generic_5.4.0-124.140_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-124_5.4.0-124.140_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.11.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelversion": "141", + "kernelrelease": "5.4.0-125-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-125_5.4.0-125.141_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-125-generic_5.4.0-125.141_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelversion": "32", + "kernelrelease": "5.4.0-28-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", + "kernelversion": "33", + "kernelrelease": "5.4.0-29-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelversion": "35", + "kernelrelease": "5.4.0-31-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-raspi", - "target": "ubuntu-raspi", + "kernelversion": "37", + "kernelrelease": "5.4.0-33-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1027-raspi_5.11.0-1027.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1027_5.11.0-1027.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" ] }, { - "kernelversion": "55", - "kernelrelease": "5.11.0-49", + "kernelversion": "41", + "kernelrelease": "5.4.0-37-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49-generic-64k_5.11.0-49.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.11.0-1006-aws", - "target": "ubuntu-aws", + "kernelversion": "43", + "kernelrelease": "5.4.0-39-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.11.0-1007-raspi", - "target": "ubuntu-raspi", + "kernelversion": "44", + "kernelrelease": "5.4.0-40-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.11.0-1007_5.11.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.11.0-1007-raspi_5.11.0-1007.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_arm64.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.11.0-16", + "kernelversion": "46", + "kernelrelease": "5.4.0-42-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic-64k_5.11.0-16.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.13.0-1007-aws", - "target": "ubuntu-aws", + "kernelversion": "49", + "kernelrelease": "5.4.0-45-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.13.0-1010-raspi", - "target": "ubuntu-raspi", + "kernelversion": "51", + "kernelrelease": "5.4.0-47-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1010-raspi_5.13.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1010_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelversion": "52", + "kernelrelease": "5.4.0-48-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.13.0-1013-aws", - "target": "ubuntu-aws", + "kernelversion": "56", + "kernelrelease": "5.4.0-51-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws", + "kernelversion": "57", + "kernelrelease": "5.4.0-52-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1014-azure", - "target": "ubuntu-azure", + "kernelversion": "59", + "kernelrelease": "5.4.0-53-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oracle", - "target": "ubuntu-oracle", + "kernelversion": "64", + "kernelrelease": "5.4.0-58-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-1017-oracle", - "target": "ubuntu-oracle", + "kernelversion": "65", + "kernelrelease": "5.4.0-59-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-raspi", - "target": "ubuntu-raspi", + "kernelversion": "67", + "kernelrelease": "5.4.0-60-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1017-raspi_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1017_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", - "target": "ubuntu-azure", + "kernelversion": "70", + "kernelrelease": "5.4.0-62-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", + "kernelversion": "73", + "kernelrelease": "5.4.0-65-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.13.0-1018-azure", - "target": "ubuntu-azure", + "kernelversion": "74", + "kernelrelease": "5.4.0-66-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelversion": "75", + "kernelrelease": "5.4.0-67-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws", + "kernelversion": "78", + "kernelrelease": "5.4.0-70-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-1019-azure", - "target": "ubuntu-azure", + "kernelversion": "79", + "kernelrelease": "5.4.0-71-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-azure", - "target": "ubuntu-azure", + "kernelversion": "80", + "kernelrelease": "5.4.0-72-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-aws", - "target": "ubuntu-aws", + "kernelversion": "82", + "kernelrelease": "5.4.0-73-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_arm64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-raspi", - "target": "ubuntu-raspi", + "kernelversion": "83", + "kernelrelease": "5.4.0-74-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1020_5.13.0-1020.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1020-raspi_5.13.0-1020.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1021-raspi", - "target": "ubuntu-raspi", + "kernelversion": "86", + "kernelrelease": "5.4.0-77-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1021_5.13.0-1021.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1021-raspi_5.13.0-1021.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1021-aws", - "target": "ubuntu-aws", + "kernelversion": "90", + "kernelrelease": "5.4.0-80-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.13.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelversion": "91", + "kernelrelease": "5.4.0-81-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws", + "kernelversion": "94", + "kernelrelease": "5.4.0-84-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.13.0-1022-raspi", - "target": "ubuntu-raspi", + "kernelversion": "97", + "kernelrelease": "5.4.0-86-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1022_5.13.0-1022.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1022-raspi_5.13.0-1022.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.13.0-1023-aws", - "target": "ubuntu-aws", + "kernelversion": "99", + "kernelrelease": "5.4.0-88-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.13.0-1023-raspi", - "target": "ubuntu-raspi", + "kernelversion": "100", + "kernelrelease": "5.4.0-89-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1023_5.13.0-1023.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1023-raspi_5.13.0-1023.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.13.0-1023-azure", - "target": "ubuntu-azure", + "kernelversion": "101", + "kernelrelease": "5.4.0-90-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1023-oracle", - "target": "ubuntu-oracle", + "kernelversion": "102", + "kernelrelease": "5.4.0-91-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1024-raspi", - "target": "ubuntu-raspi", + "kernelversion": "103", + "kernelrelease": "5.4.0-92-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1024_5.13.0-1024.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1024-raspi_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1024-aws", - "target": "ubuntu-aws", + "kernelversion": "106", + "kernelrelease": "5.4.0-94-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1024-azure", - "target": "ubuntu-azure", + "kernelversion": "109", + "kernelrelease": "5.4.0-96-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelversion": "110", + "kernelrelease": "5.4.0-97-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.13.0-1025-raspi", - "target": "ubuntu-raspi", + "kernelversion": "112", + "kernelrelease": "5.4.0-99-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1025_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1025-raspi_5.13.0-1025.27_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.13.0-1025-aws", - "target": "ubuntu-aws", + "kernelversion": "32~20.04.2", + "kernelrelease": "5.8.0-1031-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-1025-azure", - "target": "ubuntu-azure", + "kernelversion": "34~20.04.1", + "kernelrelease": "5.8.0-1033-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.13.0-1026-oracle", - "target": "ubuntu-oracle", + "kernelversion": "37~20.04.1", + "kernelrelease": "5.8.0-1035-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1026-aws", - "target": "ubuntu-aws", + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1037-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1026-raspi", - "target": "ubuntu-raspi", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-1038-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1026-raspi_5.13.0-1026.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1026_5.13.0-1026.28_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-1027-raspi", - "target": "ubuntu-raspi", + "kernelversion": "39~20.04.1", + "kernelrelease": "5.8.0-1038-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1027_5.13.0-1027.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1027-raspi_5.13.0-1027.29_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.13.0-1028-azure", - "target": "ubuntu-azure", + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-1041-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.13.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelversion": "44~20.04.1", + "kernelrelease": "5.8.0-1042-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.13.0-1028-raspi", - "target": "ubuntu-raspi", + "kernelversion": "36~20.04.1", + "kernelrelease": "5.8.0-33-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1028_5.13.0-1028.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1028-raspi_5.13.0-1028.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.13.0-1029-oracle", - "target": "ubuntu-oracle", + "kernelversion": "37~20.04.2", + "kernelrelease": "5.8.0-34-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.13.0-52", - "target": "ubuntu-generic", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-36-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.13.0-1006-aws", - "target": "ubuntu-aws", + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-38-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-raspi", - "target": "ubuntu-raspi", + "kernelversion": "46~20.04.1", + "kernelrelease": "5.8.0-41-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1008_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1008-raspi_5.13.0-1008.9_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", + "kernelversion": "49~20.04.1", + "kernelrelease": "5.8.0-43-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-aws", - "target": "ubuntu-aws", + "kernelversion": "50~20.04.1", + "kernelrelease": "5.8.0-44-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-raspi", - "target": "ubuntu-raspi", + "kernelversion": "51~20.04.1", + "kernelrelease": "5.8.0-45-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1009_5.13.0-1009.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1009-raspi_5.13.0-1009.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.13.0-1009-oracle", - "target": "ubuntu-oracle", + "kernelversion": "54~20.04.1", + "kernelrelease": "5.8.0-48-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.13.0-1011-aws", - "target": "ubuntu-aws", + "kernelversion": "55~20.04.1", + "kernelrelease": "5.8.0-49-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.13.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelversion": "56~20.04.1", + "kernelrelease": "5.8.0-50-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.13.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelversion": "60~20.04.1", + "kernelrelease": "5.8.0-53-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1011_5.13.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1011-raspi_5.13.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.13.0-1012-aws", - "target": "ubuntu-aws", + "kernelversion": "62~20.04.1", + "kernelrelease": "5.8.0-55-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.13.0-1012-raspi", - "target": "ubuntu-raspi", + "kernelversion": "66~20.04.1", + "kernelrelease": "5.8.0-59-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1012-raspi_5.13.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1012_5.13.0-1012.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1013-oracle", - "target": "ubuntu-oracle", + "kernelversion": "71~20.04.1", + "kernelrelease": "5.8.0-63-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.13.0-1013-raspi", - "target": "ubuntu-raspi", + "kernelversion": "9~20.04.2", + "kernelrelease": "5.11.0-1009-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1013-raspi_5.13.0-1013.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1013_5.13.0-1013.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-1015-oracle", - "target": "ubuntu-oracle", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1012-gcp-5.15", + "target": "ubuntu-gcp-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_arm64.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.13.0-1015-raspi", - "target": "ubuntu-raspi", + "kernelversion": "16~20.04.1", + "kernelrelease": "5.15.0-1013-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1015_5.13.0-1015.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1015-raspi_5.13.0-1015.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_arm64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.13.0-1016-raspi", - "target": "ubuntu-raspi", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.15.0-1014-aws-5.15", + "target": "ubuntu-aws-5.15", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1016_5.13.0-1016.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1016-raspi_5.13.0-1016.18_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.13.0-1021-azure", - "target": "ubuntu-azure", + "kernelversion": "10", + "kernelrelease": "5.4.0-1007-bluefield", + "target": "ubuntu-bluefield", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1021-oracle", + "kernelversion": "53", + "kernelrelease": "5.4.0-1049-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1022-azure", - "target": "ubuntu-azure", + "kernelversion": "91", + "kernelrelease": "5.4.0-1083-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1083_5.4.0-1083.91_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.13.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelversion": "60", + "kernelrelease": "5.4.0-54-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelversion": "72", + "kernelrelease": "5.4.0-64-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.13.0-1028-aws", - "target": "ubuntu-aws", + "kernelversion": "35~20.04.2", + "kernelrelease": "5.8.0-1034-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.13.0-1030-oracle", - "target": "ubuntu-oracle", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.8.0-23-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.13.0-1031-aws", - "target": "ubuntu-aws", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.8.0-25-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.13.0-1031-azure", - "target": "ubuntu-azure", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.8.0-28-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.13.0-1031-raspi", - "target": "ubuntu-raspi", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.8.0-29-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1031-raspi_5.13.0-1031.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1031_5.13.0-1031.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.13.0-1033-oracle", - "target": "ubuntu-oracle", + "kernelversion": "45~20.04.1", + "kernelrelease": "5.8.0-40-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.13.0-1036-oracle", - "target": "ubuntu-oracle", + "kernelversion": "8", + "kernelrelease": "5.4.0-1008-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-21", - "target": "ubuntu-generic", + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-22", + "kernelversion": "30", + "kernelrelease": "5.4.0-26-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-23", - "target": "ubuntu-generic", + "kernelversion": "7", + "kernelrelease": "5.15.0-1007-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-25", - "target": "ubuntu-generic", + "kernelversion": "16", + "kernelrelease": "5.15.0-1014-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1014-raspi_5.15.0-1014.16_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1014_5.15.0-1014.16_arm64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-27", - "target": "ubuntu-generic", + "kernelversion": "18", + "kernelrelease": "5.15.0-1015-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1015-gke_5.15.0-1015.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1015_5.15.0-1015.18_arm64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.13.0-28", - "target": "ubuntu-generic", + "kernelversion": "23", + "kernelrelease": "5.15.0-1017-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1017_5.15.0-1017.23_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23_arm64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.13.0-30", - "target": "ubuntu-generic", + "kernelversion": "22", + "kernelrelease": "5.15.0-1017-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1017_5.15.0-1017.22_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22_arm64.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.13.0-35", - "target": "ubuntu-generic", + "kernelversion": "23", + "kernelrelease": "5.15.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1019_5.15.0-1019.23_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1019-aws_5.15.0-1019.23_arm64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.13.0-37", - "target": "ubuntu-generic", + "kernelversion": "24", + "kernelrelease": "5.15.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1019_5.15.0-1019.24_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1019-azure_5.15.0-1019.24_arm64.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "5.13.0-39", + "kernelversion": "51", + "kernelrelease": "5.15.0-47-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-47_5.15.0-47.51_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-47-generic_5.15.0-47.51_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-47-generic-64k_5.15.0-47.51_arm64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.13.0-40", - "target": "ubuntu-generic", + "kernelversion": "53", + "kernelrelease": "5.15.0-47-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-47-lowlatency-64k_5.15.0-47.53_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-47_5.15.0-47.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-47-lowlatency_5.15.0-47.53_arm64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "5.13.0-41", - "target": "ubuntu-generic", + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.13.0-44", - "target": "ubuntu-generic", + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb" ] }, { - "kernelversion": "54", - "kernelrelease": "5.13.0-48", - "target": "ubuntu-generic", + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.13.0-51", - "target": "ubuntu-generic", + "kernelversion": "8", + "kernelrelease": "5.15.0-1005-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-51-generic-64k_5.13.0-51.58_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.13.0-1026-azure", - "target": "ubuntu-azure", + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-nvidia", + "target": "ubuntu-nvidia", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-nvidia/linux-nvidia-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-nvidia/linux-headers-5.15.0-1005-nvidia-64k_5.15.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-nvidia/linux-headers-5.15.0-1005-nvidia_5.15.0-1005.5_arm64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.13.0-1029-raspi", + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-raspi", "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.13.0-1029_5.13.0-1029.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.13.0-1029-raspi_5.13.0-1029.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.13.0-1031-oracle", + "kernelversion": "8", + "kernelrelease": "5.15.0-1006-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.13.0-20", - "target": "ubuntu-generic", + "kernelversion": "8", + "kernelrelease": "5.15.0-1007-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic-64k_5.13.0-20.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { - "kernelversion": "51", - "kernelrelease": "5.13.0-46", - "target": "ubuntu-generic", + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic-64k_5.13.0-46.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.13.0-1005-aws", + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1008-oracle", - "target": "ubuntu-oracle", + "kernelversion": "12", + "kernelrelease": "5.15.0-1008-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_arm64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-19", - "target": "ubuntu-generic", + "kernelversion": "8", + "kernelrelease": "5.15.0-1008-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.15.0-1004-gke", - "target": "ubuntu-gke", + "kernelversion": "12", + "kernelrelease": "5.15.0-1009-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.15.0-1005-gcp", - "target": "ubuntu-gcp", + "kernelversion": "12", + "kernelrelease": "5.15.0-1010-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1006-azure", - "target": "ubuntu-azure", + "kernelversion": "15", + "kernelrelease": "5.15.0-1010-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_arm64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1006-gke", + "kernelversion": "13", + "kernelrelease": "5.15.0-1010-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_arm64.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.15.0-1006-oracle", - "target": "ubuntu-oracle", + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.15.0-1007-azure", - "target": "ubuntu-azure", + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_arm64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1007-raspi", - "target": "ubuntu-raspi", + "kernelversion": "15", + "kernelrelease": "5.15.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-gke", - "target": "ubuntu-gke", + "kernelversion": "13", + "kernelrelease": "5.15.0-1011-raspi", + "target": "ubuntu-raspi", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1011-raspi_5.15.0-1011.13_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1011_5.15.0-1011.13_arm64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-aws", - "target": "ubuntu-aws", + "kernelversion": "15", + "kernelrelease": "5.15.0-1012-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_arm64.deb" ] }, { @@ -11219,15 +10938,6 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1012-raspi_5.15.0-1012.14_arm64.deb" ] }, - { - "kernelversion": "16", - "kernelrelease": "5.15.0-1013-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb" - ] - }, { "kernelversion": "17", "kernelrelease": "5.15.0-1013-oracle", @@ -11248,20 +10958,38 @@ }, { "kernelversion": "18", - "kernelrelease": "5.15.0-1014-aws", - "target": "ubuntu-aws", + "kernelrelease": "5.15.0-1013-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1013_5.15.0-1013.18_arm64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.15.0-1013-raspi", + "target": "ubuntu-raspi", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1013_5.15.0-1013.15_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1013-raspi_5.15.0-1013.15_arm64.deb" + ] + }, + { + "kernelversion": "17", + "kernelrelease": "5.15.0-1014-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_arm64.deb" ] }, { "kernelversion": "17", - "kernelrelease": "5.15.0-1014-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.15.0-1014-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1014_5.15.0-1014.17_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1014-gke_5.15.0-1014.17_arm64.deb" ] }, { @@ -11274,42 +11002,48 @@ ] }, { - "kernelversion": "31", - "kernelrelease": "5.15.0-30", - "target": "ubuntu-generic", + "kernelversion": "21", + "kernelrelease": "5.15.0-1016-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1016_5.15.0-1016.21_arm64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.15.0-30-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "20", + "kernelrelease": "5.15.0-1016-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1016_5.15.0-1016.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20_arm64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.15.0-32-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "21", + "kernelrelease": "5.15.0-1017-aws", + "target": "ubuntu-aws", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1017_5.15.0-1017.21_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1017-aws_5.15.0-1017.21_arm64.deb" + ] + }, + { + "kernelversion": "20", + "kernelrelease": "5.15.0-1017-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency-64k_5.15.0-32.33_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1017_5.15.0-1017.20_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1017-azure_5.15.0-1017.20_arm64.deb" ] }, { "kernelversion": "34", - "kernelrelease": "5.15.0-33", + "kernelrelease": "5.15.0-33-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb" ] }, @@ -11318,219 +11052,206 @@ "kernelrelease": "5.15.0-33-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.15.0-40-lowlatency", + "kernelversion": "39", + "kernelrelease": "5.15.0-37-generic", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "5.15.0-37-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency-64k_5.15.0-40.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.15.0-40", + "kernelversion": "42", + "kernelrelease": "5.15.0-39-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency-64k_5.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.15.0-39-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic-64k_5.15.0-40.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic-64k_5.15.0-39.42_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_arm64.deb" ] }, { "kernelversion": "44", - "kernelrelease": "5.15.0-41", + "kernelrelease": "5.15.0-41-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41-generic-64k_5.15.0-41.44_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41-generic-64k_5.15.0-41.44_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-gke", - "target": "ubuntu-gke", + "kernelversion": "44", + "kernelrelease": "5.15.0-41-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-41_5.15.0-41.44_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-41-lowlatency-64k_5.15.0-41.44_arm64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", - "target": "ubuntu-aws", + "kernelversion": "46", + "kernelrelease": "5.15.0-43-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-43-generic-64k_5.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-43_5.15.0-43.46_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-43-generic_5.15.0-43.46_arm64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.15.0-1008-gcp", - "target": "ubuntu-gcp", + "kernelversion": "46", + "kernelrelease": "5.15.0-43-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-43-lowlatency-64k_5.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-43_5.15.0-43.46_all.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.15.0-1008-raspi", - "target": "ubuntu-raspi", + "kernelversion": "49", + "kernelrelease": "5.15.0-46-generic", + "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-46-generic-64k_5.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-46-generic_5.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-46_5.15.0-46.49_all.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.15.0-1009-oracle", - "target": "ubuntu-oracle", + "kernelversion": "49", + "kernelrelease": "5.15.0-46-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-46_5.15.0-46.49_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-46-lowlatency-64k_5.15.0-46.49_arm64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.15.0-1010-azure", - "target": "ubuntu-azure", + "kernelversion": "5", + "kernelrelease": "5.15.0-1004-gke", + "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_arm64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.15.0-1010-gcp", + "kernelversion": "9", + "kernelrelease": "5.15.0-1006-gcp", "target": "ubuntu-gcp", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_arm64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.15.0-1010-gke", + "kernelversion": "7", + "kernelrelease": "5.15.0-1006-gke", "target": "ubuntu-gke", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.15.0-1011-oracle", + "kernelversion": "9", + "kernelrelease": "5.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.15.0-1011-raspi", - "target": "ubuntu-raspi", + "kernelversion": "9", + "kernelrelease": "5.15.0-1008-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1011-raspi_5.15.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1011_5.15.0-1011.13_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.15.0-1012-azure", - "target": "ubuntu-azure", + "kernelversion": "11", + "kernelrelease": "5.15.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.15.0-37-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "16", + "kernelrelease": "5.15.0-1013-azure", + "target": "ubuntu-azure", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_arm64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.15.0-37", - "target": "ubuntu-generic", + "kernelversion": "18", + "kernelrelease": "5.15.0-1014-aws", + "target": "ubuntu-aws", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.15.0-39", + "kernelversion": "31", + "kernelrelease": "5.15.0-30-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic-64k_5.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.15.0-39-lowlatency", + "kernelversion": "31", + "kernelrelease": "5.15.0-30-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency-64k_5.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_arm64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1006-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_arm64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1007-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1008-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.15.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" ] }, { "kernelversion": "36", - "kernelrelease": "5.15.0-35", + "kernelrelease": "5.15.0-35-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", @@ -11543,11 +11264,31 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, + { + "kernelversion": "43", + "kernelrelease": "5.15.0-40-generic", + "target": "ubuntu-generic", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic-64k_5.15.0-40.43_arm64.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.15.0-40-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency-64k_5.15.0-40.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_arm64.deb" + ] + }, { "kernelversion": "4", "kernelrelease": "5.15.0-1002-oracle", @@ -11566,28 +11307,19 @@ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb" ] }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb" - ] - }, { "kernelversion": "25", - "kernelrelease": "5.15.0-25", + "kernelrelease": "5.15.0-25-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb", "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb" ] }, { "kernelversion": "147", - "kernelrelease": "3.13.0-100", + "kernelrelease": "3.13.0-100-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", @@ -11596,7 +11328,7 @@ }, { "kernelversion": "148", - "kernelrelease": "3.13.0-101", + "kernelrelease": "3.13.0-101-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb", @@ -11605,7 +11337,7 @@ }, { "kernelversion": "150", - "kernelrelease": "3.13.0-103", + "kernelrelease": "3.13.0-103-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", @@ -11614,7 +11346,7 @@ }, { "kernelversion": "152", - "kernelrelease": "3.13.0-105", + "kernelrelease": "3.13.0-105-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", @@ -11623,7 +11355,7 @@ }, { "kernelversion": "153", - "kernelrelease": "3.13.0-106", + "kernelrelease": "3.13.0-106-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_arm64.deb", @@ -11632,7 +11364,7 @@ }, { "kernelversion": "154", - "kernelrelease": "3.13.0-107", + "kernelrelease": "3.13.0-107-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb", @@ -11641,16 +11373,16 @@ }, { "kernelversion": "155", - "kernelrelease": "3.13.0-108", + "kernelrelease": "3.13.0-108-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" ] }, { "kernelversion": "156", - "kernelrelease": "3.13.0-109", + "kernelrelease": "3.13.0-109-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", @@ -11659,16 +11391,16 @@ }, { "kernelversion": "157", - "kernelrelease": "3.13.0-110", + "kernelrelease": "3.13.0-110-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb" ] }, { "kernelversion": "159", - "kernelrelease": "3.13.0-112", + "kernelrelease": "3.13.0-112-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", @@ -11677,16 +11409,16 @@ }, { "kernelversion": "162", - "kernelrelease": "3.13.0-115", + "kernelrelease": "3.13.0-115-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb" ] }, { "kernelversion": "163", - "kernelrelease": "3.13.0-116", + "kernelrelease": "3.13.0-116-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", @@ -11695,7 +11427,7 @@ }, { "kernelversion": "164", - "kernelrelease": "3.13.0-117", + "kernelrelease": "3.13.0-117-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", @@ -11704,7 +11436,7 @@ }, { "kernelversion": "166", - "kernelrelease": "3.13.0-119", + "kernelrelease": "3.13.0-119-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", @@ -11713,7 +11445,7 @@ }, { "kernelversion": "170", - "kernelrelease": "3.13.0-121", + "kernelrelease": "3.13.0-121-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", @@ -11722,7 +11454,7 @@ }, { "kernelversion": "172", - "kernelrelease": "3.13.0-123", + "kernelrelease": "3.13.0-123-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_arm64.deb", @@ -11731,25 +11463,25 @@ }, { "kernelversion": "174", - "kernelrelease": "3.13.0-125", + "kernelrelease": "3.13.0-125-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" ] }, { "kernelversion": "175", - "kernelrelease": "3.13.0-126", + "kernelrelease": "3.13.0-126-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb" ] }, { "kernelversion": "177", - "kernelrelease": "3.13.0-128", + "kernelrelease": "3.13.0-128-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", @@ -11758,7 +11490,7 @@ }, { "kernelversion": "178", - "kernelrelease": "3.13.0-129", + "kernelrelease": "3.13.0-129-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", @@ -11767,25 +11499,25 @@ }, { "kernelversion": "181", - "kernelrelease": "3.13.0-132", + "kernelrelease": "3.13.0-132-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb" ] }, { "kernelversion": "182", - "kernelrelease": "3.13.0-133", + "kernelrelease": "3.13.0-133-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb" ] }, { "kernelversion": "184", - "kernelrelease": "3.13.0-135", + "kernelrelease": "3.13.0-135-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_arm64.deb", @@ -11794,34 +11526,34 @@ }, { "kernelversion": "186", - "kernelrelease": "3.13.0-137", + "kernelrelease": "3.13.0-137-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb" ] }, { "kernelversion": "188", - "kernelrelease": "3.13.0-139", + "kernelrelease": "3.13.0-139-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" ] }, { "kernelversion": "190", - "kernelrelease": "3.13.0-141", + "kernelrelease": "3.13.0-141-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb" ] }, { "kernelversion": "191", - "kernelrelease": "3.13.0-142", + "kernelrelease": "3.13.0-142-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb", @@ -11830,25 +11562,25 @@ }, { "kernelversion": "192", - "kernelrelease": "3.13.0-143", + "kernelrelease": "3.13.0-143-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb" ] }, { "kernelversion": "193", - "kernelrelease": "3.13.0-144", + "kernelrelease": "3.13.0-144-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" ] }, { "kernelversion": "196", - "kernelrelease": "3.13.0-147", + "kernelrelease": "3.13.0-147-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb", @@ -11857,7 +11589,7 @@ }, { "kernelversion": "199", - "kernelrelease": "3.13.0-149", + "kernelrelease": "3.13.0-149-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", @@ -11866,16 +11598,16 @@ }, { "kernelversion": "201", - "kernelrelease": "3.13.0-151", + "kernelrelease": "3.13.0-151-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" ] }, { "kernelversion": "203", - "kernelrelease": "3.13.0-153", + "kernelrelease": "3.13.0-153-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb", @@ -11884,7 +11616,7 @@ }, { "kernelversion": "205", - "kernelrelease": "3.13.0-155", + "kernelrelease": "3.13.0-155-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb", @@ -11893,7 +11625,7 @@ }, { "kernelversion": "206", - "kernelrelease": "3.13.0-156", + "kernelrelease": "3.13.0-156-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb", @@ -11902,7 +11634,7 @@ }, { "kernelversion": "207", - "kernelrelease": "3.13.0-157", + "kernelrelease": "3.13.0-157-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", @@ -11911,7 +11643,7 @@ }, { "kernelversion": "210", - "kernelrelease": "3.13.0-160", + "kernelrelease": "3.13.0-160-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", @@ -11920,34 +11652,34 @@ }, { "kernelversion": "211", - "kernelrelease": "3.13.0-161", + "kernelrelease": "3.13.0-161-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" ] }, { "kernelversion": "212", - "kernelrelease": "3.13.0-162", + "kernelrelease": "3.13.0-162-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" ] }, { "kernelversion": "214", - "kernelrelease": "3.13.0-164", + "kernelrelease": "3.13.0-164-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" ] }, { "kernelversion": "215", - "kernelrelease": "3.13.0-165", + "kernelrelease": "3.13.0-165-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb", @@ -11956,7 +11688,7 @@ }, { "kernelversion": "216", - "kernelrelease": "3.13.0-166", + "kernelrelease": "3.13.0-166-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb", @@ -11965,7 +11697,7 @@ }, { "kernelversion": "217", - "kernelrelease": "3.13.0-167", + "kernelrelease": "3.13.0-167-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb", @@ -11974,25 +11706,25 @@ }, { "kernelversion": "218", - "kernelrelease": "3.13.0-168", + "kernelrelease": "3.13.0-168-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" ] }, { "kernelversion": "220", - "kernelrelease": "3.13.0-170", + "kernelrelease": "3.13.0-170-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb" ] }, { "kernelversion": "47", - "kernelrelease": "3.13.0-24", + "kernelrelease": "3.13.0-24-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb", @@ -12001,7 +11733,7 @@ }, { "kernelversion": "50", - "kernelrelease": "3.13.0-27", + "kernelrelease": "3.13.0-27-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb", @@ -12010,16 +11742,16 @@ }, { "kernelversion": "53", - "kernelrelease": "3.13.0-29", + "kernelrelease": "3.13.0-29-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb" ] }, { "kernelversion": "55", - "kernelrelease": "3.13.0-30", + "kernelrelease": "3.13.0-30-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb", @@ -12028,16 +11760,16 @@ }, { "kernelversion": "57", - "kernelrelease": "3.13.0-32", + "kernelrelease": "3.13.0-32-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "3.13.0-33", + "kernelrelease": "3.13.0-33-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb", @@ -12046,7 +11778,7 @@ }, { "kernelversion": "60", - "kernelrelease": "3.13.0-34", + "kernelrelease": "3.13.0-34-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", @@ -12055,7 +11787,7 @@ }, { "kernelversion": "62", - "kernelrelease": "3.13.0-35", + "kernelrelease": "3.13.0-35-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb", @@ -12064,16 +11796,16 @@ }, { "kernelversion": "63", - "kernelrelease": "3.13.0-36", + "kernelrelease": "3.13.0-36-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "3.13.0-37", + "kernelrelease": "3.13.0-37-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_arm64.deb", @@ -12082,7 +11814,7 @@ }, { "kernelversion": "66", - "kernelrelease": "3.13.0-39", + "kernelrelease": "3.13.0-39-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb", @@ -12091,16 +11823,16 @@ }, { "kernelversion": "69", - "kernelrelease": "3.13.0-40", + "kernelrelease": "3.13.0-40-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb" ] }, { "kernelversion": "70", - "kernelrelease": "3.13.0-41", + "kernelrelease": "3.13.0-41-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", @@ -12109,16 +11841,16 @@ }, { "kernelversion": "72", - "kernelrelease": "3.13.0-43", + "kernelrelease": "3.13.0-43-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb" ] }, { "kernelversion": "73", - "kernelrelease": "3.13.0-44", + "kernelrelease": "3.13.0-44-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", @@ -12127,7 +11859,7 @@ }, { "kernelversion": "79", - "kernelrelease": "3.13.0-46", + "kernelrelease": "3.13.0-46-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_arm64.deb", @@ -12136,7 +11868,7 @@ }, { "kernelversion": "80", - "kernelrelease": "3.13.0-48", + "kernelrelease": "3.13.0-48-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", @@ -12145,16 +11877,16 @@ }, { "kernelversion": "83", - "kernelrelease": "3.13.0-49", + "kernelrelease": "3.13.0-49-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, { "kernelversion": "84", - "kernelrelease": "3.13.0-51", + "kernelrelease": "3.13.0-51-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb", @@ -12163,61 +11895,61 @@ }, { "kernelversion": "86", - "kernelrelease": "3.13.0-52", + "kernelrelease": "3.13.0-52-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" ] }, { "kernelversion": "89", - "kernelrelease": "3.13.0-53", + "kernelrelease": "3.13.0-53-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb" ] }, { "kernelversion": "91", - "kernelrelease": "3.13.0-54", + "kernelrelease": "3.13.0-54-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" ] }, { "kernelversion": "94", - "kernelrelease": "3.13.0-55", + "kernelrelease": "3.13.0-55-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb" ] }, { "kernelversion": "95", - "kernelrelease": "3.13.0-57", + "kernelrelease": "3.13.0-57-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" ] }, { "kernelversion": "97", - "kernelrelease": "3.13.0-58", + "kernelrelease": "3.13.0-58-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" ] }, { "kernelversion": "98", - "kernelrelease": "3.13.0-59", + "kernelrelease": "3.13.0-59-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", @@ -12226,16 +11958,16 @@ }, { "kernelversion": "100", - "kernelrelease": "3.13.0-61", + "kernelrelease": "3.13.0-61-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" ] }, { "kernelversion": "102", - "kernelrelease": "3.13.0-62", + "kernelrelease": "3.13.0-62-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", @@ -12244,7 +11976,7 @@ }, { "kernelversion": "103", - "kernelrelease": "3.13.0-63", + "kernelrelease": "3.13.0-63-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", @@ -12253,25 +11985,25 @@ }, { "kernelversion": "106", - "kernelrelease": "3.13.0-65", + "kernelrelease": "3.13.0-65-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb" ] }, { "kernelversion": "108", - "kernelrelease": "3.13.0-66", + "kernelrelease": "3.13.0-66-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" ] }, { "kernelversion": "110", - "kernelrelease": "3.13.0-67", + "kernelrelease": "3.13.0-67-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", @@ -12280,7 +12012,7 @@ }, { "kernelversion": "111", - "kernelrelease": "3.13.0-68", + "kernelrelease": "3.13.0-68-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", @@ -12289,16 +12021,16 @@ }, { "kernelversion": "113", - "kernelrelease": "3.13.0-70", + "kernelrelease": "3.13.0-70-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb" ] }, { "kernelversion": "114", - "kernelrelease": "3.13.0-71", + "kernelrelease": "3.13.0-71-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb", @@ -12307,7 +12039,7 @@ }, { "kernelversion": "116", - "kernelrelease": "3.13.0-73", + "kernelrelease": "3.13.0-73-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb", @@ -12316,7 +12048,7 @@ }, { "kernelversion": "118", - "kernelrelease": "3.13.0-74", + "kernelrelease": "3.13.0-74-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb", @@ -12325,7 +12057,7 @@ }, { "kernelversion": "120", - "kernelrelease": "3.13.0-76", + "kernelrelease": "3.13.0-76-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", @@ -12334,7 +12066,7 @@ }, { "kernelversion": "121", - "kernelrelease": "3.13.0-77", + "kernelrelease": "3.13.0-77-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", @@ -12343,7 +12075,7 @@ }, { "kernelversion": "123", - "kernelrelease": "3.13.0-79", + "kernelrelease": "3.13.0-79-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb", @@ -12352,34 +12084,34 @@ }, { "kernelversion": "127", - "kernelrelease": "3.13.0-83", + "kernelrelease": "3.13.0-83-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" ] }, { "kernelversion": "129", - "kernelrelease": "3.13.0-85", + "kernelrelease": "3.13.0-85-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" ] }, { "kernelversion": "131", - "kernelrelease": "3.13.0-86", + "kernelrelease": "3.13.0-86-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" ] }, { "kernelversion": "133", - "kernelrelease": "3.13.0-87", + "kernelrelease": "3.13.0-87-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", @@ -12388,52 +12120,52 @@ }, { "kernelversion": "135", - "kernelrelease": "3.13.0-88", + "kernelrelease": "3.13.0-88-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" ] }, { "kernelversion": "138", - "kernelrelease": "3.13.0-91", + "kernelrelease": "3.13.0-91-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb" ] }, { "kernelversion": "139", - "kernelrelease": "3.13.0-92", + "kernelrelease": "3.13.0-92-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb" ] }, { "kernelversion": "140", - "kernelrelease": "3.13.0-93", + "kernelrelease": "3.13.0-93-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb" ] }, { "kernelversion": "142", - "kernelrelease": "3.13.0-95", + "kernelrelease": "3.13.0-95-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb" ] }, { "kernelversion": "143", - "kernelrelease": "3.13.0-96", + "kernelrelease": "3.13.0-96-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", @@ -12442,7 +12174,7 @@ }, { "kernelversion": "145", - "kernelrelease": "3.13.0-98", + "kernelrelease": "3.13.0-98-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", @@ -12463,8 +12195,8 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" ] }, { @@ -12472,8 +12204,8 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" ] }, { @@ -12490,8 +12222,8 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb" ] }, { @@ -12517,8 +12249,8 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" ] }, { @@ -12535,8 +12267,8 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb" ] }, { @@ -12553,8 +12285,8 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" ] }, { @@ -12571,8 +12303,8 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb" ] }, { @@ -12580,8 +12312,8 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" ] }, { @@ -12598,8 +12330,8 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb" ] }, { @@ -12607,8 +12339,8 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb" ] }, { @@ -12625,8 +12357,8 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb" ] }, { @@ -12652,8 +12384,8 @@ "kernelrelease": "3.16.0-55-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" ] }, { @@ -12661,8 +12393,8 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb" ] }, { @@ -12679,8 +12411,8 @@ "kernelrelease": "3.16.0-59-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb" ] }, { @@ -12697,8 +12429,8 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb" ] }, { @@ -12706,8 +12438,8 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" ] }, { @@ -12715,8 +12447,8 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" ] }, { @@ -12724,8 +12456,8 @@ "kernelrelease": "3.16.0-70-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb" ] }, { @@ -12742,8 +12474,8 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" ] }, { @@ -12760,8 +12492,8 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb" ] }, { @@ -12769,8 +12501,8 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" ] }, { @@ -12778,8 +12510,8 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb" ] }, { @@ -12832,8 +12564,8 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" ] }, { @@ -12841,8 +12573,8 @@ "kernelrelease": "3.19.0-31-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" ] }, { @@ -12850,8 +12582,8 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb" ] }, { @@ -12868,8 +12600,8 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" ] }, { @@ -12877,8 +12609,8 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" ] }, { @@ -12886,8 +12618,8 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb" ] }, { @@ -12895,8 +12627,8 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb" ] }, { @@ -12904,8 +12636,8 @@ "kernelrelease": "3.19.0-43-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" ] }, { @@ -12913,8 +12645,8 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb" ] }, { @@ -12931,8 +12663,8 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" ] }, { @@ -12940,8 +12672,8 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" ] }, { @@ -12958,8 +12690,8 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" ] }, { @@ -12967,8 +12699,8 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb" ] }, { @@ -12994,8 +12726,8 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb" ] }, { @@ -13012,8 +12744,8 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb" ] }, { @@ -13057,8 +12789,8 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb" ] }, { @@ -13075,8 +12807,8 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb" ] }, { @@ -13084,8 +12816,8 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb" ] }, { @@ -13102,8 +12834,8 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" ] }, { @@ -13111,8 +12843,8 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" ] }, { @@ -13120,8 +12852,8 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb" ] }, { @@ -13147,8 +12879,8 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb" ] }, { @@ -13156,8 +12888,8 @@ "kernelrelease": "4.2.0-30-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb" ] }, { @@ -13165,8 +12897,8 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb" ] }, { @@ -13192,8 +12924,8 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" ] }, { @@ -13210,8 +12942,8 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb" ] }, { @@ -13219,8 +12951,8 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb" ] }, { @@ -13228,8 +12960,8 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" ] }, { @@ -13246,8 +12978,8 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb" ] }, { @@ -13264,8 +12996,8 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" ] }, { @@ -13291,8 +13023,8 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" ] }, { @@ -13318,8 +13050,8 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" ] }, { @@ -13327,8 +13059,8 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" ] }, { @@ -13336,8 +13068,8 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" ] }, { @@ -13354,8 +13086,8 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" ] }, { @@ -13363,8 +13095,8 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" ] }, { @@ -13372,8 +13104,8 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" ] }, { @@ -13399,8 +13131,8 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb" ] }, { @@ -13417,8 +13149,8 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb" ] }, { @@ -13426,8 +13158,8 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" ] }, { @@ -13444,8 +13176,8 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb" ] }, { @@ -13453,8 +13185,8 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" ] }, { @@ -13480,8 +13212,8 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" ] }, { @@ -13489,8 +13221,8 @@ "kernelrelease": "4.4.0-36-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb" ] }, { @@ -13579,8 +13311,8 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" ] }, { @@ -13624,8 +13356,8 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb" ] }, { @@ -13633,8 +13365,8 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" ] }, { @@ -13651,8 +13383,8 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb" ] }, { @@ -13660,8 +13392,8 @@ "kernelrelease": "4.4.0-79-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb" ] }, { @@ -13669,8 +13401,8 @@ "kernelrelease": "4.4.0-81-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" ] }, { @@ -13678,8 +13410,8 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" ] }, { @@ -13687,8 +13419,8 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb" ] }, { @@ -13723,8 +13455,8 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" ] }, { @@ -13732,8 +13464,8 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb" ] }, { @@ -13741,8 +13473,8 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" ] }, { @@ -13756,16 +13488,16 @@ }, { "kernelversion": "160", - "kernelrelease": "3.13.0-113", + "kernelrelease": "3.13.0-113-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" ] }, { "kernelversion": "194", - "kernelrelease": "3.13.0-145", + "kernelrelease": "3.13.0-145-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", @@ -13774,25 +13506,25 @@ }, { "kernelversion": "208", - "kernelrelease": "3.13.0-158", + "kernelrelease": "3.13.0-158-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" ] }, { "kernelversion": "213", - "kernelrelease": "3.13.0-163", + "kernelrelease": "3.13.0-163-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb" ] }, { "kernelversion": "219", - "kernelrelease": "3.13.0-169", + "kernelrelease": "3.13.0-169-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb", @@ -13801,7 +13533,7 @@ }, { "kernelversion": "74", - "kernelrelease": "3.13.0-45", + "kernelrelease": "3.13.0-45-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb", @@ -13831,8 +13563,8 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb" ] }, { @@ -13840,8 +13572,8 @@ "kernelrelease": "4.4.0-131-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" ] }, { @@ -13849,8 +13581,8 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" ] }, { @@ -13858,8 +13590,8 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" ] }, { @@ -13873,11 +13605,11 @@ }, { "kernelversion": "46", - "kernelrelease": "3.13.0-24", + "kernelrelease": "3.13.0-24-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" ] }, { @@ -13900,20 +13632,20 @@ }, { "kernelversion": "238", - "kernelrelease": "4.4.0-206", + "kernelrelease": "4.4.0-206-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" ] }, { "kernelversion": "239", - "kernelrelease": "4.4.0-207", + "kernelrelease": "4.4.0-207-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb" ] }, { @@ -13921,8 +13653,8 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" ] }, { @@ -13939,8 +13671,8 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb" ] }, { @@ -13948,8 +13680,8 @@ "kernelrelease": "4.10.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb" ] }, { @@ -13966,8 +13698,8 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb" ] }, { @@ -13975,8 +13707,8 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" ] }, { @@ -13984,8 +13716,8 @@ "kernelrelease": "4.10.0-27-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb" ] }, { @@ -14002,8 +13734,8 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb" ] }, { @@ -14011,8 +13743,8 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb" ] }, { @@ -14029,8 +13761,8 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" ] }, { @@ -14047,8 +13779,8 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" ] }, { @@ -14065,8 +13797,8 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" ] }, { @@ -14110,8 +13842,8 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" ] }, { @@ -14164,8 +13896,8 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb" ] }, { @@ -14173,8 +13905,8 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb" ] }, { @@ -14182,8 +13914,8 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb" ] }, { @@ -14200,8 +13932,8 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" ] }, { @@ -14227,8 +13959,8 @@ "kernelrelease": "4.15.0-101-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" ] }, { @@ -14245,8 +13977,8 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb" ] }, { @@ -14263,8 +13995,8 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb" ] }, { @@ -14281,8 +14013,8 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb" ] }, { @@ -14290,8 +14022,8 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb" ] }, { @@ -14353,8 +14085,8 @@ "kernelrelease": "4.15.0-123-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb" ] }, { @@ -14380,8 +14112,8 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" ] }, { @@ -14389,8 +14121,8 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" ] }, { @@ -14398,8 +14130,8 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" ] }, { @@ -14407,8 +14139,8 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb" ] }, { @@ -14434,8 +14166,8 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" ] }, { @@ -14443,8 +14175,8 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" ] }, { @@ -14461,8 +14193,8 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" ] }, { @@ -14470,8 +14202,8 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" ] }, { @@ -14497,8 +14229,8 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb" ] }, { @@ -14515,8 +14247,8 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" ] }, { @@ -14524,8 +14256,8 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb" ] }, { @@ -14542,8 +14274,8 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb" ] }, { @@ -14551,8 +14283,8 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" ] }, { @@ -14587,8 +14319,8 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" ] }, { @@ -14605,8 +14337,8 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" ] }, { @@ -14641,8 +14373,8 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" ] }, { @@ -14677,8 +14409,8 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb" ] }, { @@ -14722,8 +14454,8 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" ] }, { @@ -14740,8 +14472,8 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" ] }, { @@ -14749,8 +14481,8 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" ] }, { @@ -14776,31 +14508,31 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" ] }, { "kernelversion": "124", - "kernelrelease": "4.4.0-101", + "kernelrelease": "4.4.0-101-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" ] }, { "kernelversion": "126", - "kernelrelease": "4.4.0-103", + "kernelrelease": "4.4.0-103-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" ] }, { "kernelversion": "127", - "kernelrelease": "4.4.0-104", + "kernelrelease": "4.4.0-104-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", @@ -14809,7 +14541,7 @@ }, { "kernelversion": "131", - "kernelrelease": "4.4.0-108", + "kernelrelease": "4.4.0-108-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", @@ -14818,7 +14550,7 @@ }, { "kernelversion": "132", - "kernelrelease": "4.4.0-109", + "kernelrelease": "4.4.0-109-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb", @@ -14827,16 +14559,16 @@ }, { "kernelversion": "135", - "kernelrelease": "4.4.0-112", + "kernelrelease": "4.4.0-112-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb" ] }, { "kernelversion": "140", - "kernelrelease": "4.4.0-116", + "kernelrelease": "4.4.0-116-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb", @@ -14845,25 +14577,25 @@ }, { "kernelversion": "143", - "kernelrelease": "4.4.0-119", + "kernelrelease": "4.4.0-119-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" ] }, { "kernelversion": "145", - "kernelrelease": "4.4.0-121", + "kernelrelease": "4.4.0-121-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb" ] }, { "kernelversion": "148", - "kernelrelease": "4.4.0-124", + "kernelrelease": "4.4.0-124-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb", @@ -14872,16 +14604,16 @@ }, { "kernelversion": "153", - "kernelrelease": "4.4.0-127", + "kernelrelease": "4.4.0-127-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb" ] }, { "kernelversion": "154", - "kernelrelease": "4.4.0-128", + "kernelrelease": "4.4.0-128-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", @@ -14890,34 +14622,34 @@ }, { "kernelversion": "156", - "kernelrelease": "4.4.0-130", + "kernelrelease": "4.4.0-130-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" ] }, { "kernelversion": "159", - "kernelrelease": "4.4.0-133", + "kernelrelease": "4.4.0-133-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" ] }, { "kernelversion": "160", - "kernelrelease": "4.4.0-134", + "kernelrelease": "4.4.0-134-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" ] }, { "kernelversion": "163", - "kernelrelease": "4.4.0-137", + "kernelrelease": "4.4.0-137-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_arm64.deb", @@ -14926,16 +14658,16 @@ }, { "kernelversion": "164", - "kernelrelease": "4.4.0-138", + "kernelrelease": "4.4.0-138-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" ] }, { "kernelversion": "165", - "kernelrelease": "4.4.0-139", + "kernelrelease": "4.4.0-139-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", @@ -14944,25 +14676,25 @@ }, { "kernelversion": "167", - "kernelrelease": "4.4.0-141", + "kernelrelease": "4.4.0-141-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb" ] }, { "kernelversion": "168", - "kernelrelease": "4.4.0-142", + "kernelrelease": "4.4.0-142-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb" ] }, { "kernelversion": "169", - "kernelrelease": "4.4.0-143", + "kernelrelease": "4.4.0-143-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb", @@ -14971,16 +14703,16 @@ }, { "kernelversion": "171", - "kernelrelease": "4.4.0-145", + "kernelrelease": "4.4.0-145-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" ] }, { "kernelversion": "174", - "kernelrelease": "4.4.0-148", + "kernelrelease": "4.4.0-148-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", @@ -14989,7 +14721,7 @@ }, { "kernelversion": "176", - "kernelrelease": "4.4.0-150", + "kernelrelease": "4.4.0-150-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb", @@ -14998,7 +14730,7 @@ }, { "kernelversion": "178", - "kernelrelease": "4.4.0-151", + "kernelrelease": "4.4.0-151-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", @@ -15007,7 +14739,7 @@ }, { "kernelversion": "181", - "kernelrelease": "4.4.0-154", + "kernelrelease": "4.4.0-154-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", @@ -15016,25 +14748,25 @@ }, { "kernelversion": "185", - "kernelrelease": "4.4.0-157", + "kernelrelease": "4.4.0-157-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" ] }, { "kernelversion": "187", - "kernelrelease": "4.4.0-159", + "kernelrelease": "4.4.0-159-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb" ] }, { "kernelversion": "189", - "kernelrelease": "4.4.0-161", + "kernelrelease": "4.4.0-161-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb", @@ -15043,16 +14775,16 @@ }, { "kernelversion": "192", - "kernelrelease": "4.4.0-164", + "kernelrelease": "4.4.0-164-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" ] }, { "kernelversion": "193", - "kernelrelease": "4.4.0-165", + "kernelrelease": "4.4.0-165-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb", @@ -15061,7 +14793,7 @@ }, { "kernelversion": "195", - "kernelrelease": "4.4.0-166", + "kernelrelease": "4.4.0-166-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb", @@ -15070,25 +14802,25 @@ }, { "kernelversion": "197", - "kernelrelease": "4.4.0-168", + "kernelrelease": "4.4.0-168-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" ] }, { "kernelversion": "198", - "kernelrelease": "4.4.0-169", + "kernelrelease": "4.4.0-169-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" ] }, { "kernelversion": "199", - "kernelrelease": "4.4.0-170", + "kernelrelease": "4.4.0-170-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", @@ -15097,25 +14829,25 @@ }, { "kernelversion": "200", - "kernelrelease": "4.4.0-171", + "kernelrelease": "4.4.0-171-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb" ] }, { "kernelversion": "203", - "kernelrelease": "4.4.0-173", + "kernelrelease": "4.4.0-173-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" ] }, { "kernelversion": "204", - "kernelrelease": "4.4.0-174", + "kernelrelease": "4.4.0-174-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", @@ -15124,34 +14856,34 @@ }, { "kernelversion": "206", - "kernelrelease": "4.4.0-176", + "kernelrelease": "4.4.0-176-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" ] }, { "kernelversion": "207", - "kernelrelease": "4.4.0-177", + "kernelrelease": "4.4.0-177-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb" ] }, { "kernelversion": "208", - "kernelrelease": "4.4.0-178", + "kernelrelease": "4.4.0-178-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb" ] }, { "kernelversion": "209", - "kernelrelease": "4.4.0-179", + "kernelrelease": "4.4.0-179-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_arm64.deb", @@ -15160,16 +14892,16 @@ }, { "kernelversion": "214", - "kernelrelease": "4.4.0-184", + "kernelrelease": "4.4.0-184-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb" ] }, { "kernelversion": "215", - "kernelrelease": "4.4.0-185", + "kernelrelease": "4.4.0-185-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", @@ -15178,7 +14910,7 @@ }, { "kernelversion": "216", - "kernelrelease": "4.4.0-186", + "kernelrelease": "4.4.0-186-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb", @@ -15187,16 +14919,16 @@ }, { "kernelversion": "217", - "kernelrelease": "4.4.0-187", + "kernelrelease": "4.4.0-187-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" ] }, { "kernelversion": "219", - "kernelrelease": "4.4.0-189", + "kernelrelease": "4.4.0-189-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", @@ -15205,61 +14937,61 @@ }, { "kernelversion": "220", - "kernelrelease": "4.4.0-190", + "kernelrelease": "4.4.0-190-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" ] }, { "kernelversion": "224", - "kernelrelease": "4.4.0-193", + "kernelrelease": "4.4.0-193-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb" ] }, { "kernelversion": "226", - "kernelrelease": "4.4.0-194", + "kernelrelease": "4.4.0-194-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb" ] }, { "kernelversion": "229", - "kernelrelease": "4.4.0-197", + "kernelrelease": "4.4.0-197-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" ] }, { "kernelversion": "230", - "kernelrelease": "4.4.0-198", + "kernelrelease": "4.4.0-198-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" ] }, { "kernelversion": "232", - "kernelrelease": "4.4.0-200", + "kernelrelease": "4.4.0-200-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" ] }, { "kernelversion": "233", - "kernelrelease": "4.4.0-201", + "kernelrelease": "4.4.0-201-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", @@ -15268,7 +15000,7 @@ }, { "kernelversion": "235", - "kernelrelease": "4.4.0-203", + "kernelrelease": "4.4.0-203-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb", @@ -15277,7 +15009,7 @@ }, { "kernelversion": "236", - "kernelrelease": "4.4.0-204", + "kernelrelease": "4.4.0-204-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", @@ -15286,7 +15018,7 @@ }, { "kernelversion": "240", - "kernelrelease": "4.4.0-208", + "kernelrelease": "4.4.0-208-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", @@ -15295,7 +15027,7 @@ }, { "kernelversion": "241", - "kernelrelease": "4.4.0-209", + "kernelrelease": "4.4.0-209-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb", @@ -15304,7 +15036,7 @@ }, { "kernelversion": "242", - "kernelrelease": "4.4.0-210", + "kernelrelease": "4.4.0-210-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", @@ -15313,34 +15045,34 @@ }, { "kernelversion": "40", - "kernelrelease": "4.4.0-22", + "kernelrelease": "4.4.0-22-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.4.0-24", + "kernelrelease": "4.4.0-24-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" ] }, { "kernelversion": "47", - "kernelrelease": "4.4.0-28", + "kernelrelease": "4.4.0-28-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" ] }, { "kernelversion": "50", - "kernelrelease": "4.4.0-31", + "kernelrelease": "4.4.0-31-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb", @@ -15349,7 +15081,7 @@ }, { "kernelversion": "53", - "kernelrelease": "4.4.0-34", + "kernelrelease": "4.4.0-34-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", @@ -15358,16 +15090,16 @@ }, { "kernelversion": "55", - "kernelrelease": "4.4.0-36", + "kernelrelease": "4.4.0-36-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" ] }, { "kernelversion": "57", - "kernelrelease": "4.4.0-38", + "kernelrelease": "4.4.0-38-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_arm64.deb", @@ -15376,7 +15108,7 @@ }, { "kernelversion": "62", - "kernelrelease": "4.4.0-42", + "kernelrelease": "4.4.0-42-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", @@ -15385,16 +15117,16 @@ }, { "kernelversion": "66", - "kernelrelease": "4.4.0-45", + "kernelrelease": "4.4.0-45-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb" ] }, { "kernelversion": "68", - "kernelrelease": "4.4.0-47", + "kernelrelease": "4.4.0-47-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", @@ -15403,16 +15135,16 @@ }, { "kernelversion": "72", - "kernelrelease": "4.4.0-51", + "kernelrelease": "4.4.0-51-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb" ] }, { "kernelversion": "74", - "kernelrelease": "4.4.0-53", + "kernelrelease": "4.4.0-53-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", @@ -15421,7 +15153,7 @@ }, { "kernelversion": "78", - "kernelrelease": "4.4.0-57", + "kernelrelease": "4.4.0-57-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", @@ -15430,7 +15162,7 @@ }, { "kernelversion": "80", - "kernelrelease": "4.4.0-59", + "kernelrelease": "4.4.0-59-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", @@ -15439,7 +15171,7 @@ }, { "kernelversion": "83", - "kernelrelease": "4.4.0-62", + "kernelrelease": "4.4.0-62-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb", @@ -15448,7 +15180,7 @@ }, { "kernelversion": "84", - "kernelrelease": "4.4.0-63", + "kernelrelease": "4.4.0-63-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", @@ -15457,7 +15189,7 @@ }, { "kernelversion": "85", - "kernelrelease": "4.4.0-64", + "kernelrelease": "4.4.0-64-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", @@ -15466,25 +15198,25 @@ }, { "kernelversion": "87", - "kernelrelease": "4.4.0-66", + "kernelrelease": "4.4.0-66-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" ] }, { "kernelversion": "88", - "kernelrelease": "4.4.0-67", + "kernelrelease": "4.4.0-67-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" ] }, { "kernelversion": "91", - "kernelrelease": "4.4.0-70", + "kernelrelease": "4.4.0-70-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", @@ -15493,43 +15225,43 @@ }, { "kernelversion": "92", - "kernelrelease": "4.4.0-71", + "kernelrelease": "4.4.0-71-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb" ] }, { "kernelversion": "93", - "kernelrelease": "4.4.0-72", + "kernelrelease": "4.4.0-72-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb" ] }, { "kernelversion": "96", - "kernelrelease": "4.4.0-75", + "kernelrelease": "4.4.0-75-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" ] }, { "kernelversion": "99", - "kernelrelease": "4.4.0-78", + "kernelrelease": "4.4.0-78-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" ] }, { "kernelversion": "100", - "kernelrelease": "4.4.0-79", + "kernelrelease": "4.4.0-79-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", @@ -15538,7 +15270,7 @@ }, { "kernelversion": "104", - "kernelrelease": "4.4.0-81", + "kernelrelease": "4.4.0-81-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb", @@ -15547,7 +15279,7 @@ }, { "kernelversion": "106", - "kernelrelease": "4.4.0-83", + "kernelrelease": "4.4.0-83-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", @@ -15556,7 +15288,7 @@ }, { "kernelversion": "110", - "kernelrelease": "4.4.0-87", + "kernelrelease": "4.4.0-87-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", @@ -15565,16 +15297,16 @@ }, { "kernelversion": "112", - "kernelrelease": "4.4.0-89", + "kernelrelease": "4.4.0-89-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.4.0-91", + "kernelrelease": "4.4.0-91-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb", @@ -15583,7 +15315,7 @@ }, { "kernelversion": "115", - "kernelrelease": "4.4.0-92", + "kernelrelease": "4.4.0-92-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb", @@ -15592,7 +15324,7 @@ }, { "kernelversion": "116", - "kernelrelease": "4.4.0-93", + "kernelrelease": "4.4.0-93-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", @@ -15601,29 +15333,29 @@ }, { "kernelversion": "119", - "kernelrelease": "4.4.0-96", + "kernelrelease": "4.4.0-96-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb" ] }, { "kernelversion": "120", - "kernelrelease": "4.4.0-97", + "kernelrelease": "4.4.0-97-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb" ] }, { "kernelversion": "121", - "kernelrelease": "4.4.0-98", + "kernelrelease": "4.4.0-98-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" ] }, { @@ -15685,8 +15417,8 @@ "kernelrelease": "4.8.0-49-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb" ] }, { @@ -15703,8 +15435,8 @@ "kernelrelease": "4.8.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb" ] }, { @@ -15739,22 +15471,22 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" ] }, { "kernelversion": "146", - "kernelrelease": "4.4.0-122", + "kernelrelease": "4.4.0-122-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb" ] }, { "kernelversion": "157", - "kernelrelease": "4.4.0-131", + "kernelrelease": "4.4.0-131-generic", "target": "ubuntu-generic", "headers": [ "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb", @@ -15763,47 +15495,47 @@ }, { "kernelversion": "161", - "kernelrelease": "4.4.0-135", + "kernelrelease": "4.4.0-135-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb" ] }, { "kernelversion": "166", - "kernelrelease": "4.4.0-140", + "kernelrelease": "4.4.0-140-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" ] }, { "kernelversion": "172", - "kernelrelease": "4.4.0-146", + "kernelrelease": "4.4.0-146-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" ] }, { "kernelversion": "63", - "kernelrelease": "4.4.0-43", + "kernelrelease": "4.4.0-43-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" ] }, { "kernelversion": "98", - "kernelrelease": "4.4.0-77", + "kernelrelease": "4.4.0-77-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" ] }, { @@ -15811,8 +15543,8 @@ "kernelrelease": "4.8.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" ] }, { @@ -15838,17 +15570,17 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" ] }, { "kernelversion": "37", - "kernelrelease": "4.4.0-21", + "kernelrelease": "4.4.0-21-generic", "target": "ubuntu-generic", "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb" ] } ], @@ -15925,6 +15657,22 @@ "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.3/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3227.2.0", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3227.2.0/flatcar_developer_container.bin.bz2" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3227.2.1", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/arm64-usr/3227.2.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "3033.1.0", @@ -16013,6 +15761,22 @@ "https://beta.release.flatcar-linux.net/arm64-usr/3227.1.1/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3277.1.0", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3277.1.0/flatcar_developer_container.bin.bz2" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3277.1.1", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/arm64-usr/3277.1.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "2345.0.1", @@ -16388,6 +16152,36 @@ "headers": [ "https://alpha.release.flatcar-linux.net/arm64-usr/3277.0.0/flatcar_developer_container.bin.bz2" ] + }, + { + "kernelversion": 1, + "kernelrelease": "3305.0.0", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3305.0.0/flatcar_developer_container.bin.bz2" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3305.0.1", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/arm64-usr/3305.0.1/flatcar_developer_container.bin.bz2" + ] + } + ], + "Minikube": [ + { + "kernelversion": "1_1.26.0", + "kernelrelease": "5.10.57", + "target": "minikube", + "kernelconfigdata": "Q09ORklHX0ZBTk9USUZZPXkKQ09ORklHX0tQUk9CRV9FVkVOVFM9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19ERUJVR19JTkZPX0JURj15CkNPTkZJR19JS0hFQURFUlM9eQpDT05GSUdfQlBGX0xTTT15CkNPTkZJR19GVFJBQ0VfU1lTQ0FMTFM9eQpDT05GSUdfRlRSQUNFPXkKQ09ORklHX0hBVkVfU1lTQ0FMTF9UUkFDRVBPSU5UUz15CkNPTkZJR19CUklER0VfTkVURklMVEVSPXkKQ09ORklHX1BDST15CkNPTkZJR19UTVBGUz15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWl9JRExFPXkKQ09ORklHX0hJR0hfUkVTX1RJTUVSUz15CkNPTkZJR19QUkVFTVBUPXkKQ09ORklHX0lSUV9USU1FX0FDQ09VTlRJTkc9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19CU0RfUFJPQ0VTU19BQ0NUX1YzPXkKQ09ORklHX1RBU0tfWEFDQ1Q9eQpDT05GSUdfVEFTS19JT19BQ0NPVU5USU5HPXkKQ09ORklHX0lLQ09ORklHPXkKQ09ORklHX0lLQ09ORklHX1BST0M9eQpDT05GSUdfTlVNQV9CQUxBTkNJTkc9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19VU0VSX05TPXkKQ09ORklHX1NDSEVEX0FVVE9HUk9VUD15CkNPTkZJR19CTEtfREVWX0lOSVRSRD15CkNPTkZJR19LQUxMU1lNU19BTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19BUkNIX0FDVElPTlM9eQpDT05GSUdfQVJDSF9BR0lMRVg9eQpDT05GSUdfQVJDSF9TVU5YST15CkNPTkZJR19BUkNIX0FMUElORT15CkNPTkZJR19BUkNIX0JDTTI4MzU9eQpDT05GSUdfQVJDSF9CQ01fSVBST0M9eQpDT05GSUdfQVJDSF9CRVJMSU49eQpDT05GSUdfQVJDSF9CUkNNU1RCPXkKQ09ORklHX0FSQ0hfRVhZTk9TPXkKQ09ORklHX0FSQ0hfSzM9eQpDT05GSUdfQVJDSF9MQVlFUlNDQVBFPXkKQ09ORklHX0FSQ0hfTEcxSz15CkNPTkZJR19BUkNIX0hJU0k9eQpDT05GSUdfQVJDSF9NRURJQVRFSz15CkNPTkZJR19BUkNIX01FU09OPXkKQ09ORklHX0FSQ0hfTVZFQlU9eQpDT05GSUdfQVJDSF9NWEM9eQpDT05GSUdfQVJDSF9RQ09NPXkKQ09ORklHX0FSQ0hfUkVORVNBUz15CkNPTkZJR19BUkNIX1JPQ0tDSElQPXkKQ09ORklHX0FSQ0hfUzMyPXkKQ09ORklHX0FSQ0hfU0VBVFRMRT15CkNPTkZJR19BUkNIX1NUUkFUSVgxMD15CkNPTkZJR19BUkNIX1NZTlFVQUNFUj15CkNPTkZJR19BUkNIX1RFR1JBPXkKQ09ORklHX0FSQ0hfU1BSRD15CkNPTkZJR19BUkNIX1RIVU5ERVI9eQpDT05GSUdfQVJDSF9USFVOREVSMj15CkNPTkZJR19BUkNIX1VOSVBISUVSPXkKQ09ORklHX0FSQ0hfVkVYUFJFU1M9eQpDT05GSUdfQVJDSF9WSVNDT05UST15CkNPTkZJR19BUkNIX1hHRU5FPXkKQ09ORklHX0FSQ0hfWlg9eQpDT05GSUdfQVJDSF9aWU5RTVA9eQpDT05GSUdfQVJNNjRfVkFfQklUU180OD15CkNPTkZJR19TQ0hFRF9NQz15CkNPTkZJR19TQ0hFRF9TTVQ9eQpDT05GSUdfTlVNQT15CkNPTkZJR19TRUNDT01QPXkKQ09ORklHX0tFWEVDPXkKQ09ORklHX0tFWEVDX0ZJTEU9eQpDT05GSUdfQ1JBU0hfRFVNUD15CkNPTkZJR19YRU49eQpDT05GSUdfQ09NUEFUPXkKQ09ORklHX1JBTkRPTUlaRV9CQVNFPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1dRX1BPV0VSX0VGRklDSUVOVF9ERUZBVUxUPXkKQ09ORklHX0VORVJHWV9NT0RFTD15CkNPTkZJR19BUk1fQ1BVSURMRT15CkNPTkZJR19BUk1fUFNDSV9DUFVJRExFPXkKQ09ORklHX0NQVV9GUkVRPXkKQ09ORklHX0NQVV9GUkVRX1NUQVQ9eQpDT05GSUdfQ1BVX0ZSRVFfR09WX1BPV0VSU0FWRT1tCkNPTkZJR19DUFVfRlJFUV9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9PTkRFTUFORD15CkNPTkZJR19DUFVfRlJFUV9HT1ZfQ09OU0VSVkFUSVZFPW0KQ09ORklHX0NQVV9GUkVRX0dPVl9TQ0hFRFVUSUw9eQpDT05GSUdfQ1BVRlJFUV9EVD15CkNPTkZJR19BQ1BJX0NQUENfQ1BVRlJFUT1tCkNPTkZJR19BUk1fQUxMV0lOTkVSX1NVTjUwSV9DUFVGUkVRX05WTUVNPW0KQ09ORklHX0FSTV9BUk1BREFfMzdYWF9DUFVGUkVRPXkKQ09ORklHX0FSTV9TQ1BJX0NQVUZSRVE9eQpDT05GSUdfQVJNX0lNWF9DUFVGUkVRX0RUPW0KQ09ORklHX0FSTV9RQ09NX0NQVUZSRVFfTlZNRU09eQpDT05GSUdfQVJNX1FDT01fQ1BVRlJFUV9IVz15CkNPTkZJR19BUk1fUkFTUEJFUlJZUElfQ1BVRlJFUT1tCkNPTkZJR19BUk1fVEVHUkExODZfQ1BVRlJFUT15CkNPTkZJR19RT1JJUV9DUFVGUkVRPXkKQ09ORklHX0FSTV9TQ1BJX1BST1RPQ09MPXkKQ09ORklHX1JBU1BCRVJSWVBJX0ZJUk1XQVJFPXkKQ09ORklHX0lOVEVMX1NUUkFUSVgxMF9TRVJWSUNFPXkKQ09ORklHX0lOVEVMX1NUUkFUSVgxMF9SU1U9bQpDT05GSUdfRUZJX0NBUFNVTEVfTE9BREVSPXkKQ09ORklHX0lNWF9TQ1U9eQpDT05GSUdfSU1YX1NDVV9QRD15CkNPTkZJR19BQ1BJPXkKQ09ORklHX0FDUElfQVBFST15CkNPTkZJR19BQ1BJX0FQRUlfR0hFUz15CkNPTkZJR19BQ1BJX0FQRUlfUENJRUFFUj15CkNPTkZJR19BQ1BJX0FQRUlfTUVNT1JZX0ZBSUxVUkU9eQpDT05GSUdfQUNQSV9BUEVJX0VJTko9eQpDT05GSUdfVklSVFVBTElaQVRJT049eQpDT05GSUdfS1ZNPXkKQ09ORklHX0FSTTY0X0NSWVBUTz15CkNPTkZJR19DUllQVE9fU0hBMV9BUk02NF9DRT15CkNPTkZJR19DUllQVE9fU0hBMl9BUk02NF9DRT15CkNPTkZJR19DUllQVE9fU0hBNTEyX0FSTTY0X0NFPW0KQ09ORklHX0NSWVBUT19TSEEzX0FSTTY0PW0KQ09ORklHX0NSWVBUT19TTTNfQVJNNjRfQ0U9bQpDT05GSUdfQ1JZUFRPX0dIQVNIX0FSTTY0X0NFPXkKQ09ORklHX0NSWVBUT19DUkNUMTBESUZfQVJNNjRfQ0U9bQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9DRV9DQ009eQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9DRV9CTEs9eQpDT05GSUdfQ1JZUFRPX0NIQUNIQTIwX05FT049bQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9CUz1tCkNPTkZJR19KVU1QX0xBQkVMPXkKQ09ORklHX01PRFVMRVM9eQpDT05GSUdfTU9EVUxFX1VOTE9BRD15CkNPTkZJR19NT0RWRVJTSU9OUz15CiMgQ09ORklHX0NPUkVfRFVNUF9ERUZBVUxUX0VMRl9IRUFERVJTIGlzIG5vdCBzZXQKQ09ORklHX0tTTT15CkNPTkZJR19NRU1PUllfRkFJTFVSRT15CkNPTkZJR19UUkFOU1BBUkVOVF9IVUdFUEFHRT15CkNPTkZJR19ORVQ9eQpDT05GSUdfUEFDS0VUPXkKQ09ORklHX1VOSVg9eQpDT05GSUdfSU5FVD15CkNPTkZJR19JUF9NVUxUSUNBU1Q9eQpDT05GSUdfSVBfUE5QPXkKQ09ORklHX0lQX1BOUF9ESENQPXkKQ09ORklHX0lQX1BOUF9CT09UUD15CkNPTkZJR19JUFY2PW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX05FVEZJTFRFUj15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19BQ0NUPXkKQ09ORklHX05FVEZJTFRFUl9ORVRMSU5LX1FVRVVFPXkKQ09ORklHX05GX0NPTk5UUkFDSz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfWk9ORVM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX0VWRU5UUz15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRU9VVD15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRVNUQU1QPXkKQ09ORklHX05GX0NPTk5UUkFDS19GVFA9bQpDT05GSUdfTkZfQ09OTlRSQUNLX0lSQz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0FORT1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0lQPW0KQ09ORklHX05GX0NPTk5UUkFDS19URlRQPW0KQ09ORklHX05GX0NUX05FVExJTks9bQpDT05GSUdfTkVURklMVEVSX1hUX1NFVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NIRUNLU1VNPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ0xBU1NJRlk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DT05OTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0hNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSURMRVRJTUVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTEVEPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTkZRVUVVRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05PVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9URUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9UUFJPWFk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9TRUNNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQT1BUU1RSSVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0FERFJUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9CUEY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ0xVU1RFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09NTUVOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkJZVEVTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTEFCRUw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5UUkFDSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ1BVPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9EQ0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ERVZHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRFNDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRUNOPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9FU1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hBU0hMSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEVMUEVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBDT01QPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFJBTkdFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFZTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MMlRQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MRU5HVEg9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0xJTUlUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01VTFRJUE9SVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTkZBQ0NUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PU0Y9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX09XTkVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QT0xJQ1k9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BIWVNERVY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BLVFRZUEU9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1FVT1RBPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SQVRFRVNUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SRUFMTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVDRU5UPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TQ1RQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TT0NLRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUQVRFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFUSVNUSUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUUklORz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9USU1FPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9VMzI9bQpDT05GSUdfSVBfTkZfSVBUQUJMRVM9bQpDT05GSUdfSVBfTkZfRklMVEVSPW0KQ09ORklHX0lQX05GX1RBUkdFVF9SRUpFQ1Q9bQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFRElSRUNUPXkKQ09ORklHX0lQX05GX05BVD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTUFTUVVFUkFERT1tCkNPTkZJR19JUF9ORl9NQU5HTEU9bQpDT05GSUdfQlJJREdFPW0KQ09ORklHX0JSSURHRV9WTEFOX0ZJTFRFUklORz15CkNPTkZJR19ORVRfRFNBPW0KQ09ORklHX1ZMQU5fODAyMVE9bQpDT05GSUdfVkxBTl84MDIxUV9HVlJQPXkKQ09ORklHX1ZMQU5fODAyMVFfTVZSUD15CkNPTkZJR19ORVRfU0NIRUQ9eQpDT05GSUdfTkVUX1NDSF9DQlM9bQpDT05GSUdfTkVUX1NDSF9FVEY9bQpDT05GSUdfTkVUX1NDSF9UQVBSSU89bQpDT05GSUdfTkVUX1NDSF9NUVBSSU89bQpDT05GSUdfTkVUX1NDSF9JTkdSRVNTPW0KQ09ORklHX05FVF9DTFNfQkFTSUM9bQpDT05GSUdfTkVUX0NMU19GTE9XRVI9bQpDT05GSUdfTkVUX0NMU19BQ1Q9eQpDT05GSUdfTkVUX0FDVF9HQUNUPW0KQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfR0FURT1tCkNPTkZJR19RUlRSPW0KQ09ORklHX1FSVFJfU01EPW0KQ09ORklHX1FSVFJfVFVOPW0KQ09ORklHX0JQRl9KSVQ9eQpDT05GSUdfQ0FOPW0KQ09ORklHX0NBTl9SQ0FSPW0KQ09ORklHX0NBTl9SQ0FSX0NBTkZEPW0KQ09ORklHX0NBTl9GTEVYQ0FOPW0KQ09ORklHX0JUPW0KQ09ORklHX0JUX0hJRFA9bQojIENPTkZJR19CVF9IUyBpcyBub3Qgc2V0CiMgQ09ORklHX0JUX0xFIGlzIG5vdCBzZXQKQ09ORklHX0JUX0xFRFM9eQojIENPTkZJR19CVF9ERUJVR0ZTIGlzIG5vdCBzZXQKQ09ORklHX0JUX0hDSUJUVVNCPW0KQ09ORklHX0JUX0hDSVVBUlQ9bQpDT05GSUdfQlRfSENJVUFSVF9MTD15CkNPTkZJR19CVF9IQ0lVQVJUX0JDTT15CkNPTkZJR19CVF9IQ0lVQVJUX1FDQT15CkNPTkZJR19DRkc4MDIxMT1tCkNPTkZJR19NQUM4MDIxMT1tCkNPTkZJR19NQUM4MDIxMV9MRURTPXkKQ09ORklHX1JGS0lMTD1tCkNPTkZJR19ORVRfOVA9eQpDT05GSUdfTkVUXzlQX1ZJUlRJTz15CkNPTkZJR19ORkM9bQpDT05GSUdfTkZDX05DST1tCkNPTkZJR19ORkNfUzNGV1JONV9JMkM9bQpDT05GSUdfUENJPXkKQ09ORklHX1BDSUVQT1JUQlVTPXkKQ09ORklHX1BDSV9JT1Y9eQpDT05GSUdfUENJX1BBU0lEPXkKQ09ORklHX0hPVFBMVUdfUENJPXkKQ09ORklHX0hPVFBMVUdfUENJX0FDUEk9eQpDT05GSUdfUENJX0FBUkRWQVJLPXkKQ09ORklHX1BDSV9URUdSQT15CkNPTkZJR19QQ0lFX1JDQVJfSE9TVD15CkNPTkZJR19QQ0lFX1JDQVJfRVA9eQpDT05GSUdfUENJX0hPU1RfR0VORVJJQz15CkNPTkZJR19QQ0lfWEdFTkU9eQpDT05GSUdfUENJRV9BTFRFUkE9eQpDT05GSUdfUENJRV9BTFRFUkFfTVNJPXkKQ09ORklHX1BDSV9IT1NUX1RIVU5ERVJfUEVNPXkKQ09ORklHX1BDSV9IT1NUX1RIVU5ERVJfRUNBTT15CkNPTkZJR19QQ0lFX1JPQ0tDSElQX0hPU1Q9bQpDT05GSUdfUENJRV9CUkNNU1RCPW0KQ09ORklHX1BDSV9MQVlFUlNDQVBFPXkKQ09ORklHX1BDSUVfTEFZRVJTQ0FQRV9HRU40PXkKQ09ORklHX1BDSV9ISVNJPXkKQ09ORklHX1BDSUVfUUNPTT15CkNPTkZJR19QQ0lFX0FSTUFEQV84Sz15CkNPTkZJR19QQ0lFX0tJUklOPXkKQ09ORklHX1BDSUVfSElTSV9TVEI9eQpDT05GSUdfUENJRV9URUdSQTE5NF9IT1NUPW0KQ09ORklHX1BDSV9FTkRQT0lOVD15CkNPTkZJR19QQ0lfRU5EUE9JTlRfQ09ORklHRlM9eQpDT05GSUdfUENJX0VQRl9URVNUPW0KQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0ZXX0xPQURFUl9VU0VSX0hFTFBFUj15CkNPTkZJR19GV19MT0FERVJfVVNFUl9IRUxQRVJfRkFMTEJBQ0s9eQpDT05GSUdfSElTSUxJQ09OX0xQQz15CkNPTkZJR19TSU1QTEVfUE1fQlVTPXkKQ09ORklHX0ZTTF9NQ19CVVM9eQpDT05GSUdfVEVHUkFfQUNPTk5FQ1Q9bQpDT05GSUdfTVREPXkKQ09ORklHX01URF9CTE9DSz15CkNPTkZJR19NVERfQ0ZJPXkKQ09ORklHX01URF9DRklfQURWX09QVElPTlM9eQpDT05GSUdfTVREX0NGSV9JTlRFTEVYVD15CkNPTkZJR19NVERfQ0ZJX0FNRFNURD15CkNPTkZJR19NVERfQ0ZJX1NUQUE9eQpDT05GSUdfTVREX1BIWVNNQVA9eQpDT05GSUdfTVREX1BIWVNNQVBfT0Y9eQpDT05GSUdfTVREX0RBVEFGTEFTSD15CkNPTkZJR19NVERfU1NUMjVMPXkKQ09ORklHX01URF9SQVdfTkFORD15CkNPTkZJR19NVERfTkFORF9ERU5BTElfRFQ9eQpDT05GSUdfTVREX05BTkRfTUFSVkVMTD15CkNPTkZJR19NVERfTkFORF9GU0xfSUZDPXkKQ09ORklHX01URF9OQU5EX1FDT009eQpDT05GSUdfTVREX1NQSV9OT1I9eQpDT05GSUdfU1BJX0NBREVOQ0VfUVVBRFNQST15CkNPTkZJR19CTEtfREVWX0xPT1A9eQpDT05GSUdfQkxLX0RFVl9OQkQ9bQpDT05GSUdfVklSVElPX0JMSz15CkNPTkZJR19CTEtfREVWX05WTUU9bQpDT05GSUdfU1JBTT15CkNPTkZJR19QQ0lfRU5EUE9JTlRfVEVTVD1tCkNPTkZJR19FRVBST01fQVQyND1tCkNPTkZJR19FRVBST01fQVQyNT1tCkNPTkZJR19VQUNDRT1tCiMgQ09ORklHX1NDU0lfUFJPQ19GUyBpcyBub3Qgc2V0CkNPTkZJR19CTEtfREVWX1NEPXkKQ09ORklHX1NDU0lfU0FTX0FUQT15CkNPTkZJR19TQ1NJX0hJU0lfU0FTPXkKQ09ORklHX1NDU0lfSElTSV9TQVNfUENJPXkKQ09ORklHX01FR0FSQUlEX1NBUz15CkNPTkZJR19TQ1NJX01QVDNTQVM9bQpDT05GSUdfU0NTSV9VRlNIQ0Q9eQpDT05GSUdfU0NTSV9VRlNIQ0RfUExBVEZPUk09eQpDT05GSUdfU0NTSV9VRlNfUUNPTT1tCkNPTkZJR19TQ1NJX1VGU19ISVNJPXkKQ09ORklHX0FUQT15CkNPTkZJR19TQVRBX0FIQ0k9eQpDT05GSUdfU0FUQV9BSENJX1BMQVRGT1JNPXkKQ09ORklHX0FIQ0lfQ0VWQT15CkNPTkZJR19BSENJX01WRUJVPXkKQ09ORklHX0FIQ0lfWEdFTkU9eQpDT05GSUdfQUhDSV9RT1JJUT15CkNPTkZJR19TQVRBX1NJTDI0PXkKQ09ORklHX1NBVEFfUkNBUj15CkNPTkZJR19QQVRBX1BMQVRGT1JNPXkKQ09ORklHX1BBVEFfT0ZfUExBVEZPUk09eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD1tCkNPTkZJR19CTEtfREVWX0RNPW0KQ09ORklHX0RNX01JUlJPUj1tCkNPTkZJR19ETV9aRVJPPW0KQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfTUFDVkxBTj1tCkNPTkZJR19NQUNWVEFQPW0KQ09ORklHX1RVTj15CkNPTkZJR19WRVRIPW0KQ09ORklHX1ZJUlRJT19ORVQ9eQpDT05GSUdfTkVUX0RTQV9NU0NDX0ZFTElYPW0KQ09ORklHX0FNRF9YR0JFPXkKQ09ORklHX05FVF9YR0VORT15CkNPTkZJR19BVEwxQz1tCkNPTkZJR19CQ01HRU5FVD1tCkNPTkZJR19CTlgyWD1tCkNPTkZJR19NQUNCPXkKQ09ORklHX1RIVU5ERVJfTklDX1BGPXkKQ09ORklHX0ZFQz15CkNPTkZJR19GU0xfRk1BTj15CkNPTkZJR19GU0xfRFBBQV9FVEg9eQpDT05GSUdfRlNMX0RQQUEyX0VUSD15CkNPTkZJR19GU0xfRU5FVEM9eQpDT05GSUdfRlNMX0VORVRDX1ZGPXkKQ09ORklHX0ZTTF9FTkVUQ19RT1M9eQpDT05GSUdfSElYNUhEMl9HTUFDPXkKQ09ORklHX0hOU19EU0FGPXkKQ09ORklHX0hOU19FTkVUPXkKQ09ORklHX0hOUzM9eQpDT05GSUdfSE5TM19IQ0xHRT15CkNPTkZJR19ITlMzX0VORVQ9eQpDT05GSUdfRTEwMDA9eQpDT05GSUdfRTEwMDBFPXkKQ09ORklHX0lHQj15CkNPTkZJR19JR0JWRj15CkNPTkZJR19NVk5FVEE9eQpDT05GSUdfTVZQUDI9eQpDT05GSUdfU0tZMj15CkNPTkZJR19NTFg0X0VOPW0KQ09ORklHX01MWDVfQ09SRT1tCkNPTkZJR19NTFg1X0NPUkVfRU49eQpDT05GSUdfUUNPTV9FTUFDPW0KQ09ORklHX1JNTkVUPW0KQ09ORklHX1NIX0VUSD15CkNPTkZJR19SQVZCPXkKQ09ORklHX1NNQzkxWD15CkNPTkZJR19TTVNDOTExWD15CkNPTkZJR19TTklfQVZFPXkKQ09ORklHX1NOSV9ORVRTRUM9eQpDT05GSUdfU1RNTUFDX0VUSD1tCkNPTkZJR19USV9LM19BTTY1X0NQU1dfTlVTUz15CkNPTkZJR19RQ09NX0lQQT1tCkNPTkZJR19NRElPX0JVU19NVVhfTU1JT1JFRz15CkNPTkZJR19NRElPX0JVU19NVVhfTVVMVElQTEVYRVI9eQpDT05GSUdfQVFVQU5USUFfUEhZPXkKQ09ORklHX01BUlZFTExfUEhZPW0KQ09ORklHX01BUlZFTExfMTBHX1BIWT1tCkNPTkZJR19NRVNPTl9HWExfUEhZPW0KQ09ORklHX01JQ1JFTF9QSFk9eQpDT05GSUdfTUlDUk9TRU1JX1BIWT15CkNPTkZJR19BVDgwM1hfUEhZPXkKQ09ORklHX1JFQUxURUtfUEhZPW0KQ09ORklHX1JPQ0tDSElQX1BIWT15CkNPTkZJR19WSVRFU1NFX1BIWT15CkNPTkZJR19VU0JfUEVHQVNVUz1tCkNPTkZJR19VU0JfUlRMODE1MD1tCkNPTkZJR19VU0JfUlRMODE1Mj1tCkNPTkZJR19VU0JfTEFONzhYWD1tCkNPTkZJR19VU0JfVVNCTkVUPW0KQ09ORklHX1VTQl9ORVRfRE05NjAxPW0KQ09ORklHX1VTQl9ORVRfU1I5ODAwPW0KQ09ORklHX1VTQl9ORVRfU01TQzc1WFg9bQpDT05GSUdfVVNCX05FVF9TTVNDOTVYWD1tCkNPTkZJR19VU0JfTkVUX1BMVVNCPW0KQ09ORklHX1VTQl9ORVRfTUNTNzgzMD1tCkNPTkZJR19BVEgxMEs9bQpDT05GSUdfQVRIMTBLX1BDST1tCkNPTkZJR19BVEgxMEtfU05PQz1tCkNPTkZJR19CUkNNRk1BQz1tCkNPTkZJR19NV0lGSUVYPW0KQ09ORklHX01XSUZJRVhfUENJRT1tCkNPTkZJR19XTDE4WFg9bQpDT05GSUdfV0xDT1JFX1NESU89bQpDT05GSUdfSU5QVVRfRVZERVY9eQpDT05GSUdfS0VZQk9BUkRfQURDPW0KQ09ORklHX0tFWUJPQVJEX0dQSU89eQpDT05GSUdfS0VZQk9BUkRfU05WU19QV1JLRVk9bQpDT05GSUdfS0VZQk9BUkRfSU1YX1NDX0tFWT1tCkNPTkZJR19LRVlCT0FSRF9DUk9TX0VDPXkKQ09ORklHX0lOUFVUX1RPVUNIU0NSRUVOPXkKQ09ORklHX1RPVUNIU0NSRUVOX0FUTUVMX01YVD1tCkNPTkZJR19JTlBVVF9NSVNDPXkKQ09ORklHX0lOUFVUX1BNODk0MV9QV1JLRVk9eQpDT05GSUdfSU5QVVRfUE04WFhYX1ZJQlJBVE9SPW0KQ09ORklHX0lOUFVUX0hJU0lfUE9XRVJLRVk9eQojIENPTkZJR19TRVJJT19TRVJQT1JUIGlzIG5vdCBzZXQKQ09ORklHX1NFUklPX0FNQkFLTUk9eQpDT05GSUdfTEVHQUNZX1BUWV9DT1VOVD0xNgpDT05GSUdfU0VSSUFMXzgyNTA9eQpDT05GSUdfU0VSSUFMXzgyNTBfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9TSEFSRV9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfQkNNMjgzNUFVWD15CkNPTkZJR19TRVJJQUxfODI1MF9EVz15CkNPTkZJR19TRVJJQUxfODI1MF9PTUFQPXkKQ09ORklHX1NFUklBTF84MjUwX01UNjU3Nz15CkNPTkZJR19TRVJJQUxfODI1MF9VTklQSElFUj15CkNPTkZJR19TRVJJQUxfT0ZfUExBVEZPUk09eQpDT05GSUdfU0VSSUFMX0FNQkFfUEwwMTE9eQpDT05GSUdfU0VSSUFMX0FNQkFfUEwwMTFfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfTUVTT049eQpDT05GSUdfU0VSSUFMX01FU09OX0NPTlNPTEU9eQpDT05GSUdfU0VSSUFMX1NBTVNVTkc9eQpDT05GSUdfU0VSSUFMX1NBTVNVTkdfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfVEVHUkE9eQpDT05GSUdfU0VSSUFMX1RFR1JBX1RDVT15CkNPTkZJR19TRVJJQUxfSU1YPXkKQ09ORklHX1NFUklBTF9JTVhfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfU0hfU0NJPXkKQ09ORklHX1NFUklBTF9NU009eQpDT05GSUdfU0VSSUFMX01TTV9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9RQ09NX0dFTkk9eQpDT05GSUdfU0VSSUFMX1FDT01fR0VOSV9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9YSUxJTlhfUFNfVUFSVD15CkNPTkZJR19TRVJJQUxfWElMSU5YX1BTX1VBUlRfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfRlNMX0xQVUFSVD15CkNPTkZJR19TRVJJQUxfRlNMX0xQVUFSVF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9GU0xfTElORkxFWFVBUlQ9eQpDT05GSUdfU0VSSUFMX0ZTTF9MSU5GTEVYVUFSVF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9NVkVCVV9VQVJUPXkKQ09ORklHX1NFUklBTF9PV0w9eQpDT05GSUdfU0VSSUFMX0RFVl9CVVM9eQpDT05GSUdfVklSVElPX0NPTlNPTEU9eQpDT05GSUdfSVBNSV9IQU5ETEVSPW0KQ09ORklHX0lQTUlfREVWSUNFX0lOVEVSRkFDRT1tCkNPTkZJR19JUE1JX1NJPW0KQ09ORklHX1RDR19UUE09eQpDT05GSUdfVENHX1RJU19JMkNfSU5GSU5FT049eQpDT05GSUdfSTJDX0NIQVJERVY9eQpDT05GSUdfSTJDX01VWD15CkNPTkZJR19JMkNfTVVYX1BDQTk1NHg9eQpDT05GSUdfSTJDX0JDTTI4MzU9bQpDT05GSUdfSTJDX0RFU0lHTldBUkVfUExBVEZPUk09eQpDT05GSUdfSTJDX0dQSU89bQpDT05GSUdfSTJDX0lNWD15CkNPTkZJR19JMkNfSU1YX0xQSTJDPXkKQ09ORklHX0kyQ19NRVNPTj15CkNPTkZJR19JMkNfTVY2NFhYWD15CkNPTkZJR19JMkNfT1dMPXkKQ09ORklHX0kyQ19QWEE9eQpDT05GSUdfSTJDX1FDT01fQ0NJPW0KQ09ORklHX0kyQ19RQ09NX0dFTkk9bQpDT05GSUdfSTJDX1FVUD15CkNPTkZJR19JMkNfUkszWD15CkNPTkZJR19JMkNfU0hfTU9CSUxFPXkKQ09ORklHX0kyQ19URUdSQT15CkNPTkZJR19JMkNfVU5JUEhJRVJfRj15CkNPTkZJR19JMkNfUkNBUj15CkNPTkZJR19JMkNfQ1JPU19FQ19UVU5ORUw9eQpDT05GSUdfU1BJPXkKQ09ORklHX1NQSV9BUk1BREFfMzcwMD15CkNPTkZJR19TUElfQkNNMjgzNT1tCkNPTkZJR19TUElfQkNNMjgzNUFVWD1tCkNPTkZJR19TUElfRlNMX0xQU1BJPXkKQ09ORklHX1NQSV9GU0xfUVVBRFNQST15CkNPTkZJR19TUElfTlhQX0ZMRVhTUEk9eQpDT05GSUdfU1BJX0lNWD1tCkNPTkZJR19TUElfRlNMX0RTUEk9eQpDT05GSUdfU1BJX01FU09OX1NQSUNDPW0KQ09ORklHX1NQSV9NRVNPTl9TUElGQz1tCkNPTkZJR19TUElfT1JJT049eQpDT05GSUdfU1BJX1BMMDIyPXkKQ09ORklHX1NQSV9ST0NLQ0hJUD15CkNPTkZJR19TUElfUlBDSUY9bQpDT05GSUdfU1BJX1FDT01fUVNQST1tCkNPTkZJR19TUElfUVVQPXkKQ09ORklHX1NQSV9RQ09NX0dFTkk9bQpDT05GSUdfU1BJX1MzQzY0WFg9eQpDT05GSUdfU1BJX1NIX01TSU9GPW0KQ09ORklHX1NQSV9TVU42ST15CkNPTkZJR19TUElfU1BJREVWPW0KQ09ORklHX1NQTUk9eQpDT05GSUdfUElOQ1RSTF9TSU5HTEU9eQpDT05GSUdfUElOQ1RSTF9NQVg3NzYyMD15CkNPTkZJR19QSU5DVFJMX09XTD15CkNPTkZJR19QSU5DVFJMX1M3MDA9eQpDT05GSUdfUElOQ1RSTF9TOTAwPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1NPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1OPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1QPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1RPXkKQ09ORklHX1BJTkNUUkxfSU1YOFFYUD15CkNPTkZJR19QSU5DVFJMX0lNWDhEWEw9eQpDT05GSUdfUElOQ1RSTF9JUFE4MDc0PXkKQ09ORklHX1BJTkNUUkxfSVBRNjAxOD15CkNPTkZJR19QSU5DVFJMX01TTTg5MTY9eQpDT05GSUdfUElOQ1RSTF9NU004OTk0PXkKQ09ORklHX1BJTkNUUkxfTVNNODk5Nj15CkNPTkZJR19QSU5DVFJMX01TTTg5OTg9eQpDT05GSUdfUElOQ1RSTF9RQ1M0MDQ9eQpDT05GSUdfUElOQ1RSTF9RREYyWFhYPXkKQ09ORklHX1BJTkNUUkxfUUNPTV9TUE1JX1BNSUM9eQpDT05GSUdfUElOQ1RSTF9TQzcxODA9eQpDT05GSUdfUElOQ1RSTF9TRE04NDU9eQpDT05GSUdfUElOQ1RSTF9TTTgxNTA9eQpDT05GSUdfUElOQ1RSTF9TTTgyNTA9eQpDT05GSUdfR1BJT19BTFRFUkE9bQpDT05GSUdfR1BJT19EV0FQQj15CkNPTkZJR19HUElPX01CODZTN1g9eQpDT05GSUdfR1BJT19NUEM4WFhYPXkKQ09ORklHX0dQSU9fTVhDPXkKQ09ORklHX0dQSU9fUEwwNjE9eQpDT05GSUdfR1BJT19SQ0FSPXkKQ09ORklHX0dQSU9fVU5JUEhJRVI9eQpDT05GSUdfR1BJT19XQ0Q5MzRYPW0KQ09ORklHX0dQSU9fWEdFTkU9eQpDT05GSUdfR1BJT19YR0VORV9TQj15CkNPTkZJR19HUElPX01BWDczMlg9eQpDT05GSUdfR1BJT19QQ0E5NTNYPXkKQ09ORklHX0dQSU9fUENBOTUzWF9JUlE9eQpDT05GSUdfR1BJT19CRDk1NzFNV1Y9bQpDT05GSUdfR1BJT19NQVg3NzYyMD15CkNPTkZJR19HUElPX1NMMjhDUExEPW0KQ09ORklHX1BPV0VSX0FWUz15CkNPTkZJR19RQ09NX0NQUj15CkNPTkZJR19ST0NLQ0hJUF9JT0RPTUFJTj15CkNPTkZJR19QT1dFUl9SRVNFVF9NU009eQpDT05GSUdfUE9XRVJfUkVTRVRfWEdFTkU9eQpDT05GSUdfUE9XRVJfUkVTRVRfU1lTQ09OPXkKQ09ORklHX1NZU0NPTl9SRUJPT1RfTU9ERT15CkNPTkZJR19CQVRURVJZX1NCUz1tCkNPTkZJR19CQVRURVJZX0JRMjdYWFg9eQpDT05GSUdfU0VOU09SU19BUk1fU0NQST15CkNPTkZJR19TRU5TT1JTX0xNOTA9bQpDT05GSUdfU0VOU09SU19QV01fRkFOPW0KQ09ORklHX1NFTlNPUlNfUkFTUEJFUlJZUElfSFdNT049bQpDT05GSUdfU0VOU09SU19TTDI4Q1BMRD1tCkNPTkZJR19TRU5TT1JTX0lOQTJYWD1tCkNPTkZJR19TRU5TT1JTX0lOQTMyMjE9bQpDT05GSUdfVEhFUk1BTF9HT1ZfUE9XRVJfQUxMT0NBVE9SPXkKQ09ORklHX0NQVV9USEVSTUFMPXkKQ09ORklHX1RIRVJNQUxfRU1VTEFUSU9OPXkKQ09ORklHX1FPUklRX1RIRVJNQUw9bQpDT05GSUdfU1VOOElfVEhFUk1BTD15CkNPTkZJR19JTVhfU0NfVEhFUk1BTD1tCkNPTkZJR19JTVg4TU1fVEhFUk1BTD1tCkNPTkZJR19ST0NLQ0hJUF9USEVSTUFMPW0KQ09ORklHX1JDQVJfVEhFUk1BTD15CkNPTkZJR19SQ0FSX0dFTjNfVEhFUk1BTD15CkNPTkZJR19BUk1BREFfVEhFUk1BTD15CkNPTkZJR19CQ00yNzExX1RIRVJNQUw9bQpDT05GSUdfQkNNMjgzNV9USEVSTUFMPW0KQ09ORklHX0JSQ01TVEJfVEhFUk1BTD1tCkNPTkZJR19FWFlOT1NfVEhFUk1BTD15CkNPTkZJR19URUdSQV9CUE1QX1RIRVJNQUw9bQpDT05GSUdfUUNPTV9UU0VOUz15CkNPTkZJR19RQ09NX1NQTUlfVEVNUF9BTEFSTT1tCkNPTkZJR19VTklQSElFUl9USEVSTUFMPXkKQ09ORklHX1dBVENIRE9HPXkKQ09ORklHX1NMMjhDUExEX1dBVENIRE9HPW0KQ09ORklHX0FSTV9TUDgwNV9XQVRDSERPRz15CkNPTkZJR19BUk1fU0JTQV9XQVRDSERPRz15CkNPTkZJR19BUk1fU01DX1dBVENIRE9HPXkKQ09ORklHX1MzQzI0MTBfV0FUQ0hET0c9eQpDT05GSUdfRFdfV0FUQ0hET0c9eQpDT05GSUdfU1VOWElfV0FUQ0hET0c9bQpDT05GSUdfSU1YMl9XRFQ9eQpDT05GSUdfSU1YX1NDX1dEVD1tCkNPTkZJR19RQ09NX1dEVD1tCkNPTkZJR19NRVNPTl9HWEJCX1dBVENIRE9HPW0KQ09ORklHX01FU09OX1dBVENIRE9HPW0KQ09ORklHX1JFTkVTQVNfV0RUPXkKQ09ORklHX1VOSVBISUVSX1dBVENIRE9HPXkKQ09ORklHX0JDTTI4MzVfV0RUPXkKQ09ORklHX01GRF9BTFRFUkFfU1lTTUdSPXkKQ09ORklHX01GRF9CRDk1NzFNV1Y9eQpDT05GSUdfTUZEX0FYUDIwWF9JMkM9eQpDT05GSUdfTUZEX0FYUDIwWF9SU0I9eQpDT05GSUdfTUZEX0VYWU5PU19MUEFTUz1tCkNPTkZJR19NRkRfSEk2NDIxX1BNSUM9eQpDT05GSUdfTUZEX0hJNjU1WF9QTUlDPXkKQ09ORklHX01GRF9NQVg3NzYyMD15CkNPTkZJR19NRkRfU1BNSV9QTUlDPXkKQ09ORklHX01GRF9SSzgwOD15CkNPTkZJR19NRkRfU0VDX0NPUkU9eQpDT05GSUdfTUZEX1NMMjhDUExEPXkKQ09ORklHX01GRF9ST0hNX0JENzE4WFg9eQpDT05GSUdfTUZEX1dDRDkzNFg9bQpDT05GSUdfUkVHVUxBVE9SX0ZJWEVEX1ZPTFRBR0U9eQpDT05GSUdfUkVHVUxBVE9SX0FYUDIwWD15CkNPTkZJR19SRUdVTEFUT1JfQkQ3MThYWD15CkNPTkZJR19SRUdVTEFUT1JfQkQ5NTcxTVdWPXkKQ09ORklHX1JFR1VMQVRPUl9GQU41MzU1NT15CkNPTkZJR19SRUdVTEFUT1JfR1BJTz15CkNPTkZJR19SRUdVTEFUT1JfSEk2NDIxVjUzMD15CkNPTkZJR19SRUdVTEFUT1JfSEk2NTVYPXkKQ09ORklHX1JFR1VMQVRPUl9NQVg3NzYyMD15CkNPTkZJR19SRUdVTEFUT1JfTUFYODk3Mz15CkNPTkZJR19SRUdVTEFUT1JfUENBOTQ1MD15CkNPTkZJR19SRUdVTEFUT1JfUEZVWkUxMDA9eQpDT05GSUdfUkVHVUxBVE9SX1BXTT15CkNPTkZJR19SRUdVTEFUT1JfUUNPTV9SUE1IPXkKQ09ORklHX1JFR1VMQVRPUl9RQ09NX1NNRF9SUE09eQpDT05GSUdfUkVHVUxBVE9SX1FDT01fU1BNST15CkNPTkZJR19SRUdVTEFUT1JfUks4MDg9eQpDT05GSUdfUkVHVUxBVE9SX1MyTVBTMTE9eQpDT05GSUdfUkVHVUxBVE9SX1ZDVFJMPW0KQ09ORklHX1JDX0NPUkU9bQpDT05GSUdfUkNfREVDT0RFUlM9eQpDT05GSUdfUkNfREVWSUNFUz15CkNPTkZJR19JUl9NRVNPTj1tCkNPTkZJR19JUl9TVU5YST1tCkNPTkZJR19NRURJQV9TVVBQT1JUPW0KQ09ORklHX01FRElBX0NBTUVSQV9TVVBQT1JUPXkKQ09ORklHX01FRElBX0FOQUxPR19UVl9TVVBQT1JUPXkKQ09ORklHX01FRElBX0RJR0lUQUxfVFZfU1VQUE9SVD15CkNPTkZJR19NRURJQV9TRFJfU1VQUE9SVD15CkNPTkZJR19NRURJQV9DT05UUk9MTEVSPXkKQ09ORklHX1ZJREVPX1Y0TDJfU1VCREVWX0FQST15CkNPTkZJR19NRURJQV9QTEFURk9STV9TVVBQT1JUPXkKIyBDT05GSUdfRFZCX05FVCBpcyBub3Qgc2V0CkNPTkZJR19NRURJQV9VU0JfU1VQUE9SVD15CkNPTkZJR19VU0JfVklERU9fQ0xBU1M9bQpDT05GSUdfVjRMX1BMQVRGT1JNX0RSSVZFUlM9eQpDT05GSUdfVklERU9fUkNBUl9DU0kyPW0KQ09ORklHX1ZJREVPX1JDQVJfVklOPW0KQ09ORklHX1ZJREVPX1NVTjZJX0NTST1tCkNPTkZJR19WNExfTUVNMk1FTV9EUklWRVJTPXkKQ09ORklHX1ZJREVPX1NBTVNVTkdfUzVQX0pQRUc9bQpDT05GSUdfVklERU9fU0FNU1VOR19TNVBfTUZDPW0KQ09ORklHX1ZJREVPX1NBTVNVTkdfRVhZTk9TX0dTQz1tCkNPTkZJR19WSURFT19SRU5FU0FTX0ZEUDE9bQpDT05GSUdfVklERU9fUkVORVNBU19GQ1A9bQpDT05GSUdfVklERU9fUkVORVNBU19WU1AxPW0KQ09ORklHX1NEUl9QTEFURk9STV9EUklWRVJTPXkKQ09ORklHX1ZJREVPX1JDQVJfRFJJRj1tCkNPTkZJR19WSURFT19JTVgyMTk9bQpDT05GSUdfVklERU9fT1Y1NjQ1PW0KQ09ORklHX1ZJREVPX1FDT01fQ0FNU1M9bQpDT05GSUdfRFJNPW0KQ09ORklHX0RSTV9JMkNfTlhQX1REQTk5OFg9bQpDT05GSUdfRFJNX01BTElfRElTUExBWT1tCkNPTkZJR19EUk1fTk9VVkVBVT1tCkNPTkZJR19EUk1fRVhZTk9TPW0KQ09ORklHX0RSTV9FWFlOT1M1NDMzX0RFQ09OPXkKQ09ORklHX0RSTV9FWFlOT1M3X0RFQ09OPXkKQ09ORklHX0RSTV9FWFlOT1NfRFNJPXkKIyBDT05GSUdfRFJNX0VYWU5PU19EUCBpcyBub3Qgc2V0CkNPTkZJR19EUk1fRVhZTk9TX0hETUk9eQpDT05GSUdfRFJNX0VYWU5PU19NSUM9eQpDT05GSUdfRFJNX1JPQ0tDSElQPW0KQ09ORklHX1JPQ0tDSElQX0FOQUxPR0lYX0RQPXkKQ09ORklHX1JPQ0tDSElQX0NETl9EUD15CkNPTkZJR19ST0NLQ0hJUF9EV19IRE1JPXkKQ09ORklHX1JPQ0tDSElQX0RXX01JUElfRFNJPXkKQ09ORklHX1JPQ0tDSElQX0lOTk9fSERNST15CkNPTkZJR19EUk1fUkNBUl9EVT1tCkNPTkZJR19EUk1fUkNBUl9EV19IRE1JPW0KQ09ORklHX0RSTV9TVU40ST1tCkNPTkZJR19EUk1fU1VONklfRFNJPW0KQ09ORklHX0RSTV9TVU44SV9EV19IRE1JPW0KQ09ORklHX0RSTV9TVU44SV9NSVhFUj1tCkNPTkZJR19EUk1fTVNNPW0KQ09ORklHX0RSTV9URUdSQT1tCkNPTkZJR19EUk1fUEFORUxfTFZEUz1tCkNPTkZJR19EUk1fUEFORUxfU0lNUExFPW0KQ09ORklHX0RSTV9QQU5FTF9SQVlESVVNX1JNNjcxOTE9bQpDT05GSUdfRFJNX1BBTkVMX1NJVFJPTklYX1NUNzcwMz1tCkNPTkZJR19EUk1fUEFORUxfVFJVTFlfTlQzNTU5N19XUVhHQT1tCkNPTkZJR19EUk1fRElTUExBWV9DT05ORUNUT1I9bQpDT05GSUdfRFJNX05XTF9NSVBJX0RTST1tCkNPTkZJR19EUk1fTE9OVElVTV9MVDk2MTE9bQpDT05GSUdfRFJNX1NJSTkwMlg9bQpDT05GSUdfRFJNX1NJTVBMRV9CUklER0U9bQpDT05GSUdfRFJNX1RISU5FX1RIQzYzTFZEMTAyND1tCkNPTkZJR19EUk1fVElfU042NURTSTg2PW0KQ09ORklHX0RSTV9JMkNfQURWNzUxMT1tCkNPTkZJR19EUk1fSTJDX0FEVjc1MTFfQVVESU89eQpDT05GSUdfRFJNX0RXX0hETUlfQUhCX0FVRElPPW0KQ09ORklHX0RSTV9EV19IRE1JX0NFQz1tCkNPTkZJR19EUk1fVkM0PW0KQ09ORklHX0RSTV9FVE5BVklWPW0KQ09ORklHX0RSTV9ISVNJX0hJQk1DPW0KQ09ORklHX0RSTV9ISVNJX0tJUklOPW0KQ09ORklHX0RSTV9NWFNGQj1tCkNPTkZJR19EUk1fTUVTT049bQpDT05GSUdfRFJNX1BMMTExPW0KQ09ORklHX0RSTV9MSU1BPW0KQ09ORklHX0RSTV9QQU5GUk9TVD1tCkNPTkZJR19GQj15CkNPTkZJR19GQl9NT0RFX0hFTFBFUlM9eQpDT05GSUdfRkJfRUZJPXkKQ09ORklHX0JBQ0tMSUdIVF9HRU5FUklDPW0KQ09ORklHX0JBQ0tMSUdIVF9QV009bQpDT05GSUdfQkFDS0xJR0hUX0xQODU1WD1tCkNPTkZJR19MT0dPPXkKIyBDT05GSUdfTE9HT19MSU5VWF9NT05PIGlzIG5vdCBzZXQKIyBDT05GSUdfTE9HT19MSU5VWF9WR0ExNiBpcyBub3Qgc2V0CkNPTkZJR19TT1VORD15CkNPTkZJR19TTkQ9eQpDT05GSUdfU05EX0hEQV9URUdSQT1tCkNPTkZJR19TTkRfSERBX0NPREVDX0hETUk9bQpDT05GSUdfU05EX1NPQz15CkNPTkZJR19TTkRfQkNNMjgzNV9TT0NfSTJTPW0KQ09ORklHX1NORF9TT0NfRlNMX1NBST1tCkNPTkZJR19TTkRfTUVTT05fQVhHX1NPVU5EX0NBUkQ9bQpDT05GSUdfU05EX01FU09OX0dYX1NPVU5EX0NBUkQ9bQpDT05GSUdfU05EX1NPQ19RQ09NPW0KQ09ORklHX1NORF9TT0NfQVBRODAxNl9TQkM9bQpDT05GSUdfU05EX1NPQ19NU004OTk2PW0KQ09ORklHX1NORF9TT0NfU0RNODQ1PW0KQ09ORklHX1NORF9TT0NfUk9DS0NISVA9bQpDT05GSUdfU05EX1NPQ19ST0NLQ0hJUF9TUERJRj1tCkNPTkZJR19TTkRfU09DX1JPQ0tDSElQX1JUNTY0NT1tCkNPTkZJR19TTkRfU09DX1JLMzM5OV9HUlVfU09VTkQ9bQpDT05GSUdfU05EX1NPQ19TQU1TVU5HPXkKQ09ORklHX1NORF9TT0NfUkNBUj1tCkNPTkZJR19TTkRfU1VONElfU1BESUY9bQpDT05GSUdfU05EX1NPQ19URUdSQT1tCkNPTkZJR19TTkRfU09DX1RFR1JBMjEwX0FIVUI9bQpDT05GSUdfU05EX1NPQ19URUdSQTIxMF9ETUlDPW0KQ09ORklHX1NORF9TT0NfVEVHUkEyMTBfSTJTPW0KQ09ORklHX1NORF9TT0NfVEVHUkExODZfRFNQSz1tCkNPTkZJR19TTkRfU09DX1RFR1JBMjEwX0FETUFJRj1tCkNPTkZJR19TTkRfU09DX0FLNDYxMz1tCkNPTkZJR19TTkRfU09DX0VTNzEzND1tCkNPTkZJR19TTkRfU09DX0VTNzI0MT1tCkNPTkZJR19TTkRfU09DX1BDTTMxNjhBX0kyQz1tCkNPTkZJR19TTkRfU09DX1NJTVBMRV9BTVBMSUZJRVI9bQpDT05GSUdfU05EX1NPQ19UQVM1NzFYPW0KQ09ORklHX1NORF9TT0NfV0NEOTM0WD1tCkNPTkZJR19TTkRfU09DX1dNODkwND1tCkNPTkZJR19TTkRfU09DX1dTQTg4MVg9bQpDT05GSUdfU05EX1NJTVBMRV9DQVJEPW0KQ09ORklHX1NORF9BVURJT19HUkFQSF9DQVJEPW0KQ09ORklHX0kyQ19ISUQ9bQpDT05GSUdfVVNCX0NPTk5fR1BJTz1tCkNPTkZJR19VU0I9eQpDT05GSUdfVVNCX09URz15CkNPTkZJR19VU0JfWEhDSV9IQ0Q9eQpDT05GSUdfVVNCX1hIQ0lfVEVHUkE9eQpDT05GSUdfVVNCX0VIQ0lfSENEPXkKQ09ORklHX1VTQl9FSENJX0VYWU5PUz15CkNPTkZJR19VU0JfRUhDSV9IQ0RfUExBVEZPUk09eQpDT05GSUdfVVNCX09IQ0lfSENEPXkKQ09ORklHX1VTQl9PSENJX0VYWU5PUz15CkNPTkZJR19VU0JfT0hDSV9IQ0RfUExBVEZPUk09eQpDT05GSUdfVVNCX1JFTkVTQVNfVVNCSFNfSENEPW0KQ09ORklHX1VTQl9SRU5FU0FTX1VTQkhTPW0KQ09ORklHX1VTQl9BQ009bQpDT05GSUdfVVNCX1NUT1JBR0U9eQpDT05GSUdfVVNCX01VU0JfSERSQz15CkNPTkZJR19VU0JfTVVTQl9TVU5YST15CkNPTkZJR19VU0JfRFdDMz15CkNPTkZJR19VU0JfRFdDMj15CkNPTkZJR19VU0JfQ0hJUElERUE9eQpDT05GSUdfVVNCX0NISVBJREVBX1VEQz15CkNPTkZJR19VU0JfQ0hJUElERUFfSE9TVD15CkNPTkZJR19VU0JfSVNQMTc2MD15CkNPTkZJR19VU0JfU0VSSUFMPW0KQ09ORklHX1VTQl9TRVJJQUxfRlRESV9TSU89bQpDT05GSUdfVVNCX0hTSUNfVVNCMzUwMz15CkNPTkZJR19OT1BfVVNCX1hDRUlWPXkKQ09ORklHX1VTQl9HQURHRVQ9eQpDT05GSUdfVVNCX1JFTkVTQVNfVVNCSFNfVURDPW0KQ09ORklHX1VTQl9SRU5FU0FTX1VTQjM9bQpDT05GSUdfVVNCX1RFR1JBX1hVREM9bQpDT05GSUdfVVNCX0NPTkZJR0ZTPW0KQ09ORklHX1VTQl9DT05GSUdGU19TRVJJQUw9eQpDT05GSUdfVVNCX0NPTkZJR0ZTX0FDTT15CkNPTkZJR19VU0JfQ09ORklHRlNfT0JFWD15CkNPTkZJR19VU0JfQ09ORklHRlNfTkNNPXkKQ09ORklHX1VTQl9DT05GSUdGU19FQ009eQpDT05GSUdfVVNCX0NPTkZJR0ZTX0VDTV9TVUJTRVQ9eQpDT05GSUdfVVNCX0NPTkZJR0ZTX1JORElTPXkKQ09ORklHX1VTQl9DT05GSUdGU19FRU09eQpDT05GSUdfVVNCX0NPTkZJR0ZTX01BU1NfU1RPUkFHRT15CkNPTkZJR19VU0JfQ09ORklHRlNfRl9GUz15CkNPTkZJR19UWVBFQz1tCkNPTkZJR19UWVBFQ19UQ1BNPW0KQ09ORklHX1RZUEVDX0ZVU0IzMDI9bQpDT05GSUdfVFlQRUNfSEQzU1MzMjIwPW0KQ09ORklHX01NQz15CkNPTkZJR19NTUNfQkxPQ0tfTUlOT1JTPTMyCkNPTkZJR19NTUNfQVJNTU1DST15CkNPTkZJR19NTUNfU0RIQ0k9eQpDT05GSUdfTU1DX1NESENJX0FDUEk9eQpDT05GSUdfTU1DX1NESENJX1BMVEZNPXkKQ09ORklHX01NQ19TREhDSV9PRl9BUkFTQU49eQpDT05GSUdfTU1DX1NESENJX09GX0VTREhDPXkKQ09ORklHX01NQ19TREhDSV9DQURFTkNFPXkKQ09ORklHX01NQ19TREhDSV9FU0RIQ19JTVg9eQpDT05GSUdfTU1DX1NESENJX1RFR1JBPXkKQ09ORklHX01NQ19TREhDSV9GX1NESDMwPXkKQ09ORklHX01NQ19NRVNPTl9HWD15CkNPTkZJR19NTUNfU0RIQ0lfTVNNPXkKQ09ORklHX01NQ19TUEk9eQpDT05GSUdfTU1DX1NESEk9eQpDT05GSUdfTU1DX1VOSVBISUVSPXkKQ09ORklHX01NQ19EVz15CkNPTkZJR19NTUNfRFdfRVhZTk9TPXkKQ09ORklHX01NQ19EV19ISTM3OThDVjIwMD15CkNPTkZJR19NTUNfRFdfSzM9eQpDT05GSUdfTU1DX0RXX1JPQ0tDSElQPXkKQ09ORklHX01NQ19TVU5YST15CkNPTkZJR19NTUNfQkNNMjgzNT15CkNPTkZJR19NTUNfU0RIQ0lfWEVOT049eQpDT05GSUdfTU1DX1NESENJX0FNNjU0PXkKQ09ORklHX01NQ19PV0w9eQpDT05GSUdfTkVXX0xFRFM9eQpDT05GSUdfTEVEU19DTEFTUz15CkNPTkZJR19MRURTX0dQSU89eQpDT05GSUdfTEVEU19QV009eQpDT05GSUdfTEVEU19TWVNDT049eQpDT05GSUdfTEVEU19UUklHR0VSX1RJTUVSPXkKQ09ORklHX0xFRFNfVFJJR0dFUl9ESVNLPXkKQ09ORklHX0xFRFNfVFJJR0dFUl9IRUFSVEJFQVQ9eQpDT05GSUdfTEVEU19UUklHR0VSX0NQVT15CkNPTkZJR19MRURTX1RSSUdHRVJfREVGQVVMVF9PTj15CkNPTkZJR19MRURTX1RSSUdHRVJfUEFOSUM9eQpDT05GSUdfRURBQz15CkNPTkZJR19FREFDX0dIRVM9eQpDT05GSUdfUlRDX0NMQVNTPXkKQ09ORklHX1JUQ19EUlZfRFMxMzA3PW0KQ09ORklHX1JUQ19EUlZfTUFYNzc2ODY9eQpDT05GSUdfUlRDX0RSVl9SSzgwOD1tCkNPTkZJR19SVENfRFJWX1BDRjg1MzYzPW0KQ09ORklHX1JUQ19EUlZfUlg4NTgxPW0KQ09ORklHX1JUQ19EUlZfUlY4ODAzPW0KQ09ORklHX1JUQ19EUlZfUzVNPXkKQ09ORklHX1JUQ19EUlZfRFMzMjMyPXkKQ09ORklHX1JUQ19EUlZfUENGMjEyNz1tCkNPTkZJR19SVENfRFJWX0VGST15CkNPTkZJR19SVENfRFJWX0NST1NfRUM9eQpDT05GSUdfUlRDX0RSVl9TM0M9eQpDT05GSUdfUlRDX0RSVl9QTDAzMT15CkNPTkZJR19SVENfRFJWX1NVTjZJPXkKQ09ORklHX1JUQ19EUlZfQVJNQURBMzhYPXkKQ09ORklHX1JUQ19EUlZfUE04WFhYPW0KQ09ORklHX1JUQ19EUlZfVEVHUkE9eQpDT05GSUdfUlRDX0RSVl9TTlZTPW0KQ09ORklHX1JUQ19EUlZfSU1YX1NDPW0KQ09ORklHX1JUQ19EUlZfWEdFTkU9eQpDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19ETUFfQkNNMjgzNT15CkNPTkZJR19ETUFfU1VONkk9bQpDT05GSUdfRlNMX0VETUE9eQpDT05GSUdfSU1YX1NETUE9eQpDT05GSUdfSzNfRE1BPXkKQ09ORklHX01WX1hPUj15CkNPTkZJR19NVl9YT1JfVjI9eQpDT05GSUdfT1dMX0RNQT15CkNPTkZJR19QTDMzMF9ETUE9eQpDT05GSUdfVEVHUkEyMF9BUEJfRE1BPXkKQ09ORklHX1RFR1JBMjEwX0FETUE9bQpDT05GSUdfUUNPTV9CQU1fRE1BPXkKQ09ORklHX1FDT01fSElETUFfTUdNVD15CkNPTkZJR19RQ09NX0hJRE1BPXkKQ09ORklHX1JDQVJfRE1BQz15CkNPTkZJR19SRU5FU0FTX1VTQl9ETUFDPW0KQ09ORklHX1RJX0szX1VETUE9eQpDT05GSUdfVElfSzNfVURNQV9HTFVFX0xBWUVSPXkKQ09ORklHX1ZGSU89eQpDT05GSUdfVkZJT19QQ0k9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19WSVJUSU9fQkFMTE9PTj15CkNPTkZJR19WSVJUSU9fTU1JTz15CkNPTkZJR19YRU5fR05UREVWPXkKQ09ORklHX1hFTl9HUkFOVF9ERVZfQUxMT0M9eQpDT05GSUdfTUZEX0NST1NfRUNfREVWPXkKQ09ORklHX0NIUk9NRV9QTEFURk9STVM9eQpDT05GSUdfQ1JPU19FQz15CkNPTkZJR19DUk9TX0VDX0kyQz15CkNPTkZJR19DUk9TX0VDX1NQST15CkNPTkZJR19DUk9TX0VDX0NIQVJERVY9bQpDT05GSUdfQ09NTU9OX0NMS19SSzgwOD15CkNPTkZJR19DT01NT05fQ0xLX1NDUEk9eQpDT05GSUdfQ09NTU9OX0NMS19DUzIwMDBfQ1A9eQpDT05GSUdfQ09NTU9OX0NMS19GU0xfU0FJPXkKQ09ORklHX0NPTU1PTl9DTEtfUzJNUFMxMT15CkNPTkZJR19DT01NT05fQ0xLX1BXTT15CkNPTkZJR19DT01NT05fQ0xLX1ZDNT15CkNPTkZJR19DT01NT05fQ0xLX0JENzE4WFg9bQpDT05GSUdfQ0xLX1JBU1BCRVJSWVBJPW0KQ09ORklHX0NMS19JTVg4TU09eQpDT05GSUdfQ0xLX0lNWDhNTj15CkNPTkZJR19DTEtfSU1YOE1QPXkKQ09ORklHX0NMS19JTVg4TVE9eQpDT05GSUdfQ0xLX0lNWDhRWFA9eQpDT05GSUdfVElfU0NJX0NMSz15CkNPTkZJR19DT01NT05fQ0xLX1FDT009eQpDT05GSUdfUUNPTV9BNTNQTEw9eQpDT05GSUdfUUNPTV9DTEtfQVBDU19NU004OTE2PXkKQ09ORklHX1FDT01fQ0xLX1NNRF9SUE09eQpDT05GSUdfUUNPTV9DTEtfUlBNSD15CkNPTkZJR19JUFFfR0NDXzgwNzQ9eQpDT05GSUdfSVBRX0dDQ182MDE4PXkKQ09ORklHX01TTV9HQ0NfODkxNj15CkNPTkZJR19NU01fR0NDXzg5OTQ9eQpDT05GSUdfTVNNX01NQ0NfODk5Nj15CkNPTkZJR19NU01fR0NDXzg5OTg9eQpDT05GSUdfUUNTX0dDQ180MDQ9eQpDT05GSUdfU0NfR0NDXzcxODA9eQpDT05GSUdfU0RNX0NBTUNDXzg0NT1tCkNPTkZJR19TRE1fR0NDXzg0NT15CkNPTkZJR19TRE1fR1BVQ0NfODQ1PXkKQ09ORklHX1NETV9WSURFT0NDXzg0NT15CkNPTkZJR19TRE1fRElTUENDXzg0NT15CkNPTkZJR19TTV9HQ0NfODE1MD15CkNPTkZJR19TTV9HQ0NfODI1MD15CkNPTkZJR19TTV9HUFVDQ184MTUwPXkKQ09ORklHX1NNX0dQVUNDXzgyNTA9eQpDT05GSUdfUUNPTV9IRlBMTD15CkNPTkZJR19IV1NQSU5MT0NLPXkKQ09ORklHX0hXU1BJTkxPQ0tfUUNPTT15CkNPTkZJR19BUk1fTUhVPXkKQ09ORklHX0lNWF9NQk9YPXkKQ09ORklHX1BMQVRGT1JNX01IVT15CkNPTkZJR19CQ00yODM1X01CT1g9eQpDT05GSUdfUUNPTV9BUENTX0lQQz15CkNPTkZJR19RQ09NX0lQQ0M9eQpDT05GSUdfUk9DS0NISVBfSU9NTVU9eQpDT05GSUdfVEVHUkFfSU9NTVVfU01NVT15CkNPTkZJR19BUk1fU01NVT15CkNPTkZJR19BUk1fU01NVV9WMz15CkNPTkZJR19RQ09NX0lPTU1VPXkKQ09ORklHX1JFTU9URVBST0M9eQpDT05GSUdfUUNPTV9RNlY1X01TUz1tCkNPTkZJR19RQ09NX1E2VjVfUEFTPW0KQ09ORklHX1FDT01fU1lTTU9OPW0KQ09ORklHX1JQTVNHX1FDT01fR0xJTktfUlBNPXkKQ09ORklHX1JQTVNHX1FDT01fR0xJTktfU01FTT1tCkNPTkZJR19SUE1TR19RQ09NX1NNRD15CkNPTkZJR19TT1VORFdJUkU9bQpDT05GSUdfU09VTkRXSVJFX1FDT009bQpDT05GSUdfT1dMX1BNX0RPTUFJTlM9eQpDT05GSUdfUkFTUEJFUlJZUElfUE9XRVI9eQpDT05GSUdfRlNMX0RQQUE9eQpDT05GSUdfRlNMX01DX0RQSU89eQpDT05GSUdfUUNPTV9BT1NTX1FNUD15CkNPTkZJR19RQ09NX0dFTklfU0U9eQpDT05GSUdfUUNPTV9STVRGU19NRU09bQpDT05GSUdfUUNPTV9SUE1IPXkKQ09ORklHX1FDT01fUlBNSFBEPXkKQ09ORklHX1FDT01fUlBNUEQ9eQpDT05GSUdfUUNPTV9TTUVNPXkKQ09ORklHX1FDT01fU01EX1JQTT15CkNPTkZJR19RQ09NX1NNUDJQPXkKQ09ORklHX1FDT01fU01TTT15CkNPTkZJR19RQ09NX1NPQ0lORk89bQpDT05GSUdfUUNPTV9BUFI9bQpDT05GSUdfQVJDSF9SOEE3NzRBMT15CkNPTkZJR19BUkNIX1I4QTc3NEIxPXkKQ09ORklHX0FSQ0hfUjhBNzc0QzA9eQpDT05GSUdfQVJDSF9SOEE3NzRFMT15CkNPTkZJR19BUkNIX1I4QTc3OTUwPXkKQ09ORklHX0FSQ0hfUjhBNzc5NTE9eQpDT05GSUdfQVJDSF9SOEE3Nzk2MD15CkNPTkZJR19BUkNIX1I4QTc3OTYxPXkKQ09ORklHX0FSQ0hfUjhBNzc5NjU9eQpDT05GSUdfQVJDSF9SOEE3Nzk3MD15CkNPTkZJR19BUkNIX1I4QTc3OTgwPXkKQ09ORklHX0FSQ0hfUjhBNzc5OTA9eQpDT05GSUdfQVJDSF9SOEE3Nzk5NT15CkNPTkZJR19ST0NLQ0hJUF9QTV9ET01BSU5TPXkKQ09ORklHX0FSQ0hfVEVHUkFfMTMyX1NPQz15CkNPTkZJR19BUkNIX1RFR1JBXzIxMF9TT0M9eQpDT05GSUdfQVJDSF9URUdSQV8xODZfU09DPXkKQ09ORklHX0FSQ0hfVEVHUkFfMTk0X1NPQz15CkNPTkZJR19BUkNIX0szX0FNNl9TT0M9eQpDT05GSUdfQVJDSF9LM19KNzIxRV9TT0M9eQpDT05GSUdfVElfU0NJX1BNX0RPTUFJTlM9eQpDT05GSUdfRVhUQ09OX1BUTjUxNTA9bQpDT05GSUdfRVhUQ09OX1VTQl9HUElPPXkKQ09ORklHX0VYVENPTl9VU0JDX0NST1NfRUM9eQpDT05GSUdfUkVORVNBU19SUENJRj1tCkNPTkZJR19JSU89eQpDT05GSUdfRVhZTk9TX0FEQz15CkNPTkZJR19NQVg5NjExPW0KQ09ORklHX1FDT01fU1BNSV9BREM1PW0KQ09ORklHX1JPQ0tDSElQX1NBUkFEQz1tCkNPTkZJR19JSU9fQ1JPU19FQ19TRU5TT1JTX0NPUkU9bQpDT05GSUdfSUlPX0NST1NfRUNfU0VOU09SUz1tCkNPTkZJR19JSU9fQ1JPU19FQ19MSUdIVF9QUk9YPW0KQ09ORklHX1NFTlNPUlNfSVNMMjkwMTg9bQpDT05GSUdfSUlPX0NST1NfRUNfQkFSTz1tCkNPTkZJR19NUEwzMTE1PW0KQ09ORklHX1BXTT15CkNPTkZJR19QV01fQkNNMjgzNT1tCkNPTkZJR19QV01fQ1JPU19FQz1tCkNPTkZJR19QV01fTUVTT049bQpDT05GSUdfUFdNX1JDQVI9bQpDT05GSUdfUFdNX1JPQ0tDSElQPXkKQ09ORklHX1BXTV9TQU1TVU5HPXkKQ09ORklHX1BXTV9TTDI4Q1BMRD1tCkNPTkZJR19QV01fU1VONEk9bQpDT05GSUdfUFdNX1RFR1JBPW0KQ09ORklHX1NMMjhDUExEX0lOVEM9eQpDT05GSUdfUUNPTV9QREM9eQpDT05GSUdfUkVTRVRfSU1YNz15CkNPTkZJR19SRVNFVF9RQ09NX0FPU1M9eQpDT05GSUdfUkVTRVRfUUNPTV9QREM9bQpDT05GSUdfUkVTRVRfVElfU0NJPXkKQ09ORklHX1BIWV9YR0VORT15CkNPTkZJR19QSFlfU1VONElfVVNCPXkKQ09ORklHX1BIWV9NSVhFTF9NSVBJX0RQSFk9bQpDT05GSUdfUEhZX0hJNjIyMF9VU0I9eQpDT05GSUdfUEhZX0hJU1RCX0NPTUJQSFk9eQpDT05GSUdfUEhZX0hJU0lfSU5OT19VU0IyPXkKQ09ORklHX1BIWV9NVkVCVV9DUDExMF9DT01QSFk9eQpDT05GSUdfUEhZX1FDT01fUU1QPW0KQ09ORklHX1BIWV9RQ09NX1FVU0IyPW0KQ09ORklHX1BIWV9RQ09NX1VTQl9IUz15CkNPTkZJR19QSFlfUUNPTV9VU0JfU05QU19GRU1UT19WMj15CkNPTkZJR19QSFlfUkNBUl9HRU4zX1BDSUU9eQpDT05GSUdfUEhZX1JDQVJfR0VOM19VU0IyPXkKQ09ORklHX1BIWV9SQ0FSX0dFTjNfVVNCMz1tCkNPTkZJR19QSFlfUk9DS0NISVBfRU1NQz15CkNPTkZJR19QSFlfUk9DS0NISVBfSU5OT19IRE1JPW0KQ09ORklHX1BIWV9ST0NLQ0hJUF9JTk5PX1VTQjI9eQpDT05GSUdfUEhZX1JPQ0tDSElQX1BDSUU9bQpDT05GSUdfUEhZX1JPQ0tDSElQX1RZUEVDPXkKQ09ORklHX1BIWV9VTklQSElFUl9VU0IyPXkKQ09ORklHX1BIWV9VTklQSElFUl9VU0IzPXkKQ09ORklHX1BIWV9URUdSQV9YVVNCPXkKQ09ORklHX0FSTV9TTU1VX1YzX1BNVT1tCkNPTkZJR19GU0xfSU1YOF9ERFJfUE1VPW0KQ09ORklHX0hJU0lfUE1VPXkKQ09ORklHX1FDT01fTDJfUE1VPXkKQ09ORklHX1FDT01fTDNfUE1VPXkKQ09ORklHX05WTUVNX0lNWF9PQ09UUD15CkNPTkZJR19OVk1FTV9JTVhfT0NPVFBfU0NVPXkKQ09ORklHX1FDT01fUUZQUk9NPXkKQ09ORklHX1JPQ0tDSElQX0VGVVNFPXkKQ09ORklHX05WTUVNX1NVTlhJX1NJRD15CkNPTkZJR19VTklQSElFUl9FRlVTRT15CkNPTkZJR19NRVNPTl9FRlVTRT1tCkNPTkZJR19GUEdBPXkKQ09ORklHX0ZQR0FfTUdSX1NUUkFUSVgxMF9TT0M9bQpDT05GSUdfRlBHQV9CUklER0U9bQpDT05GSUdfQUxURVJBX0ZSRUVaRV9CUklER0U9bQpDT05GSUdfRlBHQV9SRUdJT049bQpDT05GSUdfT0ZfRlBHQV9SRUdJT049bQpDT05GSUdfVEVFPXkKQ09ORklHX09QVEVFPXkKQ09ORklHX1NMSU1CVVM9bQpDT05GSUdfU0xJTV9RQ09NX0NUUkw9bQpDT05GSUdfU0xJTV9RQ09NX05HRF9DVFJMPW0KQ09ORklHX01VWF9NTUlPPXkKQ09ORklHX0lOVEVSQ09OTkVDVD15CkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTT15CkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTV9NU004OTE2PW0KQ09ORklHX0lOVEVSQ09OTkVDVF9RQ09NX1NETTg0NT1tCkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTV9TTTgxNTA9bQpDT05GSUdfSU5URVJDT05ORUNUX1FDT01fU004MjUwPW0KQ09ORklHX0VYVDJfRlM9eQpDT05GSUdfRVhUM19GUz15CkNPTkZJR19FWFQ0X0ZTX1BPU0lYX0FDTD15CkNPTkZJR19CVFJGU19GUz1tCkNPTkZJR19CVFJGU19GU19QT1NJWF9BQ0w9eQpDT05GSUdfRkFOT1RJRlk9eQpDT05GSUdfRkFOT1RJRllfQUNDRVNTX1BFUk1JU1NJT05TPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz1tCkNPTkZJR19DVVNFPW0KQ09ORklHX09WRVJMQVlfRlM9bQpDT05GSUdfVkZBVF9GUz15CkNPTkZJR19IVUdFVExCRlM9eQpDT05GSUdfQ09ORklHRlNfRlM9eQpDT05GSUdfRUZJVkFSX0ZTPXkKQ09ORklHX1NRVUFTSEZTPXkKQ09ORklHX05GU19GUz15CkNPTkZJR19ORlNfVjQ9eQpDT05GSUdfTkZTX1Y0XzE9eQpDT05GSUdfTkZTX1Y0XzI9eQpDT05GSUdfUk9PVF9ORlM9eQpDT05GSUdfOVBfRlM9eQpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfSVNPODg1OV8xPXkKQ09ORklHX1NFQ1VSSVRZPXkKQ09ORklHX0NSWVBUT19FQ0hBSU5JVj15CkNPTkZJR19DUllQVE9fQU5TSV9DUFJORz15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfUk5HPW0KQ09ORklHX0NSWVBUT19ERVZfU1VOOElfQ0U9bQpDT05GSUdfQ1JZUFRPX0RFVl9GU0xfQ0FBTT1tCkNPTkZJR19DUllQVE9fREVWX0ZTTF9EUEFBMl9DQUFNPW0KQ09ORklHX0NSWVBUT19ERVZfUUNPTV9STkc9bQpDT05GSUdfQ1JZUFRPX0RFVl9DQ1JFRT1tCkNPTkZJR19DUllQVE9fREVWX0hJU0lfU0VDMj1tCkNPTkZJR19DUllQVE9fREVWX0hJU0lfWklQPW0KQ09ORklHX0NSWVBUT19ERVZfSElTSV9IUFJFPW0KQ09ORklHX0NNQV9TSVpFX01CWVRFUz0zMgpDT05GSUdfUFJJTlRLX1RJTUU9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19GUz15CkNPTkZJR19ERUJVR19LRVJORUw9eQojIENPTkZJR19TQ0hFRF9ERUJVRyBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1BSRUVNUFQgaXMgbm90IHNldApDT05GSUdfTUVNVEVTVD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX0ZBSVJfR1JPVVBfU0NIRUQ9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9ERUJVR19GUz15CkNPTkZJR19LVk1fQVJNPW0K" + }, + { + "kernelversion": "1_1.26.1", + "kernelrelease": "5.10.57", + "target": "minikube", + "kernelconfigdata": "Q09ORklHX0ZBTk9USUZZPXkKQ09ORklHX0tQUk9CRV9FVkVOVFM9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19ERUJVR19JTkZPX0JURj15CkNPTkZJR19JS0hFQURFUlM9eQpDT05GSUdfQlBGX0xTTT15CkNPTkZJR19GVFJBQ0VfU1lTQ0FMTFM9eQpDT05GSUdfRlRSQUNFPXkKQ09ORklHX0hBVkVfU1lTQ0FMTF9UUkFDRVBPSU5UUz15CkNPTkZJR19CUklER0VfTkVURklMVEVSPXkKQ09ORklHX1BDST15CkNPTkZJR19UTVBGUz15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWl9JRExFPXkKQ09ORklHX0hJR0hfUkVTX1RJTUVSUz15CkNPTkZJR19QUkVFTVBUPXkKQ09ORklHX0lSUV9USU1FX0FDQ09VTlRJTkc9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19CU0RfUFJPQ0VTU19BQ0NUX1YzPXkKQ09ORklHX1RBU0tfWEFDQ1Q9eQpDT05GSUdfVEFTS19JT19BQ0NPVU5USU5HPXkKQ09ORklHX0lLQ09ORklHPXkKQ09ORklHX0lLQ09ORklHX1BST0M9eQpDT05GSUdfTlVNQV9CQUxBTkNJTkc9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19VU0VSX05TPXkKQ09ORklHX1NDSEVEX0FVVE9HUk9VUD15CkNPTkZJR19CTEtfREVWX0lOSVRSRD15CkNPTkZJR19LQUxMU1lNU19BTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19BUkNIX0FDVElPTlM9eQpDT05GSUdfQVJDSF9BR0lMRVg9eQpDT05GSUdfQVJDSF9TVU5YST15CkNPTkZJR19BUkNIX0FMUElORT15CkNPTkZJR19BUkNIX0JDTTI4MzU9eQpDT05GSUdfQVJDSF9CQ01fSVBST0M9eQpDT05GSUdfQVJDSF9CRVJMSU49eQpDT05GSUdfQVJDSF9CUkNNU1RCPXkKQ09ORklHX0FSQ0hfRVhZTk9TPXkKQ09ORklHX0FSQ0hfSzM9eQpDT05GSUdfQVJDSF9MQVlFUlNDQVBFPXkKQ09ORklHX0FSQ0hfTEcxSz15CkNPTkZJR19BUkNIX0hJU0k9eQpDT05GSUdfQVJDSF9NRURJQVRFSz15CkNPTkZJR19BUkNIX01FU09OPXkKQ09ORklHX0FSQ0hfTVZFQlU9eQpDT05GSUdfQVJDSF9NWEM9eQpDT05GSUdfQVJDSF9RQ09NPXkKQ09ORklHX0FSQ0hfUkVORVNBUz15CkNPTkZJR19BUkNIX1JPQ0tDSElQPXkKQ09ORklHX0FSQ0hfUzMyPXkKQ09ORklHX0FSQ0hfU0VBVFRMRT15CkNPTkZJR19BUkNIX1NUUkFUSVgxMD15CkNPTkZJR19BUkNIX1NZTlFVQUNFUj15CkNPTkZJR19BUkNIX1RFR1JBPXkKQ09ORklHX0FSQ0hfU1BSRD15CkNPTkZJR19BUkNIX1RIVU5ERVI9eQpDT05GSUdfQVJDSF9USFVOREVSMj15CkNPTkZJR19BUkNIX1VOSVBISUVSPXkKQ09ORklHX0FSQ0hfVkVYUFJFU1M9eQpDT05GSUdfQVJDSF9WSVNDT05UST15CkNPTkZJR19BUkNIX1hHRU5FPXkKQ09ORklHX0FSQ0hfWlg9eQpDT05GSUdfQVJDSF9aWU5RTVA9eQpDT05GSUdfQVJNNjRfVkFfQklUU180OD15CkNPTkZJR19TQ0hFRF9NQz15CkNPTkZJR19TQ0hFRF9TTVQ9eQpDT05GSUdfTlVNQT15CkNPTkZJR19TRUNDT01QPXkKQ09ORklHX0tFWEVDPXkKQ09ORklHX0tFWEVDX0ZJTEU9eQpDT05GSUdfQ1JBU0hfRFVNUD15CkNPTkZJR19YRU49eQpDT05GSUdfQ09NUEFUPXkKQ09ORklHX1JBTkRPTUlaRV9CQVNFPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1dRX1BPV0VSX0VGRklDSUVOVF9ERUZBVUxUPXkKQ09ORklHX0VORVJHWV9NT0RFTD15CkNPTkZJR19BUk1fQ1BVSURMRT15CkNPTkZJR19BUk1fUFNDSV9DUFVJRExFPXkKQ09ORklHX0NQVV9GUkVRPXkKQ09ORklHX0NQVV9GUkVRX1NUQVQ9eQpDT05GSUdfQ1BVX0ZSRVFfR09WX1BPV0VSU0FWRT1tCkNPTkZJR19DUFVfRlJFUV9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9PTkRFTUFORD15CkNPTkZJR19DUFVfRlJFUV9HT1ZfQ09OU0VSVkFUSVZFPW0KQ09ORklHX0NQVV9GUkVRX0dPVl9TQ0hFRFVUSUw9eQpDT05GSUdfQ1BVRlJFUV9EVD15CkNPTkZJR19BQ1BJX0NQUENfQ1BVRlJFUT1tCkNPTkZJR19BUk1fQUxMV0lOTkVSX1NVTjUwSV9DUFVGUkVRX05WTUVNPW0KQ09ORklHX0FSTV9BUk1BREFfMzdYWF9DUFVGUkVRPXkKQ09ORklHX0FSTV9TQ1BJX0NQVUZSRVE9eQpDT05GSUdfQVJNX0lNWF9DUFVGUkVRX0RUPW0KQ09ORklHX0FSTV9RQ09NX0NQVUZSRVFfTlZNRU09eQpDT05GSUdfQVJNX1FDT01fQ1BVRlJFUV9IVz15CkNPTkZJR19BUk1fUkFTUEJFUlJZUElfQ1BVRlJFUT1tCkNPTkZJR19BUk1fVEVHUkExODZfQ1BVRlJFUT15CkNPTkZJR19RT1JJUV9DUFVGUkVRPXkKQ09ORklHX0FSTV9TQ1BJX1BST1RPQ09MPXkKQ09ORklHX1JBU1BCRVJSWVBJX0ZJUk1XQVJFPXkKQ09ORklHX0lOVEVMX1NUUkFUSVgxMF9TRVJWSUNFPXkKQ09ORklHX0lOVEVMX1NUUkFUSVgxMF9SU1U9bQpDT05GSUdfRUZJX0NBUFNVTEVfTE9BREVSPXkKQ09ORklHX0lNWF9TQ1U9eQpDT05GSUdfSU1YX1NDVV9QRD15CkNPTkZJR19BQ1BJPXkKQ09ORklHX0FDUElfQVBFST15CkNPTkZJR19BQ1BJX0FQRUlfR0hFUz15CkNPTkZJR19BQ1BJX0FQRUlfUENJRUFFUj15CkNPTkZJR19BQ1BJX0FQRUlfTUVNT1JZX0ZBSUxVUkU9eQpDT05GSUdfQUNQSV9BUEVJX0VJTko9eQpDT05GSUdfVklSVFVBTElaQVRJT049eQpDT05GSUdfS1ZNPXkKQ09ORklHX0FSTTY0X0NSWVBUTz15CkNPTkZJR19DUllQVE9fU0hBMV9BUk02NF9DRT15CkNPTkZJR19DUllQVE9fU0hBMl9BUk02NF9DRT15CkNPTkZJR19DUllQVE9fU0hBNTEyX0FSTTY0X0NFPW0KQ09ORklHX0NSWVBUT19TSEEzX0FSTTY0PW0KQ09ORklHX0NSWVBUT19TTTNfQVJNNjRfQ0U9bQpDT05GSUdfQ1JZUFRPX0dIQVNIX0FSTTY0X0NFPXkKQ09ORklHX0NSWVBUT19DUkNUMTBESUZfQVJNNjRfQ0U9bQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9DRV9DQ009eQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9DRV9CTEs9eQpDT05GSUdfQ1JZUFRPX0NIQUNIQTIwX05FT049bQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9CUz1tCkNPTkZJR19KVU1QX0xBQkVMPXkKQ09ORklHX01PRFVMRVM9eQpDT05GSUdfTU9EVUxFX1VOTE9BRD15CkNPTkZJR19NT0RWRVJTSU9OUz15CiMgQ09ORklHX0NPUkVfRFVNUF9ERUZBVUxUX0VMRl9IRUFERVJTIGlzIG5vdCBzZXQKQ09ORklHX0tTTT15CkNPTkZJR19NRU1PUllfRkFJTFVSRT15CkNPTkZJR19UUkFOU1BBUkVOVF9IVUdFUEFHRT15CkNPTkZJR19ORVQ9eQpDT05GSUdfUEFDS0VUPXkKQ09ORklHX1VOSVg9eQpDT05GSUdfSU5FVD15CkNPTkZJR19JUF9NVUxUSUNBU1Q9eQpDT05GSUdfSVBfUE5QPXkKQ09ORklHX0lQX1BOUF9ESENQPXkKQ09ORklHX0lQX1BOUF9CT09UUD15CkNPTkZJR19JUFY2PW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX05FVEZJTFRFUj15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19BQ0NUPXkKQ09ORklHX05FVEZJTFRFUl9ORVRMSU5LX1FVRVVFPXkKQ09ORklHX05GX0NPTk5UUkFDSz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfWk9ORVM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX0VWRU5UUz15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRU9VVD15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRVNUQU1QPXkKQ09ORklHX05GX0NPTk5UUkFDS19GVFA9bQpDT05GSUdfTkZfQ09OTlRSQUNLX0lSQz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0FORT1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0lQPW0KQ09ORklHX05GX0NPTk5UUkFDS19URlRQPW0KQ09ORklHX05GX0NUX05FVExJTks9bQpDT05GSUdfTkVURklMVEVSX1hUX1NFVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NIRUNLU1VNPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ0xBU1NJRlk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DT05OTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0hNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSURMRVRJTUVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTEVEPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTkZRVUVVRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05PVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9URUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9UUFJPWFk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9TRUNNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQT1BUU1RSSVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0FERFJUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9CUEY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ0xVU1RFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09NTUVOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkJZVEVTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTEFCRUw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5UUkFDSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ1BVPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9EQ0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ERVZHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRFNDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRUNOPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9FU1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hBU0hMSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEVMUEVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBDT01QPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFJBTkdFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFZTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MMlRQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MRU5HVEg9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0xJTUlUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01VTFRJUE9SVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTkZBQ0NUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PU0Y9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX09XTkVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QT0xJQ1k9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BIWVNERVY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BLVFRZUEU9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1FVT1RBPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SQVRFRVNUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SRUFMTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVDRU5UPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TQ1RQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TT0NLRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUQVRFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFUSVNUSUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUUklORz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9USU1FPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9VMzI9bQpDT05GSUdfSVBfTkZfSVBUQUJMRVM9bQpDT05GSUdfSVBfTkZfRklMVEVSPW0KQ09ORklHX0lQX05GX1RBUkdFVF9SRUpFQ1Q9bQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFRElSRUNUPXkKQ09ORklHX0lQX05GX05BVD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTUFTUVVFUkFERT1tCkNPTkZJR19JUF9ORl9NQU5HTEU9bQpDT05GSUdfQlJJREdFPW0KQ09ORklHX0JSSURHRV9WTEFOX0ZJTFRFUklORz15CkNPTkZJR19ORVRfRFNBPW0KQ09ORklHX1ZMQU5fODAyMVE9bQpDT05GSUdfVkxBTl84MDIxUV9HVlJQPXkKQ09ORklHX1ZMQU5fODAyMVFfTVZSUD15CkNPTkZJR19ORVRfU0NIRUQ9eQpDT05GSUdfTkVUX1NDSF9DQlM9bQpDT05GSUdfTkVUX1NDSF9FVEY9bQpDT05GSUdfTkVUX1NDSF9UQVBSSU89bQpDT05GSUdfTkVUX1NDSF9NUVBSSU89bQpDT05GSUdfTkVUX1NDSF9JTkdSRVNTPW0KQ09ORklHX05FVF9DTFNfQkFTSUM9bQpDT05GSUdfTkVUX0NMU19GTE9XRVI9bQpDT05GSUdfTkVUX0NMU19BQ1Q9eQpDT05GSUdfTkVUX0FDVF9HQUNUPW0KQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfR0FURT1tCkNPTkZJR19RUlRSPW0KQ09ORklHX1FSVFJfU01EPW0KQ09ORklHX1FSVFJfVFVOPW0KQ09ORklHX0JQRl9KSVQ9eQpDT05GSUdfQ0FOPW0KQ09ORklHX0NBTl9SQ0FSPW0KQ09ORklHX0NBTl9SQ0FSX0NBTkZEPW0KQ09ORklHX0NBTl9GTEVYQ0FOPW0KQ09ORklHX0JUPW0KQ09ORklHX0JUX0hJRFA9bQojIENPTkZJR19CVF9IUyBpcyBub3Qgc2V0CiMgQ09ORklHX0JUX0xFIGlzIG5vdCBzZXQKQ09ORklHX0JUX0xFRFM9eQojIENPTkZJR19CVF9ERUJVR0ZTIGlzIG5vdCBzZXQKQ09ORklHX0JUX0hDSUJUVVNCPW0KQ09ORklHX0JUX0hDSVVBUlQ9bQpDT05GSUdfQlRfSENJVUFSVF9MTD15CkNPTkZJR19CVF9IQ0lVQVJUX0JDTT15CkNPTkZJR19CVF9IQ0lVQVJUX1FDQT15CkNPTkZJR19DRkc4MDIxMT1tCkNPTkZJR19NQUM4MDIxMT1tCkNPTkZJR19NQUM4MDIxMV9MRURTPXkKQ09ORklHX1JGS0lMTD1tCkNPTkZJR19ORVRfOVA9eQpDT05GSUdfTkVUXzlQX1ZJUlRJTz15CkNPTkZJR19ORkM9bQpDT05GSUdfTkZDX05DST1tCkNPTkZJR19ORkNfUzNGV1JONV9JMkM9bQpDT05GSUdfUENJPXkKQ09ORklHX1BDSUVQT1JUQlVTPXkKQ09ORklHX1BDSV9JT1Y9eQpDT05GSUdfUENJX1BBU0lEPXkKQ09ORklHX0hPVFBMVUdfUENJPXkKQ09ORklHX0hPVFBMVUdfUENJX0FDUEk9eQpDT05GSUdfUENJX0FBUkRWQVJLPXkKQ09ORklHX1BDSV9URUdSQT15CkNPTkZJR19QQ0lFX1JDQVJfSE9TVD15CkNPTkZJR19QQ0lFX1JDQVJfRVA9eQpDT05GSUdfUENJX0hPU1RfR0VORVJJQz15CkNPTkZJR19QQ0lfWEdFTkU9eQpDT05GSUdfUENJRV9BTFRFUkE9eQpDT05GSUdfUENJRV9BTFRFUkFfTVNJPXkKQ09ORklHX1BDSV9IT1NUX1RIVU5ERVJfUEVNPXkKQ09ORklHX1BDSV9IT1NUX1RIVU5ERVJfRUNBTT15CkNPTkZJR19QQ0lFX1JPQ0tDSElQX0hPU1Q9bQpDT05GSUdfUENJRV9CUkNNU1RCPW0KQ09ORklHX1BDSV9MQVlFUlNDQVBFPXkKQ09ORklHX1BDSUVfTEFZRVJTQ0FQRV9HRU40PXkKQ09ORklHX1BDSV9ISVNJPXkKQ09ORklHX1BDSUVfUUNPTT15CkNPTkZJR19QQ0lFX0FSTUFEQV84Sz15CkNPTkZJR19QQ0lFX0tJUklOPXkKQ09ORklHX1BDSUVfSElTSV9TVEI9eQpDT05GSUdfUENJRV9URUdSQTE5NF9IT1NUPW0KQ09ORklHX1BDSV9FTkRQT0lOVD15CkNPTkZJR19QQ0lfRU5EUE9JTlRfQ09ORklHRlM9eQpDT05GSUdfUENJX0VQRl9URVNUPW0KQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0ZXX0xPQURFUl9VU0VSX0hFTFBFUj15CkNPTkZJR19GV19MT0FERVJfVVNFUl9IRUxQRVJfRkFMTEJBQ0s9eQpDT05GSUdfSElTSUxJQ09OX0xQQz15CkNPTkZJR19TSU1QTEVfUE1fQlVTPXkKQ09ORklHX0ZTTF9NQ19CVVM9eQpDT05GSUdfVEVHUkFfQUNPTk5FQ1Q9bQpDT05GSUdfTVREPXkKQ09ORklHX01URF9CTE9DSz15CkNPTkZJR19NVERfQ0ZJPXkKQ09ORklHX01URF9DRklfQURWX09QVElPTlM9eQpDT05GSUdfTVREX0NGSV9JTlRFTEVYVD15CkNPTkZJR19NVERfQ0ZJX0FNRFNURD15CkNPTkZJR19NVERfQ0ZJX1NUQUE9eQpDT05GSUdfTVREX1BIWVNNQVA9eQpDT05GSUdfTVREX1BIWVNNQVBfT0Y9eQpDT05GSUdfTVREX0RBVEFGTEFTSD15CkNPTkZJR19NVERfU1NUMjVMPXkKQ09ORklHX01URF9SQVdfTkFORD15CkNPTkZJR19NVERfTkFORF9ERU5BTElfRFQ9eQpDT05GSUdfTVREX05BTkRfTUFSVkVMTD15CkNPTkZJR19NVERfTkFORF9GU0xfSUZDPXkKQ09ORklHX01URF9OQU5EX1FDT009eQpDT05GSUdfTVREX1NQSV9OT1I9eQpDT05GSUdfU1BJX0NBREVOQ0VfUVVBRFNQST15CkNPTkZJR19CTEtfREVWX0xPT1A9eQpDT05GSUdfQkxLX0RFVl9OQkQ9bQpDT05GSUdfVklSVElPX0JMSz15CkNPTkZJR19CTEtfREVWX05WTUU9bQpDT05GSUdfU1JBTT15CkNPTkZJR19QQ0lfRU5EUE9JTlRfVEVTVD1tCkNPTkZJR19FRVBST01fQVQyND1tCkNPTkZJR19FRVBST01fQVQyNT1tCkNPTkZJR19VQUNDRT1tCiMgQ09ORklHX1NDU0lfUFJPQ19GUyBpcyBub3Qgc2V0CkNPTkZJR19CTEtfREVWX1NEPXkKQ09ORklHX1NDU0lfU0FTX0FUQT15CkNPTkZJR19TQ1NJX0hJU0lfU0FTPXkKQ09ORklHX1NDU0lfSElTSV9TQVNfUENJPXkKQ09ORklHX01FR0FSQUlEX1NBUz15CkNPTkZJR19TQ1NJX01QVDNTQVM9bQpDT05GSUdfU0NTSV9VRlNIQ0Q9eQpDT05GSUdfU0NTSV9VRlNIQ0RfUExBVEZPUk09eQpDT05GSUdfU0NTSV9VRlNfUUNPTT1tCkNPTkZJR19TQ1NJX1VGU19ISVNJPXkKQ09ORklHX0FUQT15CkNPTkZJR19TQVRBX0FIQ0k9eQpDT05GSUdfU0FUQV9BSENJX1BMQVRGT1JNPXkKQ09ORklHX0FIQ0lfQ0VWQT15CkNPTkZJR19BSENJX01WRUJVPXkKQ09ORklHX0FIQ0lfWEdFTkU9eQpDT05GSUdfQUhDSV9RT1JJUT15CkNPTkZJR19TQVRBX1NJTDI0PXkKQ09ORklHX1NBVEFfUkNBUj15CkNPTkZJR19QQVRBX1BMQVRGT1JNPXkKQ09ORklHX1BBVEFfT0ZfUExBVEZPUk09eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD1tCkNPTkZJR19CTEtfREVWX0RNPW0KQ09ORklHX0RNX01JUlJPUj1tCkNPTkZJR19ETV9aRVJPPW0KQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfTUFDVkxBTj1tCkNPTkZJR19NQUNWVEFQPW0KQ09ORklHX1RVTj15CkNPTkZJR19WRVRIPW0KQ09ORklHX1ZJUlRJT19ORVQ9eQpDT05GSUdfTkVUX0RTQV9NU0NDX0ZFTElYPW0KQ09ORklHX0FNRF9YR0JFPXkKQ09ORklHX05FVF9YR0VORT15CkNPTkZJR19BVEwxQz1tCkNPTkZJR19CQ01HRU5FVD1tCkNPTkZJR19CTlgyWD1tCkNPTkZJR19NQUNCPXkKQ09ORklHX1RIVU5ERVJfTklDX1BGPXkKQ09ORklHX0ZFQz15CkNPTkZJR19GU0xfRk1BTj15CkNPTkZJR19GU0xfRFBBQV9FVEg9eQpDT05GSUdfRlNMX0RQQUEyX0VUSD15CkNPTkZJR19GU0xfRU5FVEM9eQpDT05GSUdfRlNMX0VORVRDX1ZGPXkKQ09ORklHX0ZTTF9FTkVUQ19RT1M9eQpDT05GSUdfSElYNUhEMl9HTUFDPXkKQ09ORklHX0hOU19EU0FGPXkKQ09ORklHX0hOU19FTkVUPXkKQ09ORklHX0hOUzM9eQpDT05GSUdfSE5TM19IQ0xHRT15CkNPTkZJR19ITlMzX0VORVQ9eQpDT05GSUdfRTEwMDA9eQpDT05GSUdfRTEwMDBFPXkKQ09ORklHX0lHQj15CkNPTkZJR19JR0JWRj15CkNPTkZJR19NVk5FVEE9eQpDT05GSUdfTVZQUDI9eQpDT05GSUdfU0tZMj15CkNPTkZJR19NTFg0X0VOPW0KQ09ORklHX01MWDVfQ09SRT1tCkNPTkZJR19NTFg1X0NPUkVfRU49eQpDT05GSUdfUUNPTV9FTUFDPW0KQ09ORklHX1JNTkVUPW0KQ09ORklHX1NIX0VUSD15CkNPTkZJR19SQVZCPXkKQ09ORklHX1NNQzkxWD15CkNPTkZJR19TTVNDOTExWD15CkNPTkZJR19TTklfQVZFPXkKQ09ORklHX1NOSV9ORVRTRUM9eQpDT05GSUdfU1RNTUFDX0VUSD1tCkNPTkZJR19USV9LM19BTTY1X0NQU1dfTlVTUz15CkNPTkZJR19RQ09NX0lQQT1tCkNPTkZJR19NRElPX0JVU19NVVhfTU1JT1JFRz15CkNPTkZJR19NRElPX0JVU19NVVhfTVVMVElQTEVYRVI9eQpDT05GSUdfQVFVQU5USUFfUEhZPXkKQ09ORklHX01BUlZFTExfUEhZPW0KQ09ORklHX01BUlZFTExfMTBHX1BIWT1tCkNPTkZJR19NRVNPTl9HWExfUEhZPW0KQ09ORklHX01JQ1JFTF9QSFk9eQpDT05GSUdfTUlDUk9TRU1JX1BIWT15CkNPTkZJR19BVDgwM1hfUEhZPXkKQ09ORklHX1JFQUxURUtfUEhZPW0KQ09ORklHX1JPQ0tDSElQX1BIWT15CkNPTkZJR19WSVRFU1NFX1BIWT15CkNPTkZJR19VU0JfUEVHQVNVUz1tCkNPTkZJR19VU0JfUlRMODE1MD1tCkNPTkZJR19VU0JfUlRMODE1Mj1tCkNPTkZJR19VU0JfTEFONzhYWD1tCkNPTkZJR19VU0JfVVNCTkVUPW0KQ09ORklHX1VTQl9ORVRfRE05NjAxPW0KQ09ORklHX1VTQl9ORVRfU1I5ODAwPW0KQ09ORklHX1VTQl9ORVRfU01TQzc1WFg9bQpDT05GSUdfVVNCX05FVF9TTVNDOTVYWD1tCkNPTkZJR19VU0JfTkVUX1BMVVNCPW0KQ09ORklHX1VTQl9ORVRfTUNTNzgzMD1tCkNPTkZJR19BVEgxMEs9bQpDT05GSUdfQVRIMTBLX1BDST1tCkNPTkZJR19BVEgxMEtfU05PQz1tCkNPTkZJR19CUkNNRk1BQz1tCkNPTkZJR19NV0lGSUVYPW0KQ09ORklHX01XSUZJRVhfUENJRT1tCkNPTkZJR19XTDE4WFg9bQpDT05GSUdfV0xDT1JFX1NESU89bQpDT05GSUdfSU5QVVRfRVZERVY9eQpDT05GSUdfS0VZQk9BUkRfQURDPW0KQ09ORklHX0tFWUJPQVJEX0dQSU89eQpDT05GSUdfS0VZQk9BUkRfU05WU19QV1JLRVk9bQpDT05GSUdfS0VZQk9BUkRfSU1YX1NDX0tFWT1tCkNPTkZJR19LRVlCT0FSRF9DUk9TX0VDPXkKQ09ORklHX0lOUFVUX1RPVUNIU0NSRUVOPXkKQ09ORklHX1RPVUNIU0NSRUVOX0FUTUVMX01YVD1tCkNPTkZJR19JTlBVVF9NSVNDPXkKQ09ORklHX0lOUFVUX1BNODk0MV9QV1JLRVk9eQpDT05GSUdfSU5QVVRfUE04WFhYX1ZJQlJBVE9SPW0KQ09ORklHX0lOUFVUX0hJU0lfUE9XRVJLRVk9eQojIENPTkZJR19TRVJJT19TRVJQT1JUIGlzIG5vdCBzZXQKQ09ORklHX1NFUklPX0FNQkFLTUk9eQpDT05GSUdfTEVHQUNZX1BUWV9DT1VOVD0xNgpDT05GSUdfU0VSSUFMXzgyNTA9eQpDT05GSUdfU0VSSUFMXzgyNTBfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9TSEFSRV9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfQkNNMjgzNUFVWD15CkNPTkZJR19TRVJJQUxfODI1MF9EVz15CkNPTkZJR19TRVJJQUxfODI1MF9PTUFQPXkKQ09ORklHX1NFUklBTF84MjUwX01UNjU3Nz15CkNPTkZJR19TRVJJQUxfODI1MF9VTklQSElFUj15CkNPTkZJR19TRVJJQUxfT0ZfUExBVEZPUk09eQpDT05GSUdfU0VSSUFMX0FNQkFfUEwwMTE9eQpDT05GSUdfU0VSSUFMX0FNQkFfUEwwMTFfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfTUVTT049eQpDT05GSUdfU0VSSUFMX01FU09OX0NPTlNPTEU9eQpDT05GSUdfU0VSSUFMX1NBTVNVTkc9eQpDT05GSUdfU0VSSUFMX1NBTVNVTkdfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfVEVHUkE9eQpDT05GSUdfU0VSSUFMX1RFR1JBX1RDVT15CkNPTkZJR19TRVJJQUxfSU1YPXkKQ09ORklHX1NFUklBTF9JTVhfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfU0hfU0NJPXkKQ09ORklHX1NFUklBTF9NU009eQpDT05GSUdfU0VSSUFMX01TTV9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9RQ09NX0dFTkk9eQpDT05GSUdfU0VSSUFMX1FDT01fR0VOSV9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9YSUxJTlhfUFNfVUFSVD15CkNPTkZJR19TRVJJQUxfWElMSU5YX1BTX1VBUlRfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfRlNMX0xQVUFSVD15CkNPTkZJR19TRVJJQUxfRlNMX0xQVUFSVF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9GU0xfTElORkxFWFVBUlQ9eQpDT05GSUdfU0VSSUFMX0ZTTF9MSU5GTEVYVUFSVF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9NVkVCVV9VQVJUPXkKQ09ORklHX1NFUklBTF9PV0w9eQpDT05GSUdfU0VSSUFMX0RFVl9CVVM9eQpDT05GSUdfVklSVElPX0NPTlNPTEU9eQpDT05GSUdfSVBNSV9IQU5ETEVSPW0KQ09ORklHX0lQTUlfREVWSUNFX0lOVEVSRkFDRT1tCkNPTkZJR19JUE1JX1NJPW0KQ09ORklHX1RDR19UUE09eQpDT05GSUdfVENHX1RJU19JMkNfSU5GSU5FT049eQpDT05GSUdfSTJDX0NIQVJERVY9eQpDT05GSUdfSTJDX01VWD15CkNPTkZJR19JMkNfTVVYX1BDQTk1NHg9eQpDT05GSUdfSTJDX0JDTTI4MzU9bQpDT05GSUdfSTJDX0RFU0lHTldBUkVfUExBVEZPUk09eQpDT05GSUdfSTJDX0dQSU89bQpDT05GSUdfSTJDX0lNWD15CkNPTkZJR19JMkNfSU1YX0xQSTJDPXkKQ09ORklHX0kyQ19NRVNPTj15CkNPTkZJR19JMkNfTVY2NFhYWD15CkNPTkZJR19JMkNfT1dMPXkKQ09ORklHX0kyQ19QWEE9eQpDT05GSUdfSTJDX1FDT01fQ0NJPW0KQ09ORklHX0kyQ19RQ09NX0dFTkk9bQpDT05GSUdfSTJDX1FVUD15CkNPTkZJR19JMkNfUkszWD15CkNPTkZJR19JMkNfU0hfTU9CSUxFPXkKQ09ORklHX0kyQ19URUdSQT15CkNPTkZJR19JMkNfVU5JUEhJRVJfRj15CkNPTkZJR19JMkNfUkNBUj15CkNPTkZJR19JMkNfQ1JPU19FQ19UVU5ORUw9eQpDT05GSUdfU1BJPXkKQ09ORklHX1NQSV9BUk1BREFfMzcwMD15CkNPTkZJR19TUElfQkNNMjgzNT1tCkNPTkZJR19TUElfQkNNMjgzNUFVWD1tCkNPTkZJR19TUElfRlNMX0xQU1BJPXkKQ09ORklHX1NQSV9GU0xfUVVBRFNQST15CkNPTkZJR19TUElfTlhQX0ZMRVhTUEk9eQpDT05GSUdfU1BJX0lNWD1tCkNPTkZJR19TUElfRlNMX0RTUEk9eQpDT05GSUdfU1BJX01FU09OX1NQSUNDPW0KQ09ORklHX1NQSV9NRVNPTl9TUElGQz1tCkNPTkZJR19TUElfT1JJT049eQpDT05GSUdfU1BJX1BMMDIyPXkKQ09ORklHX1NQSV9ST0NLQ0hJUD15CkNPTkZJR19TUElfUlBDSUY9bQpDT05GSUdfU1BJX1FDT01fUVNQST1tCkNPTkZJR19TUElfUVVQPXkKQ09ORklHX1NQSV9RQ09NX0dFTkk9bQpDT05GSUdfU1BJX1MzQzY0WFg9eQpDT05GSUdfU1BJX1NIX01TSU9GPW0KQ09ORklHX1NQSV9TVU42ST15CkNPTkZJR19TUElfU1BJREVWPW0KQ09ORklHX1NQTUk9eQpDT05GSUdfUElOQ1RSTF9TSU5HTEU9eQpDT05GSUdfUElOQ1RSTF9NQVg3NzYyMD15CkNPTkZJR19QSU5DVFJMX09XTD15CkNPTkZJR19QSU5DVFJMX1M3MDA9eQpDT05GSUdfUElOQ1RSTF9TOTAwPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1NPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1OPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1QPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1RPXkKQ09ORklHX1BJTkNUUkxfSU1YOFFYUD15CkNPTkZJR19QSU5DVFJMX0lNWDhEWEw9eQpDT05GSUdfUElOQ1RSTF9JUFE4MDc0PXkKQ09ORklHX1BJTkNUUkxfSVBRNjAxOD15CkNPTkZJR19QSU5DVFJMX01TTTg5MTY9eQpDT05GSUdfUElOQ1RSTF9NU004OTk0PXkKQ09ORklHX1BJTkNUUkxfTVNNODk5Nj15CkNPTkZJR19QSU5DVFJMX01TTTg5OTg9eQpDT05GSUdfUElOQ1RSTF9RQ1M0MDQ9eQpDT05GSUdfUElOQ1RSTF9RREYyWFhYPXkKQ09ORklHX1BJTkNUUkxfUUNPTV9TUE1JX1BNSUM9eQpDT05GSUdfUElOQ1RSTF9TQzcxODA9eQpDT05GSUdfUElOQ1RSTF9TRE04NDU9eQpDT05GSUdfUElOQ1RSTF9TTTgxNTA9eQpDT05GSUdfUElOQ1RSTF9TTTgyNTA9eQpDT05GSUdfR1BJT19BTFRFUkE9bQpDT05GSUdfR1BJT19EV0FQQj15CkNPTkZJR19HUElPX01CODZTN1g9eQpDT05GSUdfR1BJT19NUEM4WFhYPXkKQ09ORklHX0dQSU9fTVhDPXkKQ09ORklHX0dQSU9fUEwwNjE9eQpDT05GSUdfR1BJT19SQ0FSPXkKQ09ORklHX0dQSU9fVU5JUEhJRVI9eQpDT05GSUdfR1BJT19XQ0Q5MzRYPW0KQ09ORklHX0dQSU9fWEdFTkU9eQpDT05GSUdfR1BJT19YR0VORV9TQj15CkNPTkZJR19HUElPX01BWDczMlg9eQpDT05GSUdfR1BJT19QQ0E5NTNYPXkKQ09ORklHX0dQSU9fUENBOTUzWF9JUlE9eQpDT05GSUdfR1BJT19CRDk1NzFNV1Y9bQpDT05GSUdfR1BJT19NQVg3NzYyMD15CkNPTkZJR19HUElPX1NMMjhDUExEPW0KQ09ORklHX1BPV0VSX0FWUz15CkNPTkZJR19RQ09NX0NQUj15CkNPTkZJR19ST0NLQ0hJUF9JT0RPTUFJTj15CkNPTkZJR19QT1dFUl9SRVNFVF9NU009eQpDT05GSUdfUE9XRVJfUkVTRVRfWEdFTkU9eQpDT05GSUdfUE9XRVJfUkVTRVRfU1lTQ09OPXkKQ09ORklHX1NZU0NPTl9SRUJPT1RfTU9ERT15CkNPTkZJR19CQVRURVJZX1NCUz1tCkNPTkZJR19CQVRURVJZX0JRMjdYWFg9eQpDT05GSUdfU0VOU09SU19BUk1fU0NQST15CkNPTkZJR19TRU5TT1JTX0xNOTA9bQpDT05GSUdfU0VOU09SU19QV01fRkFOPW0KQ09ORklHX1NFTlNPUlNfUkFTUEJFUlJZUElfSFdNT049bQpDT05GSUdfU0VOU09SU19TTDI4Q1BMRD1tCkNPTkZJR19TRU5TT1JTX0lOQTJYWD1tCkNPTkZJR19TRU5TT1JTX0lOQTMyMjE9bQpDT05GSUdfVEhFUk1BTF9HT1ZfUE9XRVJfQUxMT0NBVE9SPXkKQ09ORklHX0NQVV9USEVSTUFMPXkKQ09ORklHX1RIRVJNQUxfRU1VTEFUSU9OPXkKQ09ORklHX1FPUklRX1RIRVJNQUw9bQpDT05GSUdfU1VOOElfVEhFUk1BTD15CkNPTkZJR19JTVhfU0NfVEhFUk1BTD1tCkNPTkZJR19JTVg4TU1fVEhFUk1BTD1tCkNPTkZJR19ST0NLQ0hJUF9USEVSTUFMPW0KQ09ORklHX1JDQVJfVEhFUk1BTD15CkNPTkZJR19SQ0FSX0dFTjNfVEhFUk1BTD15CkNPTkZJR19BUk1BREFfVEhFUk1BTD15CkNPTkZJR19CQ00yNzExX1RIRVJNQUw9bQpDT05GSUdfQkNNMjgzNV9USEVSTUFMPW0KQ09ORklHX0JSQ01TVEJfVEhFUk1BTD1tCkNPTkZJR19FWFlOT1NfVEhFUk1BTD15CkNPTkZJR19URUdSQV9CUE1QX1RIRVJNQUw9bQpDT05GSUdfUUNPTV9UU0VOUz15CkNPTkZJR19RQ09NX1NQTUlfVEVNUF9BTEFSTT1tCkNPTkZJR19VTklQSElFUl9USEVSTUFMPXkKQ09ORklHX1dBVENIRE9HPXkKQ09ORklHX1NMMjhDUExEX1dBVENIRE9HPW0KQ09ORklHX0FSTV9TUDgwNV9XQVRDSERPRz15CkNPTkZJR19BUk1fU0JTQV9XQVRDSERPRz15CkNPTkZJR19BUk1fU01DX1dBVENIRE9HPXkKQ09ORklHX1MzQzI0MTBfV0FUQ0hET0c9eQpDT05GSUdfRFdfV0FUQ0hET0c9eQpDT05GSUdfU1VOWElfV0FUQ0hET0c9bQpDT05GSUdfSU1YMl9XRFQ9eQpDT05GSUdfSU1YX1NDX1dEVD1tCkNPTkZJR19RQ09NX1dEVD1tCkNPTkZJR19NRVNPTl9HWEJCX1dBVENIRE9HPW0KQ09ORklHX01FU09OX1dBVENIRE9HPW0KQ09ORklHX1JFTkVTQVNfV0RUPXkKQ09ORklHX1VOSVBISUVSX1dBVENIRE9HPXkKQ09ORklHX0JDTTI4MzVfV0RUPXkKQ09ORklHX01GRF9BTFRFUkFfU1lTTUdSPXkKQ09ORklHX01GRF9CRDk1NzFNV1Y9eQpDT05GSUdfTUZEX0FYUDIwWF9JMkM9eQpDT05GSUdfTUZEX0FYUDIwWF9SU0I9eQpDT05GSUdfTUZEX0VYWU5PU19MUEFTUz1tCkNPTkZJR19NRkRfSEk2NDIxX1BNSUM9eQpDT05GSUdfTUZEX0hJNjU1WF9QTUlDPXkKQ09ORklHX01GRF9NQVg3NzYyMD15CkNPTkZJR19NRkRfU1BNSV9QTUlDPXkKQ09ORklHX01GRF9SSzgwOD15CkNPTkZJR19NRkRfU0VDX0NPUkU9eQpDT05GSUdfTUZEX1NMMjhDUExEPXkKQ09ORklHX01GRF9ST0hNX0JENzE4WFg9eQpDT05GSUdfTUZEX1dDRDkzNFg9bQpDT05GSUdfUkVHVUxBVE9SX0ZJWEVEX1ZPTFRBR0U9eQpDT05GSUdfUkVHVUxBVE9SX0FYUDIwWD15CkNPTkZJR19SRUdVTEFUT1JfQkQ3MThYWD15CkNPTkZJR19SRUdVTEFUT1JfQkQ5NTcxTVdWPXkKQ09ORklHX1JFR1VMQVRPUl9GQU41MzU1NT15CkNPTkZJR19SRUdVTEFUT1JfR1BJTz15CkNPTkZJR19SRUdVTEFUT1JfSEk2NDIxVjUzMD15CkNPTkZJR19SRUdVTEFUT1JfSEk2NTVYPXkKQ09ORklHX1JFR1VMQVRPUl9NQVg3NzYyMD15CkNPTkZJR19SRUdVTEFUT1JfTUFYODk3Mz15CkNPTkZJR19SRUdVTEFUT1JfUENBOTQ1MD15CkNPTkZJR19SRUdVTEFUT1JfUEZVWkUxMDA9eQpDT05GSUdfUkVHVUxBVE9SX1BXTT15CkNPTkZJR19SRUdVTEFUT1JfUUNPTV9SUE1IPXkKQ09ORklHX1JFR1VMQVRPUl9RQ09NX1NNRF9SUE09eQpDT05GSUdfUkVHVUxBVE9SX1FDT01fU1BNST15CkNPTkZJR19SRUdVTEFUT1JfUks4MDg9eQpDT05GSUdfUkVHVUxBVE9SX1MyTVBTMTE9eQpDT05GSUdfUkVHVUxBVE9SX1ZDVFJMPW0KQ09ORklHX1JDX0NPUkU9bQpDT05GSUdfUkNfREVDT0RFUlM9eQpDT05GSUdfUkNfREVWSUNFUz15CkNPTkZJR19JUl9NRVNPTj1tCkNPTkZJR19JUl9TVU5YST1tCkNPTkZJR19NRURJQV9TVVBQT1JUPW0KQ09ORklHX01FRElBX0NBTUVSQV9TVVBQT1JUPXkKQ09ORklHX01FRElBX0FOQUxPR19UVl9TVVBQT1JUPXkKQ09ORklHX01FRElBX0RJR0lUQUxfVFZfU1VQUE9SVD15CkNPTkZJR19NRURJQV9TRFJfU1VQUE9SVD15CkNPTkZJR19NRURJQV9DT05UUk9MTEVSPXkKQ09ORklHX1ZJREVPX1Y0TDJfU1VCREVWX0FQST15CkNPTkZJR19NRURJQV9QTEFURk9STV9TVVBQT1JUPXkKIyBDT05GSUdfRFZCX05FVCBpcyBub3Qgc2V0CkNPTkZJR19NRURJQV9VU0JfU1VQUE9SVD15CkNPTkZJR19VU0JfVklERU9fQ0xBU1M9bQpDT05GSUdfVjRMX1BMQVRGT1JNX0RSSVZFUlM9eQpDT05GSUdfVklERU9fUkNBUl9DU0kyPW0KQ09ORklHX1ZJREVPX1JDQVJfVklOPW0KQ09ORklHX1ZJREVPX1NVTjZJX0NTST1tCkNPTkZJR19WNExfTUVNMk1FTV9EUklWRVJTPXkKQ09ORklHX1ZJREVPX1NBTVNVTkdfUzVQX0pQRUc9bQpDT05GSUdfVklERU9fU0FNU1VOR19TNVBfTUZDPW0KQ09ORklHX1ZJREVPX1NBTVNVTkdfRVhZTk9TX0dTQz1tCkNPTkZJR19WSURFT19SRU5FU0FTX0ZEUDE9bQpDT05GSUdfVklERU9fUkVORVNBU19GQ1A9bQpDT05GSUdfVklERU9fUkVORVNBU19WU1AxPW0KQ09ORklHX1NEUl9QTEFURk9STV9EUklWRVJTPXkKQ09ORklHX1ZJREVPX1JDQVJfRFJJRj1tCkNPTkZJR19WSURFT19JTVgyMTk9bQpDT05GSUdfVklERU9fT1Y1NjQ1PW0KQ09ORklHX1ZJREVPX1FDT01fQ0FNU1M9bQpDT05GSUdfRFJNPW0KQ09ORklHX0RSTV9JMkNfTlhQX1REQTk5OFg9bQpDT05GSUdfRFJNX01BTElfRElTUExBWT1tCkNPTkZJR19EUk1fTk9VVkVBVT1tCkNPTkZJR19EUk1fRVhZTk9TPW0KQ09ORklHX0RSTV9FWFlOT1M1NDMzX0RFQ09OPXkKQ09ORklHX0RSTV9FWFlOT1M3X0RFQ09OPXkKQ09ORklHX0RSTV9FWFlOT1NfRFNJPXkKIyBDT05GSUdfRFJNX0VYWU5PU19EUCBpcyBub3Qgc2V0CkNPTkZJR19EUk1fRVhZTk9TX0hETUk9eQpDT05GSUdfRFJNX0VYWU5PU19NSUM9eQpDT05GSUdfRFJNX1JPQ0tDSElQPW0KQ09ORklHX1JPQ0tDSElQX0FOQUxPR0lYX0RQPXkKQ09ORklHX1JPQ0tDSElQX0NETl9EUD15CkNPTkZJR19ST0NLQ0hJUF9EV19IRE1JPXkKQ09ORklHX1JPQ0tDSElQX0RXX01JUElfRFNJPXkKQ09ORklHX1JPQ0tDSElQX0lOTk9fSERNST15CkNPTkZJR19EUk1fUkNBUl9EVT1tCkNPTkZJR19EUk1fUkNBUl9EV19IRE1JPW0KQ09ORklHX0RSTV9TVU40ST1tCkNPTkZJR19EUk1fU1VONklfRFNJPW0KQ09ORklHX0RSTV9TVU44SV9EV19IRE1JPW0KQ09ORklHX0RSTV9TVU44SV9NSVhFUj1tCkNPTkZJR19EUk1fTVNNPW0KQ09ORklHX0RSTV9URUdSQT1tCkNPTkZJR19EUk1fUEFORUxfTFZEUz1tCkNPTkZJR19EUk1fUEFORUxfU0lNUExFPW0KQ09ORklHX0RSTV9QQU5FTF9SQVlESVVNX1JNNjcxOTE9bQpDT05GSUdfRFJNX1BBTkVMX1NJVFJPTklYX1NUNzcwMz1tCkNPTkZJR19EUk1fUEFORUxfVFJVTFlfTlQzNTU5N19XUVhHQT1tCkNPTkZJR19EUk1fRElTUExBWV9DT05ORUNUT1I9bQpDT05GSUdfRFJNX05XTF9NSVBJX0RTST1tCkNPTkZJR19EUk1fTE9OVElVTV9MVDk2MTE9bQpDT05GSUdfRFJNX1NJSTkwMlg9bQpDT05GSUdfRFJNX1NJTVBMRV9CUklER0U9bQpDT05GSUdfRFJNX1RISU5FX1RIQzYzTFZEMTAyND1tCkNPTkZJR19EUk1fVElfU042NURTSTg2PW0KQ09ORklHX0RSTV9JMkNfQURWNzUxMT1tCkNPTkZJR19EUk1fSTJDX0FEVjc1MTFfQVVESU89eQpDT05GSUdfRFJNX0RXX0hETUlfQUhCX0FVRElPPW0KQ09ORklHX0RSTV9EV19IRE1JX0NFQz1tCkNPTkZJR19EUk1fVkM0PW0KQ09ORklHX0RSTV9FVE5BVklWPW0KQ09ORklHX0RSTV9ISVNJX0hJQk1DPW0KQ09ORklHX0RSTV9ISVNJX0tJUklOPW0KQ09ORklHX0RSTV9NWFNGQj1tCkNPTkZJR19EUk1fTUVTT049bQpDT05GSUdfRFJNX1BMMTExPW0KQ09ORklHX0RSTV9MSU1BPW0KQ09ORklHX0RSTV9QQU5GUk9TVD1tCkNPTkZJR19GQj15CkNPTkZJR19GQl9NT0RFX0hFTFBFUlM9eQpDT05GSUdfRkJfRUZJPXkKQ09ORklHX0JBQ0tMSUdIVF9HRU5FUklDPW0KQ09ORklHX0JBQ0tMSUdIVF9QV009bQpDT05GSUdfQkFDS0xJR0hUX0xQODU1WD1tCkNPTkZJR19MT0dPPXkKIyBDT05GSUdfTE9HT19MSU5VWF9NT05PIGlzIG5vdCBzZXQKIyBDT05GSUdfTE9HT19MSU5VWF9WR0ExNiBpcyBub3Qgc2V0CkNPTkZJR19TT1VORD15CkNPTkZJR19TTkQ9eQpDT05GSUdfU05EX0hEQV9URUdSQT1tCkNPTkZJR19TTkRfSERBX0NPREVDX0hETUk9bQpDT05GSUdfU05EX1NPQz15CkNPTkZJR19TTkRfQkNNMjgzNV9TT0NfSTJTPW0KQ09ORklHX1NORF9TT0NfRlNMX1NBST1tCkNPTkZJR19TTkRfTUVTT05fQVhHX1NPVU5EX0NBUkQ9bQpDT05GSUdfU05EX01FU09OX0dYX1NPVU5EX0NBUkQ9bQpDT05GSUdfU05EX1NPQ19RQ09NPW0KQ09ORklHX1NORF9TT0NfQVBRODAxNl9TQkM9bQpDT05GSUdfU05EX1NPQ19NU004OTk2PW0KQ09ORklHX1NORF9TT0NfU0RNODQ1PW0KQ09ORklHX1NORF9TT0NfUk9DS0NISVA9bQpDT05GSUdfU05EX1NPQ19ST0NLQ0hJUF9TUERJRj1tCkNPTkZJR19TTkRfU09DX1JPQ0tDSElQX1JUNTY0NT1tCkNPTkZJR19TTkRfU09DX1JLMzM5OV9HUlVfU09VTkQ9bQpDT05GSUdfU05EX1NPQ19TQU1TVU5HPXkKQ09ORklHX1NORF9TT0NfUkNBUj1tCkNPTkZJR19TTkRfU1VONElfU1BESUY9bQpDT05GSUdfU05EX1NPQ19URUdSQT1tCkNPTkZJR19TTkRfU09DX1RFR1JBMjEwX0FIVUI9bQpDT05GSUdfU05EX1NPQ19URUdSQTIxMF9ETUlDPW0KQ09ORklHX1NORF9TT0NfVEVHUkEyMTBfSTJTPW0KQ09ORklHX1NORF9TT0NfVEVHUkExODZfRFNQSz1tCkNPTkZJR19TTkRfU09DX1RFR1JBMjEwX0FETUFJRj1tCkNPTkZJR19TTkRfU09DX0FLNDYxMz1tCkNPTkZJR19TTkRfU09DX0VTNzEzND1tCkNPTkZJR19TTkRfU09DX0VTNzI0MT1tCkNPTkZJR19TTkRfU09DX1BDTTMxNjhBX0kyQz1tCkNPTkZJR19TTkRfU09DX1NJTVBMRV9BTVBMSUZJRVI9bQpDT05GSUdfU05EX1NPQ19UQVM1NzFYPW0KQ09ORklHX1NORF9TT0NfV0NEOTM0WD1tCkNPTkZJR19TTkRfU09DX1dNODkwND1tCkNPTkZJR19TTkRfU09DX1dTQTg4MVg9bQpDT05GSUdfU05EX1NJTVBMRV9DQVJEPW0KQ09ORklHX1NORF9BVURJT19HUkFQSF9DQVJEPW0KQ09ORklHX0kyQ19ISUQ9bQpDT05GSUdfVVNCX0NPTk5fR1BJTz1tCkNPTkZJR19VU0I9eQpDT05GSUdfVVNCX09URz15CkNPTkZJR19VU0JfWEhDSV9IQ0Q9eQpDT05GSUdfVVNCX1hIQ0lfVEVHUkE9eQpDT05GSUdfVVNCX0VIQ0lfSENEPXkKQ09ORklHX1VTQl9FSENJX0VYWU5PUz15CkNPTkZJR19VU0JfRUhDSV9IQ0RfUExBVEZPUk09eQpDT05GSUdfVVNCX09IQ0lfSENEPXkKQ09ORklHX1VTQl9PSENJX0VYWU5PUz15CkNPTkZJR19VU0JfT0hDSV9IQ0RfUExBVEZPUk09eQpDT05GSUdfVVNCX1JFTkVTQVNfVVNCSFNfSENEPW0KQ09ORklHX1VTQl9SRU5FU0FTX1VTQkhTPW0KQ09ORklHX1VTQl9BQ009bQpDT05GSUdfVVNCX1NUT1JBR0U9eQpDT05GSUdfVVNCX01VU0JfSERSQz15CkNPTkZJR19VU0JfTVVTQl9TVU5YST15CkNPTkZJR19VU0JfRFdDMz15CkNPTkZJR19VU0JfRFdDMj15CkNPTkZJR19VU0JfQ0hJUElERUE9eQpDT05GSUdfVVNCX0NISVBJREVBX1VEQz15CkNPTkZJR19VU0JfQ0hJUElERUFfSE9TVD15CkNPTkZJR19VU0JfSVNQMTc2MD15CkNPTkZJR19VU0JfU0VSSUFMPW0KQ09ORklHX1VTQl9TRVJJQUxfRlRESV9TSU89bQpDT05GSUdfVVNCX0hTSUNfVVNCMzUwMz15CkNPTkZJR19OT1BfVVNCX1hDRUlWPXkKQ09ORklHX1VTQl9HQURHRVQ9eQpDT05GSUdfVVNCX1JFTkVTQVNfVVNCSFNfVURDPW0KQ09ORklHX1VTQl9SRU5FU0FTX1VTQjM9bQpDT05GSUdfVVNCX1RFR1JBX1hVREM9bQpDT05GSUdfVVNCX0NPTkZJR0ZTPW0KQ09ORklHX1VTQl9DT05GSUdGU19TRVJJQUw9eQpDT05GSUdfVVNCX0NPTkZJR0ZTX0FDTT15CkNPTkZJR19VU0JfQ09ORklHRlNfT0JFWD15CkNPTkZJR19VU0JfQ09ORklHRlNfTkNNPXkKQ09ORklHX1VTQl9DT05GSUdGU19FQ009eQpDT05GSUdfVVNCX0NPTkZJR0ZTX0VDTV9TVUJTRVQ9eQpDT05GSUdfVVNCX0NPTkZJR0ZTX1JORElTPXkKQ09ORklHX1VTQl9DT05GSUdGU19FRU09eQpDT05GSUdfVVNCX0NPTkZJR0ZTX01BU1NfU1RPUkFHRT15CkNPTkZJR19VU0JfQ09ORklHRlNfRl9GUz15CkNPTkZJR19UWVBFQz1tCkNPTkZJR19UWVBFQ19UQ1BNPW0KQ09ORklHX1RZUEVDX0ZVU0IzMDI9bQpDT05GSUdfVFlQRUNfSEQzU1MzMjIwPW0KQ09ORklHX01NQz15CkNPTkZJR19NTUNfQkxPQ0tfTUlOT1JTPTMyCkNPTkZJR19NTUNfQVJNTU1DST15CkNPTkZJR19NTUNfU0RIQ0k9eQpDT05GSUdfTU1DX1NESENJX0FDUEk9eQpDT05GSUdfTU1DX1NESENJX1BMVEZNPXkKQ09ORklHX01NQ19TREhDSV9PRl9BUkFTQU49eQpDT05GSUdfTU1DX1NESENJX09GX0VTREhDPXkKQ09ORklHX01NQ19TREhDSV9DQURFTkNFPXkKQ09ORklHX01NQ19TREhDSV9FU0RIQ19JTVg9eQpDT05GSUdfTU1DX1NESENJX1RFR1JBPXkKQ09ORklHX01NQ19TREhDSV9GX1NESDMwPXkKQ09ORklHX01NQ19NRVNPTl9HWD15CkNPTkZJR19NTUNfU0RIQ0lfTVNNPXkKQ09ORklHX01NQ19TUEk9eQpDT05GSUdfTU1DX1NESEk9eQpDT05GSUdfTU1DX1VOSVBISUVSPXkKQ09ORklHX01NQ19EVz15CkNPTkZJR19NTUNfRFdfRVhZTk9TPXkKQ09ORklHX01NQ19EV19ISTM3OThDVjIwMD15CkNPTkZJR19NTUNfRFdfSzM9eQpDT05GSUdfTU1DX0RXX1JPQ0tDSElQPXkKQ09ORklHX01NQ19TVU5YST15CkNPTkZJR19NTUNfQkNNMjgzNT15CkNPTkZJR19NTUNfU0RIQ0lfWEVOT049eQpDT05GSUdfTU1DX1NESENJX0FNNjU0PXkKQ09ORklHX01NQ19PV0w9eQpDT05GSUdfTkVXX0xFRFM9eQpDT05GSUdfTEVEU19DTEFTUz15CkNPTkZJR19MRURTX0dQSU89eQpDT05GSUdfTEVEU19QV009eQpDT05GSUdfTEVEU19TWVNDT049eQpDT05GSUdfTEVEU19UUklHR0VSX1RJTUVSPXkKQ09ORklHX0xFRFNfVFJJR0dFUl9ESVNLPXkKQ09ORklHX0xFRFNfVFJJR0dFUl9IRUFSVEJFQVQ9eQpDT05GSUdfTEVEU19UUklHR0VSX0NQVT15CkNPTkZJR19MRURTX1RSSUdHRVJfREVGQVVMVF9PTj15CkNPTkZJR19MRURTX1RSSUdHRVJfUEFOSUM9eQpDT05GSUdfRURBQz15CkNPTkZJR19FREFDX0dIRVM9eQpDT05GSUdfUlRDX0NMQVNTPXkKQ09ORklHX1JUQ19EUlZfRFMxMzA3PW0KQ09ORklHX1JUQ19EUlZfTUFYNzc2ODY9eQpDT05GSUdfUlRDX0RSVl9SSzgwOD1tCkNPTkZJR19SVENfRFJWX1BDRjg1MzYzPW0KQ09ORklHX1JUQ19EUlZfUlg4NTgxPW0KQ09ORklHX1JUQ19EUlZfUlY4ODAzPW0KQ09ORklHX1JUQ19EUlZfUzVNPXkKQ09ORklHX1JUQ19EUlZfRFMzMjMyPXkKQ09ORklHX1JUQ19EUlZfUENGMjEyNz1tCkNPTkZJR19SVENfRFJWX0VGST15CkNPTkZJR19SVENfRFJWX0NST1NfRUM9eQpDT05GSUdfUlRDX0RSVl9TM0M9eQpDT05GSUdfUlRDX0RSVl9QTDAzMT15CkNPTkZJR19SVENfRFJWX1NVTjZJPXkKQ09ORklHX1JUQ19EUlZfQVJNQURBMzhYPXkKQ09ORklHX1JUQ19EUlZfUE04WFhYPW0KQ09ORklHX1JUQ19EUlZfVEVHUkE9eQpDT05GSUdfUlRDX0RSVl9TTlZTPW0KQ09ORklHX1JUQ19EUlZfSU1YX1NDPW0KQ09ORklHX1JUQ19EUlZfWEdFTkU9eQpDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19ETUFfQkNNMjgzNT15CkNPTkZJR19ETUFfU1VONkk9bQpDT05GSUdfRlNMX0VETUE9eQpDT05GSUdfSU1YX1NETUE9eQpDT05GSUdfSzNfRE1BPXkKQ09ORklHX01WX1hPUj15CkNPTkZJR19NVl9YT1JfVjI9eQpDT05GSUdfT1dMX0RNQT15CkNPTkZJR19QTDMzMF9ETUE9eQpDT05GSUdfVEVHUkEyMF9BUEJfRE1BPXkKQ09ORklHX1RFR1JBMjEwX0FETUE9bQpDT05GSUdfUUNPTV9CQU1fRE1BPXkKQ09ORklHX1FDT01fSElETUFfTUdNVD15CkNPTkZJR19RQ09NX0hJRE1BPXkKQ09ORklHX1JDQVJfRE1BQz15CkNPTkZJR19SRU5FU0FTX1VTQl9ETUFDPW0KQ09ORklHX1RJX0szX1VETUE9eQpDT05GSUdfVElfSzNfVURNQV9HTFVFX0xBWUVSPXkKQ09ORklHX1ZGSU89eQpDT05GSUdfVkZJT19QQ0k9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19WSVJUSU9fQkFMTE9PTj15CkNPTkZJR19WSVJUSU9fTU1JTz15CkNPTkZJR19YRU5fR05UREVWPXkKQ09ORklHX1hFTl9HUkFOVF9ERVZfQUxMT0M9eQpDT05GSUdfTUZEX0NST1NfRUNfREVWPXkKQ09ORklHX0NIUk9NRV9QTEFURk9STVM9eQpDT05GSUdfQ1JPU19FQz15CkNPTkZJR19DUk9TX0VDX0kyQz15CkNPTkZJR19DUk9TX0VDX1NQST15CkNPTkZJR19DUk9TX0VDX0NIQVJERVY9bQpDT05GSUdfQ09NTU9OX0NMS19SSzgwOD15CkNPTkZJR19DT01NT05fQ0xLX1NDUEk9eQpDT05GSUdfQ09NTU9OX0NMS19DUzIwMDBfQ1A9eQpDT05GSUdfQ09NTU9OX0NMS19GU0xfU0FJPXkKQ09ORklHX0NPTU1PTl9DTEtfUzJNUFMxMT15CkNPTkZJR19DT01NT05fQ0xLX1BXTT15CkNPTkZJR19DT01NT05fQ0xLX1ZDNT15CkNPTkZJR19DT01NT05fQ0xLX0JENzE4WFg9bQpDT05GSUdfQ0xLX1JBU1BCRVJSWVBJPW0KQ09ORklHX0NMS19JTVg4TU09eQpDT05GSUdfQ0xLX0lNWDhNTj15CkNPTkZJR19DTEtfSU1YOE1QPXkKQ09ORklHX0NMS19JTVg4TVE9eQpDT05GSUdfQ0xLX0lNWDhRWFA9eQpDT05GSUdfVElfU0NJX0NMSz15CkNPTkZJR19DT01NT05fQ0xLX1FDT009eQpDT05GSUdfUUNPTV9BNTNQTEw9eQpDT05GSUdfUUNPTV9DTEtfQVBDU19NU004OTE2PXkKQ09ORklHX1FDT01fQ0xLX1NNRF9SUE09eQpDT05GSUdfUUNPTV9DTEtfUlBNSD15CkNPTkZJR19JUFFfR0NDXzgwNzQ9eQpDT05GSUdfSVBRX0dDQ182MDE4PXkKQ09ORklHX01TTV9HQ0NfODkxNj15CkNPTkZJR19NU01fR0NDXzg5OTQ9eQpDT05GSUdfTVNNX01NQ0NfODk5Nj15CkNPTkZJR19NU01fR0NDXzg5OTg9eQpDT05GSUdfUUNTX0dDQ180MDQ9eQpDT05GSUdfU0NfR0NDXzcxODA9eQpDT05GSUdfU0RNX0NBTUNDXzg0NT1tCkNPTkZJR19TRE1fR0NDXzg0NT15CkNPTkZJR19TRE1fR1BVQ0NfODQ1PXkKQ09ORklHX1NETV9WSURFT0NDXzg0NT15CkNPTkZJR19TRE1fRElTUENDXzg0NT15CkNPTkZJR19TTV9HQ0NfODE1MD15CkNPTkZJR19TTV9HQ0NfODI1MD15CkNPTkZJR19TTV9HUFVDQ184MTUwPXkKQ09ORklHX1NNX0dQVUNDXzgyNTA9eQpDT05GSUdfUUNPTV9IRlBMTD15CkNPTkZJR19IV1NQSU5MT0NLPXkKQ09ORklHX0hXU1BJTkxPQ0tfUUNPTT15CkNPTkZJR19BUk1fTUhVPXkKQ09ORklHX0lNWF9NQk9YPXkKQ09ORklHX1BMQVRGT1JNX01IVT15CkNPTkZJR19CQ00yODM1X01CT1g9eQpDT05GSUdfUUNPTV9BUENTX0lQQz15CkNPTkZJR19RQ09NX0lQQ0M9eQpDT05GSUdfUk9DS0NISVBfSU9NTVU9eQpDT05GSUdfVEVHUkFfSU9NTVVfU01NVT15CkNPTkZJR19BUk1fU01NVT15CkNPTkZJR19BUk1fU01NVV9WMz15CkNPTkZJR19RQ09NX0lPTU1VPXkKQ09ORklHX1JFTU9URVBST0M9eQpDT05GSUdfUUNPTV9RNlY1X01TUz1tCkNPTkZJR19RQ09NX1E2VjVfUEFTPW0KQ09ORklHX1FDT01fU1lTTU9OPW0KQ09ORklHX1JQTVNHX1FDT01fR0xJTktfUlBNPXkKQ09ORklHX1JQTVNHX1FDT01fR0xJTktfU01FTT1tCkNPTkZJR19SUE1TR19RQ09NX1NNRD15CkNPTkZJR19TT1VORFdJUkU9bQpDT05GSUdfU09VTkRXSVJFX1FDT009bQpDT05GSUdfT1dMX1BNX0RPTUFJTlM9eQpDT05GSUdfUkFTUEJFUlJZUElfUE9XRVI9eQpDT05GSUdfRlNMX0RQQUE9eQpDT05GSUdfRlNMX01DX0RQSU89eQpDT05GSUdfUUNPTV9BT1NTX1FNUD15CkNPTkZJR19RQ09NX0dFTklfU0U9eQpDT05GSUdfUUNPTV9STVRGU19NRU09bQpDT05GSUdfUUNPTV9SUE1IPXkKQ09ORklHX1FDT01fUlBNSFBEPXkKQ09ORklHX1FDT01fUlBNUEQ9eQpDT05GSUdfUUNPTV9TTUVNPXkKQ09ORklHX1FDT01fU01EX1JQTT15CkNPTkZJR19RQ09NX1NNUDJQPXkKQ09ORklHX1FDT01fU01TTT15CkNPTkZJR19RQ09NX1NPQ0lORk89bQpDT05GSUdfUUNPTV9BUFI9bQpDT05GSUdfQVJDSF9SOEE3NzRBMT15CkNPTkZJR19BUkNIX1I4QTc3NEIxPXkKQ09ORklHX0FSQ0hfUjhBNzc0QzA9eQpDT05GSUdfQVJDSF9SOEE3NzRFMT15CkNPTkZJR19BUkNIX1I4QTc3OTUwPXkKQ09ORklHX0FSQ0hfUjhBNzc5NTE9eQpDT05GSUdfQVJDSF9SOEE3Nzk2MD15CkNPTkZJR19BUkNIX1I4QTc3OTYxPXkKQ09ORklHX0FSQ0hfUjhBNzc5NjU9eQpDT05GSUdfQVJDSF9SOEE3Nzk3MD15CkNPTkZJR19BUkNIX1I4QTc3OTgwPXkKQ09ORklHX0FSQ0hfUjhBNzc5OTA9eQpDT05GSUdfQVJDSF9SOEE3Nzk5NT15CkNPTkZJR19ST0NLQ0hJUF9QTV9ET01BSU5TPXkKQ09ORklHX0FSQ0hfVEVHUkFfMTMyX1NPQz15CkNPTkZJR19BUkNIX1RFR1JBXzIxMF9TT0M9eQpDT05GSUdfQVJDSF9URUdSQV8xODZfU09DPXkKQ09ORklHX0FSQ0hfVEVHUkFfMTk0X1NPQz15CkNPTkZJR19BUkNIX0szX0FNNl9TT0M9eQpDT05GSUdfQVJDSF9LM19KNzIxRV9TT0M9eQpDT05GSUdfVElfU0NJX1BNX0RPTUFJTlM9eQpDT05GSUdfRVhUQ09OX1BUTjUxNTA9bQpDT05GSUdfRVhUQ09OX1VTQl9HUElPPXkKQ09ORklHX0VYVENPTl9VU0JDX0NST1NfRUM9eQpDT05GSUdfUkVORVNBU19SUENJRj1tCkNPTkZJR19JSU89eQpDT05GSUdfRVhZTk9TX0FEQz15CkNPTkZJR19NQVg5NjExPW0KQ09ORklHX1FDT01fU1BNSV9BREM1PW0KQ09ORklHX1JPQ0tDSElQX1NBUkFEQz1tCkNPTkZJR19JSU9fQ1JPU19FQ19TRU5TT1JTX0NPUkU9bQpDT05GSUdfSUlPX0NST1NfRUNfU0VOU09SUz1tCkNPTkZJR19JSU9fQ1JPU19FQ19MSUdIVF9QUk9YPW0KQ09ORklHX1NFTlNPUlNfSVNMMjkwMTg9bQpDT05GSUdfSUlPX0NST1NfRUNfQkFSTz1tCkNPTkZJR19NUEwzMTE1PW0KQ09ORklHX1BXTT15CkNPTkZJR19QV01fQkNNMjgzNT1tCkNPTkZJR19QV01fQ1JPU19FQz1tCkNPTkZJR19QV01fTUVTT049bQpDT05GSUdfUFdNX1JDQVI9bQpDT05GSUdfUFdNX1JPQ0tDSElQPXkKQ09ORklHX1BXTV9TQU1TVU5HPXkKQ09ORklHX1BXTV9TTDI4Q1BMRD1tCkNPTkZJR19QV01fU1VONEk9bQpDT05GSUdfUFdNX1RFR1JBPW0KQ09ORklHX1NMMjhDUExEX0lOVEM9eQpDT05GSUdfUUNPTV9QREM9eQpDT05GSUdfUkVTRVRfSU1YNz15CkNPTkZJR19SRVNFVF9RQ09NX0FPU1M9eQpDT05GSUdfUkVTRVRfUUNPTV9QREM9bQpDT05GSUdfUkVTRVRfVElfU0NJPXkKQ09ORklHX1BIWV9YR0VORT15CkNPTkZJR19QSFlfU1VONElfVVNCPXkKQ09ORklHX1BIWV9NSVhFTF9NSVBJX0RQSFk9bQpDT05GSUdfUEhZX0hJNjIyMF9VU0I9eQpDT05GSUdfUEhZX0hJU1RCX0NPTUJQSFk9eQpDT05GSUdfUEhZX0hJU0lfSU5OT19VU0IyPXkKQ09ORklHX1BIWV9NVkVCVV9DUDExMF9DT01QSFk9eQpDT05GSUdfUEhZX1FDT01fUU1QPW0KQ09ORklHX1BIWV9RQ09NX1FVU0IyPW0KQ09ORklHX1BIWV9RQ09NX1VTQl9IUz15CkNPTkZJR19QSFlfUUNPTV9VU0JfU05QU19GRU1UT19WMj15CkNPTkZJR19QSFlfUkNBUl9HRU4zX1BDSUU9eQpDT05GSUdfUEhZX1JDQVJfR0VOM19VU0IyPXkKQ09ORklHX1BIWV9SQ0FSX0dFTjNfVVNCMz1tCkNPTkZJR19QSFlfUk9DS0NISVBfRU1NQz15CkNPTkZJR19QSFlfUk9DS0NISVBfSU5OT19IRE1JPW0KQ09ORklHX1BIWV9ST0NLQ0hJUF9JTk5PX1VTQjI9eQpDT05GSUdfUEhZX1JPQ0tDSElQX1BDSUU9bQpDT05GSUdfUEhZX1JPQ0tDSElQX1RZUEVDPXkKQ09ORklHX1BIWV9VTklQSElFUl9VU0IyPXkKQ09ORklHX1BIWV9VTklQSElFUl9VU0IzPXkKQ09ORklHX1BIWV9URUdSQV9YVVNCPXkKQ09ORklHX0FSTV9TTU1VX1YzX1BNVT1tCkNPTkZJR19GU0xfSU1YOF9ERFJfUE1VPW0KQ09ORklHX0hJU0lfUE1VPXkKQ09ORklHX1FDT01fTDJfUE1VPXkKQ09ORklHX1FDT01fTDNfUE1VPXkKQ09ORklHX05WTUVNX0lNWF9PQ09UUD15CkNPTkZJR19OVk1FTV9JTVhfT0NPVFBfU0NVPXkKQ09ORklHX1FDT01fUUZQUk9NPXkKQ09ORklHX1JPQ0tDSElQX0VGVVNFPXkKQ09ORklHX05WTUVNX1NVTlhJX1NJRD15CkNPTkZJR19VTklQSElFUl9FRlVTRT15CkNPTkZJR19NRVNPTl9FRlVTRT1tCkNPTkZJR19GUEdBPXkKQ09ORklHX0ZQR0FfTUdSX1NUUkFUSVgxMF9TT0M9bQpDT05GSUdfRlBHQV9CUklER0U9bQpDT05GSUdfQUxURVJBX0ZSRUVaRV9CUklER0U9bQpDT05GSUdfRlBHQV9SRUdJT049bQpDT05GSUdfT0ZfRlBHQV9SRUdJT049bQpDT05GSUdfVEVFPXkKQ09ORklHX09QVEVFPXkKQ09ORklHX1NMSU1CVVM9bQpDT05GSUdfU0xJTV9RQ09NX0NUUkw9bQpDT05GSUdfU0xJTV9RQ09NX05HRF9DVFJMPW0KQ09ORklHX01VWF9NTUlPPXkKQ09ORklHX0lOVEVSQ09OTkVDVD15CkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTT15CkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTV9NU004OTE2PW0KQ09ORklHX0lOVEVSQ09OTkVDVF9RQ09NX1NETTg0NT1tCkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTV9TTTgxNTA9bQpDT05GSUdfSU5URVJDT05ORUNUX1FDT01fU004MjUwPW0KQ09ORklHX0VYVDJfRlM9eQpDT05GSUdfRVhUM19GUz15CkNPTkZJR19FWFQ0X0ZTX1BPU0lYX0FDTD15CkNPTkZJR19CVFJGU19GUz1tCkNPTkZJR19CVFJGU19GU19QT1NJWF9BQ0w9eQpDT05GSUdfRkFOT1RJRlk9eQpDT05GSUdfRkFOT1RJRllfQUNDRVNTX1BFUk1JU1NJT05TPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz1tCkNPTkZJR19DVVNFPW0KQ09ORklHX09WRVJMQVlfRlM9bQpDT05GSUdfVkZBVF9GUz15CkNPTkZJR19IVUdFVExCRlM9eQpDT05GSUdfQ09ORklHRlNfRlM9eQpDT05GSUdfRUZJVkFSX0ZTPXkKQ09ORklHX1NRVUFTSEZTPXkKQ09ORklHX05GU19GUz15CkNPTkZJR19ORlNfVjQ9eQpDT05GSUdfTkZTX1Y0XzE9eQpDT05GSUdfTkZTX1Y0XzI9eQpDT05GSUdfUk9PVF9ORlM9eQpDT05GSUdfOVBfRlM9eQpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfSVNPODg1OV8xPXkKQ09ORklHX1NFQ1VSSVRZPXkKQ09ORklHX0NSWVBUT19FQ0hBSU5JVj15CkNPTkZJR19DUllQVE9fQU5TSV9DUFJORz15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfUk5HPW0KQ09ORklHX0NSWVBUT19ERVZfU1VOOElfQ0U9bQpDT05GSUdfQ1JZUFRPX0RFVl9GU0xfQ0FBTT1tCkNPTkZJR19DUllQVE9fREVWX0ZTTF9EUEFBMl9DQUFNPW0KQ09ORklHX0NSWVBUT19ERVZfUUNPTV9STkc9bQpDT05GSUdfQ1JZUFRPX0RFVl9DQ1JFRT1tCkNPTkZJR19DUllQVE9fREVWX0hJU0lfU0VDMj1tCkNPTkZJR19DUllQVE9fREVWX0hJU0lfWklQPW0KQ09ORklHX0NSWVBUT19ERVZfSElTSV9IUFJFPW0KQ09ORklHX0NNQV9TSVpFX01CWVRFUz0zMgpDT05GSUdfUFJJTlRLX1RJTUU9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19GUz15CkNPTkZJR19ERUJVR19LRVJORUw9eQojIENPTkZJR19TQ0hFRF9ERUJVRyBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1BSRUVNUFQgaXMgbm90IHNldApDT05GSUdfTUVNVEVTVD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX0ZBSVJfR1JPVVBfU0NIRUQ9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9ERUJVR19GUz15CkNPTkZJR19LVk1fQVJNPW0K" } ] } diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json index 7cc73e9..965ad41 100644 --- a/kernels/x86_64/list.json +++ b/kernels/x86_64/list.json @@ -218,226 +218,226 @@ }, { "kernelversion": 1, - "kernelrelease": "4.14.232-123.381.amzn1.x86_64", + "kernelrelease": "4.14.186-110.268.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.73.amzn1.x86_64", + "kernelrelease": "4.14.67-66.56.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-75.76.amzn1.x86_64", + "kernelrelease": "4.14.121-85.96.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-119.340.amzn1.x86_64", + "kernelrelease": "4.14.152-98.182.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.422.amzn1.x86_64", + "kernelrelease": "4.14.238-125.421.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-113.317.amzn1.x86_64", + "kernelrelease": "4.14.133-88.105.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-85.96.amzn1.x86_64", + "kernelrelease": "4.14.209-117.337.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-125.421.amzn1.x86_64", + "kernelrelease": "4.14.138-89.102.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-110.268.amzn1.x86_64", + "kernelrelease": "4.14.262-135.489.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-117.337.amzn1.x86_64", + "kernelrelease": "4.14.104-78.84.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-106.229.amzn1.x86_64", + "kernelrelease": "4.14.88-72.73.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.489.amzn1.x86_64", + "kernelrelease": "4.14.128-87.105.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.72-68.55.amzn1.x86_64", + "kernelrelease": "4.14.77-69.57.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.51-60.38.amzn1.x86_64", + "kernelrelease": "4.14.123-86.109.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.59.amzn1.x86_64", + "kernelrelease": "4.14.143-91.122.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-107.254.amzn1.x86_64", + "kernelrelease": "4.14.106-79.86.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-101.185.amzn1.x86_64", + "kernelrelease": "4.14.219-119.340.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-70.82.amzn1.x86_64", + "kernelrelease": "4.14.62-65.117.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.70-67.55.amzn1.x86_64", + "kernelrelease": "4.14.88-72.76.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.105.amzn1.x86_64", + "kernelrelease": "4.14.287-148.504.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.287-148.504.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-91.122.amzn1.x86_64", + "kernelrelease": "4.14.55-62.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-139.500.amzn1.x86_64", + "kernelrelease": "4.14.154-99.181.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-98.182.amzn1.x86_64", + "kernelrelease": "4.14.214-118.339.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-140.502.amzn1.x86_64", + "kernelrelease": "4.14.262-135.486.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-89.102.amzn1.x86_64", + "kernelrelease": "4.14.165-102.185.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.34.amzn1.x86_64", + "kernelrelease": "4.14.109-80.92.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-129.473.amzn1.x86_64", + "kernelrelease": "4.14.193-113.317.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-74.72.amzn1.x86_64", + "kernelrelease": "4.14.59-64.43.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" ] }, { @@ -445,183 +445,199 @@ "kernelrelease": "4.14.165-103.209.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.42-52.37.amzn1.x86_64", + "kernelrelease": "4.14.200-116.320.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-72.76.amzn1.x86_64", + "kernelrelease": "4.14.248-129.473.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-131.483.amzn1.x86_64", + "kernelrelease": "4.14.101-75.76.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-116.332.amzn1.x86_64", + "kernelrelease": "4.14.232-123.381.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.59-64.43.amzn1.x86_64", + "kernelrelease": "4.14.173-106.229.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-86.109.amzn1.x86_64", + "kernelrelease": "4.14.51-60.38.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-88.112.amzn1.x86_64", + "kernelrelease": "4.14.33-51.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-121.362.amzn1.x86_64", + "kernelrelease": "4.14.114-82.97.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-118.339.amzn1.x86_64", + "kernelrelease": "4.14.252-131.483.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.62-65.117.amzn1.x86_64", + "kernelrelease": "4.14.238-125.422.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.55-62.37.amzn1.x86_64", + "kernelrelease": "4.14.42-52.37.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-102.185.amzn1.x86_64", + "kernelrelease": "4.14.146-93.123.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.67-66.56.amzn1.x86_64", + "kernelrelease": "4.14.77-70.82.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-108.257.amzn1.x86_64", + "kernelrelease": "4.14.281-144.502.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.281-144.502.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-135.486.amzn1.x86_64", + "kernelrelease": "4.14.114-83.126.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-78.84.amzn1.x86_64", + "kernelrelease": "4.14.97-74.72.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-82.97.amzn1.x86_64", + "kernelrelease": "4.14.70-67.55.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-83.126.amzn1.x86_64", + "kernelrelease": "4.14.72-68.55.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-121.357.amzn1.x86_64", + "kernelrelease": "4.14.225-121.362.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-93.123.amzn1.x86_64", + "kernelrelease": "4.14.273-140.502.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-105.231.amzn1.x86_64", + "kernelrelease": "4.14.275-142.503.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-51.37.amzn1.x86_64", + "kernelrelease": "4.14.133-88.112.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.285-147.501.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.285-147.501.amzn1.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.47-56.37.amzn1.x86_64", + "target": "amazonlinux", + "headers": [ + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" ] }, { @@ -629,697 +645,713 @@ "kernelrelease": "4.14.94-73.73.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-116.320.amzn1.x86_64", + "kernelrelease": "4.14.203-116.332.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.281-144.502.amzn1.x86_64", + "kernelrelease": "4.14.158-101.185.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.281-144.502.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-69.57.amzn1.x86_64", + "kernelrelease": "4.14.33-51.34.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.128-87.105.amzn1.x86_64", + "kernelrelease": "4.14.181-108.257.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-79.86.amzn1.x86_64", + "kernelrelease": "4.14.171-105.231.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-99.181.amzn1.x86_64", + "kernelrelease": "4.14.225-121.357.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-80.92.amzn1.x86_64", + "kernelrelease": "4.14.268-139.500.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-56.37.amzn1.x86_64", + "kernelrelease": "4.14.177-107.254.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-142.503.amzn1.x86_64", + "kernelrelease": "4.14.77-70.59.amzn1.x86_64", "target": "amazonlinux", "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/fdfaf950b6de/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" + "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" ] } ], "AmazonLinux2": [ { "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.x86_64", + "kernelrelease": "4.9.75-1.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.x86_64", + "kernelrelease": "4.14.114-105.126.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.x86_64", + "kernelrelease": "4.14.165-133.209.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.x86_64", + "kernelrelease": "4.14.219-164.354.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.x86_64", + "kernelrelease": "4.14.55-68.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.75-1.56.amzn2.x86_64", + "kernelrelease": "4.14.88-88.73.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.x86_64", + "kernelrelease": "4.14.198-152.320.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.x86_64", + "kernelrelease": "4.14.77-86.82.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.x86_64", + "kernelrelease": "4.14.177-139.253.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.x86_64", + "kernelrelease": "4.14.225-169.362.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.85-46.56.amzn2.x86_64", + "kernelrelease": "4.14.177-139.254.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.34.amzn2.x86_64", + "kernelrelease": "4.14.186-146.268.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.x86_64", + "kernelrelease": "4.14.171-136.231.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.x86_64", + "kernelrelease": "4.14.109-99.92.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-63.37.amzn2.x86_64", + "kernelrelease": "4.14.243-185.433.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.85-47.59.amzn2.x86_64", + "kernelrelease": "4.14.62-70.117.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.x86_64", + "kernelrelease": "4.14.275-207.503.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.x86_64", + "kernelrelease": "4.14.173-137.229.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.x86_64", + "kernelrelease": "4.14.231-173.360.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.59-68.43.amzn2.x86_64", + "kernelrelease": "4.14.268-205.500.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.x86_64", + "kernelrelease": "4.14.225-168.357.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.x86_64", + "kernelrelease": "4.14.154-128.181.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.55-68.37.amzn2.x86_64", + "kernelrelease": "4.14.252-195.483.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.x86_64", + "kernelrelease": "4.9.70-2.243.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.x86_64", + "kernelrelease": "4.14.106-97.85.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.77-41.59.amzn2.x86_64", + "kernelrelease": "4.14.67-71.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.x86_64", + "kernelrelease": "4.14.219-161.340.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.x86_64", + "kernelrelease": "4.14.51-66.38.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.x86_64", + "kernelrelease": "4.14.285-215.501.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d37190e2b6c7e13361aee28f5cc063c7333440516e9dadcc8e5439ec2d6beadd/kernel-devel-4.14.285-215.501.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.x86_64", + "kernelrelease": "4.14.214-160.339.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.x86_64", + "kernelrelease": "4.14.104-95.84.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.x86_64", + "kernelrelease": "4.14.101-91.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.x86_64", + "kernelrelease": "4.14.33-59.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.70-72.55.amzn2.x86_64", + "kernelrelease": "4.14.276-211.499.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.x86_64", + "kernelrelease": "4.9.85-46.56.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.x86_64", + "kernelrelease": "4.14.273-207.502.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.x86_64", + "kernelrelease": "4.14.290-217.505.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8d64458b9a4edee57ac5c9fbd3c5a455e5e02e93606950212280b21b05945f43/kernel-devel-4.14.290-217.505.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.47-64.38.amzn2.x86_64", + "kernelrelease": "4.14.94-89.73.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.x86_64", + "kernelrelease": "4.14.26-54.32.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.x86_64", + "kernelrelease": "4.14.42-61.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.x86_64", + "kernelrelease": "4.14.238-182.421.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.x86_64", + "kernelrelease": "4.14.97-90.72.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.x86_64", + "kernelrelease": "4.9.76-38.79.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.x86_64", + "kernelrelease": "4.14.287-215.504.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0971217c89c71bf2b4bee131e72f9f4170cc051c6d87ef3a413e1b0232345140/kernel-devel-4.14.287-215.504.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.x86_64", + "kernelrelease": "4.14.123-111.109.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.x86_64", + "kernelrelease": "4.14.231-173.361.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.x86_64", + "kernelrelease": "4.14.138-114.102.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.51-66.38.amzn2.x86_64", + "kernelrelease": "4.14.248-189.473.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.x86_64", + "kernelrelease": "4.14.165-131.185.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.26-54.32.amzn2.x86_64", + "kernelrelease": "4.14.47-64.38.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.x86_64", + "kernelrelease": "4.14.143-118.123.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.x86_64", + "kernelrelease": "4.14.88-88.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.x86_64", + "kernelrelease": "4.14.70-72.55.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.x86_64", + "kernelrelease": "4.14.33-59.34.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.x86_64", + "kernelrelease": "4.14.114-103.97.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.x86_64", + "kernelrelease": "4.14.192-147.314.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.x86_64", + "kernelrelease": "4.14.133-113.105.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.x86_64", + "kernelrelease": "4.14.121-109.96.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.x86_64", + "kernelrelease": "4.14.133-113.112.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.76-38.79.amzn2.x86_64", + "kernelrelease": "4.9.77-41.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.x86_64", + "kernelrelease": "4.14.241-184.433.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.42-61.37.amzn2.x86_64", + "kernelrelease": "4.14.193-149.317.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.x86_64", + "kernelrelease": "4.14.262-200.489.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.x86_64", + "kernelrelease": "4.14.181-140.257.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.62-10.57.amzn2.x86_64", + "kernelrelease": "4.14.246-187.474.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.x86_64", + "kernelrelease": "4.14.200-155.322.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.x86_64", + "kernelrelease": "4.14.181-142.260.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.281-212.502.amzn2.x86_64", + "kernelrelease": "4.14.232-176.381.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/333f944a7a5ee308d61a30c3dff09017232758e1186d6e4490aeffe82c30cc40/kernel-devel-4.14.281-212.502.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.x86_64", + "kernelrelease": "4.14.77-81.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.x86_64", + "kernelrelease": "4.14.256-197.484.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.x86_64", + "kernelrelease": "4.14.146-119.123.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.81-44.57.amzn2.x86_64", + "kernelrelease": "4.14.158-129.185.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.x86_64", + "kernelrelease": "4.14.77-80.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.x86_64", + "kernelrelease": "4.14.232-177.418.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.x86_64", + "kernelrelease": "4.14.173-137.228.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.9.70-2.243.amzn2.x86_64", + "kernelrelease": "4.14.209-160.335.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.67-71.56.amzn2.x86_64", + "kernelrelease": "4.14.238-182.422.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.203-156.332.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.281-212.502.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/333f944a7a5ee308d61a30c3dff09017232758e1186d6e4490aeffe82c30cc40/kernel-devel-4.14.281-212.502.amzn2.x86_64.rpm" ] }, { @@ -1327,23 +1359,23 @@ "kernelrelease": "4.14.128-112.105.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.62-70.117.amzn2.x86_64", + "kernelrelease": "4.9.81-44.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.x86_64", + "kernelrelease": "4.14.72-73.55.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" ] }, { @@ -1351,95 +1383,95 @@ "kernelrelease": "4.14.252-195.481.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.x86_64", + "kernelrelease": "4.14.209-160.339.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.33-59.37.amzn2.x86_64", + "kernelrelease": "4.14.146-120.181.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.x86_64", + "kernelrelease": "4.9.62-10.57.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.72-73.55.amzn2.x86_64", + "kernelrelease": "4.14.152-124.171.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.x86_64", + "kernelrelease": "4.14.47-63.37.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.x86_64", + "kernelrelease": "4.9.85-47.59.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.x86_64", + "kernelrelease": "4.14.152-127.182.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/5454bdaaf3e2fa8d3aac354bd0b9f21079f8efbfc8b04fb40db462ed434f9f04/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.x86_64", + "kernelrelease": "4.14.59-68.43.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.x86_64", + "kernelrelease": "5.10.118-111.515.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/692268872604200eb4306d9a5a7912086adc40f21f80e1eafd61fad264769685/kernel-devel-5.10.118-111.515.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.x86_64", + "kernelrelease": "5.10.135-122.509.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/2c17bbdfb12377bf3e4a81b48c79126e964b10a4364df7aa3874bc5d6f04a78c/kernel-devel-5.10.135-122.509.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.109-104.500.amzn2.x86_64", + "kernelrelease": "5.10.112-108.499.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/ca19e72b4e6b43af5c589209d1c44211800e1fd556633a0359f8e50c6b9dfacc/kernel-devel-5.10.109-104.500.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/5f7589d15dbb5a3c43b0809802f463c41c9349c1c274dd7dc31db09313a48619/kernel-devel-5.10.112-108.499.amzn2.x86_64.rpm" ] }, { @@ -1447,23 +1479,23 @@ "kernelrelease": "5.10.82-83.359.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.x86_64", + "kernelrelease": "5.10.59-52.142.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.x86_64", + "kernelrelease": "5.10.62-55.141.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" ] }, { @@ -1471,7 +1503,31 @@ "kernelrelease": "5.10.68-62.173.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.35-31.135.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.93-87.444.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.10.29-27.128.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm" ] }, { @@ -1479,15 +1535,15 @@ "kernelrelease": "5.10.50-44.131.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.x86_64", + "kernelrelease": "5.10.75-79.358.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" ] }, { @@ -1495,71 +1551,71 @@ "kernelrelease": "5.10.47-39.130.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.x86_64", + "kernelrelease": "5.10.29-27.126.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.93-87.444.amzn2.x86_64", + "kernelrelease": "5.10.96-90.460.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.75-79.358.amzn2.x86_64", + "kernelrelease": "5.10.126-117.518.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/cbbde606a84272ff1f314da43b1b3b3b3bdf5443d4dc963dd46846a8e0dd93c4/kernel-devel-5.10.126-117.518.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.118-111.515.amzn2.x86_64", + "kernelrelease": "5.10.106-102.504.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/692268872604200eb4306d9a5a7912086adc40f21f80e1eafd61fad264769685/kernel-devel-5.10.118-111.515.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.112-108.499.amzn2.x86_64", + "kernelrelease": "5.10.50-44.132.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/5f7589d15dbb5a3c43b0809802f463c41c9349c1c274dd7dc31db09313a48619/kernel-devel-5.10.112-108.499.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.x86_64", + "kernelrelease": "5.10.130-118.517.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/f0558ea00c6659ab2c3cb7d2083df295b5f39043dd0b00f8ac2d0612e1c0d2b6/kernel-devel-5.10.130-118.517.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.x86_64", + "kernelrelease": "5.10.109-104.500.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/a35068f758c02bc356faeae249712652677163a721ed593e3a8e5fd7874ec8b7/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/ca19e72b4e6b43af5c589209d1c44211800e1fd556633a0359f8e50c6b9dfacc/kernel-devel-5.10.109-104.500.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.38-17.76.amzn2.x86_64", + "kernelrelease": "5.10.102-99.473.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" ] }, { @@ -1567,79 +1623,79 @@ "kernelrelease": "5.4.188-104.359.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/830875a1747e16cdc8a84fac964972fc4dd415b30d3414fb6af37804897f6c1d/kernel-devel-5.4.188-104.359.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/830875a1747e16cdc8a84fac964972fc4dd415b30d3414fb6af37804897f6c1d/kernel-devel-5.4.188-104.359.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.x86_64", + "kernelrelease": "5.4.95-42.163.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.x86_64", + "kernelrelease": "5.4.58-27.104.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.x86_64", + "kernelrelease": "5.4.105-48.177.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.190-107.353.amzn2.x86_64", + "kernelrelease": "5.4.181-99.354.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4421829a971058d8b64ce3571ab8828da405fd2fa6ee618642afa72caba86a0a/kernel-devel-5.4.190-107.353.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.x86_64", + "kernelrelease": "5.4.162-86.275.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.x86_64", + "kernelrelease": "5.4.172-90.336.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.196-108.356.amzn2.x86_64", + "kernelrelease": "5.4.58-32.125.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/013f72ea855c9c3754c7f7f78b33adece907ba142770137cfb578c19db228bc5/kernel-devel-5.4.196-108.356.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.x86_64", + "kernelrelease": "5.4.129-63.229.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.x86_64", + "kernelrelease": "5.4.176-91.338.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm" ] }, { @@ -1647,135 +1703,167 @@ "kernelrelease": "5.4.74-36.135.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.x86_64", + "kernelrelease": "5.4.50-25.83.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.x86_64", + "kernelrelease": "5.4.91-41.139.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.x86_64", + "kernelrelease": "5.4.196-108.356.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/013f72ea855c9c3754c7f7f78b33adece907ba142770137cfb578c19db228bc5/kernel-devel-5.4.196-108.356.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.x86_64", + "kernelrelease": "5.4.38-17.76.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.x86_64", + "kernelrelease": "5.4.110-54.182.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.x86_64", + "kernelrelease": "5.4.117-58.216.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.x86_64", + "kernelrelease": "5.4.149-73.259.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.x86_64", + "kernelrelease": "5.4.186-102.354.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.x86_64", + "kernelrelease": "5.4.68-34.125.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.x86_64", + "kernelrelease": "5.4.129-62.227.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.x86_64", + "kernelrelease": "5.4.46-23.77.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.x86_64", + "kernelrelease": "5.4.204-113.362.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d222883ee3b846347eeb0a0d5700b17e174a78cc1ddbf8a8850a180cc9286ecc/kernel-devel-5.4.204-113.362.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.x86_64", + "kernelrelease": "5.4.144-69.257.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.x86_64", + "kernelrelease": "5.4.20-12.75.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.x86_64", + "kernelrelease": "5.4.209-116.363.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/58983abb1c57a93cbea8ca9676449c1b20bf1f91a64e5396425715ae8dfb331d/kernel-devel-5.4.209-116.363.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.x86_64", + "kernelrelease": "5.4.201-111.359.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/68bda4db5e5a92ad109c8fa29e1591c7b8eb0fce07eb99f5f5ba8232b6649a61/kernel-devel-5.4.201-111.359.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.46-19.75.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.156-83.273.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.190-107.353.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4421829a971058d8b64ce3571ab8828da405fd2fa6ee618642afa72caba86a0a/kernel-devel-5.4.190-107.353.amzn2.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.141-67.229.amzn2.x86_64", + "target": "amazonlinux2", + "headers": [ + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" ] }, { @@ -1783,15 +1871,15 @@ "kernelrelease": "5.4.110-54.189.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.x86_64", + "kernelrelease": "5.4.80-40.140.amzn2.x86_64", "target": "amazonlinux2", "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/3c0ef5f187bbc4aa77df2554d477c909f7bfe7efa613082d1bf940d90b512657/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm" + "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm" ] } ], @@ -1843,7 +1931,7 @@ "kernelrelease": "3.10.0-1160.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" ] }, { @@ -1859,7 +1947,7 @@ "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" ] }, { @@ -1867,7 +1955,7 @@ "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" ] }, { @@ -1875,7 +1963,7 @@ "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" ] }, { @@ -1891,7 +1979,7 @@ "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" ] }, { @@ -1907,7 +1995,7 @@ "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" ] }, { @@ -1923,7 +2011,7 @@ "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" ] }, { @@ -1931,7 +2019,7 @@ "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" ] }, { @@ -1947,7 +2035,7 @@ "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" ] }, { @@ -1987,7 +2075,7 @@ "kernelrelease": "3.10.0-1160.66.1.el7.x86_64", "target": "centos", "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" + "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" ] }, { @@ -2000,18 +2088,34 @@ }, { "kernelversion": 1, - "kernelrelease": "2.6.32-71.el6.x86_64", + "kernelrelease": "3.10.0-1160.76.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/os/x86_64/Packages/kernel-devel-2.6.32-71.el6.x86_64.rpm" + "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.76.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-131.0.15.el6.x86_64", + "kernelrelease": "2.6.32-573.el6.x86_64", + "target": "centos", + "headers": [ + "http://vault.centos.org/centos/6.7/os/x86_64/Packages/kernel-devel-2.6.32-573.el6.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-642.el6.x86_64", + "target": "centos", + "headers": [ + "http://vault.centos.org/centos/6.8/os/x86_64/Packages/kernel-devel-2.6.32-642.el6.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "2.6.32-696.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/os/x86_64/Packages/kernel-devel-2.6.32-131.0.15.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/os/x86_64/Packages/kernel-devel-2.6.32-696.el6.x86_64.rpm" ] }, { @@ -2019,1751 +2123,1783 @@ "kernelrelease": "2.6.32-754.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/os/x86_64/Packages/kernel-devel-2.6.32-754.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/os/x86_64/Packages/kernel-devel-2.6.32-754.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-220.el6.x86_64", + "kernelrelease": "3.10.0-123.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/os/x86_64/Packages/kernel-devel-2.6.32-220.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.0.1406/os/x86_64/Packages/kernel-devel-3.10.0-123.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.el6.x86_64", + "kernelrelease": "3.10.0-229.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/os/x86_64/Packages/kernel-devel-2.6.32-279.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.1.1503/os/x86_64/Packages/kernel-devel-3.10.0-229.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-358.el6.x86_64", + "kernelrelease": "3.10.0-327.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/os/x86_64/Packages/kernel-devel-2.6.32-358.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.2.1511/os/x86_64/Packages/kernel-devel-3.10.0-327.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.el6.x86_64", + "kernelrelease": "3.10.0-514.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/os/x86_64/Packages/kernel-devel-2.6.32-431.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.3.1611/os/x86_64/Packages/kernel-devel-3.10.0-514.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-504.el6.x86_64", + "kernelrelease": "3.10.0-693.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/os/x86_64/Packages/kernel-devel-2.6.32-504.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.4.1708/os/x86_64/Packages/kernel-devel-3.10.0-693.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-573.el6.x86_64", + "kernelrelease": "3.10.0-862.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/os/x86_64/Packages/kernel-devel-2.6.32-573.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.5.1804/os/x86_64/Packages/kernel-devel-3.10.0-862.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.el6.x86_64", + "kernelrelease": "3.10.0-957.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/os/x86_64/Packages/kernel-devel-2.6.32-642.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.6.1810/os/x86_64/Packages/kernel-devel-3.10.0-957.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.el6.x86_64", + "kernelrelease": "3.10.0-1062.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/os/x86_64/Packages/kernel-devel-2.6.32-696.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.7.1908/os/x86_64/Packages/kernel-devel-3.10.0-1062.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.el7.x86_64", + "kernelrelease": "3.10.0-1127.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/os/x86_64/Packages/kernel-devel-3.10.0-123.el7.x86_64.rpm" + "http://archive.kernel.org/centos/7.8.2003/os/x86_64/Packages/kernel-devel-3.10.0-1127.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-229.el7.x86_64", + "kernelrelease": "2.6.32-573.1.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/os/x86_64/Packages/kernel-devel-3.10.0-229.el7.x86_64.rpm" + "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.1.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.el7.x86_64", + "kernelrelease": "2.6.32-573.12.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/os/x86_64/Packages/kernel-devel-3.10.0-327.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.12.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.el7.x86_64", + "kernelrelease": "2.6.32-573.18.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/os/x86_64/Packages/kernel-devel-3.10.0-514.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.18.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.el7.x86_64", + "kernelrelease": "2.6.32-573.22.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/os/x86_64/Packages/kernel-devel-3.10.0-693.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.22.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.el7.x86_64", + "kernelrelease": "2.6.32-573.26.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/os/x86_64/Packages/kernel-devel-3.10.0-862.el7.x86_64.rpm" + "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.26.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.el7.x86_64", + "kernelrelease": "2.6.32-573.3.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/os/x86_64/Packages/kernel-devel-3.10.0-957.el7.x86_64.rpm" + "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.3.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.el7.x86_64", + "kernelrelease": "2.6.32-573.7.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/os/x86_64/Packages/kernel-devel-3.10.0-1062.el7.x86_64.rpm" + "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.7.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.el7.x86_64", + "kernelrelease": "2.6.32-573.8.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/os/x86_64/Packages/kernel-devel-3.10.0-1127.el7.x86_64.rpm" + "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.8.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-71.29.1.el6.x86_64", + "kernelrelease": "2.6.32-642.1.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.29.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.1.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-71.24.1.el6.x86_64", + "kernelrelease": "2.6.32-642.11.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.24.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.11.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-71.18.1.el6.x86_64", + "kernelrelease": "2.6.32-642.13.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-71.14.1.el6.x86_64", + "kernelrelease": "2.6.32-642.13.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.14.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-71.7.1.el6.x86_64", + "kernelrelease": "2.6.32-642.15.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.7.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.15.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-71.18.2.el6.x86_64", + "kernelrelease": "2.6.32-642.3.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.3.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-131.6.1.el6.x86_64", + "kernelrelease": "2.6.32-642.4.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.6.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.4.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-131.17.1.el6.x86_64", + "kernelrelease": "2.6.32-642.6.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.17.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-131.2.1.el6.x86_64", + "kernelrelease": "2.6.32-642.6.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.2.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-131.12.1.el6.x86_64", + "kernelrelease": "2.6.32-696.1.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.12.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.1.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-131.4.1.el6.x86_64", + "kernelrelease": "2.6.32-696.10.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.4.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-131.21.1.el6.x86_64", + "kernelrelease": "2.6.32-696.10.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.21.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.10.1.el6.x86_64", + "kernelrelease": "2.6.32-696.10.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.11.1.el6.x86_64", + "kernelrelease": "2.6.32-696.13.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.13.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.12.1.el6.x86_64", + "kernelrelease": "2.6.32-696.16.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.16.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.14.2.el6.x86_64", + "kernelrelease": "2.6.32-696.18.7.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.18.7.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.15.3.el6.x86_64", + "kernelrelease": "2.6.32-696.20.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.20.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.17.1.el6.x86_64", + "kernelrelease": "2.6.32-696.23.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.18.2.el6.x86_64", + "kernelrelease": "2.6.32-696.28.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.2.1.el6.x86_64", + "kernelrelease": "2.6.32-696.3.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.22.1.el6.x86_64", + "kernelrelease": "2.6.32-696.3.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.23.1.el6.x86_64", + "kernelrelease": "2.6.32-696.30.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.2.el6.x86_64", + "kernelrelease": "2.6.32-696.6.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.6.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.3.el6.x86_64", + "kernelrelease": "2.6.32-754.10.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.25.1.el6.x86_64", + "kernelrelease": "2.6.32-754.11.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.27.1.el6.x86_64", + "kernelrelease": "2.6.32-754.12.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.28.1.el6.x86_64", + "kernelrelease": "2.6.32-754.14.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.1.el6.x86_64", + "kernelrelease": "2.6.32-754.15.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.2.el6.x86_64", + "kernelrelease": "2.6.32-754.17.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.3.5.el6.x86_64", + "kernelrelease": "2.6.32-754.18.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.30.2.el6.x86_64", + "kernelrelease": "2.6.32-754.2.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.31.1.el6.x86_64", + "kernelrelease": "2.6.32-754.22.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.33.1.el6.x86_64", + "kernelrelease": "2.6.32-754.23.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.35.1.el6.x86_64", + "kernelrelease": "2.6.32-754.24.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.6.3.el6.x86_64", + "kernelrelease": "2.6.32-754.24.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-754.9.1.el6.x86_64", + "kernelrelease": "2.6.32-754.25.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-220.23.1.el6.x86_64", + "kernelrelease": "2.6.32-754.27.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.23.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-220.13.1.el6.x86_64", + "kernelrelease": "2.6.32-754.28.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.13.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-220.4.2.el6.x86_64", + "kernelrelease": "2.6.32-754.29.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-220.7.1.el6.x86_64", + "kernelrelease": "2.6.32-754.29.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.7.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-220.4.1.el6.x86_64", + "kernelrelease": "2.6.32-754.3.5.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-220.17.1.el6.x86_64", + "kernelrelease": "2.6.32-754.30.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.17.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-220.2.1.el6.x86_64", + "kernelrelease": "2.6.32-754.31.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.2.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.11.1.el6.x86_64", + "kernelrelease": "2.6.32-754.33.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.11.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.5.1.el6.x86_64", + "kernelrelease": "2.6.32-754.35.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.22.1.el6.x86_64", + "kernelrelease": "2.6.32-754.6.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.22.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.5.2.el6.x86_64", + "kernelrelease": "2.6.32-754.9.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.19.1.el6.x86_64", + "kernelrelease": "3.10.0-123.13.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.19.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.14.1.el6.x86_64", + "kernelrelease": "3.10.0-123.6.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.14.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.6.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.1.1.el6.x86_64", + "kernelrelease": "3.10.0-123.4.4.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.1.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.4.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.9.1.el6.x86_64", + "kernelrelease": "3.10.0-123.13.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.9.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-279.2.1.el6.x86_64", + "kernelrelease": "3.10.0-123.20.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.2.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.20.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-358.2.1.el6.x86_64", + "kernelrelease": "3.10.0-123.4.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.2.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-358.18.1.el6.x86_64", + "kernelrelease": "3.10.0-123.8.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.18.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.8.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-358.0.1.el6.x86_64", + "kernelrelease": "3.10.0-123.9.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.0.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-358.23.2.el6.x86_64", + "kernelrelease": "3.10.0-123.9.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.23.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-358.6.1.el6.x86_64", + "kernelrelease": "3.10.0-123.1.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.1.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-358.11.1.el6.x86_64", + "kernelrelease": "3.10.0-229.1.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.11.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.1.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-358.14.1.el6.x86_64", + "kernelrelease": "3.10.0-229.11.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.14.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.11.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-358.6.2.el6.x86_64", + "kernelrelease": "3.10.0-229.14.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.14.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.5.1.el6.x86_64", + "kernelrelease": "3.10.0-229.20.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.5.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.20.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.20.5.el6.x86_64", + "kernelrelease": "3.10.0-229.4.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.5.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.4.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.3.1.el6.x86_64", + "kernelrelease": "3.10.0-229.7.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.3.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.7.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.23.3.el6.x86_64", + "kernelrelease": "3.10.0-327.10.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.23.3.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.10.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.17.1.el6.x86_64", + "kernelrelease": "3.10.0-327.13.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.17.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.13.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.20.3.el6.x86_64", + "kernelrelease": "3.10.0-327.18.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.3.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.18.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.11.2.el6.x86_64", + "kernelrelease": "3.10.0-327.22.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.11.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.22.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.29.2.el6.x86_64", + "kernelrelease": "3.10.0-327.28.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.29.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-431.1.2.0.1.el6.x86_64", + "kernelrelease": "3.10.0-327.28.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.1.2.0.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-504.1.3.el6.x86_64", + "kernelrelease": "3.10.0-327.3.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.1.3.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.3.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-504.12.2.el6.x86_64", + "kernelrelease": "3.10.0-327.36.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.12.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-504.16.2.el6.x86_64", + "kernelrelease": "3.10.0-327.36.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.16.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-504.23.4.el6.x86_64", + "kernelrelease": "3.10.0-327.36.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.23.4.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-504.3.3.el6.x86_64", + "kernelrelease": "3.10.0-327.4.4.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.3.3.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.4.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-504.30.3.el6.x86_64", + "kernelrelease": "3.10.0-327.4.5.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.30.3.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.5.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-504.8.1.el6.x86_64", + "kernelrelease": "3.10.0-514.10.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.8.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.10.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-573.1.1.el6.x86_64", + "kernelrelease": "3.10.0-514.16.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.1.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.16.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-573.12.1.el6.x86_64", + "kernelrelease": "3.10.0-514.2.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.12.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.2.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-573.18.1.el6.x86_64", + "kernelrelease": "3.10.0-514.21.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.18.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-573.22.1.el6.x86_64", + "kernelrelease": "3.10.0-514.21.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.22.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-573.26.1.el6.x86_64", + "kernelrelease": "3.10.0-514.26.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.26.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-573.3.1.el6.x86_64", + "kernelrelease": "3.10.0-514.26.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.3.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-573.7.1.el6.x86_64", + "kernelrelease": "3.10.0-514.6.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.7.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-573.8.1.el6.x86_64", + "kernelrelease": "3.10.0-514.6.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.8.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.1.1.el6.x86_64", + "kernelrelease": "3.10.0-693.1.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.1.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.1.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.11.1.el6.x86_64", + "kernelrelease": "3.10.0-693.11.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.11.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.13.1.el6.x86_64", + "kernelrelease": "3.10.0-693.11.6.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.6.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.13.2.el6.x86_64", + "kernelrelease": "3.10.0-693.17.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.17.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.15.1.el6.x86_64", + "kernelrelease": "3.10.0-693.2.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.15.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.3.1.el6.x86_64", + "kernelrelease": "3.10.0-693.2.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.3.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.4.2.el6.x86_64", + "kernelrelease": "3.10.0-693.21.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.4.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.21.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.6.1.el6.x86_64", + "kernelrelease": "3.10.0-693.5.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.5.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-642.6.2.el6.x86_64", + "kernelrelease": "3.10.0-862.11.6.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.11.6.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.1.1.el6.x86_64", + "kernelrelease": "3.10.0-862.14.4.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.1.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.14.4.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.10.1.el6.x86_64", + "kernelrelease": "3.10.0-862.2.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.2.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.10.2.el6.x86_64", + "kernelrelease": "3.10.0-862.3.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.2.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.10.3.el6.x86_64", + "kernelrelease": "3.10.0-862.3.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.3.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.13.2.el6.x86_64", + "kernelrelease": "3.10.0-862.6.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.13.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.6.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.16.1.el6.x86_64", + "kernelrelease": "3.10.0-862.9.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.16.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.9.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.18.7.el6.x86_64", + "kernelrelease": "3.10.0-957.1.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.18.7.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.1.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.20.1.el6.x86_64", + "kernelrelease": "3.10.0-957.10.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.20.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.23.1.el6.x86_64", + "kernelrelease": "3.10.0-957.12.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.28.1.el6.x86_64", + "kernelrelease": "3.10.0-957.12.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.3.1.el6.x86_64", + "kernelrelease": "3.10.0-957.21.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.3.2.el6.x86_64", + "kernelrelease": "3.10.0-957.21.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.2.el6.x86_64.rpm" + "http://archive.kernel.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.30.1.el6.x86_64", + "kernelrelease": "3.10.0-957.27.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "2.6.32-696.6.3.el6.x86_64", + "kernelrelease": "3.10.0-957.5.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.6.3.el6.x86_64.rpm" + "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.5.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.13.1.el7.x86_64", + "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.1.el7.x86_64.rpm" + "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.6.3.el7.x86_64", + "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.6.3.el7.x86_64.rpm" + "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.4.4.el7.x86_64", + "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.4.el7.x86_64.rpm" + "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.13.2.el7.x86_64", + "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.2.el7.x86_64.rpm" + "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.20.1.el7.x86_64", + "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.20.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.4.2.el7.x86_64", + "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.8.1.el7.x86_64", + "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.8.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.9.2.el7.x86_64", + "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.9.3.el7.x86_64", + "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.3.el7.x86_64.rpm" + "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-123.1.2.el7.x86_64", + "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.1.2.el7.x86_64.rpm" + "http://vault.centos.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-229.1.2.el7.x86_64", + "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.1.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-229.11.1.el7.x86_64", + "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.11.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-229.14.1.el7.x86_64", + "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.14.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-229.20.1.el7.x86_64", + "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.20.1.el7.x86_64.rpm" + "http://vault.centos.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-229.4.2.el7.x86_64", + "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.4.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-229.7.2.el7.x86_64", + "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.7.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.10.1.el7.x86_64", + "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.10.1.el7.x86_64.rpm" + "http://vault.centos.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.13.1.el7.x86_64", + "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.13.1.el7.x86_64.rpm" + "http://vault.centos.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.18.2.el7.x86_64", + "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.18.2.el7.x86_64.rpm" + "http://vault.centos.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.22.2.el7.x86_64", + "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.22.2.el7.x86_64.rpm" + "http://vault.centos.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.28.2.el7.x86_64", + "kernelrelease": "4.18.0-80.el8.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.el8.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.28.3.el7.x86_64", + "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.3.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.1.1911/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.3.1.el7.x86_64", + "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.3.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.2.2004/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.36.1.el7.x86_64", + "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.1.el7.x86_64.rpm" + "http://vault.centos.org/centos/8.3.2011/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.36.2.el7.x86_64", + "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.36.3.el7.x86_64", + "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.3.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.4.4.el7.x86_64", + "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.4.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-327.4.5.el7.x86_64", + "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.5.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.10.2.el7.x86_64", + "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.10.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.16.1.el7.x86_64", + "kernelrelease": "4.18.0-305.3.1.el8.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.16.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.2.2.el7.x86_64", + "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.2.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.1.el7.x86_64", + "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.1.el7.x86_64.rpm" + "http://vault.centos.org/centos/8/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.2.el7.x86_64", + "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.2.el7.x86_64.rpm" + "http://vault.centos.org/centos/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.1.el7.x86_64", + "kernelrelease": "4.18.0-348.el8.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.1.el7.x86_64.rpm" + "http://vault.centos.org/centos/8/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.el8.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.2.el7.x86_64", + "kernelrelease": "2.6.32-71.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.0/os/x86_64/Packages/kernel-devel-2.6.32-71.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.1.el7.x86_64", + "kernelrelease": "2.6.32-131.0.15.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.1/os/x86_64/Packages/kernel-devel-2.6.32-131.0.15.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.2.el7.x86_64", + "kernelrelease": "2.6.32-220.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.2/os/x86_64/Packages/kernel-devel-2.6.32-220.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.1.1.el7.x86_64", + "kernelrelease": "2.6.32-279.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.1.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/os/x86_64/Packages/kernel-devel-2.6.32-279.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.1.el7.x86_64", + "kernelrelease": "2.6.32-358.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.4/os/x86_64/Packages/kernel-devel-2.6.32-358.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.6.el7.x86_64", + "kernelrelease": "2.6.32-431.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.6.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/os/x86_64/Packages/kernel-devel-2.6.32-431.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.17.1.el7.x86_64", + "kernelrelease": "2.6.32-504.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.17.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.6/os/x86_64/Packages/kernel-devel-2.6.32-504.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.1.el7.x86_64", + "kernelrelease": "2.6.32-71.29.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.29.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.2.el7.x86_64", + "kernelrelease": "2.6.32-71.24.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.24.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.21.1.el7.x86_64", + "kernelrelease": "2.6.32-71.18.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.21.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-693.5.2.el7.x86_64", + "kernelrelease": "2.6.32-71.14.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.5.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.14.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.11.6.el7.x86_64", + "kernelrelease": "2.6.32-71.7.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.11.6.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.7.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.14.4.el7.x86_64", + "kernelrelease": "2.6.32-71.18.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.14.4.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.2.3.el7.x86_64", + "kernelrelease": "2.6.32-131.6.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.2.3.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.6.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.2.el7.x86_64", + "kernelrelease": "2.6.32-131.17.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.17.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.3.el7.x86_64", + "kernelrelease": "2.6.32-131.2.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.3.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.2.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.6.3.el7.x86_64", + "kernelrelease": "2.6.32-131.12.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.6.3.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.12.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-862.9.1.el7.x86_64", + "kernelrelease": "2.6.32-131.4.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.9.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.4.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.1.3.el7.x86_64", + "kernelrelease": "2.6.32-131.21.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.1.3.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.21.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.10.1.el7.x86_64", + "kernelrelease": "2.6.32-220.23.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.23.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.1.el7.x86_64", + "kernelrelease": "2.6.32-220.13.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.13.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.2.el7.x86_64", + "kernelrelease": "2.6.32-220.4.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.2.el7.x86_64", + "kernelrelease": "2.6.32-220.7.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.7.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.3.el7.x86_64", + "kernelrelease": "2.6.32-220.4.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.27.2.el7.x86_64", + "kernelrelease": "2.6.32-220.17.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.17.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-957.5.1.el7.x86_64", + "kernelrelease": "2.6.32-220.2.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.5.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.2.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", + "kernelrelease": "2.6.32-279.11.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.11.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", + "kernelrelease": "2.6.32-279.5.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", + "kernelrelease": "2.6.32-279.22.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.22.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", + "kernelrelease": "2.6.32-279.5.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", + "kernelrelease": "2.6.32-279.19.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.19.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", + "kernelrelease": "2.6.32-279.14.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.14.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", + "kernelrelease": "2.6.32-279.1.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.1.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", + "kernelrelease": "2.6.32-279.9.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.9.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", + "kernelrelease": "2.6.32-279.2.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.2.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", + "kernelrelease": "2.6.32-358.2.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.2.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", + "kernelrelease": "2.6.32-358.18.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.18.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", + "kernelrelease": "2.6.32-358.0.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.0.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", + "kernelrelease": "2.6.32-358.23.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.23.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", + "kernelrelease": "2.6.32-358.6.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" + "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", + "kernelrelease": "2.6.32-358.11.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm" + "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.11.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", + "kernelrelease": "2.6.32-358.14.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm" + "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.14.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", + "kernelrelease": "2.6.32-358.6.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" + "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", + "kernelrelease": "2.6.32-431.5.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.5.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", + "kernelrelease": "2.6.32-431.20.5.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.5.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", + "kernelrelease": "2.6.32-431.3.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.3.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-80.el8.x86_64", + "kernelrelease": "2.6.32-431.23.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.el8.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.23.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", + "kernelrelease": "2.6.32-431.17.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.1.1911/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.17.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", + "kernelrelease": "2.6.32-431.20.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.2.2004/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", + "kernelrelease": "2.6.32-431.11.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.3.2011/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.11.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", + "kernelrelease": "2.6.32-431.29.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.29.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", + "kernelrelease": "2.6.32-431.1.2.0.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm" + "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.1.2.0.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", + "kernelrelease": "2.6.32-504.1.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm" + "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.1.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", + "kernelrelease": "2.6.32-504.12.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm" + "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.12.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", + "kernelrelease": "2.6.32-504.16.2.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm" + "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.16.2.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.3.1.el8.x86_64", + "kernelrelease": "2.6.32-504.23.4.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.x86_64.rpm" + "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.23.4.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", + "kernelrelease": "2.6.32-504.3.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm" + "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.3.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", + "kernelrelease": "2.6.32-504.30.3.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm" + "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.30.3.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", + "kernelrelease": "2.6.32-504.8.1.el6.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm" + "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.8.1.el6.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.18.0-348.el8.x86_64", + "kernelrelease": "5.14.0-130.el9.x86_64", + "target": "centos", + "headers": [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-130.el9.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.0-134.el9.x86_64", + "target": "centos", + "headers": [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-134.el9.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.0-142.el9.x86_64", + "target": "centos", + "headers": [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-142.el9.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.0-145.el9.x86_64", + "target": "centos", + "headers": [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-145.el9.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.14.0-148.el9.x86_64", "target": "centos", "headers": [ - "http://linuxsoft.cern.ch/centos-vault/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.el8.x86_64.rpm" + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-148.el9.x86_64.rpm" ] } ], @@ -3802,18 +3938,18 @@ }, { "kernelversion": 1, - "kernelrelease": "5.18.9-100.fc35.x86_64", + "kernelrelease": "5.18.19-100.fc35.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.18.9-100.fc35.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.18.19-100.fc35.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.18.9-200.fc36.x86_64", + "kernelrelease": "5.19.4-200.fc36.x86_64", "target": "fedora", "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.18.9-200.fc36.x86_64.rpm" + "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.19.4-200.fc36.x86_64.rpm" ] } ], @@ -6684,6 +6820,22 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.71.1.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.71.1.0.1.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.76.1.0.1.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.76.1.0.1.el7.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "3.10.0-1160.el7.x86_64", @@ -7044,6 +7196,22 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.66.1.0.2.el7.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.71.1.0.2.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.71.1.0.2.el7.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3.10.0-1160.76.1.0.2.el7.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.76.1.0.2.el7.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "3.10.0-514.10.2.0.1.el7.x86_64", @@ -7756,6 +7924,46 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.9.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.309.4.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.4.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.309.5.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.5.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.309.5.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.5.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.310.7.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.310.7.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.310.7.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.310.7.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.14.35-1902.305.4.1.el7uek.x86_64", @@ -8324,6 +8532,22 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.3.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.514.5.1.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.5.1.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.514.5.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.5.1.2.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.14.35-2047.514.5.el7uek.x86_64", @@ -8332,6 +8556,38 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.5.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.515.3.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.515.3.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.516.1.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.516.1.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.516.2.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.516.2.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.14.35-2047.516.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.516.2.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.1.12-124.42.3.el7uek.x86_64", @@ -8628,6 +8884,38 @@ "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.63.3.1.el7uek.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.64.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.64.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.65.1.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.65.1.1.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.65.1.2.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.65.1.2.el7uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.1.12-124.65.1.el7uek.x86_64", + "target": "oracle7", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.65.1.el7uek.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "3.8.13-118.10.2.el7uek.x86_64", @@ -9870,6 +10158,22 @@ "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-372.13.1.0.1.el8_6.x86_64.rpm" ] }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-372.16.1.0.1.el8_6.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-372.16.1.0.1.el8_6.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.18.0-372.19.1.0.1.el8_6.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-372.19.1.0.1.el8_6.x86_64.rpm" + ] + }, { "kernelversion": 1, "kernelrelease": "4.18.0-372.9.1.el8.x86_64", @@ -10349,31 +10653,55 @@ "headers": [ "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.9.el8uek.x86_64.rpm" ] - } - ], - "PhotonOS": [ + }, { "kernelversion": 1, - "kernelrelease": "1.3.0-1.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "5.4.17-2136.309.4.el8uek.x86_64", + "target": "oracle8", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/Linux-PAM-devel-1.3.0-1.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.4.el8uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.15-2.ph3.x86_64", - "target": "photonOS", + "kernelrelease": "5.4.17-2136.309.5.1.el8uek.x86_64", + "target": "oracle8", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-2.ph3.x86_64.rpm" + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.5.1.el8uek.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.15-1.ph3.x86_64", + "kernelrelease": "5.4.17-2136.309.5.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.5.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.310.7.1.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.310.7.1.el8uek.x86_64.rpm" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "5.4.17-2136.310.7.el8uek.x86_64", + "target": "oracle8", + "headers": [ + "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.310.7.el8uek.x86_64.rpm" + ] + } + ], + "PhotonOS": [ + { + "kernelversion": 1, + "kernelrelease": "4.19.15-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-secure-devel-4.19.15-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-devel-4.19.15-2.ph3.x86_64.rpm" ] }, { @@ -10389,7 +10717,7 @@ "kernelrelease": "4.19.104-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.104-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-3.ph3.x86_64.rpm" ] }, { @@ -10397,7 +10725,7 @@ "kernelrelease": "4.19.112-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.112-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.112-1.ph3.x86_64.rpm" ] }, { @@ -10421,7 +10749,7 @@ "kernelrelease": "4.19.115-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.115-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-2.ph3.x86_64.rpm" ] }, { @@ -10445,7 +10773,7 @@ "kernelrelease": "4.19.115-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-6.ph3.x86_64.rpm" ] }, { @@ -10469,7 +10797,7 @@ "kernelrelease": "4.19.124-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.124-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-1.ph3.x86_64.rpm" ] }, { @@ -10485,7 +10813,7 @@ "kernelrelease": "4.19.126-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.126-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" ] }, { @@ -10501,7 +10829,7 @@ "kernelrelease": "4.19.129-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.129-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-1.ph3.x86_64.rpm" ] }, { @@ -10525,7 +10853,7 @@ "kernelrelease": "4.19.132-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.132-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-1.ph3.x86_64.rpm" ] }, { @@ -10533,7 +10861,7 @@ "kernelrelease": "4.19.132-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-2.ph3.x86_64.rpm" ] }, { @@ -10541,7 +10869,7 @@ "kernelrelease": "4.19.132-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.132-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-3.ph3.x86_64.rpm" ] }, { @@ -10549,7 +10877,7 @@ "kernelrelease": "4.19.132-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" ] }, { @@ -10565,7 +10893,7 @@ "kernelrelease": "4.19.138-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-1.ph3.x86_64.rpm" ] }, { @@ -10573,7 +10901,7 @@ "kernelrelease": "4.19.138-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.138-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-2.ph3.x86_64.rpm" ] }, { @@ -10589,7 +10917,7 @@ "kernelrelease": "4.19.145-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-1.ph3.x86_64.rpm" ] }, { @@ -10597,7 +10925,7 @@ "kernelrelease": "4.19.145-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.145-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-2.ph3.x86_64.rpm" ] }, { @@ -10605,7 +10933,7 @@ "kernelrelease": "4.19.145-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.145-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-4.ph3.x86_64.rpm" ] }, { @@ -10613,7 +10941,7 @@ "kernelrelease": "4.19.148-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-1.ph3.x86_64.rpm" ] }, { @@ -10629,7 +10957,7 @@ "kernelrelease": "4.19.148-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-3.ph3.x86_64.rpm" ] }, { @@ -10637,7 +10965,7 @@ "kernelrelease": "4.19.148-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.148-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-4.ph3.x86_64.rpm" ] }, { @@ -10645,7 +10973,7 @@ "kernelrelease": "4.19.148-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.148-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-5.ph3.x86_64.rpm" ] }, { @@ -10693,7 +11021,7 @@ "kernelrelease": "4.19.154-8.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.154-8.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" ] }, { @@ -10717,7 +11045,7 @@ "kernelrelease": "4.19.160-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm" ] }, { @@ -10741,7 +11069,7 @@ "kernelrelease": "4.19.164-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.164-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-1.ph3.x86_64.rpm" ] }, { @@ -10749,7 +11077,7 @@ "kernelrelease": "4.19.164-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.164-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-2.ph3.x86_64.rpm" ] }, { @@ -10757,7 +11085,7 @@ "kernelrelease": "4.19.174-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-2.ph3.x86_64.rpm" ] }, { @@ -10765,7 +11093,7 @@ "kernelrelease": "4.19.174-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-4.ph3.x86_64.rpm" ] }, { @@ -10781,7 +11109,7 @@ "kernelrelease": "4.19.177-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.177-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-1.ph3.x86_64.rpm" ] }, { @@ -10805,7 +11133,7 @@ "kernelrelease": "4.19.182-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.182-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-2.ph3.x86_64.rpm" ] }, { @@ -10813,7 +11141,7 @@ "kernelrelease": "4.19.186-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-1.ph3.x86_64.rpm" ] }, { @@ -10821,7 +11149,7 @@ "kernelrelease": "4.19.186-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.186-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-2.ph3.x86_64.rpm" ] }, { @@ -10845,7 +11173,7 @@ "kernelrelease": "4.19.189-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" ] }, { @@ -10853,7 +11181,7 @@ "kernelrelease": "4.19.189-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.189-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-3.ph3.x86_64.rpm" ] }, { @@ -10861,7 +11189,7 @@ "kernelrelease": "4.19.189-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.189-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" ] }, { @@ -10877,7 +11205,7 @@ "kernelrelease": "4.19.190-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-1.ph3.x86_64.rpm" ] }, { @@ -10885,7 +11213,7 @@ "kernelrelease": "4.19.190-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" ] }, { @@ -10909,7 +11237,7 @@ "kernelrelease": "4.19.191-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-2.ph3.x86_64.rpm" ] }, { @@ -10917,7 +11245,7 @@ "kernelrelease": "4.19.191-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.191-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm" ] }, { @@ -10949,7 +11277,7 @@ "kernelrelease": "4.19.198-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.198-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-4.ph3.x86_64.rpm" ] }, { @@ -10957,7 +11285,7 @@ "kernelrelease": "4.19.205-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.205-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.205-1.ph3.x86_64.rpm" ] }, { @@ -10965,7 +11293,7 @@ "kernelrelease": "4.19.208-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.208-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.208-1.ph3.x86_64.rpm" ] }, { @@ -10973,7 +11301,7 @@ "kernelrelease": "4.19.214-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.214-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" ] }, { @@ -10989,7 +11317,7 @@ "kernelrelease": "4.19.217-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.217-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" ] }, { @@ -10997,7 +11325,7 @@ "kernelrelease": "4.19.219-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.219-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-1.ph3.x86_64.rpm" ] }, { @@ -11005,7 +11333,7 @@ "kernelrelease": "4.19.219-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-3.ph3.x86_64.rpm" ] }, { @@ -11013,7 +11341,7 @@ "kernelrelease": "4.19.219-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-4.ph3.x86_64.rpm" ] }, { @@ -11021,7 +11349,7 @@ "kernelrelease": "4.19.219-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.219-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-5.ph3.x86_64.rpm" ] }, { @@ -11029,7 +11357,7 @@ "kernelrelease": "4.19.224-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.224-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-1.ph3.x86_64.rpm" ] }, { @@ -11037,7 +11365,7 @@ "kernelrelease": "4.19.224-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.224-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-2.ph3.x86_64.rpm" ] }, { @@ -11069,7 +11397,7 @@ "kernelrelease": "4.19.229-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.229-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" ] }, { @@ -11085,7 +11413,7 @@ "kernelrelease": "4.19.232-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm" ] }, { @@ -11093,7 +11421,7 @@ "kernelrelease": "4.19.232-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.232-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-2.ph3.x86_64.rpm" ] }, { @@ -11109,7 +11437,7 @@ "kernelrelease": "4.19.232-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.232-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-4.ph3.x86_64.rpm" ] }, { @@ -11138,546 +11466,458 @@ }, { "kernelversion": 1, - "kernelrelease": "4.19.247-2.ph3.x86_64", + "kernelrelease": "4.19.247-10.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.247-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-10.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.247-3.ph3.x86_64", + "kernelrelease": "4.19.247-11.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-11.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.247-4.ph3.x86_64", + "kernelrelease": "4.19.247-12.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.247-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-12.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.29-1.ph3.x86_64", + "kernelrelease": "4.19.247-13.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.29-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-13.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.32-3.ph3.x86_64", + "kernelrelease": "4.19.247-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.32-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-2.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.40-2.ph3.x86_64", + "kernelrelease": "4.19.247-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.40-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-3.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.40-3.ph3.x86_64", + "kernelrelease": "4.19.247-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.40-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-4.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.52-1.ph3.x86_64", + "kernelrelease": "4.19.247-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-5.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.52-2.ph3.x86_64", + "kernelrelease": "4.19.247-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-6.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.65-2.ph3.x86_64", + "kernelrelease": "4.19.247-7.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-7.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.65-3.ph3.x86_64", + "kernelrelease": "4.19.247-8.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-8.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.69-1.ph3.x86_64", + "kernelrelease": "4.19.247-9.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.69-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-9.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.72-1.ph3.x86_64", + "kernelrelease": "4.19.29-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.29-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.72-2.ph3.x86_64", + "kernelrelease": "4.19.32-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.72-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.32-3.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.76-1.ph3.x86_64", + "kernelrelease": "4.19.40-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.76-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-2.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.76-5.ph3.x86_64", + "kernelrelease": "4.19.40-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-3.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.79-1.ph3.x86_64", + "kernelrelease": "4.19.52-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.79-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.79-2.ph3.x86_64", + "kernelrelease": "4.19.52-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-2.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.82-1.ph3.x86_64", + "kernelrelease": "4.19.65-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.82-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-2.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.84-1.ph3.x86_64", + "kernelrelease": "4.19.65-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.84-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-3.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.84-2.ph3.x86_64", + "kernelrelease": "4.19.69-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.69-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.87-1.ph3.x86_64", + "kernelrelease": "4.19.72-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.87-4.ph3.x86_64", + "kernelrelease": "4.19.72-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.87-5.ph3.x86_64", + "kernelrelease": "4.19.76-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-1.ph3.x86_64", + "kernelrelease": "4.19.76-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-5.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-2.ph3.x86_64", + "kernelrelease": "4.19.79-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-3.ph3.x86_64", + "kernelrelease": "4.19.79-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.97-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-2.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-4.ph3.x86_64", + "kernelrelease": "4.19.82-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.97-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-5.ph3.x86_64", + "kernelrelease": "4.19.84-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.97-6.ph3.x86_64", + "kernelrelease": "4.19.84-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-2.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.115-4.ph3.x86_64", + "kernelrelease": "4.19.87-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.115-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-5.ph3.x86_64", + "kernelrelease": "4.19.87-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.154-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.154-6.ph3.x86_64", + "kernelrelease": "4.19.87-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-6.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-5.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.160-1.ph3.x86_64", + "kernelrelease": "4.19.97-1.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.160-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-1.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.174-1.ph3.x86_64", + "kernelrelease": "4.19.97-2.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.174-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.214-2.ph3.x86_64", + "kernelrelease": "4.19.97-3.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.214-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-3.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.219-2.ph3.x86_64", + "kernelrelease": "4.19.97-4.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.219-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-4.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.225-5.ph3.x86_64", + "kernelrelease": "4.19.97-5.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.225-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.32-2.ph3.x86_64", + "kernelrelease": "4.19.97-6.ph3.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.32-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-6.ph3.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.65-1.ph3.x86_64", + "kernelrelease": "5.10.103-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.65-1.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-1.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.76-2.ph3.x86_64", + "kernelrelease": "5.10.103-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.76-2.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-2.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.87-3.ph3.x86_64", + "kernelrelease": "5.10.103-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-aws-devel-4.19.87-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-3.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.132-4.ph3.x86_64", + "kernelrelease": "5.10.103-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.132-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.160-3.ph3.x86_64", + "kernelrelease": "5.10.109-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.160-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-2.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.174-3.ph3.x86_64", + "kernelrelease": "5.10.109-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.174-3.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-3.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.190-4.ph3.x86_64", + "kernelrelease": "5.10.109-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-4.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.190-5.ph3.x86_64", + "kernelrelease": "5.10.118-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.190-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-1.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.191-4.ph3.x86_64", + "kernelrelease": "5.10.118-11.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-11.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.191-5.ph3.x86_64", + "kernelrelease": "5.10.118-12.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.191-5.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-12.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.225-7.ph3.x86_64", + "kernelrelease": "5.10.118-13.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.225-7.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-13.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.241-4.ph3.x86_64", + "kernelrelease": "5.10.118-14.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.241-4.ph3.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-14.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.245-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.245-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.245-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-rt-devel-4.19.245-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-7.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.154-7.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.241-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.241-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-secure-devel-4.19.247-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1.4.0-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1.4.0-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.103-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.103-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-2.ph4.x86_64", + "kernelrelease": "5.10.118-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.109-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-2.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.109-3.ph4.x86_64", + "kernelrelease": "5.10.118-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.109-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-3.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.109-4.ph4.x86_64", + "kernelrelease": "5.10.118-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-4.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.118-1.ph4.x86_64", + "kernelrelease": "5.10.118-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-5.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.118-2.ph4.x86_64", + "kernelrelease": "5.10.118-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.118-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-6.ph4.x86_64.rpm" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.118-3.ph4.x86_64", + "kernelrelease": "5.10.132-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.118-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-devel-5.10.132-1.ph4.x86_64.rpm" ] }, { @@ -11693,7 +11933,7 @@ "kernelrelease": "5.10.25-10.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-10.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-10.ph4.x86_64.rpm" ] }, { @@ -11709,7 +11949,7 @@ "kernelrelease": "5.10.25-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-3.ph4.x86_64.rpm" ] }, { @@ -11717,7 +11957,7 @@ "kernelrelease": "5.10.25-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-5.ph4.x86_64.rpm" ] }, { @@ -11725,7 +11965,7 @@ "kernelrelease": "5.10.25-6.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.25-6.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm" ] }, { @@ -11733,7 +11973,7 @@ "kernelrelease": "5.10.25-7.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-7.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-7.ph4.x86_64.rpm" ] }, { @@ -11749,7 +11989,7 @@ "kernelrelease": "5.10.35-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.35-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-1.ph4.x86_64.rpm" ] }, { @@ -11757,7 +11997,7 @@ "kernelrelease": "5.10.35-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.35-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm" ] }, { @@ -11789,7 +12029,7 @@ "kernelrelease": "5.10.42-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.42-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm" ] }, { @@ -11797,7 +12037,7 @@ "kernelrelease": "5.10.42-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.42-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-2.ph4.x86_64.rpm" ] }, { @@ -11813,7 +12053,7 @@ "kernelrelease": "5.10.46-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-1.ph4.x86_64.rpm" ] }, { @@ -11821,7 +12061,7 @@ "kernelrelease": "5.10.46-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.46-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-2.ph4.x86_64.rpm" ] }, { @@ -11829,7 +12069,7 @@ "kernelrelease": "5.10.52-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.52-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.52-1.ph4.x86_64.rpm" ] }, { @@ -11845,7 +12085,7 @@ "kernelrelease": "5.10.61-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-1.ph4.x86_64.rpm" ] }, { @@ -11853,7 +12093,7 @@ "kernelrelease": "5.10.61-2.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.61-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-2.ph4.x86_64.rpm" ] }, { @@ -11861,7 +12101,7 @@ "kernelrelease": "5.10.75-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.75-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.75-1.ph4.x86_64.rpm" ] }, { @@ -11869,7 +12109,7 @@ "kernelrelease": "5.10.78-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-1.ph4.x86_64.rpm" ] }, { @@ -11917,7 +12157,7 @@ "kernelrelease": "5.10.83-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.83-5.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-5.ph4.x86_64.rpm" ] }, { @@ -11933,7 +12173,7 @@ "kernelrelease": "5.10.83-7.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.83-7.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm" ] }, { @@ -11941,7 +12181,7 @@ "kernelrelease": "5.10.93-1.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-1.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm" ] }, { @@ -11949,7 +12189,7 @@ "kernelrelease": "5.10.93-3.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.93-3.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm" ] }, { @@ -11957,7 +12197,7 @@ "kernelrelease": "5.10.93-4.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-4.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-4.ph4.x86_64.rpm" ] }, { @@ -11965,95 +12205,7 @@ "kernelrelease": "5.10.93-5.ph4.x86_64", "target": "photonOS", "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.93-5.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.25-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.78-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-aws-devel-5.10.78-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.4-10.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-10.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.42-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.42-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.78-6.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-6.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.78-7.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-rt-devel-5.10.78-7.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-5.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.103-5.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-8.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.25-8.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.4-8.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.4-8.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-secure-devel-5.10.83-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1.4.0-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/Linux-PAM-devel-1.4.0-2.ph4.x86_64.rpm" + "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-5.ph4.x86_64.rpm" ] }, { @@ -12063,122 +12215,98 @@ "headers": [ "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-devel-5.10.4-16.ph4.x86_64.rpm" ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.4-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-aws-devel-5.10.4-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.4-9.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-rt-devel-5.10.4-9.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.4-7.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-secure-devel-5.10.4-7.ph4.x86_64.rpm" - ] } ], "Debian": [ { "kernelversion": 1, - "kernelrelease": "5.18.5-1-amd64", + "kernelrelease": "5.18.2-1~bpo11+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-cloud-amd64_5.18.5-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-rt-amd64_5.18.5-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common-rt_5.18.5-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-common_5.18.5-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-2-amd64_5.18.5-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-amd64_5.18.2-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-amd64_5.18.2-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-amd64_5.18.2-1~bpo11+1_amd64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.18.2-1~bpo11+1-amd64", + "kernelrelease": "5.18.14-1~bpo11+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-amd64_5.18.2-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-amd64_5.18.2-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.5-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-amd64_5.18.2-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-rt-amd64_5.18.14-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-common_5.18.14-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-amd64_5.18.14-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-cloud-amd64_5.18.14-1~bpo11+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-common-rt_5.18.14-1~bpo11+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1~bpo11+1_amd64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.113-1-amd64", + "kernelrelease": "5.10.127-2-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-rt-amd64_5.10.127-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-common-rt_5.10.127-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-amd64_5.10.127-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-cloud-amd64_5.10.127-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-common_5.10.127-2_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.120-1-amd64", + "kernelrelease": "5.10.136-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-rt-amd64_5.10.136-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-amd64_5.10.136-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-common-rt_5.10.136-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-common_5.10.136-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-cloud-amd64_5.10.136-1_amd64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.127-1-amd64", + "kernelrelease": "5.10.106-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-rt-amd64_5.10.127-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-common_5.10.127-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-cloud-amd64_5.10.127-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-amd64_5.10.127-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-16-common-rt_5.10.127-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.84-1-amd64", + "kernelrelease": "5.10.120-1~bpo10+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common_5.10.84-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-cloud-amd64_5.10.84-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-common-rt_5.10.84-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-10-rt-amd64_5.10.84-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-cloud-amd64_5.10.120-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-common-rt_5.10.120-1~bpo10+1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-rt-amd64_5.10.120-1~bpo10+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-common_5.10.120-1~bpo10+1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-amd64_5.10.120-1~bpo10+1_amd64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "5.10.106-1-amd64", + "kernelrelease": "4.19.249-2-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-amd64_4.19.249-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-rt-amd64_4.19.249-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common-rt_4.19.249-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common_4.19.249-2_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-cloud-amd64_4.19.249-2_amd64.deb" ] }, { @@ -12186,12 +12314,12 @@ "kernelrelease": "4.19.208-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" ] }, { @@ -12199,25 +12327,12 @@ "kernelrelease": "4.19.235-1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.19~rc4-1~exp1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-common_5.19~rc4-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-cloud-amd64_5.19~rc4-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-amd64_5.19~rc4-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-rt-amd64_5.19~rc4-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.19_5.19~rc4-1~exp1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-rc4-common-rt_5.19~rc4-1~exp1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb" ] }, { @@ -12225,9 +12340,9 @@ "kernelrelease": "3.16.56-1+deb8u1-amd64", "target": "debian", "headers": [ + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb" ] }, { @@ -12235,11 +12350,11 @@ "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" ] }, @@ -12258,11 +12373,11 @@ "kernelrelease": "4.9.228-1-amd64", "target": "debian", "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb" + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", + "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb" ] }, { @@ -12271,37 +12386,50 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-5.10_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.232-1-amd64", + "kernelrelease": "5.10.113-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb" ] }, { "kernelversion": 1, - "kernelrelease": "4.19.249-2-amd64", + "kernelrelease": "5.10.120-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-cloud-amd64_4.19.249-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-amd64_4.19.249-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "4.19.232-1-amd64", + "target": "debian", + "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common_4.19.249-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common-rt_4.19.249-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-rt-amd64_4.19.249-2_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" ] }, { @@ -12309,9 +12437,9 @@ "kernelrelease": "3.16.81-1-amd64", "target": "debian", "headers": [ + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb" ] }, { @@ -12330,9 +12458,9 @@ "target": "debian", "headers": [ "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb" ] }, @@ -12341,11 +12469,11 @@ "kernelrelease": "4.9.210-1+deb9u1~deb8u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb" ] }, { @@ -12353,11 +12481,11 @@ "kernelrelease": "4.9.303-1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb" ] }, { @@ -12365,11 +12493,11 @@ "kernelrelease": "4.9.320-2-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common-rt_4.9.320-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-rt-amd64_4.9.320-2_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common_4.9.320-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-amd64_4.9.320-2_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-rt-amd64_4.9.320-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-amd64_4.9.320-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common-rt_4.9.320-2_all.deb" ] }, { @@ -12377,12 +12505,12 @@ "kernelrelease": "4.19.232-1~deb9u1-amd64", "target": "debian", "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb" + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", + "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb" ] } ], @@ -12392,9 +12520,9 @@ "kernelrelease": "4.15.0-1087-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb" ] }, @@ -12403,10 +12531,10 @@ "kernelrelease": "4.15.0-1088-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb" ] }, { @@ -12414,10 +12542,10 @@ "kernelrelease": "4.15.0-1093-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb" ] }, { @@ -12426,5918 +12554,5445 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb" ] }, { - "kernelversion": "113", - "kernelrelease": "4.15.0-1102-oracle", + "kernelversion": "115", + "kernelrelease": "4.15.0-1104-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1102-oracle_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1102-oracle_4.15.0-1102.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1104-oracle_4.15.0-1104.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1104-oracle_4.15.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1104_4.15.0-1104.115_all.deb" ] }, { - "kernelversion": "113", - "kernelrelease": "4.15.0-1102-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "115", + "kernelrelease": "4.15.0-1104-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" ] }, { - "kernelversion": "113", - "kernelrelease": "4.15.0-1102-oem", - "target": "ubuntu-oem", + "kernelversion": "131", + "kernelrelease": "4.15.0-1126-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1126-kvm_4.15.0-1126.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1126_4.15.0-1126.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1126-kvm_4.15.0-1126.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1126_4.15.0-1126.131_all.deb" ] }, { - "kernelversion": "105", - "kernelrelease": "4.15.0-1103-kvm", - "target": "ubuntu-kvm", + "kernelversion": "151", + "kernelrelease": "4.15.0-1135-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1135_4.15.0-1135.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1135-gcp_4.15.0-1135.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1135-gcp_4.15.0-1135.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1135_4.15.0-1135.151_amd64.deb" ] }, { - "kernelversion": "106", - "kernelrelease": "4.15.0-1104-kvm", - "target": "ubuntu-kvm", + "kernelversion": "151", + "kernelrelease": "4.15.0-1140-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1104_4.15.0-1104.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1104-kvm_4.15.0-1104.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1140-aws_4.15.0-1140.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1140_4.15.0-1140.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1140-aws_4.15.0-1140.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1140_4.15.0-1140.151_all.deb" ] }, { - "kernelversion": "115", - "kernelrelease": "4.15.0-1104-oem", - "target": "ubuntu-oem", + "kernelversion": "165", + "kernelrelease": "4.15.0-1150-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1150_4.15.0-1150.165_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1150-azure_4.15.0-1150.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1150_4.15.0-1150.165_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1150-azure_4.15.0-1150.165_amd64.deb" ] }, { - "kernelversion": "109", - "kernelrelease": "4.15.0-1107-kvm", - "target": "ubuntu-kvm", + "kernelversion": "203", + "kernelrelease": "4.15.0-192-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192-lowlatency_4.15.0-192.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192-generic_4.15.0-192.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192_4.15.0-192.203_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192-generic_4.15.0-192.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192_4.15.0-192.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192-lowlatency_4.15.0-192.203_amd64.deb" ] }, { - "kernelversion": "113", - "kernelrelease": "4.15.0-1110-kvm", - "target": "ubuntu-kvm", + "kernelversion": "31", + "kernelrelease": "5.0.0-1028-aws-5.0", + "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" ] }, { - "kernelversion": "114", - "kernelrelease": "4.15.0-1111-kvm", - "target": "ubuntu-kvm", + "kernelversion": "33~18.04.1", + "kernelrelease": "5.4.0-1032-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1111-kvm_4.15.0-1111.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1111_4.15.0-1111.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { - "kernelversion": "120", - "kernelrelease": "4.15.0-1113-aws", - "target": "ubuntu-aws", + "kernelversion": "33~18.04.1", + "kernelrelease": "5.4.0-1032-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1113_4.15.0-1113.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1113-aws_4.15.0-1113.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" ] }, { - "kernelversion": "127", - "kernelrelease": "4.15.0-1113-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1113_4.15.0-1113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1113-gcp_4.15.0-1113.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { - "kernelversion": "116", - "kernelrelease": "4.15.0-1113-kvm", - "target": "ubuntu-kvm", + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" ] }, { - "kernelversion": "117", - "kernelrelease": "4.15.0-1114-kvm", - "target": "ubuntu-kvm", + "kernelversion": "35~18.04.1", + "kernelrelease": "5.4.0-1034-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" ] }, { - "kernelversion": "118", - "kernelrelease": "4.15.0-1115-kvm", - "target": "ubuntu-kvm", + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1040-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1115_4.15.0-1115.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1115-kvm_4.15.0-1115.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" ] }, { - "kernelversion": "123", - "kernelrelease": "4.15.0-1116-aws", - "target": "ubuntu-aws", + "kernelversion": "44~18.04.1", + "kernelrelease": "5.4.0-1043-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb" ] }, { - "kernelversion": "130", - "kernelrelease": "4.15.0-1116-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1060-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { - "kernelversion": "119", - "kernelrelease": "4.15.0-1116-kvm", - "target": "ubuntu-kvm", + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1060-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb" ] }, { - "kernelversion": "124", - "kernelrelease": "4.15.0-1117-aws", - "target": "ubuntu-aws", + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1117_4.15.0-1117.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1117-aws_4.15.0-1117.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" ] }, { - "kernelversion": "131", - "kernelrelease": "4.15.0-1117-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1117_4.15.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1117-gcp_4.15.0-1117.131_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { - "kernelversion": "128", - "kernelrelease": "4.15.0-1120-aws", - "target": "ubuntu-aws", + "kernelversion": "64~18.04.1", + "kernelrelease": "5.4.0-1061-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1120_4.15.0-1120.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1120-aws_4.15.0-1120.128_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" ] }, { - "kernelversion": "129", - "kernelrelease": "4.15.0-1121-aws", - "target": "ubuntu-aws", + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "135", - "kernelrelease": "4.15.0-1121-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "136", - "kernelrelease": "4.15.0-1122-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1063-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" ] }, { - "kernelversion": "137", - "kernelrelease": "4.15.0-1123-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1069-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1123-gcp_4.15.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1123_4.15.0-1123.137_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" ] }, { - "kernelversion": "128", - "kernelrelease": "4.15.0-1123-kvm", - "target": "ubuntu-kvm", + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1069-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1123_4.15.0-1123.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1123-kvm_4.15.0-1123.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1123_4.15.0-1123.128_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1123-kvm_4.15.0-1123.128_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb" ] }, { - "kernelversion": "133", - "kernelrelease": "4.15.0-1124-aws", - "target": "ubuntu-aws", + "kernelversion": "76~18.04.3", + "kernelrelease": "5.4.0-1071-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb" ] }, { - "kernelversion": "134", - "kernelrelease": "4.15.0-1125-aws", - "target": "ubuntu-aws", + "kernelversion": "83~18.04.1", + "kernelrelease": "5.4.0-1077-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1125-aws_4.15.0-1125.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1125_4.15.0-1125.134_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1077_5.4.0-1077.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1077-gke_5.4.0-1077.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1077_5.4.0-1077.83~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1077-gke_5.4.0-1077.83~18.04.1_amd64.deb" ] }, { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-aws", - "target": "ubuntu-aws", + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb" ] }, { - "kernelversion": "137", - "kernelrelease": "4.15.0-1128-aws", - "target": "ubuntu-aws", + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb" ] }, { - "kernelversion": "138", - "kernelrelease": "4.15.0-1129-aws", - "target": "ubuntu-aws", + "kernelversion": "84~18.04.1", + "kernelrelease": "5.4.0-1078-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1129-aws_4.15.0-1129.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1129_4.15.0-1129.138_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1078-gke_5.4.0-1078.84~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1078-gke_5.4.0-1078.84~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb" ] }, { - "kernelversion": "143", - "kernelrelease": "4.15.0-1130-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "90~18.04.1", + "kernelrelease": "5.4.0-1082-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1082_5.4.0-1082.90~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1082_5.4.0-1082.90~18.04.1_all.deb" ] }, { - "kernelversion": "144", - "kernelrelease": "4.15.0-1131-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-1084-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1084-aws_5.4.0-1084.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1084_5.4.0-1084.91~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1084_5.4.0-1084.91~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1084-aws_5.4.0-1084.91~18.04.1_amd64.deb" ] }, { - "kernelversion": "147", - "kernelrelease": "4.15.0-1134-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "95~18.04.1", + "kernelrelease": "5.4.0-1087-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1087_5.4.0-1087.95~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1087_5.4.0-1087.95~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95~18.04.1_amd64.deb" ] }, { - "kernelversion": "148", - "kernelrelease": "4.15.0-1135-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "95~18.04.1", + "kernelrelease": "5.4.0-1090-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1135-azure_4.15.0-1135.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1135_4.15.0-1135.148_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1090_5.4.0-1090.95~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1090_5.4.0-1090.95~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1090-azure_5.4.0-1090.95~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1090-azure_5.4.0-1090.95~18.04.1_amd64.deb" ] }, { - "kernelversion": "148", - "kernelrelease": "4.15.0-1137-aws", - "target": "ubuntu-aws", + "kernelversion": "141~18.04.1", + "kernelrelease": "5.4.0-125-hwe-5.4", + "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-125_5.4.0-125.141~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-generic_5.4.0-125.141~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-lowlatency_5.4.0-125.141~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-lowlatency_5.4.0-125.141~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-125_5.4.0-125.141~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-generic_5.4.0-125.141~18.04.1_amd64.deb" ] }, { - "kernelversion": "151", - "kernelrelease": "4.15.0-1138-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "9", + "kernelrelease": "4.15.0-1006-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb" ] }, { - "kernelversion": "152", - "kernelrelease": "4.15.0-1139-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "8", + "kernelrelease": "4.15.0-1008-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" ] }, { - "kernelversion": "199", - "kernelrelease": "4.15.0-188", - "target": "ubuntu-generic", + "kernelversion": "8", + "kernelrelease": "4.15.0-1008-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb" ] }, { - "kernelversion": "200", - "kernelrelease": "4.15.0-189", - "target": "ubuntu-generic", + "kernelversion": "11", + "kernelrelease": "4.15.0-1008-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-lowlatency_4.15.0-189.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-lowlatency_4.15.0-189.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.0.0-1028-aws-5.0", - "target": "ubuntu-aws-5.0", + "kernelversion": "10", + "kernelrelease": "4.15.0-1008-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" ] }, { - "kernelversion": "113~18.04.1", - "kernelrelease": "5.4.0-100-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "9", + "kernelrelease": "4.15.0-1009-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb" ] }, { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "9", + "kernelrelease": "4.15.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" ] }, { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelversion": "9", + "kernelrelease": "4.15.0-1009-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" ] }, { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "12", + "kernelrelease": "4.15.0-1009-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" ] }, { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelversion": "11", + "kernelrelease": "4.15.0-1009-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" ] }, { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "102", + "kernelrelease": "4.15.0-101-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" ] }, { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1040-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelversion": "10", + "kernelrelease": "4.15.0-1010-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" ] }, { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1043-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelversion": "10", + "kernelrelease": "4.15.0-1010-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" ] }, { - "kernelversion": "119~18.04.1", - "kernelrelease": "5.4.0-105-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "10", + "kernelrelease": "4.15.0-1010-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" ] }, { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "12", + "kernelrelease": "4.15.0-1010-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" ] }, { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "11", + "kernelrelease": "4.15.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" ] }, { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "11", + "kernelrelease": "4.15.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb" ] }, { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "12", + "kernelrelease": "4.15.0-1012-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb" ] }, { - "kernelversion": "120~18.04.1", - "kernelrelease": "5.4.0-106-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "12", + "kernelrelease": "4.15.0-1012-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-106_5.4.0-106.120~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-generic_5.4.0-106.120~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-106-lowlatency_5.4.0-106.120~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb" ] }, { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "15", + "kernelrelease": "4.15.0-1012-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" ] }, { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "13", + "kernelrelease": "4.15.0-1013-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" ] }, { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "16", + "kernelrelease": "4.15.0-1013-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" ] }, { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "15", + "kernelrelease": "4.15.0-1013-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb" ] }, { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "14", + "kernelrelease": "4.15.0-1014-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "14", + "kernelrelease": "4.15.0-1014-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "16", + "kernelrelease": "4.15.0-1014-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "15", + "kernelrelease": "4.15.0-1015-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "18", + "kernelrelease": "4.15.0-1015-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "17", + "kernelrelease": "4.15.0-1015-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "16", + "kernelrelease": "4.15.0-1016-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" ] }, { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "16", + "kernelrelease": "4.15.0-1016-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "17", + "kernelrelease": "4.15.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" ] }, { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "17", + "kernelrelease": "4.15.0-1017-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" ] }, { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "18", + "kernelrelease": "4.15.0-1017-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" ] }, { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "20", + "kernelrelease": "4.15.0-1017-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" ] }, { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1065-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "19", + "kernelrelease": "4.15.0-1017-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" ] }, { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "18", + "kernelrelease": "4.15.0-1018-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb" ] }, { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "19", + "kernelrelease": "4.15.0-1018-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" ] }, { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1067-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "21", + "kernelrelease": "4.15.0-1018-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" ] }, { - "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "20", + "kernelrelease": "4.15.0-1018-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb" ] }, { - "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "19", + "kernelrelease": "4.15.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb" ] }, { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1068-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "19", + "kernelrelease": "4.15.0-1019-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1068_5.4.0-1068.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" ] }, { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1069-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "19", + "kernelrelease": "4.15.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" ] }, { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1069-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "20", + "kernelrelease": "4.15.0-1019-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" ] }, { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1069-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "20", + "kernelrelease": "4.15.0-1020-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1069-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "20", + "kernelrelease": "4.15.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" ] }, { - "kernelversion": "74~18.04.1", - "kernelrelease": "5.4.0-1070-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1070_5.4.0-1070.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1070-aws_5.4.0-1070.74~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" ] }, { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1070-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" ] }, { - "kernelversion": "74~18.04.1", - "kernelrelease": "5.4.0-1071-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "21", + "kernelrelease": "4.15.0-1021-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1071_5.4.0-1071.74~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1071-azure_5.4.0-1071.74~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" ] }, { - "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-1071-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "22", + "kernelrelease": "4.15.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1071_5.4.0-1071.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1071-gcp_5.4.0-1071.75~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" ] }, { - "kernelversion": "76~18.04.3", - "kernelrelease": "5.4.0-1071-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelversion": "24", + "kernelrelease": "4.15.0-1021-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb" ] }, { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1071-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "23", + "kernelrelease": "4.15.0-1021-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1072-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "23", + "kernelrelease": "4.15.0-1022-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1072_5.4.0-1072.78~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "25", + "kernelrelease": "4.15.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1073-aws_5.4.0-1073.78~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" ] }, { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "23", + "kernelrelease": "4.15.0-1023-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "23", + "kernelrelease": "4.15.0-1023-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" ] }, { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "24", + "kernelrelease": "4.15.0-1023-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" ] }, { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1076-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "24", + "kernelrelease": "4.15.0-1023-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1076-azure_5.4.0-1076.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1076_5.4.0-1076.79~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb" ] }, { - "kernelversion": "81~18.04.1", - "kernelrelease": "5.4.0-1078-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "26", + "kernelrelease": "4.15.0-1023-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" ] }, { - "kernelversion": "82~18.04.1", - "kernelrelease": "5.4.0-1079-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "25", + "kernelrelease": "4.15.0-1024-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1079_5.4.0-1079.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1079-azure_5.4.0-1079.82~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" ] }, { - "kernelversion": "122~18.04.1", - "kernelrelease": "5.4.0-108-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "26", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-generic_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-108-lowlatency_5.4.0-108.122~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-108_5.4.0-108.122~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb" ] }, { - "kernelversion": "88~18.04.1", - "kernelrelease": "5.4.0-1081-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "26", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" ] }, { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-1086-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelversion": "28", + "kernelrelease": "4.15.0-1025-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" ] }, { - "kernelversion": "124~18.04.1", - "kernelrelease": "5.4.0-110-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "27", + "kernelrelease": "4.15.0-1026-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb" ] }, { - "kernelversion": "126~18.04.1", - "kernelrelease": "5.4.0-112-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "26", + "kernelrelease": "4.15.0-1026-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-generic_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-112-lowlatency_5.4.0-112.126~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-112_5.4.0-112.126~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" ] }, { - "kernelversion": "137~18.04.1", - "kernelrelease": "5.4.0-121-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "31", + "kernelrelease": "4.15.0-1026-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" ] }, { - "kernelversion": "138~18.04.1", - "kernelrelease": "5.4.0-122-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "29", + "kernelrelease": "4.15.0-1026-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" ] }, { - "kernelversion": "102~18.04.1", - "kernelrelease": "5.4.0-91-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "27", + "kernelrelease": "4.15.0-1027-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" ] }, { - "kernelversion": "110~18.04.1", - "kernelrelease": "5.4.0-97-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "27", + "kernelrelease": "4.15.0-1027-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" ] }, { - "kernelversion": "112~18.04.1", - "kernelrelease": "5.4.0-99-hwe-5.4", - "target": "ubuntu-hwe-5.4", + "kernelversion": "28", + "kernelrelease": "4.15.0-1027-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "4.15.0-1006-oem", - "target": "ubuntu-oem", + "kernelversion": "30", + "kernelrelease": "4.15.0-1027-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "4.15.0-1008-gcp", - "target": "ubuntu-gcp", + "kernelversion": "29", + "kernelrelease": "4.15.0-1028-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "4.15.0-1008-kvm", - "target": "ubuntu-kvm", + "kernelversion": "29", + "kernelrelease": "4.15.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "4.15.0-1008-oem", - "target": "ubuntu-oem", + "kernelversion": "28", + "kernelrelease": "4.15.0-1028-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "4.15.0-1008-oracle", - "target": "ubuntu-oracle", + "kernelversion": "33", + "kernelrelease": "4.15.0-1028-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "4.15.0-1009-aws", + "kernelversion": "30", + "kernelrelease": "4.15.0-1029-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "4.15.0-1009-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "4.15.0-1009-gcp", + "kernelversion": "31", + "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "4.15.0-1009-oem", - "target": "ubuntu-oem", + "kernelversion": "29", + "kernelrelease": "4.15.0-1029-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "4.15.0-1009-oracle", + "kernelversion": "32", + "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" ] }, { - "kernelversion": "102", - "kernelrelease": "4.15.0-101", - "target": "ubuntu-generic", + "kernelversion": "30", + "kernelrelease": "4.15.0-1030-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "4.15.0-1010-kvm", - "target": "ubuntu-kvm", + "kernelversion": "35", + "kernelrelease": "4.15.0-1030-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "4.15.0-1010-aws", - "target": "ubuntu-aws", + "kernelversion": "33", + "kernelrelease": "4.15.0-1030-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "4.15.0-1010-gcp", - "target": "ubuntu-gcp", + "kernelversion": "33", + "kernelrelease": "4.15.0-1031-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "4.15.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelversion": "32", + "kernelrelease": "4.15.0-1031-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "4.15.0-1011-kvm", + "kernelversion": "31", + "kernelrelease": "4.15.0-1031-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws", + "kernelversion": "34", + "kernelrelease": "4.15.0-1031-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "4.15.0-1012-azure", - "target": "ubuntu-azure", + "kernelversion": "34", + "kernelrelease": "4.15.0-1032-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "4.15.0-1012-kvm", - "target": "ubuntu-kvm", + "kernelversion": "34", + "kernelrelease": "4.15.0-1032-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "4.15.0-1012-oem", - "target": "ubuntu-oem", + "kernelversion": "34", + "kernelrelease": "4.15.0-1032-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "4.15.0-1013-azure", + "kernelversion": "33", + "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "4.15.0-1013-oem", - "target": "ubuntu-oem", + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "4.15.0-1013-oracle", - "target": "ubuntu-oracle", + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "4.15.0-1014-gcp", + "kernelversion": "35", + "kernelrelease": "4.15.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", + "kernelversion": "38", + "kernelrelease": "4.15.0-1033-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "4.15.0-1014-oracle", + "kernelversion": "36", + "kernelrelease": "4.15.0-1033-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "4.15.0-1015-gcp", - "target": "ubuntu-gcp", + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "4.15.0-1015-oem", - "target": "ubuntu-oem", + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "4.15.0-1015-oracle", - "target": "ubuntu-oracle", + "kernelversion": "36", + "kernelrelease": "4.15.0-1034-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "4.15.0-1016-kvm", + "kernelversion": "34", + "kernelrelease": "4.15.0-1034-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "4.15.0-1016-aws", - "target": "ubuntu-aws", + "kernelversion": "39", + "kernelrelease": "4.15.0-1034-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "4.15.0-1017-aws", + "kernelversion": "37", + "kernelrelease": "4.15.0-1035-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "4.15.0-1017-kvm", - "target": "ubuntu-kvm", + "kernelversion": "36", + "kernelrelease": "4.15.0-1035-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "4.15.0-1017-gcp", - "target": "ubuntu-gcp", + "kernelversion": "35", + "kernelrelease": "4.15.0-1035-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "4.15.0-1017-oem", + "kernelversion": "40", + "kernelrelease": "4.15.0-1035-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "4.15.0-1017-oracle", + "kernelversion": "39", + "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "4.15.0-1018-azure", - "target": "ubuntu-azure", + "kernelversion": "38", + "kernelrelease": "4.15.0-1036-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "4.15.0-1018-gcp", + "kernelversion": "38", + "kernelrelease": "4.15.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "4.15.0-1018-oem", - "target": "ubuntu-oem", + "kernelversion": "38", + "kernelrelease": "4.15.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "4.15.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelversion": "36", + "kernelrelease": "4.15.0-1036-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "4.15.0-1019-kvm", - "target": "ubuntu-kvm", + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "4.15.0-1019-azure", - "target": "ubuntu-azure", + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "4.15.0-1019-aws", + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + ] + }, + { + "kernelversion": "39", + "kernelrelease": "4.15.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "4.15.0-1019-gcp", - "target": "ubuntu-gcp", + "kernelversion": "41", + "kernelrelease": "4.15.0-1037-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "4.15.0-1020-kvm", + "kernelversion": "38", + "kernelrelease": "4.15.0-1038-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "4.15.0-1020-aws", - "target": "ubuntu-aws", + "kernelversion": "43", + "kernelrelease": "4.15.0-1038-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-azure", - "target": "ubuntu-azure", + "kernelversion": "42", + "kernelrelease": "4.15.0-1038-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-aws", + "kernelversion": "41", + "kernelrelease": "4.15.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-kvm", + "kernelversion": "39", + "kernelrelease": "4.15.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "4.15.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelversion": "44", + "kernelrelease": "4.15.0-1039-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "4.15.0-1021-oem", - "target": "ubuntu-oem", + "kernelversion": "43", + "kernelrelease": "4.15.0-1039-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "4.15.0-1021-oracle", + "kernelversion": "43", + "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "4.15.0-1022-azure", - "target": "ubuntu-azure", + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "4.15.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "4.15.0-1023-aws", + "kernelversion": "42", + "kernelrelease": "4.15.0-1040-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "4.15.0-1023-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "4.15.0-1023-gcp", + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "4.15.0-1023-oracle", - "target": "ubuntu-oracle", + "kernelversion": "43", + "kernelrelease": "4.15.0-1041-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "4.15.0-1024-gcp", + "kernelversion": "45", + "kernelrelease": "4.15.0-1042-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelversion": "44", + "kernelrelease": "4.15.0-1042-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "4.15.0-1025-gcp", + "kernelversion": "44", + "kernelrelease": "4.15.0-1042-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "4.15.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelversion": "42", + "kernelrelease": "4.15.0-1042-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "4.15.0-1026-gcp", - "target": "ubuntu-gcp", + "kernelversion": "45", + "kernelrelease": "4.15.0-1043-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "4.15.0-1026-kvm", + "kernelversion": "43", + "kernelrelease": "4.15.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "4.15.0-1026-oem", + "kernelversion": "48", + "kernelrelease": "4.15.0-1043-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "4.15.0-1026-oracle", - "target": "ubuntu-oracle", + "kernelversion": "46", + "kernelrelease": "4.15.0-1044-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "4.15.0-1027-kvm", - "target": "ubuntu-kvm", + "kernelversion": "46", + "kernelrelease": "4.15.0-1044-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "4.15.0-1027-aws", + "kernelversion": "46", + "kernelrelease": "4.15.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "4.15.0-1027-gcp", + "kernelversion": "70", + "kernelrelease": "4.15.0-1044-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "4.15.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelversion": "44", + "kernelrelease": "4.15.0-1044-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", + "kernelversion": "47", + "kernelrelease": "4.15.0-1045-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelversion": "48", + "kernelrelease": "4.15.0-1045-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "4.15.0-1028-kvm", - "target": "ubuntu-kvm", + "kernelversion": "50", + "kernelrelease": "4.15.0-1045-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "4.15.0-1028-oem", - "target": "ubuntu-oem", + "kernelversion": "49", + "kernelrelease": "4.15.0-1045-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "4.15.0-1029-aws", - "target": "ubuntu-aws", + "kernelversion": "49", + "kernelrelease": "4.15.0-1045-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "4.15.0-1029-gcp", + "kernelversion": "49", + "kernelrelease": "4.15.0-1046-gke-4.15", + "target": "ubuntu-gke-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "4.15.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "4.15.0-1029-kvm", + "kernelversion": "46", + "kernelrelease": "4.15.0-1046-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "4.15.0-1029-oracle", - "target": "ubuntu-oracle", + "kernelversion": "49", + "kernelrelease": "4.15.0-1047-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "4.15.0-1030-kvm", + "kernelversion": "47", + "kernelrelease": "4.15.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "4.15.0-1030-oem", - "target": "ubuntu-oem", + "kernelversion": "51", + "kernelrelease": "4.15.0-1047-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "4.15.0-1030-oracle", + "kernelversion": "51", + "kernelrelease": "4.15.0-1047-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "4.15.0-1031-aws", + "kernelversion": "50", + "kernelrelease": "4.15.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "4.15.0-1031-azure", - "target": "ubuntu-azure", + "kernelversion": "51", + "kernelrelease": "4.15.0-1048-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "4.15.0-1031-kvm", + "kernelversion": "48", + "kernelrelease": "4.15.0-1048-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "4.15.0-1031-oracle", + "kernelversion": "52", + "kernelrelease": "4.15.0-1048-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gke-4.15", + "kernelversion": "52", + "kernelrelease": "4.15.0-1049-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "4.15.0-1032-azure", - "target": "ubuntu-azure", + "kernelversion": "52", + "kernelrelease": "4.15.0-1049-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-aws", + "kernelversion": "52", + "kernelrelease": "4.15.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gke-4.15", + "kernelversion": "53", + "kernelrelease": "4.15.0-1050-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gcp", + "kernelversion": "53", + "kernelrelease": "4.15.0-1050-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "4.15.0-1033-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "4.15.0-1033-oracle", - "target": "ubuntu-oracle", + "kernelversion": "50", + "kernelrelease": "4.15.0-1050-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-aws", - "target": "ubuntu-aws", + "kernelversion": "57", + "kernelrelease": "4.15.0-1050-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-gcp", - "target": "ubuntu-gcp", + "kernelversion": "54", + "kernelrelease": "4.15.0-1050-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "53", + "kernelrelease": "4.15.0-1051-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "4.15.0-1034-kvm", + "kernelversion": "51", + "kernelrelease": "4.15.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "4.15.0-1034-oem", - "target": "ubuntu-oem", + "kernelversion": "55", + "kernelrelease": "4.15.0-1051-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "4.15.0-1035-aws", + "kernelversion": "54", + "kernelrelease": "4.15.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "4.15.0-1035-azure", - "target": "ubuntu-azure", + "kernelversion": "55", + "kernelrelease": "4.15.0-1052-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "4.15.0-1035-kvm", + "kernelversion": "52", + "kernelrelease": "4.15.0-1052-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "4.15.0-1035-oem", - "target": "ubuntu-oem", + "kernelversion": "53", + "kernelrelease": "4.15.0-1053-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "4.15.0-1035-oracle", + "kernelversion": "57", + "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", + "kernelversion": "56", + "kernelrelease": "4.15.0-1054-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelversion": "58", + "kernelrelease": "4.15.0-1054-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gke-4.15", + "kernelversion": "58", + "kernelrelease": "4.15.0-1055-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1036-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "58", + "kernelrelease": "4.15.0-1056-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gcp", - "target": "ubuntu-gcp", + "kernelversion": "57", + "kernelrelease": "4.15.0-1056-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", + "kernelversion": "65", + "kernelrelease": "4.15.0-1056-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-aws", + "kernelversion": "59", + "kernelrelease": "4.15.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "4.15.0-1037-oracle", - "target": "ubuntu-oracle", + "kernelversion": "60", + "kernelrelease": "4.15.0-1057-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "4.15.0-1038-kvm", - "target": "ubuntu-kvm", + "kernelversion": "66", + "kernelrelease": "4.15.0-1057-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "4.15.0-1038-oem", - "target": "ubuntu-oem", + "kernelversion": "62", + "kernelrelease": "4.15.0-1057-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "4.15.0-1038-oracle", + "kernelversion": "62", + "kernelrelease": "4.15.0-1057-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "4.15.0-1039-aws", + "kernelversion": "60", + "kernelrelease": "4.15.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "4.15.0-1039-kvm", - "target": "ubuntu-kvm", + "kernelversion": "61", + "kernelrelease": "4.15.0-1058-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "4.15.0-1039-oem", - "target": "ubuntu-oem", + "kernelversion": "59", + "kernelrelease": "4.15.0-1058-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "4.15.0-1039-oracle", + "kernelversion": "64", + "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1039-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gke-4.15", + "kernelversion": "62", + "kernelrelease": "4.15.0-1059-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gcp", - "target": "ubuntu-gcp", + "kernelversion": "60", + "kernelrelease": "4.15.0-1059-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws", + "kernelversion": "68", + "kernelrelease": "4.15.0-1059-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gcp", - "target": "ubuntu-gcp", + "kernelversion": "107", + "kernelrelease": "4.15.0-106-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "62", + "kernelrelease": "4.15.0-1060-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws", + "kernelversion": "61", + "kernelrelease": "4.15.0-1060-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", + "kernelversion": "67", + "kernelrelease": "4.15.0-1061-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "68", + "kernelrelease": "4.15.0-1062-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", + "kernelversion": "67", + "kernelrelease": "4.15.0-1063-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "4.15.0-1042-kvm", - "target": "ubuntu-kvm", + "kernelversion": "66", + "kernelrelease": "4.15.0-1063-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "4.15.0-1043-aws", - "target": "ubuntu-aws", + "kernelversion": "72", + "kernelrelease": "4.15.0-1063-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "4.15.0-1043-kvm", - "target": "ubuntu-kvm", + "kernelversion": "70", + "kernelrelease": "4.15.0-1063-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" ] }, { - "kernelversion": "48", - "kernelrelease": "4.15.0-1043-oem", - "target": "ubuntu-oem", + "kernelversion": "67", + "kernelrelease": "4.15.0-1064-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", + "kernelversion": "73", + "kernelrelease": "4.15.0-1064-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "71", + "kernelrelease": "4.15.0-1064-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", + "kernelversion": "69", + "kernelrelease": "4.15.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" ] }, { - "kernelversion": "70", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", + "kernelversion": "75", + "kernelrelease": "4.15.0-1065-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "4.15.0-1044-kvm", - "target": "ubuntu-kvm", + "kernelversion": "73", + "kernelrelease": "4.15.0-1065-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "4.15.0-1045-aws", + "kernelversion": "70", + "kernelrelease": "4.15.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" ] }, { - "kernelversion": "48", - "kernelrelease": "4.15.0-1045-gke-4.15", + "kernelversion": "69", + "kernelrelease": "4.15.0-1066-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "4.15.0-1045-oem", + "kernelversion": "76", + "kernelrelease": "4.15.0-1066-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "4.15.0-1045-oracle", + "kernelversion": "74", + "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "4.15.0-1045-azure", - "target": "ubuntu-azure", + "kernelversion": "71", + "kernelrelease": "4.15.0-1067-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "4.15.0-1046-gke-4.15", + "kernelversion": "70", + "kernelrelease": "4.15.0-1067-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "4.15.0-1046-gcp", - "target": "ubuntu-gcp", + "kernelversion": "68", + "kernelrelease": "4.15.0-1067-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "4.15.0-1046-kvm", - "target": "ubuntu-kvm", + "kernelversion": "77", + "kernelrelease": "4.15.0-1067-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "4.15.0-1047-aws", - "target": "ubuntu-aws", + "kernelversion": "75", + "kernelrelease": "4.15.0-1067-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "4.15.0-1047-kvm", - "target": "ubuntu-kvm", + "kernelversion": "76", + "kernelrelease": "4.15.0-1068-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb" ] }, { - "kernelversion": "51", - "kernelrelease": "4.15.0-1047-oracle", - "target": "ubuntu-oracle", + "kernelversion": "72", + "kernelrelease": "4.15.0-1069-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb" ] }, { - "kernelversion": "51", - "kernelrelease": "4.15.0-1047-azure", - "target": "ubuntu-azure", + "kernelversion": "70", + "kernelrelease": "4.15.0-1069-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "4.15.0-1048-aws", - "target": "ubuntu-aws", + "kernelversion": "79", + "kernelrelease": "4.15.0-1069-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" ] }, { - "kernelversion": "51", - "kernelrelease": "4.15.0-1048-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "77", + "kernelrelease": "4.15.0-1069-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb" ] }, { - "kernelversion": "48", - "kernelrelease": "4.15.0-1048-kvm", - "target": "ubuntu-kvm", + "kernelversion": "73", + "kernelrelease": "4.15.0-1070-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "4.15.0-1048-oracle", + "kernelversion": "78", + "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "4.15.0-1049-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "72", + "kernelrelease": "4.15.0-1071-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "4.15.0-1049-gcp", - "target": "ubuntu-gcp", + "kernelversion": "79", + "kernelrelease": "4.15.0-1071-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "4.15.0-1050-aws", - "target": "ubuntu-aws", + "kernelversion": "76", + "kernelrelease": "4.15.0-1072-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb" ] }, { - "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "73", + "kernelrelease": "4.15.0-1072-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" ] }, { - "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gcp", - "target": "ubuntu-gcp", + "kernelversion": "80", + "kernelrelease": "4.15.0-1072-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "4.15.0-1050-kvm", - "target": "ubuntu-kvm", + "kernelversion": "77", + "kernelrelease": "4.15.0-1073-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "4.15.0-1050-oem", - "target": "ubuntu-oem", + "kernelversion": "78", + "kernelrelease": "4.15.0-1073-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" ] }, { - "kernelversion": "54", - "kernelrelease": "4.15.0-1050-oracle", - "target": "ubuntu-oracle", + "kernelversion": "83", + "kernelrelease": "4.15.0-1073-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" ] }, { - "kernelversion": "53", - "kernelrelease": "4.15.0-1051-aws", - "target": "ubuntu-aws", + "kernelversion": "75", + "kernelrelease": "4.15.0-1074-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" ] }, { - "kernelversion": "51", - "kernelrelease": "4.15.0-1051-kvm", + "kernelversion": "76", + "kernelrelease": "4.15.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" ] }, { - "kernelversion": "55", - "kernelrelease": "4.15.0-1051-oracle", + "kernelversion": "83", + "kernelrelease": "4.15.0-1075-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" ] }, { - "kernelversion": "54", - "kernelrelease": "4.15.0-1052-aws", + "kernelversion": "80", + "kernelrelease": "4.15.0-1076-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" ] }, { - "kernelversion": "55", - "kernelrelease": "4.15.0-1052-gke-4.15", + "kernelversion": "81", + "kernelrelease": "4.15.0-1076-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "4.15.0-1052-kvm", - "target": "ubuntu-kvm", + "kernelversion": "86", + "kernelrelease": "4.15.0-1076-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.15.0-1053-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "4.15.0-1053-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" ] }, { - "kernelversion": "56", - "kernelrelease": "4.15.0-1054-aws", + "kernelversion": "81", + "kernelrelease": "4.15.0-1077-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "4.15.0-1054-oracle", - "target": "ubuntu-oracle", + "kernelversion": "82", + "kernelrelease": "4.15.0-1077-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "4.15.0-1055-gke-4.15", + "kernelversion": "82", + "kernelrelease": "4.15.0-1077-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "4.15.0-1056-aws", - "target": "ubuntu-aws", + "kernelversion": "79", + "kernelrelease": "4.15.0-1077-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "4.15.0-1056-kvm", - "target": "ubuntu-kvm", + "kernelversion": "83", + "kernelrelease": "4.15.0-1078-gke-4.15", + "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb" ] }, { - "kernelversion": "65", - "kernelrelease": "4.15.0-1056-oem", - "target": "ubuntu-oem", + "kernelversion": "86", + "kernelrelease": "4.15.0-1078-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "4.15.0-1057-aws", + "kernelversion": "83", + "kernelrelease": "4.15.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "4.15.0-1057-gke-4.15", + "kernelversion": "84", + "kernelrelease": "4.15.0-1079-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "4.15.0-1057-oem", + "kernelversion": "89", + "kernelrelease": "4.15.0-1079-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "4.15.0-1057-azure", - "target": "ubuntu-azure", + "kernelversion": "87", + "kernelrelease": "4.15.0-1079-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "4.15.0-1057-oracle", - "target": "ubuntu-oracle", + "kernelversion": "109", + "kernelrelease": "4.15.0-108-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "4.15.0-1058-aws", + "kernelversion": "84", + "kernelrelease": "4.15.0-1080-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "4.15.0-1058-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "90", + "kernelrelease": "4.15.0-1080-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "4.15.0-1058-kvm", + "kernelversion": "88", + "kernelrelease": "4.15.0-1080-oracle", + "target": "ubuntu-oracle", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" + ] + }, + { + "kernelversion": "83", + "kernelrelease": "4.15.0-1081-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" ] }, { - "kernelversion": "64", - "kernelrelease": "4.15.0-1058-oracle", - "target": "ubuntu-oracle", + "kernelversion": "91", + "kernelrelease": "4.15.0-1081-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "4.15.0-1059-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "89", + "kernelrelease": "4.15.0-1081-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "4.15.0-1059-kvm", - "target": "ubuntu-kvm", + "kernelversion": "86", + "kernelrelease": "4.15.0-1082-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "4.15.0-1059-oem", - "target": "ubuntu-oem", + "kernelversion": "92", + "kernelrelease": "4.15.0-1082-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" ] }, { - "kernelversion": "107", - "kernelrelease": "4.15.0-106", - "target": "ubuntu-generic", + "kernelversion": "84", + "kernelrelease": "4.15.0-1082-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "4.15.0-1060-aws", - "target": "ubuntu-aws", + "kernelversion": "90", + "kernelrelease": "4.15.0-1082-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "4.15.0-1060-kvm", - "target": "ubuntu-kvm", + "kernelversion": "87", + "kernelrelease": "4.15.0-1083-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "4.15.0-1061-oracle", - "target": "ubuntu-oracle", + "kernelversion": "93", + "kernelrelease": "4.15.0-1083-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "4.15.0-1062-oracle", + "kernelversion": "91", + "kernelrelease": "4.15.0-1083-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "4.15.0-1063-aws", - "target": "ubuntu-aws", + "kernelversion": "86", + "kernelrelease": "4.15.0-1084-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "4.15.0-1063-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "92", + "kernelrelease": "4.15.0-1084-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "4.15.0-1063-oem", - "target": "ubuntu-oem", + "kernelversion": "87", + "kernelrelease": "4.15.0-1085-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" ] }, { - "kernelversion": "70", - "kernelrelease": "4.15.0-1063-oracle", + "kernelversion": "93", + "kernelrelease": "4.15.0-1085-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "4.15.0-1064-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "91", + "kernelrelease": "4.15.0-1086-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "4.15.0-1064-oem", - "target": "ubuntu-oem", + "kernelversion": "88", + "kernelrelease": "4.15.0-1086-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb" ] }, { - "kernelversion": "71", - "kernelrelease": "4.15.0-1064-oracle", + "kernelversion": "94", + "kernelrelease": "4.15.0-1086-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "4.15.0-1065-aws", + "kernelversion": "92", + "kernelrelease": "4.15.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" ] }, { - "kernelversion": "75", - "kernelrelease": "4.15.0-1065-oem", - "target": "ubuntu-oem", + "kernelversion": "89", + "kernelrelease": "4.15.0-1087-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "4.15.0-1065-oracle", - "target": "ubuntu-oracle", + "kernelversion": "97", + "kernelrelease": "4.15.0-1087-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb" ] }, { - "kernelversion": "70", - "kernelrelease": "4.15.0-1066-aws", - "target": "ubuntu-aws", + "kernelversion": "90", + "kernelrelease": "4.15.0-1088-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "4.15.0-1066-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "99", + "kernelrelease": "4.15.0-1089-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "4.15.0-1066-oem", - "target": "ubuntu-oem", + "kernelversion": "91", + "kernelrelease": "4.15.0-1089-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" ] }, { - "kernelversion": "74", - "kernelrelease": "4.15.0-1066-oracle", + "kernelversion": "98", + "kernelrelease": "4.15.0-1089-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" ] }, { - "kernelversion": "71", - "kernelrelease": "4.15.0-1067-aws", - "target": "ubuntu-aws", + "kernelversion": "110", + "kernelrelease": "4.15.0-109-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb" ] }, { - "kernelversion": "70", - "kernelrelease": "4.15.0-1067-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "95", + "kernelrelease": "4.15.0-1090-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "4.15.0-1067-kvm", + "kernelversion": "92", + "kernelrelease": "4.15.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "4.15.0-1067-oem", + "kernelversion": "100", + "kernelrelease": "4.15.0-1090-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" ] }, { - "kernelversion": "75", - "kernelrelease": "4.15.0-1067-oracle", + "kernelversion": "99", + "kernelrelease": "4.15.0-1090-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "4.15.0-1068-oracle", - "target": "ubuntu-oracle", + "kernelversion": "96", + "kernelrelease": "4.15.0-1091-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "4.15.0-1069-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "101", + "kernelrelease": "4.15.0-1091-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" ] }, { - "kernelversion": "70", - "kernelrelease": "4.15.0-1069-kvm", - "target": "ubuntu-kvm", + "kernelversion": "101", + "kernelrelease": "4.15.0-1091-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "4.15.0-1069-oem", - "target": "ubuntu-oem", + "kernelversion": "93", + "kernelrelease": "4.15.0-1091-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "4.15.0-1069-oracle", + "kernelversion": "100", + "kernelrelease": "4.15.0-1091-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "4.15.0-1070-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "98", + "kernelrelease": "4.15.0-1092-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "4.15.0-1070-oracle", - "target": "ubuntu-oracle", + "kernelversion": "102", + "kernelrelease": "4.15.0-1092-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "4.15.0-1071-kvm", + "kernelversion": "94", + "kernelrelease": "4.15.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "4.15.0-1071-oracle", + "kernelversion": "101", + "kernelrelease": "4.15.0-1092-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "4.15.0-1072-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "99", + "kernelrelease": "4.15.0-1093-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "4.15.0-1072-kvm", - "target": "ubuntu-kvm", + "kernelversion": "103", + "kernelrelease": "4.15.0-1093-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb" ] }, { - "kernelversion": "80", - "kernelrelease": "4.15.0-1072-oracle", - "target": "ubuntu-oracle", + "kernelversion": "103", + "kernelrelease": "4.15.0-1093-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "4.15.0-1073-aws", + "kernelversion": "106", + "kernelrelease": "4.15.0-1093-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb" + ] + }, + { + "kernelversion": "101", + "kernelrelease": "4.15.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "4.15.0-1073-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "107", + "kernelrelease": "4.15.0-1094-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "4.15.0-1073-oem", + "kernelversion": "96", + "kernelrelease": "4.15.0-1094-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb" + ] + }, + { + "kernelversion": "104", + "kernelrelease": "4.15.0-1094-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb" ] }, { - "kernelversion": "75", - "kernelrelease": "4.15.0-1074-kvm", - "target": "ubuntu-kvm", + "kernelversion": "102", + "kernelrelease": "4.15.0-1095-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "4.15.0-1075-kvm", - "target": "ubuntu-kvm", + "kernelversion": "105", + "kernelrelease": "4.15.0-1095-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "4.15.0-1075-oracle", + "kernelversion": "108", + "kernelrelease": "4.15.0-1095-gcp-4.15", + "target": "ubuntu-gcp-4.15", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb" + ] + }, + { + "kernelversion": "104", + "kernelrelease": "4.15.0-1095-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" ] }, { - "kernelversion": "80", - "kernelrelease": "4.15.0-1076-aws", + "kernelversion": "103", + "kernelrelease": "4.15.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" ] }, { - "kernelversion": "81", - "kernelrelease": "4.15.0-1076-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "106", + "kernelrelease": "4.15.0-1096-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" ] }, { - "kernelversion": "86", - "kernelrelease": "4.15.0-1076-oem", + "kernelversion": "106", + "kernelrelease": "4.15.0-1096-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" ] }, { - "kernelversion": "81", - "kernelrelease": "4.15.0-1077-aws", - "target": "ubuntu-aws", + "kernelversion": "109", + "kernelrelease": "4.15.0-1096-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" ] }, { - "kernelversion": "82", - "kernelrelease": "4.15.0-1077-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "104", + "kernelrelease": "4.15.0-1097-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" ] }, { - "kernelversion": "82", - "kernelrelease": "4.15.0-1077-azure", - "target": "ubuntu-azure", + "kernelversion": "110", + "kernelrelease": "4.15.0-1097-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "4.15.0-1077-kvm", + "kernelversion": "99", + "kernelrelease": "4.15.0-1097-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "4.15.0-1078-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "107", + "kernelrelease": "4.15.0-1097-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb" ] }, { - "kernelversion": "86", - "kernelrelease": "4.15.0-1078-oracle", - "target": "ubuntu-oracle", + "kernelversion": "105", + "kernelrelease": "4.15.0-1098-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "4.15.0-1079-aws", - "target": "ubuntu-aws", + "kernelversion": "111", + "kernelrelease": "4.15.0-1098-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "4.15.0-1079-gke-4.15", - "target": "ubuntu-gke-4.15", + "kernelversion": "100", + "kernelrelease": "4.15.0-1098-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" ] }, { - "kernelversion": "89", - "kernelrelease": "4.15.0-1079-oem", - "target": "ubuntu-oem", + "kernelversion": "108", + "kernelrelease": "4.15.0-1098-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb" ] }, { - "kernelversion": "87", - "kernelrelease": "4.15.0-1079-oracle", - "target": "ubuntu-oracle", + "kernelversion": "106", + "kernelrelease": "4.15.0-1099-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" ] }, { - "kernelversion": "109", - "kernelrelease": "4.15.0-108", - "target": "ubuntu-generic", + "kernelversion": "110", + "kernelrelease": "4.15.0-1099-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "4.15.0-1080-aws", - "target": "ubuntu-aws", + "kernelversion": "112", + "kernelrelease": "4.15.0-1099-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb" ] }, { - "kernelversion": "90", - "kernelrelease": "4.15.0-1080-oem", - "target": "ubuntu-oem", + "kernelversion": "101", + "kernelrelease": "4.15.0-1099-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb" ] }, { - "kernelversion": "88", - "kernelrelease": "4.15.0-1080-oracle", - "target": "ubuntu-oracle", + "kernelversion": "109", + "kernelrelease": "4.15.0-1099-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "4.15.0-1081-kvm", - "target": "ubuntu-kvm", + "kernelversion": "113", + "kernelrelease": "4.15.0-1100-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" ] }, { - "kernelversion": "91", - "kernelrelease": "4.15.0-1081-oem", - "target": "ubuntu-oem", + "kernelversion": "102", + "kernelrelease": "4.15.0-1100-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" ] }, { - "kernelversion": "89", - "kernelrelease": "4.15.0-1081-oracle", - "target": "ubuntu-oracle", + "kernelversion": "110", + "kernelrelease": "4.15.0-1100-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" ] }, { - "kernelversion": "86", - "kernelrelease": "4.15.0-1082-aws", + "kernelversion": "108", + "kernelrelease": "4.15.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" ] }, { - "kernelversion": "92", - "kernelrelease": "4.15.0-1082-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "103", + "kernelrelease": "4.15.0-1101-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb" ] }, { - "kernelversion": "84", - "kernelrelease": "4.15.0-1082-kvm", - "target": "ubuntu-kvm", + "kernelversion": "112", + "kernelrelease": "4.15.0-1101-oem", + "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" ] }, { - "kernelversion": "90", - "kernelrelease": "4.15.0-1082-oracle", + "kernelversion": "112", + "kernelrelease": "4.15.0-1101-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb" ] }, { - "kernelversion": "87", - "kernelrelease": "4.15.0-1083-aws", + "kernelversion": "109", + "kernelrelease": "4.15.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" ] }, { - "kernelversion": "93", - "kernelrelease": "4.15.0-1083-azure-4.15", + "kernelversion": "113", + "kernelrelease": "4.15.0-1102-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" ] }, { - "kernelversion": "91", - "kernelrelease": "4.15.0-1083-oracle", + "kernelversion": "113", + "kernelrelease": "4.15.0-1102-oem", + "target": "ubuntu-oem", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" + ] + }, + { + "kernelversion": "113", + "kernelrelease": "4.15.0-1102-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1102_4.15.0-1102.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1102-oracle_4.15.0-1102.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1102-oracle_4.15.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1102_4.15.0-1102.113_all.deb" ] }, { - "kernelversion": "86", - "kernelrelease": "4.15.0-1084-kvm", + "kernelversion": "104", + "kernelrelease": "4.15.0-1102-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb" ] }, { - "kernelversion": "92", - "kernelrelease": "4.15.0-1084-oracle", - "target": "ubuntu-oracle", + "kernelversion": "110", + "kernelrelease": "4.15.0-1103-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" ] }, { - "kernelversion": "87", - "kernelrelease": "4.15.0-1085-kvm", - "target": "ubuntu-kvm", + "kernelversion": "114", + "kernelrelease": "4.15.0-1103-oem", + "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { - "kernelversion": "93", - "kernelrelease": "4.15.0-1085-oracle", - "target": "ubuntu-oracle", + "kernelversion": "114", + "kernelrelease": "4.15.0-1103-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" ] }, { - "kernelversion": "91", - "kernelrelease": "4.15.0-1086-aws", - "target": "ubuntu-aws", + "kernelversion": "116", + "kernelrelease": "4.15.0-1103-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" ] }, { - "kernelversion": "88", - "kernelrelease": "4.15.0-1086-kvm", + "kernelversion": "105", + "kernelrelease": "4.15.0-1103-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" ] }, { - "kernelversion": "94", - "kernelrelease": "4.15.0-1086-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.15.0-1087-aws", - "target": "ubuntu-aws", + "kernelversion": "116", + "kernelrelease": "4.15.0-1104-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" ] }, { - "kernelversion": "89", - "kernelrelease": "4.15.0-1087-kvm", + "kernelversion": "107", + "kernelrelease": "4.15.0-1105-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "4.15.0-1087-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" ] }, { - "kernelversion": "90", - "kernelrelease": "4.15.0-1088-kvm", - "target": "ubuntu-kvm", + "kernelversion": "113", + "kernelrelease": "4.15.0-1106-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" ] }, { - "kernelversion": "99", - "kernelrelease": "4.15.0-1089-azure-4.15", + "kernelversion": "118", + "kernelrelease": "4.15.0-1106-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.15.0-1089-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb" ] }, { - "kernelversion": "98", - "kernelrelease": "4.15.0-1089-oracle", - "target": "ubuntu-oracle", + "kernelversion": "120", + "kernelrelease": "4.15.0-1106-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" ] }, { - "kernelversion": "110", - "kernelrelease": "4.15.0-109", - "target": "ubuntu-generic", + "kernelversion": "108", + "kernelrelease": "4.15.0-1106-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb" ] }, { - "kernelversion": "95", - "kernelrelease": "4.15.0-1090-aws", - "target": "ubuntu-aws", + "kernelversion": "121", + "kernelrelease": "4.15.0-1107-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" ] }, { - "kernelversion": "92", - "kernelrelease": "4.15.0-1090-kvm", + "kernelversion": "109", + "kernelrelease": "4.15.0-1107-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" ] }, { - "kernelversion": "100", - "kernelrelease": "4.15.0-1090-oem", - "target": "ubuntu-oem", + "kernelversion": "120", + "kernelrelease": "4.15.0-1108-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" ] }, { - "kernelversion": "99", - "kernelrelease": "4.15.0-1090-oracle", - "target": "ubuntu-oracle", + "kernelversion": "122", + "kernelrelease": "4.15.0-1108-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" ] }, { - "kernelversion": "96", - "kernelrelease": "4.15.0-1091-aws", + "kernelversion": "116", + "kernelrelease": "4.15.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" ] }, { - "kernelversion": "101", - "kernelrelease": "4.15.0-1091-azure-4.15", + "kernelversion": "121", + "kernelrelease": "4.15.0-1109-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" ] }, { - "kernelversion": "101", - "kernelrelease": "4.15.0-1091-oem", - "target": "ubuntu-oem", + "kernelversion": "123", + "kernelrelease": "4.15.0-1109-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" ] }, { - "kernelversion": "93", - "kernelrelease": "4.15.0-1091-kvm", + "kernelversion": "112", + "kernelrelease": "4.15.0-1109-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" ] }, { - "kernelversion": "100", - "kernelrelease": "4.15.0-1091-oracle", - "target": "ubuntu-oracle", + "kernelversion": "112", + "kernelrelease": "4.15.0-111-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" ] }, { - "kernelversion": "98", - "kernelrelease": "4.15.0-1092-aws", + "kernelversion": "117", + "kernelrelease": "4.15.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" ] }, { - "kernelversion": "102", - "kernelrelease": "4.15.0-1092-azure-4.15", + "kernelversion": "122", + "kernelrelease": "4.15.0-1110-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" ] }, { - "kernelversion": "94", - "kernelrelease": "4.15.0-1092-kvm", - "target": "ubuntu-kvm", + "kernelversion": "124", + "kernelrelease": "4.15.0-1110-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" ] }, { - "kernelversion": "101", - "kernelrelease": "4.15.0-1092-oracle", - "target": "ubuntu-oracle", + "kernelversion": "113", + "kernelrelease": "4.15.0-1110-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb" ] }, { - "kernelversion": "99", - "kernelrelease": "4.15.0-1093-aws", + "kernelversion": "118", + "kernelrelease": "4.15.0-1111-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" ] }, { - "kernelversion": "103", - "kernelrelease": "4.15.0-1093-azure-4.15", + "kernelversion": "123", + "kernelrelease": "4.15.0-1111-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb" ] }, { - "kernelversion": "103", - "kernelrelease": "4.15.0-1093-oem", - "target": "ubuntu-oem", + "kernelversion": "125", + "kernelrelease": "4.15.0-1111-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb" ] }, { - "kernelversion": "106", - "kernelrelease": "4.15.0-1093-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "119", + "kernelrelease": "4.15.0-1112-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" ] }, { - "kernelversion": "101", - "kernelrelease": "4.15.0-1094-aws", - "target": "ubuntu-aws", + "kernelversion": "125", + "kernelrelease": "4.15.0-1112-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb" ] }, { - "kernelversion": "107", - "kernelrelease": "4.15.0-1094-gcp-4.15", + "kernelversion": "126", + "kernelrelease": "4.15.0-1112-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" ] }, { - "kernelversion": "96", - "kernelrelease": "4.15.0-1094-kvm", + "kernelversion": "115", + "kernelrelease": "4.15.0-1112-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" ] }, { - "kernelversion": "104", - "kernelrelease": "4.15.0-1094-oem", - "target": "ubuntu-oem", + "kernelversion": "126", + "kernelrelease": "4.15.0-1113-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" ] }, { - "kernelversion": "102", - "kernelrelease": "4.15.0-1095-aws", + "kernelversion": "116", + "kernelrelease": "4.15.0-1113-kvm", + "target": "ubuntu-kvm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" + ] + }, + { + "kernelversion": "121", + "kernelrelease": "4.15.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb" ] }, { - "kernelversion": "105", - "kernelrelease": "4.15.0-1095-azure-4.15", + "kernelversion": "127", + "kernelrelease": "4.15.0-1114-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" ] }, { - "kernelversion": "108", - "kernelrelease": "4.15.0-1095-gcp-4.15", + "kernelversion": "128", + "kernelrelease": "4.15.0-1114-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb" ] }, { - "kernelversion": "104", - "kernelrelease": "4.15.0-1095-oracle", - "target": "ubuntu-oracle", + "kernelversion": "117", + "kernelrelease": "4.15.0-1114-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" ] }, { - "kernelversion": "103", - "kernelrelease": "4.15.0-1096-aws", + "kernelversion": "122", + "kernelrelease": "4.15.0-1115-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" ] }, { - "kernelversion": "106", - "kernelrelease": "4.15.0-1096-azure-4.15", + "kernelversion": "128", + "kernelrelease": "4.15.0-1115-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.15.0-1096-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" ] }, { - "kernelversion": "109", - "kernelrelease": "4.15.0-1096-gcp-4.15", + "kernelversion": "129", + "kernelrelease": "4.15.0-1115-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb" ] }, { - "kernelversion": "104", - "kernelrelease": "4.15.0-1097-aws", + "kernelversion": "123", + "kernelrelease": "4.15.0-1116-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" ] }, { - "kernelversion": "110", - "kernelrelease": "4.15.0-1097-gcp-4.15", + "kernelversion": "130", + "kernelrelease": "4.15.0-1116-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" ] }, { - "kernelversion": "99", - "kernelrelease": "4.15.0-1097-kvm", + "kernelversion": "119", + "kernelrelease": "4.15.0-1116-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" ] }, { - "kernelversion": "107", - "kernelrelease": "4.15.0-1097-oem", - "target": "ubuntu-oem", + "kernelversion": "125", + "kernelrelease": "4.15.0-1118-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" ] }, { - "kernelversion": "105", - "kernelrelease": "4.15.0-1098-aws", - "target": "ubuntu-aws", + "kernelversion": "131", + "kernelrelease": "4.15.0-1118-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" ] }, { - "kernelversion": "111", - "kernelrelease": "4.15.0-1098-gcp-4.15", + "kernelversion": "132", + "kernelrelease": "4.15.0-1118-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb" ] }, { - "kernelversion": "100", - "kernelrelease": "4.15.0-1098-kvm", - "target": "ubuntu-kvm", + "kernelversion": "127", + "kernelrelease": "4.15.0-1119-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" ] }, { - "kernelversion": "108", - "kernelrelease": "4.15.0-1098-oracle", - "target": "ubuntu-oracle", + "kernelversion": "133", + "kernelrelease": "4.15.0-1119-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" ] }, { - "kernelversion": "106", - "kernelrelease": "4.15.0-1099-aws", - "target": "ubuntu-aws", + "kernelversion": "123", + "kernelrelease": "4.15.0-1119-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb" ] }, { - "kernelversion": "110", - "kernelrelease": "4.15.0-1099-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "113", + "kernelrelease": "4.15.0-112-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" ] }, { - "kernelversion": "112", - "kernelrelease": "4.15.0-1099-gcp-4.15", + "kernelversion": "134", + "kernelrelease": "4.15.0-1120-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" ] }, { - "kernelversion": "101", - "kernelrelease": "4.15.0-1099-kvm", - "target": "ubuntu-kvm", + "kernelversion": "129", + "kernelrelease": "4.15.0-1121-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" ] }, { - "kernelversion": "109", - "kernelrelease": "4.15.0-1099-oem", - "target": "ubuntu-oem", + "kernelversion": "134", + "kernelrelease": "4.15.0-1121-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" ] }, { - "kernelversion": "113", - "kernelrelease": "4.15.0-1100-gcp-4.15", + "kernelversion": "135", + "kernelrelease": "4.15.0-1121-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.15.0-1100-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" ] }, { - "kernelversion": "110", - "kernelrelease": "4.15.0-1100-oem", - "target": "ubuntu-oem", + "kernelversion": "135", + "kernelrelease": "4.15.0-1122-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb" ] }, { - "kernelversion": "108", - "kernelrelease": "4.15.0-1101-aws", - "target": "ubuntu-aws", + "kernelversion": "136", + "kernelrelease": "4.15.0-1122-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" ] }, { - "kernelversion": "103", - "kernelrelease": "4.15.0-1101-kvm", + "kernelversion": "127", + "kernelrelease": "4.15.0-1122-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-1101-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb" ] }, { - "kernelversion": "112", - "kernelrelease": "4.15.0-1101-oracle", - "target": "ubuntu-oracle", + "kernelversion": "132", + "kernelrelease": "4.15.0-1123-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" ] }, { - "kernelversion": "109", - "kernelrelease": "4.15.0-1102-aws", - "target": "ubuntu-aws", + "kernelversion": "136", + "kernelrelease": "4.15.0-1123-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" ] }, { - "kernelversion": "104", - "kernelrelease": "4.15.0-1102-kvm", + "kernelversion": "128", + "kernelrelease": "4.15.0-1123-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1123-kvm_4.15.0-1123.128_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1123_4.15.0-1123.128_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1123_4.15.0-1123.128_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1123-kvm_4.15.0-1123.128_amd64.deb" ] }, { - "kernelversion": "110", - "kernelrelease": "4.15.0-1103-aws", + "kernelversion": "133", + "kernelrelease": "4.15.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" ] }, { - "kernelversion": "114", - "kernelrelease": "4.15.0-1103-azure-4.15", + "kernelversion": "137", + "kernelrelease": "4.15.0-1124-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb" - ] - }, - { - "kernelversion": "114", - "kernelrelease": "4.15.0-1103-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb" ] }, { - "kernelversion": "116", - "kernelrelease": "4.15.0-1103-gcp-4.15", + "kernelversion": "138", + "kernelrelease": "4.15.0-1124-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb" ] }, { - "kernelversion": "116", - "kernelrelease": "4.15.0-1104-azure-4.15", + "kernelversion": "138", + "kernelrelease": "4.15.0-1125-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" ] }, { - "kernelversion": "107", - "kernelrelease": "4.15.0-1105-kvm", + "kernelversion": "130", + "kernelrelease": "4.15.0-1125-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1125-kvm_4.15.0-1125.130_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1125_4.15.0-1125.130_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1125_4.15.0-1125.130_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1125-kvm_4.15.0-1125.130_amd64.deb" ] }, { - "kernelversion": "113", - "kernelrelease": "4.15.0-1106-aws", + "kernelversion": "135", + "kernelrelease": "4.15.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" ] }, { - "kernelversion": "118", - "kernelrelease": "4.15.0-1106-azure-4.15", + "kernelversion": "139", + "kernelrelease": "4.15.0-1126-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb" ] }, { - "kernelversion": "120", - "kernelrelease": "4.15.0-1106-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "136", + "kernelrelease": "4.15.0-1127-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" ] }, { - "kernelversion": "108", - "kernelrelease": "4.15.0-1106-kvm", - "target": "ubuntu-kvm", + "kernelversion": "140", + "kernelrelease": "4.15.0-1127-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" ] }, { - "kernelversion": "121", - "kernelrelease": "4.15.0-1107-gcp-4.15", + "kernelversion": "142", + "kernelrelease": "4.15.0-1127-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb" ] }, { - "kernelversion": "120", - "kernelrelease": "4.15.0-1108-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "137", + "kernelrelease": "4.15.0-1128-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb" ] }, { - "kernelversion": "122", - "kernelrelease": "4.15.0-1108-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "142", + "kernelrelease": "4.15.0-1129-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" ] }, { - "kernelversion": "116", - "kernelrelease": "4.15.0-1109-aws", + "kernelversion": "139", + "kernelrelease": "4.15.0-1130-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb" ] }, { - "kernelversion": "121", - "kernelrelease": "4.15.0-1109-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "146", + "kernelrelease": "4.15.0-1130-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb" ] }, { - "kernelversion": "123", - "kernelrelease": "4.15.0-1109-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "144", + "kernelrelease": "4.15.0-1131-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb" ] }, { - "kernelversion": "112", - "kernelrelease": "4.15.0-1109-kvm", - "target": "ubuntu-kvm", + "kernelversion": "147", + "kernelrelease": "4.15.0-1131-gcp-4.15", + "target": "ubuntu-gcp-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1131-gcp_4.15.0-1131.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1131_4.15.0-1131.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1131-gcp_4.15.0-1131.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1131_4.15.0-1131.147_amd64.deb" ] }, { - "kernelversion": "112", - "kernelrelease": "4.15.0-111", - "target": "ubuntu-generic", + "kernelversion": "143", + "kernelrelease": "4.15.0-1133-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" ] }, { - "kernelversion": "117", - "kernelrelease": "4.15.0-1110-aws", - "target": "ubuntu-aws", + "kernelversion": "146", + "kernelrelease": "4.15.0-1133-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" ] }, { - "kernelversion": "122", - "kernelrelease": "4.15.0-1110-azure-4.15", + "kernelversion": "147", + "kernelrelease": "4.15.0-1134-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" ] }, { - "kernelversion": "124", - "kernelrelease": "4.15.0-1110-gcp-4.15", + "kernelversion": "150", + "kernelrelease": "4.15.0-1134-gcp-4.15", "target": "ubuntu-gcp-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1134_4.15.0-1134.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1134-gcp_4.15.0-1134.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1134_4.15.0-1134.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1134-gcp_4.15.0-1134.150_amd64.deb" ] }, { - "kernelversion": "118", - "kernelrelease": "4.15.0-1111-aws", + "kernelversion": "147", + "kernelrelease": "4.15.0-1136-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" ] }, { - "kernelversion": "123", - "kernelrelease": "4.15.0-1111-azure-4.15", + "kernelversion": "149", + "kernelrelease": "4.15.0-1136-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb" - ] - }, - { - "kernelversion": "125", - "kernelrelease": "4.15.0-1111-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" ] }, { - "kernelversion": "119", - "kernelrelease": "4.15.0-1112-aws", + "kernelversion": "148", + "kernelrelease": "4.15.0-1137-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_amd64.deb" ] }, { - "kernelversion": "125", - "kernelrelease": "4.15.0-1112-azure-4.15", + "kernelversion": "150", + "kernelrelease": "4.15.0-1137-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb" ] }, { - "kernelversion": "126", - "kernelrelease": "4.15.0-1112-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "151", + "kernelrelease": "4.15.0-1138-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" ] }, { - "kernelversion": "115", - "kernelrelease": "4.15.0-1112-kvm", - "target": "ubuntu-kvm", + "kernelversion": "150", + "kernelrelease": "4.15.0-1139-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1139-aws_4.15.0-1139.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1139-aws_4.15.0-1139.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1139_4.15.0-1139.150_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1139_4.15.0-1139.150_all.deb" ] }, { - "kernelversion": "126", - "kernelrelease": "4.15.0-1113-azure-4.15", + "kernelversion": "152", + "kernelrelease": "4.15.0-1139-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb" ] }, { - "kernelversion": "121", - "kernelrelease": "4.15.0-1114-aws", - "target": "ubuntu-aws", + "kernelversion": "156", + "kernelrelease": "4.15.0-1142-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb" ] }, { - "kernelversion": "127", - "kernelrelease": "4.15.0-1114-azure-4.15", + "kernelversion": "160", + "kernelrelease": "4.15.0-1145-azure-4.15", "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb" ] }, { - "kernelversion": "128", - "kernelrelease": "4.15.0-1114-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "161", + "kernelrelease": "4.15.0-1146-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1146_4.15.0-1146.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1146-azure_4.15.0-1146.161_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1146_4.15.0-1146.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1146-azure_4.15.0-1146.161_amd64.deb" ] }, { - "kernelversion": "122", - "kernelrelease": "4.15.0-1115-aws", - "target": "ubuntu-aws", + "kernelversion": "164", + "kernelrelease": "4.15.0-1149-azure-4.15", + "target": "ubuntu-azure-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1149_4.15.0-1149.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1149_4.15.0-1149.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1149-azure_4.15.0-1149.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1149-azure_4.15.0-1149.164_amd64.deb" ] }, { - "kernelversion": "128", - "kernelrelease": "4.15.0-1115-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "116", + "kernelrelease": "4.15.0-115-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb" ] }, { - "kernelversion": "129", - "kernelrelease": "4.15.0-1115-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "118", + "kernelrelease": "4.15.0-117-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" ] }, { - "kernelversion": "125", - "kernelrelease": "4.15.0-1118-aws", - "target": "ubuntu-aws", + "kernelversion": "119", + "kernelrelease": "4.15.0-118-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" ] }, { - "kernelversion": "131", - "kernelrelease": "4.15.0-1118-azure-4.15", - "target": "ubuntu-azure-4.15", + "kernelversion": "123", + "kernelrelease": "4.15.0-121-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb" ] }, { - "kernelversion": "132", - "kernelrelease": "4.15.0-1118-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "124", + "kernelrelease": "4.15.0-122-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" ] }, { - "kernelversion": "127", - "kernelrelease": "4.15.0-1119-aws", - "target": "ubuntu-aws", + "kernelversion": "126", + "kernelrelease": "4.15.0-123-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb" ] }, { - "kernelversion": "133", - "kernelrelease": "4.15.0-1119-gcp-4.15", - "target": "ubuntu-gcp-4.15", + "kernelversion": "131", + "kernelrelease": "4.15.0-128-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb" ] }, { - "kernelversion": "123", - "kernelrelease": "4.15.0-1119-kvm", - "target": "ubuntu-kvm", + "kernelversion": "132", + "kernelrelease": "4.15.0-129-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" ] }, { - "kernelversion": "113", - "kernelrelease": "4.15.0-112", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-1120-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-1121-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.15.0-1122-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-1122-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.15.0-1123-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "4.15.0-1123-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" - ] - }, - { - "kernelversion": "137", - "kernelrelease": "4.15.0-1124-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "4.15.0-1124-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "4.15.0-1125-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-1126-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "4.15.0-1127-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" - ] - }, - { - "kernelversion": "142", - "kernelrelease": "4.15.0-1127-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb" - ] - }, - { - "kernelversion": "142", - "kernelrelease": "4.15.0-1129-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-1130-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb" - ] - }, - { - "kernelversion": "146", - "kernelrelease": "4.15.0-1130-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "4.15.0-1133-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" - ] - }, - { - "kernelversion": "146", - "kernelrelease": "4.15.0-1133-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb" - ] - }, - { - "kernelversion": "147", - "kernelrelease": "4.15.0-1136-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" - ] - }, - { - "kernelversion": "149", - "kernelrelease": "4.15.0-1136-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" - ] - }, - { - "kernelversion": "150", - "kernelrelease": "4.15.0-1137-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb" - ] - }, - { - "kernelversion": "156", - "kernelrelease": "4.15.0-1142-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb" - ] - }, - { - "kernelversion": "160", - "kernelrelease": "4.15.0-1145-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.15.0-115", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.15.0-117", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.15.0-118", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-121", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "4.15.0-122", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "4.15.0-123", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.15.0-128", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.15.0-129", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-130", + "kernelversion": "134", + "kernelrelease": "4.15.0-130-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb" ] }, { "kernelversion": "136", - "kernelrelease": "4.15.0-132", + "kernelrelease": "4.15.0-132-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" ] }, { "kernelversion": "139", - "kernelrelease": "4.15.0-135", + "kernelrelease": "4.15.0-135-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb" ] }, { "kernelversion": "140", - "kernelrelease": "4.15.0-136", + "kernelrelease": "4.15.0-136-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" ] }, { "kernelversion": "141", - "kernelrelease": "4.15.0-137", + "kernelrelease": "4.15.0-137-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb" ] }, { "kernelversion": "143", - "kernelrelease": "4.15.0-139", + "kernelrelease": "4.15.0-139-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" ] }, { "kernelversion": "144", - "kernelrelease": "4.15.0-140", + "kernelrelease": "4.15.0-140-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb" ] }, { "kernelversion": "145", - "kernelrelease": "4.15.0-141", + "kernelrelease": "4.15.0-141-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" ] }, { "kernelversion": "146", - "kernelrelease": "4.15.0-142", + "kernelrelease": "4.15.0-142-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" ] }, { "kernelversion": "147", - "kernelrelease": "4.15.0-143", + "kernelrelease": "4.15.0-143-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb" ] }, { "kernelversion": "148", - "kernelrelease": "4.15.0-144", + "kernelrelease": "4.15.0-144-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" ] }, { "kernelversion": "151", - "kernelrelease": "4.15.0-147", + "kernelrelease": "4.15.0-147-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb" ] }, { "kernelversion": "157", - "kernelrelease": "4.15.0-151", + "kernelrelease": "4.15.0-151-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb" ] }, { "kernelversion": "160", - "kernelrelease": "4.15.0-153", + "kernelrelease": "4.15.0-153-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" ] }, { "kernelversion": "161", - "kernelrelease": "4.15.0-154", + "kernelrelease": "4.15.0-154-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" ] }, { "kernelversion": "163", - "kernelrelease": "4.15.0-156", + "kernelrelease": "4.15.0-156-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb" ] }, { "kernelversion": "166", - "kernelrelease": "4.15.0-158", + "kernelrelease": "4.15.0-158-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb" ] }, { "kernelversion": "167", - "kernelrelease": "4.15.0-159", + "kernelrelease": "4.15.0-159-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb" ] }, { "kernelversion": "169", - "kernelrelease": "4.15.0-161", + "kernelrelease": "4.15.0-161-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" ] }, { "kernelversion": "170", - "kernelrelease": "4.15.0-162", + "kernelrelease": "4.15.0-162-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" ] }, { "kernelversion": "171", - "kernelrelease": "4.15.0-163", + "kernelrelease": "4.15.0-163-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb" ] }, { "kernelversion": "174", - "kernelrelease": "4.15.0-166", + "kernelrelease": "4.15.0-166-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb" ] }, { "kernelversion": "175", - "kernelrelease": "4.15.0-167", + "kernelrelease": "4.15.0-167-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb" ] }, { "kernelversion": "177", - "kernelrelease": "4.15.0-169", + "kernelrelease": "4.15.0-169-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb" ] }, { "kernelversion": "180", - "kernelrelease": "4.15.0-171", + "kernelrelease": "4.15.0-171-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" @@ -18345,561 +18000,600 @@ }, { "kernelversion": "182", - "kernelrelease": "4.15.0-173", + "kernelrelease": "4.15.0-173-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb" ] }, { "kernelversion": "184", - "kernelrelease": "4.15.0-175", + "kernelrelease": "4.15.0-175-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb" ] }, { "kernelversion": "185", - "kernelrelease": "4.15.0-176", + "kernelrelease": "4.15.0-176-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb" ] }, { "kernelversion": "186", - "kernelrelease": "4.15.0-177", + "kernelrelease": "4.15.0-177-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb" ] }, { "kernelversion": "189", - "kernelrelease": "4.15.0-180", + "kernelrelease": "4.15.0-180-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb" ] }, { "kernelversion": "194", - "kernelrelease": "4.15.0-184", + "kernelrelease": "4.15.0-184-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" ] }, { "kernelversion": "198", - "kernelrelease": "4.15.0-187", + "kernelrelease": "4.15.0-187-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb" + ] + }, + { + "kernelversion": "199", + "kernelrelease": "4.15.0-188-generic", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb" + ] + }, + { + "kernelversion": "200", + "kernelrelease": "4.15.0-189-generic", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-lowlatency_4.15.0-189.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-lowlatency_4.15.0-189.200_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_amd64.deb" + ] + }, + { + "kernelversion": "202", + "kernelrelease": "4.15.0-191-generic", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191_4.15.0-191.202_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191-lowlatency_4.15.0-191.202_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191-generic_4.15.0-191.202_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191_4.15.0-191.202_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191-generic_4.15.0-191.202_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191-lowlatency_4.15.0-191.202_amd64.deb" ] }, { "kernelversion": "24", - "kernelrelease": "4.15.0-22", + "kernelrelease": "4.15.0-22-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "4.15.0-23", + "kernelrelease": "4.15.0-23-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb" ] }, { "kernelversion": "26", - "kernelrelease": "4.15.0-24", + "kernelrelease": "4.15.0-24-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" ] }, { "kernelversion": "31", - "kernelrelease": "4.15.0-29", + "kernelrelease": "4.15.0-29-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb" ] }, { "kernelversion": "32", - "kernelrelease": "4.15.0-30", + "kernelrelease": "4.15.0-30-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "4.15.0-32", + "kernelrelease": "4.15.0-32-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" ] }, { "kernelversion": "36", - "kernelrelease": "4.15.0-33", + "kernelrelease": "4.15.0-33-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "4.15.0-34", + "kernelrelease": "4.15.0-34-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" ] }, { "kernelversion": "39", - "kernelrelease": "4.15.0-36", + "kernelrelease": "4.15.0-36-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" ] }, { "kernelversion": "42", - "kernelrelease": "4.15.0-39", + "kernelrelease": "4.15.0-39-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb" ] }, { "kernelversion": "45", - "kernelrelease": "4.15.0-42", + "kernelrelease": "4.15.0-42-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb" ] }, { "kernelversion": "46", - "kernelrelease": "4.15.0-43", + "kernelrelease": "4.15.0-43-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb" ] }, { "kernelversion": "47", - "kernelrelease": "4.15.0-44", + "kernelrelease": "4.15.0-44-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" ] }, { "kernelversion": "48", - "kernelrelease": "4.15.0-45", + "kernelrelease": "4.15.0-45-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb" ] }, { "kernelversion": "49", - "kernelrelease": "4.15.0-46", + "kernelrelease": "4.15.0-46-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" ] }, { "kernelversion": "50", - "kernelrelease": "4.15.0-47", + "kernelrelease": "4.15.0-47-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" ] }, { "kernelversion": "54", - "kernelrelease": "4.15.0-50", + "kernelrelease": "4.15.0-50-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb" ] }, { "kernelversion": "55", - "kernelrelease": "4.15.0-51", + "kernelrelease": "4.15.0-51-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" ] }, { "kernelversion": "56", - "kernelrelease": "4.15.0-52", + "kernelrelease": "4.15.0-52-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "4.15.0-54", + "kernelrelease": "4.15.0-54-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb" ] }, { "kernelversion": "60", - "kernelrelease": "4.15.0-55", + "kernelrelease": "4.15.0-55-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "4.15.0-58", + "kernelrelease": "4.15.0-58-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" ] }, { "kernelversion": "67", - "kernelrelease": "4.15.0-60", + "kernelrelease": "4.15.0-60-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" ] }, { "kernelversion": "69", - "kernelrelease": "4.15.0-62", + "kernelrelease": "4.15.0-62-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" ] }, { "kernelversion": "73", - "kernelrelease": "4.15.0-64", + "kernelrelease": "4.15.0-64-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" ] }, { "kernelversion": "74", - "kernelrelease": "4.15.0-65", + "kernelrelease": "4.15.0-65-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb" ] }, { "kernelversion": "75", - "kernelrelease": "4.15.0-66", + "kernelrelease": "4.15.0-66-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" ] }, { "kernelversion": "78", - "kernelrelease": "4.15.0-69", + "kernelrelease": "4.15.0-69-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb" ] }, { "kernelversion": "79", - "kernelrelease": "4.15.0-70", + "kernelrelease": "4.15.0-70-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" ] }, { "kernelversion": "81", - "kernelrelease": "4.15.0-72", + "kernelrelease": "4.15.0-72-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" ] }, { "kernelversion": "84", - "kernelrelease": "4.15.0-74", + "kernelrelease": "4.15.0-74-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" ] }, { "kernelversion": "86", - "kernelrelease": "4.15.0-76", + "kernelrelease": "4.15.0-76-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb" ] }, { "kernelversion": "88", - "kernelrelease": "4.15.0-88", + "kernelrelease": "4.15.0-88-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb" ] }, { "kernelversion": "92", - "kernelrelease": "4.15.0-91", + "kernelrelease": "4.15.0-91-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb" ] }, { "kernelversion": "97", - "kernelrelease": "4.15.0-96", + "kernelrelease": "4.15.0-96-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb" ] }, { "kernelversion": "100", - "kernelrelease": "4.15.0-99", + "kernelrelease": "4.15.0-99-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb" ] }, { @@ -18907,9 +18601,9 @@ "kernelrelease": "4.18.0-1004-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" ] }, @@ -18918,9 +18612,9 @@ "kernelrelease": "4.18.0-1005-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" ] }, @@ -18929,10 +18623,10 @@ "kernelrelease": "4.18.0-1006-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb" ] }, { @@ -18940,10 +18634,10 @@ "kernelrelease": "4.18.0-1006-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb" ] }, { @@ -18951,10 +18645,10 @@ "kernelrelease": "4.18.0-1007-azure-edge", "target": "ubuntu-azure-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" ] }, { @@ -18962,10 +18656,10 @@ "kernelrelease": "4.18.0-1007-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb" ] }, { @@ -18973,9 +18667,9 @@ "kernelrelease": "4.18.0-1008-azure-edge", "target": "ubuntu-azure-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" ] }, @@ -18984,10 +18678,10 @@ "kernelrelease": "4.18.0-1008-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -18995,10 +18689,10 @@ "kernelrelease": "4.18.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -19006,10 +18700,10 @@ "kernelrelease": "4.18.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb" ] }, { @@ -19017,8 +18711,8 @@ "kernelrelease": "4.18.0-1012-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb" ] @@ -19028,10 +18722,10 @@ "kernelrelease": "4.18.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" ] }, { @@ -19050,10 +18744,10 @@ "kernelrelease": "4.18.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb" ] }, { @@ -19061,10 +18755,10 @@ "kernelrelease": "4.18.0-1015-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" ] }, { @@ -19073,9 +18767,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" ] }, { @@ -19083,10 +18777,10 @@ "kernelrelease": "4.18.0-1019-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb" ] }, { @@ -19094,8 +18788,8 @@ "kernelrelease": "4.18.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" ] @@ -19105,10 +18799,10 @@ "kernelrelease": "4.18.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" ] }, { @@ -19116,10 +18810,10 @@ "kernelrelease": "4.18.0-1024-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" ] }, { @@ -19138,12 +18832,12 @@ "kernelrelease": "4.18.0-13-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" ] }, { @@ -19151,12 +18845,12 @@ "kernelrelease": "4.18.0-14-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb" ] }, { @@ -19164,11 +18858,11 @@ "kernelrelease": "4.18.0-15-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" ] }, @@ -19177,12 +18871,12 @@ "kernelrelease": "4.18.0-16-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" ] }, { @@ -19190,12 +18884,12 @@ "kernelrelease": "4.18.0-17-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" ] }, { @@ -19204,11 +18898,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" ] }, { @@ -19216,12 +18910,12 @@ "kernelrelease": "4.18.0-21-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" ] }, { @@ -19229,12 +18923,12 @@ "kernelrelease": "4.18.0-22-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb" ] }, { @@ -19242,12 +18936,12 @@ "kernelrelease": "4.18.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb" ] }, { @@ -19255,11 +18949,11 @@ "kernelrelease": "4.18.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb" ] }, @@ -19268,10 +18962,10 @@ "kernelrelease": "5.0.0-1007-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" ] }, { @@ -19279,10 +18973,10 @@ "kernelrelease": "5.0.0-1008-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb" ] }, { @@ -19290,10 +18984,10 @@ "kernelrelease": "5.0.0-1009-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" ] }, { @@ -19301,10 +18995,10 @@ "kernelrelease": "5.0.0-1010-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb" ] }, { @@ -19312,10 +19006,10 @@ "kernelrelease": "5.0.0-1011-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" ] }, { @@ -19323,10 +19017,10 @@ "kernelrelease": "5.0.0-1011-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" ] }, { @@ -19334,9 +19028,9 @@ "kernelrelease": "5.0.0-1012-azure-edge", "target": "ubuntu-azure-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb" ] }, @@ -19345,10 +19039,10 @@ "kernelrelease": "5.0.0-1013-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" ] }, { @@ -19356,10 +19050,10 @@ "kernelrelease": "5.0.0-1013-oracle-5.0", "target": "ubuntu-oracle-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" ] }, { @@ -19367,9 +19061,9 @@ "kernelrelease": "5.0.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb" ] }, @@ -19389,8 +19083,8 @@ "kernelrelease": "5.0.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" ] @@ -19400,10 +19094,10 @@ "kernelrelease": "5.0.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" ] }, { @@ -19411,10 +19105,10 @@ "kernelrelease": "5.0.0-1020-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -19422,10 +19116,10 @@ "kernelrelease": "5.0.0-1020-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb" ] }, { @@ -19433,10 +19127,10 @@ "kernelrelease": "5.0.0-1021-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" ] }, { @@ -19444,10 +19138,10 @@ "kernelrelease": "5.0.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -19455,10 +19149,10 @@ "kernelrelease": "5.0.0-1022-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" ] }, { @@ -19466,9 +19160,9 @@ "kernelrelease": "5.0.0-1022-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb" ] }, @@ -19478,9 +19172,9 @@ "target": "ubuntu-aws-5.0", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" ] }, { @@ -19488,10 +19182,10 @@ "kernelrelease": "5.0.0-1023-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" ] }, { @@ -19499,10 +19193,10 @@ "kernelrelease": "5.0.0-1024-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" ] }, { @@ -19510,10 +19204,10 @@ "kernelrelease": "5.0.0-1025-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb" ] }, { @@ -19522,9 +19216,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" ] }, { @@ -19532,10 +19226,10 @@ "kernelrelease": "5.0.0-1025-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb" ] }, { @@ -19543,10 +19237,10 @@ "kernelrelease": "5.0.0-1026-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -19554,10 +19248,10 @@ "kernelrelease": "5.0.0-1027-aws-5.0", "target": "ubuntu-aws-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" ] }, { @@ -19565,9 +19259,9 @@ "kernelrelease": "5.0.0-1027-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" ] }, @@ -19576,9 +19270,9 @@ "kernelrelease": "5.0.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" ] }, @@ -19587,10 +19281,10 @@ "kernelrelease": "5.0.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -19598,9 +19292,9 @@ "kernelrelease": "5.0.0-1029-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb" ] }, @@ -19609,10 +19303,10 @@ "kernelrelease": "5.0.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" ] }, { @@ -19621,8 +19315,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" ] }, @@ -19631,9 +19325,9 @@ "kernelrelease": "5.0.0-1031-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" ] }, @@ -19642,9 +19336,9 @@ "kernelrelease": "5.0.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" ] }, @@ -19653,9 +19347,9 @@ "kernelrelease": "5.0.0-1033-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" ] }, @@ -19664,10 +19358,10 @@ "kernelrelease": "5.0.0-1034-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" ] }, { @@ -19675,10 +19369,10 @@ "kernelrelease": "5.0.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" ] }, { @@ -19686,8 +19380,8 @@ "kernelrelease": "5.0.0-1036-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" ] @@ -19697,12 +19391,12 @@ "kernelrelease": "5.0.0-15-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" ] }, { @@ -19710,12 +19404,12 @@ "kernelrelease": "5.0.0-16-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" ] }, { @@ -19723,12 +19417,12 @@ "kernelrelease": "5.0.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" ] }, { @@ -19737,11 +19431,11 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb" ] }, { @@ -19749,12 +19443,12 @@ "kernelrelease": "5.0.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" ] }, { @@ -19762,12 +19456,12 @@ "kernelrelease": "5.0.0-23-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" ] }, { @@ -19775,12 +19469,12 @@ "kernelrelease": "5.0.0-25-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb" ] }, { @@ -19788,12 +19482,12 @@ "kernelrelease": "5.0.0-27-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb" ] }, { @@ -19801,11 +19495,11 @@ "kernelrelease": "5.0.0-29-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" ] }, @@ -19816,10 +19510,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" ] }, { @@ -19827,11 +19521,11 @@ "kernelrelease": "5.0.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb" ] }, @@ -19840,12 +19534,12 @@ "kernelrelease": "5.0.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" ] }, { @@ -19853,12 +19547,12 @@ "kernelrelease": "5.0.0-36-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" ] }, { @@ -19866,12 +19560,12 @@ "kernelrelease": "5.0.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" ] }, { @@ -19879,9 +19573,9 @@ "kernelrelease": "5.0.0-52-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" ] }, @@ -19890,10 +19584,10 @@ "kernelrelease": "5.0.0-61-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" ] }, { @@ -19901,10 +19595,10 @@ "kernelrelease": "5.0.0-62-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" ] }, { @@ -19912,9 +19606,9 @@ "kernelrelease": "5.0.0-63-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" ] }, @@ -19923,8 +19617,8 @@ "kernelrelease": "5.0.0-65-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" ] @@ -19934,32 +19628,32 @@ "kernelrelease": "5.3.0-1007-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb" ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1008-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1008-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -19969,8 +19663,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -19978,43 +19672,43 @@ "kernelrelease": "5.3.0-1009-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" ] }, - { - "kernelversion": "11~18.04.1", - "kernelrelease": "5.3.0-1010-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" - ] - }, { "kernelversion": "11~18.04.1", "kernelrelease": "5.3.0-1010-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb" ] }, + { + "kernelversion": "11~18.04.1", + "kernelrelease": "5.3.0-1010-azure-5.3", + "target": "ubuntu-azure-5.3", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" + ] + }, { "kernelversion": "12~18.04.1", "kernelrelease": "5.3.0-1011-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" ] }, { @@ -20022,10 +19716,10 @@ "kernelrelease": "5.3.0-1012-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb" ] }, { @@ -20044,10 +19738,10 @@ "kernelrelease": "5.3.0-1013-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" ] }, { @@ -20055,32 +19749,32 @@ "kernelrelease": "5.3.0-1013-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" ] }, { "kernelversion": "15~18.04.1", - "kernelrelease": "5.3.0-1014-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1014-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { "kernelversion": "15~18.04.1", - "kernelrelease": "5.3.0-1014-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1014-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" ] }, { @@ -20096,24 +19790,24 @@ }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1016-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" ] }, { "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1016-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -20121,10 +19815,10 @@ "kernelrelease": "5.3.0-1016-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" ] }, { @@ -20133,9 +19827,9 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" ] }, { @@ -20143,32 +19837,32 @@ "kernelrelease": "5.3.0-1017-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-azure-5.3", - "target": "ubuntu-azure-5.3", + "kernelrelease": "5.3.0-1018-gcp-5.3", + "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb" ] }, { "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-gcp-5.3", - "target": "ubuntu-gcp-5.3", + "kernelrelease": "5.3.0-1018-azure-5.3", + "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" ] }, { @@ -20176,10 +19870,10 @@ "kernelrelease": "5.3.0-1018-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" ] }, { @@ -20187,10 +19881,10 @@ "kernelrelease": "5.3.0-1019-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" ] }, { @@ -20198,10 +19892,10 @@ "kernelrelease": "5.3.0-1019-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" ] }, { @@ -20209,10 +19903,10 @@ "kernelrelease": "5.3.0-1020-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" ] }, { @@ -20220,9 +19914,9 @@ "kernelrelease": "5.3.0-1020-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" ] }, @@ -20231,10 +19925,10 @@ "kernelrelease": "5.3.0-1022-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -20242,9 +19936,9 @@ "kernelrelease": "5.3.0-1023-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb" ] }, @@ -20254,9 +19948,9 @@ "target": "ubuntu-oracle-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb" ] }, { @@ -20264,10 +19958,10 @@ "kernelrelease": "5.3.0-1026-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb" ] }, { @@ -20275,32 +19969,32 @@ "kernelrelease": "5.3.0-1027-oracle-5.3", "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb" ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-oracle-5.3", - "target": "ubuntu-oracle-5.3", + "kernelrelease": "5.3.0-1028-aws-5.3", + "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" ] }, { "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-aws-5.3", - "target": "ubuntu-aws-5.3", + "kernelrelease": "5.3.0-1028-oracle-5.3", + "target": "ubuntu-oracle-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb" ] }, { @@ -20308,10 +20002,10 @@ "kernelrelease": "5.3.0-1028-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" ] }, { @@ -20319,10 +20013,21 @@ "kernelrelease": "5.3.0-1029-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "32~18.04.1", + "kernelrelease": "5.3.0-1030-oracle-5.3", + "target": "ubuntu-oracle-5.3", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" ] }, { @@ -20330,10 +20035,10 @@ "kernelrelease": "5.3.0-1030-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20342,20 +20047,9 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" ] }, { @@ -20363,9 +20057,9 @@ "kernelrelease": "5.3.0-1031-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" ] }, @@ -20374,8 +20068,8 @@ "kernelrelease": "5.3.0-1032-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" ] @@ -20385,9 +20079,9 @@ "kernelrelease": "5.3.0-1032-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb" ] }, @@ -20396,10 +20090,10 @@ "kernelrelease": "5.3.0-1032-gcp-5.3", "target": "ubuntu-gcp-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -20407,9 +20101,9 @@ "kernelrelease": "5.3.0-1033-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" ] }, @@ -20419,9 +20113,9 @@ "target": "ubuntu-aws-5.3", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb" ] }, { @@ -20430,9 +20124,9 @@ "target": "ubuntu-azure-5.3", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb" ] }, { @@ -20440,10 +20134,10 @@ "kernelrelease": "5.3.0-1035-aws-5.3", "target": "ubuntu-aws-5.3", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" ] }, { @@ -20451,8 +20145,8 @@ "kernelrelease": "5.3.0-1035-azure-5.3", "target": "ubuntu-azure-5.3", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" ] @@ -20462,12 +20156,12 @@ "kernelrelease": "5.3.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" ] }, { @@ -20475,11 +20169,11 @@ "kernelrelease": "5.3.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb" ] }, @@ -20488,11 +20182,11 @@ "kernelrelease": "5.3.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" ] }, @@ -20501,12 +20195,12 @@ "kernelrelease": "5.3.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" ] }, { @@ -20514,11 +20208,11 @@ "kernelrelease": "5.3.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" ] }, @@ -20527,12 +20221,12 @@ "kernelrelease": "5.3.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" ] }, { @@ -20540,12 +20234,12 @@ "kernelrelease": "5.3.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" ] }, { @@ -20553,11 +20247,11 @@ "kernelrelease": "5.3.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb" ] }, @@ -20566,11 +20260,11 @@ "kernelrelease": "5.3.0-45-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb" ] }, @@ -20579,12 +20273,12 @@ "kernelrelease": "5.3.0-46-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" ] }, { @@ -20593,11 +20287,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" ] }, { @@ -20605,12 +20299,12 @@ "kernelrelease": "5.3.0-53-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb" ] }, { @@ -20621,9 +20315,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb" ] }, { @@ -20631,12 +20325,12 @@ "kernelrelease": "5.3.0-61-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb" ] }, { @@ -20644,12 +20338,12 @@ "kernelrelease": "5.3.0-62-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" ] }, { @@ -20657,12 +20351,12 @@ "kernelrelease": "5.3.0-64-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" ] }, { @@ -20670,11 +20364,11 @@ "kernelrelease": "5.3.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb" ] }, @@ -20685,10 +20379,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" ] }, { @@ -20696,12 +20390,12 @@ "kernelrelease": "5.3.0-67-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb" ] }, { @@ -20709,12 +20403,12 @@ "kernelrelease": "5.3.0-68-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb" ] }, { @@ -20722,12 +20416,12 @@ "kernelrelease": "5.3.0-69-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" ] }, { @@ -20735,10 +20429,10 @@ "kernelrelease": "5.3.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" ] @@ -20748,12 +20442,12 @@ "kernelrelease": "5.3.0-72-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" ] }, { @@ -20761,11 +20455,11 @@ "kernelrelease": "5.3.0-73-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb" ] }, @@ -20774,12 +20468,12 @@ "kernelrelease": "5.3.0-74-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" ] }, { @@ -20787,12 +20481,12 @@ "kernelrelease": "5.3.0-75-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb" ] }, { @@ -20800,12 +20494,25 @@ "kernelrelease": "5.3.0-76-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" + ] + }, + { + "kernelversion": "113~18.04.1", + "kernelrelease": "5.4.0-100-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb" ] }, { @@ -20813,9 +20520,9 @@ "kernelrelease": "5.4.0-1003-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb" ] }, @@ -20824,10 +20531,10 @@ "kernelrelease": "5.4.0-1004-ibm", "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb" ] }, { @@ -20835,10 +20542,10 @@ "kernelrelease": "5.4.0-1004-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb" ] }, { @@ -20846,10 +20553,10 @@ "kernelrelease": "5.4.0-1007-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" ] }, { @@ -20857,10 +20564,10 @@ "kernelrelease": "5.4.0-1008-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb" ] }, { @@ -20868,10 +20575,10 @@ "kernelrelease": "5.4.0-1009-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" ] }, { @@ -20879,10 +20586,10 @@ "kernelrelease": "5.4.0-1010-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb" ] }, { @@ -20892,8 +20599,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb" ] }, { @@ -20901,10 +20608,10 @@ "kernelrelease": "5.4.0-1012-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" ] }, { @@ -20912,10 +20619,10 @@ "kernelrelease": "5.4.0-1013-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb" ] }, { @@ -20924,8 +20631,8 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" ] }, @@ -20934,10 +20641,10 @@ "kernelrelease": "5.4.0-1015-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" ] }, { @@ -20946,9 +20653,9 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" ] }, { @@ -20956,10 +20663,10 @@ "kernelrelease": "5.4.0-1018-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" ] }, { @@ -20975,24 +20682,24 @@ }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1021-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1021-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" ] }, { @@ -21006,26 +20713,15 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" ] }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" - ] - }, { "kernelversion": "22~18.04.1", "kernelrelease": "5.4.0-1022-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb" ] }, { @@ -21033,21 +20729,32 @@ "kernelrelease": "5.4.0-1022-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb" ] }, + { + "kernelversion": "22~18.04.1", + "kernelrelease": "5.4.0-1022-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" + ] + }, { "kernelversion": "22~18.04.1", "kernelrelease": "5.4.0-1022-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" ] }, { @@ -21055,10 +20762,10 @@ "kernelrelease": "5.4.0-1022-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" ] }, { @@ -21068,8 +20775,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb" ] }, { @@ -21077,32 +20784,32 @@ "kernelrelease": "5.4.0-1023-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1024-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" ] }, { "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1024-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" ] }, { @@ -21122,9 +20829,20 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "25~18.04.1", + "kernelrelease": "5.4.0-1025-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -21132,10 +20850,10 @@ "kernelrelease": "5.4.0-1025-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { @@ -21143,10 +20861,10 @@ "kernelrelease": "5.4.0-1025-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -21154,21 +20872,10 @@ "kernelrelease": "5.4.0-1025-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" ] }, { @@ -21177,9 +20884,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" ] }, { @@ -21187,9 +20894,9 @@ "kernelrelease": "5.4.0-1025-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" ] }, @@ -21199,9 +20906,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" ] }, { @@ -21209,21 +20916,10 @@ "kernelrelease": "5.4.0-1026-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" ] }, { @@ -21231,32 +20927,32 @@ "kernelrelease": "5.4.0-1027-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelversion": "28~18.04.1", + "kernelrelease": "5.4.0-1027-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" ] }, { "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1028-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { @@ -21264,32 +20960,32 @@ "kernelrelease": "5.4.0-1028-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" ] }, { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.4.0-1029-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "29~18.04.1", + "kernelrelease": "5.4.0-1028-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" ] }, { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "30~18.04.1", + "kernelrelease": "5.4.0-1029-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" ] }, { @@ -21297,10 +20993,10 @@ "kernelrelease": "5.4.0-1029-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" ] }, { @@ -21308,10 +21004,21 @@ "kernelrelease": "5.4.0-1029-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "31~18.04.1", + "kernelrelease": "5.4.0-1029-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" ] }, { @@ -21320,31 +21027,31 @@ "target": "ubuntu-gkeop-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", + "kernelrelease": "5.4.0-1031-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" ] }, { "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1031-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" ] }, { @@ -21352,10 +21059,10 @@ "kernelrelease": "5.4.0-1032-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21363,10 +21070,10 @@ "kernelrelease": "5.4.0-1032-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" ] }, { @@ -21374,10 +21081,10 @@ "kernelrelease": "5.4.0-1033-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21385,10 +21092,10 @@ "kernelrelease": "5.4.0-1033-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" ] }, { @@ -21396,21 +21103,10 @@ "kernelrelease": "5.4.0-1033-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1033-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" ] }, { @@ -21419,9 +21115,9 @@ "target": "ubuntu-gke", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" ] }, { @@ -21431,8 +21127,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb" + ] + }, + { + "kernelversion": "35", + "kernelrelease": "5.4.0-1033-gcp", + "target": "ubuntu-gcp", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" ] }, { @@ -21440,10 +21147,10 @@ "kernelrelease": "5.4.0-1034-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb" ] }, { @@ -21451,9 +21158,9 @@ "kernelrelease": "5.4.0-1034-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" ] }, @@ -21462,9 +21169,9 @@ "kernelrelease": "5.4.0-1035-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" ] }, @@ -21474,9 +21181,9 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" ] }, { @@ -21486,8 +21193,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" ] }, { @@ -21495,32 +21202,32 @@ "kernelrelease": "5.4.0-1035-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1036-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" ] }, { "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1036-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb" ] }, { @@ -21528,10 +21235,10 @@ "kernelrelease": "5.4.0-1036-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" ] }, { @@ -21539,32 +21246,32 @@ "kernelrelease": "5.4.0-1036-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1037-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" ] }, { "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1037-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" ] }, { @@ -21572,10 +21279,10 @@ "kernelrelease": "5.4.0-1037-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21583,10 +21290,10 @@ "kernelrelease": "5.4.0-1037-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" ] }, { @@ -21594,10 +21301,10 @@ "kernelrelease": "5.4.0-1037-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb" ] }, { @@ -21605,10 +21312,10 @@ "kernelrelease": "5.4.0-1038-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb" ] }, { @@ -21627,10 +21334,10 @@ "kernelrelease": "5.4.0-1038-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb" ] }, { @@ -21640,19 +21347,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" ] }, { @@ -21661,8 +21357,8 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" ] }, @@ -21672,9 +21368,20 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "41~18.04.1", + "kernelrelease": "5.4.0-1039-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" ] }, { @@ -21682,10 +21389,10 @@ "kernelrelease": "5.4.0-1039-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb" ] }, { @@ -21693,10 +21400,10 @@ "kernelrelease": "5.4.0-1039-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb" ] }, { @@ -21704,34 +21411,34 @@ "kernelrelease": "5.4.0-104-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb" ] }, { "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1040-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1040-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1040-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1040-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" ] }, { @@ -21739,10 +21446,10 @@ "kernelrelease": "5.4.0-1040-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb" ] }, { @@ -21751,9 +21458,9 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" ] }, { @@ -21761,32 +21468,32 @@ "kernelrelease": "5.4.0-1041-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" ] }, { "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelrelease": "5.4.0-1041-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-oracle-5.4", - "target": "ubuntu-oracle-5.4", + "kernelrelease": "5.4.0-1041-gcp-5.4", + "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" ] }, { @@ -21794,10 +21501,10 @@ "kernelrelease": "5.4.0-1042-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" ] }, { @@ -21805,10 +21512,10 @@ "kernelrelease": "5.4.0-1042-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" ] }, { @@ -21816,32 +21523,32 @@ "kernelrelease": "5.4.0-1042-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1043-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1043-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" ] }, { @@ -21849,10 +21556,10 @@ "kernelrelease": "5.4.0-1043-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" ] }, { @@ -21861,8 +21568,8 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb" ] }, @@ -21871,10 +21578,10 @@ "kernelrelease": "5.4.0-1043-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" ] }, { @@ -21882,10 +21589,10 @@ "kernelrelease": "5.4.0-1044-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb" ] }, { @@ -21893,10 +21600,10 @@ "kernelrelease": "5.4.0-1044-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb" ] }, { @@ -21904,9 +21611,9 @@ "kernelrelease": "5.4.0-1044-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" ] }, @@ -21917,8 +21624,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" ] }, { @@ -21926,32 +21633,32 @@ "kernelrelease": "5.4.0-1045-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1046-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" ] }, { "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1046-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb" ] }, { @@ -21959,10 +21666,10 @@ "kernelrelease": "5.4.0-1046-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" ] }, { @@ -21970,10 +21677,10 @@ "kernelrelease": "5.4.0-1046-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb" ] }, { @@ -21981,32 +21688,43 @@ "kernelrelease": "5.4.0-1046-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" ] }, + { + "kernelversion": "49~18.04.1", + "kernelrelease": "5.4.0-1047-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" + ] + }, { "kernelversion": "49~18.04.1", "kernelrelease": "5.4.0-1047-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" ] }, { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "50~18.04.1", + "kernelrelease": "5.4.0-1048-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" ] }, { @@ -22014,21 +21732,10 @@ "kernelrelease": "5.4.0-1048-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" - ] - }, - { - "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb" ] }, { @@ -22036,10 +21743,10 @@ "kernelrelease": "5.4.0-1048-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb" ] }, { @@ -22047,32 +21754,32 @@ "kernelrelease": "5.4.0-1048-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb" ] }, { "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1049-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1049-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" ] }, { @@ -22080,10 +21787,10 @@ "kernelrelease": "5.4.0-1049-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -22091,10 +21798,10 @@ "kernelrelease": "5.4.0-1049-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb" ] }, { @@ -22102,21 +21809,34 @@ "kernelrelease": "5.4.0-1049-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" ] }, { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelversion": "52~18.04.1", + "kernelrelease": "5.4.0-1049-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1049-gkeop_5.4.0-1049.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1049-gkeop_5.4.0-1049.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_all.deb" + ] + }, + { + "kernelversion": "119~18.04.1", + "kernelrelease": "5.4.0-105-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb" ] }, { @@ -22125,20 +21845,31 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" ] }, + { + "kernelversion": "53~18.04.1", + "kernelrelease": "5.4.0-1051-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" + ] + }, { "kernelversion": "55~18.04.1", "kernelrelease": "5.4.0-1051-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb" ] }, { @@ -22146,21 +21877,32 @@ "kernelrelease": "5.4.0-1051-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" ] }, + { + "kernelversion": "54~18.04.1", + "kernelrelease": "5.4.0-1051-gkeop-5.4", + "target": "ubuntu-gkeop-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1051-gkeop_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1051-gkeop_5.4.0-1051.54~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_all.deb" + ] + }, { "kernelversion": "56~18.04.1", "kernelrelease": "5.4.0-1052-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb" ] }, { @@ -22168,10 +21910,10 @@ "kernelrelease": "5.4.0-1052-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" ] }, { @@ -22179,10 +21921,10 @@ "kernelrelease": "5.4.0-1052-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" ] }, { @@ -22190,9 +21932,9 @@ "kernelrelease": "5.4.0-1053-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" ] }, @@ -22202,9 +21944,9 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" ] }, { @@ -22212,32 +21954,32 @@ "kernelrelease": "5.4.0-1053-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1054-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1054-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" ] }, { @@ -22245,32 +21987,32 @@ "kernelrelease": "5.4.0-1054-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1055-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" ] }, { "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1055-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb" ] }, { @@ -22278,10 +22020,10 @@ "kernelrelease": "5.4.0-1055-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" ] }, { @@ -22289,10 +22031,10 @@ "kernelrelease": "5.4.0-1055-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { @@ -22300,32 +22042,32 @@ "kernelrelease": "5.4.0-1055-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1056-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" ] }, { "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1056-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" ] }, { @@ -22333,21 +22075,32 @@ "kernelrelease": "5.4.0-1056-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" ] }, { "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1056-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1056-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb" ] }, { @@ -22355,10 +22108,21 @@ "kernelrelease": "5.4.0-1057-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "60~18.04.1", + "kernelrelease": "5.4.0-1057-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb" ] }, { @@ -22366,10 +22130,10 @@ "kernelrelease": "5.4.0-1057-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -22377,10 +22141,10 @@ "kernelrelease": "5.4.0-1057-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb" ] }, { @@ -22389,8 +22153,8 @@ "target": "ubuntu-aws-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb" ] }, @@ -22407,13 +22171,24 @@ }, { "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1058-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" + ] + }, + { + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1058-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb" ] }, { @@ -22421,10 +22196,10 @@ "kernelrelease": "5.4.0-1059-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -22434,19 +22209,19 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" ] }, { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "62~18.04.1", + "kernelrelease": "5.4.0-1059-aws-5.4", + "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb" ] }, { @@ -22455,9 +22230,20 @@ "target": "ubuntu-oracle-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "63~18.04.1", + "kernelrelease": "5.4.0-1059-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" ] }, { @@ -22465,9 +22251,9 @@ "kernelrelease": "5.4.0-1060-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" ] }, @@ -22476,9 +22262,9 @@ "kernelrelease": "5.4.0-1061-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" ] }, @@ -22487,10 +22273,10 @@ "kernelrelease": "5.4.0-1062-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { @@ -22498,21 +22284,98 @@ "kernelrelease": "5.4.0-1062-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" ] }, { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-azure-5.4", + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "66~18.04.1", + "kernelrelease": "5.4.0-1062-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1063-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1063-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" + ] + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "67~18.04.1", + "kernelrelease": "5.4.0-1064-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1064-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" ] }, { @@ -22520,10 +22383,10 @@ "kernelrelease": "5.4.0-1065-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb" ] }, { @@ -22531,10 +22394,54 @@ "kernelrelease": "5.4.0-1065-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "68~18.04.1", + "kernelrelease": "5.4.0-1065-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1065-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1066-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "69~18.04.1", + "kernelrelease": "5.4.0-1066-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" ] }, { @@ -22550,24 +22457,24 @@ }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-gke-5.4", - "target": "ubuntu-gke-5.4", + "kernelrelease": "5.4.0-1067-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" ] }, { "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-azure-5.4", - "target": "ubuntu-azure-5.4", + "kernelrelease": "5.4.0-1067-gke-5.4", + "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" ] }, { @@ -22575,21 +22482,32 @@ "kernelrelease": "5.4.0-1067-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb" ] }, + { + "kernelversion": "72~18.04.1", + "kernelrelease": "5.4.0-1067-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" + ] + }, { "kernelversion": "72~18.04.1", "kernelrelease": "5.4.0-1068-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" ] }, { @@ -22597,10 +22515,54 @@ "kernelrelease": "5.4.0-1068-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" + ] + }, + { + "kernelversion": "71~18.04.1", + "kernelrelease": "5.4.0-1068-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "71~18.04.1", + "kernelrelease": "5.4.0-1068-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1069-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1069-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" ] }, { @@ -22608,10 +22570,10 @@ "kernelrelease": "5.4.0-1069-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" ] }, { @@ -22619,12 +22581,23 @@ "kernelrelease": "5.4.0-107-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "73~18.04.1", + "kernelrelease": "5.4.0-1070-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb" ] }, { @@ -22632,10 +22605,10 @@ "kernelrelease": "5.4.0-1070-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb" ] }, { @@ -22643,31 +22616,42 @@ "kernelrelease": "5.4.0-1071-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb" ] }, { "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", + "kernelrelease": "5.4.0-1071-oracle-5.4", + "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb" - ] - }, + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "77~18.04.1", + "kernelrelease": "5.4.0-1072-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" + ] + }, { "kernelversion": "77~18.04.1", "kernelrelease": "5.4.0-1072-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" ] }, @@ -22676,10 +22660,10 @@ "kernelrelease": "5.4.0-1072-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" ] }, { @@ -22687,9 +22671,9 @@ "kernelrelease": "5.4.0-1072-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb" ] }, @@ -22704,15 +22688,26 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb" ] }, + { + "kernelversion": "78~18.04.1", + "kernelrelease": "5.4.0-1073-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" + ] + }, { "kernelversion": "79~18.04.1", "kernelrelease": "5.4.0-1073-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" ] }, { @@ -22720,10 +22715,10 @@ "kernelrelease": "5.4.0-1074-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" ] }, { @@ -22732,19 +22727,41 @@ "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb" ] }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" + ] + }, + { + "kernelversion": "80~18.04.1", + "kernelrelease": "5.4.0-1075-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb" + ] + }, { "kernelversion": "82~18.04.1", "kernelrelease": "5.4.0-1076-gke-5.4", "target": "ubuntu-gke-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb" ] }, @@ -22753,10 +22770,10 @@ "kernelrelease": "5.4.0-1076-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb" ] }, { @@ -22771,25 +22788,14 @@ ] }, { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gcp-5.4", - "target": "ubuntu-gcp-5.4", + "kernelversion": "81~18.04.1", + "kernelrelease": "5.4.0-1078-azure-5.4", + "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" ] }, { @@ -22797,10 +22803,21 @@ "kernelrelease": "5.4.0-1078-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "87~18.04.1", + "kernelrelease": "5.4.0-1079-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1079_5.4.0-1079.87~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1079_5.4.0-1079.87~18.04.1_all.deb" ] }, { @@ -22809,8 +22826,8 @@ "target": "ubuntu-gcp-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb" ] }, @@ -22819,10 +22836,10 @@ "kernelrelease": "5.4.0-1080-aws-5.4", "target": "ubuntu-aws-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" ] }, { @@ -22831,9 +22848,53 @@ "target": "ubuntu-azure-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" + ] + }, + { + "kernelversion": "86~18.04.1", + "kernelrelease": "5.4.0-1080-gke-5.4", + "target": "ubuntu-gke-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1080-gke_5.4.0-1080.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1080_5.4.0-1080.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1080-gke_5.4.0-1080.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1080_5.4.0-1080.86~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "88~18.04.1", + "kernelrelease": "5.4.0-1081-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "89~18.04.1", + "kernelrelease": "5.4.0-1081-oracle-5.4", + "target": "ubuntu-oracle-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1081_5.4.0-1081.89~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1081_5.4.0-1081.89~18.04.1_all.deb" + ] + }, + { + "kernelversion": "90~18.04.1", + "kernelrelease": "5.4.0-1083-aws-5.4", + "target": "ubuntu-aws-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1083-aws_5.4.0-1083.90~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1083_5.4.0-1083.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1083_5.4.0-1083.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1083-aws_5.4.0-1083.90~18.04.1_amd64.deb" ] }, { @@ -22841,10 +22902,21 @@ "kernelrelease": "5.4.0-1083-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "92~18.04.1", + "kernelrelease": "5.4.0-1084-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1084_5.4.0-1084.92~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1084_5.4.0-1084.92~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92~18.04.1_amd64.deb" ] }, { @@ -22852,23 +22924,69 @@ "kernelrelease": "5.4.0-1085-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb" ] }, + { + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-1086-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb" + ] + }, + { + "kernelversion": "94~18.04.1", + "kernelrelease": "5.4.0-1086-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1086_5.4.0-1086.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1086_5.4.0-1086.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "94~18.04.1", + "kernelrelease": "5.4.0-1089-azure-5.4", + "target": "ubuntu-azure-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1089-azure_5.4.0-1089.94~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1089_5.4.0-1089.94~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1089-azure_5.4.0-1089.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1089_5.4.0-1089.94~18.04.1_all.deb" + ] + }, { "kernelversion": "123~18.04.1", "kernelrelease": "5.4.0-109-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "124~18.04.1", + "kernelrelease": "5.4.0-110-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" ] }, { @@ -22876,12 +22994,12 @@ "kernelrelease": "5.4.0-113-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb" ] }, { @@ -22891,10 +23009,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb" ] }, { @@ -22902,12 +23020,51 @@ "kernelrelease": "5.4.0-120-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb" + ] + }, + { + "kernelversion": "137~18.04.1", + "kernelrelease": "5.4.0-121-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb" + ] + }, + { + "kernelversion": "138~18.04.1", + "kernelrelease": "5.4.0-122-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb" + ] + }, + { + "kernelversion": "140~18.04.1", + "kernelrelease": "5.4.0-124-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-generic_5.4.0-124.140~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-lowlatency_5.4.0-124.140~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-124_5.4.0-124.140~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-generic_5.4.0-124.140~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-124_5.4.0-124.140~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-lowlatency_5.4.0-124.140~18.04.1_amd64.deb" ] }, { @@ -22916,10 +23073,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb" ] }, @@ -22928,12 +23085,12 @@ "kernelrelease": "5.4.0-39-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" ] }, { @@ -22942,11 +23099,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" ] }, { @@ -22954,12 +23111,12 @@ "kernelrelease": "5.4.0-42-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb" ] }, { @@ -22967,12 +23124,12 @@ "kernelrelease": "5.4.0-45-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" ] }, { @@ -22980,12 +23137,12 @@ "kernelrelease": "5.4.0-47-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" ] }, { @@ -22993,12 +23150,12 @@ "kernelrelease": "5.4.0-48-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" ] }, { @@ -23006,12 +23163,12 @@ "kernelrelease": "5.4.0-51-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" ] }, { @@ -23019,12 +23176,12 @@ "kernelrelease": "5.4.0-52-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" ] }, { @@ -23033,11 +23190,11 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" ] }, { @@ -23045,12 +23202,12 @@ "kernelrelease": "5.4.0-58-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" ] }, { @@ -23058,11 +23215,11 @@ "kernelrelease": "5.4.0-59-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb" ] }, @@ -23071,10 +23228,10 @@ "kernelrelease": "5.4.0-60-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb" ] @@ -23084,12 +23241,12 @@ "kernelrelease": "5.4.0-62-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb" ] }, { @@ -23098,10 +23255,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb" ] }, @@ -23110,12 +23267,12 @@ "kernelrelease": "5.4.0-66-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" ] }, { @@ -23123,12 +23280,12 @@ "kernelrelease": "5.4.0-67-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" ] }, { @@ -23138,10 +23295,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" ] }, { @@ -23149,12 +23306,12 @@ "kernelrelease": "5.4.0-71-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb" ] }, { @@ -23162,12 +23319,12 @@ "kernelrelease": "5.4.0-72-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb" ] }, { @@ -23175,12 +23332,12 @@ "kernelrelease": "5.4.0-73-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" ] }, { @@ -23188,11 +23345,11 @@ "kernelrelease": "5.4.0-74-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" ] }, @@ -23201,12 +23358,12 @@ "kernelrelease": "5.4.0-77-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" ] }, { @@ -23214,12 +23371,12 @@ "kernelrelease": "5.4.0-80-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb" ] }, { @@ -23227,12 +23384,12 @@ "kernelrelease": "5.4.0-81-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb" ] }, { @@ -23241,10 +23398,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" ] }, @@ -23253,12 +23410,12 @@ "kernelrelease": "5.4.0-86-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb" ] }, { @@ -23266,12 +23423,12 @@ "kernelrelease": "5.4.0-87-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb" ] }, { @@ -23279,12 +23436,12 @@ "kernelrelease": "5.4.0-89-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" ] }, { @@ -23292,25 +23449,38 @@ "kernelrelease": "5.4.0-90-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb" ] }, + { + "kernelversion": "102~18.04.1", + "kernelrelease": "5.4.0-91-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb" + ] + }, { "kernelversion": "103~18.04.2", "kernelrelease": "5.4.0-92-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" ] }, { @@ -23318,12 +23488,12 @@ "kernelrelease": "5.4.0-94-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" ] }, { @@ -23331,12 +23501,38 @@ "kernelrelease": "5.4.0-96-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" + ] + }, + { + "kernelversion": "110~18.04.1", + "kernelrelease": "5.4.0-97-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "112~18.04.1", + "kernelrelease": "5.4.0-99-hwe-5.4", + "target": "ubuntu-hwe-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb" ] }, { @@ -23344,10 +23540,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" ] }, { @@ -23355,9 +23551,9 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" ] }, @@ -23366,10 +23562,10 @@ "kernelrelease": "4.15.0-1024-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" ] }, { @@ -23377,9 +23573,9 @@ "kernelrelease": "4.15.0-1025-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" ] }, @@ -23388,10 +23584,10 @@ "kernelrelease": "4.15.0-1025-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" ] }, { @@ -23399,10 +23595,10 @@ "kernelrelease": "4.15.0-1030-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb" ] }, { @@ -23410,10 +23606,10 @@ "kernelrelease": "4.15.0-1030-gke-4.15", "target": "ubuntu-gke-4.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" ] }, { @@ -23421,9 +23617,9 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" ] }, @@ -23433,8 +23629,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb" ] }, @@ -23443,62 +23639,73 @@ "kernelrelease": "4.15.0-1036-oem", "target": "ubuntu-oem", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" + ] + }, + { + "kernelversion": "143", + "kernelrelease": "4.15.0-1130-azure-4.15", + "target": "ubuntu-azure-4.15", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb" ] }, { "kernelversion": "127", - "kernelrelease": "4.15.0-124", + "kernelrelease": "4.15.0-124-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb" ] }, { "kernelversion": "138", - "kernelrelease": "4.15.0-134", + "kernelrelease": "4.15.0-134-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb" ] }, { "kernelversion": "41", - "kernelrelease": "4.15.0-38", + "kernelrelease": "4.15.0-38-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb" ] }, { "kernelversion": "51", - "kernelrelease": "4.15.0-48", + "kernelrelease": "4.15.0-48-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" ] }, { @@ -23506,10 +23713,10 @@ "kernelrelease": "4.18.0-1009-gcp-edge", "target": "ubuntu-gcp-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" ] }, { @@ -23517,12 +23724,12 @@ "kernelrelease": "4.18.0-18-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" ] }, { @@ -23530,10 +23737,10 @@ "kernelrelease": "5.0.0-41-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" ] }, { @@ -23541,10 +23748,10 @@ "kernelrelease": "5.0.0-43-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" ] }, { @@ -23552,10 +23759,10 @@ "kernelrelease": "5.0.0-44-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" ] }, { @@ -23565,8 +23772,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb" ] }, { @@ -23574,10 +23781,10 @@ "kernelrelease": "5.0.0-48-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" ] }, { @@ -23585,8 +23792,8 @@ "kernelrelease": "5.0.0-53-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" ] @@ -23596,8 +23803,8 @@ "kernelrelease": "5.0.0-58-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" ] @@ -23607,9 +23814,9 @@ "kernelrelease": "5.0.0-60-hwe-5.0", "target": "ubuntu-hwe-5.0", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" ] }, @@ -23618,10 +23825,10 @@ "kernelrelease": "5.4.0-1001-gkeop-5.4", "target": "ubuntu-gkeop-5.4", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" ] }, { @@ -23631,8 +23838,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" ] }, { @@ -23640,10 +23847,10 @@ "kernelrelease": "5.4.0-1019-gcp-5.4", "target": "ubuntu-gcp-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb" ] }, { @@ -23651,10 +23858,10 @@ "kernelrelease": "5.4.0-1019-oracle-5.4", "target": "ubuntu-oracle-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb" ] }, { @@ -23662,10 +23869,21 @@ "kernelrelease": "5.4.0-1020-azure-5.4", "target": "ubuntu-azure-5.4", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb" + ] + }, + { + "kernelversion": "91~18.04.1", + "kernelrelease": "5.4.0-1083-gcp-5.4", + "target": "ubuntu-gcp-5.4", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1083_5.4.0-1083.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1083_5.4.0-1083.91~18.04.1_amd64.deb" ] }, { @@ -23673,11 +23891,11 @@ "kernelrelease": "5.4.0-54-hwe-5.4", "target": "ubuntu-hwe-5.4", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" ] }, @@ -23687,10 +23905,10 @@ "target": "ubuntu-hwe-5.4", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb" ] }, @@ -23699,8 +23917,8 @@ "kernelrelease": "4.15.0-1004-oem", "target": "ubuntu-oem", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" ] @@ -23711,9 +23929,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" ] }, { @@ -23722,143 +23940,110 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "4.15.0-20", + "kernelrelease": "4.15.0-20-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-oracle", - "target": "ubuntu-oracle", + "kernelversion": "3", + "kernelrelease": "5.19.0-1003-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1005-oracle_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.19.0-1003-lowlatency_5.19.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.19.0-1003_5.19.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.19.0-1003_5.19.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.19.0-1003-lowlatency_5.19.0-1003.3_amd64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws", + "kernelversion": "4", + "kernelrelease": "5.19.0-1004-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.19.0-1004_5.19.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.19.0-1004-oracle_5.19.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.19.0-1004_5.19.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.19.0-1004-oracle_5.19.0-1004.4_amd64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-azure", - "target": "ubuntu-azure", + "kernelversion": "4", + "kernelrelease": "5.19.0-1004-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.19.0-1004_5.19.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.19.0-1004-ibm_5.19.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.19.0-1004_5.19.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.19.0-1004-ibm_5.19.0-1004.4_amd64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-gke", - "target": "ubuntu-gke", + "kernelversion": "4", + "kernelrelease": "5.19.0-1004-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.19.0-1004-gcp_5.19.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.19.0-1004_5.19.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.19.0-1004_5.19.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.19.0-1004-gcp_5.19.0-1004.4_amd64.deb" ] }, { - "kernelversion": "8+22.10.1", - "kernelrelease": "5.15.0-1008-kvm", + "kernelversion": "4", + "kernelrelease": "5.19.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8+22.10.1_amd64.deb" - ] - }, - { - "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36+22.10.1_amd64.deb" - ] - }, - { - "kernelversion": "36+22.10.1", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36+22.10.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36+22.10.1_all.deb" - ] - }, - { - "kernelversion": "1", - "kernelrelease": "5.18.0-1001-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.18.0-1001-ibm_5.18.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.18.0-1001-ibm_5.18.0-1001.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.18.0-1001_5.18.0-1001.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.18.0-1001_5.18.0-1001.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.19.0-1004_5.19.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.19.0-1004-kvm_5.19.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.19.0-1004-kvm_5.19.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.19.0-1004_5.19.0-1004.4_all.deb" ] }, { - "kernelversion": "1", - "kernelrelease": "5.18.0-1001-kvm", - "target": "ubuntu-kvm", + "kernelversion": "4", + "kernelrelease": "5.19.0-1004-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.18.0-1001-kvm_5.18.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.18.0-1001-kvm_5.18.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.18.0-1001_5.18.0-1001.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.18.0-1001_5.18.0-1001.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.19.0-1004_5.19.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.19.0-1004_5.19.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.19.0-1004-azure_5.19.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.19.0-1004-azure_5.19.0-1004.4_amd64.deb" ] }, { - "kernelversion": "2", - "kernelrelease": "5.18.0-1002-gcp", - "target": "ubuntu-gcp", + "kernelversion": "5", + "kernelrelease": "5.19.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.18.0-1002-gcp_5.18.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.18.0-1002_5.18.0-1002.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.19.0-1005-aws_5.19.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.19.0-1005-aws_5.19.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.19.0-1005_5.19.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.19.0-1005_5.19.0-1005.5_all.deb" ] }, { - "kernelversion": "2", - "kernelrelease": "5.18.0-1002-oracle", - "target": "ubuntu-oracle", + "kernelversion": "15", + "kernelrelease": "5.19.0-15-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.18.0-1002-oracle_5.18.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.18.0-1002_5.18.0-1002.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.19.0-15_5.19.0-15.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.19.0-15_5.19.0-15.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.19.0-15-generic_5.19.0-15.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.19.0-15-generic_5.19.0-15.15_amd64.deb" ] }, { @@ -23867,9 +24052,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" ] }, { @@ -23877,10 +24062,10 @@ "kernelrelease": "5.15.0-1003-ibm", "target": "ubuntu-ibm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" ] }, { @@ -23888,10 +24073,10 @@ "kernelrelease": "5.15.0-1003-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb" ] }, { @@ -23899,43 +24084,32 @@ "kernelrelease": "5.15.0-1003-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.15.0-1004-intel-iotg", + "target": "ubuntu-intel-iotg", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1004-oracle_5.15.0-1004.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" ] }, { "kernelversion": "6", - "kernelrelease": "5.15.0-1004-intel-iotg", - "target": "ubuntu-intel-iotg", + "kernelrelease": "5.15.0-1004-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" ] }, { @@ -23943,21 +24117,10 @@ "kernelrelease": "5.15.0-1004-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.15.0-1004-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" ] }, { @@ -23965,19 +24128,30 @@ "kernelrelease": "5.15.0-1004-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" ] }, + { + "kernelversion": "4", + "kernelrelease": "5.15.0-1004-ibm", + "target": "ubuntu-ibm", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" + ] + }, { "kernelversion": "24", "kernelrelease": "5.15.0-24-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" ] @@ -23987,20 +24161,20 @@ "kernelrelease": "5.15.0-27-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" ] }, { "kernelversion": "28", - "kernelrelease": "5.15.0-27", + "kernelrelease": "5.15.0-27-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" ] }, @@ -24009,9 +24183,9 @@ "kernelrelease": "5.17.0-1003-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb" ] }, @@ -24020,32 +24194,32 @@ "kernelrelease": "5.10.0-1058-oem-5.10", "target": "ubuntu-oem-5.10", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelrelease": "5.11.0-1029-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" ] }, { "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelrelease": "5.11.0-1029-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" ] }, { @@ -24053,10 +24227,10 @@ "kernelrelease": "5.11.0-1029-azure-5.11", "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" ] }, { @@ -24064,10 +24238,10 @@ "kernelrelease": "5.11.0-1030-gcp-5.11", "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb" ] }, { @@ -24076,11 +24250,11 @@ "target": "ubuntu-hwe-5.11", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb" ] }, { @@ -24088,9 +24262,9 @@ "kernelrelease": "5.13.0-1014-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb" ] }, @@ -24100,9 +24274,9 @@ "target": "ubuntu-azure-5.13", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" ] }, { @@ -24110,21 +24284,10 @@ "kernelrelease": "5.13.0-1015-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" ] }, { @@ -24132,21 +24295,10 @@ "kernelrelease": "5.13.0-1016-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1018_5.13.0-1018.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb" ] }, { @@ -24155,9 +24307,9 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" ] }, { @@ -24165,32 +24317,32 @@ "kernelrelease": "5.13.0-1018-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelrelease": "5.13.0-1019-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" ] }, { "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelrelease": "5.13.0-1019-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" ] }, { @@ -24210,53 +24362,20 @@ "target": "ubuntu-oem-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" ] }, - { - "kernelversion": "24", - "kernelrelease": "5.13.0-1020-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1020-gcp_5.13.0-1020.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1020_5.13.0-1020.24_amd64.deb" - ] - }, { "kernelversion": "26", "kernelrelease": "5.13.0-1022-oem-5.13", "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.13.0-1022-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1022-azure_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1022_5.13.0-1022.26_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.13.0-1022-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1022_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1022-gcp_5.13.0-1022.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" ] }, { @@ -24264,9 +24383,9 @@ "kernelrelease": "5.13.0-1023-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb" ] }, @@ -24275,65 +24394,65 @@ "kernelrelease": "5.13.0-1023-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" ] }, - { - "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" - ] - }, { "kernelversion": "28~20.04.1", "kernelrelease": "5.13.0-1023-gcp-5.13", "target": "ubuntu-gcp-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" ] }, + { + "kernelversion": "28~20.04.1", + "kernelrelease": "5.13.0-1023-oracle-5.13", + "target": "ubuntu-oracle-5.13", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" + ] + }, { "kernelversion": "26~20.04.1", "kernelrelease": "5.13.0-1024-aws-5.13", "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelrelease": "5.13.0-1025-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb" ] }, { "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelrelease": "5.13.0-1025-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" ] }, { @@ -24341,10 +24460,10 @@ "kernelrelease": "5.13.0-1026-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" ] }, { @@ -24352,10 +24471,10 @@ "kernelrelease": "5.13.0-1028-oracle-5.13", "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" ] }, { @@ -24363,9 +24482,9 @@ "kernelrelease": "5.13.0-1028-azure-5.13", "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" ] }, @@ -24374,12 +24493,12 @@ "kernelrelease": "5.13.0-19-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb" ] }, { @@ -24387,12 +24506,12 @@ "kernelrelease": "5.13.0-21-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb" ] }, { @@ -24400,12 +24519,12 @@ "kernelrelease": "5.13.0-22-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" ] }, { @@ -24413,12 +24532,12 @@ "kernelrelease": "5.13.0-28-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb" ] }, { @@ -24426,12 +24545,12 @@ "kernelrelease": "5.13.0-29-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" ] }, { @@ -24439,12 +24558,12 @@ "kernelrelease": "5.13.0-30-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb" ] }, { @@ -24452,12 +24571,12 @@ "kernelrelease": "5.13.0-32-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb" ] }, { @@ -24465,12 +24584,12 @@ "kernelrelease": "5.13.0-36-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" ] }, { @@ -24478,12 +24597,12 @@ "kernelrelease": "5.13.0-37-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" ] }, { @@ -24491,12 +24610,12 @@ "kernelrelease": "5.13.0-40-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb" ] }, { @@ -24505,11 +24624,11 @@ "target": "ubuntu-hwe-5.13", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb" ] }, { @@ -24517,12 +24636,12 @@ "kernelrelease": "5.13.0-43-hwe-5.13", "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb" ] }, { @@ -24532,8932 +24651,7827 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb" - ] - }, - { - "kernelversion": "59~20.04.1", - "kernelrelease": "5.13.0-52-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.14.0-1006-oem-5.14", + "kernelversion": "58", + "kernelrelease": "5.14.0-1051-oem-5.14", "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1006-oem_5.14.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1006_5.14.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1051-oem_5.14.0-1051.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1051_5.14.0-1051.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1051_5.14.0-1051.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1051-oem_5.14.0-1051.58_amd64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.14.0-1007-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "4~20.04.2", + "kernelrelease": "5.15.0-1002-intel-iotg-5.15", + "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.14.0-1008-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.15.0-1015-gke-5.15", + "target": "ubuntu-gke-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1015-gke_5.15.0-1015.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1015_5.15.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1015-gke_5.15.0-1015.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1015_5.15.0-1015.18~20.04.1_amd64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.14.0-1009-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "23~20.04.2", + "kernelrelease": "5.15.0-1017-gcp-5.15", + "target": "ubuntu-gcp-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1009-oem_5.14.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1009_5.14.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1017_5.15.0-1017.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1017_5.15.0-1017.23~20.04.2_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.14.0-1011-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "22~20.04.1", + "kernelrelease": "5.15.0-1017-oracle-5.15", + "target": "ubuntu-oracle-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1017_5.15.0-1017.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1017_5.15.0-1017.22~20.04.1_all.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.14.0-1012-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.15.0-1019-aws-5.15", + "target": "ubuntu-aws-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1012_5.14.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1012-oem_5.14.0-1012.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1019_5.15.0-1019.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1019-aws_5.15.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1019_5.15.0-1019.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1019-aws_5.15.0-1019.23~20.04.1_amd64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.14.0-1013-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.15.0-1019-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1019_5.15.0-1019.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1019_5.15.0-1019.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1019-azure_5.15.0-1019.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1019-azure_5.15.0-1019.24~20.04.1_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.14.0-1021-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "24~20.04.3", + "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1021_5.14.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1021-oem_5.14.0-1021.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.14.0-1022-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "44~20.04.1", + "kernelrelease": "5.15.0-41-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_amd64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.14.0-1023-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "44~20.04.1", + "kernelrelease": "5.15.0-41-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1023-oem_5.14.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1023_5.14.0-1023.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.14.0-1024-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "36", + "kernelrelease": "5.4.0-1032-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1032_5.4.0-1032.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1032_5.4.0-1032.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1032-ibm_5.4.0-1032.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1032-ibm_5.4.0-1032.36_amd64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.14.0-1028-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "55", + "kernelrelease": "5.4.0-1052-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1028_5.14.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1028-oem_5.14.0-1028.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.14.0-1029-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "55", + "kernelrelease": "5.4.0-1052-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1052-gkeop_5.4.0-1052.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1052_5.4.0-1052.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1052_5.4.0-1052.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1052-gkeop_5.4.0-1052.55_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.14.0-1030-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1030-oem_5.14.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1030_5.14.0-1030.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1074-kvm_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1074_5.4.0-1074.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1074-kvm_5.4.0-1074.79_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.14.0-1032-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "79", + "kernelrelease": "5.4.0-1074-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.14.0-1033-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "87", + "kernelrelease": "5.4.0-1081-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1081-gke_5.4.0-1081.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1081_5.4.0-1081.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1081-gke_5.4.0-1081.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1081_5.4.0-1081.87_amd64.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "5.14.0-1035-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "90", + "kernelrelease": "5.4.0-1082-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1035_5.14.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1035-oem_5.14.0-1035.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1082_5.4.0-1082.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1082_5.4.0-1082.90_all.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.14.0-1036-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "91", + "kernelrelease": "5.4.0-1084-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1084_5.4.0-1084.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1084-aws_5.4.0-1084.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1084-aws_5.4.0-1084.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1084_5.4.0-1084.91_all.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.14.0-1037-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "95", + "kernelrelease": "5.4.0-1087-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1037_5.14.0-1037.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1037-oem_5.14.0-1037.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1087_5.4.0-1087.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1087_5.4.0-1087.95_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.14.0-1038-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "95", + "kernelrelease": "5.4.0-1090-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1090_5.4.0-1090.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1090_5.4.0-1090.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1090-azure_5.4.0-1090.95_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1090-azure_5.4.0-1090.95_amd64.deb" ] }, { - "kernelversion": "48", - "kernelrelease": "5.14.0-1043-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "95+cvm1", + "kernelrelease": "5.4.0-1090-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1043-oem_5.14.0-1043.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1043_5.14.0-1043.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1043-oem_5.14.0-1043.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1043_5.14.0-1043.48_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1090_5.4.0-1090.95+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1090-azure-cvm_5.4.0-1090.95+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1090-azure-cvm_5.4.0-1090.95+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1090_5.4.0-1090.95+cvm1_all.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.14.0-1044-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.8.0-1033-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1044_5.14.0-1044.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1044-oem_5.14.0-1044.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1044-oem_5.14.0-1044.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1044_5.14.0-1044.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb" ] }, { - "kernelversion": "4~20.04.2", - "kernelrelease": "5.15.0-1002-intel-iotg-5.15", - "target": "ubuntu-intel-iotg-5.15", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.8.0-1033-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" ] }, { - "kernelversion": "8~20.04.1", - "kernelrelease": "5.15.0-1007-azure-5.15", - "target": "ubuntu-azure-5.15", + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1036-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" ] }, { - "kernelversion": "11~20.04.1", - "kernelrelease": "5.15.0-1009-aws-5.15", - "target": "ubuntu-aws-5.15", + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1036-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1009_5.15.0-1009.11~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1009-aws_5.15.0-1009.11~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" ] }, { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1012-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.15.0-1013-azure-5.15", - "target": "ubuntu-azure-5.15", + "kernelversion": "75", + "kernelrelease": "5.8.0-67-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.15.0-1014-aws-5.15", - "target": "ubuntu-aws-5.15", + "kernelversion": "14", + "kernelrelease": "5.10.0-1013-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" ] }, { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1014-azure-5.15", - "target": "ubuntu-azure-5.15", + "kernelversion": "15", + "kernelrelease": "5.10.0-1014-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb" ] }, { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.15.0-1015-aws-5.15", - "target": "ubuntu-aws-5.15", + "kernelversion": "17", + "kernelrelease": "5.10.0-1016-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb" ] }, { - "kernelversion": "24~20.04.3", - "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", + "kernelversion": "18", + "kernelrelease": "5.10.0-1017-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb" ] }, { - "kernelversion": "25~20.04.2", - "kernelrelease": "5.15.0-25-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelversion": "20", + "kernelrelease": "5.10.0-1019-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-25-generic_5.15.0-25.25~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-25_5.15.0-25.25~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" ] }, { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.15.0-28-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelversion": "22", + "kernelrelease": "5.10.0-1021-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-28-generic_5.15.0-28.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-28_5.15.0-28.29~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" ] }, { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.15.0-32-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelversion": "23", + "kernelrelease": "5.10.0-1022-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-32_5.15.0-32.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-32-generic_5.15.0-32.33~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb" ] }, { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.15.0-41-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelversion": "24", + "kernelrelease": "5.10.0-1023-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.4.0-1013-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "26", + "kernelrelease": "5.10.0-1025-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.4.0-1013-ibm", - "target": "ubuntu-ibm", + "kernelversion": "27", + "kernelrelease": "5.10.0-1026-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.4.0-1015-ibm", - "target": "ubuntu-ibm", + "kernelversion": "30", + "kernelrelease": "5.10.0-1029-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.4.0-1015-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "34", + "kernelrelease": "5.10.0-1033-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.4.0-1021-ibm", - "target": "ubuntu-ibm", + "kernelversion": "40", + "kernelrelease": "5.10.0-1038-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws", + "kernelversion": "46", + "kernelrelease": "5.10.0-1044-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-kvm", - "target": "ubuntu-kvm", + "kernelversion": "47", + "kernelrelease": "5.10.0-1045-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "51", + "kernelrelease": "5.10.0-1049-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws", + "kernelversion": "52", + "kernelrelease": "5.10.0-1050-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "53", + "kernelrelease": "5.10.0-1051-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-azure", - "target": "ubuntu-azure", + "kernelversion": "55", + "kernelrelease": "5.10.0-1053-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-kvm", - "target": "ubuntu-kvm", + "kernelversion": "58", + "kernelrelease": "5.10.0-1055-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.4.0-1035-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "61", + "kernelrelease": "5.10.0-1057-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1035-gkeop_5.4.0-1035.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.4.0-1035-azure", - "target": "ubuntu-azure", + "kernelversion": "13~20.04.1", + "kernelrelease": "5.11.0-1012-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.4.0-1039-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "14~20.04.1", + "kernelrelease": "5.11.0-1013-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.4.0-1039-kvm", - "target": "ubuntu-kvm", + "kernelversion": "14~20.04.1", + "kernelrelease": "5.11.0-1013-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.4.0-1040-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "15~20.04.1", + "kernelrelease": "5.11.0-1014-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.4.0-1040-kvm", - "target": "ubuntu-kvm", + "kernelversion": "16~20.04.1", + "kernelrelease": "5.11.0-1014-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.4.0-1041-kvm", - "target": "ubuntu-kvm", + "kernelversion": "16~20.04.1", + "kernelrelease": "5.11.0-1015-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.4.0-1041-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1041-gkeop_5.4.0-1041.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "5.4.0-1050-kvm", - "target": "ubuntu-kvm", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.11.0-1016-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1054-gcp", - "target": "ubuntu-gcp", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1054-gcp_5.4.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1054_5.4.0-1054.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1054-oracle", - "target": "ubuntu-oracle", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { - "kernelversion": "56", - "kernelrelease": "5.4.0-1054-kvm", - "target": "ubuntu-kvm", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.11.0-1017-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.4.0-1055-gcp", - "target": "ubuntu-gcp", + "kernelversion": "19~20.04.1", + "kernelrelease": "5.11.0-1017-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.4.0-1055-oracle", - "target": "ubuntu-oracle", + "kernelversion": "20~20.04.2", + "kernelrelease": "5.11.0-1018-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1056-kvm", - "target": "ubuntu-kvm", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1056-azure", - "target": "ubuntu-azure", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "5.4.0-1057-gcp", - "target": "ubuntu-gcp", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.11.0-1019-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "5.4.0-1057-oracle", - "target": "ubuntu-oracle", + "kernelversion": "21~20.04.2", + "kernelrelease": "5.11.0-1020-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-oracle", - "target": "ubuntu-oracle", + "kernelversion": "21~20.04.1", + "kernelrelease": "5.11.0-1020-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-gcp", - "target": "ubuntu-gcp", + "kernelversion": "21~20.04.1", + "kernelrelease": "5.11.0-1020-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-azure", - "target": "ubuntu-azure", + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1020-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-kvm", - "target": "ubuntu-kvm", + "kernelversion": "22~20.04.2", + "kernelrelease": "5.11.0-1021-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-gke", - "target": "ubuntu-gke", + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1021-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" ] }, { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws", + "kernelversion": "22~20.04.1", + "kernelrelease": "5.11.0-1021-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" ] }, { - "kernelversion": "63", - "kernelrelease": "5.4.0-1060-aws", - "target": "ubuntu-aws", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1021-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" ] }, { - "kernelversion": "63", - "kernelrelease": "5.4.0-1060-gke", - "target": "ubuntu-gke", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1060-gke_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1060_5.4.0-1060.63_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { - "kernelversion": "63", - "kernelrelease": "5.4.0-1060-kvm", - "target": "ubuntu-kvm", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1060-kvm_5.4.0-1060.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-kvm", - "target": "ubuntu-kvm", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-1022-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" ] }, { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-azure", - "target": "ubuntu-azure", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1022-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb" ] }, { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" ] }, { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-gke", - "target": "ubuntu-gke", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-kvm", - "target": "ubuntu-kvm", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.11.0-1023-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" ] }, { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-gke", - "target": "ubuntu-gke", + "kernelversion": "25~20.04.1", + "kernelrelease": "5.11.0-1023-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" ] }, { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-azure", - "target": "ubuntu-azure", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.11.0-1024-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "5.4.0-1062-gcp", - "target": "ubuntu-gcp", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "5.4.0-1062-oracle", - "target": "ubuntu-oracle", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-azure", - "target": "ubuntu-azure", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-1025-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-aws", - "target": "ubuntu-aws", + "kernelversion": "29~20.04.1", + "kernelrelease": "5.11.0-1026-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-kvm", - "target": "ubuntu-kvm", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-gke", - "target": "ubuntu-gke", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" ] }, { - "kernelversion": "66+cvm3", - "kernelrelease": "5.4.0-1063-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.11.0-1027-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "5.4.0-1063-oracle", - "target": "ubuntu-oracle", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "5.4.0-1063-gcp", - "target": "ubuntu-gcp", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.11.0-1028-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-kvm", - "target": "ubuntu-kvm", + "kernelversion": "31~20.04.2", + "kernelrelease": "5.11.0-1028-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1064-kvm_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1064_5.4.0-1064.67_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-azure", - "target": "ubuntu-azure", + "kernelversion": "32~20.04.1", + "kernelrelease": "5.11.0-1028-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" ] }, { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-aws", - "target": "ubuntu-aws", + "kernelversion": "33~20.04.3", + "kernelrelease": "5.11.0-1029-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "5.4.0-1064-oracle", - "target": "ubuntu-oracle", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.11.0-22-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "5.4.0-1064-gcp", - "target": "ubuntu-gcp", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.11.0-25-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "5.4.0-1065-gcp", - "target": "ubuntu-gcp", + "kernelversion": "29~20.04.1", + "kernelrelease": "5.11.0-27-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-gke", - "target": "ubuntu-gke", + "kernelversion": "36~20.04.1", + "kernelrelease": "5.11.0-34-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-kvm", - "target": "ubuntu-kvm", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.11.0-36-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-azure", - "target": "ubuntu-azure", + "kernelversion": "41~20.04.2", + "kernelrelease": "5.11.0-37-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" ] }, { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws", + "kernelversion": "42~20.04.1", + "kernelrelease": "5.11.0-38-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws", + "kernelversion": "44~20.04.2", + "kernelrelease": "5.11.0-40-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" ] }, { - "kernelversion": "69", - "kernelrelease": "5.4.0-1066-gke", - "target": "ubuntu-gke", + "kernelversion": "45~20.04.1", + "kernelrelease": "5.11.0-41-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1067-oracle", - "target": "ubuntu-oracle", + "kernelversion": "47~20.04.2", + "kernelrelease": "5.11.0-43-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" ] }, { - "kernelversion": "71", - "kernelrelease": "5.4.0-1068-azure", - "target": "ubuntu-azure", + "kernelversion": "48~20.04.2", + "kernelrelease": "5.11.0-44-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" ] }, { - "kernelversion": "71", - "kernelrelease": "5.4.0-1068-gke", - "target": "ubuntu-gke", + "kernelversion": "51~20.04.1", + "kernelrelease": "5.11.0-46-hwe-5.11", + "target": "ubuntu-hwe-5.11", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb" ] }, { - "kernelversion": "71+cvm1", - "kernelrelease": "5.4.0-1068-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "9~20.04.2", + "kernelrelease": "5.13.0-1008-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "5.4.0-1068-oracle", - "target": "ubuntu-oracle", + "kernelversion": "9~20.04.3", + "kernelrelease": "5.13.0-1008-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1068_5.4.0-1068.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1068-oracle_5.4.0-1068.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-gcp", - "target": "ubuntu-gcp", + "kernelversion": "8", + "kernelrelease": "5.13.0-1008-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws", + "kernelversion": "10~20.04.2", + "kernelrelease": "5.13.0-1009-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1069-gke", - "target": "ubuntu-gke", + "kernelversion": "9", + "kernelrelease": "5.13.0-1009-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1069_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1069-gke_5.4.0-1069.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1069-azure", - "target": "ubuntu-azure", + "kernelversion": "10", + "kernelrelease": "5.13.0-1009-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" ] }, { - "kernelversion": "74", - "kernelrelease": "5.4.0-1070-aws", - "target": "ubuntu-aws", + "kernelversion": "10", + "kernelrelease": "5.13.0-1010-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1070_5.4.0-1070.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1070-aws_5.4.0-1070.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb" ] }, { - "kernelversion": "73", - "kernelrelease": "5.4.0-1070-azure", - "target": "ubuntu-azure", + "kernelversion": "11", + "kernelrelease": "5.13.0-1010-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" ] }, { - "kernelversion": "73+cvm1", - "kernelrelease": "5.4.0-1070-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "12~20.04.1", + "kernelrelease": "5.13.0-1011-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1070-oracle", - "target": "ubuntu-oracle", + "kernelversion": "11", + "kernelrelease": "5.13.0-1011-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" ] }, { - "kernelversion": "74", - "kernelrelease": "5.4.0-1071-azure", - "target": "ubuntu-azure", + "kernelversion": "13~20.04.2", + "kernelrelease": "5.13.0-1011-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1071_5.4.0-1071.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1071-azure_5.4.0-1071.74_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", + "kernelversion": "13~20.04.1", + "kernelrelease": "5.13.0-1012-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-kvm", - "target": "ubuntu-kvm", + "kernelversion": "14~20.04.1", + "kernelrelease": "5.13.0-1012-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1071-kvm_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1071-kvm_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1071_5.4.0-1071.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", + "kernelversion": "15~20.04.1", + "kernelrelease": "5.13.0-1012-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gcp", - "target": "ubuntu-gcp", + "kernelversion": "16", + "kernelrelease": "5.13.0-1012-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1071-gcp_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1071-oracle", - "target": "ubuntu-oracle", + "kernelversion": "16~20.04.1", + "kernelrelease": "5.13.0-1013-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1072-oracle", - "target": "ubuntu-oracle", + "kernelversion": "15", + "kernelrelease": "5.13.0-1014-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1072-oracle_5.4.0-1072.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1072_5.4.0-1072.78_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", - "target": "ubuntu-aws", + "kernelversion": "18", + "kernelrelease": "5.13.0-1014-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", - "target": "ubuntu-gcp", + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1015-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" ] }, { - "kernelversion": "76", - "kernelrelease": "5.4.0-1073-azure", - "target": "ubuntu-azure", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.13.0-1016-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" ] }, { - "kernelversion": "76+cvm1", - "kernelrelease": "5.4.0-1073-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gke", - "target": "ubuntu-gke", + "kernelversion": "19~20.04.1", + "kernelrelease": "5.13.0-1017-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-aws", - "target": "ubuntu-aws", + "kernelversion": "19", + "kernelrelease": "5.13.0-1017-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1074-aws_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1074_5.4.0-1074.79_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gcp", - "target": "ubuntu-gcp", + "kernelversion": "21", + "kernelrelease": "5.13.0-1017-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1074-gcp_5.4.0-1074.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1074-azure", - "target": "ubuntu-azure", + "kernelversion": "23~20.04.1", + "kernelrelease": "5.13.0-1019-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" ] }, { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-aws", - "target": "ubuntu-aws", + "kernelversion": "23", + "kernelrelease": "5.13.0-1019-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" ] }, { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-gcp", - "target": "ubuntu-gcp", + "kernelversion": "23~20.04.2", + "kernelrelease": "5.13.0-1021-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" ] }, { - "kernelversion": "78", - "kernelrelease": "5.4.0-1075-azure", - "target": "ubuntu-azure", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1021-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1075_5.4.0-1075.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1075-azure_5.4.0-1075.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" ] }, { - "kernelversion": "79", - "kernelrelease": "5.4.0-1076-azure", - "target": "ubuntu-azure", + "kernelversion": "25~20.04.1", + "kernelrelease": "5.13.0-1021-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1076_5.4.0-1076.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1076-azure_5.4.0-1076.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" ] }, { - "kernelversion": "81", - "kernelrelease": "5.4.0-1078-azure", - "target": "ubuntu-azure", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1021-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" ] }, { - "kernelversion": "81+cvm1", - "kernelrelease": "5.4.0-1078-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.13.0-1022-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" ] }, { - "kernelversion": "87", - "kernelrelease": "5.4.0-1079-oracle", - "target": "ubuntu-oracle", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-1022-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" ] }, { - "kernelversion": "83", - "kernelrelease": "5.4.0-1080-azure", - "target": "ubuntu-azure", + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1024-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb" ] }, { - "kernelversion": "88", - "kernelrelease": "5.4.0-1081-aws", - "target": "ubuntu-aws", + "kernelversion": "27~20.04.1", + "kernelrelease": "5.13.0-1025-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" ] }, { - "kernelversion": "90+cvm2", - "kernelrelease": "5.4.0-1085-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-1025-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb" ] }, { - "kernelversion": "91", - "kernelrelease": "5.4.0-1086-azure", - "target": "ubuntu-azure", + "kernelversion": "32", + "kernelrelease": "5.13.0-1026-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" ] }, { - "kernelversion": "137", - "kernelrelease": "5.4.0-121", - "target": "ubuntu-generic", + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { - "kernelversion": "138", - "kernelrelease": "5.4.0-122", - "target": "ubuntu-generic", + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1027-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb" ] }, { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.13.0-1028-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb" ] }, { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "35", + "kernelrelease": "5.13.0-1028-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" ] }, { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "32~20.04.1", + "kernelrelease": "5.13.0-1029-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" ] }, { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelversion": "34~20.04.1", + "kernelrelease": "5.13.0-1029-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb" ] }, { - "kernelversion": "75", - "kernelrelease": "5.8.0-67-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "36", + "kernelrelease": "5.13.0-1029-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.10.0-1013-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "36~20.04.1", + "kernelrelease": "5.13.0-1030-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.10.0-1014-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1030-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.10.0-1016-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "35~20.04.1", + "kernelrelease": "5.13.0-1031-aws-5.13", + "target": "ubuntu-aws-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.10.0-1017-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "37~20.04.1", + "kernelrelease": "5.13.0-1031-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.10.0-1019-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "37~20.04.1", + "kernelrelease": "5.13.0-1031-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.10.0-1021-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.13.0-1033-gcp-5.13", + "target": "ubuntu-gcp-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.10.0-1022-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "39~20.04.1", + "kernelrelease": "5.13.0-1033-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.10.0-1023-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.13.0-1034-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.10.0-1025-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "43~20.04.1", + "kernelrelease": "5.13.0-1036-oracle-5.13", + "target": "ubuntu-oracle-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.10.0-1026-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "23~20.04.2", + "kernelrelease": "5.13.0-23-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.10.0-1029-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.13.0-25-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.10.0-1033-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "29~20.04.1", + "kernelrelease": "5.13.0-27-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.10.0-1038-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.13.0-35-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "5.10.0-1044-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "44~20.04.1", + "kernelrelease": "5.13.0-39-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "5.10.0-1045-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "54~20.04.1", + "kernelrelease": "5.13.0-48-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" ] }, { - "kernelversion": "51", - "kernelrelease": "5.10.0-1049-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "58~20.04.1", + "kernelrelease": "5.13.0-51-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "5.10.0-1050-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "59~20.04.1", + "kernelrelease": "5.13.0-52-hwe-5.13", + "target": "ubuntu-hwe-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb" ] }, { - "kernelversion": "53", - "kernelrelease": "5.10.0-1051-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "4", + "kernelrelease": "5.14.0-1004-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" ] }, { - "kernelversion": "55", - "kernelrelease": "5.10.0-1053-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "5", + "kernelrelease": "5.14.0-1005-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.10.0-1055-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "7", + "kernelrelease": "5.14.0-1007-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "5.10.0-1057-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "8", + "kernelrelease": "5.14.0-1008-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" ] }, { - "kernelversion": "13~20.04.1", - "kernelrelease": "5.11.0-1012-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "13", + "kernelrelease": "5.14.0-1013-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" ] }, { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "19", + "kernelrelease": "5.14.0-1018-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" ] }, { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "22", + "kernelrelease": "5.14.0-1020-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb" ] }, { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.11.0-1014-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "24", + "kernelrelease": "5.14.0-1022-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb" ] }, { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.11.0-1014-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "26", + "kernelrelease": "5.14.0-1024-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" ] }, { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.11.0-1015-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "30", + "kernelrelease": "5.14.0-1027-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" ] }, { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "32", + "kernelrelease": "5.14.0-1029-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" ] }, { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "34", + "kernelrelease": "5.14.0-1031-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "36", + "kernelrelease": "5.14.0-1033-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "40", + "kernelrelease": "5.14.0-1036-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb" ] }, { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "42", + "kernelrelease": "5.14.0-1038-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb" ] }, { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.11.0-1017-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "47", + "kernelrelease": "5.14.0-1042-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb" ] }, { - "kernelversion": "20~20.04.2", - "kernelrelease": "5.11.0-1018-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "49", + "kernelrelease": "5.14.0-1044-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1044-oem_5.14.0-1044.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1044_5.14.0-1044.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1044_5.14.0-1044.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1044-oem_5.14.0-1044.49_amd64.deb" ] }, { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "51", + "kernelrelease": "5.14.0-1045-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1045-oem_5.14.0-1045.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1045-oem_5.14.0-1045.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1045_5.14.0-1045.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1045_5.14.0-1045.51_all.deb" ] }, { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "53", + "kernelrelease": "5.14.0-1046-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1046_5.14.0-1046.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1046_5.14.0-1046.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1046-oem_5.14.0-1046.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1046-oem_5.14.0-1046.53_amd64.deb" ] }, { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "55", + "kernelrelease": "5.14.0-1048-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1048-oem_5.14.0-1048.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1048_5.14.0-1048.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1048-oem_5.14.0-1048.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1048_5.14.0-1048.55_all.deb" ] }, { - "kernelversion": "21~20.04.2", - "kernelrelease": "5.11.0-1020-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "56", + "kernelrelease": "5.14.0-1049-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1049-oem_5.14.0-1049.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1049_5.14.0-1049.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1049_5.14.0-1049.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1049-oem_5.14.0-1049.56_amd64.deb" ] }, { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "57", + "kernelrelease": "5.14.0-1050-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1050_5.14.0-1050.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1050_5.14.0-1050.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1050-oem_5.14.0-1050.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1050-oem_5.14.0-1050.57_amd64.deb" ] }, { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "5~20.04.1", + "kernelrelease": "5.15.0-1003-intel-iotg-5.15", + "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb" ] }, { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1020-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1006-gcp-5.15", + "target": "ubuntu-gcp-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb" ] }, { - "kernelversion": "22~20.04.2", - "kernelrelease": "5.11.0-1021-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "8~20.04.1", + "kernelrelease": "5.15.0-1007-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb" ] }, { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1007-oracle-5.15", + "target": "ubuntu-oracle-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb" ] }, { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "9~20.04.1", + "kernelrelease": "5.15.0-1008-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb" ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1021-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "11~20.04.1", + "kernelrelease": "5.15.0-1008-intel-iotg-5.15", + "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb" ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "14~20.04.1", + "kernelrelease": "5.15.0-1010-intel-iotg-5.15", + "target": "ubuntu-intel-iotg-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb" ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "14~20.04.1", + "kernelrelease": "5.15.0-1011-gke-5.15", + "target": "ubuntu-gke-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1011_5.15.0-1011.14~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1011-gke_5.15.0-1011.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1011_5.15.0-1011.14~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1011-gke_5.15.0-1011.14~20.04.1_amd64.deb" ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.15.0-1013-gcp-5.15", + "target": "ubuntu-gcp-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1013_5.15.0-1013.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1013_5.15.0-1013.18~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18~20.04.1_amd64.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1022-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1013-oracle-5.15", + "target": "ubuntu-oracle-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1013_5.15.0-1013.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1013_5.15.0-1013.17~20.04.1_all.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1014-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_amd64.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1014-gke-5.15", + "target": "ubuntu-gke-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1014-gke_5.15.0-1014.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1014-gke_5.15.0-1014.17~20.04.1_amd64.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "19~20.04.1", + "kernelrelease": "5.15.0-1015-aws-5.15", + "target": "ubuntu-aws-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb" ] }, { - "kernelversion": "25~20.04.1", - "kernelrelease": "5.11.0-1023-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "21~20.04.1", + "kernelrelease": "5.15.0-1016-gcp-5.15", + "target": "ubuntu-gcp-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1016_5.15.0-1016.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1016_5.15.0-1016.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21~20.04.1_amd64.deb" ] }, { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.11.0-1024-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.15.0-1016-oracle-5.15", + "target": "ubuntu-oracle-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1016_5.15.0-1016.20~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1016_5.15.0-1016.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20~20.04.1_amd64.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "21~20.04.1", + "kernelrelease": "5.15.0-1017-aws-5.15", + "target": "ubuntu-aws-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1017-aws_5.15.0-1017.21~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1017_5.15.0-1017.21~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1017-aws_5.15.0-1017.21~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1017_5.15.0-1017.21~20.04.1_all.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "20~20.04.1", + "kernelrelease": "5.15.0-1017-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1017_5.15.0-1017.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1017_5.15.0-1017.20~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1017-azure_5.15.0-1017.20~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1017-azure_5.15.0-1017.20~20.04.1_amd64.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" ] }, { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.11.0-1026-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "34~20.04.1", + "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "45~20.04.1", + "kernelrelease": "5.15.0-42-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-42-lowlatency_5.15.0-42.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-42_5.15.0-42.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-42-lowlatency_5.15.0-42.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-42_5.15.0-42.45~20.04.1_all.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "46~20.04.1", + "kernelrelease": "5.15.0-43-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "46~20.04.1", + "kernelrelease": "5.15.0-43-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-43-generic_5.15.0-43.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-43-generic_5.15.0-43.46~20.04.1_amd64.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "49~20.04.1", + "kernelrelease": "5.15.0-46-hwe-5.15", + "target": "ubuntu-hwe-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-46-generic_5.15.0-46.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-46-generic_5.15.0-46.49~20.04.1_amd64.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "49~20.04.1", + "kernelrelease": "5.15.0-46-lowlatency-hwe-5.15", + "target": "ubuntu-lowlatency-hwe-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb" ] }, { - "kernelversion": "31~20.04.2", - "kernelrelease": "5.11.0-1028-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "113", + "kernelrelease": "5.4.0-100-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1028-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "6", + "kernelrelease": "5.4.0-1005-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" ] }, { - "kernelversion": "33~20.04.3", - "kernelrelease": "5.11.0-1029-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "7", + "kernelrelease": "5.4.0-1006-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-22-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "8", + "kernelrelease": "5.4.0-1007-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-25-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "9", + "kernelrelease": "5.4.0-1008-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb" ] }, { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.11.0-27-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "9", + "kernelrelease": "5.4.0-1008-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" ] }, { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.11.0-34-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "10", + "kernelrelease": "5.4.0-1009-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" ] }, { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.11.0-36-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "11", + "kernelrelease": "5.4.0-1010-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb" ] }, { - "kernelversion": "41~20.04.2", - "kernelrelease": "5.11.0-37-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "11", + "kernelrelease": "5.4.0-1010-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "42~20.04.1", - "kernelrelease": "5.11.0-38-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" ] }, { - "kernelversion": "44~20.04.2", - "kernelrelease": "5.11.0-40-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb" ] }, { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.11.0-41-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { - "kernelversion": "47~20.04.2", - "kernelrelease": "5.11.0-43-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" ] }, { - "kernelversion": "48~20.04.2", - "kernelrelease": "5.11.0-44-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "11", + "kernelrelease": "5.4.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" ] }, { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.11.0-46-hwe-5.11", - "target": "ubuntu-hwe-5.11", + "kernelversion": "12", + "kernelrelease": "5.4.0-1011-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb" ] }, { - "kernelversion": "9~20.04.2", - "kernelrelease": "5.13.0-1008-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "12", + "kernelrelease": "5.4.0-1012-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" ] }, { - "kernelversion": "9~20.04.3", - "kernelrelease": "5.13.0-1008-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "13", + "kernelrelease": "5.4.0-1012-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.13.0-1008-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelversion": "13", + "kernelrelease": "5.4.0-1012-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.13.0-1008-kvm", - "target": "ubuntu-kvm", + "kernelversion": "14", + "kernelrelease": "5.4.0-1013-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1008-kvm_5.13.0-1008.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb" ] }, { - "kernelversion": "10~20.04.2", - "kernelrelease": "5.13.0-1009-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "14", + "kernelrelease": "5.4.0-1013-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.13.0-1009-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelversion": "15", + "kernelrelease": "5.4.0-1014-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "15", + "kernelrelease": "5.4.0-1014-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-aws", - "target": "ubuntu-aws", + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1009-aws_5.13.0-1009.10_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-azure", - "target": "ubuntu-azure", + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1009-azure_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1009_5.13.0-1009.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1010-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.13.0-1010-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "15", + "kernelrelease": "5.4.0-1015-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.13.0-1010-azure", - "target": "ubuntu-azure", + "kernelversion": "16", + "kernelrelease": "5.4.0-1015-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1010-azure_5.13.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1010_5.13.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.13.0-1010-kvm", - "target": "ubuntu-kvm", + "kernelversion": "16", + "kernelrelease": "5.4.0-1015-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1010-kvm_5.13.0-1010.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" ] }, { - "kernelversion": "12~20.04.1", - "kernelrelease": "5.13.0-1011-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "16", + "kernelrelease": "5.4.0-1016-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.13.0-1011-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelversion": "17", + "kernelrelease": "5.4.0-1016-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" ] }, { - "kernelversion": "13~20.04.2", - "kernelrelease": "5.13.0-1011-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "17", + "kernelrelease": "5.4.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" ] }, { - "kernelversion": "13~20.04.1", - "kernelrelease": "5.13.0-1012-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "19", + "kernelrelease": "5.4.0-1017-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" ] }, { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.13.0-1012-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" ] }, { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1012-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1012-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" ] }, { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.13.0-1013-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "18", + "kernelrelease": "5.4.0-1018-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.13.0-1014-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelversion": "19", + "kernelrelease": "5.4.0-1018-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.13.0-1014-aws", - "target": "ubuntu-aws", + "kernelversion": "20", + "kernelrelease": "5.4.0-1018-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1014-aws_5.13.0-1014.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.13.0-1014-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "19", + "kernelrelease": "5.4.0-1019-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb" ] }, { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1015-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "19", + "kernelrelease": "5.4.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" ] }, { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.13.0-1016-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "19", + "kernelrelease": "5.4.0-1019-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" ] }, { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "21", + "kernelrelease": "5.4.0-1019-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" ] }, { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-azure", + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1017-azure_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1017_5.13.0-1017.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-aws", - "target": "ubuntu-aws", + "kernelversion": "20", + "kernelrelease": "5.4.0-1020-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1017-aws_5.13.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelversion": "22", + "kernelrelease": "5.4.0-1020-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1017-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelrelease": "5.4.0-1021-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" ] }, { "kernelversion": "21", - "kernelrelease": "5.13.0-1017-oracle", - "target": "ubuntu-oracle", + "kernelrelease": "5.4.0-1021-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1017-oracle_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1017_5.13.0-1017.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" ] }, { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.13.0-1019-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "21", + "kernelrelease": "5.4.0-1021-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1019-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "21", + "kernelrelease": "5.4.0-1021-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1019-gcp", - "target": "ubuntu-gcp", + "kernelversion": "22", + "kernelrelease": "5.4.0-1021-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1019_5.13.0-1019.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb" ] }, { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-1021-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "23", + "kernelrelease": "5.4.0-1021-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1021-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" ] }, { - "kernelversion": "25~20.04.1", - "kernelrelease": "5.13.0-1021-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb" ] }, { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1021-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1022-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "22", + "kernelrelease": "5.4.0-1022-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" ] }, { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1022-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "23", + "kernelrelease": "5.4.0-1022-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" ] }, { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1024-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "23", + "kernelrelease": "5.4.0-1023-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb" ] }, { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.13.0-1025-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "23", + "kernelrelease": "5.4.0-1023-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" ] }, { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1025-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "24", + "kernelrelease": "5.4.0-1023-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.13.0-1026-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "25", + "kernelrelease": "5.4.0-1023-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb" ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb" ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.13.0-1028-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.13.0-1028-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "24", + "kernelrelease": "5.4.0-1024-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" ] }, { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1029-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "25", + "kernelrelease": "5.4.0-1024-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" ] }, { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.13.0-1029-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.13.0-1029-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb" ] }, { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.13.0-1030-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb" ] }, { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1030-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "25", + "kernelrelease": "5.4.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" ] }, { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1031-aws-5.13", - "target": "ubuntu-aws-5.13", + "kernelversion": "26", + "kernelrelease": "5.4.0-1025-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb" ] }, { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.13.0-1031-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "26", + "kernelrelease": "5.4.0-1026-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" ] }, { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.13.0-1031-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "27", + "kernelrelease": "5.4.0-1026-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" ] }, { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-1033-gcp-5.13", - "target": "ubuntu-gcp-5.13", + "kernelversion": "27", + "kernelrelease": "5.4.0-1026-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" ] }, { - "kernelversion": "39~20.04.1", - "kernelrelease": "5.13.0-1033-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "29", + "kernelrelease": "5.4.0-1026-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb" ] }, { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-1034-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "28", + "kernelrelease": "5.4.0-1027-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb" ] }, { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.13.0-1036-oracle-5.13", - "target": "ubuntu-oracle-5.13", + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" ] }, { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-23-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" ] }, { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-25-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelversion": "29", + "kernelrelease": "5.4.0-1028-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" ] }, { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-27-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelversion": "32", + "kernelrelease": "5.4.0-1028-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb" ] }, { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-35-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelversion": "30", + "kernelrelease": "5.4.0-1029-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" ] }, { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.13.0-39-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelversion": "30", + "kernelrelease": "5.4.0-1029-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" ] }, { - "kernelversion": "54~20.04.1", - "kernelrelease": "5.13.0-48-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelversion": "31", + "kernelrelease": "5.4.0-1029-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb" ] }, { - "kernelversion": "58~20.04.1", - "kernelrelease": "5.13.0-51-hwe-5.13", - "target": "ubuntu-hwe-5.13", + "kernelversion": "31", + "kernelrelease": "5.4.0-1029-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" ] }, { - "kernelversion": "4", - "kernelrelease": "5.14.0-1004-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "33", + "kernelrelease": "5.4.0-1029-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1029_5.4.0-1029.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1029-ibm_5.4.0-1029.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1029_5.4.0-1029.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1029-ibm_5.4.0-1029.33_amd64.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.14.0-1005-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "31", + "kernelrelease": "5.4.0-1030-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.14.0-1018-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "32", + "kernelrelease": "5.4.0-1031-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.14.0-1020-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "32", + "kernelrelease": "5.4.0-1031-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.14.0-1027-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "32", + "kernelrelease": "5.4.0-1031-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.14.0-1031-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "35", + "kernelrelease": "5.4.0-1031-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1031-ibm_5.4.0-1031.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1031-ibm_5.4.0-1031.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1031_5.4.0-1031.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1031_5.4.0-1031.35_all.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "5.14.0-1042-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { - "kernelversion": "5~20.04.1", - "kernelrelease": "5.15.0-1003-intel-iotg-5.15", - "target": "ubuntu-intel-iotg-5.15", + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb" ] }, { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1006-gcp-5.15", - "target": "ubuntu-gcp-5.15", + "kernelversion": "33", + "kernelrelease": "5.4.0-1032-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" ] }, { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1007-oracle-5.15", - "target": "ubuntu-oracle-5.15", + "kernelversion": "34", + "kernelrelease": "5.4.0-1032-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" ] }, { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1008-azure-5.15", - "target": "ubuntu-azure-5.15", + "kernelversion": "34", + "kernelrelease": "5.4.0-1032-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" ] }, { - "kernelversion": "11~20.04.1", - "kernelrelease": "5.15.0-1008-intel-iotg-5.15", - "target": "ubuntu-intel-iotg-5.15", + "kernelversion": "34", + "kernelrelease": "5.4.0-1033-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" ] }, { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.15.0-1010-intel-iotg-5.15", - "target": "ubuntu-intel-iotg-5.15", + "kernelversion": "34", + "kernelrelease": "5.4.0-1033-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" ] }, { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" ] }, { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { - "kernelversion": "113", - "kernelrelease": "5.4.0-100", - "target": "ubuntu-generic", + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.4.0-1005-ibm", - "target": "ubuntu-ibm", + "kernelversion": "35", + "kernelrelease": "5.4.0-1034-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.4.0-1006-ibm", - "target": "ubuntu-ibm", + "kernelversion": "37", + "kernelrelease": "5.4.0-1034-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.4.0-1007-ibm", - "target": "ubuntu-ibm", + "kernelversion": "36", + "kernelrelease": "5.4.0-1034-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.4.0-1008-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "37", + "kernelrelease": "5.4.0-1035-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1008-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.4.0-1009-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "37", + "kernelrelease": "5.4.0-1035-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.4.0-1010-ibm", - "target": "ubuntu-ibm", + "kernelversion": "36", + "kernelrelease": "5.4.0-1035-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.4.0-1010-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "38", + "kernelrelease": "5.4.0-1035-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", + "kernelversion": "38", + "kernelrelease": "5.4.0-1036-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelversion": "38", + "kernelrelease": "5.4.0-1036-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-gcp", + "kernelversion": "39", + "kernelrelease": "5.4.0-1036-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-kvm", + "kernelversion": "37", + "kernelrelease": "5.4.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.4.0-1011-gkeop", + "kernelversion": "37", + "kernelrelease": "5.4.0-1036-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.4.0-1012-azure", - "target": "ubuntu-azure", + "kernelversion": "39", + "kernelrelease": "5.4.0-1037-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.4.0-1012-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "39", + "kernelrelease": "5.4.0-1037-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.4.0-1012-ibm", - "target": "ubuntu-ibm", + "kernelversion": "40", + "kernelrelease": "5.4.0-1037-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.4.0-1014-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "40", + "kernelrelease": "5.4.0-1037-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.4.0-1014-ibm", - "target": "ubuntu-ibm", + "kernelversion": "38", + "kernelrelease": "5.4.0-1037-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-oracle", - "target": "ubuntu-oracle", + "kernelversion": "38", + "kernelrelease": "5.4.0-1037-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-kvm", - "target": "ubuntu-kvm", + "kernelversion": "40", + "kernelrelease": "5.4.0-1038-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", + "kernelversion": "41", + "kernelrelease": "5.4.0-1038-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-gcp", + "kernelversion": "41", + "kernelrelease": "5.4.0-1038-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.4.0-1016-azure", - "target": "ubuntu-azure", + "kernelversion": "39", + "kernelrelease": "5.4.0-1038-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.4.0-1016-gkeop", + "kernelversion": "39", + "kernelrelease": "5.4.0-1038-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.4.0-1017-aws", + "kernelversion": "41", + "kernelrelease": "5.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.4.0-1017-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-gcp", - "target": "ubuntu-gcp", + "kernelversion": "41", + "kernelrelease": "5.4.0-1039-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-oracle", - "target": "ubuntu-oracle", + "kernelversion": "41", + "kernelrelease": "5.4.0-1039-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws", + "kernelversion": "40", + "kernelrelease": "5.4.0-1039-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-kvm", + "kernelversion": "40", + "kernelrelease": "5.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.4.0-1018-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "42", + "kernelrelease": "5.4.0-1039-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.4.0-1018-ibm", - "target": "ubuntu-ibm", + "kernelversion": "118", + "kernelrelease": "5.4.0-104-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.4.0-1019-oracle", - "target": "ubuntu-oracle", + "kernelversion": "42", + "kernelrelease": "5.4.0-1040-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.4.0-1019-azure", - "target": "ubuntu-azure", + "kernelversion": "43", + "kernelrelease": "5.4.0-1040-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.4.0-1019-gcp", - "target": "ubuntu-gcp", + "kernelversion": "41", + "kernelrelease": "5.4.0-1040-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.4.0-1019-ibm", - "target": "ubuntu-ibm", + "kernelversion": "41", + "kernelrelease": "5.4.0-1040-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-azure", + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-kvm", - "target": "ubuntu-kvm", + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-aws", + "kernelversion": "43", + "kernelrelease": "5.4.0-1041-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.4.0-1020-ibm", - "target": "ubuntu-ibm", + "kernelversion": "44", + "kernelrelease": "5.4.0-1041-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws", + "kernelversion": "44", + "kernelrelease": "5.4.0-1041-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-kvm", + "kernelversion": "42", + "kernelrelease": "5.4.0-1041-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-oracle", + "kernelversion": "45", + "kernelrelease": "5.4.0-1042-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-gcp", + "kernelversion": "45", + "kernelrelease": "5.4.0-1042-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.4.0-1021-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "44", + "kernelrelease": "5.4.0-1042-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-gcp", - "target": "ubuntu-gcp", + "kernelversion": "45", + "kernelrelease": "5.4.0-1043-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-aws", + "kernelversion": "45", + "kernelrelease": "5.4.0-1043-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + ] + }, + { + "kernelversion": "45", + "kernelrelease": "5.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-azure", - "target": "ubuntu-azure", + "kernelversion": "46", + "kernelrelease": "5.4.0-1043-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-oracle", + "kernelversion": "46", + "kernelrelease": "5.4.0-1043-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.4.0-1022-gkeop", + "kernelversion": "44", + "kernelrelease": "5.4.0-1043-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.4.0-1023-kvm", - "target": "ubuntu-kvm", + "kernelversion": "46", + "kernelrelease": "5.4.0-1044-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.4.0-1023-azure", - "target": "ubuntu-azure", + "kernelversion": "46", + "kernelrelease": "5.4.0-1044-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.4.0-1023-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb" + "kernelversion": "46", + "kernelrelease": "5.4.0-1044-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.4.0-1023-ibm", - "target": "ubuntu-ibm", + "kernelversion": "47", + "kernelrelease": "5.4.0-1044-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelversion": "47", + "kernelrelease": "5.4.0-1045-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-kvm", + "kernelversion": "47", + "kernelrelease": "5.4.0-1045-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-gcp", - "target": "ubuntu-gcp", + "kernelversion": "49", + "kernelrelease": "5.4.0-1045-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws", + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.4.0-1024-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-azure", - "target": "ubuntu-azure", + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelversion": "48", + "kernelrelease": "5.4.0-1046-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-gcp", + "kernelversion": "49", + "kernelrelease": "5.4.0-1046-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-aws", - "target": "ubuntu-aws", + "kernelversion": "50", + "kernelrelease": "5.4.0-1046-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.4.0-1025-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.4.0-1026-azure", - "target": "ubuntu-azure", + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.4.0-1026-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "49", + "kernelrelease": "5.4.0-1047-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.4.0-1026-kvm", - "target": "ubuntu-kvm", + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.4.0-1026-ibm", - "target": "ubuntu-ibm", + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.4.0-1027-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "50", + "kernelrelease": "5.4.0-1048-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelversion": "51", + "kernelrelease": "5.4.0-1048-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelversion": "52", + "kernelrelease": "5.4.0-1048-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-aws", + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.4.0-1028-ibm", - "target": "ubuntu-ibm", + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.4.0-1029-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "51", + "kernelrelease": "5.4.0-1049-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.4.0-1029-aws", - "target": "ubuntu-aws", + "kernelversion": "53", + "kernelrelease": "5.4.0-1049-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.4.0-1029-gcp", - "target": "ubuntu-gcp", + "kernelversion": "53", + "kernelrelease": "5.4.0-1049-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.4.0-1029-oracle", - "target": "ubuntu-oracle", + "kernelversion": "52", + "kernelrelease": "5.4.0-1049-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.4.0-1030-kvm", - "target": "ubuntu-kvm", + "kernelversion": "52", + "kernelrelease": "5.4.0-1049-gkeop", + "target": "ubuntu-gkeop", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1049-gkeop_5.4.0-1049.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1049-gkeop_5.4.0-1049.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1049_5.4.0-1049.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1049_5.4.0-1049.52_all.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.4.0-1031-kvm", - "target": "ubuntu-kvm", + "kernelversion": "119", + "kernelrelease": "5.4.0-105-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.4.0-1031-azure", - "target": "ubuntu-azure", + "kernelversion": "52", + "kernelrelease": "5.4.0-1050-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.4.0-1031-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.4.0-1032-oracle", - "target": "ubuntu-oracle", + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.4.0-1032-gcp", - "target": "ubuntu-gcp", + "kernelversion": "53", + "kernelrelease": "5.4.0-1051-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.4.0-1033-kvm", - "target": "ubuntu-kvm", + "kernelversion": "55", + "kernelrelease": "5.4.0-1051-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.4.0-1033-gkeop", + "kernelversion": "54", + "kernelrelease": "5.4.0-1051-gkeop", "target": "ubuntu-gkeop", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1051-gkeop_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1051_5.4.0-1051.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1051_5.4.0-1051.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1051-gkeop_5.4.0-1051.54_amd64.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.4.0-1034-gcp", - "target": "ubuntu-gcp", + "kernelversion": "54", + "kernelrelease": "5.4.0-1051-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.4.0-1034-oracle", + "kernelversion": "56", + "kernelrelease": "5.4.0-1052-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.4.0-1035-gke", - "target": "ubuntu-gke", + "kernelversion": "56", + "kernelrelease": "5.4.0-1052-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws", + "kernelversion": "57", + "kernelrelease": "5.4.0-1053-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-oracle", + "kernelversion": "57", + "kernelrelease": "5.4.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "5.4.0-1036-azure", - "target": "ubuntu-azure", + "kernelversion": "56", + "kernelrelease": "5.4.0-1053-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "5.4.0-1036-gke", - "target": "ubuntu-gke", + "kernelversion": "55", + "kernelrelease": "5.4.0-1053-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.4.0-1036-gcp", - "target": "ubuntu-gcp", + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.4.0-1036-kvm", - "target": "ubuntu-kvm", + "kernelversion": "57", + "kernelrelease": "5.4.0-1054-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.4.0-1036-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "56", + "kernelrelease": "5.4.0-1054-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.4.0-1037-gke", - "target": "ubuntu-gke", + "kernelversion": "58", + "kernelrelease": "5.4.0-1054-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.4.0-1037-aws", + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.4.0-1037-gcp", - "target": "ubuntu-gcp", + "kernelversion": "58", + "kernelrelease": "5.4.0-1055-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.4.0-1037-oracle", - "target": "ubuntu-oracle", + "kernelversion": "57", + "kernelrelease": "5.4.0-1055-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "5.4.0-1037-kvm", + "kernelversion": "57", + "kernelrelease": "5.4.0-1055-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb" ] }, { - "kernelversion": "38", - "kernelrelease": "5.4.0-1037-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.4.0-1038-aws", - "target": "ubuntu-aws", + "kernelversion": "59", + "kernelrelease": "5.4.0-1055-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.4.0-1038-oracle", + "kernelversion": "59", + "kernelrelease": "5.4.0-1055-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.4.0-1038-gcp", - "target": "ubuntu-gcp", + "kernelversion": "59", + "kernelrelease": "5.4.0-1056-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.4.0-1038-kvm", - "target": "ubuntu-kvm", + "kernelversion": "59", + "kernelrelease": "5.4.0-1056-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.4.0-1038-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "58", + "kernelrelease": "5.4.0-1056-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.4.0-1039-gke", - "target": "ubuntu-gke", + "kernelversion": "58", + "kernelrelease": "5.4.0-1056-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.4.0-1039-azure", - "target": "ubuntu-azure", + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.4.0-1039-aws", - "target": "ubuntu-aws", + "kernelversion": "60", + "kernelrelease": "5.4.0-1056-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.4.0-1039-oracle", - "target": "ubuntu-oracle", + "kernelversion": "60", + "kernelrelease": "5.4.0-1057-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" ] }, { - "kernelversion": "118", - "kernelrelease": "5.4.0-104", - "target": "ubuntu-generic", + "kernelversion": "60", + "kernelrelease": "5.4.0-1057-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.4.0-1040-azure", - "target": "ubuntu-azure", + "kernelversion": "61", + "kernelrelease": "5.4.0-1057-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.4.0-1040-gcp", + "kernelversion": "61", + "kernelrelease": "5.4.0-1057-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-gke", - "target": "ubuntu-gke", + "kernelversion": "61", + "kernelrelease": "5.4.0-1058-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-aws", + "kernelversion": "61", + "kernelrelease": "5.4.0-1058-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-azure", + "kernelversion": "60", + "kernelrelease": "5.4.0-1058-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-1041-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "5.4.0-1041-gcp", + "kernelversion": "62", + "kernelrelease": "5.4.0-1058-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.4.0-1042-oracle", + "kernelversion": "62", + "kernelrelease": "5.4.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.4.0-1042-gcp", - "target": "ubuntu-gcp", + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "5.4.0-1042-gke", + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.4.0-1043-gke", - "target": "ubuntu-gke", + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.4.0-1043-aws", - "target": "ubuntu-aws", + "kernelversion": "62", + "kernelrelease": "5.4.0-1059-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.4.0-1043-azure", - "target": "ubuntu-azure", + "kernelversion": "63", + "kernelrelease": "5.4.0-1059-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "5.4.0-1043-gcp", + "kernelversion": "63", + "kernelrelease": "5.4.0-1059-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "5.4.0-1043-oracle", - "target": "ubuntu-oracle", + "kernelversion": "63", + "kernelrelease": "5.4.0-1060-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "5.4.0-1043-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "64", + "kernelrelease": "5.4.0-1060-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "5.4.0-1044-azure", + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" + ] + }, + { + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "5.4.0-1044-kvm", + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "5.4.0-1044-gke", + "kernelversion": "64", + "kernelrelease": "5.4.0-1061-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "5.4.0-1044-gcp", - "target": "ubuntu-gcp", + "kernelversion": "65", + "kernelrelease": "5.4.0-1061-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "5.4.0-1045-kvm", + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-azure", + "target": "ubuntu-azure", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb" + ] + }, + { + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" ] }, { - "kernelversion": "47", - "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws", + "kernelversion": "65", + "kernelrelease": "5.4.0-1062-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.4.0-1045-oracle", + "kernelversion": "66", + "kernelrelease": "5.4.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" ] }, { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "66", + "kernelrelease": "5.4.0-1062-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" ] }, { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-azure", + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-aws", + "target": "ubuntu-aws", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" + ] + }, + { + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gke", + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" ] }, { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-kvm", + "kernelversion": "66", + "kernelrelease": "5.4.0-1063-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.4.0-1046-gcp", - "target": "ubuntu-gcp", + "kernelversion": "67", + "kernelrelease": "5.4.0-1063-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-oracle", - "target": "ubuntu-oracle", + "kernelversion": "67", + "kernelrelease": "5.4.0-1063-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-aws", + "kernelversion": "67", + "kernelrelease": "5.4.0-1064-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-kvm", - "target": "ubuntu-kvm", + "kernelversion": "67", + "kernelrelease": "5.4.0-1064-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-azure", - "target": "ubuntu-azure", + "kernelversion": "68", + "kernelrelease": "5.4.0-1064-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws", + "kernelversion": "68", + "kernelrelease": "5.4.0-1064-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-azure", - "target": "ubuntu-azure", + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb" ] }, { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-kvm", + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" ] }, { - "kernelversion": "51", - "kernelrelease": "5.4.0-1048-gkeop", - "target": "ubuntu-gkeop", + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "5.4.0-1048-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-azure", + "kernelversion": "68", + "kernelrelease": "5.4.0-1065-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1049-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" ] }, { - "kernelversion": "53", - "kernelrelease": "5.4.0-1049-gcp", + "kernelversion": "69", + "kernelrelease": "5.4.0-1065-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" ] }, { - "kernelversion": "52", - "kernelrelease": "5.4.0-1049-gke", + "kernelversion": "69", + "kernelrelease": "5.4.0-1066-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "5.4.0-105", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb" ] }, { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-aws", + "kernelversion": "69", + "kernelrelease": "5.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" ] }, { - "kernelversion": "55", - "kernelrelease": "5.4.0-1051-gcp", - "target": "ubuntu-gcp", + "kernelversion": "71", + "kernelrelease": "5.4.0-1066-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" ] }, { - "kernelversion": "54", - "kernelrelease": "5.4.0-1051-gke", + "kernelversion": "70", + "kernelrelease": "5.4.0-1067-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-1052-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-1052-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" ] }, { - "kernelversion": "55", - "kernelrelease": "5.4.0-1052-gke", - "target": "ubuntu-gke", + "kernelversion": "70", + "kernelrelease": "5.4.0-1067-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.4.0-1053-oracle", - "target": "ubuntu-oracle", + "kernelversion": "70+cvm1", + "kernelrelease": "5.4.0-1067-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.4.0-1053-gcp", + "kernelversion": "71", + "kernelrelease": "5.4.0-1067-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" ] }, { - "kernelversion": "56", - "kernelrelease": "5.4.0-1053-gke", - "target": "ubuntu-gke", + "kernelversion": "72", + "kernelrelease": "5.4.0-1067-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb" ] }, { - "kernelversion": "55", - "kernelrelease": "5.4.0-1053-kvm", + "kernelversion": "72", + "kernelrelease": "5.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-gke", - "target": "ubuntu-gke", + "kernelversion": "72", + "kernelrelease": "5.4.0-1068-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-aws", + "kernelversion": "72", + "kernelrelease": "5.4.0-1068-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-gke", + "kernelversion": "71", + "kernelrelease": "5.4.0-1068-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1055-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.4.0-1055-azure", + "kernelversion": "71", + "kernelrelease": "5.4.0-1068-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1056-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.4.0-1056-aws", + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.4.0-1056-gcp", + "kernelversion": "73", + "kernelrelease": "5.4.0-1069-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.4.0-1056-oracle", - "target": "ubuntu-oracle", + "kernelversion": "72", + "kernelrelease": "5.4.0-1069-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-gke", - "target": "ubuntu-gke", + "kernelversion": "75", + "kernelrelease": "5.4.0-1069-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-aws", - "target": "ubuntu-aws", + "kernelversion": "121", + "kernelrelease": "5.4.0-107-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws", + "kernelversion": "73", + "kernelrelease": "5.4.0-1070-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" ] }, { - "kernelversion": "61", - "kernelrelease": "5.4.0-1058-kvm", + "kernelversion": "75", + "kernelrelease": "5.4.0-1070-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1058-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb" ] }, { - "kernelversion": "63", - "kernelrelease": "5.4.0-1059-oracle", + "kernelversion": "76", + "kernelrelease": "5.4.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" ] }, { - "kernelversion": "63", - "kernelrelease": "5.4.0-1059-gcp", - "target": "ubuntu-gcp", + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1071-kvm_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1071-kvm_5.4.0-1071.76_amd64.deb" ] }, { - "kernelversion": "64", - "kernelrelease": "5.4.0-1060-gcp", - "target": "ubuntu-gcp", + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" ] }, { - "kernelversion": "65", - "kernelrelease": "5.4.0-1061-oracle", - "target": "ubuntu-oracle", + "kernelversion": "76", + "kernelrelease": "5.4.0-1071-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb" ] }, { - "kernelversion": "71", - "kernelrelease": "5.4.0-1066-oracle", + "kernelversion": "77", + "kernelrelease": "5.4.0-1071-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb" ] }, { - "kernelversion": "70", - "kernelrelease": "5.4.0-1067-gke", - "target": "ubuntu-gke", + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" ] }, { - "kernelversion": "70", - "kernelrelease": "5.4.0-1067-azure", - "target": "ubuntu-azure", + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb" ] }, { - "kernelversion": "70+cvm1", - "kernelrelease": "5.4.0-1067-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "77", + "kernelrelease": "5.4.0-1072-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" ] }, { - "kernelversion": "71", - "kernelrelease": "5.4.0-1067-gcp", - "target": "ubuntu-gcp", + "kernelversion": "75", + "kernelrelease": "5.4.0-1072-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1068-kvm", - "target": "ubuntu-kvm", + "kernelversion": "75+cvm1", + "kernelrelease": "5.4.0-1072-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1068-aws", + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-1068-gcp", + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-1069-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "5.4.0-107", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" ] }, { - "kernelversion": "75", - "kernelrelease": "5.4.0-1070-kvm", + "kernelversion": "78", + "kernelrelease": "5.4.0-1073-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1073-kvm_5.4.0-1073.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1073_5.4.0-1073.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1073-kvm_5.4.0-1073.78_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", + "kernelversion": "76", + "kernelrelease": "5.4.0-1073-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb" ] }, { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", + "kernelversion": "79", + "kernelrelease": "5.4.0-1073-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb" ] }, { "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-1072-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb" - ] - }, - { - "kernelversion": "75+cvm1", - "kernelrelease": "5.4.0-1072-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1073-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "5.4.0-1076-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "5.4.0-1076-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1077-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "5.4.0-1078-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1080-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1080-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1083-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" - ] - }, - { - "kernelversion": "87+cvm1", - "kernelrelease": "5.4.0-1083-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-1085-azure", + "kernelrelease": "5.4.0-1074-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb" - ] - }, - { - "kernelversion": "90+cvm1", - "kernelrelease": "5.4.0-1085-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "5.4.0-109", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "5.4.0-110", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "5.4.0-113", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "5.4.0-117", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "5.4.0-120", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-28", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-29", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-31", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-33", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-37", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-39", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-40", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-42", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-45", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-47", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-48", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-51", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-52", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-53", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-58", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-59", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-60", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.4.0-62", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-65", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "5.4.0-66", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-67", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-70", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-71", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-72", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "5.4.0-73", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "5.4.0-74", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "5.4.0-77", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-80", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-81", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "5.4.0-84", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "5.4.0-86", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "5.4.0-88", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "5.4.0-89", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "5.4.0-90", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "5.4.0-91", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "5.4.0-92", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "5.4.0-94", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "5.4.0-96", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "5.4.0-97", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "5.4.0-99", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.6.0-1008-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.6.0-1010-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.6.0-1011-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.6.0-1013-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.6.0-1017-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.6.0-1018-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.6.0-1020-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.6.0-1023-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.6.0-1026-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.6.0-1028-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.6.0-1031-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.6.0-1032-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.6.0-1033-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.6.0-1039-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.6.0-1042-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.6.0-1047-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.6.0-1048-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "5.6.0-1050-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.6.0-1052-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" ] }, { - "kernelversion": "57", - "kernelrelease": "5.6.0-1053-oem-5.6", - "target": "ubuntu-oem-5.6", + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.6.0-1054-oem-5.6", - "target": "ubuntu-oem-5.6", + "kernelversion": "80", + "kernelrelease": "5.4.0-1075-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.6.0-1055-oem-5.6", - "target": "ubuntu-oem-5.6", + "kernelversion": "82", + "kernelrelease": "5.4.0-1076-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.6.0-1056-oem-5.6", - "target": "ubuntu-oem-5.6", + "kernelversion": "83", + "kernelrelease": "5.4.0-1076-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb" ] }, { - "kernelversion": "32~20.04.2", - "kernelrelease": "5.8.0-1031-oracle-5.8", - "target": "ubuntu-oracle-5.8", + "kernelversion": "80", + "kernelrelease": "5.4.0-1077-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" ] }, { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.8.0-1032-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb" ] }, { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.8.0-1033-oracle-5.8", - "target": "ubuntu-oracle-5.8", + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1078-gke_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1078-gke_5.4.0-1078.84_amd64.deb" ] }, { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-aws-5.8", - "target": "ubuntu-aws-5.8", + "kernelversion": "84", + "kernelrelease": "5.4.0-1078-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb" ] }, { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelversion": "81", + "kernelrelease": "5.4.0-1078-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb" ] }, { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1037-oracle-5.8", - "target": "ubuntu-oracle-5.8", + "kernelversion": "86", + "kernelrelease": "5.4.0-1078-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb" ] }, { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelversion": "87", + "kernelrelease": "5.4.0-1079-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb" ] }, { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws-5.8", - "target": "ubuntu-aws-5.8", + "kernelversion": "87", + "kernelrelease": "5.4.0-1080-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb" ] }, { - "kernelversion": "39~20.04.1", - "kernelrelease": "5.8.0-1038-oracle-5.8", - "target": "ubuntu-oracle-5.8", + "kernelversion": "87", + "kernelrelease": "5.4.0-1080-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb" ] }, { - "kernelversion": "42~20.04.1", - "kernelrelease": "5.8.0-1039-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "83", + "kernelrelease": "5.4.0-1080-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" ] }, { - "kernelversion": "41", - "kernelrelease": "5.8.0-1039-gcp-5.8", - "target": "ubuntu-gcp-5.8", + "kernelversion": "86", + "kernelrelease": "5.4.0-1080-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1080_5.4.0-1080.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1080-gke_5.4.0-1080.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1080-gke_5.4.0-1080.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1080_5.4.0-1080.86_amd64.deb" ] }, { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-1040-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "88", + "kernelrelease": "5.4.0-1081-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb" ] }, { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-1041-aws-5.8", - "target": "ubuntu-aws-5.8", + "kernelversion": "89", + "kernelrelease": "5.4.0-1081-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1081_5.4.0-1081.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1081_5.4.0-1081.89_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89_amd64.deb" ] }, { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.8.0-1041-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "90", + "kernelrelease": "5.4.0-1083-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1083_5.4.0-1083.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1083-aws_5.4.0-1083.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1083-aws_5.4.0-1083.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1083_5.4.0-1083.90_all.deb" ] }, { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.8.0-1042-aws-5.8", - "target": "ubuntu-aws-5.8", + "kernelversion": "87", + "kernelrelease": "5.4.0-1083-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" ] }, { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.8.0-1043-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "87+cvm1", + "kernelrelease": "5.4.0-1083-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb" ] }, { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.8.0-33-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "92", + "kernelrelease": "5.4.0-1084-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1084_5.4.0-1084.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1084_5.4.0-1084.92_amd64.deb" ] }, { - "kernelversion": "37~20.04.2", - "kernelrelease": "5.8.0-34-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "90", + "kernelrelease": "5.4.0-1085-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb" ] }, { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-36-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "90+cvm1", + "kernelrelease": "5.4.0-1085-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb" ] }, { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-38-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "91", + "kernelrelease": "5.4.0-1086-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb" ] }, { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.8.0-41-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "94", + "kernelrelease": "5.4.0-1086-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1086_5.4.0-1086.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1086_5.4.0-1086.94_amd64.deb" ] }, { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.8.0-43-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "94", + "kernelrelease": "5.4.0-1089-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1089-azure_5.4.0-1089.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1089_5.4.0-1089.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1089_5.4.0-1089.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1089-azure_5.4.0-1089.94_amd64.deb" ] }, { - "kernelversion": "50~20.04.1", - "kernelrelease": "5.8.0-44-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "123", + "kernelrelease": "5.4.0-109-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb" ] }, { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.8.0-45-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "124", + "kernelrelease": "5.4.0-110-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb" ] }, { - "kernelversion": "54~20.04.1", - "kernelrelease": "5.8.0-48-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "127", + "kernelrelease": "5.4.0-113-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb" ] }, { - "kernelversion": "55~20.04.1", - "kernelrelease": "5.8.0-49-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "132", + "kernelrelease": "5.4.0-117-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb" ] }, { - "kernelversion": "56~20.04.1", - "kernelrelease": "5.8.0-50-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "136", + "kernelrelease": "5.4.0-120-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb" ] }, { - "kernelversion": "60~20.04.1", - "kernelrelease": "5.8.0-53-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "137", + "kernelrelease": "5.4.0-121-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb" ] }, { - "kernelversion": "62~20.04.1", - "kernelrelease": "5.8.0-55-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "138", + "kernelrelease": "5.4.0-122-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb" ] }, { - "kernelversion": "66~20.04.1", - "kernelrelease": "5.8.0-59-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "140", + "kernelrelease": "5.4.0-124-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124-lowlatency_5.4.0-124.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124-generic_5.4.0-124.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124_5.4.0-124.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124_5.4.0-124.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124-lowlatency_5.4.0-124.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124-generic_5.4.0-124.140_amd64.deb" ] }, { - "kernelversion": "71~20.04.1", - "kernelrelease": "5.8.0-63-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "141", + "kernelrelease": "5.4.0-125-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125_5.4.0-125.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125-generic_5.4.0-125.141_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125_5.4.0-125.141_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125-lowlatency_5.4.0-125.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125-generic_5.4.0-125.141_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125-lowlatency_5.4.0-125.141_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.10.0-1011-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "32", + "kernelrelease": "5.4.0-28-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" ] }, { "kernelversion": "33", - "kernelrelease": "5.10.0-1032-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelrelease": "5.4.0-29-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb" ] }, { "kernelversion": "35", - "kernelrelease": "5.10.0-1034-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelrelease": "5.4.0-31-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" ] }, { - "kernelversion": "54", - "kernelrelease": "5.10.0-1052-oem-5.10", - "target": "ubuntu-oem-5.10", + "kernelversion": "37", + "kernelrelease": "5.4.0-33-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" ] }, { - "kernelversion": "7~20.04.2", - "kernelrelease": "5.11.0-1007-azure-5.11", - "target": "ubuntu-azure-5.11", + "kernelversion": "41", + "kernelrelease": "5.4.0-37-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" ] }, { - "kernelversion": "8~20.04.1", - "kernelrelease": "5.11.0-1008-oracle-5.11", - "target": "ubuntu-oracle-5.11", + "kernelversion": "43", + "kernelrelease": "5.4.0-39-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" ] }, { - "kernelversion": "9~20.04.2", - "kernelrelease": "5.11.0-1009-aws-5.11", - "target": "ubuntu-aws-5.11", + "kernelversion": "44", + "kernelrelease": "5.4.0-40-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" ] }, { - "kernelversion": "10~20.04.1", - "kernelrelease": "5.11.0-1009-gcp-5.11", - "target": "ubuntu-gcp-5.11", + "kernelversion": "46", + "kernelrelease": "5.4.0-42-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.13.0-1007-intel-5.13", - "target": "ubuntu-intel-5.13", + "kernelversion": "49", + "kernelrelease": "5.4.0-45-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.13.0-1007-kvm", - "target": "ubuntu-kvm", + "kernelversion": "51", + "kernelrelease": "5.4.0-47-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1007-kvm_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1007_5.13.0-1007.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" ] }, { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1013-azure-5.13", - "target": "ubuntu-azure-5.13", + "kernelversion": "52", + "kernelrelease": "5.4.0-48-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.13.0-1021-oem-5.13", - "target": "ubuntu-oem-5.13", + "kernelversion": "56", + "kernelrelease": "5.4.0-51-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.13.0-1021-gcp", - "target": "ubuntu-gcp", + "kernelversion": "57", + "kernelrelease": "5.4.0-52-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1021_5.13.0-1021.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.14.0-1010-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "59", + "kernelrelease": "5.4.0-53-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.14.0-1034-oem-5.14", - "target": "ubuntu-oem-5.14", + "kernelversion": "64", + "kernelrelease": "5.4.0-58-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb" ] }, { - "kernelversion": "67+cvm1", - "kernelrelease": "5.4.0-1064-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "65", + "kernelrelease": "5.4.0-59-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" ] }, { - "kernelversion": "68+cvm2", - "kernelrelease": "5.4.0-1065-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "67", + "kernelrelease": "5.4.0-60-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb" ] }, { - "kernelversion": "72+cvm1", - "kernelrelease": "5.4.0-1069-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "70", + "kernelrelease": "5.4.0-62-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb" ] }, { - "kernelversion": "77+cvm1", - "kernelrelease": "5.4.0-1074-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "73", + "kernelrelease": "5.4.0-65-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb" ] }, { - "kernelversion": "79+cvm1", - "kernelrelease": "5.4.0-1076-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "74", + "kernelrelease": "5.4.0-66-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb" ] }, { - "kernelversion": "83+cvm1", - "kernelrelease": "5.4.0-1080-azure-cvm", - "target": "ubuntu-azure-cvm", + "kernelversion": "75", + "kernelrelease": "5.4.0-67-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" ] }, { - "kernelversion": "60", - "kernelrelease": "5.4.0-54", + "kernelversion": "78", + "kernelrelease": "5.4.0-70-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb" ] }, { - "kernelversion": "72", - "kernelrelease": "5.4.0-64", + "kernelversion": "79", + "kernelrelease": "5.4.0-71-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.6.0-1021-oem-5.6", - "target": "ubuntu-oem-5.6", + "kernelversion": "80", + "kernelrelease": "5.4.0-72-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.6.0-1027-oem-5.6", - "target": "ubuntu-oem-5.6", + "kernelversion": "82", + "kernelrelease": "5.4.0-73-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.6.0-1034-oem-5.6", - "target": "ubuntu-oem-5.6", + "kernelversion": "83", + "kernelrelease": "5.4.0-74-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb" ] }, { - "kernelversion": "37", - "kernelrelease": "5.6.0-1035-oem-5.6", - "target": "ubuntu-oem-5.6", + "kernelversion": "86", + "kernelrelease": "5.4.0-77-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.6.0-1036-oem-5.6", - "target": "ubuntu-oem-5.6", + "kernelversion": "90", + "kernelrelease": "5.4.0-80-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb" ] }, { - "kernelversion": "35~20.04.2", - "kernelrelease": "5.8.0-1034-oracle-5.8", - "target": "ubuntu-oracle-5.8", + "kernelversion": "91", + "kernelrelease": "5.4.0-81-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb" ] }, { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.8.0-1042-azure-5.8", - "target": "ubuntu-azure-5.8", + "kernelversion": "94", + "kernelrelease": "5.4.0-84-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" ] }, { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.8.0-23-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "97", + "kernelrelease": "5.4.0-86-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb" ] }, { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.8.0-25-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "99", + "kernelrelease": "5.4.0-88-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" ] }, { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.8.0-28-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "100", + "kernelrelease": "5.4.0-89-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb" ] }, { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.8.0-29-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "101", + "kernelrelease": "5.4.0-90-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" ] }, { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.8.0-40-hwe-5.8", - "target": "ubuntu-hwe-5.8", + "kernelversion": "102", + "kernelrelease": "5.4.0-91-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-oracle", - "target": "ubuntu-oracle", + "kernelversion": "103", + "kernelrelease": "5.4.0-92-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-kvm", - "target": "ubuntu-kvm", + "kernelversion": "106", + "kernelrelease": "5.4.0-94-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-gcp", - "target": "ubuntu-gcp", + "kernelversion": "109", + "kernelrelease": "5.4.0-96-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-aws", - "target": "ubuntu-aws", + "kernelversion": "110", + "kernelrelease": "5.4.0-97-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.4.0-1010-azure", - "target": "ubuntu-azure", + "kernelversion": "112", + "kernelrelease": "5.4.0-99-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.4.0-26", - "target": "ubuntu-generic", + "kernelversion": "8", + "kernelrelease": "5.6.0-1008-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.6.0-1007-oem-5.6", + "kernelversion": "10", + "kernelrelease": "5.6.0-1010-oem-5.6", "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.11.0-1020-kvm", - "target": "ubuntu-kvm", + "kernelversion": "11", + "kernelrelease": "5.6.0-1011-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1020-kvm_5.11.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1020_5.11.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.11.0-1021-oracle", - "target": "ubuntu-oracle", + "kernelversion": "13", + "kernelrelease": "5.6.0-1013-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1021_5.11.0-1021.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.11.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelversion": "17", + "kernelrelease": "5.6.0-1017-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.11.0-1022-aws", - "target": "ubuntu-aws", + "kernelversion": "18", + "kernelrelease": "5.6.0-1018-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1022-aws_5.11.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1022_5.11.0-1022.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.11.0-1024-kvm", - "target": "ubuntu-kvm", + "kernelversion": "20", + "kernelrelease": "5.6.0-1020-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1024_5.11.0-1024.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1024-kvm_5.11.0-1024.27_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelversion": "23", + "kernelrelease": "5.6.0-1023-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-aws", - "target": "ubuntu-aws", + "kernelversion": "26", + "kernelrelease": "5.6.0-1026-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1027-aws_5.11.0-1027.30_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.11.0-1027-azure", - "target": "ubuntu-azure", + "kernelversion": "28", + "kernelrelease": "5.6.0-1028-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1027-azure_5.11.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1027_5.11.0-1027.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb" ] }, { "kernelversion": "32", - "kernelrelease": "5.11.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "5.6.0-1031-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1028_5.11.0-1028.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" ] }, { - "kernelversion": "55", - "kernelrelease": "5.11.0-49", - "target": "ubuntu-generic", + "kernelversion": "33", + "kernelrelease": "5.6.0-1032-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-lowlatency_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49-generic_5.11.0-49.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-49_5.11.0-49.55_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" ] }, { - "kernelversion": "4", - "kernelrelease": "5.11.0-1004-azure", - "target": "ubuntu-azure", + "kernelversion": "35", + "kernelrelease": "5.6.0-1033-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.11.0-1004_5.11.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.11.0-1004-azure_5.11.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.11.0-1005-oracle", - "target": "ubuntu-oracle", + "kernelversion": "43", + "kernelrelease": "5.6.0-1039-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.11.0-1005_5.11.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.11.0-1005-oracle_5.11.0-1005.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.11.0-1006-aws", - "target": "ubuntu-aws", + "kernelversion": "46", + "kernelrelease": "5.6.0-1042-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.11.0-1006-aws_5.11.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.11.0-1006-gcp", - "target": "ubuntu-gcp", + "kernelversion": "51", + "kernelrelease": "5.6.0-1047-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.11.0-1006-gcp_5.11.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.11.0-1006_5.11.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.11.0-1006-kvm", - "target": "ubuntu-kvm", + "kernelversion": "52", + "kernelrelease": "5.6.0-1048-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.11.0-1006_5.11.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.11.0-1006-kvm_5.11.0-1006.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.11.0-16", - "target": "ubuntu-generic", + "kernelversion": "54", + "kernelrelease": "5.6.0-1050-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-generic_5.11.0-16.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16_5.11.0-16.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.11.0-16-lowlatency_5.11.0-16.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.13.0-1005-kvm", - "target": "ubuntu-kvm", + "kernelversion": "56", + "kernelrelease": "5.6.0-1052-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1005-kvm_5.13.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1005_5.13.0-1005.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.13.0-1006-aws", - "target": "ubuntu-aws", + "kernelversion": "57", + "kernelrelease": "5.6.0-1053-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1006-aws_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1006_5.13.0-1006.7_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.13.0-1006-azure", - "target": "ubuntu-azure", + "kernelversion": "58", + "kernelrelease": "5.6.0-1054-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1006_5.13.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1006-azure_5.13.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.13.0-1006-gcp", - "target": "ubuntu-gcp", + "kernelversion": "59", + "kernelrelease": "5.6.0-1055-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1006-gcp_5.13.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1006_5.13.0-1006.7_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.13.0-1006-kvm", - "target": "ubuntu-kvm", + "kernelversion": "60", + "kernelrelease": "5.6.0-1056-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1006-kvm_5.13.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1006_5.13.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.13.0-1007-aws", - "target": "ubuntu-aws", + "kernelversion": "32~20.04.2", + "kernelrelease": "5.8.0-1031-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1007-aws_5.13.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.13.0-1007-azure", - "target": "ubuntu-azure", + "kernelversion": "34~20.04.1", + "kernelrelease": "5.8.0-1032-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1007_5.13.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1007-azure_5.13.0-1007.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" ] }, { - "kernelversion": "8", - "kernelrelease": "5.13.0-1007-gcp", - "target": "ubuntu-gcp", + "kernelversion": "34~20.04.1", + "kernelrelease": "5.8.0-1033-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1007_5.13.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1007-gcp_5.13.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-azure", - "target": "ubuntu-azure", + "kernelversion": "37~20.04.1", + "kernelrelease": "5.8.0-1035-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1008-azure_5.13.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-gcp", - "target": "ubuntu-gcp", + "kernelversion": "37~20.04.1", + "kernelrelease": "5.8.0-1035-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1008_5.13.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb" ] }, { - "kernelversion": "9", - "kernelrelease": "5.13.0-1008-aws", - "target": "ubuntu-aws", + "kernelversion": "38~20.04.1", + "kernelrelease": "5.8.0-1037-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1008-aws_5.13.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1008_5.13.0-1008.9_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.13.0-1010-gcp", - "target": "ubuntu-gcp", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-1038-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1010_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1010-gcp_5.13.0-1010.12_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.13.0-1010-oracle", - "target": "ubuntu-oracle", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-1038-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1010-oracle_5.13.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1010_5.13.0-1010.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.13.0-1011-kvm", - "target": "ubuntu-kvm", + "kernelversion": "39~20.04.1", + "kernelrelease": "5.8.0-1038-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1011-kvm_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1011_5.13.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.13.0-1011-aws", - "target": "ubuntu-aws", + "kernelversion": "42~20.04.1", + "kernelrelease": "5.8.0-1039-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1011-aws_5.13.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1011_5.13.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.13.0-1012-aws", - "target": "ubuntu-aws", + "kernelversion": "41", + "kernelrelease": "5.8.0-1039-gcp-5.8", + "target": "ubuntu-gcp-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1012-aws_5.13.0-1012.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.13.0-1012-kvm", - "target": "ubuntu-kvm", + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-1040-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1012_5.13.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1012-kvm_5.13.0-1012.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.13.0-1013-aws", - "target": "ubuntu-aws", + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-1041-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1013-aws_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1013_5.13.0-1013.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.13.0-1013-kvm", - "target": "ubuntu-kvm", + "kernelversion": "44~20.04.1", + "kernelrelease": "5.8.0-1041-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1013_5.13.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1013-kvm_5.13.0-1013.14_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1013-gcp", - "target": "ubuntu-gcp", + "kernelversion": "44~20.04.1", + "kernelrelease": "5.8.0-1042-aws-5.8", + "target": "ubuntu-aws-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1013_5.13.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1013-oracle", - "target": "ubuntu-oracle", + "kernelversion": "46~20.04.1", + "kernelrelease": "5.8.0-1043-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1013-oracle_5.13.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1013_5.13.0-1013.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" ] }, { - "kernelversion": "16", - "kernelrelease": "5.13.0-1014-azure", - "target": "ubuntu-azure", + "kernelversion": "36~20.04.1", + "kernelrelease": "5.8.0-33-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1014-azure_5.13.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1014_5.13.0-1014.16_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.13.0-1014-gcp", - "target": "ubuntu-gcp", + "kernelversion": "37~20.04.2", + "kernelrelease": "5.8.0-34-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1014-gcp_5.13.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1014_5.13.0-1014.17_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.13.0-1015-gcp", - "target": "ubuntu-gcp", + "kernelversion": "40~20.04.1", + "kernelrelease": "5.8.0-36-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1015_5.13.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.13.0-1017-kvm", - "target": "ubuntu-kvm", + "kernelversion": "43~20.04.1", + "kernelrelease": "5.8.0-38-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1017-kvm_5.13.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1017_5.13.0-1017.18_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.13.0-1018-azure", - "target": "ubuntu-azure", + "kernelversion": "46~20.04.1", + "kernelrelease": "5.8.0-41-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1018-azure_5.13.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1018_5.13.0-1018.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-1018-kvm", - "target": "ubuntu-kvm", + "kernelversion": "49~20.04.1", + "kernelrelease": "5.8.0-43-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1018_5.13.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1018-kvm_5.13.0-1018.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-1019-aws", - "target": "ubuntu-aws", + "kernelversion": "50~20.04.1", + "kernelrelease": "5.8.0-44-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1019-aws_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-1019-azure", - "target": "ubuntu-azure", + "kernelversion": "51~20.04.1", + "kernelrelease": "5.8.0-45-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1019-azure_5.13.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1019_5.13.0-1019.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.13.0-1019-kvm", - "target": "ubuntu-kvm", + "kernelversion": "54~20.04.1", + "kernelrelease": "5.8.0-48-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1019-kvm_5.13.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1019_5.13.0-1019.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-azure", - "target": "ubuntu-azure", + "kernelversion": "55~20.04.1", + "kernelrelease": "5.8.0-49-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1020-azure_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1020_5.13.0-1020.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1020-aws", - "target": "ubuntu-aws", + "kernelversion": "56~20.04.1", + "kernelrelease": "5.8.0-50-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1020_5.13.0-1020.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1020-aws_5.13.0-1020.22_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-1021-kvm", - "target": "ubuntu-kvm", + "kernelversion": "60~20.04.1", + "kernelrelease": "5.8.0-53-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1021_5.13.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1021-kvm_5.13.0-1021.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1022-kvm", - "target": "ubuntu-kvm", + "kernelversion": "62~20.04.1", + "kernelrelease": "5.8.0-55-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1022_5.13.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1022-kvm_5.13.0-1022.23_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.13.0-1022-oracle", - "target": "ubuntu-oracle", + "kernelversion": "66~20.04.1", + "kernelrelease": "5.8.0-59-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1022-oracle_5.13.0-1022.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1022_5.13.0-1022.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.13.0-1023-aws", - "target": "ubuntu-aws", + "kernelversion": "71~20.04.1", + "kernelrelease": "5.8.0-63-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1023-aws_5.13.0-1023.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1023_5.13.0-1023.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.13.0-1023-azure", - "target": "ubuntu-azure", + "kernelversion": "12", + "kernelrelease": "5.10.0-1011-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1023-azure_5.13.0-1023.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1023_5.13.0-1023.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.13.0-1023-kvm", - "target": "ubuntu-kvm", + "kernelversion": "33", + "kernelrelease": "5.10.0-1032-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1023_5.13.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1023-kvm_5.13.0-1023.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1023-oracle", - "target": "ubuntu-oracle", + "kernelversion": "35", + "kernelrelease": "5.10.0-1034-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1023_5.13.0-1023.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1023-gcp", - "target": "ubuntu-gcp", + "kernelversion": "54", + "kernelrelease": "5.10.0-1052-oem-5.10", + "target": "ubuntu-oem-5.10", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1023_5.13.0-1023.28_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1024-aws", - "target": "ubuntu-aws", + "kernelversion": "7~20.04.2", + "kernelrelease": "5.11.0-1007-azure-5.11", + "target": "ubuntu-azure-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1024-aws_5.13.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1024_5.13.0-1024.26_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1024-azure", - "target": "ubuntu-azure", + "kernelversion": "8~20.04.1", + "kernelrelease": "5.11.0-1008-oracle-5.11", + "target": "ubuntu-oracle-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1024-azure_5.13.0-1024.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1024_5.13.0-1024.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-1024-gcp", - "target": "ubuntu-gcp", + "kernelversion": "9~20.04.2", + "kernelrelease": "5.11.0-1009-aws-5.11", + "target": "ubuntu-aws-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1024_5.13.0-1024.29_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-1024-oracle", - "target": "ubuntu-oracle", + "kernelversion": "10~20.04.1", + "kernelrelease": "5.11.0-1009-gcp-5.11", + "target": "ubuntu-gcp-5.11", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1024-oracle_5.13.0-1024.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1024_5.13.0-1024.29_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb" ] }, { - "kernelversion": "27", - "kernelrelease": "5.13.0-1025-aws", - "target": "ubuntu-aws", + "kernelversion": "7", + "kernelrelease": "5.13.0-1007-intel-5.13", + "target": "ubuntu-intel-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1025-aws_5.13.0-1025.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1025_5.13.0-1025.27_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-1025-azure", - "target": "ubuntu-azure", + "kernelversion": "15~20.04.1", + "kernelrelease": "5.13.0-1013-azure-5.13", + "target": "ubuntu-azure-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1025-azure_5.13.0-1025.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1025_5.13.0-1025.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.13.0-1025-oracle", - "target": "ubuntu-oracle", + "kernelversion": "25", + "kernelrelease": "5.13.0-1021-oem-5.13", + "target": "ubuntu-oem-5.13", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1025_5.13.0-1025.30_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.13.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelversion": "10", + "kernelrelease": "5.14.0-1010-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1025_5.13.0-1025.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.13.0-1026-gcp", - "target": "ubuntu-gcp", + "kernelversion": "11", + "kernelrelease": "5.14.0-1011-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1026-gcp_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1026_5.13.0-1026.31_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.13.0-1026-oracle", - "target": "ubuntu-oracle", + "kernelversion": "35", + "kernelrelease": "5.14.0-1032-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1026_5.13.0-1026.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.13.0-1028-gcp", - "target": "ubuntu-gcp", + "kernelversion": "37", + "kernelrelease": "5.14.0-1034-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1028_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1028-gcp_5.13.0-1028.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.13.0-1028-azure", - "target": "ubuntu-azure", + "kernelversion": "54", + "kernelrelease": "5.14.0-1047-oem-5.14", + "target": "ubuntu-oem-5.14", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1028-azure_5.13.0-1028.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1028_5.13.0-1028.33_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1047_5.14.0-1047.54_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1047-oem_5.14.0-1047.54_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1047_5.14.0-1047.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1047-oem_5.14.0-1047.54_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.13.0-1028-oracle", - "target": "ubuntu-oracle", + "kernelversion": "17~20.04.1", + "kernelrelease": "5.15.0-1012-gcp-5.15", + "target": "ubuntu-gcp-5.15", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1028_5.13.0-1028.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.13.0-1029-oracle", - "target": "ubuntu-oracle", + "kernelversion": "16~20.04.1", + "kernelrelease": "5.15.0-1013-azure-5.15", + "target": "ubuntu-azure-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1029-oracle_5.13.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1029_5.13.0-1029.34_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb" ] }, { - "kernelversion": "59", - "kernelrelease": "5.13.0-52", - "target": "ubuntu-generic", + "kernelversion": "18~20.04.1", + "kernelrelease": "5.15.0-1014-aws-5.15", + "target": "ubuntu-aws-5.15", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52_5.13.0-52.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-generic_5.13.0-52.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.13.0-1009-oracle", - "target": "ubuntu-oracle", + "kernelversion": "66+cvm3", + "kernelrelease": "5.4.0-1063-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1009_5.13.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1009-oracle_5.13.0-1009.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.13.0-1011-oracle", - "target": "ubuntu-oracle", + "kernelversion": "67+cvm1", + "kernelrelease": "5.4.0-1064-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1011_5.13.0-1011.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.13.0-1012-azure", - "target": "ubuntu-azure", + "kernelversion": "68+cvm2", + "kernelrelease": "5.4.0-1065-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1012_5.13.0-1012.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1012-azure_5.13.0-1012.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.13.0-1012-gcp", - "target": "ubuntu-gcp", + "kernelversion": "71+cvm1", + "kernelrelease": "5.4.0-1068-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1012_5.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-1015-oracle", - "target": "ubuntu-oracle", + "kernelversion": "72+cvm1", + "kernelrelease": "5.4.0-1069-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1015_5.13.0-1015.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.13.0-1016-kvm", - "target": "ubuntu-kvm", + "kernelversion": "73+cvm1", + "kernelrelease": "5.4.0-1070-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1016-kvm_5.13.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1016_5.13.0-1016.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-1020-kvm", - "target": "ubuntu-kvm", + "kernelversion": "76+cvm1", + "kernelrelease": "5.4.0-1073-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1020_5.13.0-1020.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1020-kvm_5.13.0-1020.21_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-1021-aws", - "target": "ubuntu-aws", + "kernelversion": "77+cvm1", + "kernelrelease": "5.4.0-1074-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1021_5.13.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1021-aws_5.13.0-1021.23_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.13.0-1021-azure", - "target": "ubuntu-azure", + "kernelversion": "79+cvm1", + "kernelrelease": "5.4.0-1076-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1021_5.13.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1021-azure_5.13.0-1021.24_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-1021-oracle", - "target": "ubuntu-oracle", + "kernelversion": "81+cvm1", + "kernelrelease": "5.4.0-1078-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1021_5.13.0-1021.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" ] }, { - "kernelversion": "24", - "kernelrelease": "5.13.0-1022-aws", - "target": "ubuntu-aws", + "kernelversion": "83+cvm1", + "kernelrelease": "5.4.0-1080-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1022-aws_5.13.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1022_5.13.0-1022.24_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" ] }, { - "kernelversion": "25", - "kernelrelease": "5.13.0-1024-kvm", - "target": "ubuntu-kvm", + "kernelversion": "91", + "kernelrelease": "5.4.0-1083-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1024-kvm_5.13.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1024_5.13.0-1024.25_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1083_5.4.0-1083.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1083_5.4.0-1083.91_amd64.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-oracle", - "target": "ubuntu-oracle", + "kernelversion": "90+cvm2", + "kernelrelease": "5.4.0-1085-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1027_5.13.0-1027.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm2_all.deb" ] }, { - "kernelversion": "32", - "kernelrelease": "5.13.0-1027-gcp", - "target": "ubuntu-gcp", + "kernelversion": "91+cvm1", + "kernelrelease": "5.4.0-1086-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1027_5.13.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1086-azure-cvm_5.4.0-1086.91+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1086_5.4.0-1086.91+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1086_5.4.0-1086.91+cvm1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1086-azure-cvm_5.4.0-1086.91+cvm1_amd64.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-1027-kvm", - "target": "ubuntu-kvm", + "kernelversion": "94+cvm1", + "kernelrelease": "5.4.0-1089-azure-cvm", + "target": "ubuntu-azure-cvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1027-kvm_5.13.0-1027.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1027_5.13.0-1027.29_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1089-azure-cvm_5.4.0-1089.94+cvm1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1089-azure-cvm_5.4.0-1089.94+cvm1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1089_5.4.0-1089.94+cvm1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1089_5.4.0-1089.94+cvm1_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.13.0-1028-aws", - "target": "ubuntu-aws", + "kernelversion": "60", + "kernelrelease": "5.4.0-54-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1028-aws_5.13.0-1028.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1028_5.13.0-1028.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.13.0-1030-gcp", - "target": "ubuntu-gcp", + "kernelversion": "72", + "kernelrelease": "5.4.0-64-generic", + "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1030_5.13.0-1030.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.13.0-1030-kvm", - "target": "ubuntu-kvm", + "kernelversion": "21", + "kernelrelease": "5.6.0-1021-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1030-kvm_5.13.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1030_5.13.0-1030.33_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.13.0-1030-oracle", - "target": "ubuntu-oracle", + "kernelversion": "27", + "kernelrelease": "5.6.0-1027-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1030_5.13.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" ] }, { - "kernelversion": "35", - "kernelrelease": "5.13.0-1031-aws", - "target": "ubuntu-aws", + "kernelversion": "36", + "kernelrelease": "5.6.0-1034-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1031_5.13.0-1031.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1031-aws_5.13.0-1031.35_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "5.13.0-1031-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.6.0-1035-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1031-azure_5.13.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1031_5.13.0-1031.37_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.13.0-1033-gcp", - "target": "ubuntu-gcp", + "kernelversion": "39", + "kernelrelease": "5.6.0-1036-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1033_5.13.0-1033.40_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" ] }, { - "kernelversion": "39", - "kernelrelease": "5.13.0-1033-oracle", - "target": "ubuntu-oracle", + "kernelversion": "35~20.04.2", + "kernelrelease": "5.8.0-1034-oracle-5.8", + "target": "ubuntu-oracle-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1033_5.13.0-1033.39_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.13.0-1036-oracle", - "target": "ubuntu-oracle", + "kernelversion": "45~20.04.1", + "kernelrelease": "5.8.0-1042-azure-5.8", + "target": "ubuntu-azure-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1036_5.13.0-1036.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" ] }, { - "kernelversion": "21", - "kernelrelease": "5.13.0-21", - "target": "ubuntu-generic", + "kernelversion": "24~20.04.1", + "kernelrelease": "5.8.0-23-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21-generic_5.13.0-21.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-21_5.13.0-21.21_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" ] }, { - "kernelversion": "22", - "kernelrelease": "5.13.0-22", - "target": "ubuntu-generic", + "kernelversion": "26~20.04.1", + "kernelrelease": "5.8.0-25-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22_5.13.0-22.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-generic_5.13.0-22.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb" ] }, { - "kernelversion": "23", - "kernelrelease": "5.13.0-23", - "target": "ubuntu-generic", + "kernelversion": "30~20.04.1", + "kernelrelease": "5.8.0-28-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-generic_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-23_5.13.0-23.23_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" ] }, { - "kernelversion": "26", - "kernelrelease": "5.13.0-25", - "target": "ubuntu-generic", + "kernelversion": "31~20.04.1", + "kernelrelease": "5.8.0-29-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25_5.13.0-25.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-25-generic_5.13.0-25.26_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" ] }, { - "kernelversion": "29", - "kernelrelease": "5.13.0-27", - "target": "ubuntu-generic", + "kernelversion": "45~20.04.1", + "kernelrelease": "5.8.0-40-hwe-5.8", + "target": "ubuntu-hwe-5.8", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27_5.13.0-27.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-generic_5.13.0-27.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.13.0-28", - "target": "ubuntu-generic", + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-generic_5.13.0-28.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28_5.13.0-28.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.13.0-30", - "target": "ubuntu-generic", + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30_5.13.0-30.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-30-generic_5.13.0-30.33_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" ] }, { - "kernelversion": "40", - "kernelrelease": "5.13.0-35", - "target": "ubuntu-generic", + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-generic_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-35_5.13.0-35.40_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.13.0-37", - "target": "ubuntu-generic", + "kernelversion": "9", + "kernelrelease": "5.4.0-1009-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37-generic_5.13.0-37.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-37_5.13.0-37.42_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "5.13.0-39", - "target": "ubuntu-generic", + "kernelversion": "10", + "kernelrelease": "5.4.0-1010-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39_5.13.0-39.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-generic_5.13.0-39.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb" ] }, { - "kernelversion": "45", - "kernelrelease": "5.13.0-40", + "kernelversion": "30", + "kernelrelease": "5.4.0-26-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40_5.13.0-40.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-40-generic_5.13.0-40.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb" ] }, { - "kernelversion": "46", - "kernelrelease": "5.13.0-41", - "target": "ubuntu-generic", + "kernelversion": "7", + "kernelrelease": "5.6.0-1007-oem-5.6", + "target": "ubuntu-oem-5.6", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41_5.13.0-41.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-generic_5.13.0-41.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb" ] }, { - "kernelversion": "49", - "kernelrelease": "5.13.0-44", - "target": "ubuntu-generic", + "kernelversion": "15", + "kernelrelease": "5.15.0-1013-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44_5.13.0-44.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-44-generic_5.13.0-44.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1013_5.15.0-1013.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1013-ibm_5.15.0-1013.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1013_5.15.0-1013.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1013-ibm_5.15.0-1013.15_amd64.deb" ] }, { - "kernelversion": "54", - "kernelrelease": "5.13.0-48", - "target": "ubuntu-generic", + "kernelversion": "18", + "kernelrelease": "5.15.0-1015-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48-generic_5.13.0-48.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-48_5.13.0-48.54_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1015-gke_5.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1015-gke_5.15.0-1015.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1015_5.15.0-1015.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1015_5.15.0-1015.18_amd64.deb" ] }, { - "kernelversion": "58", - "kernelrelease": "5.13.0-51", - "target": "ubuntu-generic", + "kernelversion": "23", + "kernelrelease": "5.15.0-1017-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-generic_5.13.0-51.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51_5.13.0-51.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1017_5.15.0-1017.23_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1017_5.15.0-1017.23_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.13.0-1013-azure", - "target": "ubuntu-azure", + "kernelversion": "21", + "kernelrelease": "5.15.0-1017-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1013-azure_5.13.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1013_5.13.0-1013.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1017_5.15.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1017-aws_5.15.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1017-aws_5.15.0-1017.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1017_5.15.0-1017.21_all.deb" ] }, { - "kernelversion": "28", - "kernelrelease": "5.13.0-1026-aws", - "target": "ubuntu-aws", + "kernelversion": "21", + "kernelrelease": "5.15.0-1017-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1026-aws_5.13.0-1026.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1026_5.13.0-1026.28_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1017_5.15.0-1017.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1017-kvm_5.15.0-1017.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1017_5.15.0-1017.21_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1017-kvm_5.15.0-1017.21_amd64.deb" ] }, { - "kernelversion": "30", - "kernelrelease": "5.13.0-1026-azure", - "target": "ubuntu-azure", + "kernelversion": "22", + "kernelrelease": "5.15.0-1017-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.13.0-1026_5.13.0-1026.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.13.0-1026-azure_5.13.0-1026.30_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1017_5.15.0-1017.22_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1017_5.15.0-1017.22_all.deb" ] }, { - "kernelversion": "36", - "kernelrelease": "5.13.0-1031-oracle", - "target": "ubuntu-oracle", + "kernelversion": "23", + "kernelrelease": "5.15.0-1019-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1031_5.13.0-1031.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1031-oracle_5.13.0-1031.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1019_5.15.0-1019.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1019_5.15.0-1019.23_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1019-aws_5.15.0-1019.23_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1019-aws_5.15.0-1019.23_amd64.deb" ] }, { - "kernelversion": "20", - "kernelrelease": "5.13.0-20", - "target": "ubuntu-generic", + "kernelversion": "24", + "kernelrelease": "5.15.0-1019-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-generic_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20_5.13.0-20.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-20-lowlatency_5.13.0-20.20_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1019-azure_5.15.0-1019.24_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1019-azure_5.15.0-1019.24_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1019_5.15.0-1019.24_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1019_5.15.0-1019.24_all.deb" ] }, { "kernelversion": "51", - "kernelrelease": "5.13.0-46", + "kernelrelease": "5.15.0-47-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-generic_5.13.0-46.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46_5.13.0-46.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-46-lowlatency_5.13.0-46.51_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-47_5.15.0-47.51_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-47-generic_5.15.0-47.51_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-47_5.15.0-47.51_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-47-generic_5.15.0-47.51_amd64.deb" ] }, { - "kernelversion": "4", - "kernelrelease": "5.13.0-1004-kvm", - "target": "ubuntu-kvm", + "kernelversion": "53", + "kernelrelease": "5.15.0-47-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.13.0-1004_5.13.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.13.0-1004-kvm_5.13.0-1004.4_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-47-lowlatency_5.15.0-47.53_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-47-lowlatency_5.15.0-47.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-47_5.15.0-47.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-47_5.15.0-47.53_all.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.13.0-1005-gcp", - "target": "ubuntu-gcp", + "kernelversion": "4", + "kernelrelease": "5.17.0-1004-oem-5.17", + "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.13.0-1005-gcp_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.13.0-1005_5.13.0-1005.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.13.0-1005-aws", - "target": "ubuntu-aws", + "kernelversion": "5", + "kernelrelease": "5.17.0-1005-oem-5.17", + "target": "ubuntu-oem-5.17", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.13.0-1005_5.13.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.13.0-1005-aws_5.13.0-1005.6_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.13.0-1008-oracle", - "target": "ubuntu-oracle", + "kernelversion": "7", + "kernelrelease": "5.15.0-1005-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.13.0-1008_5.13.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.13.0-1008-oracle_5.13.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.13.0-19", - "target": "ubuntu-generic", + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-generic_5.13.0-19.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19_5.13.0-19.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.15.0-1004-gke", + "kernelversion": "6", + "kernelrelease": "5.15.0-1005-gke", "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" ] }, { @@ -33465,43 +32479,43 @@ "kernelrelease": "5.15.0-1005-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1006-gke", - "target": "ubuntu-gke", + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-nvidia", + "target": "ubuntu-nvidia", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-nvidia/linux-nvidia-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-nvidia/linux-headers-5.15.0-1005-nvidia_5.15.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-nvidia/linux-headers-5.15.0-1005-nvidia_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-nvidia/linux-nvidia-headers-5.15.0-1005_5.15.0-1005.5_all.deb" ] }, { - "kernelversion": "7", - "kernelrelease": "5.15.0-1006-azure", - "target": "ubuntu-azure", + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1006-azure_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1006_5.15.0-1006.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb" ] }, { - "kernelversion": "6", - "kernelrelease": "5.15.0-1006-kvm", - "target": "ubuntu-kvm", + "kernelversion": "5", + "kernelrelease": "5.15.0-1005-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1006-kvm_5.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1006_5.15.0-1006.6_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" ] }, { @@ -33509,32 +32523,32 @@ "kernelrelease": "5.15.0-1006-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.15.0-1007-azure", - "target": "ubuntu-azure", + "kernelrelease": "5.15.0-1007-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { "kernelversion": "8", - "kernelrelease": "5.15.0-1007-ibm", - "target": "ubuntu-ibm", + "kernelrelease": "5.15.0-1007-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" ] }, { @@ -33542,417 +32556,395 @@ "kernelrelease": "5.15.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-gke", + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-gke", "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_amd64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.15.0-1013-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.15.0-1013-aws", + "kernelversion": "10", + "kernelrelease": "5.15.0-1008-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.15.0-1013-oracle", - "target": "ubuntu-oracle", + "kernelversion": "12", + "kernelrelease": "5.15.0-1008-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb" ] }, { - "kernelversion": "18", - "kernelrelease": "5.15.0-1014-aws", - "target": "ubuntu-aws", + "kernelversion": "11", + "kernelrelease": "5.15.0-1008-intel-iotg", + "target": "ubuntu-intel-iotg", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb" ] }, { - "kernelversion": "17", - "kernelrelease": "5.15.0-1014-azure", - "target": "ubuntu-azure", + "kernelversion": "11", + "kernelrelease": "5.15.0-1009-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb" ] }, { - "kernelversion": "19", - "kernelrelease": "5.15.0-1015-aws", + "kernelversion": "11", + "kernelrelease": "5.15.0-1009-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.15.0-30-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "12", + "kernelrelease": "5.15.0-1009-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" ] }, { - "kernelversion": "31", - "kernelrelease": "5.15.0-30", - "target": "ubuntu-generic", + "kernelversion": "12", + "kernelrelease": "5.15.0-1010-ibm", + "target": "ubuntu-ibm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1010-ibm_5.15.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1010-ibm_5.15.0-1010.12_amd64.deb" ] }, { - "kernelversion": "33", - "kernelrelease": "5.15.0-32-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "12", + "kernelrelease": "5.15.0-1010-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-32_5.15.0-32.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-32-lowlatency_5.15.0-32.33_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "15", + "kernelrelease": "5.15.0-1010-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb" ] }, { - "kernelversion": "34", - "kernelrelease": "5.15.0-33", - "target": "ubuntu-generic", + "kernelversion": "13", + "kernelrelease": "5.15.0-1010-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.15.0-40-lowlatency", - "target": "ubuntu-lowlatency", + "kernelversion": "14", + "kernelrelease": "5.15.0-1010-intel-iotg", + "target": "ubuntu-intel-iotg", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb" ] }, { - "kernelversion": "43", - "kernelrelease": "5.15.0-40", - "target": "ubuntu-generic", + "kernelversion": "11", + "kernelrelease": "5.15.0-1010-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb" ] }, { - "kernelversion": "44", - "kernelrelease": "5.15.0-41", - "target": "ubuntu-generic", + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb" ] }, { - "kernelversion": "4", - "kernelrelease": "5.17.0-1004-oem-5.17", - "target": "ubuntu-oem-5.17", + "kernelversion": "14", + "kernelrelease": "5.15.0-1011-gke", + "target": "ubuntu-gke", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_amd64.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.17.0-1005-oem-5.17", - "target": "ubuntu-oem-5.17", + "kernelversion": "15", + "kernelrelease": "5.15.0-1011-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.17.0-1012-oem-5.17", - "target": "ubuntu-oem-5.17", + "kernelversion": "15", + "kernelrelease": "5.15.0-1012-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1012-oem_5.17.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1012-oem_5.17.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1012_5.17.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1012_5.17.0-1012.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-kvm", + "kernelversion": "14", + "kernelrelease": "5.15.0-1012-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb" ] }, { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-ibm", + "kernelversion": "14", + "kernelrelease": "5.15.0-1012-ibm", "target": "ubuntu-ibm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1012-ibm_5.15.0-1012.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1012-ibm_5.15.0-1012.14_amd64.deb" ] }, { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-gke", - "target": "ubuntu-gke", + "kernelversion": "17", + "kernelrelease": "5.15.0-1013-oracle", + "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.15.0-1008-gcp", - "target": "ubuntu-gcp", + "kernelversion": "17", + "kernelrelease": "5.15.0-1013-intel-iotg", + "target": "ubuntu-intel-iotg", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1013-intel-iotg_5.15.0-1013.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1013-intel-iotg_5.15.0-1013.17_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.15.0-1008-intel-iotg", - "target": "ubuntu-intel-iotg", + "kernelversion": "17", + "kernelrelease": "5.15.0-1013-aws", + "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.15.0-1009-ibm", - "target": "ubuntu-ibm", + "kernelversion": "18", + "kernelrelease": "5.15.0-1013-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1013_5.15.0-1013.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1013_5.15.0-1013.18_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.15.0-1009-aws", - "target": "ubuntu-aws", + "kernelversion": "16", + "kernelrelease": "5.15.0-1013-kvm", + "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1013_5.15.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1013-kvm_5.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1013-kvm_5.15.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1013_5.15.0-1013.16_all.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.15.0-1009-oracle", - "target": "ubuntu-oracle", + "kernelversion": "16", + "kernelrelease": "5.15.0-1013-azure", + "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb" ] }, { - "kernelversion": "12", - "kernelrelease": "5.15.0-1010-azure", + "kernelversion": "17", + "kernelrelease": "5.15.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.15.0-1010-gcp", - "target": "ubuntu-gcp", + "kernelversion": "17", + "kernelrelease": "5.15.0-1014-gke", + "target": "ubuntu-gke", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1014_5.15.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1014-gke_5.15.0-1014.17_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1014_5.15.0-1014.17_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1014-gke_5.15.0-1014.17_amd64.deb" ] }, { - "kernelversion": "13", - "kernelrelease": "5.15.0-1010-gke", - "target": "ubuntu-gke", + "kernelversion": "19", + "kernelrelease": "5.15.0-1015-aws", + "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.15.0-1010-intel-iotg", - "target": "ubuntu-intel-iotg", + "kernelversion": "21", + "kernelrelease": "5.15.0-1016-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1016_5.15.0-1016.21_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1016_5.15.0-1016.21_amd64.deb" ] }, { - "kernelversion": "11", - "kernelrelease": "5.15.0-1010-kvm", + "kernelversion": "19", + "kernelrelease": "5.15.0-1016-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1016_5.15.0-1016.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1016-kvm_5.15.0-1016.19_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1016_5.15.0-1016.19_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1016-kvm_5.15.0-1016.19_amd64.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.15.0-1011-oracle", + "kernelversion": "20", + "kernelrelease": "5.15.0-1016-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1016_5.15.0-1016.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1016_5.15.0-1016.20_all.deb" ] }, { - "kernelversion": "15", - "kernelrelease": "5.15.0-1012-azure", + "kernelversion": "20", + "kernelrelease": "5.15.0-1017-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1017-azure_5.15.0-1017.20_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1017_5.15.0-1017.20_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1017_5.15.0-1017.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1017-azure_5.15.0-1017.20_amd64.deb" ] }, { - "kernelversion": "14", - "kernelrelease": "5.15.0-1012-kvm", - "target": "ubuntu-kvm", + "kernelversion": "34", + "kernelrelease": "5.15.0-33-lowlatency", + "target": "ubuntu-lowlatency", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" + ] + }, + { + "kernelversion": "34", + "kernelrelease": "5.15.0-33-generic", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" ] }, { "kernelversion": "39", - "kernelrelease": "5.15.0-37", + "kernelrelease": "5.15.0-37-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb" ] }, { @@ -33962,8 +32954,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb" + ] + }, + { + "kernelversion": "42", + "kernelrelease": "5.15.0-39-generic", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb" ] }, { @@ -33972,20 +32975,75 @@ "target": "ubuntu-lowlatency", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb" ] }, { - "kernelversion": "42", - "kernelrelease": "5.15.0-39", + "kernelversion": "44", + "kernelrelease": "5.15.0-41-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-41_5.15.0-41.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-41_5.15.0-41.44_all.deb" + ] + }, + { + "kernelversion": "44", + "kernelrelease": "5.15.0-41-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "5.15.0-43-generic", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-43-generic_5.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-43_5.15.0-43.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-43-generic_5.15.0-43.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-43_5.15.0-43.46_all.deb" + ] + }, + { + "kernelversion": "46", + "kernelrelease": "5.15.0-43-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-43_5.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-43_5.15.0-43.46_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46_amd64.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.15.0-46-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-46_5.15.0-46.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-46_5.15.0-46.49_all.deb" + ] + }, + { + "kernelversion": "49", + "kernelrelease": "5.15.0-46-generic", + "target": "ubuntu-generic", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-46_5.15.0-46.49_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-46-generic_5.15.0-46.49_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-46_5.15.0-46.49_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-46-generic_5.15.0-46.49_amd64.deb" ] }, { @@ -33993,10 +33051,10 @@ "kernelrelease": "5.17.0-1006-oem-5.17", "target": "ubuntu-oem-5.17", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb" ] }, { @@ -34005,9 +33063,64 @@ "target": "ubuntu-oem-5.17", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb" + ] + }, + { + "kernelversion": "13", + "kernelrelease": "5.17.0-1012-oem-5.17", + "target": "ubuntu-oem-5.17", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1012-oem_5.17.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1012-oem_5.17.0-1012.13_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1012_5.17.0-1012.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1012_5.17.0-1012.13_all.deb" + ] + }, + { + "kernelversion": "14", + "kernelrelease": "5.17.0-1013-oem-5.17", + "target": "ubuntu-oem-5.17", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1013-oem_5.17.0-1013.14_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1013_5.17.0-1013.14_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1013_5.17.0-1013.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1013-oem_5.17.0-1013.14_amd64.deb" + ] + }, + { + "kernelversion": "15", + "kernelrelease": "5.17.0-1014-oem-5.17", + "target": "ubuntu-oem-5.17", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1014-oem_5.17.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1014-oem_5.17.0-1014.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1014_5.17.0-1014.15_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1014_5.17.0-1014.15_all.deb" + ] + }, + { + "kernelversion": "16", + "kernelrelease": "5.17.0-1015-oem-5.17", + "target": "ubuntu-oem-5.17", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1015_5.17.0-1015.16_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1015-oem_5.17.0-1015.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1015_5.17.0-1015.16_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1015-oem_5.17.0-1015.16_amd64.deb" + ] + }, + { + "kernelversion": "5", + "kernelrelease": "5.15.0-1004-gke", + "target": "ubuntu-gke", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" ] }, { @@ -34017,8 +33130,19 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb" + ] + }, + { + "kernelversion": "7", + "kernelrelease": "5.15.0-1006-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb" ] }, { @@ -34026,10 +33150,10 @@ "kernelrelease": "5.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" ] }, { @@ -34037,10 +33161,10 @@ "kernelrelease": "5.15.0-1008-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" ] }, { @@ -34048,10 +33172,43 @@ "kernelrelease": "5.15.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb" + ] + }, + { + "kernelversion": "18", + "kernelrelease": "5.15.0-1014-aws", + "target": "ubuntu-aws", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.15.0-30-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" + ] + }, + { + "kernelversion": "31", + "kernelrelease": "5.15.0-30-generic", + "target": "ubuntu-generic", + "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" ] }, { @@ -34059,32 +33216,43 @@ "kernelrelease": "5.15.0-35-lowlatency", "target": "ubuntu-lowlatency", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, { "kernelversion": "36", - "kernelrelease": "5.15.0-35", + "kernelrelease": "5.15.0-35-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" ] }, { - "kernelversion": "2", - "kernelrelease": "5.15.0-1002-gke", - "target": "ubuntu-gke", + "kernelversion": "43", + "kernelrelease": "5.15.0-40-generic", + "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb" + ] + }, + { + "kernelversion": "43", + "kernelrelease": "5.15.0-40-lowlatency", + "target": "ubuntu-lowlatency", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb" ] }, { @@ -34093,9 +33261,20 @@ "target": "ubuntu-ibm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb" + ] + }, + { + "kernelversion": "2", + "kernelrelease": "5.15.0-1002-gke", + "target": "ubuntu-gke", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" ] }, { @@ -34103,9 +33282,9 @@ "kernelrelease": "5.15.0-1002-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" ] }, @@ -34114,21 +33293,21 @@ "kernelrelease": "5.15.0-1003-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" ] }, { "kernelversion": "25", - "kernelrelease": "5.15.0-25", + "kernelrelease": "5.15.0-25-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" ] }, { @@ -34138,1256 +33317,1256 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" ] }, { "kernelversion": "147", - "kernelrelease": "3.13.0-100", + "kernelrelease": "3.13.0-100-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" ] }, { "kernelversion": "148", - "kernelrelease": "3.13.0-101", + "kernelrelease": "3.13.0-101-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" ] }, { "kernelversion": "150", - "kernelrelease": "3.13.0-103", + "kernelrelease": "3.13.0-103-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb" ] }, { "kernelversion": "152", - "kernelrelease": "3.13.0-105", + "kernelrelease": "3.13.0-105-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" ] }, { "kernelversion": "153", - "kernelrelease": "3.13.0-106", + "kernelrelease": "3.13.0-106-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb" ] }, { "kernelversion": "154", - "kernelrelease": "3.13.0-107", + "kernelrelease": "3.13.0-107-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb" ] }, { "kernelversion": "155", - "kernelrelease": "3.13.0-108", + "kernelrelease": "3.13.0-108-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb" ] }, { "kernelversion": "156", - "kernelrelease": "3.13.0-109", + "kernelrelease": "3.13.0-109-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb" ] }, { "kernelversion": "157", - "kernelrelease": "3.13.0-110", + "kernelrelease": "3.13.0-110-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" ] }, { "kernelversion": "159", - "kernelrelease": "3.13.0-112", + "kernelrelease": "3.13.0-112-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb" ] }, { "kernelversion": "162", - "kernelrelease": "3.13.0-115", + "kernelrelease": "3.13.0-115-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb" ] }, { "kernelversion": "163", - "kernelrelease": "3.13.0-116", + "kernelrelease": "3.13.0-116-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb" ] }, { "kernelversion": "164", - "kernelrelease": "3.13.0-117", + "kernelrelease": "3.13.0-117-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" ] }, { "kernelversion": "166", - "kernelrelease": "3.13.0-119", + "kernelrelease": "3.13.0-119-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" ] }, { "kernelversion": "170", - "kernelrelease": "3.13.0-121", + "kernelrelease": "3.13.0-121-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" ] }, { "kernelversion": "172", - "kernelrelease": "3.13.0-123", + "kernelrelease": "3.13.0-123-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb" ] }, { "kernelversion": "174", - "kernelrelease": "3.13.0-125", + "kernelrelease": "3.13.0-125-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb" ] }, { "kernelversion": "175", - "kernelrelease": "3.13.0-126", + "kernelrelease": "3.13.0-126-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb" ] }, { "kernelversion": "177", - "kernelrelease": "3.13.0-128", + "kernelrelease": "3.13.0-128-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" ] }, { "kernelversion": "178", - "kernelrelease": "3.13.0-129", + "kernelrelease": "3.13.0-129-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" ] }, { "kernelversion": "181", - "kernelrelease": "3.13.0-132", + "kernelrelease": "3.13.0-132-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb" ] }, { "kernelversion": "182", - "kernelrelease": "3.13.0-133", + "kernelrelease": "3.13.0-133-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" ] }, { "kernelversion": "184", - "kernelrelease": "3.13.0-135", + "kernelrelease": "3.13.0-135-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb" ] }, { "kernelversion": "186", - "kernelrelease": "3.13.0-137", + "kernelrelease": "3.13.0-137-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" ] }, { "kernelversion": "188", - "kernelrelease": "3.13.0-139", + "kernelrelease": "3.13.0-139-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb" ] }, { "kernelversion": "190", - "kernelrelease": "3.13.0-141", + "kernelrelease": "3.13.0-141-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb" ] }, { "kernelversion": "191", - "kernelrelease": "3.13.0-142", + "kernelrelease": "3.13.0-142-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" ] }, { "kernelversion": "192", - "kernelrelease": "3.13.0-143", + "kernelrelease": "3.13.0-143-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" ] }, { "kernelversion": "193", - "kernelrelease": "3.13.0-144", + "kernelrelease": "3.13.0-144-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb" ] }, { "kernelversion": "196", - "kernelrelease": "3.13.0-147", + "kernelrelease": "3.13.0-147-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" ] }, { "kernelversion": "199", - "kernelrelease": "3.13.0-149", + "kernelrelease": "3.13.0-149-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb" ] }, { "kernelversion": "201", - "kernelrelease": "3.13.0-151", + "kernelrelease": "3.13.0-151-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb" ] }, { "kernelversion": "203", - "kernelrelease": "3.13.0-153", + "kernelrelease": "3.13.0-153-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" ] }, { "kernelversion": "205", - "kernelrelease": "3.13.0-155", + "kernelrelease": "3.13.0-155-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb" ] }, { "kernelversion": "206", - "kernelrelease": "3.13.0-156", + "kernelrelease": "3.13.0-156-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" ] }, { "kernelversion": "207", - "kernelrelease": "3.13.0-157", + "kernelrelease": "3.13.0-157-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb" ] }, { "kernelversion": "210", - "kernelrelease": "3.13.0-160", + "kernelrelease": "3.13.0-160-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" ] }, { "kernelversion": "211", - "kernelrelease": "3.13.0-161", + "kernelrelease": "3.13.0-161-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" ] }, { "kernelversion": "212", - "kernelrelease": "3.13.0-162", + "kernelrelease": "3.13.0-162-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb" ] }, { "kernelversion": "214", - "kernelrelease": "3.13.0-164", + "kernelrelease": "3.13.0-164-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" ] }, { "kernelversion": "215", - "kernelrelease": "3.13.0-165", + "kernelrelease": "3.13.0-165-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" ] }, { "kernelversion": "216", - "kernelrelease": "3.13.0-166", + "kernelrelease": "3.13.0-166-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" ] }, { "kernelversion": "217", - "kernelrelease": "3.13.0-167", + "kernelrelease": "3.13.0-167-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb" ] }, { "kernelversion": "218", - "kernelrelease": "3.13.0-168", + "kernelrelease": "3.13.0-168-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" ] }, { "kernelversion": "220", - "kernelrelease": "3.13.0-170", + "kernelrelease": "3.13.0-170-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb" ] }, { "kernelversion": "47", - "kernelrelease": "3.13.0-24", + "kernelrelease": "3.13.0-24-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" ] }, { "kernelversion": "50", - "kernelrelease": "3.13.0-27", + "kernelrelease": "3.13.0-27-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" ] }, { "kernelversion": "53", - "kernelrelease": "3.13.0-29", + "kernelrelease": "3.13.0-29-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb" ] }, { "kernelversion": "55", - "kernelrelease": "3.13.0-30", + "kernelrelease": "3.13.0-30-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" ] }, { "kernelversion": "57", - "kernelrelease": "3.13.0-32", + "kernelrelease": "3.13.0-32-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" ] }, { "kernelversion": "58", - "kernelrelease": "3.13.0-33", + "kernelrelease": "3.13.0-33-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" ] }, { "kernelversion": "60", - "kernelrelease": "3.13.0-34", + "kernelrelease": "3.13.0-34-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" ] }, { "kernelversion": "62", - "kernelrelease": "3.13.0-35", + "kernelrelease": "3.13.0-35-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "3.13.0-36", + "kernelrelease": "3.13.0-36-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb" ] }, { "kernelversion": "64", - "kernelrelease": "3.13.0-37", + "kernelrelease": "3.13.0-37-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "3.13.0-39", + "kernelrelease": "3.13.0-39-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb" ] }, { "kernelversion": "69", - "kernelrelease": "3.13.0-40", + "kernelrelease": "3.13.0-40-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb" ] }, { "kernelversion": "70", - "kernelrelease": "3.13.0-41", + "kernelrelease": "3.13.0-41-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "3.13.0-43", + "kernelrelease": "3.13.0-43-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" ] }, { "kernelversion": "73", - "kernelrelease": "3.13.0-44", + "kernelrelease": "3.13.0-44-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb" ] }, { "kernelversion": "79", - "kernelrelease": "3.13.0-46", + "kernelrelease": "3.13.0-46-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" ] }, { "kernelversion": "80", - "kernelrelease": "3.13.0-48", + "kernelrelease": "3.13.0-48-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb" ] }, { "kernelversion": "83", - "kernelrelease": "3.13.0-49", + "kernelrelease": "3.13.0-49-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" ] }, { "kernelversion": "84", - "kernelrelease": "3.13.0-51", + "kernelrelease": "3.13.0-51-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" ] }, { "kernelversion": "86", - "kernelrelease": "3.13.0-52", + "kernelrelease": "3.13.0-52-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" ] }, { "kernelversion": "89", - "kernelrelease": "3.13.0-53", + "kernelrelease": "3.13.0-53-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" ] }, { "kernelversion": "91", - "kernelrelease": "3.13.0-54", + "kernelrelease": "3.13.0-54-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb" ] }, { "kernelversion": "94", - "kernelrelease": "3.13.0-55", + "kernelrelease": "3.13.0-55-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb" ] }, { "kernelversion": "95", - "kernelrelease": "3.13.0-57", + "kernelrelease": "3.13.0-57-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb" ] }, { "kernelversion": "97", - "kernelrelease": "3.13.0-58", + "kernelrelease": "3.13.0-58-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb" ] }, { "kernelversion": "98", - "kernelrelease": "3.13.0-59", + "kernelrelease": "3.13.0-59-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb" ] }, { "kernelversion": "100", - "kernelrelease": "3.13.0-61", + "kernelrelease": "3.13.0-61-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb" ] }, { "kernelversion": "102", - "kernelrelease": "3.13.0-62", + "kernelrelease": "3.13.0-62-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb" ] }, { "kernelversion": "103", - "kernelrelease": "3.13.0-63", + "kernelrelease": "3.13.0-63-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb" ] }, { "kernelversion": "106", - "kernelrelease": "3.13.0-65", + "kernelrelease": "3.13.0-65-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" ] }, { "kernelversion": "108", - "kernelrelease": "3.13.0-66", + "kernelrelease": "3.13.0-66-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" ] }, { "kernelversion": "110", - "kernelrelease": "3.13.0-67", + "kernelrelease": "3.13.0-67-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" ] }, { "kernelversion": "111", - "kernelrelease": "3.13.0-68", + "kernelrelease": "3.13.0-68-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" ] }, { "kernelversion": "113", - "kernelrelease": "3.13.0-70", + "kernelrelease": "3.13.0-70-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb" ] }, { "kernelversion": "114", - "kernelrelease": "3.13.0-71", + "kernelrelease": "3.13.0-71-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb" ] }, { "kernelversion": "116", - "kernelrelease": "3.13.0-73", + "kernelrelease": "3.13.0-73-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb" ] }, { "kernelversion": "118", - "kernelrelease": "3.13.0-74", + "kernelrelease": "3.13.0-74-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb" ] }, { "kernelversion": "120", - "kernelrelease": "3.13.0-76", + "kernelrelease": "3.13.0-76-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" ] }, { "kernelversion": "121", - "kernelrelease": "3.13.0-77", + "kernelrelease": "3.13.0-77-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb" ] }, { "kernelversion": "123", - "kernelrelease": "3.13.0-79", + "kernelrelease": "3.13.0-79-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" ] }, { "kernelversion": "127", - "kernelrelease": "3.13.0-83", + "kernelrelease": "3.13.0-83-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb" ] }, { "kernelversion": "129", - "kernelrelease": "3.13.0-85", + "kernelrelease": "3.13.0-85-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb" ] }, { "kernelversion": "131", - "kernelrelease": "3.13.0-86", + "kernelrelease": "3.13.0-86-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb" ] }, { "kernelversion": "133", - "kernelrelease": "3.13.0-87", + "kernelrelease": "3.13.0-87-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" ] }, { "kernelversion": "135", - "kernelrelease": "3.13.0-88", + "kernelrelease": "3.13.0-88-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" ] }, { "kernelversion": "138", - "kernelrelease": "3.13.0-91", + "kernelrelease": "3.13.0-91-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" ] }, { "kernelversion": "139", - "kernelrelease": "3.13.0-92", + "kernelrelease": "3.13.0-92-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" ] }, { "kernelversion": "140", - "kernelrelease": "3.13.0-93", + "kernelrelease": "3.13.0-93-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" ] }, { "kernelversion": "142", - "kernelrelease": "3.13.0-95", + "kernelrelease": "3.13.0-95-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb" ] }, { "kernelversion": "143", - "kernelrelease": "3.13.0-96", + "kernelrelease": "3.13.0-96-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" ] }, { "kernelversion": "145", - "kernelrelease": "3.13.0-98", + "kernelrelease": "3.13.0-98-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb" ] }, { @@ -35395,12 +34574,12 @@ "kernelrelease": "3.16.0-25-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" ] }, { @@ -35408,12 +34587,12 @@ "kernelrelease": "3.16.0-26-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" ] }, { @@ -35421,12 +34600,12 @@ "kernelrelease": "3.16.0-28-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" ] }, { @@ -35434,12 +34613,12 @@ "kernelrelease": "3.16.0-29-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" ] }, { @@ -35447,11 +34626,11 @@ "kernelrelease": "3.16.0-31-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" ] }, @@ -35462,10 +34641,10 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb" ] }, { @@ -35473,11 +34652,11 @@ "kernelrelease": "3.16.0-34-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" ] }, @@ -35486,12 +34665,12 @@ "kernelrelease": "3.16.0-36-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" ] }, { @@ -35499,12 +34678,12 @@ "kernelrelease": "3.16.0-37-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb" ] }, { @@ -35512,12 +34691,12 @@ "kernelrelease": "3.16.0-38-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" ] }, { @@ -35526,11 +34705,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb" ] }, { @@ -35538,12 +34717,12 @@ "kernelrelease": "3.16.0-41-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb" ] }, { @@ -35551,12 +34730,12 @@ "kernelrelease": "3.16.0-43-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" ] }, { @@ -35564,12 +34743,12 @@ "kernelrelease": "3.16.0-44-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" ] }, { @@ -35577,12 +34756,12 @@ "kernelrelease": "3.16.0-45-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb" ] }, { @@ -35590,12 +34769,12 @@ "kernelrelease": "3.16.0-46-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb" ] }, { @@ -35603,12 +34782,12 @@ "kernelrelease": "3.16.0-48-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb" ] }, { @@ -35616,12 +34795,12 @@ "kernelrelease": "3.16.0-49-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" ] }, { @@ -35629,12 +34808,12 @@ "kernelrelease": "3.16.0-50-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" ] }, { @@ -35642,11 +34821,11 @@ "kernelrelease": "3.16.0-51-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb" ] }, @@ -35655,12 +34834,12 @@ "kernelrelease": "3.16.0-52-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb" ] }, { @@ -35669,11 +34848,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" ] }, { @@ -35682,10 +34861,10 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb" ] }, @@ -35694,12 +34873,12 @@ "kernelrelease": "3.16.0-56-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb" ] }, { @@ -35707,12 +34886,12 @@ "kernelrelease": "3.16.0-57-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb" ] }, { @@ -35721,10 +34900,10 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb" ] }, @@ -35733,12 +34912,12 @@ "kernelrelease": "3.16.0-60-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" ] }, { @@ -35746,12 +34925,12 @@ "kernelrelease": "3.16.0-62-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" ] }, { @@ -35759,12 +34938,12 @@ "kernelrelease": "3.16.0-67-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" ] }, { @@ -35772,12 +34951,12 @@ "kernelrelease": "3.16.0-69-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb" ] }, { @@ -35786,11 +34965,11 @@ "target": "ubuntu-lts-utopic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" ] }, { @@ -35798,12 +34977,12 @@ "kernelrelease": "3.16.0-71-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb" ] }, { @@ -35811,12 +34990,12 @@ "kernelrelease": "3.16.0-73-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" ] }, { @@ -35824,12 +35003,12 @@ "kernelrelease": "3.16.0-76-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" ] }, { @@ -35837,12 +35016,12 @@ "kernelrelease": "3.16.0-77-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb" ] }, { @@ -35850,12 +35029,12 @@ "kernelrelease": "3.19.0-20-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb" ] }, { @@ -35863,12 +35042,12 @@ "kernelrelease": "3.19.0-21-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" ] }, { @@ -35876,11 +35055,11 @@ "kernelrelease": "3.19.0-22-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" ] }, @@ -35889,11 +35068,11 @@ "kernelrelease": "3.19.0-23-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" ] }, @@ -35905,9 +35084,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" ] }, { @@ -35915,12 +35094,12 @@ "kernelrelease": "3.19.0-26-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" ] }, { @@ -35929,10 +35108,10 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb" ] }, @@ -35941,12 +35120,12 @@ "kernelrelease": "3.19.0-30-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" ] }, { @@ -35956,9 +35135,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" ] }, @@ -35967,12 +35146,12 @@ "kernelrelease": "3.19.0-32-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb" ] }, { @@ -35980,12 +35159,12 @@ "kernelrelease": "3.19.0-33-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb" ] }, { @@ -35993,12 +35172,12 @@ "kernelrelease": "3.19.0-37-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" ] }, { @@ -36006,12 +35185,12 @@ "kernelrelease": "3.19.0-39-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb" ] }, { @@ -36019,12 +35198,12 @@ "kernelrelease": "3.19.0-41-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" ] }, { @@ -36032,12 +35211,12 @@ "kernelrelease": "3.19.0-42-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" ] }, { @@ -36046,11 +35225,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" ] }, { @@ -36058,12 +35237,12 @@ "kernelrelease": "3.19.0-47-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb" ] }, { @@ -36071,12 +35250,12 @@ "kernelrelease": "3.19.0-49-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" ] }, { @@ -36084,12 +35263,12 @@ "kernelrelease": "3.19.0-51-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" ] }, { @@ -36097,12 +35276,12 @@ "kernelrelease": "3.19.0-56-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" ] }, { @@ -36110,12 +35289,12 @@ "kernelrelease": "3.19.0-58-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb" ] }, { @@ -36123,12 +35302,12 @@ "kernelrelease": "3.19.0-59-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" ] }, { @@ -36136,12 +35315,12 @@ "kernelrelease": "3.19.0-61-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb" ] }, { @@ -36149,12 +35328,12 @@ "kernelrelease": "3.19.0-64-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb" ] }, { @@ -36163,11 +35342,11 @@ "target": "ubuntu-lts-vivid", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb" ] }, { @@ -36175,12 +35354,12 @@ "kernelrelease": "3.19.0-66-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" ] }, { @@ -36188,12 +35367,12 @@ "kernelrelease": "3.19.0-68-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" ] }, { @@ -36201,12 +35380,12 @@ "kernelrelease": "3.19.0-69-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" ] }, { @@ -36214,11 +35393,11 @@ "kernelrelease": "3.19.0-71-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb" ] }, @@ -36227,12 +35406,12 @@ "kernelrelease": "3.19.0-73-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" ] }, { @@ -36240,12 +35419,12 @@ "kernelrelease": "3.19.0-74-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" ] }, { @@ -36253,12 +35432,12 @@ "kernelrelease": "3.19.0-75-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" ] }, { @@ -36266,12 +35445,12 @@ "kernelrelease": "3.19.0-77-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb" ] }, { @@ -36279,12 +35458,12 @@ "kernelrelease": "3.19.0-78-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" ] }, { @@ -36292,12 +35471,12 @@ "kernelrelease": "3.19.0-79-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb" ] }, { @@ -36305,12 +35484,12 @@ "kernelrelease": "3.19.0-80-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb" ] }, { @@ -36330,9 +35509,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" ] }, { @@ -36340,10 +35519,10 @@ "kernelrelease": "4.15.0-1032-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" ] }, { @@ -36351,10 +35530,10 @@ "kernelrelease": "4.15.0-1035-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb" ] }, { @@ -36362,10 +35541,10 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb" ] }, { @@ -36374,9 +35553,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" ] }, { @@ -36385,8 +35564,8 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" ] }, @@ -36395,10 +35574,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" ] }, { @@ -36406,9 +35585,9 @@ "kernelrelease": "4.15.0-1041-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" ] }, @@ -36417,10 +35596,10 @@ "kernelrelease": "4.15.0-1045-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb" ] }, { @@ -36428,12 +35607,12 @@ "kernelrelease": "4.2.0-18-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" ] }, { @@ -36441,12 +35620,12 @@ "kernelrelease": "4.2.0-19-lts-wily", "target": "ubuntu-lts-wily", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" ] }, { @@ -36454,12 +35633,12 @@ "kernelrelease": "4.2.0-21-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" ] }, { @@ -36467,12 +35646,12 @@ "kernelrelease": "4.2.0-22-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" ] }, { @@ -36480,12 +35659,12 @@ "kernelrelease": "4.2.0-23-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb" ] }, { @@ -36493,12 +35672,12 @@ "kernelrelease": "4.2.0-25-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb" ] }, { @@ -36506,12 +35685,12 @@ "kernelrelease": "4.2.0-27-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" ] }, { @@ -36521,10 +35700,10 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb" ] }, { @@ -36532,12 +35711,12 @@ "kernelrelease": "4.2.0-34-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb" ] }, { @@ -36545,12 +35724,12 @@ "kernelrelease": "4.2.0-35-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb" ] }, { @@ -36558,12 +35737,12 @@ "kernelrelease": "4.2.0-36-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" ] }, { @@ -36571,12 +35750,12 @@ "kernelrelease": "4.2.0-38-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb" ] }, { @@ -36584,12 +35763,12 @@ "kernelrelease": "4.2.0-41-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" ] }, { @@ -36597,12 +35776,12 @@ "kernelrelease": "4.2.0-42-lts-wily", "target": "ubuntu-lts-wily", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb" ] }, { @@ -36610,12 +35789,12 @@ "kernelrelease": "4.4.0-101-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" ] }, { @@ -36623,12 +35802,12 @@ "kernelrelease": "4.4.0-103-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb" ] }, { @@ -36636,10 +35815,10 @@ "kernelrelease": "4.4.0-104-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" ] @@ -36649,12 +35828,12 @@ "kernelrelease": "4.4.0-108-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb" ] }, { @@ -36662,12 +35841,12 @@ "kernelrelease": "4.4.0-109-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb" ] }, { @@ -36675,12 +35854,12 @@ "kernelrelease": "4.4.0-111-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb" ] }, { @@ -36688,12 +35867,12 @@ "kernelrelease": "4.4.0-112-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" ] }, { @@ -36701,12 +35880,12 @@ "kernelrelease": "4.4.0-116-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" ] }, { @@ -36714,12 +35893,12 @@ "kernelrelease": "4.4.0-119-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb" ] }, { @@ -36727,12 +35906,12 @@ "kernelrelease": "4.4.0-121-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" ] }, { @@ -36740,11 +35919,11 @@ "kernelrelease": "4.4.0-124-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" ] }, @@ -36753,12 +35932,12 @@ "kernelrelease": "4.4.0-127-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" ] }, { @@ -36766,12 +35945,12 @@ "kernelrelease": "4.4.0-128-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb" ] }, { @@ -36779,12 +35958,12 @@ "kernelrelease": "4.4.0-130-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb" ] }, { @@ -36793,11 +35972,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" ] }, { @@ -36805,12 +35984,12 @@ "kernelrelease": "4.4.0-134-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" ] }, { @@ -36818,12 +35997,12 @@ "kernelrelease": "4.4.0-137-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb" ] }, { @@ -36831,12 +36010,12 @@ "kernelrelease": "4.4.0-138-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" ] }, { @@ -36844,12 +36023,12 @@ "kernelrelease": "4.4.0-139-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" ] }, { @@ -36857,12 +36036,12 @@ "kernelrelease": "4.4.0-141-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb" ] }, { @@ -36870,12 +36049,12 @@ "kernelrelease": "4.4.0-142-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" ] }, { @@ -36883,12 +36062,12 @@ "kernelrelease": "4.4.0-143-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" ] }, { @@ -36896,12 +36075,12 @@ "kernelrelease": "4.4.0-144-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" ] }, { @@ -36909,12 +36088,12 @@ "kernelrelease": "4.4.0-148-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb" ] }, { @@ -36923,11 +36102,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" ] }, { @@ -36935,12 +36114,12 @@ "kernelrelease": "4.4.0-22-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" ] }, { @@ -36948,12 +36127,12 @@ "kernelrelease": "4.4.0-24-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb" ] }, { @@ -36961,11 +36140,11 @@ "kernelrelease": "4.4.0-28-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb" ] }, @@ -36974,12 +36153,12 @@ "kernelrelease": "4.4.0-31-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb" ] }, { @@ -36987,12 +36166,12 @@ "kernelrelease": "4.4.0-34-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb" ] }, { @@ -37001,11 +36180,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb" ] }, { @@ -37013,12 +36192,12 @@ "kernelrelease": "4.4.0-38-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" ] }, { @@ -37026,12 +36205,12 @@ "kernelrelease": "4.4.0-42-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" ] }, { @@ -37039,12 +36218,12 @@ "kernelrelease": "4.4.0-45-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" ] }, { @@ -37053,24 +36232,24 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb" ] }, { "kernelversion": "72~14.04.1", "kernelrelease": "4.4.0-51-lts-xenial", "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" ] }, { @@ -37080,9 +36259,9 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" ] }, @@ -37091,11 +36270,11 @@ "kernelrelease": "4.4.0-57-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb" ] }, @@ -37105,11 +36284,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb" ] }, { @@ -37117,12 +36296,12 @@ "kernelrelease": "4.4.0-62-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" ] }, { @@ -37130,12 +36309,12 @@ "kernelrelease": "4.4.0-63-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" ] }, { @@ -37143,11 +36322,11 @@ "kernelrelease": "4.4.0-64-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" ] }, @@ -37156,11 +36335,11 @@ "kernelrelease": "4.4.0-66-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" ] }, @@ -37170,11 +36349,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" ] }, { @@ -37182,11 +36361,11 @@ "kernelrelease": "4.4.0-70-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb" ] }, @@ -37195,12 +36374,12 @@ "kernelrelease": "4.4.0-71-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb" ] }, { @@ -37208,12 +36387,12 @@ "kernelrelease": "4.4.0-72-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb" ] }, { @@ -37221,12 +36400,12 @@ "kernelrelease": "4.4.0-75-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb" ] }, { @@ -37234,12 +36413,12 @@ "kernelrelease": "4.4.0-78-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb" ] }, { @@ -37248,11 +36427,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb" ] }, { @@ -37261,11 +36440,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb" ] }, { @@ -37273,12 +36452,12 @@ "kernelrelease": "4.4.0-83-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb" ] }, { @@ -37286,12 +36465,12 @@ "kernelrelease": "4.4.0-87-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" ] }, { @@ -37300,11 +36479,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" ] }, { @@ -37312,11 +36491,11 @@ "kernelrelease": "4.4.0-91-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb" ] }, @@ -37325,12 +36504,12 @@ "kernelrelease": "4.4.0-92-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb" ] }, { @@ -37338,12 +36517,12 @@ "kernelrelease": "4.4.0-93-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb" ] }, { @@ -37351,12 +36530,12 @@ "kernelrelease": "4.4.0-96-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" ] }, { @@ -37364,12 +36543,12 @@ "kernelrelease": "4.4.0-97-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb" ] }, { @@ -37377,89 +36556,89 @@ "kernelrelease": "4.4.0-98-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" ] }, { "kernelversion": "160", - "kernelrelease": "3.13.0-113", + "kernelrelease": "3.13.0-113-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" ] }, { "kernelversion": "194", - "kernelrelease": "3.13.0-145", + "kernelrelease": "3.13.0-145-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" ] }, { "kernelversion": "208", - "kernelrelease": "3.13.0-158", + "kernelrelease": "3.13.0-158-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" ] }, { "kernelversion": "213", - "kernelrelease": "3.13.0-163", + "kernelrelease": "3.13.0-163-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" ] }, { "kernelversion": "219", - "kernelrelease": "3.13.0-169", + "kernelrelease": "3.13.0-169-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb" ] }, { "kernelversion": "74", - "kernelrelease": "3.13.0-45", + "kernelrelease": "3.13.0-45-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb" ] }, @@ -37468,12 +36647,12 @@ "kernelrelease": "3.16.0-30-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb" ] }, { @@ -37481,12 +36660,12 @@ "kernelrelease": "3.16.0-40-lts-utopic", "target": "ubuntu-lts-utopic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" ] }, { @@ -37494,12 +36673,12 @@ "kernelrelease": "3.19.0-18-lts-vivid", "target": "ubuntu-lts-vivid", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb" ] }, { @@ -37508,9 +36687,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb" ] }, { @@ -37518,10 +36697,10 @@ "kernelrelease": "4.15.0-1042-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb" ] }, { @@ -37530,11 +36709,11 @@ "target": "ubuntu-lts-xenial", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb" ] }, { @@ -37542,12 +36721,12 @@ "kernelrelease": "4.4.0-135-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb" ] }, { @@ -37555,12 +36734,12 @@ "kernelrelease": "4.4.0-140-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb" ] }, { @@ -37568,25 +36747,25 @@ "kernelrelease": "4.4.0-146-lts-xenial", "target": "ubuntu-lts-xenial", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" ] }, { "kernelversion": "46", - "kernelrelease": "3.13.0-24", + "kernelrelease": "3.13.0-24-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" ] }, { @@ -37594,10 +36773,10 @@ "kernelrelease": "4.15.0-1066-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" ] }, { @@ -37605,9 +36784,9 @@ "kernelrelease": "4.15.0-1067-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" ] }, @@ -37616,9 +36795,9 @@ "kernelrelease": "4.15.0-1095-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb" ] }, @@ -37627,10 +36806,10 @@ "kernelrelease": "4.15.0-1095-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" ] }, { @@ -37638,9 +36817,9 @@ "kernelrelease": "4.15.0-1096-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" ] }, @@ -37649,10 +36828,10 @@ "kernelrelease": "4.15.0-1110-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" ] }, { @@ -37660,36 +36839,36 @@ "kernelrelease": "4.4.0-1125-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" ] }, { "kernelversion": "238", - "kernelrelease": "4.4.0-206", + "kernelrelease": "4.4.0-206-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb" ] }, { "kernelversion": "239", - "kernelrelease": "4.4.0-207", + "kernelrelease": "4.4.0-207-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" ] }, { @@ -37697,12 +36876,12 @@ "kernelrelease": "4.10.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb" ] }, { @@ -37710,12 +36889,12 @@ "kernelrelease": "4.10.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" ] }, { @@ -37723,12 +36902,12 @@ "kernelrelease": "4.10.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb" ] }, { @@ -37736,12 +36915,12 @@ "kernelrelease": "4.10.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb" ] }, { @@ -37749,12 +36928,12 @@ "kernelrelease": "4.10.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb" ] }, { @@ -37762,11 +36941,11 @@ "kernelrelease": "4.10.0-24-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb" ] }, @@ -37775,10 +36954,10 @@ "kernelrelease": "4.10.0-26-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" ] @@ -37789,11 +36968,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb" ] }, { @@ -37801,12 +36980,12 @@ "kernelrelease": "4.10.0-28-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb" ] }, { @@ -37814,12 +36993,12 @@ "kernelrelease": "4.10.0-30-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb" ] }, { @@ -37827,12 +37006,12 @@ "kernelrelease": "4.10.0-32-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" ] }, { @@ -37840,12 +37019,12 @@ "kernelrelease": "4.10.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb" ] }, { @@ -37853,11 +37032,11 @@ "kernelrelease": "4.10.0-35-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" ] }, @@ -37866,12 +37045,12 @@ "kernelrelease": "4.10.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb" ] }, { @@ -37879,12 +37058,12 @@ "kernelrelease": "4.10.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" ] }, { @@ -37892,12 +37071,12 @@ "kernelrelease": "4.10.0-40-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb" ] }, { @@ -37905,12 +37084,12 @@ "kernelrelease": "4.10.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" ] }, { @@ -37920,8 +37099,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb" ] }, { @@ -37929,10 +37108,10 @@ "kernelrelease": "4.11.0-1016-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" ] }, { @@ -37940,12 +37119,12 @@ "kernelrelease": "4.11.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" ] }, { @@ -37953,11 +37132,11 @@ "kernelrelease": "4.11.0-14-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb" ] }, @@ -37966,10 +37145,10 @@ "kernelrelease": "4.13.0-1005-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" ] }, { @@ -37977,10 +37156,10 @@ "kernelrelease": "4.13.0-1006-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" ] }, { @@ -37988,10 +37167,10 @@ "kernelrelease": "4.13.0-1007-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" ] }, { @@ -37999,9 +37178,9 @@ "kernelrelease": "4.13.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" ] }, @@ -38010,10 +37189,10 @@ "kernelrelease": "4.13.0-1014-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb" ] }, { @@ -38022,9 +37201,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb" ] }, { @@ -38032,9 +37211,9 @@ "kernelrelease": "4.13.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb" ] }, @@ -38044,9 +37223,9 @@ "target": "ubuntu-hwe-edge", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb" ] @@ -38056,12 +37235,12 @@ "kernelrelease": "4.13.0-17-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb" ] }, { @@ -38069,12 +37248,12 @@ "kernelrelease": "4.13.0-19-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" ] }, { @@ -38082,12 +37261,12 @@ "kernelrelease": "4.13.0-21-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" ] }, { @@ -38095,11 +37274,11 @@ "kernelrelease": "4.13.0-25-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb" ] }, @@ -38108,12 +37287,12 @@ "kernelrelease": "4.13.0-26-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb" ] }, { @@ -38121,12 +37300,12 @@ "kernelrelease": "4.13.0-31-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb" ] }, { @@ -38134,11 +37313,11 @@ "kernelrelease": "4.13.0-32-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" ] }, @@ -38147,12 +37326,12 @@ "kernelrelease": "4.13.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb" ] }, { @@ -38160,12 +37339,12 @@ "kernelrelease": "4.13.0-37-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" ] }, { @@ -38173,12 +37352,12 @@ "kernelrelease": "4.13.0-38-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb" ] }, { @@ -38186,12 +37365,12 @@ "kernelrelease": "4.13.0-39-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb" ] }, { @@ -38199,12 +37378,12 @@ "kernelrelease": "4.13.0-41-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" ] }, { @@ -38213,11 +37392,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb" ] }, { @@ -38225,12 +37404,12 @@ "kernelrelease": "4.13.0-45-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" ] }, { @@ -38238,10 +37417,10 @@ "kernelrelease": "4.15.0-1008-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" ] }, { @@ -38250,9 +37429,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" ] }, { @@ -38261,11 +37440,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" ] }, { @@ -38274,9 +37453,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" ] }, { @@ -38286,8 +37465,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" ] }, { @@ -38295,10 +37474,10 @@ "kernelrelease": "4.15.0-1013-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" ] }, { @@ -38306,10 +37485,10 @@ "kernelrelease": "4.15.0-1014-azure", "target": "ubuntu-azure", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" ] }, { @@ -38317,10 +37496,10 @@ "kernelrelease": "4.15.0-1014-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" ] }, { @@ -38339,10 +37518,10 @@ "kernelrelease": "4.15.0-1017-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" ] }, { @@ -38361,10 +37540,10 @@ "kernelrelease": "4.15.0-1018-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" ] }, { @@ -38372,8 +37551,8 @@ "kernelrelease": "4.15.0-1018-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" ] @@ -38383,10 +37562,10 @@ "kernelrelease": "4.15.0-1018-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" ] }, { @@ -38396,8 +37575,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb" ] }, { @@ -38405,10 +37584,10 @@ "kernelrelease": "4.15.0-1019-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb" ] }, { @@ -38416,10 +37595,10 @@ "kernelrelease": "4.15.0-1021-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb" ] }, { @@ -38427,10 +37606,10 @@ "kernelrelease": "4.15.0-1021-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb" ] }, { @@ -38438,9 +37617,9 @@ "kernelrelease": "4.15.0-1021-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" ] }, @@ -38449,10 +37628,10 @@ "kernelrelease": "4.15.0-1022-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" ] }, { @@ -38461,9 +37640,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" ] }, { @@ -38471,8 +37650,8 @@ "kernelrelease": "4.15.0-1023-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" ] @@ -38484,8 +37663,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" ] }, { @@ -38493,9 +37672,9 @@ "kernelrelease": "4.15.0-1023-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" ] }, @@ -38504,32 +37683,32 @@ "kernelrelease": "4.15.0-1024-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", + "kernelrelease": "4.15.0-1025-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" ] }, { "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", + "kernelrelease": "4.15.0-1025-azure", + "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" ] }, { @@ -38537,10 +37716,10 @@ "kernelrelease": "4.15.0-1025-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" ] }, { @@ -38559,10 +37738,10 @@ "kernelrelease": "4.15.0-1026-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" ] }, { @@ -38570,10 +37749,10 @@ "kernelrelease": "4.15.0-1027-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb" ] }, { @@ -38581,10 +37760,10 @@ "kernelrelease": "4.15.0-1027-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" ] }, { @@ -38592,10 +37771,10 @@ "kernelrelease": "4.15.0-1028-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" ] }, { @@ -38603,10 +37782,10 @@ "kernelrelease": "4.15.0-1028-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" ] }, { @@ -38614,10 +37793,10 @@ "kernelrelease": "4.15.0-1029-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" ] }, { @@ -38625,10 +37804,10 @@ "kernelrelease": "4.15.0-1029-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" ] }, { @@ -38637,9 +37816,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb" ] }, { @@ -38647,10 +37826,10 @@ "kernelrelease": "4.15.0-1031-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" ] }, { @@ -38658,10 +37837,10 @@ "kernelrelease": "4.15.0-1031-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb" ] }, { @@ -38670,9 +37849,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" ] }, { @@ -38681,8 +37860,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb" ] }, @@ -38692,8 +37871,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" ] }, @@ -38704,8 +37883,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb" ] }, { @@ -38714,9 +37893,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" ] }, { @@ -38725,8 +37904,8 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb" ] }, @@ -38735,21 +37914,10 @@ "kernelrelease": "4.15.0-1035-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" ] }, { @@ -38757,21 +37925,21 @@ "kernelrelease": "4.15.0-1036-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { - "kernelversion": "39~16.04.1", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", + "kernelversion": "38~16.04.1", + "kernelrelease": "4.15.0-1036-gcp", + "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" ] }, { @@ -38779,10 +37947,21 @@ "kernelrelease": "4.15.0-1037-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" + ] + }, + { + "kernelversion": "39~16.04.1", + "kernelrelease": "4.15.0-1037-azure", + "target": "ubuntu-azure", + "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" ] }, { @@ -38790,10 +37969,10 @@ "kernelrelease": "4.15.0-1037-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb" ] }, { @@ -38801,10 +37980,10 @@ "kernelrelease": "4.15.0-1038-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" ] }, { @@ -38812,10 +37991,10 @@ "kernelrelease": "4.15.0-1039-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" ] }, { @@ -38823,10 +38002,10 @@ "kernelrelease": "4.15.0-1040-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb" ] }, { @@ -38834,9 +38013,9 @@ "kernelrelease": "4.15.0-1040-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" ] }, @@ -38847,8 +38026,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" ] }, { @@ -38856,10 +38035,10 @@ "kernelrelease": "4.15.0-1045-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" ] }, { @@ -38867,10 +38046,10 @@ "kernelrelease": "4.15.0-1046-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" ] }, { @@ -38878,10 +38057,10 @@ "kernelrelease": "4.15.0-1046-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb" ] }, { @@ -38889,10 +38068,10 @@ "kernelrelease": "4.15.0-1047-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" ] }, { @@ -38900,10 +38079,10 @@ "kernelrelease": "4.15.0-1049-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" ] }, { @@ -38911,10 +38090,10 @@ "kernelrelease": "4.15.0-1050-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" ] }, { @@ -38923,9 +38102,9 @@ "target": "ubuntu-oracle", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb" ] }, { @@ -38933,10 +38112,10 @@ "kernelrelease": "4.15.0-1051-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" ] }, { @@ -38944,10 +38123,10 @@ "kernelrelease": "4.15.0-1051-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" ] }, { @@ -38955,9 +38134,9 @@ "kernelrelease": "4.15.0-1052-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" ] }, @@ -38966,10 +38145,10 @@ "kernelrelease": "4.15.0-1052-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" ] }, { @@ -38977,10 +38156,10 @@ "kernelrelease": "4.15.0-1053-oracle", "target": "ubuntu-oracle", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" ] }, { @@ -38988,9 +38167,9 @@ "kernelrelease": "4.15.0-1054-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" ] }, @@ -38999,10 +38178,10 @@ "kernelrelease": "4.15.0-1055-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" ] }, { @@ -39010,10 +38189,10 @@ "kernelrelease": "4.15.0-1055-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" ] }, { @@ -39021,9 +38200,9 @@ "kernelrelease": "4.15.0-1056-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" ] }, @@ -39032,10 +38211,10 @@ "kernelrelease": "4.15.0-1056-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" ] }, { @@ -39043,10 +38222,10 @@ "kernelrelease": "4.15.0-1058-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" ] }, { @@ -39054,10 +38233,10 @@ "kernelrelease": "4.15.0-1058-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" ] }, { @@ -39065,10 +38244,10 @@ "kernelrelease": "4.15.0-1059-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" ] }, { @@ -39076,12 +38255,12 @@ "kernelrelease": "4.15.0-106-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb" ] }, { @@ -39089,10 +38268,10 @@ "kernelrelease": "4.15.0-1060-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" ] }, { @@ -39101,9 +38280,9 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb" ] }, { @@ -39111,10 +38290,10 @@ "kernelrelease": "4.15.0-1061-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb" ] }, { @@ -39122,10 +38301,10 @@ "kernelrelease": "4.15.0-1061-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" ] }, { @@ -39133,10 +38312,10 @@ "kernelrelease": "4.15.0-1061-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb" ] }, { @@ -39144,10 +38323,10 @@ "kernelrelease": "4.15.0-1062-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" ] }, { @@ -39156,9 +38335,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" ] }, { @@ -39166,10 +38345,10 @@ "kernelrelease": "4.15.0-1064-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" ] }, { @@ -39177,10 +38356,10 @@ "kernelrelease": "4.15.0-1064-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb" ] }, { @@ -39189,9 +38368,9 @@ "target": "ubuntu-oracle", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb" ] }, { @@ -39199,9 +38378,9 @@ "kernelrelease": "4.15.0-1066-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" ] }, @@ -39211,9 +38390,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb" ] }, { @@ -39221,10 +38400,10 @@ "kernelrelease": "4.15.0-1068-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" ] }, { @@ -39232,8 +38411,8 @@ "kernelrelease": "4.15.0-1069-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb" ] @@ -39243,9 +38422,9 @@ "kernelrelease": "4.15.0-1069-oracle", "target": "ubuntu-oracle", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" ] }, @@ -39254,12 +38433,12 @@ "kernelrelease": "4.15.0-107-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" ] }, { @@ -39267,10 +38446,10 @@ "kernelrelease": "4.15.0-1070-oracle", "target": "ubuntu-oracle", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb" ] }, { @@ -39278,10 +38457,10 @@ "kernelrelease": "4.15.0-1071-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" ] }, { @@ -39289,10 +38468,10 @@ "kernelrelease": "4.15.0-1071-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" ] }, { @@ -39300,10 +38479,10 @@ "kernelrelease": "4.15.0-1075-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" ] }, { @@ -39311,10 +38490,10 @@ "kernelrelease": "4.15.0-1077-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb" ] }, { @@ -39323,9 +38502,9 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb" ] }, { @@ -39334,8 +38513,8 @@ "target": "ubuntu-gcp", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" ] }, @@ -39345,8 +38524,8 @@ "target": "ubuntu-gcp", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" ] }, @@ -39355,10 +38534,10 @@ "kernelrelease": "4.15.0-1082-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" ] }, { @@ -39366,10 +38545,10 @@ "kernelrelease": "4.15.0-1083-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb" ] }, { @@ -39377,10 +38556,10 @@ "kernelrelease": "4.15.0-1083-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb" ] }, { @@ -39388,9 +38567,9 @@ "kernelrelease": "4.15.0-1084-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb" ] }, @@ -39410,10 +38589,10 @@ "kernelrelease": "4.15.0-1087-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" ] }, { @@ -39421,10 +38600,10 @@ "kernelrelease": "4.15.0-1089-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" ] }, { @@ -39432,10 +38611,10 @@ "kernelrelease": "4.15.0-1090-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" ] }, { @@ -39443,10 +38622,10 @@ "kernelrelease": "4.15.0-1091-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" ] }, { @@ -39454,10 +38633,10 @@ "kernelrelease": "4.15.0-1091-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" ] }, { @@ -39465,9 +38644,9 @@ "kernelrelease": "4.15.0-1092-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" ] }, @@ -39476,10 +38655,10 @@ "kernelrelease": "4.15.0-1092-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" ] }, { @@ -39487,10 +38666,10 @@ "kernelrelease": "4.15.0-1093-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" ] }, { @@ -39498,10 +38677,10 @@ "kernelrelease": "4.15.0-1093-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" ] }, { @@ -39509,10 +38688,10 @@ "kernelrelease": "4.15.0-1093-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" ] }, { @@ -39520,8 +38699,8 @@ "kernelrelease": "4.15.0-1094-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" ] @@ -39531,10 +38710,10 @@ "kernelrelease": "4.15.0-1094-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" ] }, { @@ -39543,9 +38722,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" ] }, { @@ -39553,10 +38732,10 @@ "kernelrelease": "4.15.0-1096-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" ] }, { @@ -39564,10 +38743,10 @@ "kernelrelease": "4.15.0-1096-gcp", "target": "ubuntu-gcp", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb" ] }, { @@ -39575,9 +38754,9 @@ "kernelrelease": "4.15.0-1097-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" ] }, @@ -39586,10 +38765,10 @@ "kernelrelease": "4.15.0-1097-gcp", "target": "ubuntu-gcp", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb" ] }, { @@ -39597,10 +38776,10 @@ "kernelrelease": "4.15.0-1098-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" ] }, { @@ -39608,10 +38787,10 @@ "kernelrelease": "4.15.0-1098-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" ] }, { @@ -39619,10 +38798,10 @@ "kernelrelease": "4.15.0-1098-gcp", "target": "ubuntu-gcp", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb" ] }, { @@ -39630,8 +38809,8 @@ "kernelrelease": "4.15.0-1099-aws-hwe", "target": "ubuntu-aws-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" ] @@ -39641,10 +38820,10 @@ "kernelrelease": "4.15.0-1102-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" ] }, { @@ -39653,9 +38832,9 @@ "target": "ubuntu-azure", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" ] }, { @@ -39663,10 +38842,10 @@ "kernelrelease": "4.15.0-1106-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb" ] }, { @@ -39674,10 +38853,10 @@ "kernelrelease": "4.15.0-1108-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" ] }, { @@ -39685,10 +38864,10 @@ "kernelrelease": "4.15.0-1109-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" ] }, { @@ -39697,9 +38876,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" ] }, { @@ -39707,10 +38886,10 @@ "kernelrelease": "4.15.0-1112-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" ] }, { @@ -39718,10 +38897,10 @@ "kernelrelease": "4.15.0-1113-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb" ] }, { @@ -39729,12 +38908,12 @@ "kernelrelease": "4.15.0-112-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" ] }, { @@ -39742,11 +38921,11 @@ "kernelrelease": "4.15.0-115-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb" ] }, @@ -39756,11 +38935,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb" ] }, { @@ -39768,12 +38947,12 @@ "kernelrelease": "4.15.0-118-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb" ] }, { @@ -39781,12 +38960,12 @@ "kernelrelease": "4.15.0-120-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" ] }, { @@ -39794,10 +38973,10 @@ "kernelrelease": "4.15.0-122-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb" ] @@ -39810,9 +38989,9 @@ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" ] }, { @@ -39820,12 +38999,12 @@ "kernelrelease": "4.15.0-128-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb" ] }, { @@ -39833,12 +39012,12 @@ "kernelrelease": "4.15.0-129-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" ] }, { @@ -39846,12 +39025,12 @@ "kernelrelease": "4.15.0-13-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb" ] }, { @@ -39859,12 +39038,12 @@ "kernelrelease": "4.15.0-132-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" ] }, { @@ -39872,11 +39051,11 @@ "kernelrelease": "4.15.0-133-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" ] }, @@ -39885,12 +39064,12 @@ "kernelrelease": "4.15.0-136-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" ] }, { @@ -39899,11 +39078,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb" ] }, { @@ -39911,12 +39090,12 @@ "kernelrelease": "4.15.0-139-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" ] }, { @@ -39924,12 +39103,12 @@ "kernelrelease": "4.15.0-140-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" ] }, { @@ -39937,12 +39116,12 @@ "kernelrelease": "4.15.0-142-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb" ] }, { @@ -39953,9 +39132,9 @@ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" ] }, { @@ -39963,12 +39142,12 @@ "kernelrelease": "4.15.0-20-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" ] }, { @@ -39976,11 +39155,11 @@ "kernelrelease": "4.15.0-22-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" ] }, @@ -39989,12 +39168,12 @@ "kernelrelease": "4.15.0-23-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" ] }, { @@ -40002,12 +39181,12 @@ "kernelrelease": "4.15.0-24-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" ] }, { @@ -40015,12 +39194,12 @@ "kernelrelease": "4.15.0-29-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb" ] }, { @@ -40028,12 +39207,12 @@ "kernelrelease": "4.15.0-30-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb" ] }, { @@ -40041,12 +39220,12 @@ "kernelrelease": "4.15.0-32-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb" ] }, { @@ -40054,12 +39233,12 @@ "kernelrelease": "4.15.0-33-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" ] }, { @@ -40067,12 +39246,12 @@ "kernelrelease": "4.15.0-34-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb" ] }, { @@ -40080,12 +39259,12 @@ "kernelrelease": "4.15.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb" ] }, { @@ -40093,10 +39272,10 @@ "kernelrelease": "4.15.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb" ] @@ -40106,12 +39285,12 @@ "kernelrelease": "4.15.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb" ] }, { @@ -40120,11 +39299,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" ] }, { @@ -40132,12 +39311,12 @@ "kernelrelease": "4.15.0-45-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" ] }, { @@ -40145,12 +39324,12 @@ "kernelrelease": "4.15.0-46-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" ] }, { @@ -40158,12 +39337,12 @@ "kernelrelease": "4.15.0-47-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb" ] }, { @@ -40171,12 +39350,12 @@ "kernelrelease": "4.15.0-50-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" ] }, { @@ -40184,12 +39363,12 @@ "kernelrelease": "4.15.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb" ] }, { @@ -40198,11 +39377,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" ] }, { @@ -40210,12 +39389,12 @@ "kernelrelease": "4.15.0-54-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" ] }, { @@ -40223,12 +39402,12 @@ "kernelrelease": "4.15.0-55-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb" ] }, { @@ -40236,12 +39415,12 @@ "kernelrelease": "4.15.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb" ] }, { @@ -40249,12 +39428,12 @@ "kernelrelease": "4.15.0-60-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb" ] }, { @@ -40262,12 +39441,12 @@ "kernelrelease": "4.15.0-62-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb" ] }, { @@ -40275,11 +39454,11 @@ "kernelrelease": "4.15.0-64-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" ] }, @@ -40288,12 +39467,12 @@ "kernelrelease": "4.15.0-65-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" ] }, { @@ -40301,12 +39480,12 @@ "kernelrelease": "4.15.0-66-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" ] }, { @@ -40314,12 +39493,12 @@ "kernelrelease": "4.15.0-69-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" ] }, { @@ -40327,12 +39506,12 @@ "kernelrelease": "4.15.0-70-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" ] }, { @@ -40340,12 +39519,12 @@ "kernelrelease": "4.15.0-72-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" ] }, { @@ -40353,12 +39532,12 @@ "kernelrelease": "4.15.0-74-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb" ] }, { @@ -40366,12 +39545,12 @@ "kernelrelease": "4.15.0-76-hwe", "target": "ubuntu-hwe", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb" ] }, { @@ -40379,12 +39558,12 @@ "kernelrelease": "4.15.0-88-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb" ] }, { @@ -40392,12 +39571,12 @@ "kernelrelease": "4.15.0-91-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" ] }, { @@ -40406,11 +39585,11 @@ "target": "ubuntu-hwe", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb" ] }, { @@ -40418,12 +39597,12 @@ "kernelrelease": "4.15.0-99-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" ] }, { @@ -40431,8 +39610,8 @@ "kernelrelease": "4.4.0-1007-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb" ] @@ -40442,10 +39621,10 @@ "kernelrelease": "4.4.0-1008-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" ] }, { @@ -40453,22 +39632,22 @@ "kernelrelease": "4.4.0-1009-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb" ] }, { "kernelversion": "124", - "kernelrelease": "4.4.0-101", + "kernelrelease": "4.4.0-101-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb" ] }, @@ -40477,10 +39656,10 @@ "kernelrelease": "4.4.0-1010-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" ] }, { @@ -40489,9 +39668,9 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" ] }, { @@ -40499,10 +39678,10 @@ "kernelrelease": "4.4.0-1013-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" ] }, { @@ -40512,8 +39691,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb" ] }, { @@ -40521,10 +39700,10 @@ "kernelrelease": "4.4.0-1015-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" ] }, { @@ -40544,8 +39723,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" ] }, @@ -40556,8 +39735,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb" ] }, { @@ -40565,10 +39744,10 @@ "kernelrelease": "4.4.0-1018-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb" ] }, { @@ -40576,9 +39755,9 @@ "kernelrelease": "4.4.0-1019-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb" ] }, @@ -40587,9 +39766,9 @@ "kernelrelease": "4.4.0-1020-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb" ] }, @@ -40598,10 +39777,10 @@ "kernelrelease": "4.4.0-1020-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" ] }, { @@ -40609,10 +39788,10 @@ "kernelrelease": "4.4.0-1021-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" ] }, { @@ -40631,10 +39810,10 @@ "kernelrelease": "4.4.0-1023-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" ] }, { @@ -40642,9 +39821,9 @@ "kernelrelease": "4.4.0-1026-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" ] }, @@ -40653,10 +39832,10 @@ "kernelrelease": "4.4.0-1026-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb" ] }, { @@ -40664,10 +39843,10 @@ "kernelrelease": "4.4.0-1027-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" ] }, { @@ -40675,10 +39854,10 @@ "kernelrelease": "4.4.0-1028-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" ] }, { @@ -40686,23 +39865,23 @@ "kernelrelease": "4.4.0-1029-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" ] }, { "kernelversion": "126", - "kernelrelease": "4.4.0-103", + "kernelrelease": "4.4.0-103-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb" ] }, { @@ -40711,8 +39890,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" ] }, @@ -40722,9 +39901,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb" ] }, { @@ -40733,8 +39912,8 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" ] }, @@ -40744,8 +39923,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb" ] }, @@ -40754,10 +39933,10 @@ "kernelrelease": "4.4.0-1032-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" ] }, { @@ -40765,10 +39944,10 @@ "kernelrelease": "4.4.0-1035-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" ] }, { @@ -40777,9 +39956,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb" ] }, { @@ -40787,10 +39966,10 @@ "kernelrelease": "4.4.0-1036-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" ] }, { @@ -40798,10 +39977,10 @@ "kernelrelease": "4.4.0-1037-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" ] }, { @@ -40809,10 +39988,10 @@ "kernelrelease": "4.4.0-1038-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb" ] }, { @@ -40820,10 +39999,10 @@ "kernelrelease": "4.4.0-1039-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb" ] }, { @@ -40831,23 +40010,23 @@ "kernelrelease": "4.4.0-1039-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" ] }, { "kernelversion": "127", - "kernelrelease": "4.4.0-104", + "kernelrelease": "4.4.0-104-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" ] }, { @@ -40867,8 +40046,8 @@ "target": "ubuntu-aws", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" ] }, @@ -40888,10 +40067,10 @@ "kernelrelease": "4.4.0-1043-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb" ] }, { @@ -40899,10 +40078,10 @@ "kernelrelease": "4.4.0-1043-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" ] }, { @@ -40910,10 +40089,10 @@ "kernelrelease": "4.4.0-1044-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" ] }, { @@ -40932,9 +40111,9 @@ "kernelrelease": "4.4.0-1047-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb" ] }, @@ -40943,9 +40122,9 @@ "kernelrelease": "4.4.0-1047-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb" ] }, @@ -40954,10 +40133,10 @@ "kernelrelease": "4.4.0-1048-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" ] }, { @@ -40966,8 +40145,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" ] }, @@ -40978,8 +40157,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb" ] }, { @@ -40987,10 +40166,10 @@ "kernelrelease": "4.4.0-1051-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb" ] }, { @@ -40998,10 +40177,10 @@ "kernelrelease": "4.4.0-1052-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" ] }, { @@ -41021,8 +40200,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb" ] }, @@ -41031,10 +40210,10 @@ "kernelrelease": "4.4.0-1054-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb" ] }, { @@ -41042,9 +40221,9 @@ "kernelrelease": "4.4.0-1055-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb" ] }, @@ -41053,9 +40232,9 @@ "kernelrelease": "4.4.0-1056-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" ] }, @@ -41064,10 +40243,10 @@ "kernelrelease": "4.4.0-1057-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" ] }, { @@ -41086,10 +40265,10 @@ "kernelrelease": "4.4.0-1059-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb" ] }, { @@ -41097,8 +40276,8 @@ "kernelrelease": "4.4.0-1060-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" ] @@ -41108,9 +40287,9 @@ "kernelrelease": "4.4.0-1060-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" ] }, @@ -41119,9 +40298,9 @@ "kernelrelease": "4.4.0-1061-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" ] }, @@ -41131,9 +40310,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" ] }, { @@ -41141,10 +40320,10 @@ "kernelrelease": "4.4.0-1062-kvm", "target": "ubuntu-kvm", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" ] }, { @@ -41152,10 +40331,10 @@ "kernelrelease": "4.4.0-1063-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" ] }, { @@ -41163,10 +40342,10 @@ "kernelrelease": "4.4.0-1064-kvm", "target": "ubuntu-kvm", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" ] }, { @@ -41174,9 +40353,9 @@ "kernelrelease": "4.4.0-1065-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb" ] }, @@ -41185,10 +40364,10 @@ "kernelrelease": "4.4.0-1065-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb" ] }, { @@ -41196,10 +40375,10 @@ "kernelrelease": "4.4.0-1066-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" ] }, { @@ -41207,10 +40386,10 @@ "kernelrelease": "4.4.0-1066-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" ] }, { @@ -41218,10 +40397,10 @@ "kernelrelease": "4.4.0-1068-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" ] }, { @@ -41229,10 +40408,10 @@ "kernelrelease": "4.4.0-1069-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" ] }, { @@ -41240,10 +40419,10 @@ "kernelrelease": "4.4.0-1069-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" ] }, { @@ -41251,10 +40430,10 @@ "kernelrelease": "4.4.0-1070-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" ] }, { @@ -41263,8 +40442,8 @@ "target": "ubuntu-kvm", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" ] }, @@ -41273,10 +40452,10 @@ "kernelrelease": "4.4.0-1071-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" ] }, { @@ -41284,8 +40463,8 @@ "kernelrelease": "4.4.0-1072-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb" ] @@ -41297,8 +40476,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" ] }, { @@ -41306,10 +40485,10 @@ "kernelrelease": "4.4.0-1075-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb" ] }, { @@ -41317,10 +40496,10 @@ "kernelrelease": "4.4.0-1075-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" ] }, { @@ -41328,10 +40507,10 @@ "kernelrelease": "4.4.0-1076-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" ] }, { @@ -41339,10 +40518,10 @@ "kernelrelease": "4.4.0-1077-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" ] }, { @@ -41350,10 +40529,10 @@ "kernelrelease": "4.4.0-1077-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb" ] }, { @@ -41361,10 +40540,10 @@ "kernelrelease": "4.4.0-1078-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" ] }, { @@ -41372,10 +40551,10 @@ "kernelrelease": "4.4.0-1079-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" ] }, { @@ -41383,22 +40562,22 @@ "kernelrelease": "4.4.0-1079-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb" ] }, { "kernelversion": "131", - "kernelrelease": "4.4.0-108", + "kernelrelease": "4.4.0-108-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" ] }, @@ -41407,10 +40586,10 @@ "kernelrelease": "4.4.0-1080-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" ] }, { @@ -41418,10 +40597,10 @@ "kernelrelease": "4.4.0-1082-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" ] }, { @@ -41429,10 +40608,10 @@ "kernelrelease": "4.4.0-1083-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" ] }, { @@ -41440,10 +40619,10 @@ "kernelrelease": "4.4.0-1084-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb" ] }, { @@ -41451,9 +40630,9 @@ "kernelrelease": "4.4.0-1084-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb" ] }, @@ -41463,9 +40642,9 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" ] }, { @@ -41474,9 +40653,9 @@ "target": "ubuntu-kvm", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb" ] }, { @@ -41484,9 +40663,9 @@ "kernelrelease": "4.4.0-1087-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb" ] }, @@ -41497,8 +40676,8 @@ "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" ] }, { @@ -41506,9 +40685,9 @@ "kernelrelease": "4.4.0-1088-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb" ] }, @@ -41517,10 +40696,10 @@ "kernelrelease": "4.4.0-1088-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" ] }, { @@ -41530,21 +40709,21 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" ] }, { "kernelversion": "132", - "kernelrelease": "4.4.0-109", + "kernelrelease": "4.4.0-109-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" ] }, { @@ -41552,10 +40731,10 @@ "kernelrelease": "4.4.0-1090-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" ] }, { @@ -41563,8 +40742,8 @@ "kernelrelease": "4.4.0-1090-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" ] @@ -41574,10 +40753,10 @@ "kernelrelease": "4.4.0-1091-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" ] }, { @@ -41585,8 +40764,8 @@ "kernelrelease": "4.4.0-1092-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" ] @@ -41596,10 +40775,10 @@ "kernelrelease": "4.4.0-1092-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" ] }, { @@ -41607,10 +40786,10 @@ "kernelrelease": "4.4.0-1093-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" ] }, { @@ -41618,10 +40797,10 @@ "kernelrelease": "4.4.0-1094-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb" ] }, { @@ -41629,10 +40808,10 @@ "kernelrelease": "4.4.0-1095-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb" ] }, { @@ -41640,10 +40819,10 @@ "kernelrelease": "4.4.0-1096-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" ] }, { @@ -41651,10 +40830,10 @@ "kernelrelease": "4.4.0-1098-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" ] }, { @@ -41662,8 +40841,8 @@ "kernelrelease": "4.4.0-1099-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" ] @@ -41673,9 +40852,9 @@ "kernelrelease": "4.4.0-1100-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" ] }, @@ -41684,10 +40863,10 @@ "kernelrelease": "4.4.0-1101-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" ] }, { @@ -41695,9 +40874,9 @@ "kernelrelease": "4.4.0-1102-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" ] }, @@ -41706,10 +40885,10 @@ "kernelrelease": "4.4.0-1104-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" ] }, { @@ -41717,10 +40896,10 @@ "kernelrelease": "4.4.0-1105-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" ] }, { @@ -41728,10 +40907,10 @@ "kernelrelease": "4.4.0-1106-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" ] }, { @@ -41739,9 +40918,9 @@ "kernelrelease": "4.4.0-1107-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" ] }, @@ -41750,9 +40929,9 @@ "kernelrelease": "4.4.0-1109-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb" ] }, @@ -41761,10 +40940,10 @@ "kernelrelease": "4.4.0-1110-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb" ] }, { @@ -41772,9 +40951,9 @@ "kernelrelease": "4.4.0-1111-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb" ] }, @@ -41783,10 +40962,10 @@ "kernelrelease": "4.4.0-1112-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" ] }, { @@ -41794,10 +40973,10 @@ "kernelrelease": "4.4.0-1113-aws", "target": "ubuntu-aws", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" ] }, { @@ -41805,10 +40984,10 @@ "kernelrelease": "4.4.0-1114-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb" ] }, { @@ -41816,10 +40995,10 @@ "kernelrelease": "4.4.0-1117-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" ] }, { @@ -41827,10 +41006,10 @@ "kernelrelease": "4.4.0-1118-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" ] }, { @@ -41838,23 +41017,23 @@ "kernelrelease": "4.4.0-1119-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" ] }, { "kernelversion": "135", - "kernelrelease": "4.4.0-112", + "kernelrelease": "4.4.0-112-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb" ] }, { @@ -41863,8 +41042,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" ] }, @@ -41884,9 +41063,9 @@ "kernelrelease": "4.4.0-1123-aws", "target": "ubuntu-aws", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" ] }, @@ -41895,10 +41074,10 @@ "kernelrelease": "4.4.0-1124-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" ] }, { @@ -41906,10 +41085,10 @@ "kernelrelease": "4.4.0-1126-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" ] }, { @@ -41918,8 +41097,8 @@ "target": "ubuntu-aws", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" ] }, @@ -41928,58 +41107,58 @@ "kernelrelease": "4.4.0-1128-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb" ] }, { "kernelversion": "140", - "kernelrelease": "4.4.0-116", + "kernelrelease": "4.4.0-116-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb" ] }, { "kernelversion": "143", - "kernelrelease": "4.4.0-119", + "kernelrelease": "4.4.0-119-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" ] }, { "kernelversion": "145", - "kernelrelease": "4.4.0-121", + "kernelrelease": "4.4.0-121-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb" ] }, { "kernelversion": "148", - "kernelrelease": "4.4.0-124", + "kernelrelease": "4.4.0-124-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", @@ -41988,388 +41167,388 @@ }, { "kernelversion": "153", - "kernelrelease": "4.4.0-127", + "kernelrelease": "4.4.0-127-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" ] }, { "kernelversion": "154", - "kernelrelease": "4.4.0-128", + "kernelrelease": "4.4.0-128-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" ] }, { "kernelversion": "156", - "kernelrelease": "4.4.0-130", + "kernelrelease": "4.4.0-130-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" ] }, { "kernelversion": "159", - "kernelrelease": "4.4.0-133", + "kernelrelease": "4.4.0-133-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb" ] }, { "kernelversion": "160", - "kernelrelease": "4.4.0-134", + "kernelrelease": "4.4.0-134-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" ] }, { "kernelversion": "163", - "kernelrelease": "4.4.0-137", + "kernelrelease": "4.4.0-137-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb" ] }, { "kernelversion": "164", - "kernelrelease": "4.4.0-138", + "kernelrelease": "4.4.0-138-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" ] }, { "kernelversion": "165", - "kernelrelease": "4.4.0-139", + "kernelrelease": "4.4.0-139-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb" ] }, { "kernelversion": "167", - "kernelrelease": "4.4.0-141", + "kernelrelease": "4.4.0-141-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb" ] }, { "kernelversion": "168", - "kernelrelease": "4.4.0-142", + "kernelrelease": "4.4.0-142-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb" ] }, { "kernelversion": "169", - "kernelrelease": "4.4.0-143", + "kernelrelease": "4.4.0-143-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" ] }, { "kernelversion": "171", - "kernelrelease": "4.4.0-145", + "kernelrelease": "4.4.0-145-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" ] }, { "kernelversion": "174", - "kernelrelease": "4.4.0-148", + "kernelrelease": "4.4.0-148-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" ] }, { "kernelversion": "176", - "kernelrelease": "4.4.0-150", + "kernelrelease": "4.4.0-150-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb" ] }, { "kernelversion": "178", - "kernelrelease": "4.4.0-151", + "kernelrelease": "4.4.0-151-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb" ] }, { "kernelversion": "181", - "kernelrelease": "4.4.0-154", + "kernelrelease": "4.4.0-154-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb" ] }, { "kernelversion": "185", - "kernelrelease": "4.4.0-157", + "kernelrelease": "4.4.0-157-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb" ] }, { "kernelversion": "187", - "kernelrelease": "4.4.0-159", + "kernelrelease": "4.4.0-159-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb" ] }, { "kernelversion": "189", - "kernelrelease": "4.4.0-161", + "kernelrelease": "4.4.0-161-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb" ] }, { "kernelversion": "192", - "kernelrelease": "4.4.0-164", + "kernelrelease": "4.4.0-164-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" ] }, { "kernelversion": "193", - "kernelrelease": "4.4.0-165", + "kernelrelease": "4.4.0-165-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" ] }, { "kernelversion": "195", - "kernelrelease": "4.4.0-166", + "kernelrelease": "4.4.0-166-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb" ] }, { "kernelversion": "197", - "kernelrelease": "4.4.0-168", + "kernelrelease": "4.4.0-168-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb" ] }, { "kernelversion": "198", - "kernelrelease": "4.4.0-169", + "kernelrelease": "4.4.0-169-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" ] }, { "kernelversion": "199", - "kernelrelease": "4.4.0-170", + "kernelrelease": "4.4.0-170-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb" ] }, { "kernelversion": "200", - "kernelrelease": "4.4.0-171", + "kernelrelease": "4.4.0-171-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" ] }, { "kernelversion": "203", - "kernelrelease": "4.4.0-173", + "kernelrelease": "4.4.0-173-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb" ] }, { "kernelversion": "204", - "kernelrelease": "4.4.0-174", + "kernelrelease": "4.4.0-174-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb" ] }, { "kernelversion": "206", - "kernelrelease": "4.4.0-176", + "kernelrelease": "4.4.0-176-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb" ] }, { "kernelversion": "207", - "kernelrelease": "4.4.0-177", + "kernelrelease": "4.4.0-177-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", @@ -42378,704 +41557,704 @@ }, { "kernelversion": "208", - "kernelrelease": "4.4.0-178", + "kernelrelease": "4.4.0-178-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb" ] }, { "kernelversion": "209", - "kernelrelease": "4.4.0-179", + "kernelrelease": "4.4.0-179-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" ] }, { "kernelversion": "214", - "kernelrelease": "4.4.0-184", + "kernelrelease": "4.4.0-184-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" ] }, { "kernelversion": "215", - "kernelrelease": "4.4.0-185", + "kernelrelease": "4.4.0-185-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb" ] }, { "kernelversion": "216", - "kernelrelease": "4.4.0-186", + "kernelrelease": "4.4.0-186-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb" ] }, { "kernelversion": "217", - "kernelrelease": "4.4.0-187", + "kernelrelease": "4.4.0-187-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" ] }, { "kernelversion": "219", - "kernelrelease": "4.4.0-189", + "kernelrelease": "4.4.0-189-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb" ] }, { "kernelversion": "220", - "kernelrelease": "4.4.0-190", + "kernelrelease": "4.4.0-190-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" ] }, { "kernelversion": "224", - "kernelrelease": "4.4.0-193", + "kernelrelease": "4.4.0-193-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb" ] }, { "kernelversion": "226", - "kernelrelease": "4.4.0-194", + "kernelrelease": "4.4.0-194-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" ] }, { "kernelversion": "229", - "kernelrelease": "4.4.0-197", + "kernelrelease": "4.4.0-197-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb" ] }, { "kernelversion": "230", - "kernelrelease": "4.4.0-198", + "kernelrelease": "4.4.0-198-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" ] }, { "kernelversion": "232", - "kernelrelease": "4.4.0-200", + "kernelrelease": "4.4.0-200-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" ] }, { "kernelversion": "233", - "kernelrelease": "4.4.0-201", + "kernelrelease": "4.4.0-201-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" ] }, { "kernelversion": "235", - "kernelrelease": "4.4.0-203", + "kernelrelease": "4.4.0-203-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb" ] }, { "kernelversion": "236", - "kernelrelease": "4.4.0-204", + "kernelrelease": "4.4.0-204-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" ] }, { "kernelversion": "240", - "kernelrelease": "4.4.0-208", + "kernelrelease": "4.4.0-208-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" ] }, { "kernelversion": "241", - "kernelrelease": "4.4.0-209", + "kernelrelease": "4.4.0-209-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb" ] }, { "kernelversion": "242", - "kernelrelease": "4.4.0-210", + "kernelrelease": "4.4.0-210-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" ] }, { "kernelversion": "40", - "kernelrelease": "4.4.0-22", + "kernelrelease": "4.4.0-22-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" ] }, { "kernelversion": "43", - "kernelrelease": "4.4.0-24", + "kernelrelease": "4.4.0-24-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb" ] }, { "kernelversion": "47", - "kernelrelease": "4.4.0-28", + "kernelrelease": "4.4.0-28-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb" ] }, { "kernelversion": "50", - "kernelrelease": "4.4.0-31", + "kernelrelease": "4.4.0-31-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb" ] }, { "kernelversion": "53", - "kernelrelease": "4.4.0-34", + "kernelrelease": "4.4.0-34-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb" ] }, { "kernelversion": "55", - "kernelrelease": "4.4.0-36", + "kernelrelease": "4.4.0-36-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb" ] }, { "kernelversion": "57", - "kernelrelease": "4.4.0-38", + "kernelrelease": "4.4.0-38-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" ] }, { "kernelversion": "62", - "kernelrelease": "4.4.0-42", + "kernelrelease": "4.4.0-42-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb" ] }, { "kernelversion": "66", - "kernelrelease": "4.4.0-45", + "kernelrelease": "4.4.0-45-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" ] }, { "kernelversion": "68", - "kernelrelease": "4.4.0-47", + "kernelrelease": "4.4.0-47-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb" ] }, { "kernelversion": "72", - "kernelrelease": "4.4.0-51", + "kernelrelease": "4.4.0-51-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb" ] }, { "kernelversion": "74", - "kernelrelease": "4.4.0-53", + "kernelrelease": "4.4.0-53-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb" ] }, { "kernelversion": "78", - "kernelrelease": "4.4.0-57", + "kernelrelease": "4.4.0-57-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" ] }, { "kernelversion": "80", - "kernelrelease": "4.4.0-59", + "kernelrelease": "4.4.0-59-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb" ] }, { "kernelversion": "83", - "kernelrelease": "4.4.0-62", + "kernelrelease": "4.4.0-62-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb" ] }, { "kernelversion": "84", - "kernelrelease": "4.4.0-63", + "kernelrelease": "4.4.0-63-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" ] }, { "kernelversion": "85", - "kernelrelease": "4.4.0-64", + "kernelrelease": "4.4.0-64-generic", "target": "ubuntu-generic", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb" ] }, { "kernelversion": "87", - "kernelrelease": "4.4.0-66", + "kernelrelease": "4.4.0-66-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" ] }, { "kernelversion": "88", - "kernelrelease": "4.4.0-67", + "kernelrelease": "4.4.0-67-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb" ] }, { "kernelversion": "91", - "kernelrelease": "4.4.0-70", + "kernelrelease": "4.4.0-70-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb" ] }, { "kernelversion": "92", - "kernelrelease": "4.4.0-71", + "kernelrelease": "4.4.0-71-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" ] }, { "kernelversion": "93", - "kernelrelease": "4.4.0-72", + "kernelrelease": "4.4.0-72-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" ] }, { "kernelversion": "96", - "kernelrelease": "4.4.0-75", + "kernelrelease": "4.4.0-75-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" ] }, { "kernelversion": "99", - "kernelrelease": "4.4.0-78", + "kernelrelease": "4.4.0-78-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" ] }, { "kernelversion": "100", - "kernelrelease": "4.4.0-79", + "kernelrelease": "4.4.0-79-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb" ] }, { "kernelversion": "104", - "kernelrelease": "4.4.0-81", + "kernelrelease": "4.4.0-81-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" ] }, { "kernelversion": "106", - "kernelrelease": "4.4.0-83", + "kernelrelease": "4.4.0-83-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb" ] }, { "kernelversion": "110", - "kernelrelease": "4.4.0-87", + "kernelrelease": "4.4.0-87-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" ] }, { "kernelversion": "112", - "kernelrelease": "4.4.0-89", + "kernelrelease": "4.4.0-89-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb" ] }, { "kernelversion": "114", - "kernelrelease": "4.4.0-91", + "kernelrelease": "4.4.0-91-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb" ] }, { "kernelversion": "115", - "kernelrelease": "4.4.0-92", + "kernelrelease": "4.4.0-92-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" ] }, { "kernelversion": "116", - "kernelrelease": "4.4.0-93", + "kernelrelease": "4.4.0-93-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" ] }, { "kernelversion": "119", - "kernelrelease": "4.4.0-96", + "kernelrelease": "4.4.0-96-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb" ] }, { "kernelversion": "120", - "kernelrelease": "4.4.0-97", + "kernelrelease": "4.4.0-97-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" ] }, { "kernelversion": "121", - "kernelrelease": "4.4.0-98", + "kernelrelease": "4.4.0-98-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" ] }, { @@ -43083,12 +42262,12 @@ "kernelrelease": "4.8.0-34-hwe-edge", "target": "ubuntu-hwe-edge", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" ] }, { @@ -43096,12 +42275,12 @@ "kernelrelease": "4.8.0-36-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb" ] }, { @@ -43109,12 +42288,12 @@ "kernelrelease": "4.8.0-39-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" ] }, { @@ -43122,12 +42301,12 @@ "kernelrelease": "4.8.0-41-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" ] }, { @@ -43135,12 +42314,12 @@ "kernelrelease": "4.8.0-45-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb" ] }, { @@ -43148,12 +42327,12 @@ "kernelrelease": "4.8.0-46-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb" ] }, { @@ -43162,11 +42341,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb" ] }, { @@ -43174,12 +42353,12 @@ "kernelrelease": "4.8.0-52-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" ] }, { @@ -43188,11 +42367,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" ] }, { @@ -43201,11 +42380,11 @@ "target": "ubuntu-hwe", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb" ] }, { @@ -43213,12 +42392,12 @@ "kernelrelease": "4.8.0-58-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb" ] }, { @@ -43226,10 +42405,10 @@ "kernelrelease": "4.11.0-1009-azure", "target": "ubuntu-azure", "headers": [ + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" ] }, { @@ -43237,10 +42416,10 @@ "kernelrelease": "4.11.0-1011-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" ] }, { @@ -43248,9 +42427,9 @@ "kernelrelease": "4.11.0-1013-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" ] }, @@ -43270,10 +42449,10 @@ "kernelrelease": "4.13.0-1009-azure", "target": "ubuntu-azure", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb" ] }, { @@ -43281,10 +42460,10 @@ "kernelrelease": "4.13.0-1012-azure", "target": "ubuntu-azure", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb" ] }, { @@ -43292,10 +42471,10 @@ "kernelrelease": "4.15.0-1007-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" ] }, { @@ -43303,10 +42482,10 @@ "kernelrelease": "4.15.0-1011-oracle", "target": "ubuntu-oracle", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb" ] }, { @@ -43316,8 +42495,8 @@ "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" ] }, { @@ -43325,10 +42504,10 @@ "kernelrelease": "4.15.0-1030-gcp", "target": "ubuntu-gcp", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb" ] }, { @@ -43337,9 +42516,9 @@ "target": "ubuntu-azure", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" ] }, { @@ -43347,12 +42526,12 @@ "kernelrelease": "4.15.0-38-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb" ] }, { @@ -43360,12 +42539,12 @@ "kernelrelease": "4.15.0-48-hwe", "target": "ubuntu-hwe", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb" ] }, { @@ -43373,10 +42552,10 @@ "kernelrelease": "4.4.0-1033-kvm", "target": "ubuntu-kvm", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" ] }, { @@ -43384,10 +42563,10 @@ "kernelrelease": "4.4.0-1037-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" ] }, { @@ -43406,10 +42585,10 @@ "kernelrelease": "4.4.0-1044-kvm", "target": "ubuntu-kvm", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" ] }, { @@ -43417,10 +42596,10 @@ "kernelrelease": "4.4.0-1050-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" ] }, { @@ -43428,10 +42607,10 @@ "kernelrelease": "4.4.0-1063-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb" ] }, { @@ -43439,9 +42618,9 @@ "kernelrelease": "4.4.0-1067-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" ] }, @@ -43450,10 +42629,10 @@ "kernelrelease": "4.4.0-1073-aws", "target": "ubuntu-aws", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" ] }, { @@ -43461,99 +42640,99 @@ "kernelrelease": "4.4.0-1081-aws", "target": "ubuntu-aws", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" ] }, { "kernelversion": "146", - "kernelrelease": "4.4.0-122", + "kernelrelease": "4.4.0-122-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" ] }, { "kernelversion": "157", - "kernelrelease": "4.4.0-131", + "kernelrelease": "4.4.0-131-generic", "target": "ubuntu-generic", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb" ] }, { "kernelversion": "161", - "kernelrelease": "4.4.0-135", + "kernelrelease": "4.4.0-135-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb" ] }, { "kernelversion": "166", - "kernelrelease": "4.4.0-140", + "kernelrelease": "4.4.0-140-generic", "target": "ubuntu-generic", "headers": [ "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb" ] }, { "kernelversion": "172", - "kernelrelease": "4.4.0-146", + "kernelrelease": "4.4.0-146-generic", "target": "ubuntu-generic", "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" ] }, { "kernelversion": "63", - "kernelrelease": "4.4.0-43", + "kernelrelease": "4.4.0-43-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" ] }, { "kernelversion": "98", - "kernelrelease": "4.4.0-77", + "kernelrelease": "4.4.0-77-generic", "target": "ubuntu-generic", "headers": [ "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" ] @@ -43563,11 +42742,11 @@ "kernelrelease": "4.8.0-42-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" ] }, @@ -43576,12 +42755,12 @@ "kernelrelease": "4.8.0-44-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb" ] }, { @@ -43589,12 +42768,12 @@ "kernelrelease": "4.8.0-51-hwe", "target": "ubuntu-hwe", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" ] }, { @@ -43602,25 +42781,25 @@ "kernelrelease": "4.8.0-53-hwe", "target": "ubuntu-hwe", "headers": [ + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" + "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" ] }, { "kernelversion": "37", - "kernelrelease": "4.4.0-21", + "kernelrelease": "4.4.0-21-generic", "target": "ubuntu-generic", "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb" + "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", + "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb" ] } ], @@ -44273,6 +43452,22 @@ "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.3/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3227.2.0", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3227.2.0/flatcar_developer_container.bin.bz2" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3227.2.1", + "target": "flatcar", + "headers": [ + "https://stable.release.flatcar-linux.net/amd64-usr/3227.2.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "1722.2.0", @@ -45009,6 +44204,22 @@ "https://beta.release.flatcar-linux.net/amd64-usr/3227.1.1/flatcar_developer_container.bin.bz2" ] }, + { + "kernelversion": 1, + "kernelrelease": "3277.1.0", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3277.1.0/flatcar_developer_container.bin.bz2" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3277.1.1", + "target": "flatcar", + "headers": [ + "https://beta.release.flatcar-linux.net/amd64-usr/3277.1.1/flatcar_developer_container.bin.bz2" + ] + }, { "kernelversion": 1, "kernelrelease": "1745.0.0", @@ -45832,6 +45043,60 @@ "headers": [ "https://alpha.release.flatcar-linux.net/amd64-usr/3277.0.0/flatcar_developer_container.bin.bz2" ] + }, + { + "kernelversion": 1, + "kernelrelease": "3305.0.0", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3305.0.0/flatcar_developer_container.bin.bz2" + ] + }, + { + "kernelversion": 1, + "kernelrelease": "3305.0.1", + "target": "flatcar", + "headers": [ + "https://alpha.release.flatcar-linux.net/amd64-usr/3305.0.1/flatcar_developer_container.bin.bz2" + ] + } + ], + "Minikube": [ + { + "kernelversion": "1_1.24.0", + "kernelrelease": "4.19.202", + "target": "minikube", + "kernelconfigdata": "IyBDT05GSUdfTE9DQUxWRVJTSU9OX0FVVE8gaXMgbm90IHNldApDT05GSUdfS0VSTkVMX0xaND15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWj15CkNPTkZJR19ISUdIX1JFU19USU1FUlM9eQpDT05GSUdfUFJFRU1QVF9WT0xVTlRBUlk9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19UQVNLX1hBQ0NUPXkKQ09ORklHX1RBU0tfSU9fQUNDT1VOVElORz15CkNPTkZJR19JS0NPTkZJRz15CkNPTkZJR19JS0NPTkZJR19QUk9DPXkKQ09ORklHX0xPR19CVUZfU0hJRlQ9MTgKQ09ORklHX0NHUk9VUFM9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9TQ0hFRD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX1JUX0dST1VQX1NDSEVEPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19DR1JPVVBfQlBGPXkKQ09ORklHX1VTRVJfTlM9eQpDT05GSUdfQkxLX0RFVl9JTklUUkQ9eQpDT05GSUdfQlBGX1NZU0NBTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19TTVA9eQpDT05GSUdfSFlQRVJWSVNPUl9HVUVTVD15CkNPTkZJR19QQVJBVklSVF9TUElOTE9DS1M9eQpDT05GSUdfS1ZNX0RFQlVHX0ZTPXkKQ09ORklHX0NBTEdBUllfSU9NTVU9eQpDT05GSUdfWDg2X1JFUk9VVEVfRk9SX0JST0tFTl9CT09UX0lSUVM9eQpDT05GSUdfTUlDUk9DT0RFX0FNRD15CkNPTkZJR19YODZfTVNSPXkKQ09ORklHX1g4Nl9DUFVJRD15CkNPTkZJR19OVU1BPXkKQ09ORklHX1g4Nl9DSEVDS19CSU9TX0NPUlJVUFRJT049eQojIENPTkZJR19NVFJSX1NBTklUSVpFUiBpcyBub3Qgc2V0CkNPTkZJR19FRkk9eQpDT05GSUdfSFpfMTAwMD15CkNPTkZJR19LRVhFQz15CkNPTkZJR19DUkFTSF9EVU1QPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1BNX0RFQlVHPXkKQ09ORklHX1BNX1RSQUNFX1JUQz15CkNPTkZJR19BQ1BJX0RPQ0s9eQpDT05GSUdfQ1BVX0ZSRVFfREVGQVVMVF9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9QRVJGT1JNQU5DRT15CkNPTkZJR19DUFVfRlJFUV9HT1ZfT05ERU1BTkQ9eQpDT05GSUdfWDg2X0FDUElfQ1BVRlJFUT15CkNPTkZJR19QQ0lFUE9SVEJVUz15CkNPTkZJR19IT1RQTFVHX1BDST15CkNPTkZJR19QQ0NBUkQ9eQpDT05GSUdfWUVOVEE9eQpDT05GSUdfSUEzMl9FTVVMQVRJT049eQpDT05GSUdfRUZJX1ZBUlM9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9JTlRFTD1tCkNPTkZJR19LVk1fQU1EPW0KQ09ORklHX1ZIT1NUX05FVD1tCkNPTkZJR19WSE9TVF9WU09DSz1tCkNPTkZJR19LUFJPQkVTPXkKQ09ORklHX0pVTVBfTEFCRUw9eQpDT05GSUdfTU9EVUxFUz15CkNPTkZJR19NT0RVTEVfVU5MT0FEPXkKQ09ORklHX01PRFVMRV9GT1JDRV9VTkxPQUQ9eQpDT05GSUdfUEFSVElUSU9OX0FEVkFOQ0VEPXkKQ09ORklHX09TRl9QQVJUSVRJT049eQpDT05GSUdfQU1JR0FfUEFSVElUSU9OPXkKQ09ORklHX01BQ19QQVJUSVRJT049eQpDT05GSUdfQlNEX0RJU0tMQUJFTD15CkNPTkZJR19NSU5JWF9TVUJQQVJUSVRJT049eQpDT05GSUdfU09MQVJJU19YODZfUEFSVElUSU9OPXkKQ09ORklHX1VOSVhXQVJFX0RJU0tMQUJFTD15CkNPTkZJR19TR0lfUEFSVElUSU9OPXkKQ09ORklHX1NVTl9QQVJUSVRJT049eQpDT05GSUdfS0FSTUFfUEFSVElUSU9OPXkKQ09ORklHX0JJTkZNVF9NSVNDPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFX01BRFZJU0U9eQpDT05GSUdfTkVUPXkKQ09ORklHX1BBQ0tFVD15CkNPTkZJR19VTklYPXkKQ09ORklHX1hGUk1fVVNFUj15CkNPTkZJR19JTkVUPXkKQ09ORklHX0lQX01VTFRJQ0FTVD15CkNPTkZJR19JUF9BRFZBTkNFRF9ST1VURVI9eQpDT05GSUdfSVBfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX0lQX1JPVVRFX01VTFRJUEFUSD15CkNPTkZJR19JUF9ST1VURV9WRVJCT1NFPXkKQ09ORklHX0lQX1BOUD15CkNPTkZJR19JUF9QTlBfREhDUD15CkNPTkZJR19JUF9QTlBfQk9PVFA9eQpDT05GSUdfSVBfUE5QX1JBUlA9eQpDT05GSUdfTkVUX0lQSVA9bQpDT05GSUdfSVBfTVJPVVRFPXkKQ09ORklHX0lQX1BJTVNNX1YxPXkKQ09ORklHX0lQX1BJTVNNX1YyPXkKQ09ORklHX1NZTl9DT09LSUVTPXkKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFJBTlNQT1JUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFVOTkVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfQkVFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0lORVRfRElBRyBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfQ09OR19BRFZBTkNFRD15CiMgQ09ORklHX1RDUF9DT05HX0JJQyBpcyBub3Qgc2V0CiMgQ09ORklHX1RDUF9DT05HX1dFU1RXT09EIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfSFRDUCBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfTUQ1U0lHPXkKQ09ORklHX0lORVQ2X0FIPXkKQ09ORklHX0lORVQ2X0VTUD15CkNPTkZJR19JUFY2X01VTFRJUExFX1RBQkxFUz15CkNPTkZJR19ORVRMQUJFTD15CkNPTkZJR19ORVRGSUxURVI9eQpDT05GSUdfTkVURklMVEVSX05FVExJTktfQUNDVD15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19RVUVVRT15CkNPTkZJR19ORl9DT05OVFJBQ0s9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1pPTkVTPXkKQ09ORklHX05GX0NPTk5UUkFDS19FVkVOVFM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVPVVQ9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVTVEFNUD15CkNPTkZJR19ORl9DT05OVFJBQ0tfRlRQPW0KQ09ORklHX05GX0NPTk5UUkFDS19JUkM9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NBTkU9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NJUD1tCkNPTkZJR19ORl9DT05OVFJBQ0tfVEZUUD1tCkNPTkZJR19ORl9DVF9ORVRMSU5LPW0KQ09ORklHX05FVEZJTFRFUl9YVF9TRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DSEVDS1NVTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NMQVNTSUZZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9EU0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0lETEVUSU1FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xFRD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ORkxPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GUVVFVUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9OT1RSQUNLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVEVFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVFBST1hZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfU0VDTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE9QVFNUUklQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9BRERSVFlQRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQlBGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NMVVNURVI9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTU1FTlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5CWVRFUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkxBQkVMPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NQVT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRENDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfREVWR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0VDTj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRVNQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9IQVNITElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hFTFBFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0lQQ09NUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBSQU5HRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBWUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTDJUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTEVOR1RIPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTUFDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NVUxUSVBPUlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX05GQUNDVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfT1NGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PV05FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUE9MSUNZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QSFlTREVWPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QS1RUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9RVU9UQT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkFURUVTVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVBTE09bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1JFQ0VOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU0NUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU09DS0VUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFURT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU1RBVElTVElDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVFJJTkc9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVElNRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVTMyPW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX0JSSURHRV9ORl9FQlRBQkxFUz1tCkNPTkZJR19CUklER0VfRUJUX0JST1VURT1tCkNPTkZJR19CUklER0VfRUJUX1RfRklMVEVSPW0KQ09ORklHX0JSSURHRV9FQlRfVF9OQVQ9bQpDT05GSUdfQlJJREdFX0VCVF84MDJfMz1tCkNPTkZJR19CUklER0VfRUJUX0FNT05HPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQPW0KQ09ORklHX0JSSURHRV9FQlRfSVA9bQpDT05GSUdfQlJJREdFX0VCVF9JUDY9bQpDT05GSUdfQlJJREdFX0VCVF9MSU1JVD1tCkNPTkZJR19CUklER0VfRUJUX01BUks9bQpDT05GSUdfQlJJREdFX0VCVF9QS1RUWVBFPW0KQ09ORklHX0JSSURHRV9FQlRfU1RQPW0KQ09ORklHX0JSSURHRV9FQlRfVkxBTj1tCkNPTkZJR19CUklER0VfRUJUX0FSUFJFUExZPW0KQ09ORklHX0JSSURHRV9FQlRfRE5BVD1tCkNPTkZJR19CUklER0VfRUJUX01BUktfVD1tCkNPTkZJR19CUklER0VfRUJUX1JFRElSRUNUPW0KQ09ORklHX0JSSURHRV9FQlRfU05BVD1tCkNPTkZJR19CUklER0VfRUJUX0xPRz1tCkNPTkZJR19CUklER0VfRUJUX05GTE9HPW0KQ09ORklHX0JSSURHRT1tCkNPTkZJR19ORVRfU0NIRUQ9eQpDT05GSUdfTkVUX1NDSF9IVEI9eQpDT05GSUdfTkVUX1NDSF9QUklPPXkKQ09ORklHX05FVF9TQ0hfU0ZRPXkKQ09ORklHX05FVF9TQ0hfVEJGPXkKQ09ORklHX05FVF9TQ0hfTkVURU09eQpDT05GSUdfTkVUX1NDSF9JTkdSRVNTPW0KQ09ORklHX05FVF9DTFNfQkFTSUM9bQpDT05GSUdfTkVUX0NMU19GVz15CkNPTkZJR19ORVRfQ0xTX1UzMj1tCkNPTkZJR19ORVRfQ0xTX0NHUk9VUD15CkNPTkZJR19ORVRfQ0xTX0JQRj1tCkNPTkZJR19ORVRfQ0xTX01BVENIQUxMPXkKQ09ORklHX05FVF9FTUFUQ0g9eQpDT05GSUdfTkVUX0VNQVRDSF9JUFNFVD15CkNPTkZJR19ORVRfQ0xTX0FDVD15CkNPTkZJR19ORVRfQUNUX01JUlJFRD1tCkNPTkZJR19ORVRfQUNUX0JQRj1tCkNPTkZJR19ORVRfQUNUX0NPTk5NQVJLPW0KQ09ORklHX09QRU5WU1dJVENIPW0KQ09ORklHX1ZTT0NLRVRTPW0KQ09ORklHX1ZJUlRJT19WU09DS0VUUz1tCkNPTkZJR19DR1JPVVBfTkVUX1BSSU89eQpDT05GSUdfQlBGX0pJVD15CkNPTkZJR19IQU1SQURJTz15CkNPTkZJR19DRkc4MDIxMT15CkNPTkZJR19NQUM4MDIxMT15CkNPTkZJR19NQUM4MDIxMV9MRURTPXkKQ09ORklHX1JGS0lMTD15CkNPTkZJR19ORVRfOVA9bQpDT05GSUdfTkVUXzlQX1ZJUlRJTz1tCkNPTkZJR19DRVBIX0xJQj15CkNPTkZJR19VRVZFTlRfSEVMUEVSX1BBVEg9Ii9zYmluL2hvdHBsdWciCkNPTkZJR19ERVZUTVBGUz15CkNPTkZJR19ERVZUTVBGU19NT1VOVD15CkNPTkZJR19ERUJVR19ERVZSRVM9eQpDT05GSUdfQ09OTkVDVE9SPXkKQ09ORklHX0JMS19ERVZfTE9PUD15CkNPTkZJR19CTEtfREVWX05CRD1tCkNPTkZJR19WSVJUSU9fQkxLPXkKQ09ORklHX0JMS19ERVZfUkJEPW0KQ09ORklHX1ZNV0FSRV9CQUxMT09OPW0KQ09ORklHX1ZNV0FSRV9WTUNJPW0KQ09ORklHX0JMS19ERVZfU0Q9eQpDT05GSUdfQkxLX0RFVl9TUj15CkNPTkZJR19DSFJfREVWX1NHPXkKQ09ORklHX1NDU0lfQ09OU1RBTlRTPXkKQ09ORklHX1NDU0lfU1BJX0FUVFJTPXkKQ09ORklHX1NDU0lfRkNfQVRUUlM9bQpDT05GSUdfU0NTSV9JU0NTSV9BVFRSUz1tCkNPTkZJR19TQ1NJX1NBU19MSUJTQVM9bQpDT05GSUdfU0NTSV9TQVNfQVRBPXkKQ09ORklHX1NDU0lfU1JQX0FUVFJTPW0KQ09ORklHX01FR0FSQUlEX05FV0dFTj15CkNPTkZJR19NRUdBUkFJRF9NTT1tCkNPTkZJR19WTVdBUkVfUFZTQ1NJPXkKQ09ORklHX0FUQT15CkNPTkZJR19TQVRBX0FIQ0k9eQpDT05GSUdfQVRBX1BJSVg9eQpDT05GSUdfUEFUQV9BTUQ9eQpDT05GSUdfUEFUQV9PTERQSUlYPXkKQ09ORklHX1BBVEFfU0NIPXkKQ09ORklHX01EPXkKQ09ORklHX0JMS19ERVZfTUQ9eQpDT05GSUdfQkxLX0RFVl9ETT15CkNPTkZJR19ETV9DUllQVD15CkNPTkZJR19ETV9TTkFQU0hPVD15CkNPTkZJR19ETV9USElOX1BST1ZJU0lPTklORz15CkNPTkZJR19ETV9NSVJST1I9eQpDT05GSUdfRE1fWkVSTz15CkNPTkZJR19GVVNJT049eQpDT05GSUdfRlVTSU9OX1NQST1tCkNPTkZJR19GVVNJT05fRkM9bQpDT05GSUdfRlVTSU9OX1NBUz1tCkNPTkZJR19GVVNJT05fQ1RMPW0KQ09ORklHX0ZVU0lPTl9MT0dHSU5HPXkKQ09ORklHX01BQ0lOVE9TSF9EUklWRVJTPXkKQ09ORklHX01BQ19FTVVNT1VTRUJUTj15CkNPTkZJR19ORVRERVZJQ0VTPXkKQ09ORklHX0RVTU1ZPW0KQ09ORklHX0lGQj1tCkNPTkZJR19NQUNWTEFOPXkKQ09ORklHX01BQ1ZUQVA9eQpDT05GSUdfSVBWTEFOPW0KQ09ORklHX1ZYTEFOPXkKQ09ORklHX05FVENPTlNPTEU9eQpDT05GSUdfVFVOPXkKQ09ORklHX1ZFVEg9eQpDT05GSUdfVklSVElPX05FVD15CkNPTkZJR19ORVRfVlJGPW0KQ09ORklHX0FNRDgxMTFfRVRIPW0KQ09ORklHX1BDTkVUMzI9bQpDT05GSUdfUENNQ0lBX05NQ0xBTj1tCkNPTkZJR19USUdPTjM9eQpDT05GSUdfTkVUX1RVTElQPXkKQ09ORklHX0UxMDA9eQpDT05GSUdfRTEwMDA9eQpDT05GSUdfRTEwMDBFPXkKQ09ORklHX1NLWTI9eQpDT05GSUdfRk9SQ0VERVRIPXkKQ09ORklHXzgxMzlDUD15CkNPTkZJR184MTM5VE9PPXkKQ09ORklHX0ZEREk9eQpDT05GSUdfVk1YTkVUMz15CkNPTkZJR19IWVBFUlZfTkVUPW0KQ09ORklHX0lOUFVUX1BPTExERVY9eQpDT05GSUdfSU5QVVRfRVZERVY9eQpDT05GSUdfSU5QVVRfSk9ZU1RJQ0s9eQpDT05GSUdfSU5QVVRfVEFCTEVUPXkKQ09ORklHX0lOUFVUX1RPVUNIU0NSRUVOPXkKQ09ORklHX0lOUFVUX01JU0M9eQojIENPTkZJR19MRUdBQ1lfUFRZUyBpcyBub3Qgc2V0CkNPTkZJR19TRVJJQUxfTk9OU1RBTkRBUkQ9eQpDT05GSUdfU0VSSUFMXzgyNTA9eQpDT05GSUdfU0VSSUFMXzgyNTBfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfODI1MF9OUl9VQVJUUz0zMgpDT05GSUdfU0VSSUFMXzgyNTBfRVhURU5ERUQ9eQpDT05GSUdfU0VSSUFMXzgyNTBfTUFOWV9QT1JUUz15CkNPTkZJR19TRVJJQUxfODI1MF9TSEFSRV9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfREVURUNUX0lSUT15CkNPTkZJR19TRVJJQUxfODI1MF9SU0E9eQpDT05GSUdfSFdfUkFORE9NPXkKIyBDT05GSUdfSFdfUkFORE9NX0lOVEVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSFdfUkFORE9NX0FNRCBpcyBub3Qgc2V0CkNPTkZJR19IV19SQU5ET01fVklSVElPPXkKQ09ORklHX05WUkFNPXkKQ09ORklHX0hQRVQ9eQojIENPTkZJR19IUEVUX01NQVAgaXMgbm90IHNldApDT05GSUdfSTJDX0k4MDE9eQpDT05GSUdfV0FUQ0hET0c9eQpDT05GSUdfQUdQPXkKQ09ORklHX0FHUF9BTUQ2ND15CkNPTkZJR19BR1BfSU5URUw9eQpDT05GSUdfRFJNPXkKQ09ORklHX0RSTV9JOTE1PXkKQ09ORklHX0RSTV9WSVJUSU9fR1BVPXkKQ09ORklHX0ZCX01PREVfSEVMUEVSUz15CkNPTkZJR19GQl9USUxFQkxJVFRJTkc9eQpDT05GSUdfRkJfRUZJPXkKIyBDT05GSUdfTENEX0NMQVNTX0RFVklDRSBpcyBub3Qgc2V0CkNPTkZJR19MT0dPPXkKIyBDT05GSUdfTE9HT19MSU5VWF9NT05PIGlzIG5vdCBzZXQKIyBDT05GSUdfTE9HT19MSU5VWF9WR0ExNiBpcyBub3Qgc2V0CkNPTkZJR19TT1VORD15CkNPTkZJR19TTkQ9eQpDT05GSUdfU05EX0hSVElNRVI9eQpDT05GSUdfU05EX1NFUVVFTkNFUj15CkNPTkZJR19TTkRfU0VRX0RVTU1ZPXkKQ09ORklHX1NORF9IREFfSU5URUw9eQpDT05GSUdfU05EX0hEQV9IV0RFUD15CkNPTkZJR19ISURSQVc9eQpDT05GSUdfSElEX0dZUkFUSU9OPXkKQ09ORklHX0xPR0lURUNIX0ZGPXkKQ09ORklHX0hJRF9OVFJJRz15CkNPTkZJR19ISURfUEFOVEhFUkxPUkQ9eQpDT05GSUdfUEFOVEhFUkxPUkRfRkY9eQpDT05GSUdfSElEX1BFVEFMWU5YPXkKQ09ORklHX0hJRF9TQU1TVU5HPXkKQ09ORklHX0hJRF9TT05ZPXkKQ09ORklHX0hJRF9TVU5QTFVTPXkKQ09ORklHX0hJRF9IWVBFUlZfTU9VU0U9bQpDT05GSUdfSElEX1RPUFNFRUQ9eQpDT05GSUdfSElEX1BJRD15CkNPTkZJR19VU0JfSElEREVWPXkKQ09ORklHX1VTQj15CkNPTkZJR19VU0JfQU5OT1VOQ0VfTkVXX0RFVklDRVM9eQpDT05GSUdfVVNCX01PTj15CkNPTkZJR19VU0JfRUhDSV9IQ0Q9eQpDT05GSUdfVVNCX09IQ0lfSENEPXkKQ09ORklHX1VTQl9VSENJX0hDRD15CkNPTkZJR19VU0JfUFJJTlRFUj15CkNPTkZJR19VU0JfU1RPUkFHRT15CkNPTkZJR19FREFDPXkKQ09ORklHX1JUQ19DTEFTUz15CiMgQ09ORklHX1JUQ19IQ1RPU1lTIGlzIG5vdCBzZXQKQ09ORklHX0RNQURFVklDRVM9eQpDT05GSUdfVklSVF9EUklWRVJTPXkKQ09ORklHX1ZJUlRJT19QQ0k9eQpDT05GSUdfSFlQRVJWPW0KQ09ORklHX0hZUEVSVl9VVElMUz1tCkNPTkZJR19IWVBFUlZfQkFMTE9PTj1tCkNPTkZJR19FRUVQQ19MQVBUT1A9eQpDT05GSUdfQU1EX0lPTU1VPXkKQ09ORklHX0lOVEVMX0lPTU1VPXkKIyBDT05GSUdfSU5URUxfSU9NTVVfREVGQVVMVF9PTiBpcyBub3Qgc2V0CkNPTkZJR19FWFQ0X0ZTPXkKQ09ORklHX0VYVDRfRlNfUE9TSVhfQUNMPXkKQ09ORklHX0VYVDRfRlNfU0VDVVJJVFk9eQpDT05GSUdfWEZTX0ZTPXkKQ09ORklHX1hGU19RVU9UQT15CkNPTkZJR19YRlNfUE9TSVhfQUNMPXkKQ09ORklHX0JUUkZTX0ZTPW0KQ09ORklHX0JUUkZTX0ZTX1BPU0lYX0FDTD15CkNPTkZJR19RVU9UQT15CkNPTkZJR19RVU9UQV9ORVRMSU5LX0lOVEVSRkFDRT15CiMgQ09ORklHX1BSSU5UX1FVT1RBX1dBUk5JTkcgaXMgbm90IHNldApDT05GSUdfUUZNVF9WMj15CkNPTkZJR19BVVRPRlM0X0ZTPXkKQ09ORklHX0ZVU0VfRlM9eQpDT05GSUdfT1ZFUkxBWV9GUz1tCkNPTkZJR19JU085NjYwX0ZTPXkKQ09ORklHX0pPTElFVD15CkNPTkZJR19aSVNPRlM9eQpDT05GSUdfTVNET1NfRlM9eQpDT05GSUdfVkZBVF9GUz15CkNPTkZJR19QUk9DX0tDT1JFPXkKQ09ORklHX1RNUEZTX1BPU0lYX0FDTD15CkNPTkZJR19IVUdFVExCRlM9eQpDT05GSUdfTkZTX0ZTPXkKQ09ORklHX05GU19WND15CkNPTkZJR19ORlNfU1dBUD15CkNPTkZJR19ORlNfVjRfMT15CkNPTkZJR19ORlNfVjRfMj15CkNPTkZJR19ORlNEPXkKQ09ORklHX05GU0RfVjQ9eQpDT05GSUdfQ0VQSF9GUz1tCkNPTkZJR19DRVBIX0ZTX1BPU0lYX0FDTD15CkNPTkZJR19DSUZTPXkKQ09ORklHXzlQX0ZTPW0KQ09ORklHXzlQX0ZTX1BPU0lYX0FDTD15CkNPTkZJR185UF9GU19TRUNVUklUWT15CkNPTkZJR19OTFNfREVGQVVMVD0idXRmOCIKQ09ORklHX05MU19DT0RFUEFHRV80Mzc9eQpDT05GSUdfTkxTX0FTQ0lJPXkKQ09ORklHX05MU19JU084ODU5XzE9eQpDT05GSUdfTkxTX1VURjg9eQpDT05GSUdfU0VDVVJJVFk9eQpDT05GSUdfU0VDVVJJVFlfTkVUV09SSz15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVhfQk9PVFBBUkFNPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVhfRElTQUJMRT15CkNPTkZJR19DUllQVE9fWFRTPXkKQ09ORklHX0NSWVBUT19BRVNfTklfSU5URUw9eQpDT05GSUdfQ1JZUFRPX1VTRVJfQVBJX0hBU0g9eQpDT05GSUdfQ1JZUFRPX1VTRVJfQVBJX1NLQ0lQSEVSPXkKQ09ORklHX1BSSU5US19USU1FPXkKIyBDT05GSUdfVU5VU0VEX1NZTUJPTFMgaXMgbm90IHNldApDT05GSUdfTUFHSUNfU1lTUlE9eQpDT05GSUdfREVCVUdfS0VSTkVMPXkKQ09ORklHX0RFQlVHX1NUQUNLX1VTQUdFPXkKQ09ORklHX0RFQlVHX1NUQUNLT1ZFUkZMT1c9eQojIENPTkZJR19TQ0hFRF9ERUJVRyBpcyBub3Qgc2V0CkNPTkZJR19TQ0hFRFNUQVRTPXkKQ09ORklHX0ZVTkNUSU9OX1RSQUNFUj15CkNPTkZJR19GVFJBQ0VfU1lTQ0FMTFM9eQpDT05GSUdfQkxLX0RFVl9JT19UUkFDRT15CkNPTkZJR19QUk9WSURFX09IQ0kxMzk0X0RNQV9JTklUPXkKQ09ORklHX0VBUkxZX1BSSU5US19EQkdQPXkKQ09ORklHX0RFQlVHX0JPT1RfUEFSQU1TPXkKQ09ORklHX09QVElNSVpFX0lOTElOSU5HPXkK" + }, + { + "kernelversion": "1_1.25.0", + "kernelrelease": "4.19.202", + "target": "minikube", + "kernelconfigdata": "IyBDT05GSUdfTE9DQUxWRVJTSU9OX0FVVE8gaXMgbm90IHNldApDT05GSUdfS0VSTkVMX0xaND15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWj15CkNPTkZJR19ISUdIX1JFU19USU1FUlM9eQpDT05GSUdfUFJFRU1QVF9WT0xVTlRBUlk9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19UQVNLX1hBQ0NUPXkKQ09ORklHX1RBU0tfSU9fQUNDT1VOVElORz15CkNPTkZJR19JS0NPTkZJRz15CkNPTkZJR19JS0NPTkZJR19QUk9DPXkKQ09ORklHX0xPR19CVUZfU0hJRlQ9MTgKQ09ORklHX0NHUk9VUFM9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9TQ0hFRD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX1JUX0dST1VQX1NDSEVEPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19DR1JPVVBfQlBGPXkKQ09ORklHX1VTRVJfTlM9eQpDT05GSUdfQkxLX0RFVl9JTklUUkQ9eQpDT05GSUdfQlBGX1NZU0NBTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19TTVA9eQpDT05GSUdfSFlQRVJWSVNPUl9HVUVTVD15CkNPTkZJR19QQVJBVklSVF9TUElOTE9DS1M9eQpDT05GSUdfS1ZNX0RFQlVHX0ZTPXkKQ09ORklHX0NBTEdBUllfSU9NTVU9eQpDT05GSUdfWDg2X1JFUk9VVEVfRk9SX0JST0tFTl9CT09UX0lSUVM9eQpDT05GSUdfTUlDUk9DT0RFX0FNRD15CkNPTkZJR19YODZfTVNSPXkKQ09ORklHX1g4Nl9DUFVJRD15CkNPTkZJR19OVU1BPXkKQ09ORklHX1g4Nl9DSEVDS19CSU9TX0NPUlJVUFRJT049eQojIENPTkZJR19NVFJSX1NBTklUSVpFUiBpcyBub3Qgc2V0CkNPTkZJR19FRkk9eQpDT05GSUdfSFpfMTAwMD15CkNPTkZJR19LRVhFQz15CkNPTkZJR19DUkFTSF9EVU1QPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1BNX0RFQlVHPXkKQ09ORklHX1BNX1RSQUNFX1JUQz15CkNPTkZJR19BQ1BJX0RPQ0s9eQpDT05GSUdfQ1BVX0ZSRVFfREVGQVVMVF9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9QRVJGT1JNQU5DRT15CkNPTkZJR19DUFVfRlJFUV9HT1ZfT05ERU1BTkQ9eQpDT05GSUdfWDg2X0FDUElfQ1BVRlJFUT15CkNPTkZJR19QQ0lFUE9SVEJVUz15CkNPTkZJR19IT1RQTFVHX1BDST15CkNPTkZJR19QQ0NBUkQ9eQpDT05GSUdfWUVOVEE9eQpDT05GSUdfSUEzMl9FTVVMQVRJT049eQpDT05GSUdfRUZJX1ZBUlM9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9JTlRFTD1tCkNPTkZJR19LVk1fQU1EPW0KQ09ORklHX1ZIT1NUX05FVD1tCkNPTkZJR19WSE9TVF9WU09DSz1tCkNPTkZJR19LUFJPQkVTPXkKQ09ORklHX0pVTVBfTEFCRUw9eQpDT05GSUdfTU9EVUxFUz15CkNPTkZJR19NT0RVTEVfVU5MT0FEPXkKQ09ORklHX01PRFVMRV9GT1JDRV9VTkxPQUQ9eQpDT05GSUdfUEFSVElUSU9OX0FEVkFOQ0VEPXkKQ09ORklHX09TRl9QQVJUSVRJT049eQpDT05GSUdfQU1JR0FfUEFSVElUSU9OPXkKQ09ORklHX01BQ19QQVJUSVRJT049eQpDT05GSUdfQlNEX0RJU0tMQUJFTD15CkNPTkZJR19NSU5JWF9TVUJQQVJUSVRJT049eQpDT05GSUdfU09MQVJJU19YODZfUEFSVElUSU9OPXkKQ09ORklHX1VOSVhXQVJFX0RJU0tMQUJFTD15CkNPTkZJR19TR0lfUEFSVElUSU9OPXkKQ09ORklHX1NVTl9QQVJUSVRJT049eQpDT05GSUdfS0FSTUFfUEFSVElUSU9OPXkKQ09ORklHX0JJTkZNVF9NSVNDPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFX01BRFZJU0U9eQpDT05GSUdfTkVUPXkKQ09ORklHX1BBQ0tFVD15CkNPTkZJR19VTklYPXkKQ09ORklHX1hGUk1fVVNFUj15CkNPTkZJR19JTkVUPXkKQ09ORklHX0lQX01VTFRJQ0FTVD15CkNPTkZJR19JUF9BRFZBTkNFRF9ST1VURVI9eQpDT05GSUdfSVBfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX0lQX1JPVVRFX01VTFRJUEFUSD15CkNPTkZJR19JUF9ST1VURV9WRVJCT1NFPXkKQ09ORklHX0lQX1BOUD15CkNPTkZJR19JUF9QTlBfREhDUD15CkNPTkZJR19JUF9QTlBfQk9PVFA9eQpDT05GSUdfSVBfUE5QX1JBUlA9eQpDT05GSUdfTkVUX0lQSVA9bQpDT05GSUdfSVBfTVJPVVRFPXkKQ09ORklHX0lQX1BJTVNNX1YxPXkKQ09ORklHX0lQX1BJTVNNX1YyPXkKQ09ORklHX1NZTl9DT09LSUVTPXkKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFJBTlNQT1JUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFVOTkVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfQkVFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0lORVRfRElBRyBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfQ09OR19BRFZBTkNFRD15CiMgQ09ORklHX1RDUF9DT05HX0JJQyBpcyBub3Qgc2V0CiMgQ09ORklHX1RDUF9DT05HX1dFU1RXT09EIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfSFRDUCBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfTUQ1U0lHPXkKQ09ORklHX0lORVQ2X0FIPXkKQ09ORklHX0lORVQ2X0VTUD15CkNPTkZJR19JUFY2X01VTFRJUExFX1RBQkxFUz15CkNPTkZJR19ORVRMQUJFTD15CkNPTkZJR19ORVRGSUxURVI9eQpDT05GSUdfTkVURklMVEVSX05FVExJTktfQUNDVD15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19RVUVVRT15CkNPTkZJR19ORl9DT05OVFJBQ0s9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1pPTkVTPXkKQ09ORklHX05GX0NPTk5UUkFDS19FVkVOVFM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVPVVQ9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVTVEFNUD15CkNPTkZJR19ORl9DT05OVFJBQ0tfRlRQPW0KQ09ORklHX05GX0NPTk5UUkFDS19JUkM9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NBTkU9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NJUD1tCkNPTkZJR19ORl9DT05OVFJBQ0tfVEZUUD1tCkNPTkZJR19ORl9DVF9ORVRMSU5LPW0KQ09ORklHX05FVEZJTFRFUl9YVF9TRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DSEVDS1NVTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NMQVNTSUZZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9EU0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0lETEVUSU1FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xFRD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ORkxPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GUVVFVUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9OT1RSQUNLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVEVFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVFBST1hZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfU0VDTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE9QVFNUUklQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9BRERSVFlQRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQlBGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NMVVNURVI9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTU1FTlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5CWVRFUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkxBQkVMPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NQVT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRENDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfREVWR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0VDTj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRVNQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9IQVNITElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hFTFBFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0lQQ09NUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBSQU5HRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBWUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTDJUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTEVOR1RIPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTUFDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NVUxUSVBPUlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX05GQUNDVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfT1NGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PV05FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUE9MSUNZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QSFlTREVWPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QS1RUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9RVU9UQT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkFURUVTVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVBTE09bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1JFQ0VOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU0NUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU09DS0VUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFURT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU1RBVElTVElDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVFJJTkc9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVElNRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVTMyPW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX0JSSURHRV9ORl9FQlRBQkxFUz1tCkNPTkZJR19CUklER0VfRUJUX0JST1VURT1tCkNPTkZJR19CUklER0VfRUJUX1RfRklMVEVSPW0KQ09ORklHX0JSSURHRV9FQlRfVF9OQVQ9bQpDT05GSUdfQlJJREdFX0VCVF84MDJfMz1tCkNPTkZJR19CUklER0VfRUJUX0FNT05HPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQPW0KQ09ORklHX0JSSURHRV9FQlRfSVA9bQpDT05GSUdfQlJJREdFX0VCVF9JUDY9bQpDT05GSUdfQlJJREdFX0VCVF9MSU1JVD1tCkNPTkZJR19CUklER0VfRUJUX01BUks9bQpDT05GSUdfQlJJREdFX0VCVF9QS1RUWVBFPW0KQ09ORklHX0JSSURHRV9FQlRfU1RQPW0KQ09ORklHX0JSSURHRV9FQlRfVkxBTj1tCkNPTkZJR19CUklER0VfRUJUX0FSUFJFUExZPW0KQ09ORklHX0JSSURHRV9FQlRfRE5BVD1tCkNPTkZJR19CUklER0VfRUJUX01BUktfVD1tCkNPTkZJR19CUklER0VfRUJUX1JFRElSRUNUPW0KQ09ORklHX0JSSURHRV9FQlRfU05BVD1tCkNPTkZJR19CUklER0VfRUJUX0xPRz1tCkNPTkZJR19CUklER0VfRUJUX05GTE9HPW0KQ09ORklHX0lQX1NDVFA9eQpDT05GSUdfQlJJREdFPW0KQ09ORklHX05FVF9TQ0hFRD15CkNPTkZJR19ORVRfU0NIX0hUQj15CkNPTkZJR19ORVRfU0NIX1BSSU89eQpDT05GSUdfTkVUX1NDSF9TRlE9eQpDT05GSUdfTkVUX1NDSF9UQkY9eQpDT05GSUdfTkVUX1NDSF9ORVRFTT15CkNPTkZJR19ORVRfU0NIX0lOR1JFU1M9bQpDT05GSUdfTkVUX0NMU19CQVNJQz1tCkNPTkZJR19ORVRfQ0xTX0ZXPXkKQ09ORklHX05FVF9DTFNfVTMyPW0KQ09ORklHX05FVF9DTFNfQ0dST1VQPXkKQ09ORklHX05FVF9DTFNfQlBGPW0KQ09ORklHX05FVF9DTFNfTUFUQ0hBTEw9eQpDT05GSUdfTkVUX0VNQVRDSD15CkNPTkZJR19ORVRfRU1BVENIX0lQU0VUPXkKQ09ORklHX05FVF9DTFNfQUNUPXkKQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfQlBGPW0KQ09ORklHX05FVF9BQ1RfQ09OTk1BUks9bQpDT05GSUdfT1BFTlZTV0lUQ0g9bQpDT05GSUdfVlNPQ0tFVFM9bQpDT05GSUdfVklSVElPX1ZTT0NLRVRTPW0KQ09ORklHX0NHUk9VUF9ORVRfUFJJTz15CkNPTkZJR19CUEZfSklUPXkKQ09ORklHX0hBTVJBRElPPXkKQ09ORklHX0NGRzgwMjExPXkKQ09ORklHX01BQzgwMjExPXkKQ09ORklHX01BQzgwMjExX0xFRFM9eQpDT05GSUdfUkZLSUxMPXkKQ09ORklHX05FVF85UD1tCkNPTkZJR19ORVRfOVBfVklSVElPPW0KQ09ORklHX0NFUEhfTElCPXkKQ09ORklHX1VFVkVOVF9IRUxQRVJfUEFUSD0iL3NiaW4vaG90cGx1ZyIKQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0RFQlVHX0RFVlJFUz15CkNPTkZJR19DT05ORUNUT1I9eQpDT05GSUdfQkxLX0RFVl9MT09QPXkKQ09ORklHX0JMS19ERVZfTkJEPW0KQ09ORklHX1ZJUlRJT19CTEs9eQpDT05GSUdfQkxLX0RFVl9SQkQ9bQpDT05GSUdfVk1XQVJFX0JBTExPT049bQpDT05GSUdfVk1XQVJFX1ZNQ0k9bQpDT05GSUdfQkxLX0RFVl9TRD15CkNPTkZJR19CTEtfREVWX1NSPXkKQ09ORklHX0NIUl9ERVZfU0c9eQpDT05GSUdfU0NTSV9DT05TVEFOVFM9eQpDT05GSUdfU0NTSV9TUElfQVRUUlM9eQpDT05GSUdfU0NTSV9GQ19BVFRSUz1tCkNPTkZJR19TQ1NJX0lTQ1NJX0FUVFJTPW0KQ09ORklHX1NDU0lfU0FTX0xJQlNBUz1tCkNPTkZJR19TQ1NJX1NBU19BVEE9eQpDT05GSUdfU0NTSV9TUlBfQVRUUlM9bQpDT05GSUdfTUVHQVJBSURfTkVXR0VOPXkKQ09ORklHX01FR0FSQUlEX01NPW0KQ09ORklHX1ZNV0FSRV9QVlNDU0k9eQpDT05GSUdfQVRBPXkKQ09ORklHX1NBVEFfQUhDST15CkNPTkZJR19BVEFfUElJWD15CkNPTkZJR19QQVRBX0FNRD15CkNPTkZJR19QQVRBX09MRFBJSVg9eQpDT05GSUdfUEFUQV9TQ0g9eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD15CkNPTkZJR19CTEtfREVWX0RNPXkKQ09ORklHX0RNX0NSWVBUPXkKQ09ORklHX0RNX1NOQVBTSE9UPXkKQ09ORklHX0RNX1RISU5fUFJPVklTSU9OSU5HPXkKQ09ORklHX0RNX01JUlJPUj15CkNPTkZJR19ETV9aRVJPPXkKQ09ORklHX0ZVU0lPTj15CkNPTkZJR19GVVNJT05fU1BJPW0KQ09ORklHX0ZVU0lPTl9GQz1tCkNPTkZJR19GVVNJT05fU0FTPW0KQ09ORklHX0ZVU0lPTl9DVEw9bQpDT05GSUdfRlVTSU9OX0xPR0dJTkc9eQpDT05GSUdfTUFDSU5UT1NIX0RSSVZFUlM9eQpDT05GSUdfTUFDX0VNVU1PVVNFQlROPXkKQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfRFVNTVk9bQpDT05GSUdfSUZCPW0KQ09ORklHX01BQ1ZMQU49eQpDT05GSUdfTUFDVlRBUD15CkNPTkZJR19JUFZMQU49bQpDT05GSUdfVlhMQU49eQpDT05GSUdfTkVUQ09OU09MRT15CkNPTkZJR19UVU49eQpDT05GSUdfVkVUSD15CkNPTkZJR19WSVJUSU9fTkVUPXkKQ09ORklHX05FVF9WUkY9bQpDT05GSUdfQU1EODExMV9FVEg9bQpDT05GSUdfUENORVQzMj1tCkNPTkZJR19QQ01DSUFfTk1DTEFOPW0KQ09ORklHX1RJR09OMz15CkNPTkZJR19ORVRfVFVMSVA9eQpDT05GSUdfRTEwMD15CkNPTkZJR19FMTAwMD15CkNPTkZJR19FMTAwMEU9eQpDT05GSUdfU0tZMj15CkNPTkZJR19GT1JDRURFVEg9eQpDT05GSUdfODEzOUNQPXkKQ09ORklHXzgxMzlUT089eQpDT05GSUdfRkREST15CkNPTkZJR19WTVhORVQzPXkKQ09ORklHX0hZUEVSVl9ORVQ9bQpDT05GSUdfSU5QVVRfUE9MTERFVj15CkNPTkZJR19JTlBVVF9FVkRFVj15CkNPTkZJR19JTlBVVF9KT1lTVElDSz15CkNPTkZJR19JTlBVVF9UQUJMRVQ9eQpDT05GSUdfSU5QVVRfVE9VQ0hTQ1JFRU49eQpDT05GSUdfSU5QVVRfTUlTQz15CiMgQ09ORklHX0xFR0FDWV9QVFlTIGlzIG5vdCBzZXQKQ09ORklHX1NFUklBTF9OT05TVEFOREFSRD15CkNPTkZJR19TRVJJQUxfODI1MD15CkNPTkZJR19TRVJJQUxfODI1MF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF84MjUwX05SX1VBUlRTPTMyCkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9NQU5ZX1BPUlRTPXkKQ09ORklHX1NFUklBTF84MjUwX1NIQVJFX0lSUT15CkNPTkZJR19TRVJJQUxfODI1MF9ERVRFQ1RfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX1JTQT15CkNPTkZJR19IV19SQU5ET009eQojIENPTkZJR19IV19SQU5ET01fSU5URUwgaXMgbm90IHNldAojIENPTkZJR19IV19SQU5ET01fQU1EIGlzIG5vdCBzZXQKQ09ORklHX0hXX1JBTkRPTV9WSVJUSU89eQpDT05GSUdfTlZSQU09eQpDT05GSUdfSFBFVD15CiMgQ09ORklHX0hQRVRfTU1BUCBpcyBub3Qgc2V0CkNPTkZJR19JMkNfSTgwMT15CkNPTkZJR19XQVRDSERPRz15CkNPTkZJR19BR1A9eQpDT05GSUdfQUdQX0FNRDY0PXkKQ09ORklHX0FHUF9JTlRFTD15CkNPTkZJR19EUk09eQpDT05GSUdfRFJNX0k5MTU9eQpDT05GSUdfRFJNX1ZJUlRJT19HUFU9eQpDT05GSUdfRkJfTU9ERV9IRUxQRVJTPXkKQ09ORklHX0ZCX1RJTEVCTElUVElORz15CkNPTkZJR19GQl9FRkk9eQojIENPTkZJR19MQ0RfQ0xBU1NfREVWSUNFIGlzIG5vdCBzZXQKQ09ORklHX0xPR089eQojIENPTkZJR19MT0dPX0xJTlVYX01PTk8gaXMgbm90IHNldAojIENPTkZJR19MT0dPX0xJTlVYX1ZHQTE2IGlzIG5vdCBzZXQKQ09ORklHX1NPVU5EPXkKQ09ORklHX1NORD15CkNPTkZJR19TTkRfSFJUSU1FUj15CkNPTkZJR19TTkRfU0VRVUVOQ0VSPXkKQ09ORklHX1NORF9TRVFfRFVNTVk9eQpDT05GSUdfU05EX0hEQV9JTlRFTD15CkNPTkZJR19TTkRfSERBX0hXREVQPXkKQ09ORklHX0hJRFJBVz15CkNPTkZJR19ISURfR1lSQVRJT049eQpDT05GSUdfTE9HSVRFQ0hfRkY9eQpDT05GSUdfSElEX05UUklHPXkKQ09ORklHX0hJRF9QQU5USEVSTE9SRD15CkNPTkZJR19QQU5USEVSTE9SRF9GRj15CkNPTkZJR19ISURfUEVUQUxZTlg9eQpDT05GSUdfSElEX1NBTVNVTkc9eQpDT05GSUdfSElEX1NPTlk9eQpDT05GSUdfSElEX1NVTlBMVVM9eQpDT05GSUdfSElEX0hZUEVSVl9NT1VTRT1tCkNPTkZJR19ISURfVE9QU0VFRD15CkNPTkZJR19ISURfUElEPXkKQ09ORklHX1VTQl9ISURERVY9eQpDT05GSUdfVVNCPXkKQ09ORklHX1VTQl9BTk5PVU5DRV9ORVdfREVWSUNFUz15CkNPTkZJR19VU0JfTU9OPXkKQ09ORklHX1VTQl9FSENJX0hDRD15CkNPTkZJR19VU0JfT0hDSV9IQ0Q9eQpDT05GSUdfVVNCX1VIQ0lfSENEPXkKQ09ORklHX1VTQl9QUklOVEVSPXkKQ09ORklHX1VTQl9TVE9SQUdFPXkKQ09ORklHX0VEQUM9eQpDT05GSUdfUlRDX0NMQVNTPXkKIyBDT05GSUdfUlRDX0hDVE9TWVMgaXMgbm90IHNldApDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19WSVJUX0RSSVZFUlM9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19IWVBFUlY9bQpDT05GSUdfSFlQRVJWX1VUSUxTPW0KQ09ORklHX0hZUEVSVl9CQUxMT09OPW0KQ09ORklHX0VFRVBDX0xBUFRPUD15CkNPTkZJR19BTURfSU9NTVU9eQpDT05GSUdfSU5URUxfSU9NTVU9eQojIENPTkZJR19JTlRFTF9JT01NVV9ERUZBVUxUX09OIGlzIG5vdCBzZXQKQ09ORklHX0VYVDRfRlM9eQpDT05GSUdfRVhUNF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfRVhUNF9GU19TRUNVUklUWT15CkNPTkZJR19YRlNfRlM9eQpDT05GSUdfWEZTX1FVT1RBPXkKQ09ORklHX1hGU19QT1NJWF9BQ0w9eQpDT05GSUdfQlRSRlNfRlM9bQpDT05GSUdfQlRSRlNfRlNfUE9TSVhfQUNMPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX1FVT1RBX05FVExJTktfSU5URVJGQUNFPXkKIyBDT05GSUdfUFJJTlRfUVVPVEFfV0FSTklORyBpcyBub3Qgc2V0CkNPTkZJR19RRk1UX1YyPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz15CkNPTkZJR19PVkVSTEFZX0ZTPW0KQ09ORklHX0lTTzk2NjBfRlM9eQpDT05GSUdfSk9MSUVUPXkKQ09ORklHX1pJU09GUz15CkNPTkZJR19NU0RPU19GUz15CkNPTkZJR19WRkFUX0ZTPXkKQ09ORklHX1BST0NfS0NPUkU9eQpDT05GSUdfVE1QRlNfUE9TSVhfQUNMPXkKQ09ORklHX0hVR0VUTEJGUz15CkNPTkZJR19ORlNfRlM9eQpDT05GSUdfTkZTX1Y0PXkKQ09ORklHX05GU19TV0FQPXkKQ09ORklHX05GU19WNF8xPXkKQ09ORklHX05GU19WNF8yPXkKQ09ORklHX05GU0Q9eQpDT05GSUdfTkZTRF9WND15CkNPTkZJR19DRVBIX0ZTPW0KQ09ORklHX0NFUEhfRlNfUE9TSVhfQUNMPXkKQ09ORklHX0NJRlM9eQpDT05GSUdfOVBfRlM9bQpDT05GSUdfOVBfRlNfUE9TSVhfQUNMPXkKQ09ORklHXzlQX0ZTX1NFQ1VSSVRZPXkKQ09ORklHX05MU19ERUZBVUxUPSJ1dGY4IgpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfQVNDSUk9eQpDT05GSUdfTkxTX0lTTzg4NTlfMT15CkNPTkZJR19OTFNfVVRGOD15CkNPTkZJR19TRUNVUklUWT15CkNPTkZJR19TRUNVUklUWV9ORVRXT1JLPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVg9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9CT09UUEFSQU09eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9ESVNBQkxFPXkKQ09ORklHX0NSWVBUT19YVFM9eQpDT05GSUdfQ1JZUFRPX0FFU19OSV9JTlRFTD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfSEFTSD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfU0tDSVBIRVI9eQpDT05GSUdfUFJJTlRLX1RJTUU9eQojIENPTkZJR19VTlVTRURfU1lNQk9MUyBpcyBub3Qgc2V0CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19LRVJORUw9eQpDT05GSUdfREVCVUdfU1RBQ0tfVVNBR0U9eQpDT05GSUdfREVCVUdfU1RBQ0tPVkVSRkxPVz15CiMgQ09ORklHX1NDSEVEX0RFQlVHIGlzIG5vdCBzZXQKQ09ORklHX1NDSEVEU1RBVFM9eQpDT05GSUdfRlVOQ1RJT05fVFJBQ0VSPXkKQ09ORklHX0ZUUkFDRV9TWVNDQUxMUz15CkNPTkZJR19CTEtfREVWX0lPX1RSQUNFPXkKQ09ORklHX1BST1ZJREVfT0hDSTEzOTRfRE1BX0lOSVQ9eQpDT05GSUdfRUFSTFlfUFJJTlRLX0RCR1A9eQpDT05GSUdfREVCVUdfQk9PVF9QQVJBTVM9eQpDT05GSUdfT1BUSU1JWkVfSU5MSU5JTkc9eQo=" + }, + { + "kernelversion": "1_1.25.1", + "kernelrelease": "4.19.202", + "target": "minikube", + "kernelconfigdata": "IyBDT05GSUdfTE9DQUxWRVJTSU9OX0FVVE8gaXMgbm90IHNldApDT05GSUdfS0VSTkVMX0xaND15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWj15CkNPTkZJR19ISUdIX1JFU19USU1FUlM9eQpDT05GSUdfUFJFRU1QVF9WT0xVTlRBUlk9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19UQVNLX1hBQ0NUPXkKQ09ORklHX1RBU0tfSU9fQUNDT1VOVElORz15CkNPTkZJR19JS0NPTkZJRz15CkNPTkZJR19JS0NPTkZJR19QUk9DPXkKQ09ORklHX0xPR19CVUZfU0hJRlQ9MTgKQ09ORklHX0NHUk9VUFM9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9TQ0hFRD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX1JUX0dST1VQX1NDSEVEPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19DR1JPVVBfQlBGPXkKQ09ORklHX1VTRVJfTlM9eQpDT05GSUdfQkxLX0RFVl9JTklUUkQ9eQpDT05GSUdfQlBGX1NZU0NBTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19TTVA9eQpDT05GSUdfSFlQRVJWSVNPUl9HVUVTVD15CkNPTkZJR19QQVJBVklSVF9TUElOTE9DS1M9eQpDT05GSUdfS1ZNX0RFQlVHX0ZTPXkKQ09ORklHX0NBTEdBUllfSU9NTVU9eQpDT05GSUdfWDg2X1JFUk9VVEVfRk9SX0JST0tFTl9CT09UX0lSUVM9eQpDT05GSUdfTUlDUk9DT0RFX0FNRD15CkNPTkZJR19YODZfTVNSPXkKQ09ORklHX1g4Nl9DUFVJRD15CkNPTkZJR19OVU1BPXkKQ09ORklHX1g4Nl9DSEVDS19CSU9TX0NPUlJVUFRJT049eQojIENPTkZJR19NVFJSX1NBTklUSVpFUiBpcyBub3Qgc2V0CkNPTkZJR19FRkk9eQpDT05GSUdfSFpfMTAwMD15CkNPTkZJR19LRVhFQz15CkNPTkZJR19DUkFTSF9EVU1QPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1BNX0RFQlVHPXkKQ09ORklHX1BNX1RSQUNFX1JUQz15CkNPTkZJR19BQ1BJX0RPQ0s9eQpDT05GSUdfQ1BVX0ZSRVFfREVGQVVMVF9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9QRVJGT1JNQU5DRT15CkNPTkZJR19DUFVfRlJFUV9HT1ZfT05ERU1BTkQ9eQpDT05GSUdfWDg2X0FDUElfQ1BVRlJFUT15CkNPTkZJR19QQ0lFUE9SVEJVUz15CkNPTkZJR19IT1RQTFVHX1BDST15CkNPTkZJR19QQ0NBUkQ9eQpDT05GSUdfWUVOVEE9eQpDT05GSUdfSUEzMl9FTVVMQVRJT049eQpDT05GSUdfRUZJX1ZBUlM9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9JTlRFTD1tCkNPTkZJR19LVk1fQU1EPW0KQ09ORklHX1ZIT1NUX05FVD1tCkNPTkZJR19WSE9TVF9WU09DSz1tCkNPTkZJR19LUFJPQkVTPXkKQ09ORklHX0pVTVBfTEFCRUw9eQpDT05GSUdfTU9EVUxFUz15CkNPTkZJR19NT0RVTEVfVU5MT0FEPXkKQ09ORklHX01PRFVMRV9GT1JDRV9VTkxPQUQ9eQpDT05GSUdfUEFSVElUSU9OX0FEVkFOQ0VEPXkKQ09ORklHX09TRl9QQVJUSVRJT049eQpDT05GSUdfQU1JR0FfUEFSVElUSU9OPXkKQ09ORklHX01BQ19QQVJUSVRJT049eQpDT05GSUdfQlNEX0RJU0tMQUJFTD15CkNPTkZJR19NSU5JWF9TVUJQQVJUSVRJT049eQpDT05GSUdfU09MQVJJU19YODZfUEFSVElUSU9OPXkKQ09ORklHX1VOSVhXQVJFX0RJU0tMQUJFTD15CkNPTkZJR19TR0lfUEFSVElUSU9OPXkKQ09ORklHX1NVTl9QQVJUSVRJT049eQpDT05GSUdfS0FSTUFfUEFSVElUSU9OPXkKQ09ORklHX0JJTkZNVF9NSVNDPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFX01BRFZJU0U9eQpDT05GSUdfTkVUPXkKQ09ORklHX1BBQ0tFVD15CkNPTkZJR19VTklYPXkKQ09ORklHX1hGUk1fVVNFUj15CkNPTkZJR19JTkVUPXkKQ09ORklHX0lQX01VTFRJQ0FTVD15CkNPTkZJR19JUF9BRFZBTkNFRF9ST1VURVI9eQpDT05GSUdfSVBfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX0lQX1JPVVRFX01VTFRJUEFUSD15CkNPTkZJR19JUF9ST1VURV9WRVJCT1NFPXkKQ09ORklHX0lQX1BOUD15CkNPTkZJR19JUF9QTlBfREhDUD15CkNPTkZJR19JUF9QTlBfQk9PVFA9eQpDT05GSUdfSVBfUE5QX1JBUlA9eQpDT05GSUdfTkVUX0lQSVA9bQpDT05GSUdfSVBfTVJPVVRFPXkKQ09ORklHX0lQX1BJTVNNX1YxPXkKQ09ORklHX0lQX1BJTVNNX1YyPXkKQ09ORklHX1NZTl9DT09LSUVTPXkKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFJBTlNQT1JUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFVOTkVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfQkVFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0lORVRfRElBRyBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfQ09OR19BRFZBTkNFRD15CiMgQ09ORklHX1RDUF9DT05HX0JJQyBpcyBub3Qgc2V0CiMgQ09ORklHX1RDUF9DT05HX1dFU1RXT09EIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfSFRDUCBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfTUQ1U0lHPXkKQ09ORklHX0lORVQ2X0FIPXkKQ09ORklHX0lORVQ2X0VTUD15CkNPTkZJR19JUFY2X01VTFRJUExFX1RBQkxFUz15CkNPTkZJR19ORVRMQUJFTD15CkNPTkZJR19ORVRGSUxURVI9eQpDT05GSUdfTkVURklMVEVSX05FVExJTktfQUNDVD15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19RVUVVRT15CkNPTkZJR19ORl9DT05OVFJBQ0s9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1pPTkVTPXkKQ09ORklHX05GX0NPTk5UUkFDS19FVkVOVFM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVPVVQ9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVTVEFNUD15CkNPTkZJR19ORl9DT05OVFJBQ0tfRlRQPW0KQ09ORklHX05GX0NPTk5UUkFDS19JUkM9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NBTkU9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NJUD1tCkNPTkZJR19ORl9DT05OVFJBQ0tfVEZUUD1tCkNPTkZJR19ORl9DVF9ORVRMSU5LPW0KQ09ORklHX05FVEZJTFRFUl9YVF9TRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DSEVDS1NVTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NMQVNTSUZZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9EU0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0lETEVUSU1FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xFRD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ORkxPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GUVVFVUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9OT1RSQUNLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVEVFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVFBST1hZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfU0VDTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE9QVFNUUklQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9BRERSVFlQRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQlBGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NMVVNURVI9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTU1FTlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5CWVRFUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkxBQkVMPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NQVT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRENDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfREVWR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0VDTj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRVNQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9IQVNITElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hFTFBFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0lQQ09NUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBSQU5HRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBWUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTDJUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTEVOR1RIPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTUFDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NVUxUSVBPUlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX05GQUNDVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfT1NGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PV05FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUE9MSUNZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QSFlTREVWPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QS1RUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9RVU9UQT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkFURUVTVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVBTE09bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1JFQ0VOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU0NUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU09DS0VUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFURT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU1RBVElTVElDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVFJJTkc9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVElNRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVTMyPW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX0JSSURHRV9ORl9FQlRBQkxFUz1tCkNPTkZJR19CUklER0VfRUJUX0JST1VURT1tCkNPTkZJR19CUklER0VfRUJUX1RfRklMVEVSPW0KQ09ORklHX0JSSURHRV9FQlRfVF9OQVQ9bQpDT05GSUdfQlJJREdFX0VCVF84MDJfMz1tCkNPTkZJR19CUklER0VfRUJUX0FNT05HPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQPW0KQ09ORklHX0JSSURHRV9FQlRfSVA9bQpDT05GSUdfQlJJREdFX0VCVF9JUDY9bQpDT05GSUdfQlJJREdFX0VCVF9MSU1JVD1tCkNPTkZJR19CUklER0VfRUJUX01BUks9bQpDT05GSUdfQlJJREdFX0VCVF9QS1RUWVBFPW0KQ09ORklHX0JSSURHRV9FQlRfU1RQPW0KQ09ORklHX0JSSURHRV9FQlRfVkxBTj1tCkNPTkZJR19CUklER0VfRUJUX0FSUFJFUExZPW0KQ09ORklHX0JSSURHRV9FQlRfRE5BVD1tCkNPTkZJR19CUklER0VfRUJUX01BUktfVD1tCkNPTkZJR19CUklER0VfRUJUX1JFRElSRUNUPW0KQ09ORklHX0JSSURHRV9FQlRfU05BVD1tCkNPTkZJR19CUklER0VfRUJUX0xPRz1tCkNPTkZJR19CUklER0VfRUJUX05GTE9HPW0KQ09ORklHX0lQX1NDVFA9eQpDT05GSUdfQlJJREdFPW0KQ09ORklHX05FVF9TQ0hFRD15CkNPTkZJR19ORVRfU0NIX0hUQj15CkNPTkZJR19ORVRfU0NIX1BSSU89eQpDT05GSUdfTkVUX1NDSF9TRlE9eQpDT05GSUdfTkVUX1NDSF9UQkY9eQpDT05GSUdfTkVUX1NDSF9ORVRFTT15CkNPTkZJR19ORVRfU0NIX0lOR1JFU1M9bQpDT05GSUdfTkVUX0NMU19CQVNJQz1tCkNPTkZJR19ORVRfQ0xTX0ZXPXkKQ09ORklHX05FVF9DTFNfVTMyPW0KQ09ORklHX05FVF9DTFNfQ0dST1VQPXkKQ09ORklHX05FVF9DTFNfQlBGPW0KQ09ORklHX05FVF9DTFNfTUFUQ0hBTEw9eQpDT05GSUdfTkVUX0VNQVRDSD15CkNPTkZJR19ORVRfRU1BVENIX0lQU0VUPXkKQ09ORklHX05FVF9DTFNfQUNUPXkKQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfQlBGPW0KQ09ORklHX05FVF9BQ1RfQ09OTk1BUks9bQpDT05GSUdfT1BFTlZTV0lUQ0g9bQpDT05GSUdfVlNPQ0tFVFM9bQpDT05GSUdfVklSVElPX1ZTT0NLRVRTPW0KQ09ORklHX0NHUk9VUF9ORVRfUFJJTz15CkNPTkZJR19CUEZfSklUPXkKQ09ORklHX0hBTVJBRElPPXkKQ09ORklHX0NGRzgwMjExPXkKQ09ORklHX01BQzgwMjExPXkKQ09ORklHX01BQzgwMjExX0xFRFM9eQpDT05GSUdfUkZLSUxMPXkKQ09ORklHX05FVF85UD1tCkNPTkZJR19ORVRfOVBfVklSVElPPW0KQ09ORklHX0NFUEhfTElCPXkKQ09ORklHX1VFVkVOVF9IRUxQRVJfUEFUSD0iL3NiaW4vaG90cGx1ZyIKQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0RFQlVHX0RFVlJFUz15CkNPTkZJR19DT05ORUNUT1I9eQpDT05GSUdfQkxLX0RFVl9MT09QPXkKQ09ORklHX0JMS19ERVZfTkJEPW0KQ09ORklHX1ZJUlRJT19CTEs9eQpDT05GSUdfQkxLX0RFVl9SQkQ9bQpDT05GSUdfVk1XQVJFX0JBTExPT049bQpDT05GSUdfVk1XQVJFX1ZNQ0k9bQpDT05GSUdfQkxLX0RFVl9TRD15CkNPTkZJR19CTEtfREVWX1NSPXkKQ09ORklHX0NIUl9ERVZfU0c9eQpDT05GSUdfU0NTSV9DT05TVEFOVFM9eQpDT05GSUdfU0NTSV9TUElfQVRUUlM9eQpDT05GSUdfU0NTSV9GQ19BVFRSUz1tCkNPTkZJR19TQ1NJX0lTQ1NJX0FUVFJTPW0KQ09ORklHX1NDU0lfU0FTX0xJQlNBUz1tCkNPTkZJR19TQ1NJX1NBU19BVEE9eQpDT05GSUdfU0NTSV9TUlBfQVRUUlM9bQpDT05GSUdfTUVHQVJBSURfTkVXR0VOPXkKQ09ORklHX01FR0FSQUlEX01NPW0KQ09ORklHX1ZNV0FSRV9QVlNDU0k9eQpDT05GSUdfQVRBPXkKQ09ORklHX1NBVEFfQUhDST15CkNPTkZJR19BVEFfUElJWD15CkNPTkZJR19QQVRBX0FNRD15CkNPTkZJR19QQVRBX09MRFBJSVg9eQpDT05GSUdfUEFUQV9TQ0g9eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD15CkNPTkZJR19CTEtfREVWX0RNPXkKQ09ORklHX0RNX0NSWVBUPXkKQ09ORklHX0RNX1NOQVBTSE9UPXkKQ09ORklHX0RNX1RISU5fUFJPVklTSU9OSU5HPXkKQ09ORklHX0RNX01JUlJPUj15CkNPTkZJR19ETV9aRVJPPXkKQ09ORklHX0ZVU0lPTj15CkNPTkZJR19GVVNJT05fU1BJPW0KQ09ORklHX0ZVU0lPTl9GQz1tCkNPTkZJR19GVVNJT05fU0FTPW0KQ09ORklHX0ZVU0lPTl9DVEw9bQpDT05GSUdfRlVTSU9OX0xPR0dJTkc9eQpDT05GSUdfTUFDSU5UT1NIX0RSSVZFUlM9eQpDT05GSUdfTUFDX0VNVU1PVVNFQlROPXkKQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfRFVNTVk9bQpDT05GSUdfSUZCPW0KQ09ORklHX01BQ1ZMQU49eQpDT05GSUdfTUFDVlRBUD15CkNPTkZJR19JUFZMQU49bQpDT05GSUdfVlhMQU49eQpDT05GSUdfTkVUQ09OU09MRT15CkNPTkZJR19UVU49eQpDT05GSUdfVkVUSD15CkNPTkZJR19WSVJUSU9fTkVUPXkKQ09ORklHX05FVF9WUkY9bQpDT05GSUdfQU1EODExMV9FVEg9bQpDT05GSUdfUENORVQzMj1tCkNPTkZJR19QQ01DSUFfTk1DTEFOPW0KQ09ORklHX1RJR09OMz15CkNPTkZJR19ORVRfVFVMSVA9eQpDT05GSUdfRTEwMD15CkNPTkZJR19FMTAwMD15CkNPTkZJR19FMTAwMEU9eQpDT05GSUdfU0tZMj15CkNPTkZJR19GT1JDRURFVEg9eQpDT05GSUdfODEzOUNQPXkKQ09ORklHXzgxMzlUT089eQpDT05GSUdfRkREST15CkNPTkZJR19WTVhORVQzPXkKQ09ORklHX0hZUEVSVl9ORVQ9bQpDT05GSUdfSU5QVVRfUE9MTERFVj15CkNPTkZJR19JTlBVVF9FVkRFVj15CkNPTkZJR19JTlBVVF9KT1lTVElDSz15CkNPTkZJR19JTlBVVF9UQUJMRVQ9eQpDT05GSUdfSU5QVVRfVE9VQ0hTQ1JFRU49eQpDT05GSUdfSU5QVVRfTUlTQz15CiMgQ09ORklHX0xFR0FDWV9QVFlTIGlzIG5vdCBzZXQKQ09ORklHX1NFUklBTF9OT05TVEFOREFSRD15CkNPTkZJR19TRVJJQUxfODI1MD15CkNPTkZJR19TRVJJQUxfODI1MF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF84MjUwX05SX1VBUlRTPTMyCkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9NQU5ZX1BPUlRTPXkKQ09ORklHX1NFUklBTF84MjUwX1NIQVJFX0lSUT15CkNPTkZJR19TRVJJQUxfODI1MF9ERVRFQ1RfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX1JTQT15CkNPTkZJR19IV19SQU5ET009eQojIENPTkZJR19IV19SQU5ET01fSU5URUwgaXMgbm90IHNldAojIENPTkZJR19IV19SQU5ET01fQU1EIGlzIG5vdCBzZXQKQ09ORklHX0hXX1JBTkRPTV9WSVJUSU89eQpDT05GSUdfTlZSQU09eQpDT05GSUdfSFBFVD15CiMgQ09ORklHX0hQRVRfTU1BUCBpcyBub3Qgc2V0CkNPTkZJR19JMkNfSTgwMT15CkNPTkZJR19XQVRDSERPRz15CkNPTkZJR19BR1A9eQpDT05GSUdfQUdQX0FNRDY0PXkKQ09ORklHX0FHUF9JTlRFTD15CkNPTkZJR19EUk09eQpDT05GSUdfRFJNX0k5MTU9eQpDT05GSUdfRFJNX1ZJUlRJT19HUFU9eQpDT05GSUdfRkJfTU9ERV9IRUxQRVJTPXkKQ09ORklHX0ZCX1RJTEVCTElUVElORz15CkNPTkZJR19GQl9FRkk9eQojIENPTkZJR19MQ0RfQ0xBU1NfREVWSUNFIGlzIG5vdCBzZXQKQ09ORklHX0xPR089eQojIENPTkZJR19MT0dPX0xJTlVYX01PTk8gaXMgbm90IHNldAojIENPTkZJR19MT0dPX0xJTlVYX1ZHQTE2IGlzIG5vdCBzZXQKQ09ORklHX1NPVU5EPXkKQ09ORklHX1NORD15CkNPTkZJR19TTkRfSFJUSU1FUj15CkNPTkZJR19TTkRfU0VRVUVOQ0VSPXkKQ09ORklHX1NORF9TRVFfRFVNTVk9eQpDT05GSUdfU05EX0hEQV9JTlRFTD15CkNPTkZJR19TTkRfSERBX0hXREVQPXkKQ09ORklHX0hJRFJBVz15CkNPTkZJR19ISURfR1lSQVRJT049eQpDT05GSUdfTE9HSVRFQ0hfRkY9eQpDT05GSUdfSElEX05UUklHPXkKQ09ORklHX0hJRF9QQU5USEVSTE9SRD15CkNPTkZJR19QQU5USEVSTE9SRF9GRj15CkNPTkZJR19ISURfUEVUQUxZTlg9eQpDT05GSUdfSElEX1NBTVNVTkc9eQpDT05GSUdfSElEX1NPTlk9eQpDT05GSUdfSElEX1NVTlBMVVM9eQpDT05GSUdfSElEX0hZUEVSVl9NT1VTRT1tCkNPTkZJR19ISURfVE9QU0VFRD15CkNPTkZJR19ISURfUElEPXkKQ09ORklHX1VTQl9ISURERVY9eQpDT05GSUdfVVNCPXkKQ09ORklHX1VTQl9BTk5PVU5DRV9ORVdfREVWSUNFUz15CkNPTkZJR19VU0JfTU9OPXkKQ09ORklHX1VTQl9FSENJX0hDRD15CkNPTkZJR19VU0JfT0hDSV9IQ0Q9eQpDT05GSUdfVVNCX1VIQ0lfSENEPXkKQ09ORklHX1VTQl9QUklOVEVSPXkKQ09ORklHX1VTQl9TVE9SQUdFPXkKQ09ORklHX0VEQUM9eQpDT05GSUdfUlRDX0NMQVNTPXkKIyBDT05GSUdfUlRDX0hDVE9TWVMgaXMgbm90IHNldApDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19WSVJUX0RSSVZFUlM9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19IWVBFUlY9bQpDT05GSUdfSFlQRVJWX1VUSUxTPW0KQ09ORklHX0hZUEVSVl9CQUxMT09OPW0KQ09ORklHX0VFRVBDX0xBUFRPUD15CkNPTkZJR19BTURfSU9NTVU9eQpDT05GSUdfSU5URUxfSU9NTVU9eQojIENPTkZJR19JTlRFTF9JT01NVV9ERUZBVUxUX09OIGlzIG5vdCBzZXQKQ09ORklHX0VYVDRfRlM9eQpDT05GSUdfRVhUNF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfRVhUNF9GU19TRUNVUklUWT15CkNPTkZJR19YRlNfRlM9eQpDT05GSUdfWEZTX1FVT1RBPXkKQ09ORklHX1hGU19QT1NJWF9BQ0w9eQpDT05GSUdfQlRSRlNfRlM9bQpDT05GSUdfQlRSRlNfRlNfUE9TSVhfQUNMPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX1FVT1RBX05FVExJTktfSU5URVJGQUNFPXkKIyBDT05GSUdfUFJJTlRfUVVPVEFfV0FSTklORyBpcyBub3Qgc2V0CkNPTkZJR19RRk1UX1YyPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz15CkNPTkZJR19PVkVSTEFZX0ZTPW0KQ09ORklHX0lTTzk2NjBfRlM9eQpDT05GSUdfSk9MSUVUPXkKQ09ORklHX1pJU09GUz15CkNPTkZJR19NU0RPU19GUz15CkNPTkZJR19WRkFUX0ZTPXkKQ09ORklHX1BST0NfS0NPUkU9eQpDT05GSUdfVE1QRlNfUE9TSVhfQUNMPXkKQ09ORklHX0hVR0VUTEJGUz15CkNPTkZJR19ORlNfRlM9eQpDT05GSUdfTkZTX1Y0PXkKQ09ORklHX05GU19TV0FQPXkKQ09ORklHX05GU19WNF8xPXkKQ09ORklHX05GU19WNF8yPXkKQ09ORklHX05GU0Q9eQpDT05GSUdfTkZTRF9WND15CkNPTkZJR19DRVBIX0ZTPW0KQ09ORklHX0NFUEhfRlNfUE9TSVhfQUNMPXkKQ09ORklHX0NJRlM9eQpDT05GSUdfOVBfRlM9bQpDT05GSUdfOVBfRlNfUE9TSVhfQUNMPXkKQ09ORklHXzlQX0ZTX1NFQ1VSSVRZPXkKQ09ORklHX05MU19ERUZBVUxUPSJ1dGY4IgpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfQVNDSUk9eQpDT05GSUdfTkxTX0lTTzg4NTlfMT15CkNPTkZJR19OTFNfVVRGOD15CkNPTkZJR19TRUNVUklUWT15CkNPTkZJR19TRUNVUklUWV9ORVRXT1JLPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVg9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9CT09UUEFSQU09eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9ESVNBQkxFPXkKQ09ORklHX0NSWVBUT19YVFM9eQpDT05GSUdfQ1JZUFRPX0FFU19OSV9JTlRFTD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfSEFTSD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfU0tDSVBIRVI9eQpDT05GSUdfUFJJTlRLX1RJTUU9eQojIENPTkZJR19VTlVTRURfU1lNQk9MUyBpcyBub3Qgc2V0CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19LRVJORUw9eQpDT05GSUdfREVCVUdfU1RBQ0tfVVNBR0U9eQpDT05GSUdfREVCVUdfU1RBQ0tPVkVSRkxPVz15CiMgQ09ORklHX1NDSEVEX0RFQlVHIGlzIG5vdCBzZXQKQ09ORklHX1NDSEVEU1RBVFM9eQpDT05GSUdfRlVOQ1RJT05fVFJBQ0VSPXkKQ09ORklHX0ZUUkFDRV9TWVNDQUxMUz15CkNPTkZJR19CTEtfREVWX0lPX1RSQUNFPXkKQ09ORklHX1BST1ZJREVfT0hDSTEzOTRfRE1BX0lOSVQ9eQpDT05GSUdfRUFSTFlfUFJJTlRLX0RCR1A9eQpDT05GSUdfREVCVUdfQk9PVF9QQVJBTVM9eQpDT05GSUdfT1BUSU1JWkVfSU5MSU5JTkc9eQo=" + }, + { + "kernelversion": "1_1.25.2", + "kernelrelease": "4.19.202", + "target": "minikube", + "kernelconfigdata": "IyBDT05GSUdfTE9DQUxWRVJTSU9OX0FVVE8gaXMgbm90IHNldApDT05GSUdfS0VSTkVMX0xaND15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWj15CkNPTkZJR19ISUdIX1JFU19USU1FUlM9eQpDT05GSUdfUFJFRU1QVF9WT0xVTlRBUlk9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19UQVNLX1hBQ0NUPXkKQ09ORklHX1RBU0tfSU9fQUNDT1VOVElORz15CkNPTkZJR19JS0NPTkZJRz15CkNPTkZJR19JS0NPTkZJR19QUk9DPXkKQ09ORklHX0xPR19CVUZfU0hJRlQ9MTgKQ09ORklHX0NHUk9VUFM9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9TQ0hFRD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX1JUX0dST1VQX1NDSEVEPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19DR1JPVVBfQlBGPXkKQ09ORklHX1VTRVJfTlM9eQpDT05GSUdfQkxLX0RFVl9JTklUUkQ9eQpDT05GSUdfQlBGX1NZU0NBTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19TTVA9eQpDT05GSUdfSFlQRVJWSVNPUl9HVUVTVD15CkNPTkZJR19QQVJBVklSVF9TUElOTE9DS1M9eQpDT05GSUdfS1ZNX0RFQlVHX0ZTPXkKQ09ORklHX0NBTEdBUllfSU9NTVU9eQpDT05GSUdfWDg2X1JFUk9VVEVfRk9SX0JST0tFTl9CT09UX0lSUVM9eQpDT05GSUdfTUlDUk9DT0RFX0FNRD15CkNPTkZJR19YODZfTVNSPXkKQ09ORklHX1g4Nl9DUFVJRD15CkNPTkZJR19OVU1BPXkKQ09ORklHX1g4Nl9DSEVDS19CSU9TX0NPUlJVUFRJT049eQojIENPTkZJR19NVFJSX1NBTklUSVpFUiBpcyBub3Qgc2V0CkNPTkZJR19FRkk9eQpDT05GSUdfSFpfMTAwMD15CkNPTkZJR19LRVhFQz15CkNPTkZJR19DUkFTSF9EVU1QPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1BNX0RFQlVHPXkKQ09ORklHX1BNX1RSQUNFX1JUQz15CkNPTkZJR19BQ1BJX0RPQ0s9eQpDT05GSUdfQ1BVX0ZSRVFfREVGQVVMVF9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9QRVJGT1JNQU5DRT15CkNPTkZJR19DUFVfRlJFUV9HT1ZfT05ERU1BTkQ9eQpDT05GSUdfWDg2X0FDUElfQ1BVRlJFUT15CkNPTkZJR19QQ0lFUE9SVEJVUz15CkNPTkZJR19IT1RQTFVHX1BDST15CkNPTkZJR19QQ0NBUkQ9eQpDT05GSUdfWUVOVEE9eQpDT05GSUdfSUEzMl9FTVVMQVRJT049eQpDT05GSUdfRUZJX1ZBUlM9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9JTlRFTD1tCkNPTkZJR19LVk1fQU1EPW0KQ09ORklHX1ZIT1NUX05FVD1tCkNPTkZJR19WSE9TVF9WU09DSz1tCkNPTkZJR19LUFJPQkVTPXkKQ09ORklHX0pVTVBfTEFCRUw9eQpDT05GSUdfTU9EVUxFUz15CkNPTkZJR19NT0RVTEVfVU5MT0FEPXkKQ09ORklHX01PRFVMRV9GT1JDRV9VTkxPQUQ9eQpDT05GSUdfUEFSVElUSU9OX0FEVkFOQ0VEPXkKQ09ORklHX09TRl9QQVJUSVRJT049eQpDT05GSUdfQU1JR0FfUEFSVElUSU9OPXkKQ09ORklHX01BQ19QQVJUSVRJT049eQpDT05GSUdfQlNEX0RJU0tMQUJFTD15CkNPTkZJR19NSU5JWF9TVUJQQVJUSVRJT049eQpDT05GSUdfU09MQVJJU19YODZfUEFSVElUSU9OPXkKQ09ORklHX1VOSVhXQVJFX0RJU0tMQUJFTD15CkNPTkZJR19TR0lfUEFSVElUSU9OPXkKQ09ORklHX1NVTl9QQVJUSVRJT049eQpDT05GSUdfS0FSTUFfUEFSVElUSU9OPXkKQ09ORklHX0JJTkZNVF9NSVNDPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFX01BRFZJU0U9eQpDT05GSUdfTkVUPXkKQ09ORklHX1BBQ0tFVD15CkNPTkZJR19VTklYPXkKQ09ORklHX1hGUk1fVVNFUj15CkNPTkZJR19JTkVUPXkKQ09ORklHX0lQX01VTFRJQ0FTVD15CkNPTkZJR19JUF9BRFZBTkNFRF9ST1VURVI9eQpDT05GSUdfSVBfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX0lQX1JPVVRFX01VTFRJUEFUSD15CkNPTkZJR19JUF9ST1VURV9WRVJCT1NFPXkKQ09ORklHX0lQX1BOUD15CkNPTkZJR19JUF9QTlBfREhDUD15CkNPTkZJR19JUF9QTlBfQk9PVFA9eQpDT05GSUdfSVBfUE5QX1JBUlA9eQpDT05GSUdfTkVUX0lQSVA9bQpDT05GSUdfSVBfTVJPVVRFPXkKQ09ORklHX0lQX1BJTVNNX1YxPXkKQ09ORklHX0lQX1BJTVNNX1YyPXkKQ09ORklHX1NZTl9DT09LSUVTPXkKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFJBTlNQT1JUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFVOTkVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfQkVFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0lORVRfRElBRyBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfQ09OR19BRFZBTkNFRD15CiMgQ09ORklHX1RDUF9DT05HX0JJQyBpcyBub3Qgc2V0CiMgQ09ORklHX1RDUF9DT05HX1dFU1RXT09EIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfSFRDUCBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfTUQ1U0lHPXkKQ09ORklHX0lORVQ2X0FIPXkKQ09ORklHX0lORVQ2X0VTUD15CkNPTkZJR19JUFY2X01VTFRJUExFX1RBQkxFUz15CkNPTkZJR19ORVRMQUJFTD15CkNPTkZJR19ORVRGSUxURVI9eQpDT05GSUdfTkVURklMVEVSX05FVExJTktfQUNDVD15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19RVUVVRT15CkNPTkZJR19ORl9DT05OVFJBQ0s9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1pPTkVTPXkKQ09ORklHX05GX0NPTk5UUkFDS19FVkVOVFM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVPVVQ9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVTVEFNUD15CkNPTkZJR19ORl9DT05OVFJBQ0tfRlRQPW0KQ09ORklHX05GX0NPTk5UUkFDS19JUkM9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NBTkU9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NJUD1tCkNPTkZJR19ORl9DT05OVFJBQ0tfVEZUUD1tCkNPTkZJR19ORl9DVF9ORVRMSU5LPW0KQ09ORklHX05FVEZJTFRFUl9YVF9TRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DSEVDS1NVTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NMQVNTSUZZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9EU0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0lETEVUSU1FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xFRD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ORkxPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GUVVFVUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9OT1RSQUNLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVEVFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVFBST1hZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfU0VDTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE9QVFNUUklQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9BRERSVFlQRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQlBGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NMVVNURVI9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTU1FTlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5CWVRFUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkxBQkVMPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NQVT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRENDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfREVWR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0VDTj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRVNQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9IQVNITElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hFTFBFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0lQQ09NUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBSQU5HRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBWUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTDJUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTEVOR1RIPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTUFDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NVUxUSVBPUlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX05GQUNDVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfT1NGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PV05FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUE9MSUNZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QSFlTREVWPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QS1RUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9RVU9UQT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkFURUVTVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVBTE09bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1JFQ0VOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU0NUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU09DS0VUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFURT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU1RBVElTVElDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVFJJTkc9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVElNRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVTMyPW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX0JSSURHRV9ORl9FQlRBQkxFUz1tCkNPTkZJR19CUklER0VfRUJUX0JST1VURT1tCkNPTkZJR19CUklER0VfRUJUX1RfRklMVEVSPW0KQ09ORklHX0JSSURHRV9FQlRfVF9OQVQ9bQpDT05GSUdfQlJJREdFX0VCVF84MDJfMz1tCkNPTkZJR19CUklER0VfRUJUX0FNT05HPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQPW0KQ09ORklHX0JSSURHRV9FQlRfSVA9bQpDT05GSUdfQlJJREdFX0VCVF9JUDY9bQpDT05GSUdfQlJJREdFX0VCVF9MSU1JVD1tCkNPTkZJR19CUklER0VfRUJUX01BUks9bQpDT05GSUdfQlJJREdFX0VCVF9QS1RUWVBFPW0KQ09ORklHX0JSSURHRV9FQlRfU1RQPW0KQ09ORklHX0JSSURHRV9FQlRfVkxBTj1tCkNPTkZJR19CUklER0VfRUJUX0FSUFJFUExZPW0KQ09ORklHX0JSSURHRV9FQlRfRE5BVD1tCkNPTkZJR19CUklER0VfRUJUX01BUktfVD1tCkNPTkZJR19CUklER0VfRUJUX1JFRElSRUNUPW0KQ09ORklHX0JSSURHRV9FQlRfU05BVD1tCkNPTkZJR19CUklER0VfRUJUX0xPRz1tCkNPTkZJR19CUklER0VfRUJUX05GTE9HPW0KQ09ORklHX0lQX1NDVFA9eQpDT05GSUdfQlJJREdFPW0KQ09ORklHX05FVF9TQ0hFRD15CkNPTkZJR19ORVRfU0NIX0hUQj15CkNPTkZJR19ORVRfU0NIX1BSSU89eQpDT05GSUdfTkVUX1NDSF9TRlE9eQpDT05GSUdfTkVUX1NDSF9UQkY9eQpDT05GSUdfTkVUX1NDSF9ORVRFTT15CkNPTkZJR19ORVRfU0NIX0lOR1JFU1M9bQpDT05GSUdfTkVUX0NMU19CQVNJQz1tCkNPTkZJR19ORVRfQ0xTX0ZXPXkKQ09ORklHX05FVF9DTFNfVTMyPW0KQ09ORklHX05FVF9DTFNfQ0dST1VQPXkKQ09ORklHX05FVF9DTFNfQlBGPW0KQ09ORklHX05FVF9DTFNfTUFUQ0hBTEw9eQpDT05GSUdfTkVUX0VNQVRDSD15CkNPTkZJR19ORVRfRU1BVENIX0lQU0VUPXkKQ09ORklHX05FVF9DTFNfQUNUPXkKQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfQlBGPW0KQ09ORklHX05FVF9BQ1RfQ09OTk1BUks9bQpDT05GSUdfT1BFTlZTV0lUQ0g9bQpDT05GSUdfVlNPQ0tFVFM9bQpDT05GSUdfVklSVElPX1ZTT0NLRVRTPW0KQ09ORklHX0NHUk9VUF9ORVRfUFJJTz15CkNPTkZJR19CUEZfSklUPXkKQ09ORklHX0hBTVJBRElPPXkKQ09ORklHX0NGRzgwMjExPXkKQ09ORklHX01BQzgwMjExPXkKQ09ORklHX01BQzgwMjExX0xFRFM9eQpDT05GSUdfUkZLSUxMPXkKQ09ORklHX05FVF85UD1tCkNPTkZJR19ORVRfOVBfVklSVElPPW0KQ09ORklHX0NFUEhfTElCPXkKQ09ORklHX1VFVkVOVF9IRUxQRVJfUEFUSD0iL3NiaW4vaG90cGx1ZyIKQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0RFQlVHX0RFVlJFUz15CkNPTkZJR19DT05ORUNUT1I9eQpDT05GSUdfQkxLX0RFVl9MT09QPXkKQ09ORklHX0JMS19ERVZfTkJEPW0KQ09ORklHX1ZJUlRJT19CTEs9eQpDT05GSUdfQkxLX0RFVl9SQkQ9bQpDT05GSUdfVk1XQVJFX0JBTExPT049bQpDT05GSUdfVk1XQVJFX1ZNQ0k9bQpDT05GSUdfQkxLX0RFVl9TRD15CkNPTkZJR19CTEtfREVWX1NSPXkKQ09ORklHX0NIUl9ERVZfU0c9eQpDT05GSUdfU0NTSV9DT05TVEFOVFM9eQpDT05GSUdfU0NTSV9TUElfQVRUUlM9eQpDT05GSUdfU0NTSV9GQ19BVFRSUz1tCkNPTkZJR19TQ1NJX0lTQ1NJX0FUVFJTPW0KQ09ORklHX1NDU0lfU0FTX0xJQlNBUz1tCkNPTkZJR19TQ1NJX1NBU19BVEE9eQpDT05GSUdfU0NTSV9TUlBfQVRUUlM9bQpDT05GSUdfTUVHQVJBSURfTkVXR0VOPXkKQ09ORklHX01FR0FSQUlEX01NPW0KQ09ORklHX1ZNV0FSRV9QVlNDU0k9eQpDT05GSUdfQVRBPXkKQ09ORklHX1NBVEFfQUhDST15CkNPTkZJR19BVEFfUElJWD15CkNPTkZJR19QQVRBX0FNRD15CkNPTkZJR19QQVRBX09MRFBJSVg9eQpDT05GSUdfUEFUQV9TQ0g9eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD15CkNPTkZJR19CTEtfREVWX0RNPXkKQ09ORklHX0RNX0NSWVBUPXkKQ09ORklHX0RNX1NOQVBTSE9UPXkKQ09ORklHX0RNX1RISU5fUFJPVklTSU9OSU5HPXkKQ09ORklHX0RNX01JUlJPUj15CkNPTkZJR19ETV9aRVJPPXkKQ09ORklHX0ZVU0lPTj15CkNPTkZJR19GVVNJT05fU1BJPW0KQ09ORklHX0ZVU0lPTl9GQz1tCkNPTkZJR19GVVNJT05fU0FTPW0KQ09ORklHX0ZVU0lPTl9DVEw9bQpDT05GSUdfRlVTSU9OX0xPR0dJTkc9eQpDT05GSUdfTUFDSU5UT1NIX0RSSVZFUlM9eQpDT05GSUdfTUFDX0VNVU1PVVNFQlROPXkKQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfRFVNTVk9bQpDT05GSUdfSUZCPW0KQ09ORklHX01BQ1ZMQU49eQpDT05GSUdfTUFDVlRBUD15CkNPTkZJR19JUFZMQU49bQpDT05GSUdfVlhMQU49eQpDT05GSUdfTkVUQ09OU09MRT15CkNPTkZJR19UVU49eQpDT05GSUdfVkVUSD15CkNPTkZJR19WSVJUSU9fTkVUPXkKQ09ORklHX05FVF9WUkY9bQpDT05GSUdfQU1EODExMV9FVEg9bQpDT05GSUdfUENORVQzMj1tCkNPTkZJR19QQ01DSUFfTk1DTEFOPW0KQ09ORklHX1RJR09OMz15CkNPTkZJR19ORVRfVFVMSVA9eQpDT05GSUdfRTEwMD15CkNPTkZJR19FMTAwMD15CkNPTkZJR19FMTAwMEU9eQpDT05GSUdfU0tZMj15CkNPTkZJR19GT1JDRURFVEg9eQpDT05GSUdfODEzOUNQPXkKQ09ORklHXzgxMzlUT089eQpDT05GSUdfRkREST15CkNPTkZJR19WTVhORVQzPXkKQ09ORklHX0hZUEVSVl9ORVQ9bQpDT05GSUdfSU5QVVRfUE9MTERFVj15CkNPTkZJR19JTlBVVF9FVkRFVj15CkNPTkZJR19JTlBVVF9KT1lTVElDSz15CkNPTkZJR19JTlBVVF9UQUJMRVQ9eQpDT05GSUdfSU5QVVRfVE9VQ0hTQ1JFRU49eQpDT05GSUdfSU5QVVRfTUlTQz15CiMgQ09ORklHX0xFR0FDWV9QVFlTIGlzIG5vdCBzZXQKQ09ORklHX1NFUklBTF9OT05TVEFOREFSRD15CkNPTkZJR19TRVJJQUxfODI1MD15CkNPTkZJR19TRVJJQUxfODI1MF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF84MjUwX05SX1VBUlRTPTMyCkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9NQU5ZX1BPUlRTPXkKQ09ORklHX1NFUklBTF84MjUwX1NIQVJFX0lSUT15CkNPTkZJR19TRVJJQUxfODI1MF9ERVRFQ1RfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX1JTQT15CkNPTkZJR19IV19SQU5ET009eQojIENPTkZJR19IV19SQU5ET01fSU5URUwgaXMgbm90IHNldAojIENPTkZJR19IV19SQU5ET01fQU1EIGlzIG5vdCBzZXQKQ09ORklHX0hXX1JBTkRPTV9WSVJUSU89eQpDT05GSUdfTlZSQU09eQpDT05GSUdfSFBFVD15CiMgQ09ORklHX0hQRVRfTU1BUCBpcyBub3Qgc2V0CkNPTkZJR19JMkNfSTgwMT15CkNPTkZJR19XQVRDSERPRz15CkNPTkZJR19BR1A9eQpDT05GSUdfQUdQX0FNRDY0PXkKQ09ORklHX0FHUF9JTlRFTD15CkNPTkZJR19EUk09eQpDT05GSUdfRFJNX0k5MTU9eQpDT05GSUdfRFJNX1ZJUlRJT19HUFU9eQpDT05GSUdfRkJfTU9ERV9IRUxQRVJTPXkKQ09ORklHX0ZCX1RJTEVCTElUVElORz15CkNPTkZJR19GQl9FRkk9eQojIENPTkZJR19MQ0RfQ0xBU1NfREVWSUNFIGlzIG5vdCBzZXQKQ09ORklHX0xPR089eQojIENPTkZJR19MT0dPX0xJTlVYX01PTk8gaXMgbm90IHNldAojIENPTkZJR19MT0dPX0xJTlVYX1ZHQTE2IGlzIG5vdCBzZXQKQ09ORklHX1NPVU5EPXkKQ09ORklHX1NORD15CkNPTkZJR19TTkRfSFJUSU1FUj15CkNPTkZJR19TTkRfU0VRVUVOQ0VSPXkKQ09ORklHX1NORF9TRVFfRFVNTVk9eQpDT05GSUdfU05EX0hEQV9JTlRFTD15CkNPTkZJR19TTkRfSERBX0hXREVQPXkKQ09ORklHX0hJRFJBVz15CkNPTkZJR19ISURfR1lSQVRJT049eQpDT05GSUdfTE9HSVRFQ0hfRkY9eQpDT05GSUdfSElEX05UUklHPXkKQ09ORklHX0hJRF9QQU5USEVSTE9SRD15CkNPTkZJR19QQU5USEVSTE9SRF9GRj15CkNPTkZJR19ISURfUEVUQUxZTlg9eQpDT05GSUdfSElEX1NBTVNVTkc9eQpDT05GSUdfSElEX1NPTlk9eQpDT05GSUdfSElEX1NVTlBMVVM9eQpDT05GSUdfSElEX0hZUEVSVl9NT1VTRT1tCkNPTkZJR19ISURfVE9QU0VFRD15CkNPTkZJR19ISURfUElEPXkKQ09ORklHX1VTQl9ISURERVY9eQpDT05GSUdfVVNCPXkKQ09ORklHX1VTQl9BTk5PVU5DRV9ORVdfREVWSUNFUz15CkNPTkZJR19VU0JfTU9OPXkKQ09ORklHX1VTQl9FSENJX0hDRD15CkNPTkZJR19VU0JfT0hDSV9IQ0Q9eQpDT05GSUdfVVNCX1VIQ0lfSENEPXkKQ09ORklHX1VTQl9QUklOVEVSPXkKQ09ORklHX1VTQl9TVE9SQUdFPXkKQ09ORklHX0VEQUM9eQpDT05GSUdfUlRDX0NMQVNTPXkKIyBDT05GSUdfUlRDX0hDVE9TWVMgaXMgbm90IHNldApDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19WSVJUX0RSSVZFUlM9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19IWVBFUlY9bQpDT05GSUdfSFlQRVJWX1VUSUxTPW0KQ09ORklHX0hZUEVSVl9CQUxMT09OPW0KQ09ORklHX0VFRVBDX0xBUFRPUD15CkNPTkZJR19BTURfSU9NTVU9eQpDT05GSUdfSU5URUxfSU9NTVU9eQojIENPTkZJR19JTlRFTF9JT01NVV9ERUZBVUxUX09OIGlzIG5vdCBzZXQKQ09ORklHX0VYVDRfRlM9eQpDT05GSUdfRVhUNF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfRVhUNF9GU19TRUNVUklUWT15CkNPTkZJR19YRlNfRlM9eQpDT05GSUdfWEZTX1FVT1RBPXkKQ09ORklHX1hGU19QT1NJWF9BQ0w9eQpDT05GSUdfQlRSRlNfRlM9bQpDT05GSUdfQlRSRlNfRlNfUE9TSVhfQUNMPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX1FVT1RBX05FVExJTktfSU5URVJGQUNFPXkKIyBDT05GSUdfUFJJTlRfUVVPVEFfV0FSTklORyBpcyBub3Qgc2V0CkNPTkZJR19RRk1UX1YyPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz15CkNPTkZJR19PVkVSTEFZX0ZTPW0KQ09ORklHX0lTTzk2NjBfRlM9eQpDT05GSUdfSk9MSUVUPXkKQ09ORklHX1pJU09GUz15CkNPTkZJR19NU0RPU19GUz15CkNPTkZJR19WRkFUX0ZTPXkKQ09ORklHX1BST0NfS0NPUkU9eQpDT05GSUdfVE1QRlNfUE9TSVhfQUNMPXkKQ09ORklHX0hVR0VUTEJGUz15CkNPTkZJR19ORlNfRlM9eQpDT05GSUdfTkZTX1Y0PXkKQ09ORklHX05GU19TV0FQPXkKQ09ORklHX05GU19WNF8xPXkKQ09ORklHX05GU19WNF8yPXkKQ09ORklHX05GU0Q9eQpDT05GSUdfTkZTRF9WND15CkNPTkZJR19DRVBIX0ZTPW0KQ09ORklHX0NFUEhfRlNfUE9TSVhfQUNMPXkKQ09ORklHX0NJRlM9eQpDT05GSUdfOVBfRlM9bQpDT05GSUdfOVBfRlNfUE9TSVhfQUNMPXkKQ09ORklHXzlQX0ZTX1NFQ1VSSVRZPXkKQ09ORklHX05MU19ERUZBVUxUPSJ1dGY4IgpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfQVNDSUk9eQpDT05GSUdfTkxTX0lTTzg4NTlfMT15CkNPTkZJR19OTFNfVVRGOD15CkNPTkZJR19TRUNVUklUWT15CkNPTkZJR19TRUNVUklUWV9ORVRXT1JLPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVg9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9CT09UUEFSQU09eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9ESVNBQkxFPXkKQ09ORklHX0NSWVBUT19YVFM9eQpDT05GSUdfQ1JZUFRPX0FFU19OSV9JTlRFTD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfSEFTSD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfU0tDSVBIRVI9eQpDT05GSUdfUFJJTlRLX1RJTUU9eQojIENPTkZJR19VTlVTRURfU1lNQk9MUyBpcyBub3Qgc2V0CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19LRVJORUw9eQpDT05GSUdfREVCVUdfU1RBQ0tfVVNBR0U9eQpDT05GSUdfREVCVUdfU1RBQ0tPVkVSRkxPVz15CiMgQ09ORklHX1NDSEVEX0RFQlVHIGlzIG5vdCBzZXQKQ09ORklHX1NDSEVEU1RBVFM9eQpDT05GSUdfRlVOQ1RJT05fVFJBQ0VSPXkKQ09ORklHX0ZUUkFDRV9TWVNDQUxMUz15CkNPTkZJR19CTEtfREVWX0lPX1RSQUNFPXkKQ09ORklHX1BST1ZJREVfT0hDSTEzOTRfRE1BX0lOSVQ9eQpDT05GSUdfRUFSTFlfUFJJTlRLX0RCR1A9eQpDT05GSUdfREVCVUdfQk9PVF9QQVJBTVM9eQpDT05GSUdfT1BUSU1JWkVfSU5MSU5JTkc9eQo=" + }, + { + "kernelversion": "1_1.26.0", + "kernelrelease": "5.10.57", + "target": "minikube", + "kernelconfigdata": "Q09ORklHX0ZBTk9USUZZPXkKQ09ORklHX0tQUk9CRV9FVkVOVFM9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19ERUJVR19JTkZPX0JURj15CkNPTkZJR19JS0hFQURFUlM9eQpDT05GSUdfQlBGX0xTTT15CkNPTkZJR19WQk9YR1VFU1Q9bQpDT05GSUdfVkJPWFNGX0ZTPW0KQ09ORklHX0RSTV9WQk9YVklERU89bQpDT05GSUdfQlJJREdFX05FVEZJTFRFUj15CkNPTkZJR19QQ0k9eQpDT05GSUdfVE1QRlM9eQojIENPTkZJR19MT0NBTFZFUlNJT05fQVVUTyBpcyBub3Qgc2V0CkNPTkZJR19LRVJORUxfTFo0PXkKQ09ORklHX1NZU1ZJUEM9eQpDT05GSUdfUE9TSVhfTVFVRVVFPXkKQ09ORklHX0FVRElUPXkKQ09ORklHX05PX0haPXkKQ09ORklHX0hJR0hfUkVTX1RJTUVSUz15CkNPTkZJR19QUkVFTVBUX1ZPTFVOVEFSWT15CkNPTkZJR19CU0RfUFJPQ0VTU19BQ0NUPXkKQ09ORklHX1RBU0tfWEFDQ1Q9eQpDT05GSUdfVEFTS19JT19BQ0NPVU5USU5HPXkKQ09ORklHX0lLQ09ORklHPXkKQ09ORklHX0lLQ09ORklHX1BST0M9eQpDT05GSUdfTE9HX0JVRl9TSElGVD0xOApDT05GSUdfQ0dST1VQUz15CkNPTkZJR19NRU1DRz15CkNPTkZJR19NRU1DR19TV0FQPXkKQ09ORklHX0JMS19DR1JPVVA9eQpDT05GSUdfQ0dST1VQX1NDSEVEPXkKQ09ORklHX0NGU19CQU5EV0lEVEg9eQpDT05GSUdfUlRfR1JPVVBfU0NIRUQ9eQpDT05GSUdfQ0dST1VQX1BJRFM9eQpDT05GSUdfQ0dST1VQX0ZSRUVaRVI9eQpDT05GSUdfQ0dST1VQX0hVR0VUTEI9eQpDT05GSUdfQ1BVU0VUUz15CkNPTkZJR19DR1JPVVBfREVWSUNFPXkKQ09ORklHX0NHUk9VUF9DUFVBQ0NUPXkKQ09ORklHX0NHUk9VUF9QRVJGPXkKQ09ORklHX0NHUk9VUF9CUEY9eQpDT05GSUdfVVNFUl9OUz15CkNPTkZJR19CTEtfREVWX0lOSVRSRD15CkNPTkZJR19CUEZfU1lTQ0FMTD15CiMgQ09ORklHX0NPTVBBVF9CUksgaXMgbm90IHNldApDT05GSUdfUFJPRklMSU5HPXkKQ09ORklHX1NNUD15CkNPTkZJR19IWVBFUlZJU09SX0dVRVNUPXkKQ09ORklHX1BBUkFWSVJUX1NQSU5MT0NLUz15CkNPTkZJR19LVk1fREVCVUdfRlM9eQpDT05GSUdfQ0FMR0FSWV9JT01NVT15CkNPTkZJR19YODZfUkVST1VURV9GT1JfQlJPS0VOX0JPT1RfSVJRUz15CkNPTkZJR19NSUNST0NPREVfQU1EPXkKQ09ORklHX1g4Nl9NU1I9eQpDT05GSUdfWDg2X0NQVUlEPXkKQ09ORklHX05VTUE9eQpDT05GSUdfWDg2X0NIRUNLX0JJT1NfQ09SUlVQVElPTj15CiMgQ09ORklHX01UUlJfU0FOSVRJWkVSIGlzIG5vdCBzZXQKQ09ORklHX0VGST15CkNPTkZJR19IWl8xMDAwPXkKQ09ORklHX0tFWEVDPXkKQ09ORklHX0NSQVNIX0RVTVA9eQpDT05GSUdfSElCRVJOQVRJT049eQpDT05GSUdfUE1fREVCVUc9eQpDT05GSUdfUE1fVFJBQ0VfUlRDPXkKQ09ORklHX0FDUElfRE9DSz15CkNPTkZJR19DUFVfRlJFUV9ERUZBVUxUX0dPVl9VU0VSU1BBQ0U9eQpDT05GSUdfQ1BVX0ZSRVFfR09WX1BFUkZPUk1BTkNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9PTkRFTUFORD15CkNPTkZJR19YODZfQUNQSV9DUFVGUkVRPXkKQ09ORklHX1BDSUVQT1JUQlVTPXkKQ09ORklHX0hPVFBMVUdfUENJPXkKQ09ORklHX1BDQ0FSRD15CkNPTkZJR19ZRU5UQT15CkNPTkZJR19JQTMyX0VNVUxBVElPTj15CkNPTkZJR19FRklfVkFSUz15CkNPTkZJR19LVk09bQpDT05GSUdfS1ZNX0lOVEVMPW0KQ09ORklHX0tWTV9BTUQ9bQpDT05GSUdfVkhPU1RfTkVUPW0KQ09ORklHX1ZIT1NUX1ZTT0NLPW0KQ09ORklHX0tQUk9CRVM9eQpDT05GSUdfSlVNUF9MQUJFTD15CkNPTkZJR19NT0RVTEVTPXkKQ09ORklHX01PRFVMRV9VTkxPQUQ9eQpDT05GSUdfTU9EVUxFX0ZPUkNFX1VOTE9BRD15CkNPTkZJR19NT0RWRVJTSU9OUz15CkNPTkZJR19QQVJUSVRJT05fQURWQU5DRUQ9eQpDT05GSUdfT1NGX1BBUlRJVElPTj15CkNPTkZJR19BTUlHQV9QQVJUSVRJT049eQpDT05GSUdfTUFDX1BBUlRJVElPTj15CkNPTkZJR19CU0RfRElTS0xBQkVMPXkKQ09ORklHX01JTklYX1NVQlBBUlRJVElPTj15CkNPTkZJR19TT0xBUklTX1g4Nl9QQVJUSVRJT049eQpDT05GSUdfVU5JWFdBUkVfRElTS0xBQkVMPXkKQ09ORklHX1NHSV9QQVJUSVRJT049eQpDT05GSUdfU1VOX1BBUlRJVElPTj15CkNPTkZJR19LQVJNQV9QQVJUSVRJT049eQpDT05GSUdfQklORk1UX01JU0M9eQpDT05GSUdfVFJBTlNQQVJFTlRfSFVHRVBBR0U9eQpDT05GSUdfVFJBTlNQQVJFTlRfSFVHRVBBR0VfTUFEVklTRT15CkNPTkZJR19ORVQ9eQpDT05GSUdfUEFDS0VUPXkKQ09ORklHX1VOSVg9eQpDT05GSUdfWEZSTV9VU0VSPXkKQ09ORklHX0lORVQ9eQpDT05GSUdfSVBfTVVMVElDQVNUPXkKQ09ORklHX0lQX0FEVkFOQ0VEX1JPVVRFUj15CkNPTkZJR19JUF9NVUxUSVBMRV9UQUJMRVM9eQpDT05GSUdfSVBfUk9VVEVfTVVMVElQQVRIPXkKQ09ORklHX0lQX1JPVVRFX1ZFUkJPU0U9eQpDT05GSUdfSVBfUE5QPXkKQ09ORklHX0lQX1BOUF9ESENQPXkKQ09ORklHX0lQX1BOUF9CT09UUD15CkNPTkZJR19JUF9QTlBfUkFSUD15CkNPTkZJR19ORVRfSVBJUD1tCkNPTkZJR19JUF9NUk9VVEU9eQpDT05GSUdfSVBfUElNU01fVjE9eQpDT05GSUdfSVBfUElNU01fVjI9eQpDT05GSUdfU1lOX0NPT0tJRVM9eQojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9UUkFOU1BPUlQgaXMgbm90IHNldAojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9UVU5ORUwgaXMgbm90IHNldAojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9CRUVUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9ESUFHIGlzIG5vdCBzZXQKQ09ORklHX1RDUF9DT05HX0FEVkFOQ0VEPXkKIyBDT05GSUdfVENQX0NPTkdfQklDIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfV0VTVFdPT0QgaXMgbm90IHNldAojIENPTkZJR19UQ1BfQ09OR19IVENQIGlzIG5vdCBzZXQKQ09ORklHX1RDUF9NRDVTSUc9eQpDT05GSUdfSU5FVDZfQUg9eQpDT05GSUdfSU5FVDZfRVNQPXkKQ09ORklHX0lQVjZfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX05FVExBQkVMPXkKQ09ORklHX05FVEZJTFRFUj15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19BQ0NUPXkKQ09ORklHX05FVEZJTFRFUl9ORVRMSU5LX1FVRVVFPXkKQ09ORklHX05GX0NPTk5UUkFDSz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfWk9ORVM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX0VWRU5UUz15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRU9VVD15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRVNUQU1QPXkKQ09ORklHX05GX0NPTk5UUkFDS19GVFA9bQpDT05GSUdfTkZfQ09OTlRSQUNLX0lSQz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0FORT1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0lQPW0KQ09ORklHX05GX0NPTk5UUkFDS19URlRQPW0KQ09ORklHX05GX0NUX05FVExJTks9bQpDT05GSUdfTkVURklMVEVSX1hUX1NFVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NIRUNLU1VNPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ0xBU1NJRlk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DT05OTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0hNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSURMRVRJTUVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTEVEPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTkZRVUVVRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05PVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9URUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9UUFJPWFk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9TRUNNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQT1BUU1RSSVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0FERFJUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9CUEY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ0xVU1RFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09NTUVOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkJZVEVTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTEFCRUw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5UUkFDSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ1BVPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9EQ0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ERVZHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRFNDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRUNOPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9FU1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hBU0hMSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEVMUEVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBDT01QPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFJBTkdFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFZTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MMlRQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MRU5HVEg9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0xJTUlUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01VTFRJUE9SVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTkZBQ0NUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PU0Y9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX09XTkVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QT0xJQ1k9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BIWVNERVY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BLVFRZUEU9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1FVT1RBPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SQVRFRVNUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SRUFMTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVDRU5UPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TQ1RQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TT0NLRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUQVRFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFUSVNUSUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUUklORz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9USU1FPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9VMzI9bQpDT05GSUdfSVBfU0VUPXkKQ09ORklHX0lQX1NFVF9CSVRNQVBfSVA9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9JUE1BQz1tCkNPTkZJR19JUF9TRVRfQklUTUFQX1BPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBNQVJLPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlRJUD1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0hBU0hfTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVFBPUlRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVE5FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVElGQUNFPW0KQ09ORklHX0lQX1NFVF9MSVNUX1NFVD1tCkNPTkZJR19JUF9WUz1tCkNPTkZJR19JUF9WU19JUFY2PXkKQ09ORklHX0lQX1ZTX0RFQlVHPXkKQ09ORklHX0lQX1ZTX1BST1RPX1RDUD15CkNPTkZJR19JUF9WU19QUk9UT19VRFA9eQpDT05GSUdfSVBfVlNfUFJPVE9fRVNQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0FIPXkKQ09ORklHX0lQX1ZTX1BST1RPX1NDVFA9eQpDT05GSUdfSVBfVlNfUlI9bQpDT05GSUdfSVBfVlNfV1JSPW0KQ09ORklHX0lQX1ZTX0xDPW0KQ09ORklHX0lQX1ZTX1dMQz1tCkNPTkZJR19JUF9WU19GTz1tCkNPTkZJR19JUF9WU19PVkY9bQpDT05GSUdfSVBfVlNfTEJMQz1tCkNPTkZJR19JUF9WU19MQkxDUj1tCkNPTkZJR19JUF9WU19ESD1tCkNPTkZJR19JUF9WU19TSD1tCkNPTkZJR19JUF9WU19TRUQ9bQpDT05GSUdfSVBfVlNfTlE9bQpDT05GSUdfSVBfVlNfTkZDVD15CkNPTkZJR19ORl9MT0dfQVJQPW0KQ09ORklHX0lQX05GX0lQVEFCTEVTPXkKQ09ORklHX0lQX05GX01BVENIX1JQRklMVEVSPXkKQ09ORklHX0lQX05GX0ZJTFRFUj15CkNPTkZJR19JUF9ORl9UQVJHRVRfUkVKRUNUPXkKQ09ORklHX0lQX05GX05BVD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTUFTUVVFUkFERT1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTkVUTUFQPW0KQ09ORklHX0lQX05GX1RBUkdFVF9SRURJUkVDVD1tCkNPTkZJR19JUF9ORl9NQU5HTEU9eQpDT05GSUdfSVBfTkZfUkFXPW0KQ09ORklHX0lQNl9ORl9JUFRBQkxFUz15CkNPTkZJR19JUDZfTkZfTUFUQ0hfSVBWNkhFQURFUj15CkNPTkZJR19JUDZfTkZfRklMVEVSPXkKQ09ORklHX0lQNl9ORl9UQVJHRVRfUkVKRUNUPXkKQ09ORklHX0lQNl9ORl9NQU5HTEU9eQpDT05GSUdfQlJJREdFX05GX0VCVEFCTEVTPW0KQ09ORklHX0JSSURHRV9FQlRfQlJPVVRFPW0KQ09ORklHX0JSSURHRV9FQlRfVF9GSUxURVI9bQpDT05GSUdfQlJJREdFX0VCVF9UX05BVD1tCkNPTkZJR19CUklER0VfRUJUXzgwMl8zPW0KQ09ORklHX0JSSURHRV9FQlRfQU1PTkc9bQpDT05GSUdfQlJJREdFX0VCVF9BUlA9bQpDT05GSUdfQlJJREdFX0VCVF9JUD1tCkNPTkZJR19CUklER0VfRUJUX0lQNj1tCkNPTkZJR19CUklER0VfRUJUX0xJTUlUPW0KQ09ORklHX0JSSURHRV9FQlRfTUFSSz1tCkNPTkZJR19CUklER0VfRUJUX1BLVFRZUEU9bQpDT05GSUdfQlJJREdFX0VCVF9TVFA9bQpDT05GSUdfQlJJREdFX0VCVF9WTEFOPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQUkVQTFk9bQpDT05GSUdfQlJJREdFX0VCVF9ETkFUPW0KQ09ORklHX0JSSURHRV9FQlRfTUFSS19UPW0KQ09ORklHX0JSSURHRV9FQlRfUkVESVJFQ1Q9bQpDT05GSUdfQlJJREdFX0VCVF9TTkFUPW0KQ09ORklHX0JSSURHRV9FQlRfTE9HPW0KQ09ORklHX0JSSURHRV9FQlRfTkZMT0c9bQpDT05GSUdfSVBfU0NUUD15CkNPTkZJR19CUklER0U9bQpDT05GSUdfTkVUX1NDSEVEPXkKQ09ORklHX05FVF9TQ0hfSFRCPXkKQ09ORklHX05FVF9TQ0hfUFJJTz15CkNPTkZJR19ORVRfU0NIX1NGUT15CkNPTkZJR19ORVRfU0NIX1RCRj15CkNPTkZJR19ORVRfU0NIX05FVEVNPXkKQ09ORklHX05FVF9TQ0hfSU5HUkVTUz1tCkNPTkZJR19ORVRfQ0xTX0JBU0lDPW0KQ09ORklHX05FVF9DTFNfRlc9eQpDT05GSUdfTkVUX0NMU19VMzI9bQpDT05GSUdfTkVUX0NMU19DR1JPVVA9eQpDT05GSUdfTkVUX0NMU19CUEY9bQpDT05GSUdfTkVUX0NMU19NQVRDSEFMTD15CkNPTkZJR19ORVRfRU1BVENIPXkKQ09ORklHX05FVF9FTUFUQ0hfSVBTRVQ9eQpDT05GSUdfTkVUX0NMU19BQ1Q9eQpDT05GSUdfTkVUX0FDVF9NSVJSRUQ9bQpDT05GSUdfTkVUX0FDVF9CUEY9bQpDT05GSUdfTkVUX0FDVF9DT05OTUFSSz1tCkNPTkZJR19PUEVOVlNXSVRDSD1tCkNPTkZJR19WU09DS0VUUz1tCkNPTkZJR19WSVJUSU9fVlNPQ0tFVFM9bQpDT05GSUdfQ0dST1VQX05FVF9QUklPPXkKQ09ORklHX0JQRl9KSVQ9eQpDT05GSUdfSEFNUkFESU89eQpDT05GSUdfQ0ZHODAyMTE9eQpDT05GSUdfTUFDODAyMTE9eQpDT05GSUdfTUFDODAyMTFfTEVEUz15CkNPTkZJR19SRktJTEw9eQpDT05GSUdfTkVUXzlQPW0KQ09ORklHX05FVF85UF9WSVJUSU89bQpDT05GSUdfQ0VQSF9MSUI9eQpDT05GSUdfVUVWRU5UX0hFTFBFUl9QQVRIPSIvc2Jpbi9ob3RwbHVnIgpDT05GSUdfREVWVE1QRlM9eQpDT05GSUdfREVWVE1QRlNfTU9VTlQ9eQpDT05GSUdfREVCVUdfREVWUkVTPXkKQ09ORklHX0NPTk5FQ1RPUj15CkNPTkZJR19CTEtfREVWX0xPT1A9eQpDT05GSUdfQkxLX0RFVl9OQkQ9bQpDT05GSUdfVklSVElPX0JMSz15CkNPTkZJR19CTEtfREVWX1JCRD1tCkNPTkZJR19WTVdBUkVfQkFMTE9PTj1tCkNPTkZJR19WTVdBUkVfVk1DST1tCkNPTkZJR19CTEtfREVWX1NEPXkKQ09ORklHX0JMS19ERVZfU1I9eQpDT05GSUdfQ0hSX0RFVl9TRz15CkNPTkZJR19TQ1NJX0NPTlNUQU5UUz15CkNPTkZJR19TQ1NJX1NQSV9BVFRSUz15CkNPTkZJR19TQ1NJX0ZDX0FUVFJTPW0KQ09ORklHX1NDU0lfSVNDU0lfQVRUUlM9bQpDT05GSUdfU0NTSV9TQVNfTElCU0FTPW0KQ09ORklHX1NDU0lfU0FTX0FUQT15CkNPTkZJR19TQ1NJX1NSUF9BVFRSUz1tCkNPTkZJR19NRUdBUkFJRF9ORVdHRU49eQpDT05GSUdfTUVHQVJBSURfTU09bQpDT05GSUdfVk1XQVJFX1BWU0NTST15CkNPTkZJR19BVEE9eQpDT05GSUdfU0FUQV9BSENJPXkKQ09ORklHX0FUQV9QSUlYPXkKQ09ORklHX1BBVEFfQU1EPXkKQ09ORklHX1BBVEFfT0xEUElJWD15CkNPTkZJR19QQVRBX1NDSD15CkNPTkZJR19NRD15CkNPTkZJR19CTEtfREVWX01EPXkKQ09ORklHX0JMS19ERVZfRE09eQpDT05GSUdfRE1fQ1JZUFQ9eQpDT05GSUdfRE1fU05BUFNIT1Q9eQpDT05GSUdfRE1fVEhJTl9QUk9WSVNJT05JTkc9eQpDT05GSUdfRE1fTUlSUk9SPXkKQ09ORklHX0RNX1pFUk89eQpDT05GSUdfRlVTSU9OPXkKQ09ORklHX0ZVU0lPTl9TUEk9bQpDT05GSUdfRlVTSU9OX0ZDPW0KQ09ORklHX0ZVU0lPTl9TQVM9bQpDT05GSUdfRlVTSU9OX0NUTD1tCkNPTkZJR19GVVNJT05fTE9HR0lORz15CkNPTkZJR19NQUNJTlRPU0hfRFJJVkVSUz15CkNPTkZJR19NQUNfRU1VTU9VU0VCVE49eQpDT05GSUdfTkVUREVWSUNFUz15CkNPTkZJR19EVU1NWT1tCkNPTkZJR19JRkI9bQpDT05GSUdfTUFDVkxBTj15CkNPTkZJR19NQUNWVEFQPXkKQ09ORklHX0lQVkxBTj1tCkNPTkZJR19WWExBTj15CkNPTkZJR19ORVRDT05TT0xFPXkKQ09ORklHX1RVTj15CkNPTkZJR19WRVRIPXkKQ09ORklHX1ZJUlRJT19ORVQ9eQpDT05GSUdfTkVUX1ZSRj1tCkNPTkZJR19BTUQ4MTExX0VUSD1tCkNPTkZJR19QQ05FVDMyPW0KQ09ORklHX1BDTUNJQV9OTUNMQU49bQpDT05GSUdfVElHT04zPXkKQ09ORklHX05FVF9UVUxJUD15CkNPTkZJR19FMTAwPXkKQ09ORklHX0UxMDAwPXkKQ09ORklHX0UxMDAwRT15CkNPTkZJR19TS1kyPXkKQ09ORklHX0ZPUkNFREVUSD15CkNPTkZJR184MTM5Q1A9eQpDT05GSUdfODEzOVRPTz15CkNPTkZJR19GRERJPXkKQ09ORklHX1ZNWE5FVDM9eQpDT05GSUdfSFlQRVJWX05FVD1tCkNPTkZJR19JTlBVVF9QT0xMREVWPXkKQ09ORklHX0lOUFVUX0VWREVWPXkKQ09ORklHX0lOUFVUX0pPWVNUSUNLPXkKQ09ORklHX0lOUFVUX1RBQkxFVD15CkNPTkZJR19JTlBVVF9UT1VDSFNDUkVFTj15CkNPTkZJR19JTlBVVF9NSVNDPXkKIyBDT05GSUdfTEVHQUNZX1BUWVMgaXMgbm90IHNldApDT05GSUdfU0VSSUFMX05PTlNUQU5EQVJEPXkKQ09ORklHX1NFUklBTF84MjUwPXkKQ09ORklHX1NFUklBTF84MjUwX0NPTlNPTEU9eQpDT05GSUdfU0VSSUFMXzgyNTBfTlJfVUFSVFM9MzIKQ09ORklHX1NFUklBTF84MjUwX0VYVEVOREVEPXkKQ09ORklHX1NFUklBTF84MjUwX01BTllfUE9SVFM9eQpDT05GSUdfU0VSSUFMXzgyNTBfU0hBUkVfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX0RFVEVDVF9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfUlNBPXkKQ09ORklHX0hXX1JBTkRPTT15CiMgQ09ORklHX0hXX1JBTkRPTV9JTlRFTCBpcyBub3Qgc2V0CiMgQ09ORklHX0hXX1JBTkRPTV9BTUQgaXMgbm90IHNldApDT05GSUdfSFdfUkFORE9NX1ZJUlRJTz15CkNPTkZJR19OVlJBTT15CkNPTkZJR19IUEVUPXkKIyBDT05GSUdfSFBFVF9NTUFQIGlzIG5vdCBzZXQKQ09ORklHX0kyQ19JODAxPXkKQ09ORklHX1dBVENIRE9HPXkKQ09ORklHX0FHUD15CkNPTkZJR19BR1BfQU1ENjQ9eQpDT05GSUdfQUdQX0lOVEVMPXkKQ09ORklHX0RSTT15CkNPTkZJR19EUk1fSTkxNT15CkNPTkZJR19EUk1fVklSVElPX0dQVT15CkNPTkZJR19GQl9NT0RFX0hFTFBFUlM9eQpDT05GSUdfRkJfVElMRUJMSVRUSU5HPXkKQ09ORklHX0ZCX0VGST15CiMgQ09ORklHX0xDRF9DTEFTU19ERVZJQ0UgaXMgbm90IHNldApDT05GSUdfTE9HTz15CiMgQ09ORklHX0xPR09fTElOVVhfTU9OTyBpcyBub3Qgc2V0CiMgQ09ORklHX0xPR09fTElOVVhfVkdBMTYgaXMgbm90IHNldApDT05GSUdfU09VTkQ9eQpDT05GSUdfU05EPXkKQ09ORklHX1NORF9IUlRJTUVSPXkKQ09ORklHX1NORF9TRVFVRU5DRVI9eQpDT05GSUdfU05EX1NFUV9EVU1NWT15CkNPTkZJR19TTkRfSERBX0lOVEVMPXkKQ09ORklHX1NORF9IREFfSFdERVA9eQpDT05GSUdfSElEUkFXPXkKQ09ORklHX0hJRF9HWVJBVElPTj15CkNPTkZJR19MT0dJVEVDSF9GRj15CkNPTkZJR19ISURfTlRSSUc9eQpDT05GSUdfSElEX1BBTlRIRVJMT1JEPXkKQ09ORklHX1BBTlRIRVJMT1JEX0ZGPXkKQ09ORklHX0hJRF9QRVRBTFlOWD15CkNPTkZJR19ISURfU0FNU1VORz15CkNPTkZJR19ISURfU09OWT15CkNPTkZJR19ISURfU1VOUExVUz15CkNPTkZJR19ISURfSFlQRVJWX01PVVNFPW0KQ09ORklHX0hJRF9UT1BTRUVEPXkKQ09ORklHX0hJRF9QSUQ9eQpDT05GSUdfVVNCX0hJRERFVj15CkNPTkZJR19VU0I9eQpDT05GSUdfVVNCX0FOTk9VTkNFX05FV19ERVZJQ0VTPXkKQ09ORklHX1VTQl9NT049eQpDT05GSUdfVVNCX0VIQ0lfSENEPXkKQ09ORklHX1VTQl9PSENJX0hDRD15CkNPTkZJR19VU0JfVUhDSV9IQ0Q9eQpDT05GSUdfVVNCX1BSSU5URVI9eQpDT05GSUdfVVNCX1NUT1JBR0U9eQpDT05GSUdfRURBQz15CkNPTkZJR19SVENfQ0xBU1M9eQojIENPTkZJR19SVENfSENUT1NZUyBpcyBub3Qgc2V0CkNPTkZJR19ETUFERVZJQ0VTPXkKQ09ORklHX1ZJUlRfRFJJVkVSUz15CkNPTkZJR19WSVJUSU9fUENJPXkKQ09ORklHX0hZUEVSVj1tCkNPTkZJR19IWVBFUlZfVVRJTFM9bQpDT05GSUdfSFlQRVJWX0JBTExPT049bQpDT05GSUdfRUVFUENfTEFQVE9QPXkKQ09ORklHX0FNRF9JT01NVT15CkNPTkZJR19JTlRFTF9JT01NVT15CiMgQ09ORklHX0lOVEVMX0lPTU1VX0RFRkFVTFRfT04gaXMgbm90IHNldApDT05GSUdfRVhUNF9GUz15CkNPTkZJR19FWFQ0X0ZTX1BPU0lYX0FDTD15CkNPTkZJR19FWFQ0X0ZTX1NFQ1VSSVRZPXkKQ09ORklHX1hGU19GUz15CkNPTkZJR19YRlNfUVVPVEE9eQpDT05GSUdfWEZTX1BPU0lYX0FDTD15CkNPTkZJR19CVFJGU19GUz1tCkNPTkZJR19CVFJGU19GU19QT1NJWF9BQ0w9eQpDT05GSUdfUVVPVEE9eQpDT05GSUdfUVVPVEFfTkVUTElOS19JTlRFUkZBQ0U9eQojIENPTkZJR19QUklOVF9RVU9UQV9XQVJOSU5HIGlzIG5vdCBzZXQKQ09ORklHX1FGTVRfVjI9eQpDT05GSUdfQVVUT0ZTNF9GUz15CkNPTkZJR19GVVNFX0ZTPXkKQ09ORklHX09WRVJMQVlfRlM9bQpDT05GSUdfSVNPOTY2MF9GUz15CkNPTkZJR19KT0xJRVQ9eQpDT05GSUdfWklTT0ZTPXkKQ09ORklHX01TRE9TX0ZTPXkKQ09ORklHX1ZGQVRfRlM9eQpDT05GSUdfUFJPQ19LQ09SRT15CkNPTkZJR19UTVBGU19QT1NJWF9BQ0w9eQpDT05GSUdfSFVHRVRMQkZTPXkKQ09ORklHX05GU19GUz15CkNPTkZJR19ORlNfVjQ9eQpDT05GSUdfTkZTX1NXQVA9eQpDT05GSUdfTkZTX1Y0XzE9eQpDT05GSUdfTkZTX1Y0XzI9eQpDT05GSUdfTkZTRD15CkNPTkZJR19ORlNEX1Y0PXkKQ09ORklHX0NFUEhfRlM9bQpDT05GSUdfQ0VQSF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfQ0lGUz15CkNPTkZJR185UF9GUz1tCkNPTkZJR185UF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfOVBfRlNfU0VDVVJJVFk9eQpDT05GSUdfTkxTX0RFRkFVTFQ9InV0ZjgiCkNPTkZJR19OTFNfQ09ERVBBR0VfNDM3PXkKQ09ORklHX05MU19BU0NJST15CkNPTkZJR19OTFNfSVNPODg1OV8xPXkKQ09ORklHX05MU19VVEY4PXkKQ09ORklHX1NFQ1VSSVRZPXkKQ09ORklHX1NFQ1VSSVRZX05FVFdPUks9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWD15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYX0JPT1RQQVJBTT15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYX0RJU0FCTEU9eQpDT05GSUdfQ1JZUFRPX1hUUz15CkNPTkZJR19DUllQVE9fQUVTX05JX0lOVEVMPXkKQ09ORklHX0NSWVBUT19VU0VSX0FQSV9IQVNIPXkKQ09ORklHX0NSWVBUT19VU0VSX0FQSV9TS0NJUEhFUj15CkNPTkZJR19QUklOVEtfVElNRT15CiMgQ09ORklHX1VOVVNFRF9TWU1CT0xTIGlzIG5vdCBzZXQKQ09ORklHX01BR0lDX1NZU1JRPXkKQ09ORklHX0RFQlVHX0tFUk5FTD15CkNPTkZJR19ERUJVR19TVEFDS19VU0FHRT15CkNPTkZJR19ERUJVR19TVEFDS09WRVJGTE9XPXkKIyBDT05GSUdfU0NIRURfREVCVUcgaXMgbm90IHNldApDT05GSUdfU0NIRURTVEFUUz15CkNPTkZJR19GVU5DVElPTl9UUkFDRVI9eQpDT05GSUdfRlRSQUNFX1NZU0NBTExTPXkKQ09ORklHX0JMS19ERVZfSU9fVFJBQ0U9eQpDT05GSUdfUFJPVklERV9PSENJMTM5NF9ETUFfSU5JVD15CkNPTkZJR19FQVJMWV9QUklOVEtfREJHUD15CkNPTkZJR19ERUJVR19CT09UX1BBUkFNUz15CkNPTkZJR19PUFRJTUlaRV9JTkxJTklORz15CkNPTkZJR19GUkFNRUJVRkZFUl9DT05TT0xFPXkK" + }, + { + "kernelversion": "1_1.26.1", + "kernelrelease": "5.10.57", + "target": "minikube", + "kernelconfigdata": "Q09ORklHX0ZBTk9USUZZPXkKQ09ORklHX0tQUk9CRV9FVkVOVFM9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19ERUJVR19JTkZPX0JURj15CkNPTkZJR19JS0hFQURFUlM9eQpDT05GSUdfQlBGX0xTTT15CkNPTkZJR19WQk9YR1VFU1Q9bQpDT05GSUdfVkJPWFNGX0ZTPW0KQ09ORklHX0RSTV9WQk9YVklERU89bQpDT05GSUdfQlJJREdFX05FVEZJTFRFUj15CkNPTkZJR19QQ0k9eQpDT05GSUdfVE1QRlM9eQojIENPTkZJR19MT0NBTFZFUlNJT05fQVVUTyBpcyBub3Qgc2V0CkNPTkZJR19LRVJORUxfTFo0PXkKQ09ORklHX1NZU1ZJUEM9eQpDT05GSUdfUE9TSVhfTVFVRVVFPXkKQ09ORklHX0FVRElUPXkKQ09ORklHX05PX0haPXkKQ09ORklHX0hJR0hfUkVTX1RJTUVSUz15CkNPTkZJR19QUkVFTVBUX1ZPTFVOVEFSWT15CkNPTkZJR19CU0RfUFJPQ0VTU19BQ0NUPXkKQ09ORklHX1RBU0tfWEFDQ1Q9eQpDT05GSUdfVEFTS19JT19BQ0NPVU5USU5HPXkKQ09ORklHX0lLQ09ORklHPXkKQ09ORklHX0lLQ09ORklHX1BST0M9eQpDT05GSUdfTE9HX0JVRl9TSElGVD0xOApDT05GSUdfQ0dST1VQUz15CkNPTkZJR19NRU1DRz15CkNPTkZJR19NRU1DR19TV0FQPXkKQ09ORklHX0JMS19DR1JPVVA9eQpDT05GSUdfQ0dST1VQX1NDSEVEPXkKQ09ORklHX0NGU19CQU5EV0lEVEg9eQpDT05GSUdfUlRfR1JPVVBfU0NIRUQ9eQpDT05GSUdfQ0dST1VQX1BJRFM9eQpDT05GSUdfQ0dST1VQX0ZSRUVaRVI9eQpDT05GSUdfQ0dST1VQX0hVR0VUTEI9eQpDT05GSUdfQ1BVU0VUUz15CkNPTkZJR19DR1JPVVBfREVWSUNFPXkKQ09ORklHX0NHUk9VUF9DUFVBQ0NUPXkKQ09ORklHX0NHUk9VUF9QRVJGPXkKQ09ORklHX0NHUk9VUF9CUEY9eQpDT05GSUdfVVNFUl9OUz15CkNPTkZJR19CTEtfREVWX0lOSVRSRD15CkNPTkZJR19CUEZfU1lTQ0FMTD15CiMgQ09ORklHX0NPTVBBVF9CUksgaXMgbm90IHNldApDT05GSUdfUFJPRklMSU5HPXkKQ09ORklHX1NNUD15CkNPTkZJR19IWVBFUlZJU09SX0dVRVNUPXkKQ09ORklHX1BBUkFWSVJUX1NQSU5MT0NLUz15CkNPTkZJR19LVk1fREVCVUdfRlM9eQpDT05GSUdfQ0FMR0FSWV9JT01NVT15CkNPTkZJR19YODZfUkVST1VURV9GT1JfQlJPS0VOX0JPT1RfSVJRUz15CkNPTkZJR19NSUNST0NPREVfQU1EPXkKQ09ORklHX1g4Nl9NU1I9eQpDT05GSUdfWDg2X0NQVUlEPXkKQ09ORklHX05VTUE9eQpDT05GSUdfWDg2X0NIRUNLX0JJT1NfQ09SUlVQVElPTj15CiMgQ09ORklHX01UUlJfU0FOSVRJWkVSIGlzIG5vdCBzZXQKQ09ORklHX0VGST15CkNPTkZJR19IWl8xMDAwPXkKQ09ORklHX0tFWEVDPXkKQ09ORklHX0NSQVNIX0RVTVA9eQpDT05GSUdfSElCRVJOQVRJT049eQpDT05GSUdfUE1fREVCVUc9eQpDT05GSUdfUE1fVFJBQ0VfUlRDPXkKQ09ORklHX0FDUElfRE9DSz15CkNPTkZJR19DUFVfRlJFUV9ERUZBVUxUX0dPVl9VU0VSU1BBQ0U9eQpDT05GSUdfQ1BVX0ZSRVFfR09WX1BFUkZPUk1BTkNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9PTkRFTUFORD15CkNPTkZJR19YODZfQUNQSV9DUFVGUkVRPXkKQ09ORklHX1BDSUVQT1JUQlVTPXkKQ09ORklHX0hPVFBMVUdfUENJPXkKQ09ORklHX1BDQ0FSRD15CkNPTkZJR19ZRU5UQT15CkNPTkZJR19JQTMyX0VNVUxBVElPTj15CkNPTkZJR19FRklfVkFSUz15CkNPTkZJR19LVk09bQpDT05GSUdfS1ZNX0lOVEVMPW0KQ09ORklHX0tWTV9BTUQ9bQpDT05GSUdfVkhPU1RfTkVUPW0KQ09ORklHX1ZIT1NUX1ZTT0NLPW0KQ09ORklHX0tQUk9CRVM9eQpDT05GSUdfSlVNUF9MQUJFTD15CkNPTkZJR19NT0RVTEVTPXkKQ09ORklHX01PRFVMRV9VTkxPQUQ9eQpDT05GSUdfTU9EVUxFX0ZPUkNFX1VOTE9BRD15CkNPTkZJR19NT0RWRVJTSU9OUz15CkNPTkZJR19QQVJUSVRJT05fQURWQU5DRUQ9eQpDT05GSUdfT1NGX1BBUlRJVElPTj15CkNPTkZJR19BTUlHQV9QQVJUSVRJT049eQpDT05GSUdfTUFDX1BBUlRJVElPTj15CkNPTkZJR19CU0RfRElTS0xBQkVMPXkKQ09ORklHX01JTklYX1NVQlBBUlRJVElPTj15CkNPTkZJR19TT0xBUklTX1g4Nl9QQVJUSVRJT049eQpDT05GSUdfVU5JWFdBUkVfRElTS0xBQkVMPXkKQ09ORklHX1NHSV9QQVJUSVRJT049eQpDT05GSUdfU1VOX1BBUlRJVElPTj15CkNPTkZJR19LQVJNQV9QQVJUSVRJT049eQpDT05GSUdfQklORk1UX01JU0M9eQpDT05GSUdfVFJBTlNQQVJFTlRfSFVHRVBBR0U9eQpDT05GSUdfVFJBTlNQQVJFTlRfSFVHRVBBR0VfTUFEVklTRT15CkNPTkZJR19ORVQ9eQpDT05GSUdfUEFDS0VUPXkKQ09ORklHX1VOSVg9eQpDT05GSUdfWEZSTV9VU0VSPXkKQ09ORklHX0lORVQ9eQpDT05GSUdfSVBfTVVMVElDQVNUPXkKQ09ORklHX0lQX0FEVkFOQ0VEX1JPVVRFUj15CkNPTkZJR19JUF9NVUxUSVBMRV9UQUJMRVM9eQpDT05GSUdfSVBfUk9VVEVfTVVMVElQQVRIPXkKQ09ORklHX0lQX1JPVVRFX1ZFUkJPU0U9eQpDT05GSUdfSVBfUE5QPXkKQ09ORklHX0lQX1BOUF9ESENQPXkKQ09ORklHX0lQX1BOUF9CT09UUD15CkNPTkZJR19JUF9QTlBfUkFSUD15CkNPTkZJR19ORVRfSVBJUD1tCkNPTkZJR19JUF9NUk9VVEU9eQpDT05GSUdfSVBfUElNU01fVjE9eQpDT05GSUdfSVBfUElNU01fVjI9eQpDT05GSUdfU1lOX0NPT0tJRVM9eQojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9UUkFOU1BPUlQgaXMgbm90IHNldAojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9UVU5ORUwgaXMgbm90IHNldAojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9CRUVUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9ESUFHIGlzIG5vdCBzZXQKQ09ORklHX1RDUF9DT05HX0FEVkFOQ0VEPXkKIyBDT05GSUdfVENQX0NPTkdfQklDIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfV0VTVFdPT0QgaXMgbm90IHNldAojIENPTkZJR19UQ1BfQ09OR19IVENQIGlzIG5vdCBzZXQKQ09ORklHX1RDUF9NRDVTSUc9eQpDT05GSUdfSU5FVDZfQUg9eQpDT05GSUdfSU5FVDZfRVNQPXkKQ09ORklHX0lQVjZfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX05FVExBQkVMPXkKQ09ORklHX05FVEZJTFRFUj15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19BQ0NUPXkKQ09ORklHX05FVEZJTFRFUl9ORVRMSU5LX1FVRVVFPXkKQ09ORklHX05GX0NPTk5UUkFDSz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfWk9ORVM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX0VWRU5UUz15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRU9VVD15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRVNUQU1QPXkKQ09ORklHX05GX0NPTk5UUkFDS19GVFA9bQpDT05GSUdfTkZfQ09OTlRSQUNLX0lSQz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0FORT1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0lQPW0KQ09ORklHX05GX0NPTk5UUkFDS19URlRQPW0KQ09ORklHX05GX0NUX05FVExJTks9bQpDT05GSUdfTkVURklMVEVSX1hUX1NFVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NIRUNLU1VNPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ0xBU1NJRlk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DT05OTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0hNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSURMRVRJTUVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTEVEPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTkZRVUVVRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05PVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9URUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9UUFJPWFk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9TRUNNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQT1BUU1RSSVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0FERFJUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9CUEY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ0xVU1RFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09NTUVOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkJZVEVTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTEFCRUw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5UUkFDSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ1BVPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9EQ0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ERVZHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRFNDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRUNOPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9FU1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hBU0hMSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEVMUEVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBDT01QPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFJBTkdFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFZTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MMlRQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MRU5HVEg9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0xJTUlUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01VTFRJUE9SVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTkZBQ0NUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PU0Y9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX09XTkVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QT0xJQ1k9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BIWVNERVY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BLVFRZUEU9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1FVT1RBPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SQVRFRVNUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SRUFMTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVDRU5UPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TQ1RQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TT0NLRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUQVRFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFUSVNUSUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUUklORz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9USU1FPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9VMzI9bQpDT05GSUdfSVBfU0VUPXkKQ09ORklHX0lQX1NFVF9CSVRNQVBfSVA9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9JUE1BQz1tCkNPTkZJR19JUF9TRVRfQklUTUFQX1BPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBNQVJLPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlRJUD1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0hBU0hfTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVFBPUlRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVE5FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVElGQUNFPW0KQ09ORklHX0lQX1NFVF9MSVNUX1NFVD1tCkNPTkZJR19JUF9WUz1tCkNPTkZJR19JUF9WU19JUFY2PXkKQ09ORklHX0lQX1ZTX0RFQlVHPXkKQ09ORklHX0lQX1ZTX1BST1RPX1RDUD15CkNPTkZJR19JUF9WU19QUk9UT19VRFA9eQpDT05GSUdfSVBfVlNfUFJPVE9fRVNQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0FIPXkKQ09ORklHX0lQX1ZTX1BST1RPX1NDVFA9eQpDT05GSUdfSVBfVlNfUlI9bQpDT05GSUdfSVBfVlNfV1JSPW0KQ09ORklHX0lQX1ZTX0xDPW0KQ09ORklHX0lQX1ZTX1dMQz1tCkNPTkZJR19JUF9WU19GTz1tCkNPTkZJR19JUF9WU19PVkY9bQpDT05GSUdfSVBfVlNfTEJMQz1tCkNPTkZJR19JUF9WU19MQkxDUj1tCkNPTkZJR19JUF9WU19ESD1tCkNPTkZJR19JUF9WU19TSD1tCkNPTkZJR19JUF9WU19TRUQ9bQpDT05GSUdfSVBfVlNfTlE9bQpDT05GSUdfSVBfVlNfTkZDVD15CkNPTkZJR19ORl9MT0dfQVJQPW0KQ09ORklHX0lQX05GX0lQVEFCTEVTPXkKQ09ORklHX0lQX05GX01BVENIX1JQRklMVEVSPXkKQ09ORklHX0lQX05GX0ZJTFRFUj15CkNPTkZJR19JUF9ORl9UQVJHRVRfUkVKRUNUPXkKQ09ORklHX0lQX05GX05BVD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTUFTUVVFUkFERT1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTkVUTUFQPW0KQ09ORklHX0lQX05GX1RBUkdFVF9SRURJUkVDVD1tCkNPTkZJR19JUF9ORl9NQU5HTEU9eQpDT05GSUdfSVBfTkZfUkFXPW0KQ09ORklHX0lQNl9ORl9JUFRBQkxFUz15CkNPTkZJR19JUDZfTkZfTUFUQ0hfSVBWNkhFQURFUj15CkNPTkZJR19JUDZfTkZfRklMVEVSPXkKQ09ORklHX0lQNl9ORl9UQVJHRVRfUkVKRUNUPXkKQ09ORklHX0lQNl9ORl9NQU5HTEU9eQpDT05GSUdfQlJJREdFX05GX0VCVEFCTEVTPW0KQ09ORklHX0JSSURHRV9FQlRfQlJPVVRFPW0KQ09ORklHX0JSSURHRV9FQlRfVF9GSUxURVI9bQpDT05GSUdfQlJJREdFX0VCVF9UX05BVD1tCkNPTkZJR19CUklER0VfRUJUXzgwMl8zPW0KQ09ORklHX0JSSURHRV9FQlRfQU1PTkc9bQpDT05GSUdfQlJJREdFX0VCVF9BUlA9bQpDT05GSUdfQlJJREdFX0VCVF9JUD1tCkNPTkZJR19CUklER0VfRUJUX0lQNj1tCkNPTkZJR19CUklER0VfRUJUX0xJTUlUPW0KQ09ORklHX0JSSURHRV9FQlRfTUFSSz1tCkNPTkZJR19CUklER0VfRUJUX1BLVFRZUEU9bQpDT05GSUdfQlJJREdFX0VCVF9TVFA9bQpDT05GSUdfQlJJREdFX0VCVF9WTEFOPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQUkVQTFk9bQpDT05GSUdfQlJJREdFX0VCVF9ETkFUPW0KQ09ORklHX0JSSURHRV9FQlRfTUFSS19UPW0KQ09ORklHX0JSSURHRV9FQlRfUkVESVJFQ1Q9bQpDT05GSUdfQlJJREdFX0VCVF9TTkFUPW0KQ09ORklHX0JSSURHRV9FQlRfTE9HPW0KQ09ORklHX0JSSURHRV9FQlRfTkZMT0c9bQpDT05GSUdfSVBfU0NUUD15CkNPTkZJR19CUklER0U9bQpDT05GSUdfTkVUX1NDSEVEPXkKQ09ORklHX05FVF9TQ0hfSFRCPXkKQ09ORklHX05FVF9TQ0hfUFJJTz15CkNPTkZJR19ORVRfU0NIX1NGUT15CkNPTkZJR19ORVRfU0NIX1RCRj15CkNPTkZJR19ORVRfU0NIX05FVEVNPXkKQ09ORklHX05FVF9TQ0hfSU5HUkVTUz1tCkNPTkZJR19ORVRfQ0xTX0JBU0lDPW0KQ09ORklHX05FVF9DTFNfRlc9eQpDT05GSUdfTkVUX0NMU19VMzI9bQpDT05GSUdfTkVUX0NMU19DR1JPVVA9eQpDT05GSUdfTkVUX0NMU19CUEY9bQpDT05GSUdfTkVUX0NMU19NQVRDSEFMTD15CkNPTkZJR19ORVRfRU1BVENIPXkKQ09ORklHX05FVF9FTUFUQ0hfSVBTRVQ9eQpDT05GSUdfTkVUX0NMU19BQ1Q9eQpDT05GSUdfTkVUX0FDVF9NSVJSRUQ9bQpDT05GSUdfTkVUX0FDVF9CUEY9bQpDT05GSUdfTkVUX0FDVF9DT05OTUFSSz1tCkNPTkZJR19PUEVOVlNXSVRDSD1tCkNPTkZJR19WU09DS0VUUz1tCkNPTkZJR19WSVJUSU9fVlNPQ0tFVFM9bQpDT05GSUdfQ0dST1VQX05FVF9QUklPPXkKQ09ORklHX0JQRl9KSVQ9eQpDT05GSUdfSEFNUkFESU89eQpDT05GSUdfQ0ZHODAyMTE9eQpDT05GSUdfTUFDODAyMTE9eQpDT05GSUdfTUFDODAyMTFfTEVEUz15CkNPTkZJR19SRktJTEw9eQpDT05GSUdfTkVUXzlQPW0KQ09ORklHX05FVF85UF9WSVJUSU89bQpDT05GSUdfQ0VQSF9MSUI9eQpDT05GSUdfVUVWRU5UX0hFTFBFUl9QQVRIPSIvc2Jpbi9ob3RwbHVnIgpDT05GSUdfREVWVE1QRlM9eQpDT05GSUdfREVWVE1QRlNfTU9VTlQ9eQpDT05GSUdfREVCVUdfREVWUkVTPXkKQ09ORklHX0NPTk5FQ1RPUj15CkNPTkZJR19CTEtfREVWX0xPT1A9eQpDT05GSUdfQkxLX0RFVl9OQkQ9bQpDT05GSUdfVklSVElPX0JMSz15CkNPTkZJR19CTEtfREVWX1JCRD1tCkNPTkZJR19WTVdBUkVfQkFMTE9PTj1tCkNPTkZJR19WTVdBUkVfVk1DST1tCkNPTkZJR19CTEtfREVWX1NEPXkKQ09ORklHX0JMS19ERVZfU1I9eQpDT05GSUdfQ0hSX0RFVl9TRz15CkNPTkZJR19TQ1NJX0NPTlNUQU5UUz15CkNPTkZJR19TQ1NJX1NQSV9BVFRSUz15CkNPTkZJR19TQ1NJX0ZDX0FUVFJTPW0KQ09ORklHX1NDU0lfSVNDU0lfQVRUUlM9bQpDT05GSUdfU0NTSV9TQVNfTElCU0FTPW0KQ09ORklHX1NDU0lfU0FTX0FUQT15CkNPTkZJR19TQ1NJX1NSUF9BVFRSUz1tCkNPTkZJR19NRUdBUkFJRF9ORVdHRU49eQpDT05GSUdfTUVHQVJBSURfTU09bQpDT05GSUdfVk1XQVJFX1BWU0NTST15CkNPTkZJR19BVEE9eQpDT05GSUdfU0FUQV9BSENJPXkKQ09ORklHX0FUQV9QSUlYPXkKQ09ORklHX1BBVEFfQU1EPXkKQ09ORklHX1BBVEFfT0xEUElJWD15CkNPTkZJR19QQVRBX1NDSD15CkNPTkZJR19NRD15CkNPTkZJR19CTEtfREVWX01EPXkKQ09ORklHX0JMS19ERVZfRE09eQpDT05GSUdfRE1fQ1JZUFQ9eQpDT05GSUdfRE1fU05BUFNIT1Q9eQpDT05GSUdfRE1fVEhJTl9QUk9WSVNJT05JTkc9eQpDT05GSUdfRE1fTUlSUk9SPXkKQ09ORklHX0RNX1pFUk89eQpDT05GSUdfRlVTSU9OPXkKQ09ORklHX0ZVU0lPTl9TUEk9bQpDT05GSUdfRlVTSU9OX0ZDPW0KQ09ORklHX0ZVU0lPTl9TQVM9bQpDT05GSUdfRlVTSU9OX0NUTD1tCkNPTkZJR19GVVNJT05fTE9HR0lORz15CkNPTkZJR19NQUNJTlRPU0hfRFJJVkVSUz15CkNPTkZJR19NQUNfRU1VTU9VU0VCVE49eQpDT05GSUdfTkVUREVWSUNFUz15CkNPTkZJR19EVU1NWT1tCkNPTkZJR19JRkI9bQpDT05GSUdfTUFDVkxBTj15CkNPTkZJR19NQUNWVEFQPXkKQ09ORklHX0lQVkxBTj1tCkNPTkZJR19WWExBTj15CkNPTkZJR19ORVRDT05TT0xFPXkKQ09ORklHX1RVTj15CkNPTkZJR19WRVRIPXkKQ09ORklHX1ZJUlRJT19ORVQ9eQpDT05GSUdfTkVUX1ZSRj1tCkNPTkZJR19BTUQ4MTExX0VUSD1tCkNPTkZJR19QQ05FVDMyPW0KQ09ORklHX1BDTUNJQV9OTUNMQU49bQpDT05GSUdfVElHT04zPXkKQ09ORklHX05FVF9UVUxJUD15CkNPTkZJR19FMTAwPXkKQ09ORklHX0UxMDAwPXkKQ09ORklHX0UxMDAwRT15CkNPTkZJR19TS1kyPXkKQ09ORklHX0ZPUkNFREVUSD15CkNPTkZJR184MTM5Q1A9eQpDT05GSUdfODEzOVRPTz15CkNPTkZJR19GRERJPXkKQ09ORklHX1ZNWE5FVDM9eQpDT05GSUdfSFlQRVJWX05FVD1tCkNPTkZJR19JTlBVVF9QT0xMREVWPXkKQ09ORklHX0lOUFVUX0VWREVWPXkKQ09ORklHX0lOUFVUX0pPWVNUSUNLPXkKQ09ORklHX0lOUFVUX1RBQkxFVD15CkNPTkZJR19JTlBVVF9UT1VDSFNDUkVFTj15CkNPTkZJR19JTlBVVF9NSVNDPXkKIyBDT05GSUdfTEVHQUNZX1BUWVMgaXMgbm90IHNldApDT05GSUdfU0VSSUFMX05PTlNUQU5EQVJEPXkKQ09ORklHX1NFUklBTF84MjUwPXkKQ09ORklHX1NFUklBTF84MjUwX0NPTlNPTEU9eQpDT05GSUdfU0VSSUFMXzgyNTBfTlJfVUFSVFM9MzIKQ09ORklHX1NFUklBTF84MjUwX0VYVEVOREVEPXkKQ09ORklHX1NFUklBTF84MjUwX01BTllfUE9SVFM9eQpDT05GSUdfU0VSSUFMXzgyNTBfU0hBUkVfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX0RFVEVDVF9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfUlNBPXkKQ09ORklHX0hXX1JBTkRPTT15CiMgQ09ORklHX0hXX1JBTkRPTV9JTlRFTCBpcyBub3Qgc2V0CiMgQ09ORklHX0hXX1JBTkRPTV9BTUQgaXMgbm90IHNldApDT05GSUdfSFdfUkFORE9NX1ZJUlRJTz15CkNPTkZJR19OVlJBTT15CkNPTkZJR19IUEVUPXkKIyBDT05GSUdfSFBFVF9NTUFQIGlzIG5vdCBzZXQKQ09ORklHX0kyQ19JODAxPXkKQ09ORklHX1dBVENIRE9HPXkKQ09ORklHX0FHUD15CkNPTkZJR19BR1BfQU1ENjQ9eQpDT05GSUdfQUdQX0lOVEVMPXkKQ09ORklHX0RSTT15CkNPTkZJR19EUk1fSTkxNT15CkNPTkZJR19EUk1fVklSVElPX0dQVT15CkNPTkZJR19GQl9NT0RFX0hFTFBFUlM9eQpDT05GSUdfRkJfVElMRUJMSVRUSU5HPXkKQ09ORklHX0ZCX0VGST15CiMgQ09ORklHX0xDRF9DTEFTU19ERVZJQ0UgaXMgbm90IHNldApDT05GSUdfTE9HTz15CiMgQ09ORklHX0xPR09fTElOVVhfTU9OTyBpcyBub3Qgc2V0CiMgQ09ORklHX0xPR09fTElOVVhfVkdBMTYgaXMgbm90IHNldApDT05GSUdfU09VTkQ9eQpDT05GSUdfU05EPXkKQ09ORklHX1NORF9IUlRJTUVSPXkKQ09ORklHX1NORF9TRVFVRU5DRVI9eQpDT05GSUdfU05EX1NFUV9EVU1NWT15CkNPTkZJR19TTkRfSERBX0lOVEVMPXkKQ09ORklHX1NORF9IREFfSFdERVA9eQpDT05GSUdfSElEUkFXPXkKQ09ORklHX0hJRF9HWVJBVElPTj15CkNPTkZJR19MT0dJVEVDSF9GRj15CkNPTkZJR19ISURfTlRSSUc9eQpDT05GSUdfSElEX1BBTlRIRVJMT1JEPXkKQ09ORklHX1BBTlRIRVJMT1JEX0ZGPXkKQ09ORklHX0hJRF9QRVRBTFlOWD15CkNPTkZJR19ISURfU0FNU1VORz15CkNPTkZJR19ISURfU09OWT15CkNPTkZJR19ISURfU1VOUExVUz15CkNPTkZJR19ISURfSFlQRVJWX01PVVNFPW0KQ09ORklHX0hJRF9UT1BTRUVEPXkKQ09ORklHX0hJRF9QSUQ9eQpDT05GSUdfVVNCX0hJRERFVj15CkNPTkZJR19VU0I9eQpDT05GSUdfVVNCX0FOTk9VTkNFX05FV19ERVZJQ0VTPXkKQ09ORklHX1VTQl9NT049eQpDT05GSUdfVVNCX0VIQ0lfSENEPXkKQ09ORklHX1VTQl9PSENJX0hDRD15CkNPTkZJR19VU0JfVUhDSV9IQ0Q9eQpDT05GSUdfVVNCX1BSSU5URVI9eQpDT05GSUdfVVNCX1NUT1JBR0U9eQpDT05GSUdfRURBQz15CkNPTkZJR19SVENfQ0xBU1M9eQojIENPTkZJR19SVENfSENUT1NZUyBpcyBub3Qgc2V0CkNPTkZJR19ETUFERVZJQ0VTPXkKQ09ORklHX1ZJUlRfRFJJVkVSUz15CkNPTkZJR19WSVJUSU9fUENJPXkKQ09ORklHX0hZUEVSVj1tCkNPTkZJR19IWVBFUlZfVVRJTFM9bQpDT05GSUdfSFlQRVJWX0JBTExPT049bQpDT05GSUdfRUVFUENfTEFQVE9QPXkKQ09ORklHX0FNRF9JT01NVT15CkNPTkZJR19JTlRFTF9JT01NVT15CiMgQ09ORklHX0lOVEVMX0lPTU1VX0RFRkFVTFRfT04gaXMgbm90IHNldApDT05GSUdfRVhUNF9GUz15CkNPTkZJR19FWFQ0X0ZTX1BPU0lYX0FDTD15CkNPTkZJR19FWFQ0X0ZTX1NFQ1VSSVRZPXkKQ09ORklHX1hGU19GUz15CkNPTkZJR19YRlNfUVVPVEE9eQpDT05GSUdfWEZTX1BPU0lYX0FDTD15CkNPTkZJR19CVFJGU19GUz1tCkNPTkZJR19CVFJGU19GU19QT1NJWF9BQ0w9eQpDT05GSUdfUVVPVEE9eQpDT05GSUdfUVVPVEFfTkVUTElOS19JTlRFUkZBQ0U9eQojIENPTkZJR19QUklOVF9RVU9UQV9XQVJOSU5HIGlzIG5vdCBzZXQKQ09ORklHX1FGTVRfVjI9eQpDT05GSUdfQVVUT0ZTNF9GUz15CkNPTkZJR19GVVNFX0ZTPXkKQ09ORklHX09WRVJMQVlfRlM9bQpDT05GSUdfSVNPOTY2MF9GUz15CkNPTkZJR19KT0xJRVQ9eQpDT05GSUdfWklTT0ZTPXkKQ09ORklHX01TRE9TX0ZTPXkKQ09ORklHX1ZGQVRfRlM9eQpDT05GSUdfUFJPQ19LQ09SRT15CkNPTkZJR19UTVBGU19QT1NJWF9BQ0w9eQpDT05GSUdfSFVHRVRMQkZTPXkKQ09ORklHX05GU19GUz15CkNPTkZJR19ORlNfVjQ9eQpDT05GSUdfTkZTX1NXQVA9eQpDT05GSUdfTkZTX1Y0XzE9eQpDT05GSUdfTkZTX1Y0XzI9eQpDT05GSUdfTkZTRD15CkNPTkZJR19ORlNEX1Y0PXkKQ09ORklHX0NFUEhfRlM9bQpDT05GSUdfQ0VQSF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfQ0lGUz15CkNPTkZJR185UF9GUz1tCkNPTkZJR185UF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfOVBfRlNfU0VDVVJJVFk9eQpDT05GSUdfTkxTX0RFRkFVTFQ9InV0ZjgiCkNPTkZJR19OTFNfQ09ERVBBR0VfNDM3PXkKQ09ORklHX05MU19BU0NJST15CkNPTkZJR19OTFNfSVNPODg1OV8xPXkKQ09ORklHX05MU19VVEY4PXkKQ09ORklHX1NFQ1VSSVRZPXkKQ09ORklHX1NFQ1VSSVRZX05FVFdPUks9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWD15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYX0JPT1RQQVJBTT15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYX0RJU0FCTEU9eQpDT05GSUdfQ1JZUFRPX1hUUz15CkNPTkZJR19DUllQVE9fQUVTX05JX0lOVEVMPXkKQ09ORklHX0NSWVBUT19VU0VSX0FQSV9IQVNIPXkKQ09ORklHX0NSWVBUT19VU0VSX0FQSV9TS0NJUEhFUj15CkNPTkZJR19QUklOVEtfVElNRT15CiMgQ09ORklHX1VOVVNFRF9TWU1CT0xTIGlzIG5vdCBzZXQKQ09ORklHX01BR0lDX1NZU1JRPXkKQ09ORklHX0RFQlVHX0tFUk5FTD15CkNPTkZJR19ERUJVR19TVEFDS19VU0FHRT15CkNPTkZJR19ERUJVR19TVEFDS09WRVJGTE9XPXkKIyBDT05GSUdfU0NIRURfREVCVUcgaXMgbm90IHNldApDT05GSUdfU0NIRURTVEFUUz15CkNPTkZJR19GVU5DVElPTl9UUkFDRVI9eQpDT05GSUdfRlRSQUNFX1NZU0NBTExTPXkKQ09ORklHX0JMS19ERVZfSU9fVFJBQ0U9eQpDT05GSUdfUFJPVklERV9PSENJMTM5NF9ETUFfSU5JVD15CkNPTkZJR19FQVJMWV9QUklOVEtfREJHUD15CkNPTkZJR19ERUJVR19CT09UX1BBUkFNUz15CkNPTkZJR19PUFRJTUlaRV9JTkxJTklORz15CkNPTkZJR19GUkFNRUJVRkZFUl9DT05TT0xFPXkK" } ] } From e7a6d7b40abf29e279ceeb21342bc9d0311dbb77 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 31 Aug 2022 16:19:58 +0200 Subject: [PATCH 146/259] test: add whitespace to readme. Signed-off-by: Federico Di Pierro --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e46e3d3..e7064cb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Falcosecurity kernel-crawler - + It is a tool used to crawl supported kernels by multiple distros, and generate a [driverkit](https://github.com/falcosecurity/driverkit)-like config json. Output json can be found, for each supported architecture, under [kernels](/kernels) folder. @@ -41,4 +41,4 @@ python __init__.py crawl --distro=* --out_fmt=json * Crawl Redhat kernels (specific to the container supplied), with no-formatted output: ```commandline python __init__.py crawl --distro=Redhat --image=redhat/ubi8:registered -``` \ No newline at end of file +``` From a9bf5b48d3c8a4a71c28de889c73406cafc9a703 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 31 Aug 2022 16:28:03 +0200 Subject: [PATCH 147/259] chore(kernels, readme): updated readme and dropped kernels lists that are now pushed to the kernels branch. Signed-off-by: Federico Di Pierro --- README.md | 2 +- kernels/README.md | 1 - kernels/aarch64/README.md | 1 - kernels/aarch64/list.json | 16187 ------------- kernels/x86_64/README.md | 1 - kernels/x86_64/list.json | 45102 ------------------------------------ 6 files changed, 1 insertion(+), 61293 deletions(-) delete mode 100644 kernels/README.md delete mode 100644 kernels/aarch64/README.md delete mode 100644 kernels/aarch64/list.json delete mode 100644 kernels/x86_64/README.md delete mode 100644 kernels/x86_64/list.json diff --git a/README.md b/README.md index e7064cb..b540dd5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Falcosecurity kernel-crawler It is a tool used to crawl supported kernels by multiple distros, and generate a [driverkit](https://github.com/falcosecurity/driverkit)-like config json. -Output json can be found, for each supported architecture, under [kernels](/kernels) folder. +Output json can be found, for each supported architecture, under [kernels](https://github.com/falcosecurity/kernel-crawler/tree/kernels) branch and on gh pages: https://falcosecurity.github.io/kernel-crawler/. A weekly [prow job](https://github.com/falcosecurity/test-infra/blob/master/config/jobs/update-kernels/update-kernels.yaml) will open a PR on this repo to update the json. As soon as the PR is merged and the json updated, another [prow job](https://github.com/falcosecurity/test-infra/blob/master/config/jobs/update-dbg/update-dbg.yaml) will create a PR on [test-infra](https://github.com/falcosecurity/test-infra) to generate the new Driverkit configs from the updated json. diff --git a/kernels/README.md b/kernels/README.md deleted file mode 100644 index 2414bf4..0000000 --- a/kernels/README.md +++ /dev/null @@ -1 +0,0 @@ -Home of the crawled kernels for the supported distros. diff --git a/kernels/aarch64/README.md b/kernels/aarch64/README.md deleted file mode 100644 index 6b23176..0000000 --- a/kernels/aarch64/README.md +++ /dev/null @@ -1 +0,0 @@ -Home for aarch64 kernels list. diff --git a/kernels/aarch64/list.json b/kernels/aarch64/list.json deleted file mode 100644 index 177bdb2..0000000 --- a/kernels/aarch64/list.json +++ /dev/null @@ -1,16187 +0,0 @@ -{ - "AmazonLinux2": [ - { - "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4d60d98549e3524112a688cf101f051deabf40bba6cebb910997d5dfd76921a5/kernel-devel-4.14.238-182.421.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4d51b24c77cf283415743160ae8aa3b31e61319fff9aa9be26bf5add75e13c30/kernel-devel-4.14.192-147.314.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/73441f871dc79dc8e55376cca7f761fcb25fab48c3301edfce966ce31990b6c1/kernel-devel-4.14.241-184.433.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c289286051e3a191a74aec4166720519cfe5d5be3dee4c1b69dc86a5c241e8ef/kernel-devel-4.14.273-207.502.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b616bbfca71a0f32b20064ec608b84a540c7c9a50a66ee055f79597e795b82c1/kernel-devel-4.14.143-118.123.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a8310b8214874b6016bac315c9395bcf400ae1d87e391398bc13533e15544de7/kernel-devel-4.14.252-195.483.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a85affc175266714cfb4d5fb024888998d9170997be9d3a41d7348487a2826b4/kernel-devel-4.14.177-139.253.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.290-217.505.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/3a56c8ae4fdfa64dbabbbe1e936d4a4144073ee52f51676e447120ead890ce7b/kernel-devel-4.14.290-217.505.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a99a9f20f8ffaf9155f8f2d8da42cf504f54ac4f94fc7f29d8b8d5ddc26c950d/kernel-devel-4.14.173-137.229.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/97468a405a8bbe67d94a56897f4e4aea183bb9ea1a614349335496490f869825/kernel-devel-4.14.198-152.320.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a80bd697dfea3f7293da95114b32c1067ca43912a517803e7c71c9a56c541da8/kernel-devel-4.14.106-97.85.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ccc442be9930b0695b4e445d2c7f2db5246c97a63e3d6e8540fca6c792cadbd5/kernel-devel-4.14.128-112.105.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/780c423dadadb68c2b210c199195e30e0d22ff01d8b653997d2286e8711a57b9/kernel-devel-4.14.133-113.105.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d50adf4a339745441d6a8d51fe80b56ccea54cbcdafea5b3ddba3a4fb851455d/kernel-devel-4.14.181-140.257.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/462226833b2a3ca937a1c7b9199e76de002202698bf650fd792404448e2ca7b1/kernel-devel-4.14.146-119.123.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/bb012c2892cfc6fd2c792da3e68fb05609ab7383ecd6b763275182fdfd66819b/kernel-devel-4.14.232-177.418.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/bb237c642ca604e38ebda97c9fd06d04c391b47e40910979ce01022d0ede10e4/kernel-devel-4.14.146-120.181.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6a67425ea4006aa428689b980694a81bf123bd4fd0011388702d0314400335f1/kernel-devel-4.14.256-197.484.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4fc006ef4dec3fe1e214124bf204d60c9beaacb1fe5a8039c7d38ff92aaea3ff/kernel-devel-4.14.225-168.357.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6e2546e30bdd85028503bd2f5e5fc04695b5a714e05c9715287ab16ba3ece8d7/kernel-devel-4.14.121-109.96.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ac613d56c994d6380f965c230ca334dbed4505ff0eebe5abb3d191bf254e059d/kernel-devel-4.14.77-80.57.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4ab22fd77f28b0341f3d71b48d8e9f167abd30b58ddc38db40f5bb05561ad7b1/kernel-devel-4.14.231-173.361.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7a4d0c08af0beb21a23455e6448f24716c75ea8f051d74aa41ac755ae5848407/kernel-devel-4.14.97-90.72.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c6373e2182ec6bb07cd1a2ecf89e00fea4cd8e4f8c5e569e8d8b381f1841c760/kernel-devel-4.14.268-205.500.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e13981c2167f8af453ec6bf47b707286376691929fb86c761604b713d48d3f57/kernel-devel-4.14.77-81.59.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6119071cd0c0136590accd22490dd2afa4b4ec2c3c23c1debe0574931291140b/kernel-devel-4.14.200-155.322.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c0cea9d01d232164e18cf5e81f14717a4d1ac0db291d51b02eb08a20f58fb3dc/kernel-devel-4.14.114-103.97.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ebc978b246fd98a8e6dc35cdfd6ef2e1b56cd83322fb81dae5cf9118ec2affa0/kernel-devel-4.14.123-111.109.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/64f92d936b4c872534d02dbc726739c62c7b9ea5806644a50728f89549c1e6f9/kernel-devel-4.14.231-173.360.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/43772cabf4d00ee691a20d018ce5a31ee7b3db191add80661bdebadb335e2725/kernel-devel-4.14.177-139.254.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/90e221d029c1cdf612a705fa94257f3bc902e3bfea87a9899ac7884adf0b8fba/kernel-devel-4.14.109-99.92.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b50baed0905778e9c82106102cf95f9e6cd78328da3245ec07870706cbcfc92d/kernel-devel-4.14.165-131.185.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d857452b7d93c824e1e3264c6aa9f875419fc0980f7f8d7b67648cbc8fdd23b0/kernel-devel-4.14.94-89.73.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/50e6360bfb37680172125961548da7483a02d2458c6fd8c16ea6d54b9df7bc27/kernel-devel-4.14.165-133.209.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.287-215.504.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f28942d8c87f43ead48e60083711a0778eed1e31eb8cb7b4db6cd8f5aa98dc50/kernel-devel-4.14.287-215.504.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/57d0ec9007d7afa14e57dbb8acb56b45280b81d7ccdaf5f4b0583032e5b8dc66/kernel-devel-4.14.101-91.76.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/19ea14e62a613dda4a6375e9ee04c59dd8bdc5fcc2045a956713e0259aba7095/kernel-devel-4.14.88-88.73.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/92dc8a6b738d80e107aaa59e9d7ed947ecea3b89d7743a0b68ee57b19b181ce1/kernel-devel-4.14.138-114.102.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/11727422d657b5fb28cd98a1b77a3b01282dea588965c44f52f525cb1c80445d/kernel-devel-4.14.181-142.260.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1a57dfa5ed2ec5e2cbf4c9835029000a0d150526f09c10bf510782d7c6736014/kernel-devel-4.14.248-189.473.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7d118a794facc32f2c38b1eb83d6c805652718713242f591688b84400da43e1f/kernel-devel-4.14.262-200.489.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e4bea342c8a84fda47b9b5fa6675c1640dfee657244dea7debdc7985f2507aa9/kernel-devel-4.14.219-164.354.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1175d202d5ead811e46cd8f894329235b4bec30411bb26bdc1212231734a7349/kernel-devel-4.14.225-169.362.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/db63962fa756e25be3544fd9639ddaeb263bf34ea3a209aa02e2c9a22a00210d/kernel-devel-4.14.203-156.332.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6bb54d9f0ab881831b2fc134238551d1383e202cf83cc96e4890ce65612b0703/kernel-devel-4.14.154-128.181.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f8addab2f4129f0f624c7921f74c4d4eeffef58b70e1aefb55d2de86c615881e/kernel-devel-4.14.158-129.185.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b8d1118333d23467250a74c21b70e04bc8f78f1e1aab43f425179e13b2049ff2/kernel-devel-4.14.275-207.503.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ca0a6d45fadf8aedd459c4d88d3816a4b7c971c2821f5fc428ddae1dd772499e/kernel-devel-4.14.77-86.82.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6b9ecdba7a4a8a148051d56d721a7e81afada0fcd1a89cee967bc5f5bf2d6a6c/kernel-devel-4.14.88-88.76.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8a4040c8406ca66aed8e46a3283ae57e01a70c1d7e35cf18f6a55d300f108f19/kernel-devel-4.14.276-211.499.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.281-212.502.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/2603843a89547a5efb5c01783df4c019a28d484dd8221e92836d5377cee0d246/kernel-devel-4.14.281-212.502.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/84df9c2d267d562a69d7d3cec387db5734a545a483acb4f69ebf68d82a82a018/kernel-devel-4.14.152-124.171.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4d614f04faa3cbd386f7aa55af3b37260a0abda4b3bc444431f7afd624f10c48/kernel-devel-4.14.238-182.422.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/10f929bdbf38fe337158bf080b25c4145661131cfe2bc1f99696a9daf518691a/kernel-devel-4.14.243-185.433.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/213bda362d65cbb3cd4fec41dfe753f36b97ac6f77a6d6498b99822dc16fee5b/kernel-devel-4.14.171-136.231.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6ffab56c5978aa80b9ba00c971ca4231f668b8d92aa9abcc5a0b9a0e425dffb1/kernel-devel-4.14.133-113.112.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/30cb5685f8fd8e1d7a0cc62053794d96dee5bdfa1f680987e7c92271aa0a3c03/kernel-devel-4.14.209-160.335.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/dac1c71e52b55dafd63995e2a10da6fb4742b1fccf0a2e77adcf002f130c87c9/kernel-devel-4.14.186-146.268.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/76b9164113a76207e57aa92608f3e6356800a88de31acddd0d68071e807acc75/kernel-devel-4.14.214-160.339.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/47f0329a06e5b296efe3cf7be98701d346c2a4f466b9fa52146b51eb38cc4416/kernel-devel-4.14.209-160.339.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/27d66abffc8fe4654458bdcc7754398b1b9c3df9ae01f42acfda9adec4702a25/kernel-devel-4.14.232-176.381.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4afd953edf9665925e113c303a69cae5fe2db962fd04da2a78970cea72c84cf1/kernel-devel-4.14.104-95.84.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/79d808a62350151fff5c74846a4a3c60d9a8f1f3c7b2860a5202de97bf5b1382/kernel-devel-4.14.193-149.317.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.285-215.501.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7cf24663ef5c83290d818e6dc1913308d1801cb50053788661205deae0c5fa5f/kernel-devel-4.14.285-215.501.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/78f64bcb7393ee0ee54f9f4b465a42c9407ec8acd26f45a8c27f28eddb75753f/kernel-devel-4.14.173-137.228.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/efa17cb15de39f3d72ec455e379721989cc3cb9a7c5fee1eab8a49f3d5c40f41/kernel-devel-4.14.152-127.182.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ab4bd34deb9458a2defc4a14f28e65c395df336f14d00f2928bc52b101ebfc42/kernel-devel-4.14.219-161.340.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/30805898719026f669eeb43b35c89d7e0a25b955fb62000a391850528e245102/kernel-devel-4.14.252-195.481.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/73532b3dce616cd6de53ad31752dc6050f992ab4bab07fe55c2fe70100a78058/kernel-devel-4.14.246-187.474.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/aarch64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6ab1da40e37e528123e36be14ac5866d70a4a182b230b985506459732a7a6013/kernel-devel-4.14.114-105.126.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/0127b9313622a69a7314ed0a211516316e606777c25967b83f4226f8fe9b4c47/kernel-devel-5.10.35-31.135.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.135-122.509.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/3c57e5026ba579f576055871e4b9ae943cfe14434e2efb4ef5186695baddd4bf/kernel-devel-5.10.135-122.509.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/f962dc2d90fa28668a7790dfdb237df670a2b891784ce5c98ab7ba6885ca4269/kernel-devel-5.10.29-27.126.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.126-117.518.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/fa3fec9b7aac1e90dd310392064b76b0fb51b007c2776c26a03b9476e621be7d/kernel-devel-5.10.126-117.518.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.75-79.358.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/b70c17d54c537167cdaed754ce81736eb954df09517938f84142eb2649fbbcce/kernel-devel-5.10.75-79.358.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/a6176c2044ff88b98b87582e54984ac6cea49a1e22bc35d6b52b0fa1edf81357/kernel-devel-5.10.96-90.460.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/9021fe96b7f1db44583e30631526e12c3a641469d6ce7175b74c8753686871a4/kernel-devel-5.10.62-55.141.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-87.444.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/5a12a859dfcf1cc6950643a585dcbd2ad145b333bf143cdabbf0da9eef1615f0/kernel-devel-5.10.93-87.444.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/e0850e47b31c0254e264de28f08e91be47c7db1cd8b857918dabc5a62fee5b69/kernel-devel-5.10.50-44.131.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-104.500.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/57ef3deb0c4479e0b7fe577a241c606f849a21feedf9667f948ff489f99ae2d9/kernel-devel-5.10.109-104.500.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/c745272d63c1a03bc6a242ea574606c7ba6ced277f29794c8bfac07a2e6b6737/kernel-devel-5.10.29-27.128.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/b3c1870c86ddf75a13b81c436275ba2c66d907dc9c02907fc1731f0c443b2a68/kernel-devel-5.10.102-99.473.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/79cf88f9a0cf0974211b571fe61519052e1610e7578ddf2b510b963061b686cc/kernel-devel-5.10.106-102.504.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/9ea5eba3b8c87ca6bc42fb130f90faf01e636642941f1f2aa12fd5334b9613be/kernel-devel-5.10.50-44.132.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/a50a09461ac094950c70ed26653de455dca05e58890d4f8550d98ab3cc38a4da/kernel-devel-5.10.47-39.130.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/07e0ff60c6c6a30ba6f388db60cc3a11cca896aa955c1947dad39e67d5609518/kernel-devel-5.10.68-62.173.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-111.515.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/dd46c37ca2f0977b67d8c444306d2e7d0ffa49ff18514c659dae8a3f8dd1c225/kernel-devel-5.10.118-111.515.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.130-118.517.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/7aa11bfdc99317f841d777f4edf664e19713241cc4a4ed6980f625fb6b746321/kernel-devel-5.10.130-118.517.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/df7627fb6fb8ed9791a89cc60bfa5cf6c04b02ce16b03d903bb24336eacbeabc/kernel-devel-5.10.59-52.142.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.112-108.499.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/7e8f971b1fba0eae384a4c46840311122e0d27ae6d5c29443762e690d08e87b1/kernel-devel-5.10.112-108.499.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/aarch64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/2f93c7f7d5d020b528014375d200dfe597a1b01c94a4c0d3476b33b7cf6550e7/kernel-devel-5.10.82-83.359.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/421a19a2170032b6e391acfad01a09b527fc0b12a0be6b3f17ae3e85af61e5c7/kernel-devel-5.4.186-102.354.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.209-116.363.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/e85d360af253bf6d425f0d6dbf480dd31e031064774d9dd2c4e8184699c730cb/kernel-devel-5.4.209-116.363.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/89c135cd33e92e8f7ff0c469839bcc22b8ea026a8d69bcfc2704fd24c498a926/kernel-devel-5.4.176-91.338.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.196-108.356.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4cd4c13fe3579198e4fd22f3f67071d32ac0e049265569eea729d066efb9f196/kernel-devel-5.4.196-108.356.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d8eadc57bc861ced4cbb78980e127dcd50fa8db63a93652c6d7f60eed3f232a7/kernel-devel-5.4.80-40.140.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/022ddd013c5cae6739d99e110a09a612dcd07ad8d6fc1ffaee844d857e989887/kernel-devel-5.4.46-19.75.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.38-17.76.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/83d5241b1e13dfb37ff8789fb5e1bccde47c837da5aeeafcd686903a509918b3/kernel-devel-5.4.38-17.76.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/6689e00938f2e8cf79cb965ad1f9b014c9a6c5aab13f080bf4c65a2f1863ed8e/kernel-devel-5.4.117-58.216.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/02e6c2027c08f6161ae92aba92db352b65a3306ddc86f98d9833ed5dafdf5e15/kernel-devel-5.4.74-36.135.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/f155c690396dee82281df7ad50d6b86e663ca725e644bddbfbf0f75d1cd52234/kernel-devel-5.4.110-54.182.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.188-104.359.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/a479c59221509ff906755d5afcc71d323d91d3c67834c8e2e40ccc0c33d368eb/kernel-devel-5.4.188-104.359.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/360be58f909470cf6b6c307031b7d178d00acfe5ed084798336bd0f15f6e1926/kernel-devel-5.4.95-42.163.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/7f2a4df8630194324a6ade003ee3ae79dfbd6a6604a11b81b5b6e19ce9613901/kernel-devel-5.4.58-27.104.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/33b4e6b5df7f36689a7bd995a6ea143ae03037c3addd9fe7bd34c685ae365d4d/kernel-devel-5.4.129-62.227.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.201-111.359.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/bf5b52f23977ea7464e8c0e7cd3fd72925de26eb11b3a9ca66735cad279e4764/kernel-devel-5.4.201-111.359.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.110-54.189.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/71f805a61b585d7815c3dee71ea29393a0f21b7f148b9829d18dc7bc1a692eaf/kernel-devel-5.4.110-54.189.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.204-113.362.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/fa9cf9d2036f9a94dcb8b3e2d5f29e6c3c738010bcfd336069cea38444a583e8/kernel-devel-5.4.204-113.362.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/c371a4f4b82100e43526e30a6b0b1589fbe01870b304aced4667feb571294b11/kernel-devel-5.4.20-12.75.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/9f096a5ae16b1f061b58d90cdd044d2b9b2d0c89601bb66e495800b610bdac10/kernel-devel-5.4.68-34.125.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/c58f4811a6edc635b362d1330920bfd24e47ff810b7f1db1c4a5b4741537be14/kernel-devel-5.4.91-41.139.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/fd427d63f29daa285b2bc667c2931aa72098994231975068713de7fd73facd3e/kernel-devel-5.4.172-90.336.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/14e3bd783dc5600544a65975665d16fee4b8a21d17c2ecca5debfd566d4cfefe/kernel-devel-5.4.129-63.229.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/15a287c2ff42768fc72494c92ffc558b4895b5148d5f08225193b366a492cf6f/kernel-devel-5.4.141-67.229.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/ed337061f0e1aba96e903fbf115ef4f3cad0dc37316095446b8bcc8cc7b0fcc0/kernel-devel-5.4.50-25.83.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4967fafb17fac8711327e86a70a001fbfbd3c306274539f3c1d44be4112c5e89/kernel-devel-5.4.181-99.354.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/6d07584ab68284524ea10b7cbf5675febff52c3042932bfd12b2bce3a8b14bd7/kernel-devel-5.4.162-86.275.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/85e0c75a459a8113bfc6fd6313f34d8745ea44c1f689f7d804757e8a64663886/kernel-devel-5.4.105-48.177.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/60bc14528acdf6b7518ef9a7d1662eaa76ab893539e50a52c061affaebfe92a0/kernel-devel-5.4.46-23.77.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/5e78cfe0790e82c0259b202da1afcab3e33d9d22d75a1e26dbf11dd2ffe2d283/kernel-devel-5.4.156-83.273.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.190-107.353.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/44b056fde8b6a4ff48b585dd4d0b6fb0655f2883eade7bf8331d08b95f7d20f2/kernel-devel-5.4.190-107.353.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/787ece16e23521f7aea61d9dbb825bf607c35f34714e1a41b647ec8668672599/kernel-devel-5.4.144-69.257.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/dd11b8e762bce66d0d873ba71cef6a677af48623792f14b4112acfa64b3c0abc/kernel-devel-5.4.58-32.125.amzn2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.aarch64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/aarch64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/030cfbe67a1dc53101047cf7905eca59b14a67a33e21e6f24d67241cc452dbb1/kernel-devel-5.4.149-73.259.amzn2.aarch64.rpm" - ] - } - ], - "AmazonLinux2022": [ - { - "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2022.aarch64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/2a2b9b6f424c1d6e1a8b5ec3ffab0eab03b5a82003a0386d89911ddbab5ac374/kernel-devel-5.10.96-90.460.amzn2022.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.75-82.359.amzn2022.aarch64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/440a6228082d68b5e322f6a4d372b09207a8f4b22eb133cf08d3bbcd2581cd5d/kernel-devel-5.10.75-82.359.amzn2022.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.24-13.97.amzn2022.aarch64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/c0d2623a67a9e286e094a66da07cd61b1b3292fecb961e8882215cb38bdcf066/kernel-devel-5.15.24-13.97.amzn2022.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.23-11.98.amzn2022.aarch64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/842a809c835f3519b4f40ae8039677952763438525e2f0f557ca52120501258c/kernel-devel-5.15.23-11.98.amzn2022.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.25-14.106.amzn2022.aarch64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/aarch64/../../../../blobstore/869961ff26a7ec258044368a20c802dfd57aabbcc3f0923322fff3342a6d2cc8/kernel-devel-5.15.25-14.106.amzn2022.aarch64.rpm" - ] - } - ], - "CentOS": [ - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.1.2.el8_0.aarch64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.1.el8_0.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.2.el8_0.aarch64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.4.2.el8_0.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.1.el8_0.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.2.el8_0.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.el8.aarch64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.0.1905/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-80.el8.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-147.8.1.el8_1.aarch64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.1.1911/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.28.1.el8_2.aarch64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.2.2004/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-240.22.1.el8_3.aarch64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.3.2011/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.10.2.el8_4.aarch64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.12.1.el8_4.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.17.1.el8_4.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.19.1.el8_4.aarch64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.25.1.el8_4.aarch64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.3.1.el8.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.7.1.el8_4.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.4.2105/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.2.1.el8_5.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.7.1.el8_5.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.el8.aarch64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.5.2111/BaseOS/aarch64/os/Packages/kernel-devel-4.18.0-348.el8.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-130.el9.aarch64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-130.el9.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-134.el9.aarch64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-134.el9.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-142.el9.aarch64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-142.el9.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-145.el9.aarch64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-145.el9.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-148.el9.aarch64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-devel-5.14.0-148.el9.aarch64.rpm" - ] - } - ], - "Fedora": [ - { - "kernelversion": 1, - "kernelrelease": "5.11.12-300.fc34.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/34/Everything/aarch64/os/Packages/k/kernel-devel-5.11.12-300.fc34.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.10-300.fc35.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/35/Everything/aarch64/os/Packages/k/kernel-devel-5.14.10-300.fc35.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.17.5-300.fc36.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/36/Everything/aarch64/os/Packages/k/kernel-devel-5.17.5-300.fc36.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.17.12-100.fc34.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/aarch64/Packages/k/kernel-devel-5.17.12-100.fc34.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18.19-100.fc35.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/aarch64/Packages/k/kernel-devel-5.18.19-100.fc35.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.19.4-200.fc36.aarch64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/aarch64/Packages/k/kernel-devel-5.19.4-200.fc36.aarch64.rpm" - ] - } - ], - "PhotonOS": [ - { - "kernelversion": 1, - "kernelrelease": "4.19.15-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_aarch64/aarch64/linux-devel-4.19.15-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.104-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.104-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.104-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.104-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.112-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.112-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-10.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-10.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-6.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-6.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-7.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-7.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-9.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.115-9.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.124-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.124-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.124-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.124-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.126-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.126-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.126-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.126-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.129-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.129-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.129-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.129-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-6.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.132-6.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.138-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.138-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.138-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.138-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.145-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.145-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.145-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.145-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.148-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.15-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.15-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.150-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.150-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-10.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-10.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-11.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-11.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-8.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-8.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-9.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.154-9.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.160-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.160-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.160-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.160-6.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.160-6.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.164-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.164-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.164-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.164-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.174-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.174-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.174-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.174-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.177-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.177-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.177-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.177-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.182-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.182-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.182-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.182-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.186-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.186-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.186-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.186-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.186-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.189-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.189-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.189-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.189-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.189-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.190-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.190-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.190-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.190-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.191-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.191-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.191-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.191-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.198-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.198-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.198-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.198-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.198-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.205-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.205-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.208-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.208-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.214-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.214-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.214-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.214-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.217-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.217-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.219-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.219-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.219-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.219-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.219-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.224-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.224-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.224-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.224-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.225-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.225-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.229-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.229-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.229-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.229-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.232-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.241-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.241-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.241-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.241-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.245-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.245-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-10.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-10.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-11.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-11.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-12.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-12.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-13.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-13.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-6.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-6.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-7.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-7.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-8.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-8.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-9.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.247-9.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.29-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.29-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.32-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.32-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.40-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.40-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.40-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.40-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.52-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.52-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.52-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.52-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.65-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.65-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.65-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.65-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.69-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.69-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.72-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.72-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.72-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.72-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.76-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.76-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.76-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.76-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.79-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.79-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.79-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.79-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.82-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.82-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.84-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.84-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.84-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.84-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.87-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.87-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.87-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.87-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-1.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-1.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-2.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-2.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-3.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-3.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-4.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-4.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-5.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-5.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-6.ph3.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_aarch64/aarch64/linux-devel-4.19.97-6.ph3.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-3.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-3.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-4.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.103-4.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.109-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-3.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.109-3.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-4.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.109-4.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-11.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-11.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-12.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-12.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-13.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-13.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-14.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-14.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-3.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-3.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-4.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-4.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-5.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-5.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-6.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.118-6.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.132-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_aarch64/aarch64/linux-devel-5.10.132-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-10.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-10.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-3.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-3.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-5.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-5.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-6.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-6.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-7.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-7.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-9.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.25-9.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-3.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-3.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-4.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.35-4.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.4-17.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.4-17.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.42-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.42-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.42-3.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.42-3.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.46-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.46-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.52-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.52-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.52-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.52-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.61-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.61-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.61-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.61-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.75-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.75-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.78-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.78-4.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-4.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.78-5.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.78-5.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-2.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-2.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-3.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-3.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-4.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-4.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-5.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-5.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-6.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-6.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-7.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.83-7.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-1.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-1.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-3.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-3.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-4.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-4.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-5.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_aarch64/aarch64/linux-devel-5.10.93-5.ph4.aarch64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.4-16.ph4.aarch64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_aarch64/aarch64/linux-devel-5.10.4-16.ph4.aarch64.rpm" - ] - } - ], - "Debian": [ - { - "kernelversion": 1, - "kernelrelease": "5.18.16-1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-common-rt_5.18.16-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-rt-arm64_5.18.16-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-common_5.18.16-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-cloud-arm64_5.18.16-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-4-arm64_5.18.16-1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.136-1-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-cloud-arm64_5.10.136-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-common_5.10.136-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-arm64_5.10.136-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-rt-arm64_5.10.136-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-common-rt_5.10.136-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18.2-1~bpo11+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-arm64_5.18.2-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-arm64_5.18.2-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-arm64_5.18.2-1~bpo11+1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18.14-1~bpo11+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-common-rt_5.18.14-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-arm64_5.18.14-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-rt-arm64_5.18.14-1~bpo11+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-common_5.18.14-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-cloud-arm64_5.18.14-1~bpo11+1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.127-2-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-cloud-arm64_5.10.127-2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-rt-arm64_5.10.127-2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-common_5.10.127-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-arm64_5.10.127-2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-common-rt_5.10.127-2_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.106-1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-arm64_5.10.106-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-arm64_5.10.106-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-arm64_5.10.106-1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.120-1~bpo10+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-common-rt_5.10.120-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-arm64_5.10.120-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-common_5.10.120-1~bpo10+1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-rt-arm64_5.10.120-1~bpo10+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-cloud-arm64_5.10.120-1~bpo10+1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.249-2-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-rt-arm64_4.19.249-2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-arm64_4.19.249-2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common_4.19.249-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common-rt_4.19.249-2_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.208-1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-arm64_4.19.208-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-arm64_4.19.208-1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.235-1-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-arm64_4.19.235-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.19-1~exp1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-common-rt_5.19-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-common_5.19-1~exp1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-cloud-arm64_5.19-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-rt-arm64_5.19-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.19.0-trunk-arm64_5.19-1~exp1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.19_5.19-1~exp1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-arm64_4.19.118-2+deb10u1~bpo9+1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.228-1-arm64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-arm64_4.9.228-1_arm64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-1-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-arm64_5.10.103-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.113-1-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-arm64_5.10.113-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-arm64_5.10.113-1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.120-1-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-arm64_5.10.120-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-arm64_5.10.120-1_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-1-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-arm64_4.19.232-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-arm64_4.19.232-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.303-1-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-arm64_4.9.303-1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.320-2-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common_4.9.320-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-arm64_4.9.320-2_arm64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-1~deb9u1-arm64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-arm64_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_arm64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-arm64_4.19.232-1~deb9u1_arm64.deb" - ] - } - ], - "Ubuntu": [ - { - "kernelversion": "146", - "kernelrelease": "4.15.0-1136-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1136_4.15.0-1136.146_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1136-snapdragon_4.15.0-1136.146_arm64.deb" - ] - }, - { - "kernelversion": "151", - "kernelrelease": "4.15.0-1140-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1140-aws_4.15.0-1140.151_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1140_4.15.0-1140.151_all.deb" - ] - }, - { - "kernelversion": "203", - "kernelrelease": "4.15.0-192-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-192_4.15.0-192.203_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-192-generic_4.15.0-192.203_arm64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.0.0-1028-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb" - ] - }, - { - "kernelversion": "76~18.04.3", - "kernelrelease": "5.4.0-1071-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_arm64.deb" - ] - }, - { - "kernelversion": "83~18.04.1", - "kernelrelease": "5.4.0-1077-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1077-gke_5.4.0-1077.83~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1077_5.4.0-1077.83~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1078-gke_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-1082-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1082_5.4.0-1082.90~18.04.1_all.deb" - ] - }, - { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-1084-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1084-aws_5.4.0-1084.91~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1084_5.4.0-1084.91~18.04.1_all.deb" - ] - }, - { - "kernelversion": "95~18.04.1", - "kernelrelease": "5.4.0-1087-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1087_5.4.0-1087.95~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "95~18.04.1", - "kernelrelease": "5.4.0-1090-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1090_5.4.0-1090.95~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1090-azure_5.4.0-1090.95~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "141~18.04.1", - "kernelrelease": "5.4.0-125-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-generic_5.4.0-125.141~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-125_5.4.0-125.141~18.04.1_all.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.15.0-101-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_arm64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "4.15.0-1029-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_arm64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-1030-raspi2", - "target": "ubuntu-raspi2", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1030_4.15.0-1030.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "4.15.0-1031-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "4.15.0-1031-raspi2", - "target": "ubuntu-raspi2", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-raspi2-headers-4.15.0-1031_4.15.0-1031.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi2/linux-headers-4.15.0-1031-raspi2_4.15.0-1031.33_arm64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "4.15.0-1035-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_arm64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "4.15.0-1039-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "4.15.0-1043-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_arm64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "4.15.0-1045-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-1047-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.15.0-1048-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_arm64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "4.15.0-1050-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_arm64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.15.0-1051-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "4.15.0-1052-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "4.15.0-1053-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1053_4.15.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1053-snapdragon_4.15.0-1053.57_arm64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "4.15.0-1054-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "4.15.0-1054-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1054-snapdragon_4.15.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1054_4.15.0-1054.58_arm64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "4.15.0-1055-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1055_4.15.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1055-snapdragon_4.15.0-1055.59_arm64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "4.15.0-1056-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_arm64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "4.15.0-1057-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_arm64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.15.0-1057-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1057-snapdragon_4.15.0-1057.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1057_4.15.0-1057.62_arm64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "4.15.0-1058-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_arm64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "4.15.0-1058-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1058_4.15.0-1058.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1058-snapdragon_4.15.0-1058.64_arm64.deb" - ] - }, - { - "kernelversion": "107", - "kernelrelease": "4.15.0-106-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_arm64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.15.0-1060-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_arm64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "4.15.0-1060-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1060_4.15.0-1060.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1060-snapdragon_4.15.0-1060.66_arm64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "4.15.0-1062-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1062_4.15.0-1062.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1062-snapdragon_4.15.0-1062.69_arm64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "4.15.0-1063-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "4.15.0-1064-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1064_4.15.0-1064.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1064-snapdragon_4.15.0-1064.71_arm64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "4.15.0-1065-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_arm64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "4.15.0-1065-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1065-snapdragon_4.15.0-1065.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1065_4.15.0-1065.72_arm64.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "4.15.0-1066-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "4.15.0-1066-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1066-snapdragon_4.15.0-1066.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1066_4.15.0-1066.73_arm64.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "4.15.0-1067-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "4.15.0-1067-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1067_4.15.0-1067.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1067-snapdragon_4.15.0-1067.74_arm64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "4.15.0-1069-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1069-snapdragon_4.15.0-1069.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1069_4.15.0-1069.76_arm64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "4.15.0-1070-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1070_4.15.0-1070.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1070-snapdragon_4.15.0-1070.77_arm64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "4.15.0-1071-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1071-snapdragon_4.15.0-1071.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1071_4.15.0-1071.78_arm64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "4.15.0-1072-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1072-snapdragon_4.15.0-1072.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1072_4.15.0-1072.79_arm64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "4.15.0-1073-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_arm64.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "4.15.0-1074-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1074_4.15.0-1074.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1074-snapdragon_4.15.0-1074.81_arm64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "4.15.0-1076-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.15.0-1076-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1076_4.15.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1076-snapdragon_4.15.0-1076.83_arm64.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "4.15.0-1077-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.15.0-1077-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1077-snapdragon_4.15.0-1077.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1077_4.15.0-1077.84_arm64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.15.0-1079-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "4.15.0-1079-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1079-snapdragon_4.15.0-1079.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1079_4.15.0-1079.86_arm64.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "4.15.0-108-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.15.0-1080-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "4.15.0-1080-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1080-snapdragon_4.15.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1080_4.15.0-1080.87_arm64.deb" - ] - }, - { - "kernelversion": "88", - "kernelrelease": "4.15.0-1081-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1081-snapdragon_4.15.0-1081.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1081_4.15.0-1081.88_arm64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "4.15.0-1082-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_arm64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "4.15.0-1083-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.15.0-1083-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1083-snapdragon_4.15.0-1083.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1083_4.15.0-1083.91_arm64.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.15.0-1084-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1084_4.15.0-1084.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1084-snapdragon_4.15.0-1084.92_arm64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.15.0-1086-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_arm64.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "4.15.0-1086-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1086-snapdragon_4.15.0-1086.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1086_4.15.0-1086.94_arm64.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.15.0-1087-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_arm64.deb" - ] - }, - { - "kernelversion": "95", - "kernelrelease": "4.15.0-1087-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1087-snapdragon_4.15.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1087_4.15.0-1087.95_arm64.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "4.15.0-1089-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1089-snapdragon_4.15.0-1089.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1089_4.15.0-1089.98_arm64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.15.0-109-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_arm64.deb" - ] - }, - { - "kernelversion": "95", - "kernelrelease": "4.15.0-1090-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.15.0-1090-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1090-snapdragon_4.15.0-1090.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1090_4.15.0-1090.99_arm64.deb" - ] - }, - { - "kernelversion": "96", - "kernelrelease": "4.15.0-1091-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "4.15.0-1092-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.15.0-1093-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.15.0-1093-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1093_4.15.0-1093.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1093-snapdragon_4.15.0-1093.102_arm64.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "4.15.0-1094-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "4.15.0-1094-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1094_4.15.0-1094.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1094-snapdragon_4.15.0-1094.103_arm64.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.15.0-1095-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb" - ] - }, - { - "kernelversion": "104", - "kernelrelease": "4.15.0-1095-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1095-snapdragon_4.15.0-1095.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1095_4.15.0-1095.104_arm64.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "4.15.0-1096-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" - ] - }, - { - "kernelversion": "105", - "kernelrelease": "4.15.0-1096-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1096_4.15.0-1096.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1096-snapdragon_4.15.0-1096.105_arm64.deb" - ] - }, - { - "kernelversion": "104", - "kernelrelease": "4.15.0-1097-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_arm64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.15.0-1097-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1097_4.15.0-1097.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1097-snapdragon_4.15.0-1097.106_arm64.deb" - ] - }, - { - "kernelversion": "105", - "kernelrelease": "4.15.0-1098-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" - ] - }, - { - "kernelversion": "107", - "kernelrelease": "4.15.0-1098-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1098-snapdragon_4.15.0-1098.107_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1098_4.15.0-1098.107_arm64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.15.0-1099-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" - ] - }, - { - "kernelversion": "108", - "kernelrelease": "4.15.0-1099-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1099-snapdragon_4.15.0-1099.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1099_4.15.0-1099.108_arm64.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "4.15.0-1100-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1100_4.15.0-1100.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1100-snapdragon_4.15.0-1100.109_arm64.deb" - ] - }, - { - "kernelversion": "108", - "kernelrelease": "4.15.0-1101-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.15.0-1101-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1101_4.15.0-1101.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1101-snapdragon_4.15.0-1101.110_arm64.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "4.15.0-1102-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_arm64.deb" - ] - }, - { - "kernelversion": "111", - "kernelrelease": "4.15.0-1102-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1102-snapdragon_4.15.0-1102.111_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1102_4.15.0-1102.111_arm64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.15.0-1103-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-1103-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1103_4.15.0-1103.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1103-snapdragon_4.15.0-1103.112_arm64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1106-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb" - ] - }, - { - "kernelversion": "115", - "kernelrelease": "4.15.0-1106-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1106_4.15.0-1106.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1106-snapdragon_4.15.0-1106.115_arm64.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.15.0-1109-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_arm64.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.15.0-1109-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1109-snapdragon_4.15.0-1109.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1109_4.15.0-1109.118_arm64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-111-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_arm64.deb" - ] - }, - { - "kernelversion": "117", - "kernelrelease": "4.15.0-1110-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.15.0-1110-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1110_4.15.0-1110.119_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1110-snapdragon_4.15.0-1110.119_arm64.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.15.0-1111-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "4.15.0-1111-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1111_4.15.0-1111.120_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1111-snapdragon_4.15.0-1111.120_arm64.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.15.0-1112-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_arm64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.15.0-1112-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1112-snapdragon_4.15.0-1112.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1112_4.15.0-1112.121_arm64.deb" - ] - }, - { - "kernelversion": "122", - "kernelrelease": "4.15.0-1113-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1113-snapdragon_4.15.0-1113.122_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1113_4.15.0-1113.122_arm64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.15.0-1114-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_arm64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-1114-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1114_4.15.0-1114.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1114-snapdragon_4.15.0-1114.123_arm64.deb" - ] - }, - { - "kernelversion": "122", - "kernelrelease": "4.15.0-1115-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_arm64.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "4.15.0-1115-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1115-snapdragon_4.15.0-1115.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1115_4.15.0-1115.124_arm64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-1116-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_arm64.deb" - ] - }, - { - "kernelversion": "125", - "kernelrelease": "4.15.0-1116-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1116-snapdragon_4.15.0-1116.125_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1116_4.15.0-1116.125_arm64.deb" - ] - }, - { - "kernelversion": "125", - "kernelrelease": "4.15.0-1118-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_arm64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-1118-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1118-snapdragon_4.15.0-1118.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1118_4.15.0-1118.127_arm64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-1119-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb" - ] - }, - { - "kernelversion": "128", - "kernelrelease": "4.15.0-1119-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1119-snapdragon_4.15.0-1119.128_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1119_4.15.0-1119.128_arm64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-112-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" - ] - }, - { - "kernelversion": "129", - "kernelrelease": "4.15.0-1120-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1120-snapdragon_4.15.0-1120.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1120_4.15.0-1120.129_arm64.deb" - ] - }, - { - "kernelversion": "129", - "kernelrelease": "4.15.0-1121-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_arm64.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.15.0-1122-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1122-snapdragon_4.15.0-1122.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1122_4.15.0-1122.131_arm64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.15.0-1123-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1123_4.15.0-1123.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1123-snapdragon_4.15.0-1123.132_arm64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.15.0-1123-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_arm64.deb" - ] - }, - { - "kernelversion": "133", - "kernelrelease": "4.15.0-1124-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_arm64.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-1125-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1125_4.15.0-1125.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1125-snapdragon_4.15.0-1125.134_arm64.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.15.0-1126-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1126_4.15.0-1126.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1126-snapdragon_4.15.0-1126.135_arm64.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_arm64.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_arm64.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1127_4.15.0-1127.136_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1127-snapdragon_4.15.0-1127.136_arm64.deb" - ] - }, - { - "kernelversion": "137", - "kernelrelease": "4.15.0-1128-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_arm64.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "4.15.0-1129-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1129-snapdragon_4.15.0-1129.138_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1129_4.15.0-1129.138_arm64.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-1130-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_arm64.deb" - ] - }, - { - "kernelversion": "142", - "kernelrelease": "4.15.0-1132-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1132-snapdragon_4.15.0-1132.142_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1132_4.15.0-1132.142_arm64.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "4.15.0-1133-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1133_4.15.0-1133.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1133-snapdragon_4.15.0-1133.143_arm64.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "4.15.0-1133-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_arm64.deb" - ] - }, - { - "kernelversion": "145", - "kernelrelease": "4.15.0-1135-snapdragon", - "target": "ubuntu-snapdragon", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-headers-4.15.0-1135-snapdragon_4.15.0-1135.145_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-snapdragon/linux-snapdragon-headers-4.15.0-1135_4.15.0-1135.145_arm64.deb" - ] - }, - { - "kernelversion": "147", - "kernelrelease": "4.15.0-1136-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" - ] - }, - { - "kernelversion": "148", - "kernelrelease": "4.15.0-1137-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb" - ] - }, - { - "kernelversion": "150", - "kernelrelease": "4.15.0-1139-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1139_4.15.0-1139.150_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1139-aws_4.15.0-1139.150_arm64.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.15.0-115-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_arm64.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.15.0-117-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.15.0-118-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_arm64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-121-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "4.15.0-122-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_arm64.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "4.15.0-123-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_arm64.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.15.0-128-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_arm64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.15.0-129-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-130-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "4.15.0-132-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_arm64.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-135-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "4.15.0-136-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_arm64.deb" - ] - }, - { - "kernelversion": "141", - "kernelrelease": "4.15.0-137-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "4.15.0-139-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" - ] - }, - { - "kernelversion": "144", - "kernelrelease": "4.15.0-140-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_arm64.deb" - ] - }, - { - "kernelversion": "145", - "kernelrelease": "4.15.0-141-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_arm64.deb" - ] - }, - { - "kernelversion": "146", - "kernelrelease": "4.15.0-142-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_arm64.deb" - ] - }, - { - "kernelversion": "147", - "kernelrelease": "4.15.0-143-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb" - ] - }, - { - "kernelversion": "148", - "kernelrelease": "4.15.0-144-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb" - ] - }, - { - "kernelversion": "151", - "kernelrelease": "4.15.0-147-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb" - ] - }, - { - "kernelversion": "157", - "kernelrelease": "4.15.0-151-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb" - ] - }, - { - "kernelversion": "160", - "kernelrelease": "4.15.0-153-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" - ] - }, - { - "kernelversion": "161", - "kernelrelease": "4.15.0-154-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" - ] - }, - { - "kernelversion": "163", - "kernelrelease": "4.15.0-156-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb" - ] - }, - { - "kernelversion": "166", - "kernelrelease": "4.15.0-158-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_arm64.deb" - ] - }, - { - "kernelversion": "167", - "kernelrelease": "4.15.0-159-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb" - ] - }, - { - "kernelversion": "169", - "kernelrelease": "4.15.0-161-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_arm64.deb" - ] - }, - { - "kernelversion": "170", - "kernelrelease": "4.15.0-162-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_arm64.deb" - ] - }, - { - "kernelversion": "171", - "kernelrelease": "4.15.0-163-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb" - ] - }, - { - "kernelversion": "174", - "kernelrelease": "4.15.0-166-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_arm64.deb" - ] - }, - { - "kernelversion": "175", - "kernelrelease": "4.15.0-167-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb" - ] - }, - { - "kernelversion": "177", - "kernelrelease": "4.15.0-169-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb" - ] - }, - { - "kernelversion": "180", - "kernelrelease": "4.15.0-171-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb" - ] - }, - { - "kernelversion": "182", - "kernelrelease": "4.15.0-173-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_arm64.deb" - ] - }, - { - "kernelversion": "184", - "kernelrelease": "4.15.0-175-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_arm64.deb" - ] - }, - { - "kernelversion": "185", - "kernelrelease": "4.15.0-176-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_arm64.deb" - ] - }, - { - "kernelversion": "186", - "kernelrelease": "4.15.0-177-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb" - ] - }, - { - "kernelversion": "189", - "kernelrelease": "4.15.0-180-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_arm64.deb" - ] - }, - { - "kernelversion": "194", - "kernelrelease": "4.15.0-184-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" - ] - }, - { - "kernelversion": "198", - "kernelrelease": "4.15.0-187-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_arm64.deb" - ] - }, - { - "kernelversion": "199", - "kernelrelease": "4.15.0-188-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_arm64.deb" - ] - }, - { - "kernelversion": "200", - "kernelrelease": "4.15.0-189-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_arm64.deb" - ] - }, - { - "kernelversion": "202", - "kernelrelease": "4.15.0-191-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-191_4.15.0-191.202_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-191-generic_4.15.0-191.202_arm64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "4.15.0-22-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-snapdragon_4.15.0-22.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_arm64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "4.15.0-23-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23-snapdragon_4.15.0-23.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "4.15.0-24-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-24-snapdragon_4.15.0-24.26_arm64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "4.15.0-29-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-snapdragon_4.15.0-29.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_arm64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-30-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-30-snapdragon_4.15.0-30.32_arm64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-32-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-32-snapdragon_4.15.0-32.35_arm64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-33-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33-snapdragon_4.15.0-33.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "4.15.0-34-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34-snapdragon_4.15.0-34.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-36-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-snapdragon_4.15.0-36.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_arm64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.15.0-39-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39-snapdragon_4.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "4.15.0-42-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-snapdragon_4.15.0-42.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.15.0-43-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-snapdragon_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "4.15.0-44-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-snapdragon_4.15.0-44.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_arm64.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "4.15.0-45-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-45-snapdragon_4.15.0-45.48_arm64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-46-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-snapdragon_4.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.15.0-47-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-snapdragon_4.15.0-47.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_arm64.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "4.15.0-50-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_arm64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "4.15.0-51-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "4.15.0-52-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "4.15.0-54-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "4.15.0-55-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_arm64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "4.15.0-58-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_arm64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "4.15.0-60-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "4.15.0-62-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "4.15.0-64-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_arm64.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "4.15.0-65-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_arm64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "4.15.0-66-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "4.15.0-69-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "4.15.0-70-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_arm64.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "4.15.0-72-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.15.0-74-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_arm64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "4.15.0-76-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb" - ] - }, - { - "kernelversion": "88", - "kernelrelease": "4.15.0-88-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_arm64.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.15.0-91-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_arm64.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "4.15.0-96-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "4.15.0-99-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_arm64.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "4.18.0-13-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13-snapdragon_4.18.0-13.14~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" - ] - }, - { - "kernelversion": "15~18.04.1", - "kernelrelease": "4.18.0-14-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-snapdragon_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb" - ] - }, - { - "kernelversion": "16~18.04.1", - "kernelrelease": "4.18.0-15-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15-snapdragon_4.18.0-15.16~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "4.18.0-16-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-16-snapdragon_4.18.0-16.17~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "4.18.0-17-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17-snapdragon_4.18.0-17.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "4.18.0-20-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-20-snapdragon_4.18.0-20.21~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "4.18.0-21-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-snapdragon_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" - ] - }, - { - "kernelversion": "23~18.04.1", - "kernelrelease": "4.18.0-22-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-snapdragon_4.18.0-22.23~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "4.18.0-24-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-snapdragon_4.18.0-24.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "4.18.0-25-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-snapdragon_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-1021-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.0.0-1022-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-1023-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" - ] - }, - { - "kernelversion": "27~18.04.1", - "kernelrelease": "5.0.0-1024-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.0.0-1025-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.0.0-1027-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_arm64.deb" - ] - }, - { - "kernelversion": "16~18.04.1", - "kernelrelease": "5.0.0-15-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.0.0-16-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "5.0.0-17-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "20~18.04.1", - "kernelrelease": "5.0.0-19-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.0.0-20-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-23-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-25-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.0.0-27-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb" - ] - }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.0.0-29-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.0.0-31-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "34~18.04.2", - "kernelrelease": "5.0.0-32-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb" - ] - }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.0.0-35-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb" - ] - }, - { - "kernelversion": "39~18.04.1", - "kernelrelease": "5.0.0-36-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "40~18.04.1", - "kernelrelease": "5.0.0-37-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.0.0-52-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.0.0-61-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_arm64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.0.0-62-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_arm64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "5.0.0-63-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_arm64.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "5.0.0-65-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1017-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.3.0-1019-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.3.0-1023-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "34~18.04.2", - "kernelrelease": "5.3.0-1032-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_arm64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.3.0-1033-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_arm64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.3.0-1034-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_arm64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.3.0-1035-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_arm64.deb" - ] - }, - { - "kernelversion": "20~18.04.2", - "kernelrelease": "5.3.0-19-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_arm64.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.3.0-22-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb" - ] - }, - { - "kernelversion": "25~18.04.2", - "kernelrelease": "5.3.0-23-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_arm64.deb" - ] - }, - { - "kernelversion": "26~18.04.2", - "kernelrelease": "5.3.0-24-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_arm64.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.3.0-26-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-28-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-40-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "34~18.04.1", - "kernelrelease": "5.3.0-42-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "37~18.04.1", - "kernelrelease": "5.3.0-45-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.3.0-46-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" - ] - }, - { - "kernelversion": "44~18.04.2", - "kernelrelease": "5.3.0-51-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb" - ] - }, - { - "kernelversion": "47~18.04.1", - "kernelrelease": "5.3.0-53-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.3.0-59-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb" - ] - }, - { - "kernelversion": "55~18.04.1", - "kernelrelease": "5.3.0-61-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.3.0-62-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb" - ] - }, - { - "kernelversion": "58~18.04.1", - "kernelrelease": "5.3.0-64-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb" - ] - }, - { - "kernelversion": "113~18.04.1", - "kernelrelease": "5.4.0-100-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "20~18.04.2", - "kernelrelease": "5.4.0-1020-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_arm64.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.4.0-1029-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb" - ] - }, - { - "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1038-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "118~18.04.1", - "kernelrelease": "5.4.0-104-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1041-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" - ] - }, - { - "kernelversion": "47~18.04.1", - "kernelrelease": "5.4.0-1045-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb" - ] - }, - { - "kernelversion": "50~18.04.2", - "kernelrelease": "5.4.0-1046-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_arm64.deb" - ] - }, - { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" - ] - }, - { - "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" - ] - }, - { - "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-1048-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb" - ] - }, - { - "kernelversion": "119~18.04.1", - "kernelrelease": "5.4.0-105-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb" - ] - }, - { - "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1054-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb" - ] - }, - { - "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "61~18.04.3", - "kernelrelease": "5.4.0-1058-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb" - ] - }, - { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1061-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb" - ] - }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb" - ] - }, - { - "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1066-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1067-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1069-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-1069-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb" - ] - }, - { - "kernelversion": "121~18.04.1", - "kernelrelease": "5.4.0-107-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb" - ] - }, - { - "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1070-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb" - ] - }, - { - "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1071-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1071-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1073-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1074-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "82~18.04.1", - "kernelrelease": "5.4.0-1076-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "83~18.04.1", - "kernelrelease": "5.4.0-1076-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1077-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "81~18.04.1", - "kernelrelease": "5.4.0-1078-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" - ] - }, - { - "kernelversion": "86~18.04.1", - "kernelrelease": "5.4.0-1078-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1079-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1079_5.4.0-1079.87~18.04.1_all.deb" - ] - }, - { - "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" - ] - }, - { - "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "83~18.04.2", - "kernelrelease": "5.4.0-1080-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb" - ] - }, - { - "kernelversion": "86~18.04.1", - "kernelrelease": "5.4.0-1080-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1080-gke_5.4.0-1080.86~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1080_5.4.0-1080.86~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "88~18.04.1", - "kernelrelease": "5.4.0-1081-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb" - ] - }, - { - "kernelversion": "89~18.04.1", - "kernelrelease": "5.4.0-1081-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1081_5.4.0-1081.89~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-1083-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1083_5.4.0-1083.90~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1083-aws_5.4.0-1083.90~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1083-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb" - ] - }, - { - "kernelversion": "92~18.04.1", - "kernelrelease": "5.4.0-1084-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1084_5.4.0-1084.92~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-1085-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-1086-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb" - ] - }, - { - "kernelversion": "94~18.04.1", - "kernelrelease": "5.4.0-1086-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1086_5.4.0-1086.94~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "94~18.04.1", - "kernelrelease": "5.4.0-1089-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1089-azure_5.4.0-1089.94~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1089_5.4.0-1089.94~18.04.1_all.deb" - ] - }, - { - "kernelversion": "123~18.04.1", - "kernelrelease": "5.4.0-109-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "124~18.04.1", - "kernelrelease": "5.4.0-110-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb" - ] - }, - { - "kernelversion": "127~18.04.1", - "kernelrelease": "5.4.0-113-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "132~18.04.1", - "kernelrelease": "5.4.0-117-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "136~18.04.1", - "kernelrelease": "5.4.0-120-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb" - ] - }, - { - "kernelversion": "137~18.04.1", - "kernelrelease": "5.4.0-121-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb" - ] - }, - { - "kernelversion": "138~18.04.1", - "kernelrelease": "5.4.0-122-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "140~18.04.1", - "kernelrelease": "5.4.0-124-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-124_5.4.0-124.140~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-generic_5.4.0-124.140~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-37-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-39-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb" - ] - }, - { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-40-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-42-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "49~18.04.2", - "kernelrelease": "5.4.0-45-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_arm64.deb" - ] - }, - { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-47-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-48-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-51-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-52-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-53-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-58-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-59-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-60-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb" - ] - }, - { - "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-62-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb" - ] - }, - { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-65-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "74~18.04.2", - "kernelrelease": "5.4.0-66-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" - ] - }, - { - "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-67-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-70-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-71-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-72-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "82~18.04.1", - "kernelrelease": "5.4.0-73-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "83~18.04.1", - "kernelrelease": "5.4.0-74-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "86~18.04.1", - "kernelrelease": "5.4.0-77-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" - ] - }, - { - "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-80-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb" - ] - }, - { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-81-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb" - ] - }, - { - "kernelversion": "94~18.04.1", - "kernelrelease": "5.4.0-84-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb" - ] - }, - { - "kernelversion": "97~18.04.1", - "kernelrelease": "5.4.0-86-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "98~18.04.1", - "kernelrelease": "5.4.0-87-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb" - ] - }, - { - "kernelversion": "100~18.04.1", - "kernelrelease": "5.4.0-89-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" - ] - }, - { - "kernelversion": "101~18.04.1", - "kernelrelease": "5.4.0-90-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "102~18.04.1", - "kernelrelease": "5.4.0-91-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb" - ] - }, - { - "kernelversion": "103~18.04.2", - "kernelrelease": "5.4.0-92-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_arm64.deb" - ] - }, - { - "kernelversion": "106~18.04.1", - "kernelrelease": "5.4.0-94-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "109~18.04.1", - "kernelrelease": "5.4.0-96-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" - ] - }, - { - "kernelversion": "110~18.04.1", - "kernelrelease": "5.4.0-97-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "112~18.04.1", - "kernelrelease": "5.4.0-99-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-124-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "4.15.0-134-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_arm64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "4.15.0-38-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-38-snapdragon_4.15.0-38.41_arm64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "4.15.0-48-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-snapdragon_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "4.18.0-18-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.18.0-18-snapdragon_4.18.0-18.19~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.0.0-41-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "47~18.04.1", - "kernelrelease": "5.0.0-43-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "48~18.04.1", - "kernelrelease": "5.0.0-44-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.0.0-47-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "52~18.04.1", - "kernelrelease": "5.0.0-48-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.0.0-53-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.0.0-58-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.0.0-60-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "5.4.0-1018-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-1083-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1083_5.4.0-1083.91~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-54-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-64-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_arm64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "4.15.0-20-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.15.0-20-snapdragon_4.15.0-20.21_arm64.deb" - ] - }, - { - "kernelversion": "3", - "kernelrelease": "5.19.0-1001-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.19.0-1001-raspi_5.19.0-1001.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.19.0-1001_5.19.0-1001.3_arm64.deb" - ] - }, - { - "kernelversion": "3", - "kernelrelease": "5.19.0-1003-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.19.0-1003_5.19.0-1003.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.19.0-1003-lowlatency-64k_5.19.0-1003.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.19.0-1003-lowlatency_5.19.0-1003.3_arm64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.19.0-1004-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.19.0-1004-gcp_5.19.0-1004.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.19.0-1004_5.19.0-1004.4_arm64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.19.0-1004-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.19.0-1004-oracle_5.19.0-1004.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.19.0-1004_5.19.0-1004.4_all.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.19.0-1004-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.19.0-1004_5.19.0-1004.4_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.19.0-1004-azure_5.19.0-1004.4_arm64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.19.0-1005-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.19.0-1005-aws_5.19.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.19.0-1005_5.19.0-1005.5_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.19.0-15-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.19.0-15-generic_5.19.0-15.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.19.0-15_5.19.0-15.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.19.0-15-generic-64k_5.19.0-15.15_arm64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.15.0-1003-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_arm64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1003-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1004-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_arm64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1006-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1006-raspi_5.15.0-1006.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1006_5.15.0-1006.6_arm64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.15.0-24-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic-64k_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency-64k_5.15.0-27.28_arm64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb" - ] - }, - { - "kernelversion": "32~20.04.2", - "kernelrelease": "5.11.0-1029-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.11.0-61-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic-64k_5.11.0-61.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_arm64.deb" - ] - }, - { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1014-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.13.0-1014-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-1018-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-1020-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb" - ] - }, - { - "kernelversion": "25~20.04.1", - "kernelrelease": "5.13.0-1023-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.13.0-1023-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1024-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "31~20.04.2", - "kernelrelease": "5.13.0-1026-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" - ] - }, - { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-19-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic-64k_5.13.0-19.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-21-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic-64k_5.13.0-21.21~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-22-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic-64k_5.13.0-22.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.13.0-28-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic-64k_5.13.0-28.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-29-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic-64k_5.13.0-29.32~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-30-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic-64k_5.13.0-30.33~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-32-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic-64k_5.13.0-32.35~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "41~20.04.1", - "kernelrelease": "5.13.0-36-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic-64k_5.13.0-36.41~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "42~20.04.1", - "kernelrelease": "5.13.0-37-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic-64k_5.13.0-37.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.13.0-40-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic-64k_5.13.0-40.45~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.13.0-41-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic-64k_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb" - ] - }, - { - "kernelversion": "48~20.04.1", - "kernelrelease": "5.13.0-43-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic-64k_5.13.0-43.48~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.13.0-44-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic-64k_5.13.0-44.49~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.15.0-1015-gke-5.15", - "target": "ubuntu-gke-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1015-gke_5.15.0-1015.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1015_5.15.0-1015.18~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.15.0-1017-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1017_5.15.0-1017.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.15.0-1017-oracle-5.15", - "target": "ubuntu-oracle-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1017_5.15.0-1017.22~20.04.1_all.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.15.0-1019-aws-5.15", - "target": "ubuntu-aws-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1019-aws_5.15.0-1019.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1019_5.15.0-1019.23~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.15.0-1019-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1019-azure_5.15.0-1019.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1019_5.15.0-1019.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24~20.04.3", - "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency-64k_5.15.0-24.24~20.04.3_arm64.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.15.0-41-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-41-lowlatency-64k_5.15.0-41.44~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.15.0-41-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic-64k_5.15.0-41.44~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1045-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1045-bluefield_5.4.0-1045.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1045_5.4.0-1045.50_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1081-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1081_5.4.0-1081.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1081-gke_5.4.0-1081.87_arm64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-1082-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1082_5.4.0-1082.90_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-1084-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1084-aws_5.4.0-1084.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1084_5.4.0-1084.91_all.deb" - ] - }, - { - "kernelversion": "95", - "kernelrelease": "5.4.0-1087-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1087_5.4.0-1087.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95_arm64.deb" - ] - }, - { - "kernelversion": "95", - "kernelrelease": "5.4.0-1090-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1090_5.4.0-1090.95_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1090-azure_5.4.0-1090.95_arm64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.8.0-67-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic-64k_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb" - ] - }, - { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.11.0-1014-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "21~20.04.2", - "kernelrelease": "5.11.0-1020-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "22~20.04.2", - "kernelrelease": "5.11.0-1021-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" - ] - }, - { - "kernelversion": "31~20.04.2", - "kernelrelease": "5.11.0-1028-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-22-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic-64k_5.11.0-22.23~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-25-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic-64k_5.11.0-25.27~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.11.0-27-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic-64k_5.11.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.11.0-34-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic-64k_5.11.0-34.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.11.0-36-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic-64k_5.11.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "41~20.04.2", - "kernelrelease": "5.11.0-37-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic-64k_5.11.0-37.41~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "42~20.04.1", - "kernelrelease": "5.11.0-38-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic-64k_5.11.0-38.42~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "44~20.04.2", - "kernelrelease": "5.11.0-40-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic-64k_5.11.0-40.44~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.11.0-41-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic-64k_5.11.0-41.45~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "47~20.04.2", - "kernelrelease": "5.11.0-43-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic-64k_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb" - ] - }, - { - "kernelversion": "48~20.04.2", - "kernelrelease": "5.11.0-44-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic-64k_5.11.0-44.48~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.11.0-46-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic-64k_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb" - ] - }, - { - "kernelversion": "9~20.04.2", - "kernelrelease": "5.13.0-1008-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb" - ] - }, - { - "kernelversion": "12~20.04.1", - "kernelrelease": "5.13.0-1011-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "13~20.04.2", - "kernelrelease": "5.13.0-1011-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" - ] - }, - { - "kernelversion": "13~20.04.1", - "kernelrelease": "5.13.0-1012-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1015-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.13.0-1016-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-1021-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1021-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1021-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1022-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1022-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.13.0-1025-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1025-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.13.0-1028-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1029-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.13.0-1029-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1030-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1031-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.13.0-1031-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "39~20.04.1", - "kernelrelease": "5.13.0-1033-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-1034-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb" - ] - }, - { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.13.0-1036-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" - ] - }, - { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-23-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic-64k_5.13.0-23.23~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-25-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic-64k_5.13.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-27-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic-64k_5.13.0-27.29~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-35-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic-64k_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.13.0-39-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic-64k_5.13.0-39.44~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "54~20.04.1", - "kernelrelease": "5.13.0-48-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic-64k_5.13.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "58~20.04.1", - "kernelrelease": "5.13.0-51-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic-64k_5.13.0-51.58~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb" - ] - }, - { - "kernelversion": "59~20.04.1", - "kernelrelease": "5.13.0-52-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic-64k_5.13.0-52.59~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1006-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "8~20.04.1", - "kernelrelease": "5.15.0-1007-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb" - ] - }, - { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1007-oracle-5.15", - "target": "ubuntu-oracle-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1008-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb" - ] - }, - { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.15.0-1011-gke-5.15", - "target": "ubuntu-gke-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1011-gke_5.15.0-1011.14~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1011_5.15.0-1011.14~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.15.0-1013-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1013_5.15.0-1013.18~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1013-oracle-5.15", - "target": "ubuntu-oracle-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1013_5.15.0-1013.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1014-gke-5.15", - "target": "ubuntu-gke-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1014-gke_5.15.0-1014.17~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1014-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.15.0-1015-aws-5.15", - "target": "ubuntu-aws-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.15.0-1016-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1016_5.15.0-1016.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.15.0-1016-oracle-5.15", - "target": "ubuntu-oracle-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1016_5.15.0-1016.20~20.04.1_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.15.0-1017-aws-5.15", - "target": "ubuntu-aws-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1017-aws_5.15.0-1017.21~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1017_5.15.0-1017.21~20.04.1_all.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.15.0-1017-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1017-azure_5.15.0-1017.20~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1017_5.15.0-1017.20~20.04.1_all.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.15.0-42-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-42_5.15.0-42.45~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-42-lowlatency-64k_5.15.0-42.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-42-lowlatency_5.15.0-42.45~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.15.0-43-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-43-generic_5.15.0-43.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-43-generic-64k_5.15.0-43.46~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.15.0-43-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-43-lowlatency-64k_5.15.0-43.46~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.15.0-46-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-46-lowlatency-64k_5.15.0-46.49~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.15.0-46-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-46-generic_5.15.0-46.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-46-generic-64k_5.15.0-46.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "5.4.0-100-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_arm64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1011-raspi_5.4.0-1011.11_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1011_5.4.0-1011.11_arm64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_arm64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.4.0-1011-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1011-bluefield_5.4.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1011_5.4.0-1011.14_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1012-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1012-bluefield_5.4.0-1012.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1012_5.4.0-1012.15_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.4.0-1012-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1012_5.4.0-1012.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1012-raspi_5.4.0-1012.12_arm64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.4.0-1013-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1013_5.4.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1013-bluefield_5.4.0-1013.16_arm64.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.4.0-1013-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1013-raspi_5.4.0-1013.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1013_5.4.0-1013.13_arm64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1015_5.4.0-1015.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1015-raspi_5.4.0-1015.15_arm64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_arm64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.4.0-1016-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1016-bluefield_5.4.0-1016.19_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1016_5.4.0-1016.19_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.4.0-1016-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1016-raspi_5.4.0-1016.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1016_5.4.0-1016.17_arm64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.4.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1018-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1018_5.4.0-1018.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1018-raspi_5.4.0-1018.20_arm64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1019-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1019-bluefield_5.4.0-1019.22_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1019_5.4.0-1019.22_all.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.4.0-1019-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1019_5.4.0-1019.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1019-raspi_5.4.0-1019.21_arm64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.4.0-1020-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1020_5.4.0-1020.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1020-bluefield_5.4.0-1020.23_arm64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1021-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1021_5.4.0-1021.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1021-raspi_5.4.0-1021.24_arm64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1021-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1021_5.4.0-1021.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1021-bluefield_5.4.0-1021.24_arm64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_arm64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1022-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1022-raspi_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1022_5.4.0-1022.25_arm64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1022-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1022-bluefield_5.4.0-1022.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1022_5.4.0-1022.25_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.4.0-1023-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1023_5.4.0-1023.26_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1023-bluefield_5.4.0-1023.26_arm64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_arm64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.4.0-1025-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1025_5.4.0-1025.28_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1025-bluefield_5.4.0-1025.28_arm64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.4.0-1025-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1025_5.4.0-1025.28_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1025-raspi_5.4.0-1025.28_arm64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1026-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1026-bluefield_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1026_5.4.0-1026.29_all.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1026-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1026_5.4.0-1026.29_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1026-raspi_5.4.0-1026.29_arm64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_arm64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.4.0-1028-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1028-bluefield_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1028_5.4.0-1028.31_all.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.4.0-1028-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1028_5.4.0-1028.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1028-raspi_5.4.0-1028.31_arm64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.4.0-1029-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-1029-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1029_5.4.0-1029.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1029-raspi_5.4.0-1029.32_arm64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-1030-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1030_5.4.0-1030.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1030-bluefield_5.4.0-1030.33_arm64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-1030-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1030-raspi_5.4.0-1030.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1030_5.4.0-1030.33_arm64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1032-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1032_5.4.0-1032.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1032-raspi_5.4.0-1032.35_arm64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1032-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1032_5.4.0-1032.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1032-bluefield_5.4.0-1032.35_arm64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.4.0-1033-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1033_5.4.0-1033.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1033-raspi_5.4.0-1033.36_arm64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1034-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1034_5.4.0-1034.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1034-raspi_5.4.0-1034.37_arm64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1035-bluefield_5.4.0-1035.38_arm64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1035-raspi_5.4.0-1035.38_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1035_5.4.0-1035.38_arm64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1036-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1036_5.4.0-1036.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1036-bluefield_5.4.0-1036.39_arm64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1036-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1036_5.4.0-1036.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1036-raspi_5.4.0-1036.39_arm64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1037-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_arm64.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.4.0-1038-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1038-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1038_5.4.0-1038.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1038-raspi_5.4.0-1038.41_arm64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1039-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "5.4.0-104-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_arm64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-1040-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1040_5.4.0-1040.44_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1040-bluefield_5.4.0-1040.44_arm64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1041-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1041_5.4.0-1041.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1041-raspi_5.4.0-1041.45_arm64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "5.4.0-1042-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1042-bluefield_5.4.0-1042.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1042_5.4.0-1042.47_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1042-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1042_5.4.0-1042.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1042-raspi_5.4.0-1042.46_arm64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1043-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "5.4.0-1043-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1043_5.4.0-1043.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1043-raspi_5.4.0-1043.47_arm64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1044-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1044-bluefield_5.4.0-1044.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1044_5.4.0-1044.49_all.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "5.4.0-1044-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1044-raspi_5.4.0-1044.48_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1044_5.4.0-1044.48_arm64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1045-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1045-raspi_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1045_5.4.0-1045.49_arm64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1045-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_arm64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1046_5.4.0-1046.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1046-raspi_5.4.0-1046.50_arm64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_arm64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-1047-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1047_5.4.0-1047.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1047-raspi_5.4.0-1047.52_arm64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_arm64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-1048-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1048-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1048_5.4.0-1048.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1048-raspi_5.4.0-1048.53_arm64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "5.4.0-105-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_arm64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-1050-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1050-raspi_5.4.0-1050.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1050_5.4.0-1050.56_arm64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_arm64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-1052-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1052-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1052-raspi_5.4.0-1052.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1052_5.4.0-1052.58_arm64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1053-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1053-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1053_5.4.0-1053.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1053-raspi_5.4.0-1053.60_arm64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1054-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1055-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1055-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1055-raspi_5.4.0-1055.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1055_5.4.0-1055.62_arm64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1056-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1056-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "5.4.0-1056-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1056-raspi_5.4.0-1056.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1056_5.4.0-1056.63_arm64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.4.0-1057-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_arm64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_arm64.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-1058-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1058_5.4.0-1058.65_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1058-raspi_5.4.0-1058.65_arm64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_arm64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "5.4.0-1059-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1059-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1059_5.4.0-1059.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1059-raspi_5.4.0-1059.67_arm64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "5.4.0-1060-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_arm64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1060-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1060_5.4.0-1060.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1060-raspi_5.4.0-1060.68_arm64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_arm64.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-1061-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_arm64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1062-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.4.0-1062-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1062_5.4.0-1062.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1062-raspi_5.4.0-1062.70_arm64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_arm64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1063-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1064-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_arm64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-1065-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1065_5.4.0-1065.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1065-raspi_5.4.0-1065.75_arm64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "5.4.0-1066-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_arm64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1066-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1066_5.4.0-1066.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1066-raspi_5.4.0-1066.76_arm64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1067-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_arm64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1068-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-1068-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1068_5.4.0-1068.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1068-raspi_5.4.0-1068.78_arm64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-1069-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1069-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1069_5.4.0-1069.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1069-raspi_5.4.0-1069.79_arm64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "5.4.0-107-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_arm64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1070-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_arm64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1071-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_arm64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_arm64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1073-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_arm64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_arm64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_arm64.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "5.4.0-1076-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_arm64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "5.4.0-1076-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1077-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_arm64.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1078_5.4.0-1078.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1078-gke_5.4.0-1078.84_arm64.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "5.4.0-1078-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "5.4.0-1078-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_arm64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1079-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1080-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_arm64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1080-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "5.4.0-1080-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_arm64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "5.4.0-1080-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1080_5.4.0-1080.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.4.0-1080-gke_5.4.0-1080.86_arm64.deb" - ] - }, - { - "kernelversion": "88", - "kernelrelease": "5.4.0-1081-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_arm64.deb" - ] - }, - { - "kernelversion": "89", - "kernelrelease": "5.4.0-1081-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1081_5.4.0-1081.89_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89_arm64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-1083-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1083_5.4.0-1083.90_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1083-aws_5.4.0-1083.90_arm64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1083-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "5.4.0-1084-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1084_5.4.0-1084.92_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92_arm64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-1085-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_arm64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-1086-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "5.4.0-1086-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1086_5.4.0-1086.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94_arm64.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "5.4.0-1089-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1089_5.4.0-1089.94_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.4.0-1089-azure_5.4.0-1089.94_arm64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "5.4.0-109-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "5.4.0-110-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_arm64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "5.4.0-113-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_arm64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "5.4.0-117-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "5.4.0-120-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_arm64.deb" - ] - }, - { - "kernelversion": "137", - "kernelrelease": "5.4.0-121-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_arm64.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "5.4.0-122-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_arm64.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "5.4.0-124-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-124-generic_5.4.0-124.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-124_5.4.0-124.140_all.deb" - ] - }, - { - "kernelversion": "141", - "kernelrelease": "5.4.0-125-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-125_5.4.0-125.141_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-125-generic_5.4.0-125.141_arm64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-28-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-29-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_arm64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-31-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_arm64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-33-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_arm64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-37-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-39-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-40-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_arm64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-42-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_arm64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-45-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_arm64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-47-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-48-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_arm64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-51-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_arm64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-52-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_arm64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-53-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-58-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-59-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_arm64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-60-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_arm64.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.4.0-62-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-65-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "5.4.0-66-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_arm64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-67-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_arm64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-70-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-71-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_arm64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-72-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "5.4.0-73-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_arm64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "5.4.0-74-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_arm64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "5.4.0-77-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_arm64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-80-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-81-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "5.4.0-84-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "5.4.0-86-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "5.4.0-88-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_arm64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "5.4.0-89-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "5.4.0-90-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "5.4.0-91-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_arm64.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "5.4.0-92-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_arm64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "5.4.0-94-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "5.4.0-96-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "5.4.0-97-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_arm64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "5.4.0-99-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb" - ] - }, - { - "kernelversion": "32~20.04.2", - "kernelrelease": "5.8.0-1031-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.8.0-1033-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1037-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "39~20.04.1", - "kernelrelease": "5.8.0-1038-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-1041-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.8.0-1042-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.8.0-33-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic-64k_5.8.0-33.36~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb" - ] - }, - { - "kernelversion": "37~20.04.2", - "kernelrelease": "5.8.0-34-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic-64k_5.8.0-34.37~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-36-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic-64k_5.8.0-36.40~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb" - ] - }, - { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-38-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic-64k_5.8.0-38.43~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.8.0-41-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic-64k_5.8.0-41.46~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb" - ] - }, - { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.8.0-43-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic-64k_5.8.0-43.49~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb" - ] - }, - { - "kernelversion": "50~20.04.1", - "kernelrelease": "5.8.0-44-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic-64k_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb" - ] - }, - { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.8.0-45-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic-64k_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" - ] - }, - { - "kernelversion": "54~20.04.1", - "kernelrelease": "5.8.0-48-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic-64k_5.8.0-48.54~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "55~20.04.1", - "kernelrelease": "5.8.0-49-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic-64k_5.8.0-49.55~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "56~20.04.1", - "kernelrelease": "5.8.0-50-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic-64k_5.8.0-50.56~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "60~20.04.1", - "kernelrelease": "5.8.0-53-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic-64k_5.8.0-53.60~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb" - ] - }, - { - "kernelversion": "62~20.04.1", - "kernelrelease": "5.8.0-55-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic-64k_5.8.0-55.62~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "66~20.04.1", - "kernelrelease": "5.8.0-59-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic-64k_5.8.0-59.66~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "71~20.04.1", - "kernelrelease": "5.8.0-63-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic-64k_5.8.0-63.71~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb" - ] - }, - { - "kernelversion": "9~20.04.2", - "kernelrelease": "5.11.0-1009-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1012-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.15.0-1013-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.15.0-1014-aws-5.15", - "target": "ubuntu-aws-5.15", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.4.0-1007-bluefield", - "target": "ubuntu-bluefield", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-headers-5.4.0-1007-bluefield_5.4.0-1007.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-bluefield/linux-bluefield-headers-5.4.0-1007_5.4.0-1007.10_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1049-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-1083-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1083_5.4.0-1083.91_arm64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-54-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_arm64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-64-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb" - ] - }, - { - "kernelversion": "35~20.04.2", - "kernelrelease": "5.8.0-1034-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_arm64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.8.0-23-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic-64k_5.8.0-23.24~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.8.0-25-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic-64k_5.8.0-25.26~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.8.0-28-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic-64k_5.8.0-28.30~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.8.0-29-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic-64k_5.8.0-29.31~20.04.1_arm64.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.8.0-40-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic-64k_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.4.0-1008-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.4.0-1008-raspi_5.4.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.4.0-1008_5.4.0-1008.8_arm64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.4.0-26-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_arm64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1007-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1007_5.15.0-1007.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1007-raspi_5.15.0-1007.7_arm64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.15.0-1014-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1014-raspi_5.15.0-1014.16_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1014_5.15.0-1014.16_arm64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.15.0-1015-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1015-gke_5.15.0-1015.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1015_5.15.0-1015.18_arm64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.15.0-1017-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1017_5.15.0-1017.23_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23_arm64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.15.0-1017-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1017_5.15.0-1017.22_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22_arm64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.15.0-1019-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1019_5.15.0-1019.23_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1019-aws_5.15.0-1019.23_arm64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.15.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1019_5.15.0-1019.24_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1019-azure_5.15.0-1019.24_arm64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.15.0-47-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-47_5.15.0-47.51_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-47-generic_5.15.0-47.51_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-47-generic-64k_5.15.0-47.51_arm64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.15.0-47-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-47-lowlatency-64k_5.15.0-47.53_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-47_5.15.0-47.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-47-lowlatency_5.15.0-47.53_arm64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_arm64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_arm64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_arm64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1005-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_arm64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-nvidia", - "target": "ubuntu-nvidia", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-nvidia/linux-nvidia-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-nvidia/linux-headers-5.15.0-1005-nvidia-64k_5.15.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-nvidia/linux-headers-5.15.0-1005-nvidia_5.15.0-1005.5_arm64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1005-raspi_5.15.0-1005.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1005_5.15.0-1005.5_arm64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1006-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_arm64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1007-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_arm64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_arm64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.15.0-1008-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_arm64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1008-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1008-raspi_5.15.0-1008.8_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1008_5.15.0-1008.8_arm64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.15.0-1009-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.15.0-1010-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.15.0-1010-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_arm64.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.15.0-1010-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_arm64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_arm64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_arm64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.15.0-1011-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.15.0-1011-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1011-raspi_5.15.0-1011.13_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1011_5.15.0-1011.13_arm64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.15.0-1012-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_arm64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1012-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1012_5.15.0-1012.14_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1012-raspi_5.15.0-1012.14_arm64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1013-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1013-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_arm64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.15.0-1013-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1013_5.15.0-1013.18_arm64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.15.0-1013-raspi", - "target": "ubuntu-raspi", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-raspi-headers-5.15.0-1013_5.15.0-1013.15_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-raspi/linux-headers-5.15.0-1013-raspi_5.15.0-1013.15_arm64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1014-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_arm64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1014-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1014_5.15.0-1014.17_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1014-gke_5.15.0-1014.17_arm64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.15.0-1015-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_arm64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.15.0-1016-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1016_5.15.0-1016.21_arm64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.15.0-1016-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1016_5.15.0-1016.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20_arm64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.15.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1017_5.15.0-1017.21_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1017-aws_5.15.0-1017.21_arm64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.15.0-1017-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1017_5.15.0-1017.20_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1017-azure_5.15.0-1017.20_arm64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic-64k_5.15.0-33.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_arm64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency-64k_5.15.0-33.34_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_arm64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.15.0-37-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-37-generic-64k_5.15.0-37.39_arm64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.15.0-37-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency-64k_5.15.0-37.39_arm64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.15.0-39-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency-64k_5.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.15.0-39-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic-64k_5.15.0-39.42_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_arm64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.15.0-41-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41-generic-64k_5.15.0-41.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.15.0-41-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-41_5.15.0-41.44_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-41-lowlatency-64k_5.15.0-41.44_arm64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.15.0-43-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-43-generic-64k_5.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-43_5.15.0-43.46_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-43-generic_5.15.0-43.46_arm64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.15.0-43-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-43-lowlatency-64k_5.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-43_5.15.0-43.46_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.15.0-46-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-46-generic-64k_5.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-46-generic_5.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-46_5.15.0-46.49_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.15.0-46-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-46_5.15.0-46.49_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-46-lowlatency-64k_5.15.0-46.49_arm64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1004-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_arm64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1006-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_arm64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1006-gke", - "target": "ubuntu-gke", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_arm64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1007-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_arm64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1008-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.15.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_arm64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.15.0-1013-azure", - "target": "ubuntu-azure", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_arm64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.15.0-1014-aws", - "target": "ubuntu-aws", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.15.0-30-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30-generic-64k_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.15.0-30-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency-64k_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.15.0-35-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-35-generic-64k_5.15.0-35.36_arm64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency-64k_5.15.0-35.36_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.15.0-40-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-40-generic-64k_5.15.0-40.43_arm64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.15.0-40-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency-64k_5.15.0-40.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_arm64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.15.0-1002-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1003-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_arm64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.15.0-25-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-5.15.0-25-generic-64k_5.15.0-25.25_arm64.deb" - ] - }, - { - "kernelversion": "147", - "kernelrelease": "3.13.0-100-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_arm64.deb" - ] - }, - { - "kernelversion": "148", - "kernelrelease": "3.13.0-101-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" - ] - }, - { - "kernelversion": "150", - "kernelrelease": "3.13.0-103-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb" - ] - }, - { - "kernelversion": "152", - "kernelrelease": "3.13.0-105-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb" - ] - }, - { - "kernelversion": "153", - "kernelrelease": "3.13.0-106-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb" - ] - }, - { - "kernelversion": "154", - "kernelrelease": "3.13.0-107-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb" - ] - }, - { - "kernelversion": "155", - "kernelrelease": "3.13.0-108-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_arm64.deb" - ] - }, - { - "kernelversion": "156", - "kernelrelease": "3.13.0-109-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_arm64.deb" - ] - }, - { - "kernelversion": "157", - "kernelrelease": "3.13.0-110-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb" - ] - }, - { - "kernelversion": "159", - "kernelrelease": "3.13.0-112-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_arm64.deb" - ] - }, - { - "kernelversion": "162", - "kernelrelease": "3.13.0-115-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_arm64.deb" - ] - }, - { - "kernelversion": "163", - "kernelrelease": "3.13.0-116-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_arm64.deb" - ] - }, - { - "kernelversion": "164", - "kernelrelease": "3.13.0-117-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_arm64.deb" - ] - }, - { - "kernelversion": "166", - "kernelrelease": "3.13.0-119-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_arm64.deb" - ] - }, - { - "kernelversion": "170", - "kernelrelease": "3.13.0-121-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_arm64.deb" - ] - }, - { - "kernelversion": "172", - "kernelrelease": "3.13.0-123-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb" - ] - }, - { - "kernelversion": "174", - "kernelrelease": "3.13.0-125-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb" - ] - }, - { - "kernelversion": "175", - "kernelrelease": "3.13.0-126-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_arm64.deb" - ] - }, - { - "kernelversion": "177", - "kernelrelease": "3.13.0-128-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_arm64.deb" - ] - }, - { - "kernelversion": "178", - "kernelrelease": "3.13.0-129-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb" - ] - }, - { - "kernelversion": "181", - "kernelrelease": "3.13.0-132-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_arm64.deb" - ] - }, - { - "kernelversion": "182", - "kernelrelease": "3.13.0-133-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_arm64.deb" - ] - }, - { - "kernelversion": "184", - "kernelrelease": "3.13.0-135-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb" - ] - }, - { - "kernelversion": "186", - "kernelrelease": "3.13.0-137-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_arm64.deb" - ] - }, - { - "kernelversion": "188", - "kernelrelease": "3.13.0-139-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb" - ] - }, - { - "kernelversion": "190", - "kernelrelease": "3.13.0-141-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb" - ] - }, - { - "kernelversion": "191", - "kernelrelease": "3.13.0-142-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb" - ] - }, - { - "kernelversion": "192", - "kernelrelease": "3.13.0-143-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_arm64.deb" - ] - }, - { - "kernelversion": "193", - "kernelrelease": "3.13.0-144-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb" - ] - }, - { - "kernelversion": "196", - "kernelrelease": "3.13.0-147-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb" - ] - }, - { - "kernelversion": "199", - "kernelrelease": "3.13.0-149-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_arm64.deb" - ] - }, - { - "kernelversion": "201", - "kernelrelease": "3.13.0-151-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb" - ] - }, - { - "kernelversion": "203", - "kernelrelease": "3.13.0-153-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb" - ] - }, - { - "kernelversion": "205", - "kernelrelease": "3.13.0-155-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb" - ] - }, - { - "kernelversion": "206", - "kernelrelease": "3.13.0-156-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" - ] - }, - { - "kernelversion": "207", - "kernelrelease": "3.13.0-157-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb" - ] - }, - { - "kernelversion": "210", - "kernelrelease": "3.13.0-160-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_arm64.deb" - ] - }, - { - "kernelversion": "211", - "kernelrelease": "3.13.0-161-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" - ] - }, - { - "kernelversion": "212", - "kernelrelease": "3.13.0-162-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb" - ] - }, - { - "kernelversion": "214", - "kernelrelease": "3.13.0-164-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb" - ] - }, - { - "kernelversion": "215", - "kernelrelease": "3.13.0-165-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" - ] - }, - { - "kernelversion": "216", - "kernelrelease": "3.13.0-166-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" - ] - }, - { - "kernelversion": "217", - "kernelrelease": "3.13.0-167-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb" - ] - }, - { - "kernelversion": "218", - "kernelrelease": "3.13.0-168-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" - ] - }, - { - "kernelversion": "220", - "kernelrelease": "3.13.0-170-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_arm64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "3.13.0-24-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "3.13.0-27-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "3.13.0-29-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_arm64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "3.13.0-30-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "3.13.0-32-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_arm64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "3.13.0-33-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "3.13.0-34-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_arm64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "3.13.0-35-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "3.13.0-36-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_arm64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "3.13.0-37-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "3.13.0-39-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "3.13.0-40-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_arm64.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "3.13.0-41-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_arm64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "3.13.0-43-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_arm64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "3.13.0-44-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_arm64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "3.13.0-46-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "3.13.0-48-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_arm64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "3.13.0-49-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "3.13.0-51-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "3.13.0-52-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" - ] - }, - { - "kernelversion": "89", - "kernelrelease": "3.13.0-53-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_arm64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "3.13.0-54-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "3.13.0-55-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb" - ] - }, - { - "kernelversion": "95", - "kernelrelease": "3.13.0-57-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "3.13.0-58-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "3.13.0-59-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_arm64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "3.13.0-61-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "3.13.0-62-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_arm64.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "3.13.0-63-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_arm64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "3.13.0-65-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_arm64.deb" - ] - }, - { - "kernelversion": "108", - "kernelrelease": "3.13.0-66-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_arm64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "3.13.0-67-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_arm64.deb" - ] - }, - { - "kernelversion": "111", - "kernelrelease": "3.13.0-68-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_arm64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "3.13.0-70-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_arm64.deb" - ] - }, - { - "kernelversion": "114", - "kernelrelease": "3.13.0-71-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "3.13.0-73-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "3.13.0-74-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "3.13.0-76-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_arm64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "3.13.0-77-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_arm64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "3.13.0-79-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "3.13.0-83-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb" - ] - }, - { - "kernelversion": "129", - "kernelrelease": "3.13.0-85-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "3.13.0-86-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb" - ] - }, - { - "kernelversion": "133", - "kernelrelease": "3.13.0-87-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_arm64.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "3.13.0-88-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "3.13.0-91-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_arm64.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "3.13.0-92-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_arm64.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "3.13.0-93-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_arm64.deb" - ] - }, - { - "kernelversion": "142", - "kernelrelease": "3.13.0-95-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_arm64.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "3.13.0-96-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_arm64.deb" - ] - }, - { - "kernelversion": "145", - "kernelrelease": "3.13.0-98-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_arm64.deb" - ] - }, - { - "kernelversion": "33~14.04.2", - "kernelrelease": "3.16.0-25-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" - ] - }, - { - "kernelversion": "35~14.04.1", - "kernelrelease": "3.16.0-26-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" - ] - }, - { - "kernelversion": "38~14.04.1", - "kernelrelease": "3.16.0-28-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "39~14.04.1", - "kernelrelease": "3.16.0-29-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb" - ] - }, - { - "kernelversion": "43~14.04.1", - "kernelrelease": "3.16.0-31-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "44~14.04.1", - "kernelrelease": "3.16.0-33-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "47~14.04.1", - "kernelrelease": "3.16.0-34-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" - ] - }, - { - "kernelversion": "48~14.04.1", - "kernelrelease": "3.16.0-36-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" - ] - }, - { - "kernelversion": "51~14.04.1", - "kernelrelease": "3.16.0-37-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "52~14.04.1", - "kernelrelease": "3.16.0-38-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "53~14.04.1", - "kernelrelease": "3.16.0-39-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb" - ] - }, - { - "kernelversion": "57~14.04.1", - "kernelrelease": "3.16.0-41-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb" - ] - }, - { - "kernelversion": "58~14.04.1", - "kernelrelease": "3.16.0-43-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" - ] - }, - { - "kernelversion": "59~14.04.1", - "kernelrelease": "3.16.0-44-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "60~14.04.1", - "kernelrelease": "3.16.0-45-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb" - ] - }, - { - "kernelversion": "62~14.04.1", - "kernelrelease": "3.16.0-46-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "64~14.04.1", - "kernelrelease": "3.16.0-48-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "65~14.04.1", - "kernelrelease": "3.16.0-49-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "67~14.04.1", - "kernelrelease": "3.16.0-50-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "69~14.04.1", - "kernelrelease": "3.16.0-51-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "71~14.04.1", - "kernelrelease": "3.16.0-52-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb" - ] - }, - { - "kernelversion": "72~14.04.1", - "kernelrelease": "3.16.0-53-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "74~14.04.1", - "kernelrelease": "3.16.0-55-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb" - ] - }, - { - "kernelversion": "75~14.04.1", - "kernelrelease": "3.16.0-56-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "77~14.04.1", - "kernelrelease": "3.16.0-57-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "79~14.04.1", - "kernelrelease": "3.16.0-59-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "80~14.04.1", - "kernelrelease": "3.16.0-60-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "83~14.04.1", - "kernelrelease": "3.16.0-62-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "87~14.04.1", - "kernelrelease": "3.16.0-67-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" - ] - }, - { - "kernelversion": "89~14.04.1", - "kernelrelease": "3.16.0-69-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "90~14.04.1", - "kernelrelease": "3.16.0-70-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb" - ] - }, - { - "kernelversion": "92~14.04.1", - "kernelrelease": "3.16.0-71-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb" - ] - }, - { - "kernelversion": "95~14.04.1", - "kernelrelease": "3.16.0-73-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" - ] - }, - { - "kernelversion": "98~14.04.1", - "kernelrelease": "3.16.0-76-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "99~14.04.1", - "kernelrelease": "3.16.0-77-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "20~14.04.1", - "kernelrelease": "3.19.0-20-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb" - ] - }, - { - "kernelversion": "21~14.04.1", - "kernelrelease": "3.19.0-21-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "22~14.04.1", - "kernelrelease": "3.19.0-22-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" - ] - }, - { - "kernelversion": "24~14.04.1", - "kernelrelease": "3.19.0-23-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "26~14.04.1", - "kernelrelease": "3.19.0-25-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "28~14.04.1", - "kernelrelease": "3.19.0-26-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "30~14.04.1", - "kernelrelease": "3.19.0-28-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "34~14.04.1", - "kernelrelease": "3.19.0-30-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb" - ] - }, - { - "kernelversion": "36~14.04.1", - "kernelrelease": "3.19.0-31-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" - ] - }, - { - "kernelversion": "37~14.04.1", - "kernelrelease": "3.19.0-32-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "38~14.04.1", - "kernelrelease": "3.19.0-33-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "42~14.04.1", - "kernelrelease": "3.19.0-37-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb" - ] - }, - { - "kernelversion": "44~14.04.1", - "kernelrelease": "3.19.0-39-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb" - ] - }, - { - "kernelversion": "46~14.04.2", - "kernelrelease": "3.19.0-41-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_arm64.deb" - ] - }, - { - "kernelversion": "48~14.04.1", - "kernelrelease": "3.19.0-42-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb" - ] - }, - { - "kernelversion": "49~14.04.1", - "kernelrelease": "3.19.0-43-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" - ] - }, - { - "kernelversion": "53~14.04.1", - "kernelrelease": "3.19.0-47-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "55~14.04.1", - "kernelrelease": "3.19.0-49-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb" - ] - }, - { - "kernelversion": "58~14.04.1", - "kernelrelease": "3.19.0-51-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" - ] - }, - { - "kernelversion": "62~14.04.1", - "kernelrelease": "3.19.0-56-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb" - ] - }, - { - "kernelversion": "64~14.04.1", - "kernelrelease": "3.19.0-58-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb" - ] - }, - { - "kernelversion": "66~14.04.1", - "kernelrelease": "3.19.0-59-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb" - ] - }, - { - "kernelversion": "69~14.04.1", - "kernelrelease": "3.19.0-61-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "72~14.04.1", - "kernelrelease": "3.19.0-64-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "73~14.04.1", - "kernelrelease": "3.19.0-65-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb" - ] - }, - { - "kernelversion": "74~14.04.1", - "kernelrelease": "3.19.0-66-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "76~14.04.1", - "kernelrelease": "3.19.0-68-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" - ] - }, - { - "kernelversion": "77~14.04.1", - "kernelrelease": "3.19.0-69-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "79~14.04.1", - "kernelrelease": "3.19.0-71-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "81~14.04.1", - "kernelrelease": "3.19.0-73-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" - ] - }, - { - "kernelversion": "82~14.04.1", - "kernelrelease": "3.19.0-74-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" - ] - }, - { - "kernelversion": "83~14.04.1", - "kernelrelease": "3.19.0-75-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb" - ] - }, - { - "kernelversion": "85~14.04.1", - "kernelrelease": "3.19.0-77-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "86~14.04.1", - "kernelrelease": "3.19.0-78-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb" - ] - }, - { - "kernelversion": "87~14.04.1", - "kernelrelease": "3.19.0-79-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb" - ] - }, - { - "kernelversion": "88~14.04.1", - "kernelrelease": "3.19.0-80-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "22~14.04.1", - "kernelrelease": "4.2.0-18-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "23~14.04.1", - "kernelrelease": "4.2.0-19-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" - ] - }, - { - "kernelversion": "25~14.04.1", - "kernelrelease": "4.2.0-21-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" - ] - }, - { - "kernelversion": "27~14.04.1", - "kernelrelease": "4.2.0-22-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "28~14.04.1", - "kernelrelease": "4.2.0-23-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "30~14.04.1", - "kernelrelease": "4.2.0-25-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "32~14.04.1", - "kernelrelease": "4.2.0-27-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "36~14.04.1", - "kernelrelease": "4.2.0-30-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "39~14.04.1", - "kernelrelease": "4.2.0-34-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "40~14.04.1", - "kernelrelease": "4.2.0-35-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "42~14.04.1", - "kernelrelease": "4.2.0-36-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "45~14.04.1", - "kernelrelease": "4.2.0-38-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb" - ] - }, - { - "kernelversion": "48~14.04.1", - "kernelrelease": "4.2.0-41-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb" - ] - }, - { - "kernelversion": "49~14.04.1", - "kernelrelease": "4.2.0-42-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "124~14.04.1", - "kernelrelease": "4.4.0-101-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "126~14.04.1", - "kernelrelease": "4.4.0-103-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb" - ] - }, - { - "kernelversion": "127~14.04.1", - "kernelrelease": "4.4.0-104-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "131~14.04.1", - "kernelrelease": "4.4.0-108-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "132~14.04.1", - "kernelrelease": "4.4.0-109-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb" - ] - }, - { - "kernelversion": "134~14.04.1", - "kernelrelease": "4.4.0-111-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "135~14.04.1", - "kernelrelease": "4.4.0-112-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "140~14.04.1", - "kernelrelease": "4.4.0-116-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" - ] - }, - { - "kernelversion": "143~14.04.1", - "kernelrelease": "4.4.0-119-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb" - ] - }, - { - "kernelversion": "145~14.04.1", - "kernelrelease": "4.4.0-121-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" - ] - }, - { - "kernelversion": "148~14.04.1", - "kernelrelease": "4.4.0-124-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "153~14.04.1", - "kernelrelease": "4.4.0-127-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb" - ] - }, - { - "kernelversion": "154~14.04.1", - "kernelrelease": "4.4.0-128-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb" - ] - }, - { - "kernelversion": "156~14.04.1", - "kernelrelease": "4.4.0-130-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb" - ] - }, - { - "kernelversion": "159~14.04.1", - "kernelrelease": "4.4.0-133-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" - ] - }, - { - "kernelversion": "160~14.04.1", - "kernelrelease": "4.4.0-134-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" - ] - }, - { - "kernelversion": "163~14.04.1", - "kernelrelease": "4.4.0-137-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "164~14.04.1", - "kernelrelease": "4.4.0-138-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "165~14.04.1", - "kernelrelease": "4.4.0-139-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" - ] - }, - { - "kernelversion": "167~14.04.1", - "kernelrelease": "4.4.0-141-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "168~14.04.1", - "kernelrelease": "4.4.0-142-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb" - ] - }, - { - "kernelversion": "169~14.04.2", - "kernelrelease": "4.4.0-143-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_arm64.deb" - ] - }, - { - "kernelversion": "170~14.04.1", - "kernelrelease": "4.4.0-144-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "174~14.04.1", - "kernelrelease": "4.4.0-148-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb" - ] - }, - { - "kernelversion": "37~14.04.1", - "kernelrelease": "4.4.0-21-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb" - ] - }, - { - "kernelversion": "40~14.04.1", - "kernelrelease": "4.4.0-22-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "43~14.04.1", - "kernelrelease": "4.4.0-24-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "47~14.04.1", - "kernelrelease": "4.4.0-28-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "50~14.04.1", - "kernelrelease": "4.4.0-31-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb" - ] - }, - { - "kernelversion": "53~14.04.1", - "kernelrelease": "4.4.0-34-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb" - ] - }, - { - "kernelversion": "55~14.04.1", - "kernelrelease": "4.4.0-36-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "57~14.04.1", - "kernelrelease": "4.4.0-38-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "62~14.04.1", - "kernelrelease": "4.4.0-42-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb" - ] - }, - { - "kernelversion": "66~14.04.1", - "kernelrelease": "4.4.0-45-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" - ] - }, - { - "kernelversion": "68~14.04.1", - "kernelrelease": "4.4.0-47-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb" - ] - }, - { - "kernelversion": "72~14.04.1", - "kernelrelease": "4.4.0-51-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" - ] - }, - { - "kernelversion": "74~14.04.1", - "kernelrelease": "4.4.0-53-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "78~14.04.1", - "kernelrelease": "4.4.0-57-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb" - ] - }, - { - "kernelversion": "80~14.04.1", - "kernelrelease": "4.4.0-59-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "83~14.04.1", - "kernelrelease": "4.4.0-62-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "84~14.04.2", - "kernelrelease": "4.4.0-63-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_arm64.deb" - ] - }, - { - "kernelversion": "85~14.04.1", - "kernelrelease": "4.4.0-64-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb" - ] - }, - { - "kernelversion": "87~14.04.1", - "kernelrelease": "4.4.0-66-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" - ] - }, - { - "kernelversion": "88~14.04.1", - "kernelrelease": "4.4.0-67-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "91~14.04.1", - "kernelrelease": "4.4.0-70-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "92~14.04.1", - "kernelrelease": "4.4.0-71-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "93~14.04.1", - "kernelrelease": "4.4.0-72-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb" - ] - }, - { - "kernelversion": "96~14.04.1", - "kernelrelease": "4.4.0-75-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb" - ] - }, - { - "kernelversion": "99~14.04.2", - "kernelrelease": "4.4.0-78-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_arm64.deb" - ] - }, - { - "kernelversion": "100~14.04.1", - "kernelrelease": "4.4.0-79-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "104~14.04.1", - "kernelrelease": "4.4.0-81-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "106~14.04.1", - "kernelrelease": "4.4.0-83-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb" - ] - }, - { - "kernelversion": "110~14.04.1", - "kernelrelease": "4.4.0-87-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "112~14.04.1", - "kernelrelease": "4.4.0-89-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "114~14.04.1", - "kernelrelease": "4.4.0-91-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "115~14.04.1", - "kernelrelease": "4.4.0-92-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb" - ] - }, - { - "kernelversion": "116~14.04.1", - "kernelrelease": "4.4.0-93-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb" - ] - }, - { - "kernelversion": "119~14.04.1", - "kernelrelease": "4.4.0-96-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "120~14.04.1", - "kernelrelease": "4.4.0-97-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb" - ] - }, - { - "kernelversion": "121~14.04.1", - "kernelrelease": "4.4.0-98-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb" - ] - }, - { - "kernelversion": "160", - "kernelrelease": "3.13.0-113-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" - ] - }, - { - "kernelversion": "194", - "kernelrelease": "3.13.0-145-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_arm64.deb" - ] - }, - { - "kernelversion": "208", - "kernelrelease": "3.13.0-158-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" - ] - }, - { - "kernelversion": "213", - "kernelrelease": "3.13.0-163-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_arm64.deb" - ] - }, - { - "kernelversion": "219", - "kernelrelease": "3.13.0-169-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "3.13.0-45-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb" - ] - }, - { - "kernelversion": "40~14.04.1", - "kernelrelease": "3.16.0-30-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "54~14.04.1", - "kernelrelease": "3.16.0-40-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" - ] - }, - { - "kernelversion": "18~14.04.1", - "kernelrelease": "3.19.0-18-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_arm64.deb" - ] - }, - { - "kernelversion": "157~14.04.1", - "kernelrelease": "4.4.0-131-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb" - ] - }, - { - "kernelversion": "161~14.04.1", - "kernelrelease": "4.4.0-135-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb" - ] - }, - { - "kernelversion": "166~14.04.1", - "kernelrelease": "4.4.0-140-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb" - ] - }, - { - "kernelversion": "172~14.04.1", - "kernelrelease": "4.4.0-146-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "3.13.0-24-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb" - ] - }, - { - "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-1095-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "103~16.04.1", - "kernelrelease": "4.15.0-1096-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" - ] - }, - { - "kernelversion": "238", - "kernelrelease": "4.4.0-206-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb" - ] - }, - { - "kernelversion": "239", - "kernelrelease": "4.4.0-207-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_arm64.deb" - ] - }, - { - "kernelversion": "16~16.04.1", - "kernelrelease": "4.10.0-14-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb" - ] - }, - { - "kernelversion": "21~16.04.1", - "kernelrelease": "4.10.0-19-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb" - ] - }, - { - "kernelversion": "22~16.04.1", - "kernelrelease": "4.10.0-20-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "23~16.04.1", - "kernelrelease": "4.10.0-21-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "24~16.04.1", - "kernelrelease": "4.10.0-22-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "28~16.04.1", - "kernelrelease": "4.10.0-24-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "30~16.04.1", - "kernelrelease": "4.10.0-26-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" - ] - }, - { - "kernelversion": "30~16.04.2", - "kernelrelease": "4.10.0-27-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_arm64.deb" - ] - }, - { - "kernelversion": "32~16.04.2", - "kernelrelease": "4.10.0-28-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb" - ] - }, - { - "kernelversion": "34~16.04.1", - "kernelrelease": "4.10.0-30-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.10.0-32-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "37~16.04.1", - "kernelrelease": "4.10.0-33-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "39~16.04.1", - "kernelrelease": "4.10.0-35-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" - ] - }, - { - "kernelversion": "41~16.04.1", - "kernelrelease": "4.10.0-37-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.10.0-38-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" - ] - }, - { - "kernelversion": "44~16.04.1", - "kernelrelease": "4.10.0-40-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "46~16.04.1", - "kernelrelease": "4.10.0-42-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb" - ] - }, - { - "kernelversion": "19~16.04.1", - "kernelrelease": "4.11.0-13-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb" - ] - }, - { - "kernelversion": "20~16.04.1", - "kernelrelease": "4.11.0-14-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb" - ] - }, - { - "kernelversion": "19~16.04.3", - "kernelrelease": "4.13.0-16-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_arm64.deb" - ] - }, - { - "kernelversion": "20~16.04.1", - "kernelrelease": "4.13.0-17-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb" - ] - }, - { - "kernelversion": "22~16.04.1", - "kernelrelease": "4.13.0-19-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" - ] - }, - { - "kernelversion": "24~16.04.1", - "kernelrelease": "4.13.0-21-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb" - ] - }, - { - "kernelversion": "29~16.04.2", - "kernelrelease": "4.13.0-25-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb" - ] - }, - { - "kernelversion": "29~16.04.2", - "kernelrelease": "4.13.0-26-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_arm64.deb" - ] - }, - { - "kernelversion": "34~16.04.1", - "kernelrelease": "4.13.0-31-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "35~16.04.1", - "kernelrelease": "4.13.0-32-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb" - ] - }, - { - "kernelversion": "40~16.04.1", - "kernelrelease": "4.13.0-36-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.13.0-37-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "43~16.04.1", - "kernelrelease": "4.13.0-38-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "44~16.04.1", - "kernelrelease": "4.13.0-39-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "46~16.04.1", - "kernelrelease": "4.13.0-41-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "48~16.04.1", - "kernelrelease": "4.13.0-43-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb" - ] - }, - { - "kernelversion": "50~16.04.1", - "kernelrelease": "4.13.0-45-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-101-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" - ] - }, - { - "kernelversion": "107~16.04.1", - "kernelrelease": "4.15.0-106-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb" - ] - }, - { - "kernelversion": "108~16.04.1", - "kernelrelease": "4.15.0-107-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "99~16.04.1", - "kernelrelease": "4.15.0-1093-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb" - ] - }, - { - "kernelversion": "101~16.04.1", - "kernelrelease": "4.15.0-1094-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "104~16.04.1", - "kernelrelease": "4.15.0-1097-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "105~16.04.1", - "kernelrelease": "4.15.0-1098-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "106~16.04.1", - "kernelrelease": "4.15.0-1099-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "113~16.04.1", - "kernelrelease": "4.15.0-112-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "116~16.04.1", - "kernelrelease": "4.15.0-115-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb" - ] - }, - { - "kernelversion": "118~16.04.1", - "kernelrelease": "4.15.0-117-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "119~16.04.1", - "kernelrelease": "4.15.0-118-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "122~16.04.1", - "kernelrelease": "4.15.0-120-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "124~16.04.1", - "kernelrelease": "4.15.0-122-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "126~16.04.1", - "kernelrelease": "4.15.0-123-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "131~16.04.1", - "kernelrelease": "4.15.0-128-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb" - ] - }, - { - "kernelversion": "132~16.04.1", - "kernelrelease": "4.15.0-129-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" - ] - }, - { - "kernelversion": "14~16.04.1", - "kernelrelease": "4.15.0-13-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb" - ] - }, - { - "kernelversion": "136~16.04.1", - "kernelrelease": "4.15.0-132-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb" - ] - }, - { - "kernelversion": "137~16.04.1", - "kernelrelease": "4.15.0-133-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "140~16.04.1", - "kernelrelease": "4.15.0-136-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "141~16.04.1", - "kernelrelease": "4.15.0-137-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "143~16.04.1", - "kernelrelease": "4.15.0-139-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" - ] - }, - { - "kernelversion": "144~16.04.1", - "kernelrelease": "4.15.0-140-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb" - ] - }, - { - "kernelversion": "146~16.04.1", - "kernelrelease": "4.15.0-142-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb" - ] - }, - { - "kernelversion": "16~16.04.1", - "kernelrelease": "4.15.0-15-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "21~16.04.1", - "kernelrelease": "4.15.0-20-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" - ] - }, - { - "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-22-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb" - ] - }, - { - "kernelversion": "25~16.04.1", - "kernelrelease": "4.15.0-23-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb" - ] - }, - { - "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-24-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" - ] - }, - { - "kernelversion": "31~16.04.1", - "kernelrelease": "4.15.0-29-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-30-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb" - ] - }, - { - "kernelversion": "35~16.04.1", - "kernelrelease": "4.15.0-32-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-33-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "37~16.04.1", - "kernelrelease": "4.15.0-34-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb" - ] - }, - { - "kernelversion": "39~16.04.1", - "kernelrelease": "4.15.0-36-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.15.0-39-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb" - ] - }, - { - "kernelversion": "45~16.04.1", - "kernelrelease": "4.15.0-42-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb" - ] - }, - { - "kernelversion": "46~16.04.1", - "kernelrelease": "4.15.0-43-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" - ] - }, - { - "kernelversion": "48~16.04.1", - "kernelrelease": "4.15.0-45-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" - ] - }, - { - "kernelversion": "49~16.04.1", - "kernelrelease": "4.15.0-46-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "50~16.04.1", - "kernelrelease": "4.15.0-47-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "54~16.04.1", - "kernelrelease": "4.15.0-50-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" - ] - }, - { - "kernelversion": "55~16.04.1", - "kernelrelease": "4.15.0-51-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "56~16.04.1", - "kernelrelease": "4.15.0-52-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" - ] - }, - { - "kernelversion": "58~16.04.1", - "kernelrelease": "4.15.0-54-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "60~16.04.2", - "kernelrelease": "4.15.0-55-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_arm64.deb" - ] - }, - { - "kernelversion": "64~16.04.1", - "kernelrelease": "4.15.0-58-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "67~16.04.1", - "kernelrelease": "4.15.0-60-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "69~16.04.1", - "kernelrelease": "4.15.0-62-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "73~16.04.1", - "kernelrelease": "4.15.0-64-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "74~16.04.1", - "kernelrelease": "4.15.0-65-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "75~16.04.1", - "kernelrelease": "4.15.0-66-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb" - ] - }, - { - "kernelversion": "78~16.04.1", - "kernelrelease": "4.15.0-69-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "79~16.04.1", - "kernelrelease": "4.15.0-70-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb" - ] - }, - { - "kernelversion": "81~16.04.1", - "kernelrelease": "4.15.0-72-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "83~16.04.1", - "kernelrelease": "4.15.0-74-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb" - ] - }, - { - "kernelversion": "86~16.04.1", - "kernelrelease": "4.15.0-76-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb" - ] - }, - { - "kernelversion": "88~16.04.1", - "kernelrelease": "4.15.0-88-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb" - ] - }, - { - "kernelversion": "92~16.04.1", - "kernelrelease": "4.15.0-91-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb" - ] - }, - { - "kernelversion": "97~16.04.1", - "kernelrelease": "4.15.0-96-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb" - ] - }, - { - "kernelversion": "100~16.04.1", - "kernelrelease": "4.15.0-99-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "4.4.0-101-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "4.4.0-103-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_arm64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.4.0-104-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_arm64.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.4.0-108-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_arm64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.4.0-109-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.4.0-112-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_arm64.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "4.4.0-116-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "4.4.0-119-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" - ] - }, - { - "kernelversion": "145", - "kernelrelease": "4.4.0-121-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_arm64.deb" - ] - }, - { - "kernelversion": "148", - "kernelrelease": "4.4.0-124-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb" - ] - }, - { - "kernelversion": "153", - "kernelrelease": "4.4.0-127-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_arm64.deb" - ] - }, - { - "kernelversion": "154", - "kernelrelease": "4.4.0-128-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_arm64.deb" - ] - }, - { - "kernelversion": "156", - "kernelrelease": "4.4.0-130-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb" - ] - }, - { - "kernelversion": "159", - "kernelrelease": "4.4.0-133-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_arm64.deb" - ] - }, - { - "kernelversion": "160", - "kernelrelease": "4.4.0-134-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" - ] - }, - { - "kernelversion": "163", - "kernelrelease": "4.4.0-137-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb" - ] - }, - { - "kernelversion": "164", - "kernelrelease": "4.4.0-138-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" - ] - }, - { - "kernelversion": "165", - "kernelrelease": "4.4.0-139-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_arm64.deb" - ] - }, - { - "kernelversion": "167", - "kernelrelease": "4.4.0-141-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_arm64.deb" - ] - }, - { - "kernelversion": "168", - "kernelrelease": "4.4.0-142-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_arm64.deb" - ] - }, - { - "kernelversion": "169", - "kernelrelease": "4.4.0-143-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb" - ] - }, - { - "kernelversion": "171", - "kernelrelease": "4.4.0-145-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_arm64.deb" - ] - }, - { - "kernelversion": "174", - "kernelrelease": "4.4.0-148-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_arm64.deb" - ] - }, - { - "kernelversion": "176", - "kernelrelease": "4.4.0-150-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb" - ] - }, - { - "kernelversion": "178", - "kernelrelease": "4.4.0-151-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_arm64.deb" - ] - }, - { - "kernelversion": "181", - "kernelrelease": "4.4.0-154-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_arm64.deb" - ] - }, - { - "kernelversion": "185", - "kernelrelease": "4.4.0-157-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb" - ] - }, - { - "kernelversion": "187", - "kernelrelease": "4.4.0-159-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_arm64.deb" - ] - }, - { - "kernelversion": "189", - "kernelrelease": "4.4.0-161-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb" - ] - }, - { - "kernelversion": "192", - "kernelrelease": "4.4.0-164-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb" - ] - }, - { - "kernelversion": "193", - "kernelrelease": "4.4.0-165-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" - ] - }, - { - "kernelversion": "195", - "kernelrelease": "4.4.0-166-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb" - ] - }, - { - "kernelversion": "197", - "kernelrelease": "4.4.0-168-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_arm64.deb" - ] - }, - { - "kernelversion": "198", - "kernelrelease": "4.4.0-169-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_arm64.deb" - ] - }, - { - "kernelversion": "199", - "kernelrelease": "4.4.0-170-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_arm64.deb" - ] - }, - { - "kernelversion": "200", - "kernelrelease": "4.4.0-171-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_arm64.deb" - ] - }, - { - "kernelversion": "203", - "kernelrelease": "4.4.0-173-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb" - ] - }, - { - "kernelversion": "204", - "kernelrelease": "4.4.0-174-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_arm64.deb" - ] - }, - { - "kernelversion": "206", - "kernelrelease": "4.4.0-176-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb" - ] - }, - { - "kernelversion": "207", - "kernelrelease": "4.4.0-177-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb" - ] - }, - { - "kernelversion": "208", - "kernelrelease": "4.4.0-178-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_arm64.deb" - ] - }, - { - "kernelversion": "209", - "kernelrelease": "4.4.0-179-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb" - ] - }, - { - "kernelversion": "214", - "kernelrelease": "4.4.0-184-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_arm64.deb" - ] - }, - { - "kernelversion": "215", - "kernelrelease": "4.4.0-185-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_arm64.deb" - ] - }, - { - "kernelversion": "216", - "kernelrelease": "4.4.0-186-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb" - ] - }, - { - "kernelversion": "217", - "kernelrelease": "4.4.0-187-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" - ] - }, - { - "kernelversion": "219", - "kernelrelease": "4.4.0-189-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_arm64.deb" - ] - }, - { - "kernelversion": "220", - "kernelrelease": "4.4.0-190-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb" - ] - }, - { - "kernelversion": "224", - "kernelrelease": "4.4.0-193-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_arm64.deb" - ] - }, - { - "kernelversion": "226", - "kernelrelease": "4.4.0-194-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_arm64.deb" - ] - }, - { - "kernelversion": "229", - "kernelrelease": "4.4.0-197-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb" - ] - }, - { - "kernelversion": "230", - "kernelrelease": "4.4.0-198-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb" - ] - }, - { - "kernelversion": "232", - "kernelrelease": "4.4.0-200-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" - ] - }, - { - "kernelversion": "233", - "kernelrelease": "4.4.0-201-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_arm64.deb" - ] - }, - { - "kernelversion": "235", - "kernelrelease": "4.4.0-203-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb" - ] - }, - { - "kernelversion": "236", - "kernelrelease": "4.4.0-204-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_arm64.deb" - ] - }, - { - "kernelversion": "240", - "kernelrelease": "4.4.0-208-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_arm64.deb" - ] - }, - { - "kernelversion": "241", - "kernelrelease": "4.4.0-209-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb" - ] - }, - { - "kernelversion": "242", - "kernelrelease": "4.4.0-210-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "4.4.0-22-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.4.0-24-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "4.4.0-28-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.4.0-31-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.4.0-34-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_arm64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "4.4.0-36-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "4.4.0-38-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.4.0-42-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_arm64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "4.4.0-45-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_arm64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "4.4.0-47-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_arm64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "4.4.0-51-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_arm64.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "4.4.0-53-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_arm64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "4.4.0-57-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_arm64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "4.4.0-59-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_arm64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.4.0-62-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.4.0-63-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" - ] - }, - { - "kernelversion": "85", - "kernelrelease": "4.4.0-64-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_arm64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "4.4.0-66-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" - ] - }, - { - "kernelversion": "88", - "kernelrelease": "4.4.0-67-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.4.0-70-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_arm64.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.4.0-71-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_arm64.deb" - ] - }, - { - "kernelversion": "93", - "kernelrelease": "4.4.0-72-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_arm64.deb" - ] - }, - { - "kernelversion": "96", - "kernelrelease": "4.4.0-75-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.4.0-78-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "4.4.0-79-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_arm64.deb" - ] - }, - { - "kernelversion": "104", - "kernelrelease": "4.4.0-81-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.4.0-83-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_arm64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.4.0-87-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_arm64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.4.0-89-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_arm64.deb" - ] - }, - { - "kernelversion": "114", - "kernelrelease": "4.4.0-91-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb" - ] - }, - { - "kernelversion": "115", - "kernelrelease": "4.4.0-92-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.4.0-93-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_arm64.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.4.0-96-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_arm64.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "4.4.0-97-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_arm64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.4.0-98-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.8.0-34-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.8.0-36-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.8.0-39-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb" - ] - }, - { - "kernelversion": "44~16.04.1", - "kernelrelease": "4.8.0-41-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "48~16.04.1", - "kernelrelease": "4.8.0-45-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "49~16.04.1", - "kernelrelease": "4.8.0-46-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "52~16.04.1", - "kernelrelease": "4.8.0-49-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "55~16.04.1", - "kernelrelease": "4.8.0-52-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "57~16.04.1", - "kernelrelease": "4.8.0-54-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "61~16.04.1", - "kernelrelease": "4.8.0-56-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "63~16.04.1", - "kernelrelease": "4.8.0-58-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "41~16.04.1", - "kernelrelease": "4.15.0-38-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "51~16.04.1", - "kernelrelease": "4.15.0-48-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "146", - "kernelrelease": "4.4.0-122-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_arm64.deb" - ] - }, - { - "kernelversion": "157", - "kernelrelease": "4.4.0-131-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb" - ] - }, - { - "kernelversion": "161", - "kernelrelease": "4.4.0-135-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_arm64.deb" - ] - }, - { - "kernelversion": "166", - "kernelrelease": "4.4.0-140-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb" - ] - }, - { - "kernelversion": "172", - "kernelrelease": "4.4.0-146-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "4.4.0-43-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "4.4.0-77-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" - ] - }, - { - "kernelversion": "45~16.04.1", - "kernelrelease": "4.8.0-42-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" - ] - }, - { - "kernelversion": "47~16.04.1", - "kernelrelease": "4.8.0-44-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb" - ] - }, - { - "kernelversion": "54~16.04.1", - "kernelrelease": "4.8.0-51-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_arm64.deb" - ] - }, - { - "kernelversion": "56~16.04.1", - "kernelrelease": "4.8.0-53-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_arm64.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "4.4.0-21-generic", - "target": "ubuntu-generic", - "headers": [ - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_arm64.deb" - ] - } - ], - "Flatcar": [ - { - "kernelversion": 1, - "kernelrelease": "3033.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.2.2", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.2.3", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.3/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.2.4", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3033.2.4/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.2.2", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.2.3", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3139.2.3/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3227.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/arm64-usr/3227.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3033.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3033.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3066.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3066.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3066.1.2", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3066.1.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3139.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3139.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3185.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3185.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3185.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3185.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3227.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3227.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3277.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3277.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3277.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/arm64-usr/3277.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2345.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2345.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2345.0.2", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2345.0.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2387.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2387.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2411.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2411.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2430.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2430.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2466.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2466.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2492.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2492.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2513.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2513.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2513.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2513.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2513.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2513.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2592.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2592.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2605.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2605.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2632.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2632.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2661.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2661.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2671.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2671.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2697.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2697.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2705.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2705.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2723.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2723.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2748.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2748.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2783.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2783.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2801.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2801.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2801.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2801.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2823.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2823.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2857.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2857.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2879.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2879.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2879.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2879.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2905.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2920.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2920.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2942.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2942.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2955.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2955.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2969.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2969.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2983.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/2983.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3005.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3005.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3005.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3005.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3033.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3046.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3046.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3066.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3066.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3115.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3115.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3127.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3127.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3139.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3165.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3165.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3185.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3185.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3200.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3200.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3227.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3255.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3255.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3277.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3277.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3305.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3305.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3305.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/arm64-usr/3305.0.1/flatcar_developer_container.bin.bz2" - ] - } - ], - "Minikube": [ - { - "kernelversion": "1_1.26.0", - "kernelrelease": "5.10.57", - "target": "minikube", - "kernelconfigdata": "Q09ORklHX0ZBTk9USUZZPXkKQ09ORklHX0tQUk9CRV9FVkVOVFM9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19ERUJVR19JTkZPX0JURj15CkNPTkZJR19JS0hFQURFUlM9eQpDT05GSUdfQlBGX0xTTT15CkNPTkZJR19GVFJBQ0VfU1lTQ0FMTFM9eQpDT05GSUdfRlRSQUNFPXkKQ09ORklHX0hBVkVfU1lTQ0FMTF9UUkFDRVBPSU5UUz15CkNPTkZJR19CUklER0VfTkVURklMVEVSPXkKQ09ORklHX1BDST15CkNPTkZJR19UTVBGUz15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWl9JRExFPXkKQ09ORklHX0hJR0hfUkVTX1RJTUVSUz15CkNPTkZJR19QUkVFTVBUPXkKQ09ORklHX0lSUV9USU1FX0FDQ09VTlRJTkc9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19CU0RfUFJPQ0VTU19BQ0NUX1YzPXkKQ09ORklHX1RBU0tfWEFDQ1Q9eQpDT05GSUdfVEFTS19JT19BQ0NPVU5USU5HPXkKQ09ORklHX0lLQ09ORklHPXkKQ09ORklHX0lLQ09ORklHX1BST0M9eQpDT05GSUdfTlVNQV9CQUxBTkNJTkc9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19VU0VSX05TPXkKQ09ORklHX1NDSEVEX0FVVE9HUk9VUD15CkNPTkZJR19CTEtfREVWX0lOSVRSRD15CkNPTkZJR19LQUxMU1lNU19BTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19BUkNIX0FDVElPTlM9eQpDT05GSUdfQVJDSF9BR0lMRVg9eQpDT05GSUdfQVJDSF9TVU5YST15CkNPTkZJR19BUkNIX0FMUElORT15CkNPTkZJR19BUkNIX0JDTTI4MzU9eQpDT05GSUdfQVJDSF9CQ01fSVBST0M9eQpDT05GSUdfQVJDSF9CRVJMSU49eQpDT05GSUdfQVJDSF9CUkNNU1RCPXkKQ09ORklHX0FSQ0hfRVhZTk9TPXkKQ09ORklHX0FSQ0hfSzM9eQpDT05GSUdfQVJDSF9MQVlFUlNDQVBFPXkKQ09ORklHX0FSQ0hfTEcxSz15CkNPTkZJR19BUkNIX0hJU0k9eQpDT05GSUdfQVJDSF9NRURJQVRFSz15CkNPTkZJR19BUkNIX01FU09OPXkKQ09ORklHX0FSQ0hfTVZFQlU9eQpDT05GSUdfQVJDSF9NWEM9eQpDT05GSUdfQVJDSF9RQ09NPXkKQ09ORklHX0FSQ0hfUkVORVNBUz15CkNPTkZJR19BUkNIX1JPQ0tDSElQPXkKQ09ORklHX0FSQ0hfUzMyPXkKQ09ORklHX0FSQ0hfU0VBVFRMRT15CkNPTkZJR19BUkNIX1NUUkFUSVgxMD15CkNPTkZJR19BUkNIX1NZTlFVQUNFUj15CkNPTkZJR19BUkNIX1RFR1JBPXkKQ09ORklHX0FSQ0hfU1BSRD15CkNPTkZJR19BUkNIX1RIVU5ERVI9eQpDT05GSUdfQVJDSF9USFVOREVSMj15CkNPTkZJR19BUkNIX1VOSVBISUVSPXkKQ09ORklHX0FSQ0hfVkVYUFJFU1M9eQpDT05GSUdfQVJDSF9WSVNDT05UST15CkNPTkZJR19BUkNIX1hHRU5FPXkKQ09ORklHX0FSQ0hfWlg9eQpDT05GSUdfQVJDSF9aWU5RTVA9eQpDT05GSUdfQVJNNjRfVkFfQklUU180OD15CkNPTkZJR19TQ0hFRF9NQz15CkNPTkZJR19TQ0hFRF9TTVQ9eQpDT05GSUdfTlVNQT15CkNPTkZJR19TRUNDT01QPXkKQ09ORklHX0tFWEVDPXkKQ09ORklHX0tFWEVDX0ZJTEU9eQpDT05GSUdfQ1JBU0hfRFVNUD15CkNPTkZJR19YRU49eQpDT05GSUdfQ09NUEFUPXkKQ09ORklHX1JBTkRPTUlaRV9CQVNFPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1dRX1BPV0VSX0VGRklDSUVOVF9ERUZBVUxUPXkKQ09ORklHX0VORVJHWV9NT0RFTD15CkNPTkZJR19BUk1fQ1BVSURMRT15CkNPTkZJR19BUk1fUFNDSV9DUFVJRExFPXkKQ09ORklHX0NQVV9GUkVRPXkKQ09ORklHX0NQVV9GUkVRX1NUQVQ9eQpDT05GSUdfQ1BVX0ZSRVFfR09WX1BPV0VSU0FWRT1tCkNPTkZJR19DUFVfRlJFUV9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9PTkRFTUFORD15CkNPTkZJR19DUFVfRlJFUV9HT1ZfQ09OU0VSVkFUSVZFPW0KQ09ORklHX0NQVV9GUkVRX0dPVl9TQ0hFRFVUSUw9eQpDT05GSUdfQ1BVRlJFUV9EVD15CkNPTkZJR19BQ1BJX0NQUENfQ1BVRlJFUT1tCkNPTkZJR19BUk1fQUxMV0lOTkVSX1NVTjUwSV9DUFVGUkVRX05WTUVNPW0KQ09ORklHX0FSTV9BUk1BREFfMzdYWF9DUFVGUkVRPXkKQ09ORklHX0FSTV9TQ1BJX0NQVUZSRVE9eQpDT05GSUdfQVJNX0lNWF9DUFVGUkVRX0RUPW0KQ09ORklHX0FSTV9RQ09NX0NQVUZSRVFfTlZNRU09eQpDT05GSUdfQVJNX1FDT01fQ1BVRlJFUV9IVz15CkNPTkZJR19BUk1fUkFTUEJFUlJZUElfQ1BVRlJFUT1tCkNPTkZJR19BUk1fVEVHUkExODZfQ1BVRlJFUT15CkNPTkZJR19RT1JJUV9DUFVGUkVRPXkKQ09ORklHX0FSTV9TQ1BJX1BST1RPQ09MPXkKQ09ORklHX1JBU1BCRVJSWVBJX0ZJUk1XQVJFPXkKQ09ORklHX0lOVEVMX1NUUkFUSVgxMF9TRVJWSUNFPXkKQ09ORklHX0lOVEVMX1NUUkFUSVgxMF9SU1U9bQpDT05GSUdfRUZJX0NBUFNVTEVfTE9BREVSPXkKQ09ORklHX0lNWF9TQ1U9eQpDT05GSUdfSU1YX1NDVV9QRD15CkNPTkZJR19BQ1BJPXkKQ09ORklHX0FDUElfQVBFST15CkNPTkZJR19BQ1BJX0FQRUlfR0hFUz15CkNPTkZJR19BQ1BJX0FQRUlfUENJRUFFUj15CkNPTkZJR19BQ1BJX0FQRUlfTUVNT1JZX0ZBSUxVUkU9eQpDT05GSUdfQUNQSV9BUEVJX0VJTko9eQpDT05GSUdfVklSVFVBTElaQVRJT049eQpDT05GSUdfS1ZNPXkKQ09ORklHX0FSTTY0X0NSWVBUTz15CkNPTkZJR19DUllQVE9fU0hBMV9BUk02NF9DRT15CkNPTkZJR19DUllQVE9fU0hBMl9BUk02NF9DRT15CkNPTkZJR19DUllQVE9fU0hBNTEyX0FSTTY0X0NFPW0KQ09ORklHX0NSWVBUT19TSEEzX0FSTTY0PW0KQ09ORklHX0NSWVBUT19TTTNfQVJNNjRfQ0U9bQpDT05GSUdfQ1JZUFRPX0dIQVNIX0FSTTY0X0NFPXkKQ09ORklHX0NSWVBUT19DUkNUMTBESUZfQVJNNjRfQ0U9bQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9DRV9DQ009eQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9DRV9CTEs9eQpDT05GSUdfQ1JZUFRPX0NIQUNIQTIwX05FT049bQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9CUz1tCkNPTkZJR19KVU1QX0xBQkVMPXkKQ09ORklHX01PRFVMRVM9eQpDT05GSUdfTU9EVUxFX1VOTE9BRD15CkNPTkZJR19NT0RWRVJTSU9OUz15CiMgQ09ORklHX0NPUkVfRFVNUF9ERUZBVUxUX0VMRl9IRUFERVJTIGlzIG5vdCBzZXQKQ09ORklHX0tTTT15CkNPTkZJR19NRU1PUllfRkFJTFVSRT15CkNPTkZJR19UUkFOU1BBUkVOVF9IVUdFUEFHRT15CkNPTkZJR19ORVQ9eQpDT05GSUdfUEFDS0VUPXkKQ09ORklHX1VOSVg9eQpDT05GSUdfSU5FVD15CkNPTkZJR19JUF9NVUxUSUNBU1Q9eQpDT05GSUdfSVBfUE5QPXkKQ09ORklHX0lQX1BOUF9ESENQPXkKQ09ORklHX0lQX1BOUF9CT09UUD15CkNPTkZJR19JUFY2PW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX05FVEZJTFRFUj15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19BQ0NUPXkKQ09ORklHX05FVEZJTFRFUl9ORVRMSU5LX1FVRVVFPXkKQ09ORklHX05GX0NPTk5UUkFDSz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfWk9ORVM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX0VWRU5UUz15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRU9VVD15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRVNUQU1QPXkKQ09ORklHX05GX0NPTk5UUkFDS19GVFA9bQpDT05GSUdfTkZfQ09OTlRSQUNLX0lSQz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0FORT1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0lQPW0KQ09ORklHX05GX0NPTk5UUkFDS19URlRQPW0KQ09ORklHX05GX0NUX05FVExJTks9bQpDT05GSUdfTkVURklMVEVSX1hUX1NFVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NIRUNLU1VNPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ0xBU1NJRlk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DT05OTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0hNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSURMRVRJTUVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTEVEPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTkZRVUVVRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05PVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9URUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9UUFJPWFk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9TRUNNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQT1BUU1RSSVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0FERFJUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9CUEY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ0xVU1RFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09NTUVOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkJZVEVTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTEFCRUw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5UUkFDSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ1BVPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9EQ0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ERVZHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRFNDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRUNOPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9FU1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hBU0hMSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEVMUEVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBDT01QPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFJBTkdFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFZTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MMlRQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MRU5HVEg9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0xJTUlUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01VTFRJUE9SVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTkZBQ0NUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PU0Y9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX09XTkVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QT0xJQ1k9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BIWVNERVY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BLVFRZUEU9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1FVT1RBPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SQVRFRVNUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SRUFMTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVDRU5UPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TQ1RQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TT0NLRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUQVRFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFUSVNUSUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUUklORz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9USU1FPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9VMzI9bQpDT05GSUdfSVBfTkZfSVBUQUJMRVM9bQpDT05GSUdfSVBfTkZfRklMVEVSPW0KQ09ORklHX0lQX05GX1RBUkdFVF9SRUpFQ1Q9bQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFRElSRUNUPXkKQ09ORklHX0lQX05GX05BVD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTUFTUVVFUkFERT1tCkNPTkZJR19JUF9ORl9NQU5HTEU9bQpDT05GSUdfQlJJREdFPW0KQ09ORklHX0JSSURHRV9WTEFOX0ZJTFRFUklORz15CkNPTkZJR19ORVRfRFNBPW0KQ09ORklHX1ZMQU5fODAyMVE9bQpDT05GSUdfVkxBTl84MDIxUV9HVlJQPXkKQ09ORklHX1ZMQU5fODAyMVFfTVZSUD15CkNPTkZJR19ORVRfU0NIRUQ9eQpDT05GSUdfTkVUX1NDSF9DQlM9bQpDT05GSUdfTkVUX1NDSF9FVEY9bQpDT05GSUdfTkVUX1NDSF9UQVBSSU89bQpDT05GSUdfTkVUX1NDSF9NUVBSSU89bQpDT05GSUdfTkVUX1NDSF9JTkdSRVNTPW0KQ09ORklHX05FVF9DTFNfQkFTSUM9bQpDT05GSUdfTkVUX0NMU19GTE9XRVI9bQpDT05GSUdfTkVUX0NMU19BQ1Q9eQpDT05GSUdfTkVUX0FDVF9HQUNUPW0KQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfR0FURT1tCkNPTkZJR19RUlRSPW0KQ09ORklHX1FSVFJfU01EPW0KQ09ORklHX1FSVFJfVFVOPW0KQ09ORklHX0JQRl9KSVQ9eQpDT05GSUdfQ0FOPW0KQ09ORklHX0NBTl9SQ0FSPW0KQ09ORklHX0NBTl9SQ0FSX0NBTkZEPW0KQ09ORklHX0NBTl9GTEVYQ0FOPW0KQ09ORklHX0JUPW0KQ09ORklHX0JUX0hJRFA9bQojIENPTkZJR19CVF9IUyBpcyBub3Qgc2V0CiMgQ09ORklHX0JUX0xFIGlzIG5vdCBzZXQKQ09ORklHX0JUX0xFRFM9eQojIENPTkZJR19CVF9ERUJVR0ZTIGlzIG5vdCBzZXQKQ09ORklHX0JUX0hDSUJUVVNCPW0KQ09ORklHX0JUX0hDSVVBUlQ9bQpDT05GSUdfQlRfSENJVUFSVF9MTD15CkNPTkZJR19CVF9IQ0lVQVJUX0JDTT15CkNPTkZJR19CVF9IQ0lVQVJUX1FDQT15CkNPTkZJR19DRkc4MDIxMT1tCkNPTkZJR19NQUM4MDIxMT1tCkNPTkZJR19NQUM4MDIxMV9MRURTPXkKQ09ORklHX1JGS0lMTD1tCkNPTkZJR19ORVRfOVA9eQpDT05GSUdfTkVUXzlQX1ZJUlRJTz15CkNPTkZJR19ORkM9bQpDT05GSUdfTkZDX05DST1tCkNPTkZJR19ORkNfUzNGV1JONV9JMkM9bQpDT05GSUdfUENJPXkKQ09ORklHX1BDSUVQT1JUQlVTPXkKQ09ORklHX1BDSV9JT1Y9eQpDT05GSUdfUENJX1BBU0lEPXkKQ09ORklHX0hPVFBMVUdfUENJPXkKQ09ORklHX0hPVFBMVUdfUENJX0FDUEk9eQpDT05GSUdfUENJX0FBUkRWQVJLPXkKQ09ORklHX1BDSV9URUdSQT15CkNPTkZJR19QQ0lFX1JDQVJfSE9TVD15CkNPTkZJR19QQ0lFX1JDQVJfRVA9eQpDT05GSUdfUENJX0hPU1RfR0VORVJJQz15CkNPTkZJR19QQ0lfWEdFTkU9eQpDT05GSUdfUENJRV9BTFRFUkE9eQpDT05GSUdfUENJRV9BTFRFUkFfTVNJPXkKQ09ORklHX1BDSV9IT1NUX1RIVU5ERVJfUEVNPXkKQ09ORklHX1BDSV9IT1NUX1RIVU5ERVJfRUNBTT15CkNPTkZJR19QQ0lFX1JPQ0tDSElQX0hPU1Q9bQpDT05GSUdfUENJRV9CUkNNU1RCPW0KQ09ORklHX1BDSV9MQVlFUlNDQVBFPXkKQ09ORklHX1BDSUVfTEFZRVJTQ0FQRV9HRU40PXkKQ09ORklHX1BDSV9ISVNJPXkKQ09ORklHX1BDSUVfUUNPTT15CkNPTkZJR19QQ0lFX0FSTUFEQV84Sz15CkNPTkZJR19QQ0lFX0tJUklOPXkKQ09ORklHX1BDSUVfSElTSV9TVEI9eQpDT05GSUdfUENJRV9URUdSQTE5NF9IT1NUPW0KQ09ORklHX1BDSV9FTkRQT0lOVD15CkNPTkZJR19QQ0lfRU5EUE9JTlRfQ09ORklHRlM9eQpDT05GSUdfUENJX0VQRl9URVNUPW0KQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0ZXX0xPQURFUl9VU0VSX0hFTFBFUj15CkNPTkZJR19GV19MT0FERVJfVVNFUl9IRUxQRVJfRkFMTEJBQ0s9eQpDT05GSUdfSElTSUxJQ09OX0xQQz15CkNPTkZJR19TSU1QTEVfUE1fQlVTPXkKQ09ORklHX0ZTTF9NQ19CVVM9eQpDT05GSUdfVEVHUkFfQUNPTk5FQ1Q9bQpDT05GSUdfTVREPXkKQ09ORklHX01URF9CTE9DSz15CkNPTkZJR19NVERfQ0ZJPXkKQ09ORklHX01URF9DRklfQURWX09QVElPTlM9eQpDT05GSUdfTVREX0NGSV9JTlRFTEVYVD15CkNPTkZJR19NVERfQ0ZJX0FNRFNURD15CkNPTkZJR19NVERfQ0ZJX1NUQUE9eQpDT05GSUdfTVREX1BIWVNNQVA9eQpDT05GSUdfTVREX1BIWVNNQVBfT0Y9eQpDT05GSUdfTVREX0RBVEFGTEFTSD15CkNPTkZJR19NVERfU1NUMjVMPXkKQ09ORklHX01URF9SQVdfTkFORD15CkNPTkZJR19NVERfTkFORF9ERU5BTElfRFQ9eQpDT05GSUdfTVREX05BTkRfTUFSVkVMTD15CkNPTkZJR19NVERfTkFORF9GU0xfSUZDPXkKQ09ORklHX01URF9OQU5EX1FDT009eQpDT05GSUdfTVREX1NQSV9OT1I9eQpDT05GSUdfU1BJX0NBREVOQ0VfUVVBRFNQST15CkNPTkZJR19CTEtfREVWX0xPT1A9eQpDT05GSUdfQkxLX0RFVl9OQkQ9bQpDT05GSUdfVklSVElPX0JMSz15CkNPTkZJR19CTEtfREVWX05WTUU9bQpDT05GSUdfU1JBTT15CkNPTkZJR19QQ0lfRU5EUE9JTlRfVEVTVD1tCkNPTkZJR19FRVBST01fQVQyND1tCkNPTkZJR19FRVBST01fQVQyNT1tCkNPTkZJR19VQUNDRT1tCiMgQ09ORklHX1NDU0lfUFJPQ19GUyBpcyBub3Qgc2V0CkNPTkZJR19CTEtfREVWX1NEPXkKQ09ORklHX1NDU0lfU0FTX0FUQT15CkNPTkZJR19TQ1NJX0hJU0lfU0FTPXkKQ09ORklHX1NDU0lfSElTSV9TQVNfUENJPXkKQ09ORklHX01FR0FSQUlEX1NBUz15CkNPTkZJR19TQ1NJX01QVDNTQVM9bQpDT05GSUdfU0NTSV9VRlNIQ0Q9eQpDT05GSUdfU0NTSV9VRlNIQ0RfUExBVEZPUk09eQpDT05GSUdfU0NTSV9VRlNfUUNPTT1tCkNPTkZJR19TQ1NJX1VGU19ISVNJPXkKQ09ORklHX0FUQT15CkNPTkZJR19TQVRBX0FIQ0k9eQpDT05GSUdfU0FUQV9BSENJX1BMQVRGT1JNPXkKQ09ORklHX0FIQ0lfQ0VWQT15CkNPTkZJR19BSENJX01WRUJVPXkKQ09ORklHX0FIQ0lfWEdFTkU9eQpDT05GSUdfQUhDSV9RT1JJUT15CkNPTkZJR19TQVRBX1NJTDI0PXkKQ09ORklHX1NBVEFfUkNBUj15CkNPTkZJR19QQVRBX1BMQVRGT1JNPXkKQ09ORklHX1BBVEFfT0ZfUExBVEZPUk09eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD1tCkNPTkZJR19CTEtfREVWX0RNPW0KQ09ORklHX0RNX01JUlJPUj1tCkNPTkZJR19ETV9aRVJPPW0KQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfTUFDVkxBTj1tCkNPTkZJR19NQUNWVEFQPW0KQ09ORklHX1RVTj15CkNPTkZJR19WRVRIPW0KQ09ORklHX1ZJUlRJT19ORVQ9eQpDT05GSUdfTkVUX0RTQV9NU0NDX0ZFTElYPW0KQ09ORklHX0FNRF9YR0JFPXkKQ09ORklHX05FVF9YR0VORT15CkNPTkZJR19BVEwxQz1tCkNPTkZJR19CQ01HRU5FVD1tCkNPTkZJR19CTlgyWD1tCkNPTkZJR19NQUNCPXkKQ09ORklHX1RIVU5ERVJfTklDX1BGPXkKQ09ORklHX0ZFQz15CkNPTkZJR19GU0xfRk1BTj15CkNPTkZJR19GU0xfRFBBQV9FVEg9eQpDT05GSUdfRlNMX0RQQUEyX0VUSD15CkNPTkZJR19GU0xfRU5FVEM9eQpDT05GSUdfRlNMX0VORVRDX1ZGPXkKQ09ORklHX0ZTTF9FTkVUQ19RT1M9eQpDT05GSUdfSElYNUhEMl9HTUFDPXkKQ09ORklHX0hOU19EU0FGPXkKQ09ORklHX0hOU19FTkVUPXkKQ09ORklHX0hOUzM9eQpDT05GSUdfSE5TM19IQ0xHRT15CkNPTkZJR19ITlMzX0VORVQ9eQpDT05GSUdfRTEwMDA9eQpDT05GSUdfRTEwMDBFPXkKQ09ORklHX0lHQj15CkNPTkZJR19JR0JWRj15CkNPTkZJR19NVk5FVEE9eQpDT05GSUdfTVZQUDI9eQpDT05GSUdfU0tZMj15CkNPTkZJR19NTFg0X0VOPW0KQ09ORklHX01MWDVfQ09SRT1tCkNPTkZJR19NTFg1X0NPUkVfRU49eQpDT05GSUdfUUNPTV9FTUFDPW0KQ09ORklHX1JNTkVUPW0KQ09ORklHX1NIX0VUSD15CkNPTkZJR19SQVZCPXkKQ09ORklHX1NNQzkxWD15CkNPTkZJR19TTVNDOTExWD15CkNPTkZJR19TTklfQVZFPXkKQ09ORklHX1NOSV9ORVRTRUM9eQpDT05GSUdfU1RNTUFDX0VUSD1tCkNPTkZJR19USV9LM19BTTY1X0NQU1dfTlVTUz15CkNPTkZJR19RQ09NX0lQQT1tCkNPTkZJR19NRElPX0JVU19NVVhfTU1JT1JFRz15CkNPTkZJR19NRElPX0JVU19NVVhfTVVMVElQTEVYRVI9eQpDT05GSUdfQVFVQU5USUFfUEhZPXkKQ09ORklHX01BUlZFTExfUEhZPW0KQ09ORklHX01BUlZFTExfMTBHX1BIWT1tCkNPTkZJR19NRVNPTl9HWExfUEhZPW0KQ09ORklHX01JQ1JFTF9QSFk9eQpDT05GSUdfTUlDUk9TRU1JX1BIWT15CkNPTkZJR19BVDgwM1hfUEhZPXkKQ09ORklHX1JFQUxURUtfUEhZPW0KQ09ORklHX1JPQ0tDSElQX1BIWT15CkNPTkZJR19WSVRFU1NFX1BIWT15CkNPTkZJR19VU0JfUEVHQVNVUz1tCkNPTkZJR19VU0JfUlRMODE1MD1tCkNPTkZJR19VU0JfUlRMODE1Mj1tCkNPTkZJR19VU0JfTEFONzhYWD1tCkNPTkZJR19VU0JfVVNCTkVUPW0KQ09ORklHX1VTQl9ORVRfRE05NjAxPW0KQ09ORklHX1VTQl9ORVRfU1I5ODAwPW0KQ09ORklHX1VTQl9ORVRfU01TQzc1WFg9bQpDT05GSUdfVVNCX05FVF9TTVNDOTVYWD1tCkNPTkZJR19VU0JfTkVUX1BMVVNCPW0KQ09ORklHX1VTQl9ORVRfTUNTNzgzMD1tCkNPTkZJR19BVEgxMEs9bQpDT05GSUdfQVRIMTBLX1BDST1tCkNPTkZJR19BVEgxMEtfU05PQz1tCkNPTkZJR19CUkNNRk1BQz1tCkNPTkZJR19NV0lGSUVYPW0KQ09ORklHX01XSUZJRVhfUENJRT1tCkNPTkZJR19XTDE4WFg9bQpDT05GSUdfV0xDT1JFX1NESU89bQpDT05GSUdfSU5QVVRfRVZERVY9eQpDT05GSUdfS0VZQk9BUkRfQURDPW0KQ09ORklHX0tFWUJPQVJEX0dQSU89eQpDT05GSUdfS0VZQk9BUkRfU05WU19QV1JLRVk9bQpDT05GSUdfS0VZQk9BUkRfSU1YX1NDX0tFWT1tCkNPTkZJR19LRVlCT0FSRF9DUk9TX0VDPXkKQ09ORklHX0lOUFVUX1RPVUNIU0NSRUVOPXkKQ09ORklHX1RPVUNIU0NSRUVOX0FUTUVMX01YVD1tCkNPTkZJR19JTlBVVF9NSVNDPXkKQ09ORklHX0lOUFVUX1BNODk0MV9QV1JLRVk9eQpDT05GSUdfSU5QVVRfUE04WFhYX1ZJQlJBVE9SPW0KQ09ORklHX0lOUFVUX0hJU0lfUE9XRVJLRVk9eQojIENPTkZJR19TRVJJT19TRVJQT1JUIGlzIG5vdCBzZXQKQ09ORklHX1NFUklPX0FNQkFLTUk9eQpDT05GSUdfTEVHQUNZX1BUWV9DT1VOVD0xNgpDT05GSUdfU0VSSUFMXzgyNTA9eQpDT05GSUdfU0VSSUFMXzgyNTBfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9TSEFSRV9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfQkNNMjgzNUFVWD15CkNPTkZJR19TRVJJQUxfODI1MF9EVz15CkNPTkZJR19TRVJJQUxfODI1MF9PTUFQPXkKQ09ORklHX1NFUklBTF84MjUwX01UNjU3Nz15CkNPTkZJR19TRVJJQUxfODI1MF9VTklQSElFUj15CkNPTkZJR19TRVJJQUxfT0ZfUExBVEZPUk09eQpDT05GSUdfU0VSSUFMX0FNQkFfUEwwMTE9eQpDT05GSUdfU0VSSUFMX0FNQkFfUEwwMTFfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfTUVTT049eQpDT05GSUdfU0VSSUFMX01FU09OX0NPTlNPTEU9eQpDT05GSUdfU0VSSUFMX1NBTVNVTkc9eQpDT05GSUdfU0VSSUFMX1NBTVNVTkdfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfVEVHUkE9eQpDT05GSUdfU0VSSUFMX1RFR1JBX1RDVT15CkNPTkZJR19TRVJJQUxfSU1YPXkKQ09ORklHX1NFUklBTF9JTVhfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfU0hfU0NJPXkKQ09ORklHX1NFUklBTF9NU009eQpDT05GSUdfU0VSSUFMX01TTV9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9RQ09NX0dFTkk9eQpDT05GSUdfU0VSSUFMX1FDT01fR0VOSV9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9YSUxJTlhfUFNfVUFSVD15CkNPTkZJR19TRVJJQUxfWElMSU5YX1BTX1VBUlRfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfRlNMX0xQVUFSVD15CkNPTkZJR19TRVJJQUxfRlNMX0xQVUFSVF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9GU0xfTElORkxFWFVBUlQ9eQpDT05GSUdfU0VSSUFMX0ZTTF9MSU5GTEVYVUFSVF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9NVkVCVV9VQVJUPXkKQ09ORklHX1NFUklBTF9PV0w9eQpDT05GSUdfU0VSSUFMX0RFVl9CVVM9eQpDT05GSUdfVklSVElPX0NPTlNPTEU9eQpDT05GSUdfSVBNSV9IQU5ETEVSPW0KQ09ORklHX0lQTUlfREVWSUNFX0lOVEVSRkFDRT1tCkNPTkZJR19JUE1JX1NJPW0KQ09ORklHX1RDR19UUE09eQpDT05GSUdfVENHX1RJU19JMkNfSU5GSU5FT049eQpDT05GSUdfSTJDX0NIQVJERVY9eQpDT05GSUdfSTJDX01VWD15CkNPTkZJR19JMkNfTVVYX1BDQTk1NHg9eQpDT05GSUdfSTJDX0JDTTI4MzU9bQpDT05GSUdfSTJDX0RFU0lHTldBUkVfUExBVEZPUk09eQpDT05GSUdfSTJDX0dQSU89bQpDT05GSUdfSTJDX0lNWD15CkNPTkZJR19JMkNfSU1YX0xQSTJDPXkKQ09ORklHX0kyQ19NRVNPTj15CkNPTkZJR19JMkNfTVY2NFhYWD15CkNPTkZJR19JMkNfT1dMPXkKQ09ORklHX0kyQ19QWEE9eQpDT05GSUdfSTJDX1FDT01fQ0NJPW0KQ09ORklHX0kyQ19RQ09NX0dFTkk9bQpDT05GSUdfSTJDX1FVUD15CkNPTkZJR19JMkNfUkszWD15CkNPTkZJR19JMkNfU0hfTU9CSUxFPXkKQ09ORklHX0kyQ19URUdSQT15CkNPTkZJR19JMkNfVU5JUEhJRVJfRj15CkNPTkZJR19JMkNfUkNBUj15CkNPTkZJR19JMkNfQ1JPU19FQ19UVU5ORUw9eQpDT05GSUdfU1BJPXkKQ09ORklHX1NQSV9BUk1BREFfMzcwMD15CkNPTkZJR19TUElfQkNNMjgzNT1tCkNPTkZJR19TUElfQkNNMjgzNUFVWD1tCkNPTkZJR19TUElfRlNMX0xQU1BJPXkKQ09ORklHX1NQSV9GU0xfUVVBRFNQST15CkNPTkZJR19TUElfTlhQX0ZMRVhTUEk9eQpDT05GSUdfU1BJX0lNWD1tCkNPTkZJR19TUElfRlNMX0RTUEk9eQpDT05GSUdfU1BJX01FU09OX1NQSUNDPW0KQ09ORklHX1NQSV9NRVNPTl9TUElGQz1tCkNPTkZJR19TUElfT1JJT049eQpDT05GSUdfU1BJX1BMMDIyPXkKQ09ORklHX1NQSV9ST0NLQ0hJUD15CkNPTkZJR19TUElfUlBDSUY9bQpDT05GSUdfU1BJX1FDT01fUVNQST1tCkNPTkZJR19TUElfUVVQPXkKQ09ORklHX1NQSV9RQ09NX0dFTkk9bQpDT05GSUdfU1BJX1MzQzY0WFg9eQpDT05GSUdfU1BJX1NIX01TSU9GPW0KQ09ORklHX1NQSV9TVU42ST15CkNPTkZJR19TUElfU1BJREVWPW0KQ09ORklHX1NQTUk9eQpDT05GSUdfUElOQ1RSTF9TSU5HTEU9eQpDT05GSUdfUElOQ1RSTF9NQVg3NzYyMD15CkNPTkZJR19QSU5DVFJMX09XTD15CkNPTkZJR19QSU5DVFJMX1M3MDA9eQpDT05GSUdfUElOQ1RSTF9TOTAwPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1NPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1OPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1QPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1RPXkKQ09ORklHX1BJTkNUUkxfSU1YOFFYUD15CkNPTkZJR19QSU5DVFJMX0lNWDhEWEw9eQpDT05GSUdfUElOQ1RSTF9JUFE4MDc0PXkKQ09ORklHX1BJTkNUUkxfSVBRNjAxOD15CkNPTkZJR19QSU5DVFJMX01TTTg5MTY9eQpDT05GSUdfUElOQ1RSTF9NU004OTk0PXkKQ09ORklHX1BJTkNUUkxfTVNNODk5Nj15CkNPTkZJR19QSU5DVFJMX01TTTg5OTg9eQpDT05GSUdfUElOQ1RSTF9RQ1M0MDQ9eQpDT05GSUdfUElOQ1RSTF9RREYyWFhYPXkKQ09ORklHX1BJTkNUUkxfUUNPTV9TUE1JX1BNSUM9eQpDT05GSUdfUElOQ1RSTF9TQzcxODA9eQpDT05GSUdfUElOQ1RSTF9TRE04NDU9eQpDT05GSUdfUElOQ1RSTF9TTTgxNTA9eQpDT05GSUdfUElOQ1RSTF9TTTgyNTA9eQpDT05GSUdfR1BJT19BTFRFUkE9bQpDT05GSUdfR1BJT19EV0FQQj15CkNPTkZJR19HUElPX01CODZTN1g9eQpDT05GSUdfR1BJT19NUEM4WFhYPXkKQ09ORklHX0dQSU9fTVhDPXkKQ09ORklHX0dQSU9fUEwwNjE9eQpDT05GSUdfR1BJT19SQ0FSPXkKQ09ORklHX0dQSU9fVU5JUEhJRVI9eQpDT05GSUdfR1BJT19XQ0Q5MzRYPW0KQ09ORklHX0dQSU9fWEdFTkU9eQpDT05GSUdfR1BJT19YR0VORV9TQj15CkNPTkZJR19HUElPX01BWDczMlg9eQpDT05GSUdfR1BJT19QQ0E5NTNYPXkKQ09ORklHX0dQSU9fUENBOTUzWF9JUlE9eQpDT05GSUdfR1BJT19CRDk1NzFNV1Y9bQpDT05GSUdfR1BJT19NQVg3NzYyMD15CkNPTkZJR19HUElPX1NMMjhDUExEPW0KQ09ORklHX1BPV0VSX0FWUz15CkNPTkZJR19RQ09NX0NQUj15CkNPTkZJR19ST0NLQ0hJUF9JT0RPTUFJTj15CkNPTkZJR19QT1dFUl9SRVNFVF9NU009eQpDT05GSUdfUE9XRVJfUkVTRVRfWEdFTkU9eQpDT05GSUdfUE9XRVJfUkVTRVRfU1lTQ09OPXkKQ09ORklHX1NZU0NPTl9SRUJPT1RfTU9ERT15CkNPTkZJR19CQVRURVJZX1NCUz1tCkNPTkZJR19CQVRURVJZX0JRMjdYWFg9eQpDT05GSUdfU0VOU09SU19BUk1fU0NQST15CkNPTkZJR19TRU5TT1JTX0xNOTA9bQpDT05GSUdfU0VOU09SU19QV01fRkFOPW0KQ09ORklHX1NFTlNPUlNfUkFTUEJFUlJZUElfSFdNT049bQpDT05GSUdfU0VOU09SU19TTDI4Q1BMRD1tCkNPTkZJR19TRU5TT1JTX0lOQTJYWD1tCkNPTkZJR19TRU5TT1JTX0lOQTMyMjE9bQpDT05GSUdfVEhFUk1BTF9HT1ZfUE9XRVJfQUxMT0NBVE9SPXkKQ09ORklHX0NQVV9USEVSTUFMPXkKQ09ORklHX1RIRVJNQUxfRU1VTEFUSU9OPXkKQ09ORklHX1FPUklRX1RIRVJNQUw9bQpDT05GSUdfU1VOOElfVEhFUk1BTD15CkNPTkZJR19JTVhfU0NfVEhFUk1BTD1tCkNPTkZJR19JTVg4TU1fVEhFUk1BTD1tCkNPTkZJR19ST0NLQ0hJUF9USEVSTUFMPW0KQ09ORklHX1JDQVJfVEhFUk1BTD15CkNPTkZJR19SQ0FSX0dFTjNfVEhFUk1BTD15CkNPTkZJR19BUk1BREFfVEhFUk1BTD15CkNPTkZJR19CQ00yNzExX1RIRVJNQUw9bQpDT05GSUdfQkNNMjgzNV9USEVSTUFMPW0KQ09ORklHX0JSQ01TVEJfVEhFUk1BTD1tCkNPTkZJR19FWFlOT1NfVEhFUk1BTD15CkNPTkZJR19URUdSQV9CUE1QX1RIRVJNQUw9bQpDT05GSUdfUUNPTV9UU0VOUz15CkNPTkZJR19RQ09NX1NQTUlfVEVNUF9BTEFSTT1tCkNPTkZJR19VTklQSElFUl9USEVSTUFMPXkKQ09ORklHX1dBVENIRE9HPXkKQ09ORklHX1NMMjhDUExEX1dBVENIRE9HPW0KQ09ORklHX0FSTV9TUDgwNV9XQVRDSERPRz15CkNPTkZJR19BUk1fU0JTQV9XQVRDSERPRz15CkNPTkZJR19BUk1fU01DX1dBVENIRE9HPXkKQ09ORklHX1MzQzI0MTBfV0FUQ0hET0c9eQpDT05GSUdfRFdfV0FUQ0hET0c9eQpDT05GSUdfU1VOWElfV0FUQ0hET0c9bQpDT05GSUdfSU1YMl9XRFQ9eQpDT05GSUdfSU1YX1NDX1dEVD1tCkNPTkZJR19RQ09NX1dEVD1tCkNPTkZJR19NRVNPTl9HWEJCX1dBVENIRE9HPW0KQ09ORklHX01FU09OX1dBVENIRE9HPW0KQ09ORklHX1JFTkVTQVNfV0RUPXkKQ09ORklHX1VOSVBISUVSX1dBVENIRE9HPXkKQ09ORklHX0JDTTI4MzVfV0RUPXkKQ09ORklHX01GRF9BTFRFUkFfU1lTTUdSPXkKQ09ORklHX01GRF9CRDk1NzFNV1Y9eQpDT05GSUdfTUZEX0FYUDIwWF9JMkM9eQpDT05GSUdfTUZEX0FYUDIwWF9SU0I9eQpDT05GSUdfTUZEX0VYWU5PU19MUEFTUz1tCkNPTkZJR19NRkRfSEk2NDIxX1BNSUM9eQpDT05GSUdfTUZEX0hJNjU1WF9QTUlDPXkKQ09ORklHX01GRF9NQVg3NzYyMD15CkNPTkZJR19NRkRfU1BNSV9QTUlDPXkKQ09ORklHX01GRF9SSzgwOD15CkNPTkZJR19NRkRfU0VDX0NPUkU9eQpDT05GSUdfTUZEX1NMMjhDUExEPXkKQ09ORklHX01GRF9ST0hNX0JENzE4WFg9eQpDT05GSUdfTUZEX1dDRDkzNFg9bQpDT05GSUdfUkVHVUxBVE9SX0ZJWEVEX1ZPTFRBR0U9eQpDT05GSUdfUkVHVUxBVE9SX0FYUDIwWD15CkNPTkZJR19SRUdVTEFUT1JfQkQ3MThYWD15CkNPTkZJR19SRUdVTEFUT1JfQkQ5NTcxTVdWPXkKQ09ORklHX1JFR1VMQVRPUl9GQU41MzU1NT15CkNPTkZJR19SRUdVTEFUT1JfR1BJTz15CkNPTkZJR19SRUdVTEFUT1JfSEk2NDIxVjUzMD15CkNPTkZJR19SRUdVTEFUT1JfSEk2NTVYPXkKQ09ORklHX1JFR1VMQVRPUl9NQVg3NzYyMD15CkNPTkZJR19SRUdVTEFUT1JfTUFYODk3Mz15CkNPTkZJR19SRUdVTEFUT1JfUENBOTQ1MD15CkNPTkZJR19SRUdVTEFUT1JfUEZVWkUxMDA9eQpDT05GSUdfUkVHVUxBVE9SX1BXTT15CkNPTkZJR19SRUdVTEFUT1JfUUNPTV9SUE1IPXkKQ09ORklHX1JFR1VMQVRPUl9RQ09NX1NNRF9SUE09eQpDT05GSUdfUkVHVUxBVE9SX1FDT01fU1BNST15CkNPTkZJR19SRUdVTEFUT1JfUks4MDg9eQpDT05GSUdfUkVHVUxBVE9SX1MyTVBTMTE9eQpDT05GSUdfUkVHVUxBVE9SX1ZDVFJMPW0KQ09ORklHX1JDX0NPUkU9bQpDT05GSUdfUkNfREVDT0RFUlM9eQpDT05GSUdfUkNfREVWSUNFUz15CkNPTkZJR19JUl9NRVNPTj1tCkNPTkZJR19JUl9TVU5YST1tCkNPTkZJR19NRURJQV9TVVBQT1JUPW0KQ09ORklHX01FRElBX0NBTUVSQV9TVVBQT1JUPXkKQ09ORklHX01FRElBX0FOQUxPR19UVl9TVVBQT1JUPXkKQ09ORklHX01FRElBX0RJR0lUQUxfVFZfU1VQUE9SVD15CkNPTkZJR19NRURJQV9TRFJfU1VQUE9SVD15CkNPTkZJR19NRURJQV9DT05UUk9MTEVSPXkKQ09ORklHX1ZJREVPX1Y0TDJfU1VCREVWX0FQST15CkNPTkZJR19NRURJQV9QTEFURk9STV9TVVBQT1JUPXkKIyBDT05GSUdfRFZCX05FVCBpcyBub3Qgc2V0CkNPTkZJR19NRURJQV9VU0JfU1VQUE9SVD15CkNPTkZJR19VU0JfVklERU9fQ0xBU1M9bQpDT05GSUdfVjRMX1BMQVRGT1JNX0RSSVZFUlM9eQpDT05GSUdfVklERU9fUkNBUl9DU0kyPW0KQ09ORklHX1ZJREVPX1JDQVJfVklOPW0KQ09ORklHX1ZJREVPX1NVTjZJX0NTST1tCkNPTkZJR19WNExfTUVNMk1FTV9EUklWRVJTPXkKQ09ORklHX1ZJREVPX1NBTVNVTkdfUzVQX0pQRUc9bQpDT05GSUdfVklERU9fU0FNU1VOR19TNVBfTUZDPW0KQ09ORklHX1ZJREVPX1NBTVNVTkdfRVhZTk9TX0dTQz1tCkNPTkZJR19WSURFT19SRU5FU0FTX0ZEUDE9bQpDT05GSUdfVklERU9fUkVORVNBU19GQ1A9bQpDT05GSUdfVklERU9fUkVORVNBU19WU1AxPW0KQ09ORklHX1NEUl9QTEFURk9STV9EUklWRVJTPXkKQ09ORklHX1ZJREVPX1JDQVJfRFJJRj1tCkNPTkZJR19WSURFT19JTVgyMTk9bQpDT05GSUdfVklERU9fT1Y1NjQ1PW0KQ09ORklHX1ZJREVPX1FDT01fQ0FNU1M9bQpDT05GSUdfRFJNPW0KQ09ORklHX0RSTV9JMkNfTlhQX1REQTk5OFg9bQpDT05GSUdfRFJNX01BTElfRElTUExBWT1tCkNPTkZJR19EUk1fTk9VVkVBVT1tCkNPTkZJR19EUk1fRVhZTk9TPW0KQ09ORklHX0RSTV9FWFlOT1M1NDMzX0RFQ09OPXkKQ09ORklHX0RSTV9FWFlOT1M3X0RFQ09OPXkKQ09ORklHX0RSTV9FWFlOT1NfRFNJPXkKIyBDT05GSUdfRFJNX0VYWU5PU19EUCBpcyBub3Qgc2V0CkNPTkZJR19EUk1fRVhZTk9TX0hETUk9eQpDT05GSUdfRFJNX0VYWU5PU19NSUM9eQpDT05GSUdfRFJNX1JPQ0tDSElQPW0KQ09ORklHX1JPQ0tDSElQX0FOQUxPR0lYX0RQPXkKQ09ORklHX1JPQ0tDSElQX0NETl9EUD15CkNPTkZJR19ST0NLQ0hJUF9EV19IRE1JPXkKQ09ORklHX1JPQ0tDSElQX0RXX01JUElfRFNJPXkKQ09ORklHX1JPQ0tDSElQX0lOTk9fSERNST15CkNPTkZJR19EUk1fUkNBUl9EVT1tCkNPTkZJR19EUk1fUkNBUl9EV19IRE1JPW0KQ09ORklHX0RSTV9TVU40ST1tCkNPTkZJR19EUk1fU1VONklfRFNJPW0KQ09ORklHX0RSTV9TVU44SV9EV19IRE1JPW0KQ09ORklHX0RSTV9TVU44SV9NSVhFUj1tCkNPTkZJR19EUk1fTVNNPW0KQ09ORklHX0RSTV9URUdSQT1tCkNPTkZJR19EUk1fUEFORUxfTFZEUz1tCkNPTkZJR19EUk1fUEFORUxfU0lNUExFPW0KQ09ORklHX0RSTV9QQU5FTF9SQVlESVVNX1JNNjcxOTE9bQpDT05GSUdfRFJNX1BBTkVMX1NJVFJPTklYX1NUNzcwMz1tCkNPTkZJR19EUk1fUEFORUxfVFJVTFlfTlQzNTU5N19XUVhHQT1tCkNPTkZJR19EUk1fRElTUExBWV9DT05ORUNUT1I9bQpDT05GSUdfRFJNX05XTF9NSVBJX0RTST1tCkNPTkZJR19EUk1fTE9OVElVTV9MVDk2MTE9bQpDT05GSUdfRFJNX1NJSTkwMlg9bQpDT05GSUdfRFJNX1NJTVBMRV9CUklER0U9bQpDT05GSUdfRFJNX1RISU5FX1RIQzYzTFZEMTAyND1tCkNPTkZJR19EUk1fVElfU042NURTSTg2PW0KQ09ORklHX0RSTV9JMkNfQURWNzUxMT1tCkNPTkZJR19EUk1fSTJDX0FEVjc1MTFfQVVESU89eQpDT05GSUdfRFJNX0RXX0hETUlfQUhCX0FVRElPPW0KQ09ORklHX0RSTV9EV19IRE1JX0NFQz1tCkNPTkZJR19EUk1fVkM0PW0KQ09ORklHX0RSTV9FVE5BVklWPW0KQ09ORklHX0RSTV9ISVNJX0hJQk1DPW0KQ09ORklHX0RSTV9ISVNJX0tJUklOPW0KQ09ORklHX0RSTV9NWFNGQj1tCkNPTkZJR19EUk1fTUVTT049bQpDT05GSUdfRFJNX1BMMTExPW0KQ09ORklHX0RSTV9MSU1BPW0KQ09ORklHX0RSTV9QQU5GUk9TVD1tCkNPTkZJR19GQj15CkNPTkZJR19GQl9NT0RFX0hFTFBFUlM9eQpDT05GSUdfRkJfRUZJPXkKQ09ORklHX0JBQ0tMSUdIVF9HRU5FUklDPW0KQ09ORklHX0JBQ0tMSUdIVF9QV009bQpDT05GSUdfQkFDS0xJR0hUX0xQODU1WD1tCkNPTkZJR19MT0dPPXkKIyBDT05GSUdfTE9HT19MSU5VWF9NT05PIGlzIG5vdCBzZXQKIyBDT05GSUdfTE9HT19MSU5VWF9WR0ExNiBpcyBub3Qgc2V0CkNPTkZJR19TT1VORD15CkNPTkZJR19TTkQ9eQpDT05GSUdfU05EX0hEQV9URUdSQT1tCkNPTkZJR19TTkRfSERBX0NPREVDX0hETUk9bQpDT05GSUdfU05EX1NPQz15CkNPTkZJR19TTkRfQkNNMjgzNV9TT0NfSTJTPW0KQ09ORklHX1NORF9TT0NfRlNMX1NBST1tCkNPTkZJR19TTkRfTUVTT05fQVhHX1NPVU5EX0NBUkQ9bQpDT05GSUdfU05EX01FU09OX0dYX1NPVU5EX0NBUkQ9bQpDT05GSUdfU05EX1NPQ19RQ09NPW0KQ09ORklHX1NORF9TT0NfQVBRODAxNl9TQkM9bQpDT05GSUdfU05EX1NPQ19NU004OTk2PW0KQ09ORklHX1NORF9TT0NfU0RNODQ1PW0KQ09ORklHX1NORF9TT0NfUk9DS0NISVA9bQpDT05GSUdfU05EX1NPQ19ST0NLQ0hJUF9TUERJRj1tCkNPTkZJR19TTkRfU09DX1JPQ0tDSElQX1JUNTY0NT1tCkNPTkZJR19TTkRfU09DX1JLMzM5OV9HUlVfU09VTkQ9bQpDT05GSUdfU05EX1NPQ19TQU1TVU5HPXkKQ09ORklHX1NORF9TT0NfUkNBUj1tCkNPTkZJR19TTkRfU1VONElfU1BESUY9bQpDT05GSUdfU05EX1NPQ19URUdSQT1tCkNPTkZJR19TTkRfU09DX1RFR1JBMjEwX0FIVUI9bQpDT05GSUdfU05EX1NPQ19URUdSQTIxMF9ETUlDPW0KQ09ORklHX1NORF9TT0NfVEVHUkEyMTBfSTJTPW0KQ09ORklHX1NORF9TT0NfVEVHUkExODZfRFNQSz1tCkNPTkZJR19TTkRfU09DX1RFR1JBMjEwX0FETUFJRj1tCkNPTkZJR19TTkRfU09DX0FLNDYxMz1tCkNPTkZJR19TTkRfU09DX0VTNzEzND1tCkNPTkZJR19TTkRfU09DX0VTNzI0MT1tCkNPTkZJR19TTkRfU09DX1BDTTMxNjhBX0kyQz1tCkNPTkZJR19TTkRfU09DX1NJTVBMRV9BTVBMSUZJRVI9bQpDT05GSUdfU05EX1NPQ19UQVM1NzFYPW0KQ09ORklHX1NORF9TT0NfV0NEOTM0WD1tCkNPTkZJR19TTkRfU09DX1dNODkwND1tCkNPTkZJR19TTkRfU09DX1dTQTg4MVg9bQpDT05GSUdfU05EX1NJTVBMRV9DQVJEPW0KQ09ORklHX1NORF9BVURJT19HUkFQSF9DQVJEPW0KQ09ORklHX0kyQ19ISUQ9bQpDT05GSUdfVVNCX0NPTk5fR1BJTz1tCkNPTkZJR19VU0I9eQpDT05GSUdfVVNCX09URz15CkNPTkZJR19VU0JfWEhDSV9IQ0Q9eQpDT05GSUdfVVNCX1hIQ0lfVEVHUkE9eQpDT05GSUdfVVNCX0VIQ0lfSENEPXkKQ09ORklHX1VTQl9FSENJX0VYWU5PUz15CkNPTkZJR19VU0JfRUhDSV9IQ0RfUExBVEZPUk09eQpDT05GSUdfVVNCX09IQ0lfSENEPXkKQ09ORklHX1VTQl9PSENJX0VYWU5PUz15CkNPTkZJR19VU0JfT0hDSV9IQ0RfUExBVEZPUk09eQpDT05GSUdfVVNCX1JFTkVTQVNfVVNCSFNfSENEPW0KQ09ORklHX1VTQl9SRU5FU0FTX1VTQkhTPW0KQ09ORklHX1VTQl9BQ009bQpDT05GSUdfVVNCX1NUT1JBR0U9eQpDT05GSUdfVVNCX01VU0JfSERSQz15CkNPTkZJR19VU0JfTVVTQl9TVU5YST15CkNPTkZJR19VU0JfRFdDMz15CkNPTkZJR19VU0JfRFdDMj15CkNPTkZJR19VU0JfQ0hJUElERUE9eQpDT05GSUdfVVNCX0NISVBJREVBX1VEQz15CkNPTkZJR19VU0JfQ0hJUElERUFfSE9TVD15CkNPTkZJR19VU0JfSVNQMTc2MD15CkNPTkZJR19VU0JfU0VSSUFMPW0KQ09ORklHX1VTQl9TRVJJQUxfRlRESV9TSU89bQpDT05GSUdfVVNCX0hTSUNfVVNCMzUwMz15CkNPTkZJR19OT1BfVVNCX1hDRUlWPXkKQ09ORklHX1VTQl9HQURHRVQ9eQpDT05GSUdfVVNCX1JFTkVTQVNfVVNCSFNfVURDPW0KQ09ORklHX1VTQl9SRU5FU0FTX1VTQjM9bQpDT05GSUdfVVNCX1RFR1JBX1hVREM9bQpDT05GSUdfVVNCX0NPTkZJR0ZTPW0KQ09ORklHX1VTQl9DT05GSUdGU19TRVJJQUw9eQpDT05GSUdfVVNCX0NPTkZJR0ZTX0FDTT15CkNPTkZJR19VU0JfQ09ORklHRlNfT0JFWD15CkNPTkZJR19VU0JfQ09ORklHRlNfTkNNPXkKQ09ORklHX1VTQl9DT05GSUdGU19FQ009eQpDT05GSUdfVVNCX0NPTkZJR0ZTX0VDTV9TVUJTRVQ9eQpDT05GSUdfVVNCX0NPTkZJR0ZTX1JORElTPXkKQ09ORklHX1VTQl9DT05GSUdGU19FRU09eQpDT05GSUdfVVNCX0NPTkZJR0ZTX01BU1NfU1RPUkFHRT15CkNPTkZJR19VU0JfQ09ORklHRlNfRl9GUz15CkNPTkZJR19UWVBFQz1tCkNPTkZJR19UWVBFQ19UQ1BNPW0KQ09ORklHX1RZUEVDX0ZVU0IzMDI9bQpDT05GSUdfVFlQRUNfSEQzU1MzMjIwPW0KQ09ORklHX01NQz15CkNPTkZJR19NTUNfQkxPQ0tfTUlOT1JTPTMyCkNPTkZJR19NTUNfQVJNTU1DST15CkNPTkZJR19NTUNfU0RIQ0k9eQpDT05GSUdfTU1DX1NESENJX0FDUEk9eQpDT05GSUdfTU1DX1NESENJX1BMVEZNPXkKQ09ORklHX01NQ19TREhDSV9PRl9BUkFTQU49eQpDT05GSUdfTU1DX1NESENJX09GX0VTREhDPXkKQ09ORklHX01NQ19TREhDSV9DQURFTkNFPXkKQ09ORklHX01NQ19TREhDSV9FU0RIQ19JTVg9eQpDT05GSUdfTU1DX1NESENJX1RFR1JBPXkKQ09ORklHX01NQ19TREhDSV9GX1NESDMwPXkKQ09ORklHX01NQ19NRVNPTl9HWD15CkNPTkZJR19NTUNfU0RIQ0lfTVNNPXkKQ09ORklHX01NQ19TUEk9eQpDT05GSUdfTU1DX1NESEk9eQpDT05GSUdfTU1DX1VOSVBISUVSPXkKQ09ORklHX01NQ19EVz15CkNPTkZJR19NTUNfRFdfRVhZTk9TPXkKQ09ORklHX01NQ19EV19ISTM3OThDVjIwMD15CkNPTkZJR19NTUNfRFdfSzM9eQpDT05GSUdfTU1DX0RXX1JPQ0tDSElQPXkKQ09ORklHX01NQ19TVU5YST15CkNPTkZJR19NTUNfQkNNMjgzNT15CkNPTkZJR19NTUNfU0RIQ0lfWEVOT049eQpDT05GSUdfTU1DX1NESENJX0FNNjU0PXkKQ09ORklHX01NQ19PV0w9eQpDT05GSUdfTkVXX0xFRFM9eQpDT05GSUdfTEVEU19DTEFTUz15CkNPTkZJR19MRURTX0dQSU89eQpDT05GSUdfTEVEU19QV009eQpDT05GSUdfTEVEU19TWVNDT049eQpDT05GSUdfTEVEU19UUklHR0VSX1RJTUVSPXkKQ09ORklHX0xFRFNfVFJJR0dFUl9ESVNLPXkKQ09ORklHX0xFRFNfVFJJR0dFUl9IRUFSVEJFQVQ9eQpDT05GSUdfTEVEU19UUklHR0VSX0NQVT15CkNPTkZJR19MRURTX1RSSUdHRVJfREVGQVVMVF9PTj15CkNPTkZJR19MRURTX1RSSUdHRVJfUEFOSUM9eQpDT05GSUdfRURBQz15CkNPTkZJR19FREFDX0dIRVM9eQpDT05GSUdfUlRDX0NMQVNTPXkKQ09ORklHX1JUQ19EUlZfRFMxMzA3PW0KQ09ORklHX1JUQ19EUlZfTUFYNzc2ODY9eQpDT05GSUdfUlRDX0RSVl9SSzgwOD1tCkNPTkZJR19SVENfRFJWX1BDRjg1MzYzPW0KQ09ORklHX1JUQ19EUlZfUlg4NTgxPW0KQ09ORklHX1JUQ19EUlZfUlY4ODAzPW0KQ09ORklHX1JUQ19EUlZfUzVNPXkKQ09ORklHX1JUQ19EUlZfRFMzMjMyPXkKQ09ORklHX1JUQ19EUlZfUENGMjEyNz1tCkNPTkZJR19SVENfRFJWX0VGST15CkNPTkZJR19SVENfRFJWX0NST1NfRUM9eQpDT05GSUdfUlRDX0RSVl9TM0M9eQpDT05GSUdfUlRDX0RSVl9QTDAzMT15CkNPTkZJR19SVENfRFJWX1NVTjZJPXkKQ09ORklHX1JUQ19EUlZfQVJNQURBMzhYPXkKQ09ORklHX1JUQ19EUlZfUE04WFhYPW0KQ09ORklHX1JUQ19EUlZfVEVHUkE9eQpDT05GSUdfUlRDX0RSVl9TTlZTPW0KQ09ORklHX1JUQ19EUlZfSU1YX1NDPW0KQ09ORklHX1JUQ19EUlZfWEdFTkU9eQpDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19ETUFfQkNNMjgzNT15CkNPTkZJR19ETUFfU1VONkk9bQpDT05GSUdfRlNMX0VETUE9eQpDT05GSUdfSU1YX1NETUE9eQpDT05GSUdfSzNfRE1BPXkKQ09ORklHX01WX1hPUj15CkNPTkZJR19NVl9YT1JfVjI9eQpDT05GSUdfT1dMX0RNQT15CkNPTkZJR19QTDMzMF9ETUE9eQpDT05GSUdfVEVHUkEyMF9BUEJfRE1BPXkKQ09ORklHX1RFR1JBMjEwX0FETUE9bQpDT05GSUdfUUNPTV9CQU1fRE1BPXkKQ09ORklHX1FDT01fSElETUFfTUdNVD15CkNPTkZJR19RQ09NX0hJRE1BPXkKQ09ORklHX1JDQVJfRE1BQz15CkNPTkZJR19SRU5FU0FTX1VTQl9ETUFDPW0KQ09ORklHX1RJX0szX1VETUE9eQpDT05GSUdfVElfSzNfVURNQV9HTFVFX0xBWUVSPXkKQ09ORklHX1ZGSU89eQpDT05GSUdfVkZJT19QQ0k9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19WSVJUSU9fQkFMTE9PTj15CkNPTkZJR19WSVJUSU9fTU1JTz15CkNPTkZJR19YRU5fR05UREVWPXkKQ09ORklHX1hFTl9HUkFOVF9ERVZfQUxMT0M9eQpDT05GSUdfTUZEX0NST1NfRUNfREVWPXkKQ09ORklHX0NIUk9NRV9QTEFURk9STVM9eQpDT05GSUdfQ1JPU19FQz15CkNPTkZJR19DUk9TX0VDX0kyQz15CkNPTkZJR19DUk9TX0VDX1NQST15CkNPTkZJR19DUk9TX0VDX0NIQVJERVY9bQpDT05GSUdfQ09NTU9OX0NMS19SSzgwOD15CkNPTkZJR19DT01NT05fQ0xLX1NDUEk9eQpDT05GSUdfQ09NTU9OX0NMS19DUzIwMDBfQ1A9eQpDT05GSUdfQ09NTU9OX0NMS19GU0xfU0FJPXkKQ09ORklHX0NPTU1PTl9DTEtfUzJNUFMxMT15CkNPTkZJR19DT01NT05fQ0xLX1BXTT15CkNPTkZJR19DT01NT05fQ0xLX1ZDNT15CkNPTkZJR19DT01NT05fQ0xLX0JENzE4WFg9bQpDT05GSUdfQ0xLX1JBU1BCRVJSWVBJPW0KQ09ORklHX0NMS19JTVg4TU09eQpDT05GSUdfQ0xLX0lNWDhNTj15CkNPTkZJR19DTEtfSU1YOE1QPXkKQ09ORklHX0NMS19JTVg4TVE9eQpDT05GSUdfQ0xLX0lNWDhRWFA9eQpDT05GSUdfVElfU0NJX0NMSz15CkNPTkZJR19DT01NT05fQ0xLX1FDT009eQpDT05GSUdfUUNPTV9BNTNQTEw9eQpDT05GSUdfUUNPTV9DTEtfQVBDU19NU004OTE2PXkKQ09ORklHX1FDT01fQ0xLX1NNRF9SUE09eQpDT05GSUdfUUNPTV9DTEtfUlBNSD15CkNPTkZJR19JUFFfR0NDXzgwNzQ9eQpDT05GSUdfSVBRX0dDQ182MDE4PXkKQ09ORklHX01TTV9HQ0NfODkxNj15CkNPTkZJR19NU01fR0NDXzg5OTQ9eQpDT05GSUdfTVNNX01NQ0NfODk5Nj15CkNPTkZJR19NU01fR0NDXzg5OTg9eQpDT05GSUdfUUNTX0dDQ180MDQ9eQpDT05GSUdfU0NfR0NDXzcxODA9eQpDT05GSUdfU0RNX0NBTUNDXzg0NT1tCkNPTkZJR19TRE1fR0NDXzg0NT15CkNPTkZJR19TRE1fR1BVQ0NfODQ1PXkKQ09ORklHX1NETV9WSURFT0NDXzg0NT15CkNPTkZJR19TRE1fRElTUENDXzg0NT15CkNPTkZJR19TTV9HQ0NfODE1MD15CkNPTkZJR19TTV9HQ0NfODI1MD15CkNPTkZJR19TTV9HUFVDQ184MTUwPXkKQ09ORklHX1NNX0dQVUNDXzgyNTA9eQpDT05GSUdfUUNPTV9IRlBMTD15CkNPTkZJR19IV1NQSU5MT0NLPXkKQ09ORklHX0hXU1BJTkxPQ0tfUUNPTT15CkNPTkZJR19BUk1fTUhVPXkKQ09ORklHX0lNWF9NQk9YPXkKQ09ORklHX1BMQVRGT1JNX01IVT15CkNPTkZJR19CQ00yODM1X01CT1g9eQpDT05GSUdfUUNPTV9BUENTX0lQQz15CkNPTkZJR19RQ09NX0lQQ0M9eQpDT05GSUdfUk9DS0NISVBfSU9NTVU9eQpDT05GSUdfVEVHUkFfSU9NTVVfU01NVT15CkNPTkZJR19BUk1fU01NVT15CkNPTkZJR19BUk1fU01NVV9WMz15CkNPTkZJR19RQ09NX0lPTU1VPXkKQ09ORklHX1JFTU9URVBST0M9eQpDT05GSUdfUUNPTV9RNlY1X01TUz1tCkNPTkZJR19RQ09NX1E2VjVfUEFTPW0KQ09ORklHX1FDT01fU1lTTU9OPW0KQ09ORklHX1JQTVNHX1FDT01fR0xJTktfUlBNPXkKQ09ORklHX1JQTVNHX1FDT01fR0xJTktfU01FTT1tCkNPTkZJR19SUE1TR19RQ09NX1NNRD15CkNPTkZJR19TT1VORFdJUkU9bQpDT05GSUdfU09VTkRXSVJFX1FDT009bQpDT05GSUdfT1dMX1BNX0RPTUFJTlM9eQpDT05GSUdfUkFTUEJFUlJZUElfUE9XRVI9eQpDT05GSUdfRlNMX0RQQUE9eQpDT05GSUdfRlNMX01DX0RQSU89eQpDT05GSUdfUUNPTV9BT1NTX1FNUD15CkNPTkZJR19RQ09NX0dFTklfU0U9eQpDT05GSUdfUUNPTV9STVRGU19NRU09bQpDT05GSUdfUUNPTV9SUE1IPXkKQ09ORklHX1FDT01fUlBNSFBEPXkKQ09ORklHX1FDT01fUlBNUEQ9eQpDT05GSUdfUUNPTV9TTUVNPXkKQ09ORklHX1FDT01fU01EX1JQTT15CkNPTkZJR19RQ09NX1NNUDJQPXkKQ09ORklHX1FDT01fU01TTT15CkNPTkZJR19RQ09NX1NPQ0lORk89bQpDT05GSUdfUUNPTV9BUFI9bQpDT05GSUdfQVJDSF9SOEE3NzRBMT15CkNPTkZJR19BUkNIX1I4QTc3NEIxPXkKQ09ORklHX0FSQ0hfUjhBNzc0QzA9eQpDT05GSUdfQVJDSF9SOEE3NzRFMT15CkNPTkZJR19BUkNIX1I4QTc3OTUwPXkKQ09ORklHX0FSQ0hfUjhBNzc5NTE9eQpDT05GSUdfQVJDSF9SOEE3Nzk2MD15CkNPTkZJR19BUkNIX1I4QTc3OTYxPXkKQ09ORklHX0FSQ0hfUjhBNzc5NjU9eQpDT05GSUdfQVJDSF9SOEE3Nzk3MD15CkNPTkZJR19BUkNIX1I4QTc3OTgwPXkKQ09ORklHX0FSQ0hfUjhBNzc5OTA9eQpDT05GSUdfQVJDSF9SOEE3Nzk5NT15CkNPTkZJR19ST0NLQ0hJUF9QTV9ET01BSU5TPXkKQ09ORklHX0FSQ0hfVEVHUkFfMTMyX1NPQz15CkNPTkZJR19BUkNIX1RFR1JBXzIxMF9TT0M9eQpDT05GSUdfQVJDSF9URUdSQV8xODZfU09DPXkKQ09ORklHX0FSQ0hfVEVHUkFfMTk0X1NPQz15CkNPTkZJR19BUkNIX0szX0FNNl9TT0M9eQpDT05GSUdfQVJDSF9LM19KNzIxRV9TT0M9eQpDT05GSUdfVElfU0NJX1BNX0RPTUFJTlM9eQpDT05GSUdfRVhUQ09OX1BUTjUxNTA9bQpDT05GSUdfRVhUQ09OX1VTQl9HUElPPXkKQ09ORklHX0VYVENPTl9VU0JDX0NST1NfRUM9eQpDT05GSUdfUkVORVNBU19SUENJRj1tCkNPTkZJR19JSU89eQpDT05GSUdfRVhZTk9TX0FEQz15CkNPTkZJR19NQVg5NjExPW0KQ09ORklHX1FDT01fU1BNSV9BREM1PW0KQ09ORklHX1JPQ0tDSElQX1NBUkFEQz1tCkNPTkZJR19JSU9fQ1JPU19FQ19TRU5TT1JTX0NPUkU9bQpDT05GSUdfSUlPX0NST1NfRUNfU0VOU09SUz1tCkNPTkZJR19JSU9fQ1JPU19FQ19MSUdIVF9QUk9YPW0KQ09ORklHX1NFTlNPUlNfSVNMMjkwMTg9bQpDT05GSUdfSUlPX0NST1NfRUNfQkFSTz1tCkNPTkZJR19NUEwzMTE1PW0KQ09ORklHX1BXTT15CkNPTkZJR19QV01fQkNNMjgzNT1tCkNPTkZJR19QV01fQ1JPU19FQz1tCkNPTkZJR19QV01fTUVTT049bQpDT05GSUdfUFdNX1JDQVI9bQpDT05GSUdfUFdNX1JPQ0tDSElQPXkKQ09ORklHX1BXTV9TQU1TVU5HPXkKQ09ORklHX1BXTV9TTDI4Q1BMRD1tCkNPTkZJR19QV01fU1VONEk9bQpDT05GSUdfUFdNX1RFR1JBPW0KQ09ORklHX1NMMjhDUExEX0lOVEM9eQpDT05GSUdfUUNPTV9QREM9eQpDT05GSUdfUkVTRVRfSU1YNz15CkNPTkZJR19SRVNFVF9RQ09NX0FPU1M9eQpDT05GSUdfUkVTRVRfUUNPTV9QREM9bQpDT05GSUdfUkVTRVRfVElfU0NJPXkKQ09ORklHX1BIWV9YR0VORT15CkNPTkZJR19QSFlfU1VONElfVVNCPXkKQ09ORklHX1BIWV9NSVhFTF9NSVBJX0RQSFk9bQpDT05GSUdfUEhZX0hJNjIyMF9VU0I9eQpDT05GSUdfUEhZX0hJU1RCX0NPTUJQSFk9eQpDT05GSUdfUEhZX0hJU0lfSU5OT19VU0IyPXkKQ09ORklHX1BIWV9NVkVCVV9DUDExMF9DT01QSFk9eQpDT05GSUdfUEhZX1FDT01fUU1QPW0KQ09ORklHX1BIWV9RQ09NX1FVU0IyPW0KQ09ORklHX1BIWV9RQ09NX1VTQl9IUz15CkNPTkZJR19QSFlfUUNPTV9VU0JfU05QU19GRU1UT19WMj15CkNPTkZJR19QSFlfUkNBUl9HRU4zX1BDSUU9eQpDT05GSUdfUEhZX1JDQVJfR0VOM19VU0IyPXkKQ09ORklHX1BIWV9SQ0FSX0dFTjNfVVNCMz1tCkNPTkZJR19QSFlfUk9DS0NISVBfRU1NQz15CkNPTkZJR19QSFlfUk9DS0NISVBfSU5OT19IRE1JPW0KQ09ORklHX1BIWV9ST0NLQ0hJUF9JTk5PX1VTQjI9eQpDT05GSUdfUEhZX1JPQ0tDSElQX1BDSUU9bQpDT05GSUdfUEhZX1JPQ0tDSElQX1RZUEVDPXkKQ09ORklHX1BIWV9VTklQSElFUl9VU0IyPXkKQ09ORklHX1BIWV9VTklQSElFUl9VU0IzPXkKQ09ORklHX1BIWV9URUdSQV9YVVNCPXkKQ09ORklHX0FSTV9TTU1VX1YzX1BNVT1tCkNPTkZJR19GU0xfSU1YOF9ERFJfUE1VPW0KQ09ORklHX0hJU0lfUE1VPXkKQ09ORklHX1FDT01fTDJfUE1VPXkKQ09ORklHX1FDT01fTDNfUE1VPXkKQ09ORklHX05WTUVNX0lNWF9PQ09UUD15CkNPTkZJR19OVk1FTV9JTVhfT0NPVFBfU0NVPXkKQ09ORklHX1FDT01fUUZQUk9NPXkKQ09ORklHX1JPQ0tDSElQX0VGVVNFPXkKQ09ORklHX05WTUVNX1NVTlhJX1NJRD15CkNPTkZJR19VTklQSElFUl9FRlVTRT15CkNPTkZJR19NRVNPTl9FRlVTRT1tCkNPTkZJR19GUEdBPXkKQ09ORklHX0ZQR0FfTUdSX1NUUkFUSVgxMF9TT0M9bQpDT05GSUdfRlBHQV9CUklER0U9bQpDT05GSUdfQUxURVJBX0ZSRUVaRV9CUklER0U9bQpDT05GSUdfRlBHQV9SRUdJT049bQpDT05GSUdfT0ZfRlBHQV9SRUdJT049bQpDT05GSUdfVEVFPXkKQ09ORklHX09QVEVFPXkKQ09ORklHX1NMSU1CVVM9bQpDT05GSUdfU0xJTV9RQ09NX0NUUkw9bQpDT05GSUdfU0xJTV9RQ09NX05HRF9DVFJMPW0KQ09ORklHX01VWF9NTUlPPXkKQ09ORklHX0lOVEVSQ09OTkVDVD15CkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTT15CkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTV9NU004OTE2PW0KQ09ORklHX0lOVEVSQ09OTkVDVF9RQ09NX1NETTg0NT1tCkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTV9TTTgxNTA9bQpDT05GSUdfSU5URVJDT05ORUNUX1FDT01fU004MjUwPW0KQ09ORklHX0VYVDJfRlM9eQpDT05GSUdfRVhUM19GUz15CkNPTkZJR19FWFQ0X0ZTX1BPU0lYX0FDTD15CkNPTkZJR19CVFJGU19GUz1tCkNPTkZJR19CVFJGU19GU19QT1NJWF9BQ0w9eQpDT05GSUdfRkFOT1RJRlk9eQpDT05GSUdfRkFOT1RJRllfQUNDRVNTX1BFUk1JU1NJT05TPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz1tCkNPTkZJR19DVVNFPW0KQ09ORklHX09WRVJMQVlfRlM9bQpDT05GSUdfVkZBVF9GUz15CkNPTkZJR19IVUdFVExCRlM9eQpDT05GSUdfQ09ORklHRlNfRlM9eQpDT05GSUdfRUZJVkFSX0ZTPXkKQ09ORklHX1NRVUFTSEZTPXkKQ09ORklHX05GU19GUz15CkNPTkZJR19ORlNfVjQ9eQpDT05GSUdfTkZTX1Y0XzE9eQpDT05GSUdfTkZTX1Y0XzI9eQpDT05GSUdfUk9PVF9ORlM9eQpDT05GSUdfOVBfRlM9eQpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfSVNPODg1OV8xPXkKQ09ORklHX1NFQ1VSSVRZPXkKQ09ORklHX0NSWVBUT19FQ0hBSU5JVj15CkNPTkZJR19DUllQVE9fQU5TSV9DUFJORz15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfUk5HPW0KQ09ORklHX0NSWVBUT19ERVZfU1VOOElfQ0U9bQpDT05GSUdfQ1JZUFRPX0RFVl9GU0xfQ0FBTT1tCkNPTkZJR19DUllQVE9fREVWX0ZTTF9EUEFBMl9DQUFNPW0KQ09ORklHX0NSWVBUT19ERVZfUUNPTV9STkc9bQpDT05GSUdfQ1JZUFRPX0RFVl9DQ1JFRT1tCkNPTkZJR19DUllQVE9fREVWX0hJU0lfU0VDMj1tCkNPTkZJR19DUllQVE9fREVWX0hJU0lfWklQPW0KQ09ORklHX0NSWVBUT19ERVZfSElTSV9IUFJFPW0KQ09ORklHX0NNQV9TSVpFX01CWVRFUz0zMgpDT05GSUdfUFJJTlRLX1RJTUU9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19GUz15CkNPTkZJR19ERUJVR19LRVJORUw9eQojIENPTkZJR19TQ0hFRF9ERUJVRyBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1BSRUVNUFQgaXMgbm90IHNldApDT05GSUdfTUVNVEVTVD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX0ZBSVJfR1JPVVBfU0NIRUQ9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9ERUJVR19GUz15CkNPTkZJR19LVk1fQVJNPW0K" - }, - { - "kernelversion": "1_1.26.1", - "kernelrelease": "5.10.57", - "target": "minikube", - "kernelconfigdata": "Q09ORklHX0ZBTk9USUZZPXkKQ09ORklHX0tQUk9CRV9FVkVOVFM9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19ERUJVR19JTkZPX0JURj15CkNPTkZJR19JS0hFQURFUlM9eQpDT05GSUdfQlBGX0xTTT15CkNPTkZJR19GVFJBQ0VfU1lTQ0FMTFM9eQpDT05GSUdfRlRSQUNFPXkKQ09ORklHX0hBVkVfU1lTQ0FMTF9UUkFDRVBPSU5UUz15CkNPTkZJR19CUklER0VfTkVURklMVEVSPXkKQ09ORklHX1BDST15CkNPTkZJR19UTVBGUz15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWl9JRExFPXkKQ09ORklHX0hJR0hfUkVTX1RJTUVSUz15CkNPTkZJR19QUkVFTVBUPXkKQ09ORklHX0lSUV9USU1FX0FDQ09VTlRJTkc9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19CU0RfUFJPQ0VTU19BQ0NUX1YzPXkKQ09ORklHX1RBU0tfWEFDQ1Q9eQpDT05GSUdfVEFTS19JT19BQ0NPVU5USU5HPXkKQ09ORklHX0lLQ09ORklHPXkKQ09ORklHX0lLQ09ORklHX1BST0M9eQpDT05GSUdfTlVNQV9CQUxBTkNJTkc9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19VU0VSX05TPXkKQ09ORklHX1NDSEVEX0FVVE9HUk9VUD15CkNPTkZJR19CTEtfREVWX0lOSVRSRD15CkNPTkZJR19LQUxMU1lNU19BTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19BUkNIX0FDVElPTlM9eQpDT05GSUdfQVJDSF9BR0lMRVg9eQpDT05GSUdfQVJDSF9TVU5YST15CkNPTkZJR19BUkNIX0FMUElORT15CkNPTkZJR19BUkNIX0JDTTI4MzU9eQpDT05GSUdfQVJDSF9CQ01fSVBST0M9eQpDT05GSUdfQVJDSF9CRVJMSU49eQpDT05GSUdfQVJDSF9CUkNNU1RCPXkKQ09ORklHX0FSQ0hfRVhZTk9TPXkKQ09ORklHX0FSQ0hfSzM9eQpDT05GSUdfQVJDSF9MQVlFUlNDQVBFPXkKQ09ORklHX0FSQ0hfTEcxSz15CkNPTkZJR19BUkNIX0hJU0k9eQpDT05GSUdfQVJDSF9NRURJQVRFSz15CkNPTkZJR19BUkNIX01FU09OPXkKQ09ORklHX0FSQ0hfTVZFQlU9eQpDT05GSUdfQVJDSF9NWEM9eQpDT05GSUdfQVJDSF9RQ09NPXkKQ09ORklHX0FSQ0hfUkVORVNBUz15CkNPTkZJR19BUkNIX1JPQ0tDSElQPXkKQ09ORklHX0FSQ0hfUzMyPXkKQ09ORklHX0FSQ0hfU0VBVFRMRT15CkNPTkZJR19BUkNIX1NUUkFUSVgxMD15CkNPTkZJR19BUkNIX1NZTlFVQUNFUj15CkNPTkZJR19BUkNIX1RFR1JBPXkKQ09ORklHX0FSQ0hfU1BSRD15CkNPTkZJR19BUkNIX1RIVU5ERVI9eQpDT05GSUdfQVJDSF9USFVOREVSMj15CkNPTkZJR19BUkNIX1VOSVBISUVSPXkKQ09ORklHX0FSQ0hfVkVYUFJFU1M9eQpDT05GSUdfQVJDSF9WSVNDT05UST15CkNPTkZJR19BUkNIX1hHRU5FPXkKQ09ORklHX0FSQ0hfWlg9eQpDT05GSUdfQVJDSF9aWU5RTVA9eQpDT05GSUdfQVJNNjRfVkFfQklUU180OD15CkNPTkZJR19TQ0hFRF9NQz15CkNPTkZJR19TQ0hFRF9TTVQ9eQpDT05GSUdfTlVNQT15CkNPTkZJR19TRUNDT01QPXkKQ09ORklHX0tFWEVDPXkKQ09ORklHX0tFWEVDX0ZJTEU9eQpDT05GSUdfQ1JBU0hfRFVNUD15CkNPTkZJR19YRU49eQpDT05GSUdfQ09NUEFUPXkKQ09ORklHX1JBTkRPTUlaRV9CQVNFPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1dRX1BPV0VSX0VGRklDSUVOVF9ERUZBVUxUPXkKQ09ORklHX0VORVJHWV9NT0RFTD15CkNPTkZJR19BUk1fQ1BVSURMRT15CkNPTkZJR19BUk1fUFNDSV9DUFVJRExFPXkKQ09ORklHX0NQVV9GUkVRPXkKQ09ORklHX0NQVV9GUkVRX1NUQVQ9eQpDT05GSUdfQ1BVX0ZSRVFfR09WX1BPV0VSU0FWRT1tCkNPTkZJR19DUFVfRlJFUV9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9PTkRFTUFORD15CkNPTkZJR19DUFVfRlJFUV9HT1ZfQ09OU0VSVkFUSVZFPW0KQ09ORklHX0NQVV9GUkVRX0dPVl9TQ0hFRFVUSUw9eQpDT05GSUdfQ1BVRlJFUV9EVD15CkNPTkZJR19BQ1BJX0NQUENfQ1BVRlJFUT1tCkNPTkZJR19BUk1fQUxMV0lOTkVSX1NVTjUwSV9DUFVGUkVRX05WTUVNPW0KQ09ORklHX0FSTV9BUk1BREFfMzdYWF9DUFVGUkVRPXkKQ09ORklHX0FSTV9TQ1BJX0NQVUZSRVE9eQpDT05GSUdfQVJNX0lNWF9DUFVGUkVRX0RUPW0KQ09ORklHX0FSTV9RQ09NX0NQVUZSRVFfTlZNRU09eQpDT05GSUdfQVJNX1FDT01fQ1BVRlJFUV9IVz15CkNPTkZJR19BUk1fUkFTUEJFUlJZUElfQ1BVRlJFUT1tCkNPTkZJR19BUk1fVEVHUkExODZfQ1BVRlJFUT15CkNPTkZJR19RT1JJUV9DUFVGUkVRPXkKQ09ORklHX0FSTV9TQ1BJX1BST1RPQ09MPXkKQ09ORklHX1JBU1BCRVJSWVBJX0ZJUk1XQVJFPXkKQ09ORklHX0lOVEVMX1NUUkFUSVgxMF9TRVJWSUNFPXkKQ09ORklHX0lOVEVMX1NUUkFUSVgxMF9SU1U9bQpDT05GSUdfRUZJX0NBUFNVTEVfTE9BREVSPXkKQ09ORklHX0lNWF9TQ1U9eQpDT05GSUdfSU1YX1NDVV9QRD15CkNPTkZJR19BQ1BJPXkKQ09ORklHX0FDUElfQVBFST15CkNPTkZJR19BQ1BJX0FQRUlfR0hFUz15CkNPTkZJR19BQ1BJX0FQRUlfUENJRUFFUj15CkNPTkZJR19BQ1BJX0FQRUlfTUVNT1JZX0ZBSUxVUkU9eQpDT05GSUdfQUNQSV9BUEVJX0VJTko9eQpDT05GSUdfVklSVFVBTElaQVRJT049eQpDT05GSUdfS1ZNPXkKQ09ORklHX0FSTTY0X0NSWVBUTz15CkNPTkZJR19DUllQVE9fU0hBMV9BUk02NF9DRT15CkNPTkZJR19DUllQVE9fU0hBMl9BUk02NF9DRT15CkNPTkZJR19DUllQVE9fU0hBNTEyX0FSTTY0X0NFPW0KQ09ORklHX0NSWVBUT19TSEEzX0FSTTY0PW0KQ09ORklHX0NSWVBUT19TTTNfQVJNNjRfQ0U9bQpDT05GSUdfQ1JZUFRPX0dIQVNIX0FSTTY0X0NFPXkKQ09ORklHX0NSWVBUT19DUkNUMTBESUZfQVJNNjRfQ0U9bQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9DRV9DQ009eQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9DRV9CTEs9eQpDT05GSUdfQ1JZUFRPX0NIQUNIQTIwX05FT049bQpDT05GSUdfQ1JZUFRPX0FFU19BUk02NF9CUz1tCkNPTkZJR19KVU1QX0xBQkVMPXkKQ09ORklHX01PRFVMRVM9eQpDT05GSUdfTU9EVUxFX1VOTE9BRD15CkNPTkZJR19NT0RWRVJTSU9OUz15CiMgQ09ORklHX0NPUkVfRFVNUF9ERUZBVUxUX0VMRl9IRUFERVJTIGlzIG5vdCBzZXQKQ09ORklHX0tTTT15CkNPTkZJR19NRU1PUllfRkFJTFVSRT15CkNPTkZJR19UUkFOU1BBUkVOVF9IVUdFUEFHRT15CkNPTkZJR19ORVQ9eQpDT05GSUdfUEFDS0VUPXkKQ09ORklHX1VOSVg9eQpDT05GSUdfSU5FVD15CkNPTkZJR19JUF9NVUxUSUNBU1Q9eQpDT05GSUdfSVBfUE5QPXkKQ09ORklHX0lQX1BOUF9ESENQPXkKQ09ORklHX0lQX1BOUF9CT09UUD15CkNPTkZJR19JUFY2PW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX05FVEZJTFRFUj15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19BQ0NUPXkKQ09ORklHX05FVEZJTFRFUl9ORVRMSU5LX1FVRVVFPXkKQ09ORklHX05GX0NPTk5UUkFDSz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfWk9ORVM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX0VWRU5UUz15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRU9VVD15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRVNUQU1QPXkKQ09ORklHX05GX0NPTk5UUkFDS19GVFA9bQpDT05GSUdfTkZfQ09OTlRSQUNLX0lSQz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0FORT1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0lQPW0KQ09ORklHX05GX0NPTk5UUkFDS19URlRQPW0KQ09ORklHX05GX0NUX05FVExJTks9bQpDT05GSUdfTkVURklMVEVSX1hUX1NFVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NIRUNLU1VNPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ0xBU1NJRlk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DT05OTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0hNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSURMRVRJTUVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTEVEPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTkZRVUVVRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05PVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9URUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9UUFJPWFk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9TRUNNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQT1BUU1RSSVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0FERFJUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9CUEY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ0xVU1RFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09NTUVOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkJZVEVTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTEFCRUw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5UUkFDSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ1BVPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9EQ0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ERVZHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRFNDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRUNOPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9FU1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hBU0hMSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEVMUEVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBDT01QPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFJBTkdFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFZTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MMlRQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MRU5HVEg9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0xJTUlUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01VTFRJUE9SVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTkZBQ0NUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PU0Y9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX09XTkVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QT0xJQ1k9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BIWVNERVY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BLVFRZUEU9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1FVT1RBPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SQVRFRVNUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SRUFMTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVDRU5UPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TQ1RQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TT0NLRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUQVRFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFUSVNUSUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUUklORz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9USU1FPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9VMzI9bQpDT05GSUdfSVBfTkZfSVBUQUJMRVM9bQpDT05GSUdfSVBfTkZfRklMVEVSPW0KQ09ORklHX0lQX05GX1RBUkdFVF9SRUpFQ1Q9bQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFRElSRUNUPXkKQ09ORklHX0lQX05GX05BVD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTUFTUVVFUkFERT1tCkNPTkZJR19JUF9ORl9NQU5HTEU9bQpDT05GSUdfQlJJREdFPW0KQ09ORklHX0JSSURHRV9WTEFOX0ZJTFRFUklORz15CkNPTkZJR19ORVRfRFNBPW0KQ09ORklHX1ZMQU5fODAyMVE9bQpDT05GSUdfVkxBTl84MDIxUV9HVlJQPXkKQ09ORklHX1ZMQU5fODAyMVFfTVZSUD15CkNPTkZJR19ORVRfU0NIRUQ9eQpDT05GSUdfTkVUX1NDSF9DQlM9bQpDT05GSUdfTkVUX1NDSF9FVEY9bQpDT05GSUdfTkVUX1NDSF9UQVBSSU89bQpDT05GSUdfTkVUX1NDSF9NUVBSSU89bQpDT05GSUdfTkVUX1NDSF9JTkdSRVNTPW0KQ09ORklHX05FVF9DTFNfQkFTSUM9bQpDT05GSUdfTkVUX0NMU19GTE9XRVI9bQpDT05GSUdfTkVUX0NMU19BQ1Q9eQpDT05GSUdfTkVUX0FDVF9HQUNUPW0KQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfR0FURT1tCkNPTkZJR19RUlRSPW0KQ09ORklHX1FSVFJfU01EPW0KQ09ORklHX1FSVFJfVFVOPW0KQ09ORklHX0JQRl9KSVQ9eQpDT05GSUdfQ0FOPW0KQ09ORklHX0NBTl9SQ0FSPW0KQ09ORklHX0NBTl9SQ0FSX0NBTkZEPW0KQ09ORklHX0NBTl9GTEVYQ0FOPW0KQ09ORklHX0JUPW0KQ09ORklHX0JUX0hJRFA9bQojIENPTkZJR19CVF9IUyBpcyBub3Qgc2V0CiMgQ09ORklHX0JUX0xFIGlzIG5vdCBzZXQKQ09ORklHX0JUX0xFRFM9eQojIENPTkZJR19CVF9ERUJVR0ZTIGlzIG5vdCBzZXQKQ09ORklHX0JUX0hDSUJUVVNCPW0KQ09ORklHX0JUX0hDSVVBUlQ9bQpDT05GSUdfQlRfSENJVUFSVF9MTD15CkNPTkZJR19CVF9IQ0lVQVJUX0JDTT15CkNPTkZJR19CVF9IQ0lVQVJUX1FDQT15CkNPTkZJR19DRkc4MDIxMT1tCkNPTkZJR19NQUM4MDIxMT1tCkNPTkZJR19NQUM4MDIxMV9MRURTPXkKQ09ORklHX1JGS0lMTD1tCkNPTkZJR19ORVRfOVA9eQpDT05GSUdfTkVUXzlQX1ZJUlRJTz15CkNPTkZJR19ORkM9bQpDT05GSUdfTkZDX05DST1tCkNPTkZJR19ORkNfUzNGV1JONV9JMkM9bQpDT05GSUdfUENJPXkKQ09ORklHX1BDSUVQT1JUQlVTPXkKQ09ORklHX1BDSV9JT1Y9eQpDT05GSUdfUENJX1BBU0lEPXkKQ09ORklHX0hPVFBMVUdfUENJPXkKQ09ORklHX0hPVFBMVUdfUENJX0FDUEk9eQpDT05GSUdfUENJX0FBUkRWQVJLPXkKQ09ORklHX1BDSV9URUdSQT15CkNPTkZJR19QQ0lFX1JDQVJfSE9TVD15CkNPTkZJR19QQ0lFX1JDQVJfRVA9eQpDT05GSUdfUENJX0hPU1RfR0VORVJJQz15CkNPTkZJR19QQ0lfWEdFTkU9eQpDT05GSUdfUENJRV9BTFRFUkE9eQpDT05GSUdfUENJRV9BTFRFUkFfTVNJPXkKQ09ORklHX1BDSV9IT1NUX1RIVU5ERVJfUEVNPXkKQ09ORklHX1BDSV9IT1NUX1RIVU5ERVJfRUNBTT15CkNPTkZJR19QQ0lFX1JPQ0tDSElQX0hPU1Q9bQpDT05GSUdfUENJRV9CUkNNU1RCPW0KQ09ORklHX1BDSV9MQVlFUlNDQVBFPXkKQ09ORklHX1BDSUVfTEFZRVJTQ0FQRV9HRU40PXkKQ09ORklHX1BDSV9ISVNJPXkKQ09ORklHX1BDSUVfUUNPTT15CkNPTkZJR19QQ0lFX0FSTUFEQV84Sz15CkNPTkZJR19QQ0lFX0tJUklOPXkKQ09ORklHX1BDSUVfSElTSV9TVEI9eQpDT05GSUdfUENJRV9URUdSQTE5NF9IT1NUPW0KQ09ORklHX1BDSV9FTkRQT0lOVD15CkNPTkZJR19QQ0lfRU5EUE9JTlRfQ09ORklHRlM9eQpDT05GSUdfUENJX0VQRl9URVNUPW0KQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0ZXX0xPQURFUl9VU0VSX0hFTFBFUj15CkNPTkZJR19GV19MT0FERVJfVVNFUl9IRUxQRVJfRkFMTEJBQ0s9eQpDT05GSUdfSElTSUxJQ09OX0xQQz15CkNPTkZJR19TSU1QTEVfUE1fQlVTPXkKQ09ORklHX0ZTTF9NQ19CVVM9eQpDT05GSUdfVEVHUkFfQUNPTk5FQ1Q9bQpDT05GSUdfTVREPXkKQ09ORklHX01URF9CTE9DSz15CkNPTkZJR19NVERfQ0ZJPXkKQ09ORklHX01URF9DRklfQURWX09QVElPTlM9eQpDT05GSUdfTVREX0NGSV9JTlRFTEVYVD15CkNPTkZJR19NVERfQ0ZJX0FNRFNURD15CkNPTkZJR19NVERfQ0ZJX1NUQUE9eQpDT05GSUdfTVREX1BIWVNNQVA9eQpDT05GSUdfTVREX1BIWVNNQVBfT0Y9eQpDT05GSUdfTVREX0RBVEFGTEFTSD15CkNPTkZJR19NVERfU1NUMjVMPXkKQ09ORklHX01URF9SQVdfTkFORD15CkNPTkZJR19NVERfTkFORF9ERU5BTElfRFQ9eQpDT05GSUdfTVREX05BTkRfTUFSVkVMTD15CkNPTkZJR19NVERfTkFORF9GU0xfSUZDPXkKQ09ORklHX01URF9OQU5EX1FDT009eQpDT05GSUdfTVREX1NQSV9OT1I9eQpDT05GSUdfU1BJX0NBREVOQ0VfUVVBRFNQST15CkNPTkZJR19CTEtfREVWX0xPT1A9eQpDT05GSUdfQkxLX0RFVl9OQkQ9bQpDT05GSUdfVklSVElPX0JMSz15CkNPTkZJR19CTEtfREVWX05WTUU9bQpDT05GSUdfU1JBTT15CkNPTkZJR19QQ0lfRU5EUE9JTlRfVEVTVD1tCkNPTkZJR19FRVBST01fQVQyND1tCkNPTkZJR19FRVBST01fQVQyNT1tCkNPTkZJR19VQUNDRT1tCiMgQ09ORklHX1NDU0lfUFJPQ19GUyBpcyBub3Qgc2V0CkNPTkZJR19CTEtfREVWX1NEPXkKQ09ORklHX1NDU0lfU0FTX0FUQT15CkNPTkZJR19TQ1NJX0hJU0lfU0FTPXkKQ09ORklHX1NDU0lfSElTSV9TQVNfUENJPXkKQ09ORklHX01FR0FSQUlEX1NBUz15CkNPTkZJR19TQ1NJX01QVDNTQVM9bQpDT05GSUdfU0NTSV9VRlNIQ0Q9eQpDT05GSUdfU0NTSV9VRlNIQ0RfUExBVEZPUk09eQpDT05GSUdfU0NTSV9VRlNfUUNPTT1tCkNPTkZJR19TQ1NJX1VGU19ISVNJPXkKQ09ORklHX0FUQT15CkNPTkZJR19TQVRBX0FIQ0k9eQpDT05GSUdfU0FUQV9BSENJX1BMQVRGT1JNPXkKQ09ORklHX0FIQ0lfQ0VWQT15CkNPTkZJR19BSENJX01WRUJVPXkKQ09ORklHX0FIQ0lfWEdFTkU9eQpDT05GSUdfQUhDSV9RT1JJUT15CkNPTkZJR19TQVRBX1NJTDI0PXkKQ09ORklHX1NBVEFfUkNBUj15CkNPTkZJR19QQVRBX1BMQVRGT1JNPXkKQ09ORklHX1BBVEFfT0ZfUExBVEZPUk09eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD1tCkNPTkZJR19CTEtfREVWX0RNPW0KQ09ORklHX0RNX01JUlJPUj1tCkNPTkZJR19ETV9aRVJPPW0KQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfTUFDVkxBTj1tCkNPTkZJR19NQUNWVEFQPW0KQ09ORklHX1RVTj15CkNPTkZJR19WRVRIPW0KQ09ORklHX1ZJUlRJT19ORVQ9eQpDT05GSUdfTkVUX0RTQV9NU0NDX0ZFTElYPW0KQ09ORklHX0FNRF9YR0JFPXkKQ09ORklHX05FVF9YR0VORT15CkNPTkZJR19BVEwxQz1tCkNPTkZJR19CQ01HRU5FVD1tCkNPTkZJR19CTlgyWD1tCkNPTkZJR19NQUNCPXkKQ09ORklHX1RIVU5ERVJfTklDX1BGPXkKQ09ORklHX0ZFQz15CkNPTkZJR19GU0xfRk1BTj15CkNPTkZJR19GU0xfRFBBQV9FVEg9eQpDT05GSUdfRlNMX0RQQUEyX0VUSD15CkNPTkZJR19GU0xfRU5FVEM9eQpDT05GSUdfRlNMX0VORVRDX1ZGPXkKQ09ORklHX0ZTTF9FTkVUQ19RT1M9eQpDT05GSUdfSElYNUhEMl9HTUFDPXkKQ09ORklHX0hOU19EU0FGPXkKQ09ORklHX0hOU19FTkVUPXkKQ09ORklHX0hOUzM9eQpDT05GSUdfSE5TM19IQ0xHRT15CkNPTkZJR19ITlMzX0VORVQ9eQpDT05GSUdfRTEwMDA9eQpDT05GSUdfRTEwMDBFPXkKQ09ORklHX0lHQj15CkNPTkZJR19JR0JWRj15CkNPTkZJR19NVk5FVEE9eQpDT05GSUdfTVZQUDI9eQpDT05GSUdfU0tZMj15CkNPTkZJR19NTFg0X0VOPW0KQ09ORklHX01MWDVfQ09SRT1tCkNPTkZJR19NTFg1X0NPUkVfRU49eQpDT05GSUdfUUNPTV9FTUFDPW0KQ09ORklHX1JNTkVUPW0KQ09ORklHX1NIX0VUSD15CkNPTkZJR19SQVZCPXkKQ09ORklHX1NNQzkxWD15CkNPTkZJR19TTVNDOTExWD15CkNPTkZJR19TTklfQVZFPXkKQ09ORklHX1NOSV9ORVRTRUM9eQpDT05GSUdfU1RNTUFDX0VUSD1tCkNPTkZJR19USV9LM19BTTY1X0NQU1dfTlVTUz15CkNPTkZJR19RQ09NX0lQQT1tCkNPTkZJR19NRElPX0JVU19NVVhfTU1JT1JFRz15CkNPTkZJR19NRElPX0JVU19NVVhfTVVMVElQTEVYRVI9eQpDT05GSUdfQVFVQU5USUFfUEhZPXkKQ09ORklHX01BUlZFTExfUEhZPW0KQ09ORklHX01BUlZFTExfMTBHX1BIWT1tCkNPTkZJR19NRVNPTl9HWExfUEhZPW0KQ09ORklHX01JQ1JFTF9QSFk9eQpDT05GSUdfTUlDUk9TRU1JX1BIWT15CkNPTkZJR19BVDgwM1hfUEhZPXkKQ09ORklHX1JFQUxURUtfUEhZPW0KQ09ORklHX1JPQ0tDSElQX1BIWT15CkNPTkZJR19WSVRFU1NFX1BIWT15CkNPTkZJR19VU0JfUEVHQVNVUz1tCkNPTkZJR19VU0JfUlRMODE1MD1tCkNPTkZJR19VU0JfUlRMODE1Mj1tCkNPTkZJR19VU0JfTEFONzhYWD1tCkNPTkZJR19VU0JfVVNCTkVUPW0KQ09ORklHX1VTQl9ORVRfRE05NjAxPW0KQ09ORklHX1VTQl9ORVRfU1I5ODAwPW0KQ09ORklHX1VTQl9ORVRfU01TQzc1WFg9bQpDT05GSUdfVVNCX05FVF9TTVNDOTVYWD1tCkNPTkZJR19VU0JfTkVUX1BMVVNCPW0KQ09ORklHX1VTQl9ORVRfTUNTNzgzMD1tCkNPTkZJR19BVEgxMEs9bQpDT05GSUdfQVRIMTBLX1BDST1tCkNPTkZJR19BVEgxMEtfU05PQz1tCkNPTkZJR19CUkNNRk1BQz1tCkNPTkZJR19NV0lGSUVYPW0KQ09ORklHX01XSUZJRVhfUENJRT1tCkNPTkZJR19XTDE4WFg9bQpDT05GSUdfV0xDT1JFX1NESU89bQpDT05GSUdfSU5QVVRfRVZERVY9eQpDT05GSUdfS0VZQk9BUkRfQURDPW0KQ09ORklHX0tFWUJPQVJEX0dQSU89eQpDT05GSUdfS0VZQk9BUkRfU05WU19QV1JLRVk9bQpDT05GSUdfS0VZQk9BUkRfSU1YX1NDX0tFWT1tCkNPTkZJR19LRVlCT0FSRF9DUk9TX0VDPXkKQ09ORklHX0lOUFVUX1RPVUNIU0NSRUVOPXkKQ09ORklHX1RPVUNIU0NSRUVOX0FUTUVMX01YVD1tCkNPTkZJR19JTlBVVF9NSVNDPXkKQ09ORklHX0lOUFVUX1BNODk0MV9QV1JLRVk9eQpDT05GSUdfSU5QVVRfUE04WFhYX1ZJQlJBVE9SPW0KQ09ORklHX0lOUFVUX0hJU0lfUE9XRVJLRVk9eQojIENPTkZJR19TRVJJT19TRVJQT1JUIGlzIG5vdCBzZXQKQ09ORklHX1NFUklPX0FNQkFLTUk9eQpDT05GSUdfTEVHQUNZX1BUWV9DT1VOVD0xNgpDT05GSUdfU0VSSUFMXzgyNTA9eQpDT05GSUdfU0VSSUFMXzgyNTBfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9TSEFSRV9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfQkNNMjgzNUFVWD15CkNPTkZJR19TRVJJQUxfODI1MF9EVz15CkNPTkZJR19TRVJJQUxfODI1MF9PTUFQPXkKQ09ORklHX1NFUklBTF84MjUwX01UNjU3Nz15CkNPTkZJR19TRVJJQUxfODI1MF9VTklQSElFUj15CkNPTkZJR19TRVJJQUxfT0ZfUExBVEZPUk09eQpDT05GSUdfU0VSSUFMX0FNQkFfUEwwMTE9eQpDT05GSUdfU0VSSUFMX0FNQkFfUEwwMTFfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfTUVTT049eQpDT05GSUdfU0VSSUFMX01FU09OX0NPTlNPTEU9eQpDT05GSUdfU0VSSUFMX1NBTVNVTkc9eQpDT05GSUdfU0VSSUFMX1NBTVNVTkdfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfVEVHUkE9eQpDT05GSUdfU0VSSUFMX1RFR1JBX1RDVT15CkNPTkZJR19TRVJJQUxfSU1YPXkKQ09ORklHX1NFUklBTF9JTVhfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfU0hfU0NJPXkKQ09ORklHX1NFUklBTF9NU009eQpDT05GSUdfU0VSSUFMX01TTV9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9RQ09NX0dFTkk9eQpDT05GSUdfU0VSSUFMX1FDT01fR0VOSV9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9YSUxJTlhfUFNfVUFSVD15CkNPTkZJR19TRVJJQUxfWElMSU5YX1BTX1VBUlRfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfRlNMX0xQVUFSVD15CkNPTkZJR19TRVJJQUxfRlNMX0xQVUFSVF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9GU0xfTElORkxFWFVBUlQ9eQpDT05GSUdfU0VSSUFMX0ZTTF9MSU5GTEVYVUFSVF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF9NVkVCVV9VQVJUPXkKQ09ORklHX1NFUklBTF9PV0w9eQpDT05GSUdfU0VSSUFMX0RFVl9CVVM9eQpDT05GSUdfVklSVElPX0NPTlNPTEU9eQpDT05GSUdfSVBNSV9IQU5ETEVSPW0KQ09ORklHX0lQTUlfREVWSUNFX0lOVEVSRkFDRT1tCkNPTkZJR19JUE1JX1NJPW0KQ09ORklHX1RDR19UUE09eQpDT05GSUdfVENHX1RJU19JMkNfSU5GSU5FT049eQpDT05GSUdfSTJDX0NIQVJERVY9eQpDT05GSUdfSTJDX01VWD15CkNPTkZJR19JMkNfTVVYX1BDQTk1NHg9eQpDT05GSUdfSTJDX0JDTTI4MzU9bQpDT05GSUdfSTJDX0RFU0lHTldBUkVfUExBVEZPUk09eQpDT05GSUdfSTJDX0dQSU89bQpDT05GSUdfSTJDX0lNWD15CkNPTkZJR19JMkNfSU1YX0xQSTJDPXkKQ09ORklHX0kyQ19NRVNPTj15CkNPTkZJR19JMkNfTVY2NFhYWD15CkNPTkZJR19JMkNfT1dMPXkKQ09ORklHX0kyQ19QWEE9eQpDT05GSUdfSTJDX1FDT01fQ0NJPW0KQ09ORklHX0kyQ19RQ09NX0dFTkk9bQpDT05GSUdfSTJDX1FVUD15CkNPTkZJR19JMkNfUkszWD15CkNPTkZJR19JMkNfU0hfTU9CSUxFPXkKQ09ORklHX0kyQ19URUdSQT15CkNPTkZJR19JMkNfVU5JUEhJRVJfRj15CkNPTkZJR19JMkNfUkNBUj15CkNPTkZJR19JMkNfQ1JPU19FQ19UVU5ORUw9eQpDT05GSUdfU1BJPXkKQ09ORklHX1NQSV9BUk1BREFfMzcwMD15CkNPTkZJR19TUElfQkNNMjgzNT1tCkNPTkZJR19TUElfQkNNMjgzNUFVWD1tCkNPTkZJR19TUElfRlNMX0xQU1BJPXkKQ09ORklHX1NQSV9GU0xfUVVBRFNQST15CkNPTkZJR19TUElfTlhQX0ZMRVhTUEk9eQpDT05GSUdfU1BJX0lNWD1tCkNPTkZJR19TUElfRlNMX0RTUEk9eQpDT05GSUdfU1BJX01FU09OX1NQSUNDPW0KQ09ORklHX1NQSV9NRVNPTl9TUElGQz1tCkNPTkZJR19TUElfT1JJT049eQpDT05GSUdfU1BJX1BMMDIyPXkKQ09ORklHX1NQSV9ST0NLQ0hJUD15CkNPTkZJR19TUElfUlBDSUY9bQpDT05GSUdfU1BJX1FDT01fUVNQST1tCkNPTkZJR19TUElfUVVQPXkKQ09ORklHX1NQSV9RQ09NX0dFTkk9bQpDT05GSUdfU1BJX1MzQzY0WFg9eQpDT05GSUdfU1BJX1NIX01TSU9GPW0KQ09ORklHX1NQSV9TVU42ST15CkNPTkZJR19TUElfU1BJREVWPW0KQ09ORklHX1NQTUk9eQpDT05GSUdfUElOQ1RSTF9TSU5HTEU9eQpDT05GSUdfUElOQ1RSTF9NQVg3NzYyMD15CkNPTkZJR19QSU5DVFJMX09XTD15CkNPTkZJR19QSU5DVFJMX1M3MDA9eQpDT05GSUdfUElOQ1RSTF9TOTAwPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1NPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1OPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1QPXkKQ09ORklHX1BJTkNUUkxfSU1YOE1RPXkKQ09ORklHX1BJTkNUUkxfSU1YOFFYUD15CkNPTkZJR19QSU5DVFJMX0lNWDhEWEw9eQpDT05GSUdfUElOQ1RSTF9JUFE4MDc0PXkKQ09ORklHX1BJTkNUUkxfSVBRNjAxOD15CkNPTkZJR19QSU5DVFJMX01TTTg5MTY9eQpDT05GSUdfUElOQ1RSTF9NU004OTk0PXkKQ09ORklHX1BJTkNUUkxfTVNNODk5Nj15CkNPTkZJR19QSU5DVFJMX01TTTg5OTg9eQpDT05GSUdfUElOQ1RSTF9RQ1M0MDQ9eQpDT05GSUdfUElOQ1RSTF9RREYyWFhYPXkKQ09ORklHX1BJTkNUUkxfUUNPTV9TUE1JX1BNSUM9eQpDT05GSUdfUElOQ1RSTF9TQzcxODA9eQpDT05GSUdfUElOQ1RSTF9TRE04NDU9eQpDT05GSUdfUElOQ1RSTF9TTTgxNTA9eQpDT05GSUdfUElOQ1RSTF9TTTgyNTA9eQpDT05GSUdfR1BJT19BTFRFUkE9bQpDT05GSUdfR1BJT19EV0FQQj15CkNPTkZJR19HUElPX01CODZTN1g9eQpDT05GSUdfR1BJT19NUEM4WFhYPXkKQ09ORklHX0dQSU9fTVhDPXkKQ09ORklHX0dQSU9fUEwwNjE9eQpDT05GSUdfR1BJT19SQ0FSPXkKQ09ORklHX0dQSU9fVU5JUEhJRVI9eQpDT05GSUdfR1BJT19XQ0Q5MzRYPW0KQ09ORklHX0dQSU9fWEdFTkU9eQpDT05GSUdfR1BJT19YR0VORV9TQj15CkNPTkZJR19HUElPX01BWDczMlg9eQpDT05GSUdfR1BJT19QQ0E5NTNYPXkKQ09ORklHX0dQSU9fUENBOTUzWF9JUlE9eQpDT05GSUdfR1BJT19CRDk1NzFNV1Y9bQpDT05GSUdfR1BJT19NQVg3NzYyMD15CkNPTkZJR19HUElPX1NMMjhDUExEPW0KQ09ORklHX1BPV0VSX0FWUz15CkNPTkZJR19RQ09NX0NQUj15CkNPTkZJR19ST0NLQ0hJUF9JT0RPTUFJTj15CkNPTkZJR19QT1dFUl9SRVNFVF9NU009eQpDT05GSUdfUE9XRVJfUkVTRVRfWEdFTkU9eQpDT05GSUdfUE9XRVJfUkVTRVRfU1lTQ09OPXkKQ09ORklHX1NZU0NPTl9SRUJPT1RfTU9ERT15CkNPTkZJR19CQVRURVJZX1NCUz1tCkNPTkZJR19CQVRURVJZX0JRMjdYWFg9eQpDT05GSUdfU0VOU09SU19BUk1fU0NQST15CkNPTkZJR19TRU5TT1JTX0xNOTA9bQpDT05GSUdfU0VOU09SU19QV01fRkFOPW0KQ09ORklHX1NFTlNPUlNfUkFTUEJFUlJZUElfSFdNT049bQpDT05GSUdfU0VOU09SU19TTDI4Q1BMRD1tCkNPTkZJR19TRU5TT1JTX0lOQTJYWD1tCkNPTkZJR19TRU5TT1JTX0lOQTMyMjE9bQpDT05GSUdfVEhFUk1BTF9HT1ZfUE9XRVJfQUxMT0NBVE9SPXkKQ09ORklHX0NQVV9USEVSTUFMPXkKQ09ORklHX1RIRVJNQUxfRU1VTEFUSU9OPXkKQ09ORklHX1FPUklRX1RIRVJNQUw9bQpDT05GSUdfU1VOOElfVEhFUk1BTD15CkNPTkZJR19JTVhfU0NfVEhFUk1BTD1tCkNPTkZJR19JTVg4TU1fVEhFUk1BTD1tCkNPTkZJR19ST0NLQ0hJUF9USEVSTUFMPW0KQ09ORklHX1JDQVJfVEhFUk1BTD15CkNPTkZJR19SQ0FSX0dFTjNfVEhFUk1BTD15CkNPTkZJR19BUk1BREFfVEhFUk1BTD15CkNPTkZJR19CQ00yNzExX1RIRVJNQUw9bQpDT05GSUdfQkNNMjgzNV9USEVSTUFMPW0KQ09ORklHX0JSQ01TVEJfVEhFUk1BTD1tCkNPTkZJR19FWFlOT1NfVEhFUk1BTD15CkNPTkZJR19URUdSQV9CUE1QX1RIRVJNQUw9bQpDT05GSUdfUUNPTV9UU0VOUz15CkNPTkZJR19RQ09NX1NQTUlfVEVNUF9BTEFSTT1tCkNPTkZJR19VTklQSElFUl9USEVSTUFMPXkKQ09ORklHX1dBVENIRE9HPXkKQ09ORklHX1NMMjhDUExEX1dBVENIRE9HPW0KQ09ORklHX0FSTV9TUDgwNV9XQVRDSERPRz15CkNPTkZJR19BUk1fU0JTQV9XQVRDSERPRz15CkNPTkZJR19BUk1fU01DX1dBVENIRE9HPXkKQ09ORklHX1MzQzI0MTBfV0FUQ0hET0c9eQpDT05GSUdfRFdfV0FUQ0hET0c9eQpDT05GSUdfU1VOWElfV0FUQ0hET0c9bQpDT05GSUdfSU1YMl9XRFQ9eQpDT05GSUdfSU1YX1NDX1dEVD1tCkNPTkZJR19RQ09NX1dEVD1tCkNPTkZJR19NRVNPTl9HWEJCX1dBVENIRE9HPW0KQ09ORklHX01FU09OX1dBVENIRE9HPW0KQ09ORklHX1JFTkVTQVNfV0RUPXkKQ09ORklHX1VOSVBISUVSX1dBVENIRE9HPXkKQ09ORklHX0JDTTI4MzVfV0RUPXkKQ09ORklHX01GRF9BTFRFUkFfU1lTTUdSPXkKQ09ORklHX01GRF9CRDk1NzFNV1Y9eQpDT05GSUdfTUZEX0FYUDIwWF9JMkM9eQpDT05GSUdfTUZEX0FYUDIwWF9SU0I9eQpDT05GSUdfTUZEX0VYWU5PU19MUEFTUz1tCkNPTkZJR19NRkRfSEk2NDIxX1BNSUM9eQpDT05GSUdfTUZEX0hJNjU1WF9QTUlDPXkKQ09ORklHX01GRF9NQVg3NzYyMD15CkNPTkZJR19NRkRfU1BNSV9QTUlDPXkKQ09ORklHX01GRF9SSzgwOD15CkNPTkZJR19NRkRfU0VDX0NPUkU9eQpDT05GSUdfTUZEX1NMMjhDUExEPXkKQ09ORklHX01GRF9ST0hNX0JENzE4WFg9eQpDT05GSUdfTUZEX1dDRDkzNFg9bQpDT05GSUdfUkVHVUxBVE9SX0ZJWEVEX1ZPTFRBR0U9eQpDT05GSUdfUkVHVUxBVE9SX0FYUDIwWD15CkNPTkZJR19SRUdVTEFUT1JfQkQ3MThYWD15CkNPTkZJR19SRUdVTEFUT1JfQkQ5NTcxTVdWPXkKQ09ORklHX1JFR1VMQVRPUl9GQU41MzU1NT15CkNPTkZJR19SRUdVTEFUT1JfR1BJTz15CkNPTkZJR19SRUdVTEFUT1JfSEk2NDIxVjUzMD15CkNPTkZJR19SRUdVTEFUT1JfSEk2NTVYPXkKQ09ORklHX1JFR1VMQVRPUl9NQVg3NzYyMD15CkNPTkZJR19SRUdVTEFUT1JfTUFYODk3Mz15CkNPTkZJR19SRUdVTEFUT1JfUENBOTQ1MD15CkNPTkZJR19SRUdVTEFUT1JfUEZVWkUxMDA9eQpDT05GSUdfUkVHVUxBVE9SX1BXTT15CkNPTkZJR19SRUdVTEFUT1JfUUNPTV9SUE1IPXkKQ09ORklHX1JFR1VMQVRPUl9RQ09NX1NNRF9SUE09eQpDT05GSUdfUkVHVUxBVE9SX1FDT01fU1BNST15CkNPTkZJR19SRUdVTEFUT1JfUks4MDg9eQpDT05GSUdfUkVHVUxBVE9SX1MyTVBTMTE9eQpDT05GSUdfUkVHVUxBVE9SX1ZDVFJMPW0KQ09ORklHX1JDX0NPUkU9bQpDT05GSUdfUkNfREVDT0RFUlM9eQpDT05GSUdfUkNfREVWSUNFUz15CkNPTkZJR19JUl9NRVNPTj1tCkNPTkZJR19JUl9TVU5YST1tCkNPTkZJR19NRURJQV9TVVBQT1JUPW0KQ09ORklHX01FRElBX0NBTUVSQV9TVVBQT1JUPXkKQ09ORklHX01FRElBX0FOQUxPR19UVl9TVVBQT1JUPXkKQ09ORklHX01FRElBX0RJR0lUQUxfVFZfU1VQUE9SVD15CkNPTkZJR19NRURJQV9TRFJfU1VQUE9SVD15CkNPTkZJR19NRURJQV9DT05UUk9MTEVSPXkKQ09ORklHX1ZJREVPX1Y0TDJfU1VCREVWX0FQST15CkNPTkZJR19NRURJQV9QTEFURk9STV9TVVBQT1JUPXkKIyBDT05GSUdfRFZCX05FVCBpcyBub3Qgc2V0CkNPTkZJR19NRURJQV9VU0JfU1VQUE9SVD15CkNPTkZJR19VU0JfVklERU9fQ0xBU1M9bQpDT05GSUdfVjRMX1BMQVRGT1JNX0RSSVZFUlM9eQpDT05GSUdfVklERU9fUkNBUl9DU0kyPW0KQ09ORklHX1ZJREVPX1JDQVJfVklOPW0KQ09ORklHX1ZJREVPX1NVTjZJX0NTST1tCkNPTkZJR19WNExfTUVNMk1FTV9EUklWRVJTPXkKQ09ORklHX1ZJREVPX1NBTVNVTkdfUzVQX0pQRUc9bQpDT05GSUdfVklERU9fU0FNU1VOR19TNVBfTUZDPW0KQ09ORklHX1ZJREVPX1NBTVNVTkdfRVhZTk9TX0dTQz1tCkNPTkZJR19WSURFT19SRU5FU0FTX0ZEUDE9bQpDT05GSUdfVklERU9fUkVORVNBU19GQ1A9bQpDT05GSUdfVklERU9fUkVORVNBU19WU1AxPW0KQ09ORklHX1NEUl9QTEFURk9STV9EUklWRVJTPXkKQ09ORklHX1ZJREVPX1JDQVJfRFJJRj1tCkNPTkZJR19WSURFT19JTVgyMTk9bQpDT05GSUdfVklERU9fT1Y1NjQ1PW0KQ09ORklHX1ZJREVPX1FDT01fQ0FNU1M9bQpDT05GSUdfRFJNPW0KQ09ORklHX0RSTV9JMkNfTlhQX1REQTk5OFg9bQpDT05GSUdfRFJNX01BTElfRElTUExBWT1tCkNPTkZJR19EUk1fTk9VVkVBVT1tCkNPTkZJR19EUk1fRVhZTk9TPW0KQ09ORklHX0RSTV9FWFlOT1M1NDMzX0RFQ09OPXkKQ09ORklHX0RSTV9FWFlOT1M3X0RFQ09OPXkKQ09ORklHX0RSTV9FWFlOT1NfRFNJPXkKIyBDT05GSUdfRFJNX0VYWU5PU19EUCBpcyBub3Qgc2V0CkNPTkZJR19EUk1fRVhZTk9TX0hETUk9eQpDT05GSUdfRFJNX0VYWU5PU19NSUM9eQpDT05GSUdfRFJNX1JPQ0tDSElQPW0KQ09ORklHX1JPQ0tDSElQX0FOQUxPR0lYX0RQPXkKQ09ORklHX1JPQ0tDSElQX0NETl9EUD15CkNPTkZJR19ST0NLQ0hJUF9EV19IRE1JPXkKQ09ORklHX1JPQ0tDSElQX0RXX01JUElfRFNJPXkKQ09ORklHX1JPQ0tDSElQX0lOTk9fSERNST15CkNPTkZJR19EUk1fUkNBUl9EVT1tCkNPTkZJR19EUk1fUkNBUl9EV19IRE1JPW0KQ09ORklHX0RSTV9TVU40ST1tCkNPTkZJR19EUk1fU1VONklfRFNJPW0KQ09ORklHX0RSTV9TVU44SV9EV19IRE1JPW0KQ09ORklHX0RSTV9TVU44SV9NSVhFUj1tCkNPTkZJR19EUk1fTVNNPW0KQ09ORklHX0RSTV9URUdSQT1tCkNPTkZJR19EUk1fUEFORUxfTFZEUz1tCkNPTkZJR19EUk1fUEFORUxfU0lNUExFPW0KQ09ORklHX0RSTV9QQU5FTF9SQVlESVVNX1JNNjcxOTE9bQpDT05GSUdfRFJNX1BBTkVMX1NJVFJPTklYX1NUNzcwMz1tCkNPTkZJR19EUk1fUEFORUxfVFJVTFlfTlQzNTU5N19XUVhHQT1tCkNPTkZJR19EUk1fRElTUExBWV9DT05ORUNUT1I9bQpDT05GSUdfRFJNX05XTF9NSVBJX0RTST1tCkNPTkZJR19EUk1fTE9OVElVTV9MVDk2MTE9bQpDT05GSUdfRFJNX1NJSTkwMlg9bQpDT05GSUdfRFJNX1NJTVBMRV9CUklER0U9bQpDT05GSUdfRFJNX1RISU5FX1RIQzYzTFZEMTAyND1tCkNPTkZJR19EUk1fVElfU042NURTSTg2PW0KQ09ORklHX0RSTV9JMkNfQURWNzUxMT1tCkNPTkZJR19EUk1fSTJDX0FEVjc1MTFfQVVESU89eQpDT05GSUdfRFJNX0RXX0hETUlfQUhCX0FVRElPPW0KQ09ORklHX0RSTV9EV19IRE1JX0NFQz1tCkNPTkZJR19EUk1fVkM0PW0KQ09ORklHX0RSTV9FVE5BVklWPW0KQ09ORklHX0RSTV9ISVNJX0hJQk1DPW0KQ09ORklHX0RSTV9ISVNJX0tJUklOPW0KQ09ORklHX0RSTV9NWFNGQj1tCkNPTkZJR19EUk1fTUVTT049bQpDT05GSUdfRFJNX1BMMTExPW0KQ09ORklHX0RSTV9MSU1BPW0KQ09ORklHX0RSTV9QQU5GUk9TVD1tCkNPTkZJR19GQj15CkNPTkZJR19GQl9NT0RFX0hFTFBFUlM9eQpDT05GSUdfRkJfRUZJPXkKQ09ORklHX0JBQ0tMSUdIVF9HRU5FUklDPW0KQ09ORklHX0JBQ0tMSUdIVF9QV009bQpDT05GSUdfQkFDS0xJR0hUX0xQODU1WD1tCkNPTkZJR19MT0dPPXkKIyBDT05GSUdfTE9HT19MSU5VWF9NT05PIGlzIG5vdCBzZXQKIyBDT05GSUdfTE9HT19MSU5VWF9WR0ExNiBpcyBub3Qgc2V0CkNPTkZJR19TT1VORD15CkNPTkZJR19TTkQ9eQpDT05GSUdfU05EX0hEQV9URUdSQT1tCkNPTkZJR19TTkRfSERBX0NPREVDX0hETUk9bQpDT05GSUdfU05EX1NPQz15CkNPTkZJR19TTkRfQkNNMjgzNV9TT0NfSTJTPW0KQ09ORklHX1NORF9TT0NfRlNMX1NBST1tCkNPTkZJR19TTkRfTUVTT05fQVhHX1NPVU5EX0NBUkQ9bQpDT05GSUdfU05EX01FU09OX0dYX1NPVU5EX0NBUkQ9bQpDT05GSUdfU05EX1NPQ19RQ09NPW0KQ09ORklHX1NORF9TT0NfQVBRODAxNl9TQkM9bQpDT05GSUdfU05EX1NPQ19NU004OTk2PW0KQ09ORklHX1NORF9TT0NfU0RNODQ1PW0KQ09ORklHX1NORF9TT0NfUk9DS0NISVA9bQpDT05GSUdfU05EX1NPQ19ST0NLQ0hJUF9TUERJRj1tCkNPTkZJR19TTkRfU09DX1JPQ0tDSElQX1JUNTY0NT1tCkNPTkZJR19TTkRfU09DX1JLMzM5OV9HUlVfU09VTkQ9bQpDT05GSUdfU05EX1NPQ19TQU1TVU5HPXkKQ09ORklHX1NORF9TT0NfUkNBUj1tCkNPTkZJR19TTkRfU1VONElfU1BESUY9bQpDT05GSUdfU05EX1NPQ19URUdSQT1tCkNPTkZJR19TTkRfU09DX1RFR1JBMjEwX0FIVUI9bQpDT05GSUdfU05EX1NPQ19URUdSQTIxMF9ETUlDPW0KQ09ORklHX1NORF9TT0NfVEVHUkEyMTBfSTJTPW0KQ09ORklHX1NORF9TT0NfVEVHUkExODZfRFNQSz1tCkNPTkZJR19TTkRfU09DX1RFR1JBMjEwX0FETUFJRj1tCkNPTkZJR19TTkRfU09DX0FLNDYxMz1tCkNPTkZJR19TTkRfU09DX0VTNzEzND1tCkNPTkZJR19TTkRfU09DX0VTNzI0MT1tCkNPTkZJR19TTkRfU09DX1BDTTMxNjhBX0kyQz1tCkNPTkZJR19TTkRfU09DX1NJTVBMRV9BTVBMSUZJRVI9bQpDT05GSUdfU05EX1NPQ19UQVM1NzFYPW0KQ09ORklHX1NORF9TT0NfV0NEOTM0WD1tCkNPTkZJR19TTkRfU09DX1dNODkwND1tCkNPTkZJR19TTkRfU09DX1dTQTg4MVg9bQpDT05GSUdfU05EX1NJTVBMRV9DQVJEPW0KQ09ORklHX1NORF9BVURJT19HUkFQSF9DQVJEPW0KQ09ORklHX0kyQ19ISUQ9bQpDT05GSUdfVVNCX0NPTk5fR1BJTz1tCkNPTkZJR19VU0I9eQpDT05GSUdfVVNCX09URz15CkNPTkZJR19VU0JfWEhDSV9IQ0Q9eQpDT05GSUdfVVNCX1hIQ0lfVEVHUkE9eQpDT05GSUdfVVNCX0VIQ0lfSENEPXkKQ09ORklHX1VTQl9FSENJX0VYWU5PUz15CkNPTkZJR19VU0JfRUhDSV9IQ0RfUExBVEZPUk09eQpDT05GSUdfVVNCX09IQ0lfSENEPXkKQ09ORklHX1VTQl9PSENJX0VYWU5PUz15CkNPTkZJR19VU0JfT0hDSV9IQ0RfUExBVEZPUk09eQpDT05GSUdfVVNCX1JFTkVTQVNfVVNCSFNfSENEPW0KQ09ORklHX1VTQl9SRU5FU0FTX1VTQkhTPW0KQ09ORklHX1VTQl9BQ009bQpDT05GSUdfVVNCX1NUT1JBR0U9eQpDT05GSUdfVVNCX01VU0JfSERSQz15CkNPTkZJR19VU0JfTVVTQl9TVU5YST15CkNPTkZJR19VU0JfRFdDMz15CkNPTkZJR19VU0JfRFdDMj15CkNPTkZJR19VU0JfQ0hJUElERUE9eQpDT05GSUdfVVNCX0NISVBJREVBX1VEQz15CkNPTkZJR19VU0JfQ0hJUElERUFfSE9TVD15CkNPTkZJR19VU0JfSVNQMTc2MD15CkNPTkZJR19VU0JfU0VSSUFMPW0KQ09ORklHX1VTQl9TRVJJQUxfRlRESV9TSU89bQpDT05GSUdfVVNCX0hTSUNfVVNCMzUwMz15CkNPTkZJR19OT1BfVVNCX1hDRUlWPXkKQ09ORklHX1VTQl9HQURHRVQ9eQpDT05GSUdfVVNCX1JFTkVTQVNfVVNCSFNfVURDPW0KQ09ORklHX1VTQl9SRU5FU0FTX1VTQjM9bQpDT05GSUdfVVNCX1RFR1JBX1hVREM9bQpDT05GSUdfVVNCX0NPTkZJR0ZTPW0KQ09ORklHX1VTQl9DT05GSUdGU19TRVJJQUw9eQpDT05GSUdfVVNCX0NPTkZJR0ZTX0FDTT15CkNPTkZJR19VU0JfQ09ORklHRlNfT0JFWD15CkNPTkZJR19VU0JfQ09ORklHRlNfTkNNPXkKQ09ORklHX1VTQl9DT05GSUdGU19FQ009eQpDT05GSUdfVVNCX0NPTkZJR0ZTX0VDTV9TVUJTRVQ9eQpDT05GSUdfVVNCX0NPTkZJR0ZTX1JORElTPXkKQ09ORklHX1VTQl9DT05GSUdGU19FRU09eQpDT05GSUdfVVNCX0NPTkZJR0ZTX01BU1NfU1RPUkFHRT15CkNPTkZJR19VU0JfQ09ORklHRlNfRl9GUz15CkNPTkZJR19UWVBFQz1tCkNPTkZJR19UWVBFQ19UQ1BNPW0KQ09ORklHX1RZUEVDX0ZVU0IzMDI9bQpDT05GSUdfVFlQRUNfSEQzU1MzMjIwPW0KQ09ORklHX01NQz15CkNPTkZJR19NTUNfQkxPQ0tfTUlOT1JTPTMyCkNPTkZJR19NTUNfQVJNTU1DST15CkNPTkZJR19NTUNfU0RIQ0k9eQpDT05GSUdfTU1DX1NESENJX0FDUEk9eQpDT05GSUdfTU1DX1NESENJX1BMVEZNPXkKQ09ORklHX01NQ19TREhDSV9PRl9BUkFTQU49eQpDT05GSUdfTU1DX1NESENJX09GX0VTREhDPXkKQ09ORklHX01NQ19TREhDSV9DQURFTkNFPXkKQ09ORklHX01NQ19TREhDSV9FU0RIQ19JTVg9eQpDT05GSUdfTU1DX1NESENJX1RFR1JBPXkKQ09ORklHX01NQ19TREhDSV9GX1NESDMwPXkKQ09ORklHX01NQ19NRVNPTl9HWD15CkNPTkZJR19NTUNfU0RIQ0lfTVNNPXkKQ09ORklHX01NQ19TUEk9eQpDT05GSUdfTU1DX1NESEk9eQpDT05GSUdfTU1DX1VOSVBISUVSPXkKQ09ORklHX01NQ19EVz15CkNPTkZJR19NTUNfRFdfRVhZTk9TPXkKQ09ORklHX01NQ19EV19ISTM3OThDVjIwMD15CkNPTkZJR19NTUNfRFdfSzM9eQpDT05GSUdfTU1DX0RXX1JPQ0tDSElQPXkKQ09ORklHX01NQ19TVU5YST15CkNPTkZJR19NTUNfQkNNMjgzNT15CkNPTkZJR19NTUNfU0RIQ0lfWEVOT049eQpDT05GSUdfTU1DX1NESENJX0FNNjU0PXkKQ09ORklHX01NQ19PV0w9eQpDT05GSUdfTkVXX0xFRFM9eQpDT05GSUdfTEVEU19DTEFTUz15CkNPTkZJR19MRURTX0dQSU89eQpDT05GSUdfTEVEU19QV009eQpDT05GSUdfTEVEU19TWVNDT049eQpDT05GSUdfTEVEU19UUklHR0VSX1RJTUVSPXkKQ09ORklHX0xFRFNfVFJJR0dFUl9ESVNLPXkKQ09ORklHX0xFRFNfVFJJR0dFUl9IRUFSVEJFQVQ9eQpDT05GSUdfTEVEU19UUklHR0VSX0NQVT15CkNPTkZJR19MRURTX1RSSUdHRVJfREVGQVVMVF9PTj15CkNPTkZJR19MRURTX1RSSUdHRVJfUEFOSUM9eQpDT05GSUdfRURBQz15CkNPTkZJR19FREFDX0dIRVM9eQpDT05GSUdfUlRDX0NMQVNTPXkKQ09ORklHX1JUQ19EUlZfRFMxMzA3PW0KQ09ORklHX1JUQ19EUlZfTUFYNzc2ODY9eQpDT05GSUdfUlRDX0RSVl9SSzgwOD1tCkNPTkZJR19SVENfRFJWX1BDRjg1MzYzPW0KQ09ORklHX1JUQ19EUlZfUlg4NTgxPW0KQ09ORklHX1JUQ19EUlZfUlY4ODAzPW0KQ09ORklHX1JUQ19EUlZfUzVNPXkKQ09ORklHX1JUQ19EUlZfRFMzMjMyPXkKQ09ORklHX1JUQ19EUlZfUENGMjEyNz1tCkNPTkZJR19SVENfRFJWX0VGST15CkNPTkZJR19SVENfRFJWX0NST1NfRUM9eQpDT05GSUdfUlRDX0RSVl9TM0M9eQpDT05GSUdfUlRDX0RSVl9QTDAzMT15CkNPTkZJR19SVENfRFJWX1NVTjZJPXkKQ09ORklHX1JUQ19EUlZfQVJNQURBMzhYPXkKQ09ORklHX1JUQ19EUlZfUE04WFhYPW0KQ09ORklHX1JUQ19EUlZfVEVHUkE9eQpDT05GSUdfUlRDX0RSVl9TTlZTPW0KQ09ORklHX1JUQ19EUlZfSU1YX1NDPW0KQ09ORklHX1JUQ19EUlZfWEdFTkU9eQpDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19ETUFfQkNNMjgzNT15CkNPTkZJR19ETUFfU1VONkk9bQpDT05GSUdfRlNMX0VETUE9eQpDT05GSUdfSU1YX1NETUE9eQpDT05GSUdfSzNfRE1BPXkKQ09ORklHX01WX1hPUj15CkNPTkZJR19NVl9YT1JfVjI9eQpDT05GSUdfT1dMX0RNQT15CkNPTkZJR19QTDMzMF9ETUE9eQpDT05GSUdfVEVHUkEyMF9BUEJfRE1BPXkKQ09ORklHX1RFR1JBMjEwX0FETUE9bQpDT05GSUdfUUNPTV9CQU1fRE1BPXkKQ09ORklHX1FDT01fSElETUFfTUdNVD15CkNPTkZJR19RQ09NX0hJRE1BPXkKQ09ORklHX1JDQVJfRE1BQz15CkNPTkZJR19SRU5FU0FTX1VTQl9ETUFDPW0KQ09ORklHX1RJX0szX1VETUE9eQpDT05GSUdfVElfSzNfVURNQV9HTFVFX0xBWUVSPXkKQ09ORklHX1ZGSU89eQpDT05GSUdfVkZJT19QQ0k9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19WSVJUSU9fQkFMTE9PTj15CkNPTkZJR19WSVJUSU9fTU1JTz15CkNPTkZJR19YRU5fR05UREVWPXkKQ09ORklHX1hFTl9HUkFOVF9ERVZfQUxMT0M9eQpDT05GSUdfTUZEX0NST1NfRUNfREVWPXkKQ09ORklHX0NIUk9NRV9QTEFURk9STVM9eQpDT05GSUdfQ1JPU19FQz15CkNPTkZJR19DUk9TX0VDX0kyQz15CkNPTkZJR19DUk9TX0VDX1NQST15CkNPTkZJR19DUk9TX0VDX0NIQVJERVY9bQpDT05GSUdfQ09NTU9OX0NMS19SSzgwOD15CkNPTkZJR19DT01NT05fQ0xLX1NDUEk9eQpDT05GSUdfQ09NTU9OX0NMS19DUzIwMDBfQ1A9eQpDT05GSUdfQ09NTU9OX0NMS19GU0xfU0FJPXkKQ09ORklHX0NPTU1PTl9DTEtfUzJNUFMxMT15CkNPTkZJR19DT01NT05fQ0xLX1BXTT15CkNPTkZJR19DT01NT05fQ0xLX1ZDNT15CkNPTkZJR19DT01NT05fQ0xLX0JENzE4WFg9bQpDT05GSUdfQ0xLX1JBU1BCRVJSWVBJPW0KQ09ORklHX0NMS19JTVg4TU09eQpDT05GSUdfQ0xLX0lNWDhNTj15CkNPTkZJR19DTEtfSU1YOE1QPXkKQ09ORklHX0NMS19JTVg4TVE9eQpDT05GSUdfQ0xLX0lNWDhRWFA9eQpDT05GSUdfVElfU0NJX0NMSz15CkNPTkZJR19DT01NT05fQ0xLX1FDT009eQpDT05GSUdfUUNPTV9BNTNQTEw9eQpDT05GSUdfUUNPTV9DTEtfQVBDU19NU004OTE2PXkKQ09ORklHX1FDT01fQ0xLX1NNRF9SUE09eQpDT05GSUdfUUNPTV9DTEtfUlBNSD15CkNPTkZJR19JUFFfR0NDXzgwNzQ9eQpDT05GSUdfSVBRX0dDQ182MDE4PXkKQ09ORklHX01TTV9HQ0NfODkxNj15CkNPTkZJR19NU01fR0NDXzg5OTQ9eQpDT05GSUdfTVNNX01NQ0NfODk5Nj15CkNPTkZJR19NU01fR0NDXzg5OTg9eQpDT05GSUdfUUNTX0dDQ180MDQ9eQpDT05GSUdfU0NfR0NDXzcxODA9eQpDT05GSUdfU0RNX0NBTUNDXzg0NT1tCkNPTkZJR19TRE1fR0NDXzg0NT15CkNPTkZJR19TRE1fR1BVQ0NfODQ1PXkKQ09ORklHX1NETV9WSURFT0NDXzg0NT15CkNPTkZJR19TRE1fRElTUENDXzg0NT15CkNPTkZJR19TTV9HQ0NfODE1MD15CkNPTkZJR19TTV9HQ0NfODI1MD15CkNPTkZJR19TTV9HUFVDQ184MTUwPXkKQ09ORklHX1NNX0dQVUNDXzgyNTA9eQpDT05GSUdfUUNPTV9IRlBMTD15CkNPTkZJR19IV1NQSU5MT0NLPXkKQ09ORklHX0hXU1BJTkxPQ0tfUUNPTT15CkNPTkZJR19BUk1fTUhVPXkKQ09ORklHX0lNWF9NQk9YPXkKQ09ORklHX1BMQVRGT1JNX01IVT15CkNPTkZJR19CQ00yODM1X01CT1g9eQpDT05GSUdfUUNPTV9BUENTX0lQQz15CkNPTkZJR19RQ09NX0lQQ0M9eQpDT05GSUdfUk9DS0NISVBfSU9NTVU9eQpDT05GSUdfVEVHUkFfSU9NTVVfU01NVT15CkNPTkZJR19BUk1fU01NVT15CkNPTkZJR19BUk1fU01NVV9WMz15CkNPTkZJR19RQ09NX0lPTU1VPXkKQ09ORklHX1JFTU9URVBST0M9eQpDT05GSUdfUUNPTV9RNlY1X01TUz1tCkNPTkZJR19RQ09NX1E2VjVfUEFTPW0KQ09ORklHX1FDT01fU1lTTU9OPW0KQ09ORklHX1JQTVNHX1FDT01fR0xJTktfUlBNPXkKQ09ORklHX1JQTVNHX1FDT01fR0xJTktfU01FTT1tCkNPTkZJR19SUE1TR19RQ09NX1NNRD15CkNPTkZJR19TT1VORFdJUkU9bQpDT05GSUdfU09VTkRXSVJFX1FDT009bQpDT05GSUdfT1dMX1BNX0RPTUFJTlM9eQpDT05GSUdfUkFTUEJFUlJZUElfUE9XRVI9eQpDT05GSUdfRlNMX0RQQUE9eQpDT05GSUdfRlNMX01DX0RQSU89eQpDT05GSUdfUUNPTV9BT1NTX1FNUD15CkNPTkZJR19RQ09NX0dFTklfU0U9eQpDT05GSUdfUUNPTV9STVRGU19NRU09bQpDT05GSUdfUUNPTV9SUE1IPXkKQ09ORklHX1FDT01fUlBNSFBEPXkKQ09ORklHX1FDT01fUlBNUEQ9eQpDT05GSUdfUUNPTV9TTUVNPXkKQ09ORklHX1FDT01fU01EX1JQTT15CkNPTkZJR19RQ09NX1NNUDJQPXkKQ09ORklHX1FDT01fU01TTT15CkNPTkZJR19RQ09NX1NPQ0lORk89bQpDT05GSUdfUUNPTV9BUFI9bQpDT05GSUdfQVJDSF9SOEE3NzRBMT15CkNPTkZJR19BUkNIX1I4QTc3NEIxPXkKQ09ORklHX0FSQ0hfUjhBNzc0QzA9eQpDT05GSUdfQVJDSF9SOEE3NzRFMT15CkNPTkZJR19BUkNIX1I4QTc3OTUwPXkKQ09ORklHX0FSQ0hfUjhBNzc5NTE9eQpDT05GSUdfQVJDSF9SOEE3Nzk2MD15CkNPTkZJR19BUkNIX1I4QTc3OTYxPXkKQ09ORklHX0FSQ0hfUjhBNzc5NjU9eQpDT05GSUdfQVJDSF9SOEE3Nzk3MD15CkNPTkZJR19BUkNIX1I4QTc3OTgwPXkKQ09ORklHX0FSQ0hfUjhBNzc5OTA9eQpDT05GSUdfQVJDSF9SOEE3Nzk5NT15CkNPTkZJR19ST0NLQ0hJUF9QTV9ET01BSU5TPXkKQ09ORklHX0FSQ0hfVEVHUkFfMTMyX1NPQz15CkNPTkZJR19BUkNIX1RFR1JBXzIxMF9TT0M9eQpDT05GSUdfQVJDSF9URUdSQV8xODZfU09DPXkKQ09ORklHX0FSQ0hfVEVHUkFfMTk0X1NPQz15CkNPTkZJR19BUkNIX0szX0FNNl9TT0M9eQpDT05GSUdfQVJDSF9LM19KNzIxRV9TT0M9eQpDT05GSUdfVElfU0NJX1BNX0RPTUFJTlM9eQpDT05GSUdfRVhUQ09OX1BUTjUxNTA9bQpDT05GSUdfRVhUQ09OX1VTQl9HUElPPXkKQ09ORklHX0VYVENPTl9VU0JDX0NST1NfRUM9eQpDT05GSUdfUkVORVNBU19SUENJRj1tCkNPTkZJR19JSU89eQpDT05GSUdfRVhZTk9TX0FEQz15CkNPTkZJR19NQVg5NjExPW0KQ09ORklHX1FDT01fU1BNSV9BREM1PW0KQ09ORklHX1JPQ0tDSElQX1NBUkFEQz1tCkNPTkZJR19JSU9fQ1JPU19FQ19TRU5TT1JTX0NPUkU9bQpDT05GSUdfSUlPX0NST1NfRUNfU0VOU09SUz1tCkNPTkZJR19JSU9fQ1JPU19FQ19MSUdIVF9QUk9YPW0KQ09ORklHX1NFTlNPUlNfSVNMMjkwMTg9bQpDT05GSUdfSUlPX0NST1NfRUNfQkFSTz1tCkNPTkZJR19NUEwzMTE1PW0KQ09ORklHX1BXTT15CkNPTkZJR19QV01fQkNNMjgzNT1tCkNPTkZJR19QV01fQ1JPU19FQz1tCkNPTkZJR19QV01fTUVTT049bQpDT05GSUdfUFdNX1JDQVI9bQpDT05GSUdfUFdNX1JPQ0tDSElQPXkKQ09ORklHX1BXTV9TQU1TVU5HPXkKQ09ORklHX1BXTV9TTDI4Q1BMRD1tCkNPTkZJR19QV01fU1VONEk9bQpDT05GSUdfUFdNX1RFR1JBPW0KQ09ORklHX1NMMjhDUExEX0lOVEM9eQpDT05GSUdfUUNPTV9QREM9eQpDT05GSUdfUkVTRVRfSU1YNz15CkNPTkZJR19SRVNFVF9RQ09NX0FPU1M9eQpDT05GSUdfUkVTRVRfUUNPTV9QREM9bQpDT05GSUdfUkVTRVRfVElfU0NJPXkKQ09ORklHX1BIWV9YR0VORT15CkNPTkZJR19QSFlfU1VONElfVVNCPXkKQ09ORklHX1BIWV9NSVhFTF9NSVBJX0RQSFk9bQpDT05GSUdfUEhZX0hJNjIyMF9VU0I9eQpDT05GSUdfUEhZX0hJU1RCX0NPTUJQSFk9eQpDT05GSUdfUEhZX0hJU0lfSU5OT19VU0IyPXkKQ09ORklHX1BIWV9NVkVCVV9DUDExMF9DT01QSFk9eQpDT05GSUdfUEhZX1FDT01fUU1QPW0KQ09ORklHX1BIWV9RQ09NX1FVU0IyPW0KQ09ORklHX1BIWV9RQ09NX1VTQl9IUz15CkNPTkZJR19QSFlfUUNPTV9VU0JfU05QU19GRU1UT19WMj15CkNPTkZJR19QSFlfUkNBUl9HRU4zX1BDSUU9eQpDT05GSUdfUEhZX1JDQVJfR0VOM19VU0IyPXkKQ09ORklHX1BIWV9SQ0FSX0dFTjNfVVNCMz1tCkNPTkZJR19QSFlfUk9DS0NISVBfRU1NQz15CkNPTkZJR19QSFlfUk9DS0NISVBfSU5OT19IRE1JPW0KQ09ORklHX1BIWV9ST0NLQ0hJUF9JTk5PX1VTQjI9eQpDT05GSUdfUEhZX1JPQ0tDSElQX1BDSUU9bQpDT05GSUdfUEhZX1JPQ0tDSElQX1RZUEVDPXkKQ09ORklHX1BIWV9VTklQSElFUl9VU0IyPXkKQ09ORklHX1BIWV9VTklQSElFUl9VU0IzPXkKQ09ORklHX1BIWV9URUdSQV9YVVNCPXkKQ09ORklHX0FSTV9TTU1VX1YzX1BNVT1tCkNPTkZJR19GU0xfSU1YOF9ERFJfUE1VPW0KQ09ORklHX0hJU0lfUE1VPXkKQ09ORklHX1FDT01fTDJfUE1VPXkKQ09ORklHX1FDT01fTDNfUE1VPXkKQ09ORklHX05WTUVNX0lNWF9PQ09UUD15CkNPTkZJR19OVk1FTV9JTVhfT0NPVFBfU0NVPXkKQ09ORklHX1FDT01fUUZQUk9NPXkKQ09ORklHX1JPQ0tDSElQX0VGVVNFPXkKQ09ORklHX05WTUVNX1NVTlhJX1NJRD15CkNPTkZJR19VTklQSElFUl9FRlVTRT15CkNPTkZJR19NRVNPTl9FRlVTRT1tCkNPTkZJR19GUEdBPXkKQ09ORklHX0ZQR0FfTUdSX1NUUkFUSVgxMF9TT0M9bQpDT05GSUdfRlBHQV9CUklER0U9bQpDT05GSUdfQUxURVJBX0ZSRUVaRV9CUklER0U9bQpDT05GSUdfRlBHQV9SRUdJT049bQpDT05GSUdfT0ZfRlBHQV9SRUdJT049bQpDT05GSUdfVEVFPXkKQ09ORklHX09QVEVFPXkKQ09ORklHX1NMSU1CVVM9bQpDT05GSUdfU0xJTV9RQ09NX0NUUkw9bQpDT05GSUdfU0xJTV9RQ09NX05HRF9DVFJMPW0KQ09ORklHX01VWF9NTUlPPXkKQ09ORklHX0lOVEVSQ09OTkVDVD15CkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTT15CkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTV9NU004OTE2PW0KQ09ORklHX0lOVEVSQ09OTkVDVF9RQ09NX1NETTg0NT1tCkNPTkZJR19JTlRFUkNPTk5FQ1RfUUNPTV9TTTgxNTA9bQpDT05GSUdfSU5URVJDT05ORUNUX1FDT01fU004MjUwPW0KQ09ORklHX0VYVDJfRlM9eQpDT05GSUdfRVhUM19GUz15CkNPTkZJR19FWFQ0X0ZTX1BPU0lYX0FDTD15CkNPTkZJR19CVFJGU19GUz1tCkNPTkZJR19CVFJGU19GU19QT1NJWF9BQ0w9eQpDT05GSUdfRkFOT1RJRlk9eQpDT05GSUdfRkFOT1RJRllfQUNDRVNTX1BFUk1JU1NJT05TPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz1tCkNPTkZJR19DVVNFPW0KQ09ORklHX09WRVJMQVlfRlM9bQpDT05GSUdfVkZBVF9GUz15CkNPTkZJR19IVUdFVExCRlM9eQpDT05GSUdfQ09ORklHRlNfRlM9eQpDT05GSUdfRUZJVkFSX0ZTPXkKQ09ORklHX1NRVUFTSEZTPXkKQ09ORklHX05GU19GUz15CkNPTkZJR19ORlNfVjQ9eQpDT05GSUdfTkZTX1Y0XzE9eQpDT05GSUdfTkZTX1Y0XzI9eQpDT05GSUdfUk9PVF9ORlM9eQpDT05GSUdfOVBfRlM9eQpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfSVNPODg1OV8xPXkKQ09ORklHX1NFQ1VSSVRZPXkKQ09ORklHX0NSWVBUT19FQ0hBSU5JVj15CkNPTkZJR19DUllQVE9fQU5TSV9DUFJORz15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfUk5HPW0KQ09ORklHX0NSWVBUT19ERVZfU1VOOElfQ0U9bQpDT05GSUdfQ1JZUFRPX0RFVl9GU0xfQ0FBTT1tCkNPTkZJR19DUllQVE9fREVWX0ZTTF9EUEFBMl9DQUFNPW0KQ09ORklHX0NSWVBUT19ERVZfUUNPTV9STkc9bQpDT05GSUdfQ1JZUFRPX0RFVl9DQ1JFRT1tCkNPTkZJR19DUllQVE9fREVWX0hJU0lfU0VDMj1tCkNPTkZJR19DUllQVE9fREVWX0hJU0lfWklQPW0KQ09ORklHX0NSWVBUT19ERVZfSElTSV9IUFJFPW0KQ09ORklHX0NNQV9TSVpFX01CWVRFUz0zMgpDT05GSUdfUFJJTlRLX1RJTUU9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19GUz15CkNPTkZJR19ERUJVR19LRVJORUw9eQojIENPTkZJR19TQ0hFRF9ERUJVRyBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1BSRUVNUFQgaXMgbm90IHNldApDT05GSUdfTUVNVEVTVD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX0ZBSVJfR1JPVVBfU0NIRUQ9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9ERUJVR19GUz15CkNPTkZJR19LVk1fQVJNPW0K" - } - ] -} diff --git a/kernels/x86_64/README.md b/kernels/x86_64/README.md deleted file mode 100644 index 36510f8..0000000 --- a/kernels/x86_64/README.md +++ /dev/null @@ -1 +0,0 @@ -Home for x86_64 kernels list. diff --git a/kernels/x86_64/list.json b/kernels/x86_64/list.json deleted file mode 100644 index 965ad41..0000000 --- a/kernels/x86_64/list.json +++ /dev/null @@ -1,45102 +0,0 @@ -{ - "AmazonLinux": [ - { - "kernelversion": 1, - "kernelrelease": "4.9.17-8.31.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/main/201703c0ffee/x86_64/Packages/kernel-devel-4.9.17-8.31.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.32-15.41.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.32-15.41.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.38-16.33.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.38-16.33.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.27-14.31.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.27-14.31.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.43-17.38.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.43-17.38.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.27-14.33.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.27-14.33.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.20-11.31.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.20-11.31.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.38-16.35.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.38-16.35.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.43-17.39.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.43-17.39.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.20-10.30.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.03/updates/ba2b87ec77c7/x86_64/Packages/kernel-devel-4.9.20-10.30.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.51-10.52.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/main/154a6dd467e2/x86_64/Packages/kernel-devel-4.9.51-10.52.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.91-40.57.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.91-40.57.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.76-3.78.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.76-3.78.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.75-25.55.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.75-25.55.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.93-41.60.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.93-41.60.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.58-18.51.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.58-18.51.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.70-22.55.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.70-22.55.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.62-21.56.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.62-21.56.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.85-38.58.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.85-38.58.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.116-43.59.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.116-43.59.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.77-31.58.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.77-31.58.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.70-25.242.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.70-25.242.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.85-37.55.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.85-37.55.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.81-35.56.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.81-35.56.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.119-44.140.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.119-44.140.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.58-18.55.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2017.09/updates/b8134e61ebbd/x86_64/Packages/kernel-devel-4.9.58-18.55.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.26-46.32.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/main/c31535f74c6e/x86_64/Packages/kernel-devel-4.14.26-46.32.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.186-110.268.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.186-110.268.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.67-66.56.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.67-66.56.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.121-85.96.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.121-85.96.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.152-98.182.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.152-98.182.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.238-125.421.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.238-125.421.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.133-88.105.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.133-88.105.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.209-117.337.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.209-117.337.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.138-89.102.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.138-89.102.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.262-135.489.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.262-135.489.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.104-78.84.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.104-78.84.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.88-72.73.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.88-72.73.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.128-87.105.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.128-87.105.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-69.57.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.77-69.57.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.123-86.109.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.123-86.109.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.143-91.122.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.143-91.122.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.106-79.86.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.106-79.86.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.219-119.340.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.219-119.340.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.62-65.117.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.62-65.117.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.88-72.76.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.88-72.76.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.287-148.504.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.287-148.504.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.55-62.37.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.55-62.37.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.154-99.181.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.154-99.181.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.214-118.339.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.214-118.339.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.262-135.486.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.262-135.486.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.165-102.185.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.165-102.185.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.109-80.92.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.109-80.92.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.193-113.317.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.193-113.317.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.59-64.43.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.59-64.43.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.165-103.209.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.165-103.209.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.200-116.320.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.200-116.320.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.248-129.473.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.248-129.473.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.101-75.76.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.101-75.76.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.232-123.381.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.232-123.381.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.173-106.229.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.173-106.229.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.51-60.38.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.51-60.38.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.33-51.37.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.33-51.37.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.114-82.97.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.114-82.97.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.252-131.483.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.252-131.483.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.238-125.422.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.238-125.422.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.42-52.37.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.42-52.37.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.146-93.123.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.146-93.123.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-70.82.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.77-70.82.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.281-144.502.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.281-144.502.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.114-83.126.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.114-83.126.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.97-74.72.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.97-74.72.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.70-67.55.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.70-67.55.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.72-68.55.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.72-68.55.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-121.362.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.225-121.362.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.273-140.502.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.273-140.502.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.275-142.503.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.275-142.503.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.133-88.112.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.133-88.112.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.285-147.501.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.285-147.501.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.47-56.37.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.47-56.37.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.94-73.73.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.94-73.73.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.203-116.332.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.203-116.332.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.158-101.185.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.158-101.185.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.33-51.34.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.33-51.34.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.181-108.257.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.181-108.257.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.171-105.231.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.171-105.231.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-121.357.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.225-121.357.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.268-139.500.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.268-139.500.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.177-107.254.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.177-107.254.amzn1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-70.59.amzn1.x86_64", - "target": "amazonlinux", - "headers": [ - "http://packages.us-east-1.amazonaws.com/2018.03/updates/85446a8a5f59/x86_64/Packages/kernel-devel-4.14.77-70.59.amzn1.x86_64.rpm" - ] - } - ], - "AmazonLinux2": [ - { - "kernelversion": 1, - "kernelrelease": "4.9.75-1.56.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ae757f139e69f930fe9f703974265e913367cc2c798b69d5dd5cf062992c80e4/kernel-devel-4.9.75-1.56.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.114-105.126.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/31d5277c31f70051058192957d1d41caf4ce16c1abb653c3829eb921a2b5820c/kernel-devel-4.14.114-105.126.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.165-133.209.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/79e8311f18ec9914180a1864761193630c6f7549756dad830e6d5f3e65a4ad93/kernel-devel-4.14.165-133.209.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.219-164.354.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a961a11bad97be354161e1be09c6032c414e804efd217feec7d721fd88804327/kernel-devel-4.14.219-164.354.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.55-68.37.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/fad2de4ee1cb497b89b8a872b6f2b3ca6b973f1cf9223dd4f575b54365d9d0ad/kernel-devel-4.14.55-68.37.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.88-88.73.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/553e60923b1173b225de6618cf7625b197f2a69dbec3c4dea19b2e64a6b93b5c/kernel-devel-4.14.88-88.73.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.198-152.320.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e3cdf44c0e0e6f058b33096b5db1b4284f6f83c8c49848fca9dc50428c656eb8/kernel-devel-4.14.198-152.320.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-86.82.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9f388164ea775e7a6c36c8628bb9a66a47d9fe27c99e732a210f357e1213dda7/kernel-devel-4.14.77-86.82.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.177-139.253.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c0e5c1817dd874e97740a0eec3726e3d75ef5ed72d5d27311bdddd3de5785ad3/kernel-devel-4.14.177-139.253.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-169.362.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0f7877bb7c98a76a04bec91833a76ec3ea7051a46d10072eaea743adda47b07d/kernel-devel-4.14.225-169.362.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.177-139.254.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0848bbdc8b0db2b0cb50cd627bdcfb678b9e92e89dcf151327b68bbb93da7387/kernel-devel-4.14.177-139.254.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.186-146.268.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/5ee699a43db9d618cd9b2dce19c412eece824517aac40469995f84782380588b/kernel-devel-4.14.186-146.268.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.171-136.231.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/07ea6af089b546e54fb8dbc078bba180866e695754bc6efc16e58da9c48e2b54/kernel-devel-4.14.171-136.231.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.109-99.92.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/61236e7b9a07d600f27ebddba9bb498b5d38b61ae5aaa644d8a79b2a370e6a02/kernel-devel-4.14.109-99.92.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.243-185.433.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ae3847b9c8d37107880dacd9667f26c07626b3ffd860294e1d29289f3408eff6/kernel-devel-4.14.243-185.433.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.62-70.117.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/58c985fddfcaf4352a61b9682a9627c7d1af7f369da5a05bb54f3e66d69e6b7a/kernel-devel-4.14.62-70.117.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.275-207.503.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8ccf859409cd2467c46bd5a6eadc4aa3c1505d0e573fb710aae8b50484e596bc/kernel-devel-4.14.275-207.503.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.173-137.229.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/26607f2215328de1462ac99ce96a2a21204bef510b35a734d0c1c83fdbe117a0/kernel-devel-4.14.173-137.229.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.231-173.360.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/afcce9722d7797b3bad6982cdddcdc16e088c2aa3609843780f765c3d7fffed8/kernel-devel-4.14.231-173.360.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.268-205.500.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0815c303b641ff8f4eabb9a5ed47763fd570b0af37a2636b2bdff92d7faf5a03/kernel-devel-4.14.268-205.500.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.225-168.357.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d7f6407947f343c6793ae5c18b0013c326bb16bd0c85588f3799ba9a79d936fb/kernel-devel-4.14.225-168.357.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.154-128.181.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e30fc570fd5d7eb1d80ff1029ccce803f12b4fe1145c591aea337f5300174084/kernel-devel-4.14.154-128.181.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.252-195.483.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/131a4396b92f75edf7fd3c06c19bd0ee3d9a8bd2ecc32e7d7c21a3fd2dbdac6b/kernel-devel-4.14.252-195.483.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.70-2.243.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/481f28639c1695786af479b6d69ee095cb70f328c964274a986200ee13c33c96/kernel-devel-4.9.70-2.243.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.106-97.85.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9b3bfa84244fe45d6f1e3cc1213cc3466b8b608e5991012ce49daf30cd213363/kernel-devel-4.14.106-97.85.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.67-71.56.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/322f831d51f5274eb27ceec1d50d91244ca4661969e0ef22a0c7e1d5091645c9/kernel-devel-4.14.67-71.56.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.219-161.340.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f31514d804035b669f75eb2e346d0dff3781d87bab6c4ef14909bc052e31d6f0/kernel-devel-4.14.219-161.340.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.51-66.38.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0389abb805f0c83173dde432e30527bbbdddd4aa4e3e6b406e43a3ed6f201185/kernel-devel-4.14.51-66.38.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.285-215.501.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d37190e2b6c7e13361aee28f5cc063c7333440516e9dadcc8e5439ec2d6beadd/kernel-devel-4.14.285-215.501.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.214-160.339.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/5d9614e0e8941e5fbc20ccd88ddd4ea228af6757e71fddc53125ead035395640/kernel-devel-4.14.214-160.339.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.104-95.84.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f7e0e4ea03e8a20b2025e561bcfcee1348de5543ae0b46ebc2d44364a4451169/kernel-devel-4.14.104-95.84.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.101-91.76.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ede82888a2a4bedac8dce3b992d510e5af06cf7ec91d30098b2830ab6a37ca46/kernel-devel-4.14.101-91.76.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.33-59.37.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1f2a8f97b200fb733971427e3a0d77fabaf2539a4a0f83178abf03afc123b55c/kernel-devel-4.14.33-59.37.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.276-211.499.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7d52dc18f0cc28227e5d750aa81d33639a611ff73a97c007131ae2f1287fe4be/kernel-devel-4.14.276-211.499.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.85-46.56.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0cea2749a68ec7ee0c9207d9993814c692d11c320e4b4570aea73995bc6e018b/kernel-devel-4.9.85-46.56.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.273-207.502.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/333bc137363dd5992f5ac6987e682c0dffceeff9333d13128fe3209d41412afb/kernel-devel-4.14.273-207.502.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.290-217.505.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8d64458b9a4edee57ac5c9fbd3c5a455e5e02e93606950212280b21b05945f43/kernel-devel-4.14.290-217.505.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.94-89.73.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1d59b2e7fcf853883167dde06fad6267cce308b8f2f33124cdb4b747a518ac5c/kernel-devel-4.14.94-89.73.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.26-54.32.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/092a176ab06c9fbd1a2507a7c938bdda5a4257d9a8ca51af9827ad8b911621b1/kernel-devel-4.14.26-54.32.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.42-61.37.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ed05d54929a5814fdcbd8b4a8c835538032b243e1d1b69b5d08b6e9b2c11df3d/kernel-devel-4.14.42-61.37.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.238-182.421.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/fa947a840e5a77bd5d1d911c085a1bc89ff563d39c436de2ac3b339a01052a77/kernel-devel-4.14.238-182.421.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.97-90.72.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/346eda9496f9685e6faf173f13b05b91f9939ad5e0cdec4bddd5fa781304fa78/kernel-devel-4.14.97-90.72.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.76-38.79.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/961c3f208e61435f3d35f02115e3b2a94a42b5f264fac75d71ccabfa76dc947d/kernel-devel-4.9.76-38.79.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.287-215.504.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0971217c89c71bf2b4bee131e72f9f4170cc051c6d87ef3a413e1b0232345140/kernel-devel-4.14.287-215.504.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.123-111.109.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8caf088935e538f7c59ac19cefd96118de86c72e4dc479845c286a551fc07eff/kernel-devel-4.14.123-111.109.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.231-173.361.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b3b7a346bb5fb921ccb9779672e31c7de807f639a619d122cbeb5d8da10636c5/kernel-devel-4.14.231-173.361.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.138-114.102.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8063f68b8426af91385f4bf65da960468153c9cd614083501c50be885fc7a09b/kernel-devel-4.14.138-114.102.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.248-189.473.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7c2378dc73a2b8e20f9da894867b06750501618e3c4287364c64d5d6df8fba30/kernel-devel-4.14.248-189.473.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.165-131.185.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/e09baac08866224e31624501530d697f19317af4488f0c5147a1c72ab63094cb/kernel-devel-4.14.165-131.185.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.47-64.38.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/75e5e9ac4e840b4400380247e970aa9423c2cf54418205746c4b103ba0b20c8d/kernel-devel-4.14.47-64.38.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.143-118.123.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9c2104a1489388a13800b6bbdc4385b0ab78cf95f47abf0ebdbfa8f169e92b64/kernel-devel-4.14.143-118.123.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.88-88.76.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/6eba5df81c75bbf2615acc62a5738f22f20af51dfc775f24dea82d8dd7848270/kernel-devel-4.14.88-88.76.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.70-72.55.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c6d10fb9a508d39c236f87146686f5649d6d6837153c1f1ad2f2de201304c19d/kernel-devel-4.14.70-72.55.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.33-59.34.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8cc01ea526bd05bbb937fbb21bd734de49255d8a9853943ee901ccdf487ee23b/kernel-devel-4.14.33-59.34.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.114-103.97.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/aacf53daeb34e5d547cccd61ab2c32bd8366f110fb3e3d460a95715d00b22f20/kernel-devel-4.14.114-103.97.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.192-147.314.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/2c04c98cab68f805e07e41bffe8e309383410c31291ca4d2451dc7201687c24e/kernel-devel-4.14.192-147.314.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.133-113.105.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/d59c3695e9b79c253a02ee63051880df267700db4180ff05f97b28b095085791/kernel-devel-4.14.133-113.105.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.121-109.96.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/bf8060e0b066eeb4be444d2246363ae501e98772c453295ed51eb5d07e9709c9/kernel-devel-4.14.121-109.96.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.133-113.112.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/97b246d5000b5166ab088a3f43067c26d07122cfa75e57332011ec8dd85e17c8/kernel-devel-4.14.133-113.112.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.77-41.59.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b7c31d392e4b09503950d7d4c6590000cd7b7111d304e02e01b6b884a5882baf/kernel-devel-4.9.77-41.59.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.241-184.433.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/71aeb93ee1f2a632d957561cc088fcfbed53712f07c26003896d7b6261afcb4b/kernel-devel-4.14.241-184.433.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.193-149.317.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/f40a678cd2d9ff76c2185b1373e78298fb0cf13ac9b00b01d14f2779108ce243/kernel-devel-4.14.193-149.317.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.262-200.489.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/717b7ed75b4782b7ba462bf344015be77f74b6f204c4a78969469a9e7656edf7/kernel-devel-4.14.262-200.489.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.181-140.257.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8ab1b036e97e9b6897464be1cbbb9fa4a3d6be0c81aed73a425b169b8a5ca04c/kernel-devel-4.14.181-140.257.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.246-187.474.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/ff1255c01ad7ce677e56c9526dacbf461b259939daa19b639f83364253f79711/kernel-devel-4.14.246-187.474.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.200-155.322.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b3d4d12c9825e8f8dbe1e9d37ca4453bf1596ed42f01f9a924b24a2e3b7057e6/kernel-devel-4.14.200-155.322.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.181-142.260.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/bc2f4303e39f87813564ef53c184678c26b49d66b7a8af262fe82423c3ae7090/kernel-devel-4.14.181-142.260.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.232-176.381.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/a2c0ba54566bf959dff722a155b030452178e89ea15fdb529478b1dc1cd98791/kernel-devel-4.14.232-176.381.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-81.59.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/b73a5a824bd1eb23522128573839e862d4d89ef8d544371b7c2bc3ae4730125b/kernel-devel-4.14.77-81.59.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.256-197.484.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/3a9c5e0dcd72b56375ae09187435471c7644775d4047d6361cefeed3e0aaa4a8/kernel-devel-4.14.256-197.484.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.146-119.123.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/721621e181aacad5ef4ceb3d21e94e85d3a7c0ee8a12cceacfd51b750bc65e22/kernel-devel-4.14.146-119.123.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.158-129.185.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/df87ab5931f4ec34c86ee21fddfc6db3af5b6532473d5873748ad8362068c5b9/kernel-devel-4.14.158-129.185.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.77-80.57.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/5d873815f1dd6d7cc1daf1e7beac5f0272fea77f7a4cd6668e930311a1265cd3/kernel-devel-4.14.77-80.57.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.232-177.418.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/365e57e2c3e24ea0f33adbfe1feeb56e962fa2c8cb9acccde4a64da055076815/kernel-devel-4.14.232-177.418.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.173-137.228.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/c181d3fc4dbd30a5d92eb506a0f220c015013b2a0ec515ccaa25463164cc55a5/kernel-devel-4.14.173-137.228.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.209-160.335.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/8abbb0987d5ec4e3f25385e55233a2340a9d86ef03611aa172f348d2c8cd47bb/kernel-devel-4.14.209-160.335.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.238-182.422.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9c166a40b046e9d47796bdd3ddbfe0db94f67cbc885f68c353bb10c331b4abb9/kernel-devel-4.14.238-182.422.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.203-156.332.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/4c9bb7e4d425559a12975c7b2040f66b05cd4d4da42c783c64e47bee92506255/kernel-devel-4.14.203-156.332.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.281-212.502.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/333f944a7a5ee308d61a30c3dff09017232758e1186d6e4490aeffe82c30cc40/kernel-devel-4.14.281-212.502.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.128-112.105.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/1ee54ede3dcf3eb3a02cf51adc6752d24033728c75180feb123d85460f970ed5/kernel-devel-4.14.128-112.105.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.81-44.57.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/36709bc1af006d547d723e6dc99905667c7e7f1b11f249ea87c923807b0a44e2/kernel-devel-4.9.81-44.57.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.72-73.55.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/2d755914f9f54c12d4b3fef793a1bb7b19c357c8c01d1817da10137bcc2c00b0/kernel-devel-4.14.72-73.55.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.252-195.481.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/08182959330e4ca9b2998853887e5e9aded3e33f4bab0b4446aad82aaedddcca/kernel-devel-4.14.252-195.481.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.209-160.339.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/7f6ec8659085118d7cbd25dca21a80ece8ae22885e0ce64398c26639167b9616/kernel-devel-4.14.209-160.339.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.146-120.181.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/2cc2ddc8593e07c1aa0365ea577185f3b4b0e5be3724be1aadd4ec1825620296/kernel-devel-4.14.146-120.181.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.62-10.57.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/18381632cff65dcf8dd4b7fe67bb45f58dc85720816c78d03ffa6677cab4b9e1/kernel-devel-4.9.62-10.57.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.152-124.171.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/9acd7d9728341af2d43430f62db793c18866f3d3d66706e7f395069dc3c27b8a/kernel-devel-4.14.152-124.171.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.47-63.37.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/0c2fc20a36d00010828636f355baae1fee84c15fe0a773a78d94ce1c8ba99d70/kernel-devel-4.14.47-63.37.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.85-47.59.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/05b73c14084f2f5986549eae006bed1c695ca1342f5bbcb7882369bf199c457c/kernel-devel-4.9.85-47.59.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.152-127.182.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/17e31daebc2985f0aabec4b962286404d9633219e6831b5ab3e7a32e6521e214/kernel-devel-4.14.152-127.182.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.59-68.43.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/core/2.0/x86_64/d9eabb739ad3274f51dac6426f86e0ef8889ded0f20abc635fbf05a6663a56f7/../../../../../blobstore/cef1b3782083c7a0a1ab863a64977257aafbc59f95fe76ccddfefcb5098720e8/kernel-devel-4.14.59-68.43.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-111.515.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/692268872604200eb4306d9a5a7912086adc40f21f80e1eafd61fad264769685/kernel-devel-5.10.118-111.515.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.135-122.509.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/2c17bbdfb12377bf3e4a81b48c79126e964b10a4364df7aa3874bc5d6f04a78c/kernel-devel-5.10.135-122.509.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.112-108.499.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/5f7589d15dbb5a3c43b0809802f463c41c9349c1c274dd7dc31db09313a48619/kernel-devel-5.10.112-108.499.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.82-83.359.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/323d072dba23721ab05c343964f8e1b8b75353ae87557afa3c7d7e15cdeb88e6/kernel-devel-5.10.82-83.359.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.59-52.142.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/2abd72b05b4312e93dcde480a215be49133a291f197a1a377924736f4b52f45e/kernel-devel-5.10.59-52.142.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.62-55.141.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/e8d75a421b95d60f3447ca0cff25bb3780d9cd5814a1791afe7728bef02fe5ca/kernel-devel-5.10.62-55.141.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.68-62.173.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/3e3fd48637c5bee00999565017a98671165a0175906fd525ebb8c5314dbe9598/kernel-devel-5.10.68-62.173.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-31.135.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/5d48cac0fdcfa1b07d7b7e06ada582730d8bc6d41cafcc6ab60d163004539db3/kernel-devel-5.10.35-31.135.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-87.444.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/18bb3125c6eea2834e9b98f374326e548238dbf128f873671e8d30c26ca48081/kernel-devel-5.10.93-87.444.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.29-27.128.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/d90c76ba392e0e227a6776ee7e55fe0dfcea417b4dddcc1ca33876038af990b8/kernel-devel-5.10.29-27.128.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.50-44.131.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/d7a05ba10f6a969691e9d831d844ae6b90536967888c07f85a26c1ed42688e12/kernel-devel-5.10.50-44.131.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.75-79.358.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/46518e82898a223391c8b29f5f999cf11eaf4eed383dfaa6562d6214419e20e4/kernel-devel-5.10.75-79.358.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.47-39.130.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/b249d08eac92c548b69308c4b547d47a46a11d1e4b8ba9d6e48493cf58647816/kernel-devel-5.10.47-39.130.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.29-27.126.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/86d8b6286527aa8a8fc764f333dc6bfa751c6aafb978337a5f601471d6de276a/kernel-devel-5.10.29-27.126.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/b82670f07e0edd4ba1dd008db5a08d5bfe569ef5d1b9e259d32a5fc525668585/kernel-devel-5.10.96-90.460.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.126-117.518.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/cbbde606a84272ff1f314da43b1b3b3b3bdf5443d4dc963dd46846a8e0dd93c4/kernel-devel-5.10.126-117.518.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.106-102.504.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/64f96d107ba9da421f020978c58fe9ee2a98ea5aefbc66d31b6886eee494352f/kernel-devel-5.10.106-102.504.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.50-44.132.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/acae53bf62f5acdba97c99e8a5354690245ef9c46d95eacc972e15f62febe5f2/kernel-devel-5.10.50-44.132.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.130-118.517.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/f0558ea00c6659ab2c3cb7d2083df295b5f39043dd0b00f8ac2d0612e1c0d2b6/kernel-devel-5.10.130-118.517.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-104.500.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/ca19e72b4e6b43af5c589209d1c44211800e1fd556633a0359f8e50c6b9dfacc/kernel-devel-5.10.109-104.500.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.102-99.473.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.10/stable/x86_64/bd9e4454eecab86ce885d5d80053d73d9aed8eae887ae720cf69f35b109aac11/../../../../../../blobstore/a5cd2db69f642d9e8bde004878d19cb0446a37f2d3f1b5aef7ad6a4c6dd45eb5/kernel-devel-5.10.102-99.473.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.188-104.359.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/830875a1747e16cdc8a84fac964972fc4dd415b30d3414fb6af37804897f6c1d/kernel-devel-5.4.188-104.359.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.95-42.163.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/117ddd7ca04faa044ae9713b7ddcfd1f1531242e6d4aedfe3d8646acc5254905/kernel-devel-5.4.95-42.163.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.58-27.104.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/7624960746203a2c05229ac2cf7e731e1be7fa408e80aea3441633dc79a92e32/kernel-devel-5.4.58-27.104.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.105-48.177.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/141afaf018a2cff4bde70333713080d1df72d2f5dfbc3c7d0c83a624245358e5/kernel-devel-5.4.105-48.177.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.181-99.354.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/8c9710dfd94486892824108bd5514b229699e7df55f827a74f9a04abd17a9dcd/kernel-devel-5.4.181-99.354.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.162-86.275.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/5b83122c69371660360bbc72809f909613315e9efe8b4fc1de8b7ca09502502e/kernel-devel-5.4.162-86.275.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.172-90.336.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d1cc3d5c7ea361e2e81ff6650516cbcabf075169e869abfcc052a2461bd4f2e4/kernel-devel-5.4.172-90.336.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.58-32.125.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/6bae59358dae7d22dcb5367097e0665e8083ec0ddca96e54e6b0db735286f3fb/kernel-devel-5.4.58-32.125.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.129-63.229.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/76b33544679733c2c446ba38133cc48ed69b51bca09667ab89dbc4a89b7d1f6a/kernel-devel-5.4.129-63.229.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.176-91.338.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/e81c9f1255e06b928f0195438076ff0b3968a27077efd608d3995838bdfe1968/kernel-devel-5.4.176-91.338.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.74-36.135.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d42f478d8bb04b40a9ca5de254b7acbc39fd61894b70d475517189dfe836320d/kernel-devel-5.4.74-36.135.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.50-25.83.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/78262d14c05aab11ff459ad20d76b238554813dc810cdd362742fdadb353b10b/kernel-devel-5.4.50-25.83.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.91-41.139.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/8f615748b620d57cc3daf9e592a3af63f6880f35e9a98e1092219a3b89c4fb10/kernel-devel-5.4.91-41.139.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.196-108.356.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/013f72ea855c9c3754c7f7f78b33adece907ba142770137cfb578c19db228bc5/kernel-devel-5.4.196-108.356.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.38-17.76.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d18de6893e62da4cf448a7b82a716ce801c050b24706e7960f1e6f82dc456986/kernel-devel-5.4.38-17.76.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.110-54.182.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/99c72d63f2de1f8d42bb1b3efdd10e5fc84fd229aa22f719691c75b9572662bf/kernel-devel-5.4.110-54.182.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.117-58.216.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/248b2b078145c4cc7c925850fc56ec0e3f0da141fb1b269fd0c2ebadfd8d41cd/kernel-devel-5.4.117-58.216.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.149-73.259.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/0769a7249bd629216032a20d4a99d680f8a3a955e22e43a8edd065a44f3a4069/kernel-devel-5.4.149-73.259.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.186-102.354.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/9d5b8276f60a1fd4bbfb2c0a7140fe3d8d85fb16aa547bef1a453f91bc721244/kernel-devel-5.4.186-102.354.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.68-34.125.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/edb18ee29589c2f0ad7093b4c65b18a4480d7cd0f13c22c2ea896d6279a2ef45/kernel-devel-5.4.68-34.125.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.129-62.227.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4391e0327edd941f19291ccfa23506ae389c882d6b4ff50b79c1000d43336817/kernel-devel-5.4.129-62.227.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.46-23.77.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/84c04e5ee6220fd83bb601cffbcf57a79560747104c16ebb2cbed604e3557ef7/kernel-devel-5.4.46-23.77.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.204-113.362.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d222883ee3b846347eeb0a0d5700b17e174a78cc1ddbf8a8850a180cc9286ecc/kernel-devel-5.4.204-113.362.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.144-69.257.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/2e599557b2b05925c497e568b450b0a9479302f69a0b2eb5bb8e8290b1b8440a/kernel-devel-5.4.144-69.257.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.20-12.75.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/900ebb892892b707dda60ccef605d9c2934b65f0e8ad18617fd99841ee1f4f4a/kernel-devel-5.4.20-12.75.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.209-116.363.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/58983abb1c57a93cbea8ca9676449c1b20bf1f91a64e5396425715ae8dfb331d/kernel-devel-5.4.209-116.363.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.201-111.359.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/68bda4db5e5a92ad109c8fa29e1591c7b8eb0fce07eb99f5f5ba8232b6649a61/kernel-devel-5.4.201-111.359.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.46-19.75.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/b836550485e7ab9dddc4f091a8d92a89e5f13fb93eec8acd02a3b25d23112c43/kernel-devel-5.4.46-19.75.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.156-83.273.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/d9d2b313143d6cab97599686f64455440aa828db1be7de84818d82c289aed9c1/kernel-devel-5.4.156-83.273.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.190-107.353.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4421829a971058d8b64ce3571ab8828da405fd2fa6ee618642afa72caba86a0a/kernel-devel-5.4.190-107.353.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.141-67.229.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/bf68f0b89be6ca18cff40dbaaebd3aa27b01b79f98e71ec5296fb2855e8e9dc9/kernel-devel-5.4.141-67.229.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.110-54.189.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/4cf0e714fcf0b1480c44a686590c1951dfa000403ad0159177c60b80a86a6bdf/kernel-devel-5.4.110-54.189.amzn2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.80-40.140.amzn2.x86_64", - "target": "amazonlinux2", - "headers": [ - "http://amazonlinux.us-east-1.amazonaws.com/2/extras/kernel-5.4/stable/x86_64/63d547a4bc53f9ac146f4d2e99ab4366940c2eb12c05ec862d23f2386fec6b06/../../../../../../blobstore/3cb078ddedcc8f7fb68c09538f4bb0f4c372e7af700265c9f987cd50b29ed493/kernel-devel-5.4.80-40.140.amzn2.x86_64.rpm" - ] - } - ], - "AmazonLinux2022": [ - { - "kernelversion": 1, - "kernelrelease": "5.10.96-90.460.amzn2022.x86_64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/5d2590a7ac46378c4c6d96446f8948dbd28d6e8b665797807cc5ef4208c81b8d/kernel-devel-5.10.96-90.460.amzn2022.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.23-11.98.amzn2022.x86_64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/554fef5bfc24613ba57b5c20aeae37acdab9448d22153838ee571dbf88051039/kernel-devel-5.15.23-11.98.amzn2022.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.25-14.106.amzn2022.x86_64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/cb99878b7f439d9396fa103f400fe3dd71b4703d01c3ba997d00508b6f3ce18b/kernel-devel-5.15.25-14.106.amzn2022.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.15.24-13.97.amzn2022.x86_64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/e9442cc2ea42150d4054f5a5c5430058cc267b26323ba4a53f86965d9231da55/kernel-devel-5.15.24-13.97.amzn2022.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.75-82.359.amzn2022.x86_64", - "target": "amazonlinux2022", - "headers": [ - "https://al2022-repos-us-east-1-9761ab97.s3.dualstack.us-east-1.amazonaws.com/core/guids/54a27ef1598955d2f12bcd3d29f646e7d6681e92bf047f1861fccc20013093b0/x86_64/../../../../blobstore/c9592b941a6713c183a21e4f4f29a4dcf062a1794265426996ffedb0992cebe6/kernel-devel-5.10.75-82.359.amzn2022.x86_64.rpm" - ] - } - ], - "CentOS": [ - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/os/x86_64/Packages/kernel-devel-3.10.0-1160.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.66.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.71.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7.9.2009/updates/x86_64/Packages/kernel-devel-3.10.0-1160.71.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.76.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://mirror.centos.org/centos/7/updates/x86_64/Packages/kernel-devel-3.10.0-1160.76.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.7/os/x86_64/Packages/kernel-devel-2.6.32-573.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.8/os/x86_64/Packages/kernel-devel-2.6.32-642.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/os/x86_64/Packages/kernel-devel-2.6.32-696.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/os/x86_64/Packages/kernel-devel-2.6.32-754.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.0.1406/os/x86_64/Packages/kernel-devel-3.10.0-123.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.1.1503/os/x86_64/Packages/kernel-devel-3.10.0-229.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.2.1511/os/x86_64/Packages/kernel-devel-3.10.0-327.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.3.1611/os/x86_64/Packages/kernel-devel-3.10.0-514.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.4.1708/os/x86_64/Packages/kernel-devel-3.10.0-693.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.5.1804/os/x86_64/Packages/kernel-devel-3.10.0-862.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.6.1810/os/x86_64/Packages/kernel-devel-3.10.0-957.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.7.1908/os/x86_64/Packages/kernel-devel-3.10.0-1062.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.8.2003/os/x86_64/Packages/kernel-devel-3.10.0-1127.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.1.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.1.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.12.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.12.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.18.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.18.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.22.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.22.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.26.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.26.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.3.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.3.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.7.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.7.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-573.8.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.7/updates/x86_64/Packages/kernel-devel-2.6.32-573.8.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.1.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.1.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.11.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.11.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.13.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.13.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.13.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.15.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.15.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.3.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.3.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.4.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.4.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.6.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-642.6.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.8/updates/x86_64/Packages/kernel-devel-2.6.32-642.6.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.1.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.1.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.10.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.10.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.10.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.10.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.13.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.13.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.16.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.16.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.18.7.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.18.7.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.20.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.20.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.23.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.28.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.3.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.3.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.3.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.30.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.6.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.9/updates/x86_64/Packages/kernel-devel-2.6.32-696.6.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.10.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.11.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.12.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.14.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.15.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.17.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.18.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.2.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.22.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.23.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.25.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.27.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.28.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.3.5.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.30.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.31.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.33.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6/updates/x86_64/Packages/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.35.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.6.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.9.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/6.10/updates/x86_64/Packages/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.13.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.6.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.6.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.4.4.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.4.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.13.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.13.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.20.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.20.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.4.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.4.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.8.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.8.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.9.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.9.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.9.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-123.1.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.0.1406/updates/x86_64/Packages/kernel-devel-3.10.0-123.1.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.1.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.1.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.11.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.11.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.14.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.14.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.20.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.20.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.4.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.4.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-229.7.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.1.1503/updates/x86_64/Packages/kernel-devel-3.10.0-229.7.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.10.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.10.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.13.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.13.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.18.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.18.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.22.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.22.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.28.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.28.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.28.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.3.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.3.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.36.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.36.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.36.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.36.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.4.4.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.4.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-327.4.5.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.2.1511/updates/x86_64/Packages/kernel-devel-3.10.0-327.4.5.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.10.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.10.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.16.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.16.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.2.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.2.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.21.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.26.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.3.1611/updates/x86_64/Packages/kernel-devel-3.10.0-514.6.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.1.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.1.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.6.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.11.6.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.17.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.17.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.2.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.21.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.21.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.5.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.4.1708/updates/x86_64/Packages/kernel-devel-3.10.0-693.5.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.11.6.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.11.6.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.14.4.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.14.4.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.2.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.2.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.3.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.6.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.6.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.9.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.5.1804/updates/x86_64/Packages/kernel-devel-3.10.0-862.9.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.1.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.1.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.10.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.27.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.5.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.6.1810/updates/x86_64/Packages/kernel-devel-3.10.0-957.5.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.7.1908/updates/x86_64/Packages/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/7.8.2003/updates/x86_64/Packages/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.el8.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.0.1905/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-80.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.1.1911/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.2.2004/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.3.2011/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.3.1.el8.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.3.1.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/8.4.2105/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8.5.2111/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.el8.x86_64", - "target": "centos", - "headers": [ - "http://vault.centos.org/centos/8/BaseOS/x86_64/os/Packages/kernel-devel-4.18.0-348.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.0/os/x86_64/Packages/kernel-devel-2.6.32-71.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.0.15.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.1/os/x86_64/Packages/kernel-devel-2.6.32-131.0.15.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.2/os/x86_64/Packages/kernel-devel-2.6.32-220.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/os/x86_64/Packages/kernel-devel-2.6.32-279.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.4/os/x86_64/Packages/kernel-devel-2.6.32-358.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/os/x86_64/Packages/kernel-devel-2.6.32-431.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.6/os/x86_64/Packages/kernel-devel-2.6.32-504.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.29.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.29.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.24.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.24.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.18.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.14.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.14.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.7.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.7.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-71.18.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.0/updates/x86_64/RPMS/kernel-devel-2.6.32-71.18.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.6.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.6.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.17.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.17.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.2.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.2.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.12.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.12.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.4.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.4.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-131.21.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.1/updates/x86_64/Packages/kernel-devel-2.6.32-131.21.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.23.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.23.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.13.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.13.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.4.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.7.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.7.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.4.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.4.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.17.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.17.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-220.2.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.2/updates/x86_64/Packages/kernel-devel-2.6.32-220.2.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.11.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.11.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.5.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.22.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.22.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.5.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.5.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.19.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.19.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.14.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.14.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.1.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.1.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.9.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.9.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-279.2.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.3/updates/x86_64/Packages/kernel-devel-2.6.32-279.2.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.2.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.2.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.18.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.18.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.0.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.0.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.23.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.23.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.6.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.11.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.11.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.14.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.14.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-358.6.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.4/updates/x86_64/Packages/kernel-devel-2.6.32-358.6.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.5.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.5.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.20.5.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.5.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.3.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.3.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.23.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.23.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.17.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.17.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.20.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.20.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.11.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.11.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.29.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.29.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-431.1.2.0.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.5/updates/x86_64/Packages/kernel-devel-2.6.32-431.1.2.0.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.1.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.1.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.12.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.12.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.16.2.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.16.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.23.4.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.23.4.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.3.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.3.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.30.3.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.30.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-504.8.1.el6.x86_64", - "target": "centos", - "headers": [ - "http://archive.kernel.org/centos/6.6/updates/x86_64/Packages/kernel-devel-2.6.32-504.8.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-130.el9.x86_64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-130.el9.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-134.el9.x86_64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-134.el9.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-142.el9.x86_64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-142.el9.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-145.el9.x86_64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-145.el9.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.0-148.el9.x86_64", - "target": "centos", - "headers": [ - "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-devel-5.14.0-148.el9.x86_64.rpm" - ] - } - ], - "Fedora": [ - { - "kernelversion": 1, - "kernelrelease": "5.11.12-300.fc34.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/34/Everything/x86_64/os/Packages/k/kernel-devel-5.11.12-300.fc34.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.14.10-300.fc35.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/35/Everything/x86_64/os/Packages/k/kernel-devel-5.14.10-300.fc35.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.17.5-300.fc36.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/releases/36/Everything/x86_64/os/Packages/k/kernel-devel-5.17.5-300.fc36.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.17.12-100.fc34.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/34/Everything/x86_64/Packages/k/kernel-devel-5.17.12-100.fc34.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18.19-100.fc35.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/35/Everything/x86_64/Packages/k/kernel-devel-5.18.19-100.fc35.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.19.4-200.fc36.x86_64", - "target": "fedora", - "headers": [ - "https://mirrors.kernel.org/fedora/updates/36/Everything/x86_64/Packages/k/kernel-devel-5.19.4-200.fc36.x86_64.rpm" - ] - } - ], - "Oracle6": [ - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.23.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.23.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.28.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.28.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.30.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.30.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-696.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.10.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.10.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.11.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.11.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.12.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.12.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.14.2.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.14.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.15.3.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.15.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.17.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.17.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.18.2.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.18.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.2.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.2.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.22.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.22.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.23.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.23.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.2.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.24.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.24.3.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.24.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.25.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.25.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.27.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.27.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.28.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.28.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.29.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.29.2.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.29.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.3.5.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.3.5.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.30.2.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.30.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.31.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.31.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.33.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.33.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.6.3.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.6.3.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.9.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.9.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.35.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-696.1.1.0.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-696.1.1.0.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.33.1.0.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.33.1.0.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.35.1.0.1.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.0.1.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.32-754.35.1.0.2.el6.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/x86_64/getPackage/kernel-devel-2.6.32-754.35.1.0.2.el6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.42.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.43.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.43.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.42.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.44.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.44.4.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.45.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.45.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.46.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.46.4.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.4.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.47.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.47.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.3.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.3.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.10.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.10.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.11.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.11.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.13.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.13.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.14.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.14.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.17.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.17.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.10.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.10.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.12.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.12.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.7.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.7.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.7.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.7.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.21.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.21.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.22.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.22.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.23.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.23.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.25.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.25.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.26.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.26.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.27.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.27.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.28.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.28.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.29.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.29.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.3.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.3.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.30.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.30.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.31.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.31.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.32.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.32.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.33.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.33.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.34.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.34.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.35.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.35.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.36.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.36.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.37.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.37.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.38.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.38.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.39.1.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.39.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.4.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.4.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.40.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.40.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.41.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.41.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.42.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.42.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.43.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.43.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.44.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.44.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.45.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.45.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.46.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.46.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.47.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.47.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.48.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.48.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.6.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.6.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.7.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.7.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.8.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.8.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.9.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.9.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.1.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.1.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.2.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.2.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.2.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.2.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.3.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.3.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-16.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-16.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.1.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.1.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.2.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.2.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.2.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.2.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.2.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-26.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-26.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.1.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.1.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.1.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.1.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-35.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-44.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.8.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.8.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.2.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.2.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-55.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.1.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.1.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-68.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.1.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.1.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.2.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.2.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.4.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.4.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.5.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.5.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.6.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.6.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.7.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.7.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-98.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.49.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.49.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.50.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.50.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.51.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.52.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.52.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.53.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.53.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.54.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.54.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.51.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.55.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/getPackage/kernel-uek-devel-3.8.13-118.55.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-100.10.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.10.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-100.5.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.5.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-100.6.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.6.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-100.7.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-100.7.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-200.24.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.24.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-200.29.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-200.29.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-200.29.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.29.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-200.31.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.31.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-200.32.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.32.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-200.33.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.33.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-200.34.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-200.34.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-300.17.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-300.17.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-300.17.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.17.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-300.26.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.26.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-300.28.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.28.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-300.32.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-300.32.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.109.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.109.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.17.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.17.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.17.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.17.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.209.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.209.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.209.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.209.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.21.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.21.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.21.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.21.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.210.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.210.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.211.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.211.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.211.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.211.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.212.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.212.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.214.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.214.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.10.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.10.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.11.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.11.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.12.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.12.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.13.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.13.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.14.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.14.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.15.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.15.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.215.7.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.215.7.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.23.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.23.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.24.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.24.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.245.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.245.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.246.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.246.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.247.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.247.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.248.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.248.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.249.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.249.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.249.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.249.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.10.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.10.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.11.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.11.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.7.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.7.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.250.9.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.250.9.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.264.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.264.13.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.13.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.264.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.264.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.264.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.276.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.276.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.277.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.277.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.278.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.278.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.278.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.278.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.280.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.280.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.281.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.281.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.282.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.282.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.283.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.283.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.283.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.283.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.284.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.284.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.286.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.286.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.286.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.286.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.290.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.290.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.290.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.290.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.293.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.293.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.293.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.293.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.294.7.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.294.7.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.295.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.295.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.296.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.296.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.11.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.11.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.12.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.12.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.4.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.4.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.5.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.5.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.8.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.8.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.297.9.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.297.9.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.6.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.6.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.298.7.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.298.7.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.299.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.299.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.299.3.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.299.3.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.300.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.300.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.301.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.301.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.301.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.301.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.302.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.302.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.303.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.303.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.304.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.304.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.305.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.305.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.306.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.306.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.307.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.307.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.308.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.308.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.310.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.310.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.311.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.311.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.312.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.312.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.312.2.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.312.2.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.313.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.313.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.314.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.314.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.315.1.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.315.1.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.315.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.315.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.316.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.316.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.317.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.317.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.318.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.318.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.319.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.319.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.320.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.320.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.321.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.321.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.322.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.322.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.323.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.323.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.324.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.324.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.325.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.325.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.326.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.326.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.327.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.327.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.328.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.328.1.el6uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2.6.39-400.330.1.el6uek.x86_64", - "target": "oracle6", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-devel-2.6.39-400.330.1.el6uek.x86_64.rpm" - ] - } - ], - "Oracle7": [ - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.1.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.1.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.12.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.12.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.18.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.18.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.3.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.4.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.7.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.7.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.9.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.9.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1062.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.10.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.10.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.13.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.13.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.18.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.18.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.19.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.8.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.8.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1127.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.11.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.11.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.15.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.15.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.2.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.2.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.21.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.21.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.24.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.25.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.25.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.31.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.31.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.36.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.36.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.41.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.41.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.42.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.42.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.45.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.49.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.49.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.53.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.53.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.59.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.59.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.6.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.6.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.62.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.66.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.66.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.71.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.71.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.76.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.76.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-1160.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.10.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.10.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.12.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.12.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.21.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.3.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.21.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.27.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kernel-devel-3.10.0-957.27.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.0.0.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.0.0.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.1.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.1.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.1.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.12.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.12.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.18.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.18.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.4.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.4.3.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.4.3.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.7.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.7.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1062.9.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1062.9.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.0.0.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.0.0.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.10.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.10.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.13.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.13.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.18.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.18.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.19.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.19.1.0.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.19.1.0.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1127.8.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1127.8.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.11.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.11.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.15.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.15.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.2.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.2.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.2.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.21.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.21.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.24.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.24.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.25.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.25.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.31.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.31.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.36.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.36.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.41.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.41.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.42.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.42.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.45.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.45.1.0.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.45.1.0.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.49.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.49.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.53.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.53.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.59.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.59.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.6.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.6.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.62.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.62.1.0.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.0.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.62.1.0.3.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.62.1.0.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.66.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.66.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.66.1.0.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.66.1.0.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.71.1.0.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.71.1.0.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-1160.76.1.0.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-1160.76.1.0.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.10.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.10.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.16.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.16.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.21.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.21.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.21.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.26.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.26.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.26.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.6.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-514.6.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-514.6.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.0.0.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.0.0.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.1.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.1.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.11.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.11.6.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.11.6.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.17.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.17.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.2.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.2.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.2.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.21.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.21.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-693.5.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-693.5.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.0.0.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.0.0.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.11.6.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.11.6.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.14.4.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.14.4.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.2.3.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.2.3.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.3.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.3.3.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.3.3.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.6.3.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.6.3.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-862.9.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-862.9.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.0.0.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.0.0.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.0.0.0.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.0.0.0.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.1.3.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.1.3.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.1.3.0.3.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.1.3.0.3.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.10.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.10.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.12.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.12.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.12.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.21.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.21.3.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.21.3.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.27.2.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.27.2.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.5.1.0.1.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.5.1.0.1.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.10.0-957.5.1.0.2.el7.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/x86_64/getPackage/kernel-devel-3.10.0-957.5.1.0.2.el7.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.0.7.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.1.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.2.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.3.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.5.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.6.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.7.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.100.6.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.101.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.102.0.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.200.13.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.201.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.202.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.206.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.300.7.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.6.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.306.1.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.306.1.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.308.7.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.7.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.308.9.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.9.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.309.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.309.5.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.5.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.309.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.310.7.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.310.7.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.310.7.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.310.7.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.305.4.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.305.4.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.305.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.305.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.10.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.10.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.12.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.12.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.13.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.13.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.14.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.14.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.7.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.7.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.8.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.8.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-1902.306.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-1902.306.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2025.400.8.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.8.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2025.400.9.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.9.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2025.400.9.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.400.9.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2025.401.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.401.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2025.402.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.402.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2025.403.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.403.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2025.404.1.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.404.1.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2025.404.1.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.404.1.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2025.405.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2025.405.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.500.10.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.10.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.500.9.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.9.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.500.9.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.500.9.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.501.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.501.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.501.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.501.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.502.4.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.4.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.502.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.502.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.502.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.503.1.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.503.1.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.503.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.503.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.504.2.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.504.2.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.504.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.504.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.505.4.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.505.4.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.505.4.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.505.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.505.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.506.10.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.10.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.506.8.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.8.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.506.8.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.506.8.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.507.7.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.507.7.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.507.7.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.507.7.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.508.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.508.3.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.508.3.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.508.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.508.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.509.2.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.509.2.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.509.2.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.509.2.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.4.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.4.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.510.5.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.510.5.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.5.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.5.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.7.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.7.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.511.5.8.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.511.5.8.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.512.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.512.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.513.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.513.2.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.513.2.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.513.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.513.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.514.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.514.5.1.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.5.1.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.514.5.1.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.5.1.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.514.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.514.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.515.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.515.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.516.1.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.516.1.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.516.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.516.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.14.35-2047.516.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/getPackage/kernel-uek-devel-4.14.35-2047.516.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.42.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.42.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.42.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.43.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.43.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.44.4.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.44.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.44.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.45.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.45.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.45.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.46.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.46.4.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.46.4.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.47.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.47.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.48.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.48.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.49.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.49.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.50.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.50.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.51.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.51.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.52.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.52.5.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.5.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.52.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.52.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.53.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.53.5.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.53.5.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.53.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.53.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.54.6.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.54.6.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.54.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.54.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.56.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.56.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.57.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.57.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.58.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.58.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.59.1.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.59.1.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.59.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.59.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.60.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.60.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.61.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.61.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.62.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.62.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.62.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.62.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.63.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.63.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.63.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.63.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.64.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.64.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.65.1.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.65.1.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.65.1.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.65.1.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.1.12-124.65.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/getPackage/kernel-uek-devel-4.1.12-124.65.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.10.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.10.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.11.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.11.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.13.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.13.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.13.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.14.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.14.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.14.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.15.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.15.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.16.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.16.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.17.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.17.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.17.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.18.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.18.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.10.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.10.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.12.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.12.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.19.7.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.19.7.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.2.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.2.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.20.7.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.20.7.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.21.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.21.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.21.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.22.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.22.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.23.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.23.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.24.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.24.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.25.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.25.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.26.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.26.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.27.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.27.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.28.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.28.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.29.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.29.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.3.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.3.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.30.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.30.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.31.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.31.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.32.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.32.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.33.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.33.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.34.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.34.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.35.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.35.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.35.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.36.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.36.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.37.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.37.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.38.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.38.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.39.1.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.39.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.39.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.4.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.4.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.4.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.40.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.40.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.41.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.41.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.42.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.42.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.43.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.43.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.44.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.44.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.45.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.45.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.46.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.46.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.47.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.47.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.47.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.48.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.48.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.6.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.6.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.6.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.7.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.7.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.8.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.8.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.9.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.9.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.9.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-35.3.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-35.3.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.1.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.1.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-44.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-44.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.6.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.6.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.1.8.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.1.8.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-55.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-55.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.1.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.1.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.1.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.2.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.2.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.3.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.3.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.4.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.4.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.3.5.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.3.5.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-68.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-68.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.1.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.1.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.1.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.2.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.2.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.2.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.4.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.4.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.5.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.5.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.6.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.6.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.7.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.7.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-98.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-98.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.49.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.49.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.50.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.50.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.51.2.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.51.2.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.52.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.52.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.53.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.53.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.54.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.54.1.el7uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.8.13-118.55.1.el7uek.x86_64", - "target": "oracle7", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/getPackage/kernel-uek-devel-3.8.13-118.55.1.el7uek.x86_64.rpm" - ] - } - ], - "Oracle8": [ - { - "kernelversion": 1, - "kernelrelease": "4.18.0-147.0.2.el8_1.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.0.2.el8_1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-147.0.3.el8_1.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.0.3.el8_1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-147.3.1.el8_1.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.3.1.el8_1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-147.5.1.el8_1.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.5.1.el8_1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-147.8.1.el8_1.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.8.1.el8_1.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-147.el8.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-147.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.1.2.el8_2.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.1.2.el8_2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.13.2.el8_2.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.13.2.el8_2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.14.3.el8_2.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.14.3.el8_2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.19.1.el8_2.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.19.1.el8_2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.28.1.el8_2.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.28.1.el8_2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.6.3.el8_2.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.6.3.el8_2.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-193.el8.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-193.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-240.1.1.el8_3.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.1.1.el8_3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-240.10.1.el8_3.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.10.1.el8_3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-240.15.1.el8_3.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.15.1.el8_3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-240.22.1.el8_3.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.22.1.el8_3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-240.8.1.el8_3.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.8.1.el8_3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-240.el8.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-240.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.10.2.el8_4.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.10.2.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.12.1.el8_4.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.12.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.17.1.el8_4.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.17.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.19.1.el8_4.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.19.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.25.1.el8_4.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.25.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.3.1.el8_4.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.3.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.7.1.el8_4.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.7.1.el8_4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-305.el8.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-305.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.12.2.el8_5.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.12.2.el8_5.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.2.1.el8_5.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.2.1.el8_5.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.20.1.el8_5.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.20.1.el8_5.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.23.1.el8_5.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.23.1.el8_5.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.7.1.el8_5.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.7.1.el8_5.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-348.el8.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-348.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-372.13.1.0.1.el8_6.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-372.13.1.0.1.el8_6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-372.16.1.0.1.el8_6.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-372.16.1.0.1.el8_6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-372.19.1.0.1.el8_6.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-372.19.1.0.1.el8_6.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-372.9.1.el8.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-372.9.1.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.1.2.el8_0.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.1.2.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.1.el8_0.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.11.1.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.11.2.el8_0.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.11.2.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.4.2.el8_0.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.4.2.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.1.el8_0.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.7.1.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.7.2.el8_0.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.7.2.el8_0.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.18.0-80.el8.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/kernel-devel-4.18.0-80.el8.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.0.7.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.0.7.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.1.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.1.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.2.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.2.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.3.2.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.3.2.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.4.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.4.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.4.6.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.4.6.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.5.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.5.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.6.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.6.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2011.7.4.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2011.7.4.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.100.6.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.100.6.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.101.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.101.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.102.0.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.102.0.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.103.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.103.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.4.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.4.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2036.104.5.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2036.104.5.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.200.13.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.200.13.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.201.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.201.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.202.5.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.202.5.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.5.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.5.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.203.6.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.203.6.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.204.4.4.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.204.4.4.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.205.7.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.205.7.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2102.206.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2102.206.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.300.7.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.300.7.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.301.1.4.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.301.1.4.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.6.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.6.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.302.7.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.302.7.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.4.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.4.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.304.4.5.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.304.4.5.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.4.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.4.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.305.5.5.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.305.5.5.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.306.1.3.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.306.1.3.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.2.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.2.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.4.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.4.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.5.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.5.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.307.3.6.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.307.3.6.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.308.7.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.7.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.308.9.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.308.9.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.309.4.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.4.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.309.5.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.5.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.309.5.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.309.5.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.310.7.1.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.310.7.1.el8uek.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.4.17-2136.310.7.el8uek.x86_64", - "target": "oracle8", - "headers": [ - "http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/getPackage/kernel-uek-devel-5.4.17-2136.310.7.el8uek.x86_64.rpm" - ] - } - ], - "PhotonOS": [ - { - "kernelversion": 1, - "kernelrelease": "4.19.15-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_release_3.0_x86_64/x86_64/linux-devel-4.19.15-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.104-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.104-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.104-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.112-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.112-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-10.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-10.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-6.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-6.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-7.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-7.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.115-9.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.115-9.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.124-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.124-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.124-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.126-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.126-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.126-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.129-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.129-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.129-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.129-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.132-6.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.132-6.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.138-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.138-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.138-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.138-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.145-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.145-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.145-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.145-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.148-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.148-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.15-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.15-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.150-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.150-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-10.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-10.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-11.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-11.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-8.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-8.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.154-9.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.154-9.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.160-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.160-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.160-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.160-6.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.160-6.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.164-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.164-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.164-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.174-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.174-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.174-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.174-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.177-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.177-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.177-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.182-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.182-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.182-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.186-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.186-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.186-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.186-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.186-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.189-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.189-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.189-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.189-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.189-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.190-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.190-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.190-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.190-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.191-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.191-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.191-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.191-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.198-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.198-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.198-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.198-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.198-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.205-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.205-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.208-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.208-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.214-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.214-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.214-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.217-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.217-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.219-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.219-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.219-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.219-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.219-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.224-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.224-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.224-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.225-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.225-6.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.225-6.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.229-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.229-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.229-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.229-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.232-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.241-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.241-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.241-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.241-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.245-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.245-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-10.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-10.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-11.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-11.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-12.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-12.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-13.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-13.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-6.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-6.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-7.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-7.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-8.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-8.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.247-9.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.247-9.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.29-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.29-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.32-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.32-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.40-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.40-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.40-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.52-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.52-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.52-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.65-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.65-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.65-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.69-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.69-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.72-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.72-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.72-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.76-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.76-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.76-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.79-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.79-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.79-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.82-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.82-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.84-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.84-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.84-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.87-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.87-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.87-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.87-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-1.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-1.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-2.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-2.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-3.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-3.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-4.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-4.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-5.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-5.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.97-6.ph3.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/3.0/photon_updates_3.0_x86_64/x86_64/linux-devel-4.19.97-6.ph3.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.103-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.109-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.109-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-11.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-11.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-12.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-12.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-13.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-13.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-14.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-14.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-5.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-5.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.118-6.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.118-6.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.132-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_updates_4.0_x86_64/x86_64/linux-devel-5.10.132-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-10.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-10.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-5.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-5.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-6.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-6.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-7.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-7.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.25-9.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.25-9.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.35-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.35-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.4-17.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.4-17.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.42-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.42-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.42-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.42-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.46-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.46-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.46-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.52-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.52-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.52-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.52-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.61-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.61-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.61-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.75-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.75-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.78-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.78-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.78-5.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.78-5.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-2.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-2.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-5.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-5.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-6.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-6.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.83-7.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.83-7.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-1.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-1.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-3.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-3.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-4.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-4.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.93-5.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_4.0_x86_64/x86_64/linux-devel-5.10.93-5.ph4.x86_64.rpm" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.4-16.ph4.x86_64", - "target": "photonOS", - "headers": [ - "https://packages.vmware.com/photon/4.0/photon_release_4.0_x86_64/x86_64/linux-devel-5.10.4-16.ph4.x86_64.rpm" - ] - } - ], - "Debian": [ - { - "kernelversion": 1, - "kernelrelease": "5.18.2-1~bpo11+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-rt-amd64_5.18.2-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-cloud-amd64_5.18.2-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common_5.18.2-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-common-rt_5.18.2-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.bpo.1-amd64_5.18.2-1~bpo11+1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.18.14-1~bpo11+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-rt-amd64_5.18.14-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-common_5.18.14-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-amd64_5.18.14-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-cloud-amd64_5.18.14-1~bpo11+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.18.0-0.deb11.3-common-rt_5.18.14-1~bpo11+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-kbuild-5.18_5.18.16-1~bpo11+1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.127-2-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-rt-amd64_5.10.127-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-common-rt_5.10.127-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-amd64_5.10.127-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-cloud-amd64_5.10.127-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-16-common_5.10.127-2_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.136-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-rt-amd64_5.10.136-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-amd64_5.10.136-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-common-rt_5.10.136-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-common_5.10.136-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-17-cloud-amd64_5.10.136-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.106-1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common_5.10.106-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-cloud-amd64_5.10.106-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-rt-amd64_5.10.106-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-13-common-rt_5.10.106-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.120-1~bpo10+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-cloud-amd64_5.10.120-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-common-rt_5.10.120-1~bpo10+1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-rt-amd64_5.10.120-1~bpo10+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-common_5.10.120-1~bpo10+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-5.10.0-0.bpo.15-amd64_5.10.120-1~bpo10+1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.249-2-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-amd64_4.19.249-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-rt-amd64_4.19.249-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common-rt_4.19.249-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-common_4.19.249-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-21-cloud-amd64_4.19.249-2_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.208-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common_4.19.208-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-rt-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-cloud-amd64_4.19.208-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-18-common-rt_4.19.208-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.235-1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common_4.19.235-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-cloud-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-amd64_4.19.235-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-common-rt_4.19.235-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-20-rt-amd64_4.19.235-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.16.56-1+deb8u1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-common_3.16.56-1+deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-3.16.0-6-amd64_3.16.56-1+deb8u1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.118-2+deb10u1~bpo9+1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common-rt_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-rt-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-common_4.19.118-2+deb10u1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.19.0-0.bpo.9-cloud-amd64_4.19.118-2+deb10u1~bpo9+1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.65-2+grsecunoff1~bpo9+1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-common-grsec_4.9.65-2+grsecunoff1~bpo9+1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux-grsec/linux-headers-4.9.0-4-grsec-amd64_4.9.65-2+grsecunoff1~bpo9+1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.228-1-amd64", - "target": "debian", - "headers": [ - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-rt-amd64_4.9.228-1_amd64.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-common-rt_4.9.228-1_all.deb", - "http://mirrors.edge.kernel.org/debian/pool/main/l/linux/linux-headers-4.9.0-13-amd64_4.9.228-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.103-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common_5.10.103-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-cloud-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-rt-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-amd64_5.10.103-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-12-common-rt_5.10.103-1_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.113-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-cloud-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-amd64_5.10.113-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common-rt_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-common_5.10.113-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-14-rt-amd64_5.10.113-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "5.10.120-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-cloud-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-rt-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-common-rt_5.10.120-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-5.10.0-15-amd64_5.10.120-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-5.10/linux-kbuild-5.10_5.10.136-1~deb10u2_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-rt-amd64_4.19.232-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-common-rt_4.19.232-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-19-cloud-amd64_4.19.232-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.16.81-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-common_3.16.81-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-10-amd64_3.16.81-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3.16.84-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-tools/linux-kbuild-3.16_3.16.56-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-common_3.16.84-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-11-amd64_3.16.84-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.189-3+deb9u2~deb8u1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common-rt_4.9.189-3+deb9u2~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-common_4.9.189-3+deb9u2~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-rt-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.11-amd64_4.9.189-3+deb9u2~deb8u1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.210-1+deb9u1~deb8u1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-rt-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-amd64_4.9.210-1+deb9u1~deb8u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.9/linux-headers-4.9.0-0.bpo.12-common-rt_4.9.210-1+deb9u1~deb8u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.303-1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-rt-amd64_4.9.303-1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common-rt_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-common_4.9.303-1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-18-amd64_4.9.303-1_amd64.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.9.320-2-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common_4.9.320-2_all.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-rt-amd64_4.9.320-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-amd64_4.9.320-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.9_4.9.320-2_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.9.0-19-common-rt_4.9.320-2_all.deb" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "4.19.232-1~deb9u1-amd64", - "target": "debian", - "headers": [ - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-kbuild-4.19_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-cloud-amd64_4.19.232-1~deb9u1_amd64.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-common-rt_4.19.232-1~deb9u1_all.deb", - "http://security.debian.org/pool/updates/main/l/linux-4.19/linux-headers-4.19.0-0.bpo.19-rt-amd64_4.19.232-1~deb9u1_amd64.deb" - ] - } - ], - "Ubuntu": [ - { - "kernelversion": "95", - "kernelrelease": "4.15.0-1087-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1087_4.15.0-1087.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1087-oracle_4.15.0-1087.95_amd64.deb" - ] - }, - { - "kernelversion": "96", - "kernelrelease": "4.15.0-1088-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1088-oracle_4.15.0-1088.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1088_4.15.0-1088.96_all.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.15.0-1093-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1093-oracle_4.15.0-1093.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1093_4.15.0-1093.102_all.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "4.15.0-1094-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1094_4.15.0-1094.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1094-oracle_4.15.0-1094.103_amd64.deb" - ] - }, - { - "kernelversion": "115", - "kernelrelease": "4.15.0-1104-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1104-oracle_4.15.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1104-oracle_4.15.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1104_4.15.0-1104.115_all.deb" - ] - }, - { - "kernelversion": "115", - "kernelrelease": "4.15.0-1104-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1104_4.15.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1104-oem_4.15.0-1104.115_amd64.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.15.0-1126-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1126-kvm_4.15.0-1126.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1126_4.15.0-1126.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1126-kvm_4.15.0-1126.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1126_4.15.0-1126.131_all.deb" - ] - }, - { - "kernelversion": "151", - "kernelrelease": "4.15.0-1135-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1135_4.15.0-1135.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1135-gcp_4.15.0-1135.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1135-gcp_4.15.0-1135.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1135_4.15.0-1135.151_amd64.deb" - ] - }, - { - "kernelversion": "151", - "kernelrelease": "4.15.0-1140-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1140-aws_4.15.0-1140.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1140_4.15.0-1140.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1140-aws_4.15.0-1140.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1140_4.15.0-1140.151_all.deb" - ] - }, - { - "kernelversion": "165", - "kernelrelease": "4.15.0-1150-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1150_4.15.0-1150.165_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1150-azure_4.15.0-1150.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1150_4.15.0-1150.165_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1150-azure_4.15.0-1150.165_amd64.deb" - ] - }, - { - "kernelversion": "203", - "kernelrelease": "4.15.0-192-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192-lowlatency_4.15.0-192.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192-generic_4.15.0-192.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192_4.15.0-192.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192-generic_4.15.0-192.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192_4.15.0-192.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-192-lowlatency_4.15.0-192.203_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.0.0-1028-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1028_5.0.0-1028.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1028-aws_5.0.0-1028.31_amd64.deb" - ] - }, - { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1032-aws_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" - ] - }, - { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.4.0-1032-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1032_5.4.0-1032.33~18.04.1_all.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1034-aws_5.4.0-1034.35~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1034-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1034_5.4.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1034-azure_5.4.0-1034.35~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1040-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1040_5.4.0-1040.41~18.04.1_all.deb" - ] - }, - { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1043-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1043_5.4.0-1043.44~18.04.1_all.deb" - ] - }, - { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1060-aws_5.4.0-1060.63~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1060-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1060-gke_5.4.0-1060.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1060_5.4.0-1060.63~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1061-gke_5.4.0-1061.64~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1061-aws_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1061-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1061-azure_5.4.0-1061.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1061_5.4.0-1061.64~18.04.1_all.deb" - ] - }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1063-aws_5.4.0-1063.66~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1063-azure_5.4.0-1063.66~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1063-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1063_5.4.0-1063.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1063-gke_5.4.0-1063.66~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1069-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1069-azure_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_all.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1069-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1069-gke_5.4.0-1069.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1069_5.4.0-1069.72~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "76~18.04.3", - "kernelrelease": "5.4.0-1071-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1071-gke_5.4.0-1071.76~18.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.3_amd64.deb" - ] - }, - { - "kernelversion": "83~18.04.1", - "kernelrelease": "5.4.0-1077-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1077_5.4.0-1077.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1077-gke_5.4.0-1077.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1077_5.4.0-1077.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1077-gke_5.4.0-1077.83~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1078-aws_5.4.0-1078.84~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "84~18.04.1", - "kernelrelease": "5.4.0-1078-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1078-gke_5.4.0-1078.84~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1078-gke_5.4.0-1078.84~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1078_5.4.0-1078.84~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-1082-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1082_5.4.0-1082.90~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1082_5.4.0-1082.90~18.04.1_all.deb" - ] - }, - { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-1084-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1084-aws_5.4.0-1084.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1084_5.4.0-1084.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1084_5.4.0-1084.91~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1084-aws_5.4.0-1084.91~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "95~18.04.1", - "kernelrelease": "5.4.0-1087-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1087_5.4.0-1087.95~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1087_5.4.0-1087.95~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "95~18.04.1", - "kernelrelease": "5.4.0-1090-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1090_5.4.0-1090.95~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1090_5.4.0-1090.95~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1090-azure_5.4.0-1090.95~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1090-azure_5.4.0-1090.95~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "141~18.04.1", - "kernelrelease": "5.4.0-125-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-125_5.4.0-125.141~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-generic_5.4.0-125.141~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-lowlatency_5.4.0-125.141~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-lowlatency_5.4.0-125.141~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-125_5.4.0-125.141~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-125-generic_5.4.0-125.141~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "4.15.0-1006-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1006_4.15.0-1006.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1006-oem_4.15.0-1006.9_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "4.15.0-1008-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1008-gcp_4.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1008_4.15.0-1008.8_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "4.15.0-1008-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1008_4.15.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1008-kvm_4.15.0-1008.8_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "4.15.0-1008-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1008-oem_4.15.0-1008.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1008_4.15.0-1008.11_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "4.15.0-1008-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "4.15.0-1009-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1009-azure_4.15.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "4.15.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1009_4.15.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1009-aws_4.15.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "4.15.0-1009-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1009_4.15.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1009-gcp_4.15.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "4.15.0-1009-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1009_4.15.0-1009.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1009-oem_4.15.0-1009.12_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "4.15.0-1009-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11_amd64.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.15.0-101-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-101_4.15.0-101.102_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "4.15.0-1010-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1010_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1010-gcp_4.15.0-1010.10_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "4.15.0-1010-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1010-aws_4.15.0-1010.10_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "4.15.0-1010-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1010_4.15.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1010-kvm_4.15.0-1010.10_amd64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "4.15.0-1010-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "4.15.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1011-aws_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1011_4.15.0-1011.11_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "4.15.0-1011-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1011_4.15.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1011-kvm_4.15.0-1011.11_amd64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "4.15.0-1012-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1012-azure_4.15.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1012_4.15.0-1012.12_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "4.15.0-1012-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1012_4.15.0-1012.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1012-kvm_4.15.0-1012.12_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "4.15.0-1012-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1012-oem_4.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1012_4.15.0-1012.15_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "4.15.0-1013-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13_amd64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "4.15.0-1013-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1013-oem_4.15.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1013_4.15.0-1013.16_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "4.15.0-1013-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15_all.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "4.15.0-1014-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1014-gcp_4.15.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1014_4.15.0-1014.14_amd64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "4.15.0-1014-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "4.15.0-1015-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1015_4.15.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1015-gcp_4.15.0-1015.15_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "4.15.0-1015-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1015_4.15.0-1015.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1015-oem_4.15.0-1015.18_amd64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "4.15.0-1015-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17_all.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "4.15.0-1016-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1016-aws_4.15.0-1016.16_amd64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "4.15.0-1016-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1016-kvm_4.15.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1016_4.15.0-1016.16_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "4.15.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1017-aws_4.15.0-1017.17_amd64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "4.15.0-1017-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1017-kvm_4.15.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1017_4.15.0-1017.17_all.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "4.15.0-1017-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "4.15.0-1017-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1017_4.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1017-oem_4.15.0-1017.20_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "4.15.0-1017-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "4.15.0-1018-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "4.15.0-1018-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "4.15.0-1018-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1018_4.15.0-1018.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1018-oem_4.15.0-1018.21_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "4.15.0-1018-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "4.15.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "4.15.0-1019-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1019-kvm_4.15.0-1019.19_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "4.15.0-1019-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1019_4.15.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1019-aws_4.15.0-1019.19_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "4.15.0-1019-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "4.15.0-1020-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1020-kvm_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1020_4.15.0-1020.20_all.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "4.15.0-1020-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1020-aws_4.15.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1020_4.15.0-1020.20_all.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1021-aws_4.15.0-1021.21_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "4.15.0-1021-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1021-kvm_4.15.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1021_4.15.0-1021.21_all.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "4.15.0-1021-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "4.15.0-1021-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1021-oem_4.15.0-1021.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1021_4.15.0-1021.24_all.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "4.15.0-1021-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23_all.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "4.15.0-1022-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.23_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "4.15.0-1022-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "4.15.0-1023-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1023-aws_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1023_4.15.0-1023.23_all.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "4.15.0-1023-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1023-kvm_4.15.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1023_4.15.0-1023.23_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "4.15.0-1023-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24_amd64.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "4.15.0-1023-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26_all.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "4.15.0-1024-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25_amd64.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26_amd64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "4.15.0-1025-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28_all.deb" - ] - }, - { - "kernelversion": "27", - "kernelrelease": "4.15.0-1026-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27_amd64.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "4.15.0-1026-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1026_4.15.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1026-kvm_4.15.0-1026.26_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "4.15.0-1026-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1026_4.15.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1026-oem_4.15.0-1026.31_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "4.15.0-1026-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29_all.deb" - ] - }, - { - "kernelversion": "27", - "kernelrelease": "4.15.0-1027-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1027-kvm_4.15.0-1027.27_amd64.deb" - ] - }, - { - "kernelversion": "27", - "kernelrelease": "4.15.0-1027-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1027-aws_4.15.0-1027.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1027_4.15.0-1027.27_all.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "4.15.0-1027-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "4.15.0-1027-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30_all.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29_amd64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "4.15.0-1028-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1028-kvm_4.15.0-1028.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1028_4.15.0-1028.28_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "4.15.0-1028-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1028_4.15.0-1028.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1028-oem_4.15.0-1028.33_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "4.15.0-1029-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1029_4.15.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1029-aws_4.15.0-1029.30_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "4.15.0-1029-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "4.15.0-1029-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1029-kvm_4.15.0-1029.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1029_4.15.0-1029.29_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-1029-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32_all.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "4.15.0-1030-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1030_4.15.0-1030.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1030-kvm_4.15.0-1030.30_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-1030-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1030-oem_4.15.0-1030.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1030_4.15.0-1030.35_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "4.15.0-1030-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33_amd64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "4.15.0-1031-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1031_4.15.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1031-aws_4.15.0-1031.33_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-1031-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "4.15.0-1031-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1031_4.15.0-1031.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1031-kvm_4.15.0-1031.31_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1031-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1032-aws_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1032_4.15.0-1032.34_all.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1032-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1032-gke_4.15.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1032_4.15.0-1032.34_amd64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "4.15.0-1032-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1033-gke_4.15.0-1033.35_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1033-aws_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1033_4.15.0-1033.35_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-1033-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35_amd64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "4.15.0-1033-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1033-oem_4.15.0-1033.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1033_4.15.0-1033.38_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1033-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1034-gke_4.15.0-1034.36_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1034-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1034_4.15.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1034-aws_4.15.0-1034.36_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.15.0-1034-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1034-kvm_4.15.0-1034.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1034_4.15.0-1034.34_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1034-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1034_4.15.0-1034.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1034-oem_4.15.0-1034.39_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "4.15.0-1035-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1035-aws_4.15.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1035_4.15.0-1035.37_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1035-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-1035-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1035-kvm_4.15.0-1035.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1035_4.15.0-1035.35_all.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "4.15.0-1035-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1035-oem_4.15.0-1035.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1035_4.15.0-1035.40_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1035-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.39_amd64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1036-gke_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38_amd64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-1036-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1036-kvm_4.15.0-1036.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1036_4.15.0-1036.36_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1037-gke_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1037-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1037_4.15.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1037-aws_4.15.0-1037.39_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "4.15.0-1037-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41_all.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "4.15.0-1038-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1038-kvm_4.15.0-1038.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1038_4.15.0-1038.38_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1038-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1038-oem_4.15.0-1038.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1038_4.15.0-1038.43_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.15.0-1038-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "4.15.0-1039-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1039-aws_4.15.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1039_4.15.0-1039.41_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-1039-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1039_4.15.0-1039.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1039-kvm_4.15.0-1039.39_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "4.15.0-1039-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1039_4.15.0-1039.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1039-oem_4.15.0-1039.44_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1039-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.43_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1039-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43_amd64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1040-gke_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1040_4.15.0-1040.42_amd64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.15.0-1040-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1040-aws_4.15.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1040_4.15.0-1040.42_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1041-gcp_4.15.0-1041.43_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1041-gke_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1041_4.15.0-1041.43_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1041-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1041-aws_4.15.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1041_4.15.0-1041.43_all.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.45_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1042-gke_4.15.0-1042.44_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "4.15.0-1042-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1042_4.15.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1042-gcp_4.15.0-1042.44_amd64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.15.0-1042-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1042_4.15.0-1042.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1042-kvm_4.15.0-1042.42_amd64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "4.15.0-1043-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1043-aws_4.15.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1043_4.15.0-1043.45_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.15.0-1043-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1043_4.15.0-1043.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1043-kvm_4.15.0-1043.43_amd64.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "4.15.0-1043-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1043_4.15.0-1043.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1043-oem_4.15.0-1043.48_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.46_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.15.0-1044-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1044_4.15.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1044-gke_4.15.0-1044.46_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.15.0-1044-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1044-aws_4.15.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1044_4.15.0-1044.46_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "4.15.0-1044-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1044_4.15.0-1044.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1044-gcp_4.15.0-1044.70_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "4.15.0-1044-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1044-kvm_4.15.0-1044.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1044_4.15.0-1044.44_all.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "4.15.0-1045-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1045-aws_4.15.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1045_4.15.0-1045.47_all.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "4.15.0-1045-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1045-gke_4.15.0-1045.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1045_4.15.0-1045.48_amd64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.15.0-1045-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1045-oem_4.15.0-1045.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1045_4.15.0-1045.50_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-1045-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-1045-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-1046-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1046-gke_4.15.0-1046.49_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-1046-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1046_4.15.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1046-gcp_4.15.0-1046.49_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.15.0-1046-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1046-kvm_4.15.0-1046.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1046_4.15.0-1046.46_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-1047-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1047_4.15.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1047-aws_4.15.0-1047.49_amd64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "4.15.0-1047-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1047-kvm_4.15.0-1047.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1047_4.15.0-1047.47_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "4.15.0-1047-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1047-azure_4.15.0-1047.51_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "4.15.0-1047-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1047-oracle_4.15.0-1047.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1047_4.15.0-1047.51_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.15.0-1048-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1048_4.15.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1048-aws_4.15.0-1048.50_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "4.15.0-1048-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1048-gke_4.15.0-1048.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1048_4.15.0-1048.51_amd64.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "4.15.0-1048-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1048-kvm_4.15.0-1048.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1048_4.15.0-1048.48_all.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "4.15.0-1048-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1048_4.15.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1048-oracle_4.15.0-1048.52_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "4.15.0-1049-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1049-gke_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "4.15.0-1049-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1049_4.15.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1049-gcp_4.15.0-1049.52_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "4.15.0-1050-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1050_4.15.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1050-aws_4.15.0-1050.52_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1050-gke_4.15.0-1050.53_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.15.0-1050-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1050-gcp_4.15.0-1050.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1050_4.15.0-1050.53_amd64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.15.0-1050-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1050-kvm_4.15.0-1050.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1050_4.15.0-1050.50_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "4.15.0-1050-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1050_4.15.0-1050.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1050-oem_4.15.0-1050.57_amd64.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "4.15.0-1050-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.15.0-1051-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1051-aws_4.15.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1051_4.15.0-1051.53_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "4.15.0-1051-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1051-kvm_4.15.0-1051.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1051_4.15.0-1051.51_all.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "4.15.0-1051-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55_all.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "4.15.0-1052-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1052-aws_4.15.0-1052.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1052_4.15.0-1052.54_all.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "4.15.0-1052-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1052_4.15.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1052-gke_4.15.0-1052.55_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "4.15.0-1052-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1052_4.15.0-1052.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1052-kvm_4.15.0-1052.52_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.15.0-1053-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1053-kvm_4.15.0-1053.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1053_4.15.0-1053.53_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "4.15.0-1053-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "4.15.0-1054-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1054_4.15.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1054-aws_4.15.0-1054.56_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "4.15.0-1054-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "4.15.0-1055-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1055_4.15.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1055-gke_4.15.0-1055.58_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "4.15.0-1056-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1056-aws_4.15.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1056_4.15.0-1056.58_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "4.15.0-1056-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1056-kvm_4.15.0-1056.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1056_4.15.0-1056.57_all.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "4.15.0-1056-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1056_4.15.0-1056.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1056-oem_4.15.0-1056.65_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "4.15.0-1057-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1057-aws_4.15.0-1057.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1057_4.15.0-1057.59_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "4.15.0-1057-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1057_4.15.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1057-gke_4.15.0-1057.60_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "4.15.0-1057-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1057-oem_4.15.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1057_4.15.0-1057.66_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.15.0-1057-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1057-azure_4.15.0-1057.62_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.15.0-1057-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1057_4.15.0-1057.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1057-oracle_4.15.0-1057.62_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "4.15.0-1058-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1058_4.15.0-1058.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1058-aws_4.15.0-1058.60_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "4.15.0-1058-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1058_4.15.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1058-gke_4.15.0-1058.61_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "4.15.0-1058-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1058_4.15.0-1058.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1058-kvm_4.15.0-1058.59_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "4.15.0-1058-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.15.0-1059-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1059_4.15.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1059-gke_4.15.0-1059.62_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "4.15.0-1059-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1059_4.15.0-1059.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1059-kvm_4.15.0-1059.60_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "4.15.0-1059-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1059-oem_4.15.0-1059.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1059_4.15.0-1059.68_all.deb" - ] - }, - { - "kernelversion": "107", - "kernelrelease": "4.15.0-106-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106-generic_4.15.0-106.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-106_4.15.0-106.107_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.15.0-1060-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1060_4.15.0-1060.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1060-aws_4.15.0-1060.62_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "4.15.0-1060-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1060_4.15.0-1060.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1060-kvm_4.15.0-1060.61_amd64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "4.15.0-1061-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "4.15.0-1062-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "4.15.0-1063-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1063_4.15.0-1063.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1063-aws_4.15.0-1063.67_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "4.15.0-1063-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1063-gke_4.15.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1063_4.15.0-1063.66_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "4.15.0-1063-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1063-oem_4.15.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1063_4.15.0-1063.72_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "4.15.0-1063-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1063_4.15.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1063-oracle_4.15.0-1063.70_amd64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "4.15.0-1064-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1064-gke_4.15.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1064_4.15.0-1064.67_amd64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "4.15.0-1064-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1064_4.15.0-1064.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1064-oem_4.15.0-1064.73_amd64.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "4.15.0-1064-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71_amd64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "4.15.0-1065-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1065-aws_4.15.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1065_4.15.0-1065.69_all.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "4.15.0-1065-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1065_4.15.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1065-oem_4.15.0-1065.75_amd64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "4.15.0-1065-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "4.15.0-1066-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1066-aws_4.15.0-1066.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1066_4.15.0-1066.70_all.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "4.15.0-1066-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1066_4.15.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1066-gke_4.15.0-1066.69_amd64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "4.15.0-1066-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1066-oem_4.15.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1066_4.15.0-1066.76_all.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "4.15.0-1066-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74_all.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "4.15.0-1067-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1067_4.15.0-1067.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1067-aws_4.15.0-1067.71_amd64.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "4.15.0-1067-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1067-gke_4.15.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1067_4.15.0-1067.70_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "4.15.0-1067-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1067_4.15.0-1067.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1067-kvm_4.15.0-1067.68_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "4.15.0-1067-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1067-oem_4.15.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1067_4.15.0-1067.77_all.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "4.15.0-1067-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75_amd64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "4.15.0-1068-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76_all.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "4.15.0-1069-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1069-gke_4.15.0-1069.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1069_4.15.0-1069.72_amd64.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "4.15.0-1069-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1069-kvm_4.15.0-1069.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1069_4.15.0-1069.70_all.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "4.15.0-1069-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1069_4.15.0-1069.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1069-oem_4.15.0-1069.79_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "4.15.0-1069-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77_amd64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "4.15.0-1070-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1070-gke_4.15.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1070_4.15.0-1070.73_amd64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "4.15.0-1070-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "4.15.0-1071-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1071-kvm_4.15.0-1071.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1071_4.15.0-1071.72_all.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "4.15.0-1071-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1071-oracle_4.15.0-1071.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1071_4.15.0-1071.79_all.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "4.15.0-1072-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1072-gke_4.15.0-1072.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1072_4.15.0-1072.76_amd64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "4.15.0-1072-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1072-kvm_4.15.0-1072.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1072_4.15.0-1072.73_all.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "4.15.0-1072-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1072-oracle_4.15.0-1072.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1072_4.15.0-1072.80_all.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "4.15.0-1073-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1073-aws_4.15.0-1073.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1073_4.15.0-1073.77_all.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "4.15.0-1073-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1073-gke_4.15.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1073_4.15.0-1073.78_amd64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.15.0-1073-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1073_4.15.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1073-oem_4.15.0-1073.83_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "4.15.0-1074-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1074_4.15.0-1074.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1074-kvm_4.15.0-1074.75_amd64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "4.15.0-1075-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1075-kvm_4.15.0-1075.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1075_4.15.0-1075.76_all.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.15.0-1075-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1075_4.15.0-1075.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1075-oracle_4.15.0-1075.83_amd64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "4.15.0-1076-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1076-aws_4.15.0-1076.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1076_4.15.0-1076.80_all.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "4.15.0-1076-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1076-gke_4.15.0-1076.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1076_4.15.0-1076.81_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "4.15.0-1076-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1076_4.15.0-1076.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1076-oem_4.15.0-1076.86_amd64.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "4.15.0-1077-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1077_4.15.0-1077.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1077-aws_4.15.0-1077.81_amd64.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "4.15.0-1077-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1077-azure_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1077_4.15.0-1077.82_all.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "4.15.0-1077-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1077-gke_4.15.0-1077.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1077_4.15.0-1077.82_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "4.15.0-1077-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1077-kvm_4.15.0-1077.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1077_4.15.0-1077.79_all.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.15.0-1078-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1078_4.15.0-1078.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1078-gke_4.15.0-1078.83_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "4.15.0-1078-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1078_4.15.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1078-oracle_4.15.0-1078.86_amd64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.15.0-1079-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1079_4.15.0-1079.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1079-aws_4.15.0-1079.83_amd64.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.15.0-1079-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1079_4.15.0-1079.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1079-gke_4.15.0-1079.84_amd64.deb" - ] - }, - { - "kernelversion": "89", - "kernelrelease": "4.15.0-1079-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1079_4.15.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1079-oem_4.15.0-1079.89_amd64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "4.15.0-1079-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1079-oracle_4.15.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1079_4.15.0-1079.87_all.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "4.15.0-108-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-generic_4.15.0-108.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108-lowlatency_4.15.0-108.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-108_4.15.0-108.109_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.15.0-1080-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1080_4.15.0-1080.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1080-aws_4.15.0-1080.84_amd64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "4.15.0-1080-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1080_4.15.0-1080.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1080-oem_4.15.0-1080.90_amd64.deb" - ] - }, - { - "kernelversion": "88", - "kernelrelease": "4.15.0-1080-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1080-oracle_4.15.0-1080.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1080_4.15.0-1080.88_all.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.15.0-1081-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1081-kvm_4.15.0-1081.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1081_4.15.0-1081.83_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.15.0-1081-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1081_4.15.0-1081.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1081-oem_4.15.0-1081.91_amd64.deb" - ] - }, - { - "kernelversion": "89", - "kernelrelease": "4.15.0-1081-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1081_4.15.0-1081.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1081-oracle_4.15.0-1081.89_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "4.15.0-1082-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1082-aws_4.15.0-1082.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1082_4.15.0-1082.86_all.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.15.0-1082-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1082-azure_4.15.0-1082.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1082_4.15.0-1082.92_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.15.0-1082-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1082-kvm_4.15.0-1082.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1082_4.15.0-1082.84_all.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "4.15.0-1082-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1082_4.15.0-1082.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1082-oracle_4.15.0-1082.90_amd64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "4.15.0-1083-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1083_4.15.0-1083.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1083-aws_4.15.0-1083.87_amd64.deb" - ] - }, - { - "kernelversion": "93", - "kernelrelease": "4.15.0-1083-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1083_4.15.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1083-azure_4.15.0-1083.93_amd64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.15.0-1083-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1083-oracle_4.15.0-1083.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1083_4.15.0-1083.91_all.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "4.15.0-1084-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1084-kvm_4.15.0-1084.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1084_4.15.0-1084.86_all.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.15.0-1084-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1084-oracle_4.15.0-1084.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1084_4.15.0-1084.92_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "4.15.0-1085-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1085_4.15.0-1085.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1085-kvm_4.15.0-1085.87_amd64.deb" - ] - }, - { - "kernelversion": "93", - "kernelrelease": "4.15.0-1085-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1085_4.15.0-1085.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1085-oracle_4.15.0-1085.93_amd64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.15.0-1086-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1086-aws_4.15.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1086_4.15.0-1086.91_all.deb" - ] - }, - { - "kernelversion": "88", - "kernelrelease": "4.15.0-1086-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1086_4.15.0-1086.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1086-kvm_4.15.0-1086.88_amd64.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "4.15.0-1086-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1086_4.15.0-1086.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1086-oracle_4.15.0-1086.94_amd64.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.15.0-1087-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1087-aws_4.15.0-1087.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1087_4.15.0-1087.92_all.deb" - ] - }, - { - "kernelversion": "89", - "kernelrelease": "4.15.0-1087-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1087-kvm_4.15.0-1087.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1087_4.15.0-1087.89_all.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "4.15.0-1087-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1087_4.15.0-1087.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1087-oem_4.15.0-1087.97_amd64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "4.15.0-1088-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1088-kvm_4.15.0-1088.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1088_4.15.0-1088.90_all.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.15.0-1089-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1089-azure_4.15.0-1089.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1089_4.15.0-1089.99_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.15.0-1089-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1089-kvm_4.15.0-1089.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1089_4.15.0-1089.91_all.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "4.15.0-1089-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1089_4.15.0-1089.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1089-oracle_4.15.0-1089.98_amd64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.15.0-109-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109_4.15.0-109.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-generic_4.15.0-109.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-109-lowlatency_4.15.0-109.110_amd64.deb" - ] - }, - { - "kernelversion": "95", - "kernelrelease": "4.15.0-1090-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1090-aws_4.15.0-1090.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1090_4.15.0-1090.95_all.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.15.0-1090-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1090_4.15.0-1090.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1090-kvm_4.15.0-1090.92_amd64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "4.15.0-1090-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1090_4.15.0-1090.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1090-oem_4.15.0-1090.100_amd64.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.15.0-1090-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1090_4.15.0-1090.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1090-oracle_4.15.0-1090.99_amd64.deb" - ] - }, - { - "kernelversion": "96", - "kernelrelease": "4.15.0-1091-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1091-aws_4.15.0-1091.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1091_4.15.0-1091.96_all.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "4.15.0-1091-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1091-oem_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1091_4.15.0-1091.101_all.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "4.15.0-1091-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1091_4.15.0-1091.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1091-azure_4.15.0-1091.101_amd64.deb" - ] - }, - { - "kernelversion": "93", - "kernelrelease": "4.15.0-1091-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1091_4.15.0-1091.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1091-kvm_4.15.0-1091.93_amd64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "4.15.0-1091-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1091-oracle_4.15.0-1091.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1091_4.15.0-1091.100_all.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "4.15.0-1092-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1092-aws_4.15.0-1092.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1092_4.15.0-1092.98_all.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.15.0-1092-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1092_4.15.0-1092.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1092-azure_4.15.0-1092.102_amd64.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "4.15.0-1092-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1092_4.15.0-1092.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1092-kvm_4.15.0-1092.94_amd64.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "4.15.0-1092-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1092_4.15.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1092-oracle_4.15.0-1092.101_amd64.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.15.0-1093-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1093_4.15.0-1093.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1093-aws_4.15.0-1093.99_amd64.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "4.15.0-1093-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1093-azure_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1093_4.15.0-1093.103_all.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "4.15.0-1093-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1093_4.15.0-1093.103_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1093-oem_4.15.0-1093.103_amd64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.15.0-1093-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1093_4.15.0-1093.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106_amd64.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "4.15.0-1094-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1094_4.15.0-1094.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1094-aws_4.15.0-1094.101_amd64.deb" - ] - }, - { - "kernelversion": "107", - "kernelrelease": "4.15.0-1094-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1094_4.15.0-1094.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107_amd64.deb" - ] - }, - { - "kernelversion": "96", - "kernelrelease": "4.15.0-1094-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1094-kvm_4.15.0-1094.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1094_4.15.0-1094.96_all.deb" - ] - }, - { - "kernelversion": "104", - "kernelrelease": "4.15.0-1094-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1094_4.15.0-1094.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1094-oem_4.15.0-1094.104_amd64.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.15.0-1095-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1095_4.15.0-1095.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1095-aws_4.15.0-1095.102_amd64.deb" - ] - }, - { - "kernelversion": "105", - "kernelrelease": "4.15.0-1095-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1095_4.15.0-1095.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1095-azure_4.15.0-1095.105_amd64.deb" - ] - }, - { - "kernelversion": "108", - "kernelrelease": "4.15.0-1095-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1095_4.15.0-1095.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108_amd64.deb" - ] - }, - { - "kernelversion": "104", - "kernelrelease": "4.15.0-1095-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1095-oracle_4.15.0-1095.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1095_4.15.0-1095.104_all.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "4.15.0-1096-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1096-aws_4.15.0-1096.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1096_4.15.0-1096.103_all.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.15.0-1096-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1096-azure_4.15.0-1096.106_amd64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.15.0-1096-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1096_4.15.0-1096.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1096-oem_4.15.0-1096.106_amd64.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "4.15.0-1096-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1096_4.15.0-1096.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109_amd64.deb" - ] - }, - { - "kernelversion": "104", - "kernelrelease": "4.15.0-1097-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1097_4.15.0-1097.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1097-aws_4.15.0-1097.104_amd64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.15.0-1097-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1097_4.15.0-1097.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110_amd64.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.15.0-1097-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1097-kvm_4.15.0-1097.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1097_4.15.0-1097.99_all.deb" - ] - }, - { - "kernelversion": "107", - "kernelrelease": "4.15.0-1097-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1097-oem_4.15.0-1097.107_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1097_4.15.0-1097.107_all.deb" - ] - }, - { - "kernelversion": "105", - "kernelrelease": "4.15.0-1098-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1098-aws_4.15.0-1098.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1098_4.15.0-1098.105_all.deb" - ] - }, - { - "kernelversion": "111", - "kernelrelease": "4.15.0-1098-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1098_4.15.0-1098.111_amd64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "4.15.0-1098-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1098-kvm_4.15.0-1098.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1098_4.15.0-1098.100_all.deb" - ] - }, - { - "kernelversion": "108", - "kernelrelease": "4.15.0-1098-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1098_4.15.0-1098.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1098-oracle_4.15.0-1098.108_amd64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.15.0-1099-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1099-aws_4.15.0-1099.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1099_4.15.0-1099.106_all.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.15.0-1099-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1099_4.15.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1099-azure_4.15.0-1099.110_amd64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-1099-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1099_4.15.0-1099.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1099-gcp_4.15.0-1099.112_amd64.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "4.15.0-1099-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1099-kvm_4.15.0-1099.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1099_4.15.0-1099.101_all.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "4.15.0-1099-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1099_4.15.0-1099.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1099-oem_4.15.0-1099.109_amd64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1100-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1100_4.15.0-1100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1100-gcp_4.15.0-1100.113_amd64.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.15.0-1100-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1100_4.15.0-1100.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1100-kvm_4.15.0-1100.102_amd64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.15.0-1100-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1100_4.15.0-1100.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1100-oem_4.15.0-1100.110_amd64.deb" - ] - }, - { - "kernelversion": "108", - "kernelrelease": "4.15.0-1101-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1101-aws_4.15.0-1101.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1101_4.15.0-1101.108_all.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "4.15.0-1101-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1101-kvm_4.15.0-1101.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1101_4.15.0-1101.103_all.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-1101-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1101-oem_4.15.0-1101.112_amd64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-1101-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1101-oracle_4.15.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1101_4.15.0-1101.112_all.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "4.15.0-1102-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1102-aws_4.15.0-1102.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1102_4.15.0-1102.109_all.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1102-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1102-azure_4.15.0-1102.113_amd64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1102-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1102-oem_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1102_4.15.0-1102.113_all.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1102-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1102_4.15.0-1102.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1102-oracle_4.15.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1102-oracle_4.15.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1102_4.15.0-1102.113_all.deb" - ] - }, - { - "kernelversion": "104", - "kernelrelease": "4.15.0-1102-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1102_4.15.0-1102.104_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1102-kvm_4.15.0-1102.104_amd64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.15.0-1103-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1103-aws_4.15.0-1103.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1103_4.15.0-1103.110_all.deb" - ] - }, - { - "kernelversion": "114", - "kernelrelease": "4.15.0-1103-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1103-oem_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1103_4.15.0-1103.114_all.deb" - ] - }, - { - "kernelversion": "114", - "kernelrelease": "4.15.0-1103-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1103-azure_4.15.0-1103.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1103_4.15.0-1103.114_all.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.15.0-1103-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1103_4.15.0-1103.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1103-gcp_4.15.0-1103.116_amd64.deb" - ] - }, - { - "kernelversion": "105", - "kernelrelease": "4.15.0-1103-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1103_4.15.0-1103.105_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1103-kvm_4.15.0-1103.105_amd64.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.15.0-1104-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1104_4.15.0-1104.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1104-azure_4.15.0-1104.116_amd64.deb" - ] - }, - { - "kernelversion": "107", - "kernelrelease": "4.15.0-1105-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1105_4.15.0-1105.107_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1105-kvm_4.15.0-1105.107_amd64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1106-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1106_4.15.0-1106.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1106-aws_4.15.0-1106.113_amd64.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.15.0-1106-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1106-azure_4.15.0-1106.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1106_4.15.0-1106.118_all.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "4.15.0-1106-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1106_4.15.0-1106.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1106-gcp_4.15.0-1106.120_amd64.deb" - ] - }, - { - "kernelversion": "108", - "kernelrelease": "4.15.0-1106-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1106_4.15.0-1106.108_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1106-kvm_4.15.0-1106.108_amd64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.15.0-1107-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1107_4.15.0-1107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1107-gcp_4.15.0-1107.121_amd64.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "4.15.0-1107-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1107_4.15.0-1107.109_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1107-kvm_4.15.0-1107.109_amd64.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "4.15.0-1108-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1108-azure_4.15.0-1108.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1108_4.15.0-1108.120_all.deb" - ] - }, - { - "kernelversion": "122", - "kernelrelease": "4.15.0-1108-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1108_4.15.0-1108.122_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1108-gcp_4.15.0-1108.122_amd64.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.15.0-1109-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1109-aws_4.15.0-1109.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1109_4.15.0-1109.116_all.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.15.0-1109-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1109_4.15.0-1109.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1109-azure_4.15.0-1109.121_amd64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-1109-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1109_4.15.0-1109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1109-gcp_4.15.0-1109.123_amd64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-1109-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1109_4.15.0-1109.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1109-kvm_4.15.0-1109.112_amd64.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.15.0-111-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-generic_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111-lowlatency_4.15.0-111.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-111_4.15.0-111.112_all.deb" - ] - }, - { - "kernelversion": "117", - "kernelrelease": "4.15.0-1110-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1110_4.15.0-1110.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1110-aws_4.15.0-1110.117_amd64.deb" - ] - }, - { - "kernelversion": "122", - "kernelrelease": "4.15.0-1110-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1110_4.15.0-1110.122_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1110-azure_4.15.0-1110.122_amd64.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "4.15.0-1110-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1110-gcp_4.15.0-1110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1110_4.15.0-1110.124_amd64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-1110-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1110-kvm_4.15.0-1110.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1110_4.15.0-1110.113_all.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.15.0-1111-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1111-aws_4.15.0-1111.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1111_4.15.0-1111.118_all.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-1111-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1111-azure_4.15.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1111_4.15.0-1111.123_all.deb" - ] - }, - { - "kernelversion": "125", - "kernelrelease": "4.15.0-1111-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1111-gcp_4.15.0-1111.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1111_4.15.0-1111.125_amd64.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.15.0-1112-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1112-aws_4.15.0-1112.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1112_4.15.0-1112.119_all.deb" - ] - }, - { - "kernelversion": "125", - "kernelrelease": "4.15.0-1112-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1112-azure_4.15.0-1112.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1112_4.15.0-1112.125_all.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "4.15.0-1112-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1112-gcp_4.15.0-1112.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1112_4.15.0-1112.126_amd64.deb" - ] - }, - { - "kernelversion": "115", - "kernelrelease": "4.15.0-1112-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1112-kvm_4.15.0-1112.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1112_4.15.0-1112.115_all.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "4.15.0-1113-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1113_4.15.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1113-azure_4.15.0-1113.126_amd64.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.15.0-1113-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1113_4.15.0-1113.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1113-kvm_4.15.0-1113.116_amd64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.15.0-1114-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1114_4.15.0-1114.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1114-aws_4.15.0-1114.121_amd64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-1114-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1114_4.15.0-1114.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1114-azure_4.15.0-1114.127_amd64.deb" - ] - }, - { - "kernelversion": "128", - "kernelrelease": "4.15.0-1114-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1114-gcp_4.15.0-1114.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1114_4.15.0-1114.128_amd64.deb" - ] - }, - { - "kernelversion": "117", - "kernelrelease": "4.15.0-1114-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1114-kvm_4.15.0-1114.117_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1114_4.15.0-1114.117_all.deb" - ] - }, - { - "kernelversion": "122", - "kernelrelease": "4.15.0-1115-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1115-aws_4.15.0-1115.122_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1115_4.15.0-1115.122_all.deb" - ] - }, - { - "kernelversion": "128", - "kernelrelease": "4.15.0-1115-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1115-azure_4.15.0-1115.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1115_4.15.0-1115.128_all.deb" - ] - }, - { - "kernelversion": "129", - "kernelrelease": "4.15.0-1115-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1115-gcp_4.15.0-1115.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1115_4.15.0-1115.129_amd64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-1116-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1116_4.15.0-1116.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1116-aws_4.15.0-1116.123_amd64.deb" - ] - }, - { - "kernelversion": "130", - "kernelrelease": "4.15.0-1116-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1116-gcp_4.15.0-1116.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1116_4.15.0-1116.130_amd64.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.15.0-1116-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1116-kvm_4.15.0-1116.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1116_4.15.0-1116.119_all.deb" - ] - }, - { - "kernelversion": "125", - "kernelrelease": "4.15.0-1118-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1118-aws_4.15.0-1118.125_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1118_4.15.0-1118.125_all.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.15.0-1118-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1118_4.15.0-1118.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1118-azure_4.15.0-1118.131_amd64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.15.0-1118-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1118-gcp_4.15.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1118_4.15.0-1118.132_amd64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-1119-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1119_4.15.0-1119.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1119-aws_4.15.0-1119.127_amd64.deb" - ] - }, - { - "kernelversion": "133", - "kernelrelease": "4.15.0-1119-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1119_4.15.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1119-gcp_4.15.0-1119.133_amd64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-1119-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1119-kvm_4.15.0-1119.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1119_4.15.0-1119.123_all.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.15.0-112-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-generic_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-112_4.15.0-112.113_all.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-1120-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1120-gcp_4.15.0-1120.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1120_4.15.0-1120.134_amd64.deb" - ] - }, - { - "kernelversion": "129", - "kernelrelease": "4.15.0-1121-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1121-aws_4.15.0-1121.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1121_4.15.0-1121.129_all.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-1121-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1121-azure_4.15.0-1121.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1121_4.15.0-1121.134_all.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.15.0-1121-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1121_4.15.0-1121.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1121-gcp_4.15.0-1121.135_amd64.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.15.0-1122-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1122_4.15.0-1122.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1122-azure_4.15.0-1122.135_amd64.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "4.15.0-1122-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1122_4.15.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1122-gcp_4.15.0-1122.136_amd64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-1122-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1122-kvm_4.15.0-1122.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1122_4.15.0-1122.127_all.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.15.0-1123-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1123-aws_4.15.0-1123.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1123_4.15.0-1123.132_all.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "4.15.0-1123-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1123_4.15.0-1123.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1123-azure_4.15.0-1123.136_amd64.deb" - ] - }, - { - "kernelversion": "128", - "kernelrelease": "4.15.0-1123-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1123-kvm_4.15.0-1123.128_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1123_4.15.0-1123.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1123_4.15.0-1123.128_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1123-kvm_4.15.0-1123.128_amd64.deb" - ] - }, - { - "kernelversion": "133", - "kernelrelease": "4.15.0-1124-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1124_4.15.0-1124.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1124-aws_4.15.0-1124.133_amd64.deb" - ] - }, - { - "kernelversion": "137", - "kernelrelease": "4.15.0-1124-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1124-azure_4.15.0-1124.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1124_4.15.0-1124.137_all.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "4.15.0-1124-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1124-gcp_4.15.0-1124.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1124_4.15.0-1124.138_amd64.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "4.15.0-1125-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1125_4.15.0-1125.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1125-azure_4.15.0-1125.138_amd64.deb" - ] - }, - { - "kernelversion": "130", - "kernelrelease": "4.15.0-1125-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1125-kvm_4.15.0-1125.130_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1125_4.15.0-1125.130_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1125_4.15.0-1125.130_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1125-kvm_4.15.0-1125.130_amd64.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.15.0-1126-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1126-aws_4.15.0-1126.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1126_4.15.0-1126.135_all.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-1126-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1126-azure_4.15.0-1126.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1126_4.15.0-1126.139_all.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "4.15.0-1127-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1127-aws_4.15.0-1127.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1127_4.15.0-1127.136_all.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "4.15.0-1127-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1127_4.15.0-1127.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1127-azure_4.15.0-1127.140_amd64.deb" - ] - }, - { - "kernelversion": "142", - "kernelrelease": "4.15.0-1127-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1127_4.15.0-1127.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1127-gcp_4.15.0-1127.142_amd64.deb" - ] - }, - { - "kernelversion": "137", - "kernelrelease": "4.15.0-1128-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1128_4.15.0-1128.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1128-aws_4.15.0-1128.137_amd64.deb" - ] - }, - { - "kernelversion": "142", - "kernelrelease": "4.15.0-1129-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1129-azure_4.15.0-1129.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1129_4.15.0-1129.142_all.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-1130-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1130_4.15.0-1130.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1130-aws_4.15.0-1130.139_amd64.deb" - ] - }, - { - "kernelversion": "146", - "kernelrelease": "4.15.0-1130-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1130-gcp_4.15.0-1130.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1130_4.15.0-1130.146_amd64.deb" - ] - }, - { - "kernelversion": "144", - "kernelrelease": "4.15.0-1131-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1131-azure_4.15.0-1131.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1131_4.15.0-1131.144_all.deb" - ] - }, - { - "kernelversion": "147", - "kernelrelease": "4.15.0-1131-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1131-gcp_4.15.0-1131.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1131_4.15.0-1131.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1131-gcp_4.15.0-1131.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1131_4.15.0-1131.147_amd64.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "4.15.0-1133-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1133-aws_4.15.0-1133.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1133_4.15.0-1133.143_all.deb" - ] - }, - { - "kernelversion": "146", - "kernelrelease": "4.15.0-1133-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1133_4.15.0-1133.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1133-azure_4.15.0-1133.146_amd64.deb" - ] - }, - { - "kernelversion": "147", - "kernelrelease": "4.15.0-1134-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1134_4.15.0-1134.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1134-azure_4.15.0-1134.147_amd64.deb" - ] - }, - { - "kernelversion": "150", - "kernelrelease": "4.15.0-1134-gcp-4.15", - "target": "ubuntu-gcp-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1134_4.15.0-1134.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1134-gcp_4.15.0-1134.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-gcp-4.15-headers-4.15.0-1134_4.15.0-1134.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-4.15/linux-headers-4.15.0-1134-gcp_4.15.0-1134.150_amd64.deb" - ] - }, - { - "kernelversion": "147", - "kernelrelease": "4.15.0-1136-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1136-aws_4.15.0-1136.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1136_4.15.0-1136.147_all.deb" - ] - }, - { - "kernelversion": "149", - "kernelrelease": "4.15.0-1136-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1136_4.15.0-1136.149_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1136-azure_4.15.0-1136.149_amd64.deb" - ] - }, - { - "kernelversion": "148", - "kernelrelease": "4.15.0-1137-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1137_4.15.0-1137.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1137-aws_4.15.0-1137.148_amd64.deb" - ] - }, - { - "kernelversion": "150", - "kernelrelease": "4.15.0-1137-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1137_4.15.0-1137.150_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1137-azure_4.15.0-1137.150_amd64.deb" - ] - }, - { - "kernelversion": "151", - "kernelrelease": "4.15.0-1138-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1138_4.15.0-1138.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1138-azure_4.15.0-1138.151_amd64.deb" - ] - }, - { - "kernelversion": "150", - "kernelrelease": "4.15.0-1139-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1139-aws_4.15.0-1139.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1139-aws_4.15.0-1139.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1139_4.15.0-1139.150_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1139_4.15.0-1139.150_all.deb" - ] - }, - { - "kernelversion": "152", - "kernelrelease": "4.15.0-1139-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1139-azure_4.15.0-1139.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1139_4.15.0-1139.152_all.deb" - ] - }, - { - "kernelversion": "156", - "kernelrelease": "4.15.0-1142-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1142-azure_4.15.0-1142.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1142_4.15.0-1142.156_all.deb" - ] - }, - { - "kernelversion": "160", - "kernelrelease": "4.15.0-1145-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1145_4.15.0-1145.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1145-azure_4.15.0-1145.160_amd64.deb" - ] - }, - { - "kernelversion": "161", - "kernelrelease": "4.15.0-1146-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1146_4.15.0-1146.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1146-azure_4.15.0-1146.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1146_4.15.0-1146.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1146-azure_4.15.0-1146.161_amd64.deb" - ] - }, - { - "kernelversion": "164", - "kernelrelease": "4.15.0-1149-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1149_4.15.0-1149.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1149_4.15.0-1149.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1149-azure_4.15.0-1149.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1149-azure_4.15.0-1149.164_amd64.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.15.0-115-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115_4.15.0-115.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-115-generic_4.15.0-115.116_amd64.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.15.0-117-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117-generic_4.15.0-117.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-117_4.15.0-117.118_all.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.15.0-118-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118_4.15.0-118.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-118-generic_4.15.0-118.119_amd64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.15.0-121-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-lowlatency_4.15.0-121.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121_4.15.0-121.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-121-generic_4.15.0-121.123_amd64.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "4.15.0-122-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-generic_4.15.0-122.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122_4.15.0-122.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124_amd64.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "4.15.0-123-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-generic_4.15.0-123.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123_4.15.0-123.126_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126_amd64.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.15.0-128-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128_4.15.0-128.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-128-generic_4.15.0-128.131_amd64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.15.0-129-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129-generic_4.15.0-129.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-129_4.15.0-129.132_all.deb" - ] - }, - { - "kernelversion": "134", - "kernelrelease": "4.15.0-130-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-lowlatency_4.15.0-130.134_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130_4.15.0-130.134_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-130-generic_4.15.0-130.134_amd64.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "4.15.0-132-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-generic_4.15.0-132.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132_4.15.0-132.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136_amd64.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.15.0-135-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-lowlatency_4.15.0-135.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135_4.15.0-135.139_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-135-generic_4.15.0-135.139_amd64.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "4.15.0-136-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-generic_4.15.0-136.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-136_4.15.0-136.140_all.deb" - ] - }, - { - "kernelversion": "141", - "kernelrelease": "4.15.0-137-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137_4.15.0-137.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-generic_4.15.0-137.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141_amd64.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "4.15.0-139-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139-generic_4.15.0-139.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-139_4.15.0-139.143_all.deb" - ] - }, - { - "kernelversion": "144", - "kernelrelease": "4.15.0-140-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140_4.15.0-140.144_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-generic_4.15.0-140.144_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144_amd64.deb" - ] - }, - { - "kernelversion": "145", - "kernelrelease": "4.15.0-141-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-generic_4.15.0-141.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141-lowlatency_4.15.0-141.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-141_4.15.0-141.145_all.deb" - ] - }, - { - "kernelversion": "146", - "kernelrelease": "4.15.0-142-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-generic_4.15.0-142.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-142_4.15.0-142.146_all.deb" - ] - }, - { - "kernelversion": "147", - "kernelrelease": "4.15.0-143-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143_4.15.0-143.147_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-generic_4.15.0-143.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-143-lowlatency_4.15.0-143.147_amd64.deb" - ] - }, - { - "kernelversion": "148", - "kernelrelease": "4.15.0-144-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-generic_4.15.0-144.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144_4.15.0-144.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-144-lowlatency_4.15.0-144.148_amd64.deb" - ] - }, - { - "kernelversion": "151", - "kernelrelease": "4.15.0-147-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147_4.15.0-147.151_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-lowlatency_4.15.0-147.151_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-147-generic_4.15.0-147.151_amd64.deb" - ] - }, - { - "kernelversion": "157", - "kernelrelease": "4.15.0-151-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-generic_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151_4.15.0-151.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-151-lowlatency_4.15.0-151.157_amd64.deb" - ] - }, - { - "kernelversion": "160", - "kernelrelease": "4.15.0-153-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-lowlatency_4.15.0-153.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153-generic_4.15.0-153.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-153_4.15.0-153.160_all.deb" - ] - }, - { - "kernelversion": "161", - "kernelrelease": "4.15.0-154-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-lowlatency_4.15.0-154.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154-generic_4.15.0-154.161_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-154_4.15.0-154.161_all.deb" - ] - }, - { - "kernelversion": "163", - "kernelrelease": "4.15.0-156-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156_4.15.0-156.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-generic_4.15.0-156.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-156-lowlatency_4.15.0-156.163_amd64.deb" - ] - }, - { - "kernelversion": "166", - "kernelrelease": "4.15.0-158-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158_4.15.0-158.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-lowlatency_4.15.0-158.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-158-generic_4.15.0-158.166_amd64.deb" - ] - }, - { - "kernelversion": "167", - "kernelrelease": "4.15.0-159-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159_4.15.0-159.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-lowlatency_4.15.0-159.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-159-generic_4.15.0-159.167_amd64.deb" - ] - }, - { - "kernelversion": "169", - "kernelrelease": "4.15.0-161-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-generic_4.15.0-161.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161-lowlatency_4.15.0-161.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-161_4.15.0-161.169_all.deb" - ] - }, - { - "kernelversion": "170", - "kernelrelease": "4.15.0-162-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-generic_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162-lowlatency_4.15.0-162.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-162_4.15.0-162.170_all.deb" - ] - }, - { - "kernelversion": "171", - "kernelrelease": "4.15.0-163-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-lowlatency_4.15.0-163.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163_4.15.0-163.171_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-163-generic_4.15.0-163.171_amd64.deb" - ] - }, - { - "kernelversion": "174", - "kernelrelease": "4.15.0-166-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-lowlatency_4.15.0-166.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166_4.15.0-166.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-166-generic_4.15.0-166.174_amd64.deb" - ] - }, - { - "kernelversion": "175", - "kernelrelease": "4.15.0-167-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-generic_4.15.0-167.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167_4.15.0-167.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-167-lowlatency_4.15.0-167.175_amd64.deb" - ] - }, - { - "kernelversion": "177", - "kernelrelease": "4.15.0-169-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-generic_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169_4.15.0-169.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-169-lowlatency_4.15.0-169.177_amd64.deb" - ] - }, - { - "kernelversion": "180", - "kernelrelease": "4.15.0-171-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-generic_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171_4.15.0-171.180_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-171-lowlatency_4.15.0-171.180_amd64.deb" - ] - }, - { - "kernelversion": "182", - "kernelrelease": "4.15.0-173-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-generic_4.15.0-173.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173_4.15.0-173.182_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-173-lowlatency_4.15.0-173.182_amd64.deb" - ] - }, - { - "kernelversion": "184", - "kernelrelease": "4.15.0-175-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-lowlatency_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175_4.15.0-175.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-175-generic_4.15.0-175.184_amd64.deb" - ] - }, - { - "kernelversion": "185", - "kernelrelease": "4.15.0-176-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176_4.15.0-176.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-lowlatency_4.15.0-176.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-176-generic_4.15.0-176.185_amd64.deb" - ] - }, - { - "kernelversion": "186", - "kernelrelease": "4.15.0-177-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177_4.15.0-177.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-generic_4.15.0-177.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-177-lowlatency_4.15.0-177.186_amd64.deb" - ] - }, - { - "kernelversion": "189", - "kernelrelease": "4.15.0-180-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180_4.15.0-180.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-lowlatency_4.15.0-180.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-180-generic_4.15.0-180.189_amd64.deb" - ] - }, - { - "kernelversion": "194", - "kernelrelease": "4.15.0-184-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-generic_4.15.0-184.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184-lowlatency_4.15.0-184.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-184_4.15.0-184.194_all.deb" - ] - }, - { - "kernelversion": "198", - "kernelrelease": "4.15.0-187-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-generic_4.15.0-187.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187_4.15.0-187.198_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-187-lowlatency_4.15.0-187.198_amd64.deb" - ] - }, - { - "kernelversion": "199", - "kernelrelease": "4.15.0-188-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188_4.15.0-188.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-generic_4.15.0-188.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-188-lowlatency_4.15.0-188.199_amd64.deb" - ] - }, - { - "kernelversion": "200", - "kernelrelease": "4.15.0-189-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-lowlatency_4.15.0-189.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189_4.15.0-189.200_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-lowlatency_4.15.0-189.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-189-generic_4.15.0-189.200_amd64.deb" - ] - }, - { - "kernelversion": "202", - "kernelrelease": "4.15.0-191-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191_4.15.0-191.202_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191-lowlatency_4.15.0-191.202_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191-generic_4.15.0-191.202_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191_4.15.0-191.202_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191-generic_4.15.0-191.202_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-191-lowlatency_4.15.0-191.202_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "4.15.0-22-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-generic_4.15.0-22.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22_4.15.0-22.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "4.15.0-23-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23_4.15.0-23.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-generic_4.15.0-23.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25_amd64.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "4.15.0-24-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24-generic_4.15.0-24.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-24_4.15.0-24.26_all.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "4.15.0-29-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-generic_4.15.0-29.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29_4.15.0-29.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-30-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30_4.15.0-30.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-generic_4.15.0-30.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.15.0-32-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32_4.15.0-32.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-generic_4.15.0-32.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "4.15.0-33-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33_4.15.0-33.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-generic_4.15.0-33.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "4.15.0-34-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34-generic_4.15.0-34.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-34_4.15.0-34.37_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.15.0-36-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-generic_4.15.0-36.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36_4.15.0-36.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39_amd64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.15.0-39-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39_4.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-39-generic_4.15.0-39.42_amd64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "4.15.0-42-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-generic_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-42_4.15.0-42.45_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.15.0-43-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43_4.15.0-43.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-generic_4.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46_amd64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "4.15.0-44-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-generic_4.15.0-44.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44_4.15.0-44.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-44-lowlatency_4.15.0-44.47_amd64.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "4.15.0-45-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45_4.15.0-45.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-generic_4.15.0-45.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.15.0-46-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-generic_4.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-46_4.15.0-46.49_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.15.0-47-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-generic_4.15.0-47.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-47_4.15.0-47.50_all.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "4.15.0-50-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50_4.15.0-50.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-generic_4.15.0-50.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54_amd64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "4.15.0-51-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-generic_4.15.0-51.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-51_4.15.0-51.55_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "4.15.0-52-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-generic_4.15.0-52.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52_4.15.0-52.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "4.15.0-54-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54_4.15.0-54.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-generic_4.15.0-54.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "4.15.0-55-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55_4.15.0-55.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-55-generic_4.15.0-55.60_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "4.15.0-58-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-generic_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-58_4.15.0-58.64_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "4.15.0-60-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-generic_4.15.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-60_4.15.0-60.67_all.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "4.15.0-62-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-generic_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-62_4.15.0-62.69_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "4.15.0-64-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64-generic_4.15.0-64.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-64_4.15.0-64.73_all.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "4.15.0-65-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65_4.15.0-65.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-generic_4.15.0-65.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "4.15.0-66-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-generic_4.15.0-66.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-66_4.15.0-66.75_all.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "4.15.0-69-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69_4.15.0-69.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-generic_4.15.0-69.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "4.15.0-70-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-generic_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-70_4.15.0-70.79_all.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "4.15.0-72-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72-generic_4.15.0-72.81_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-72_4.15.0-72.81_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.15.0-74-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-lowlatency_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74-generic_4.15.0-74.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-74_4.15.0-74.84_all.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "4.15.0-76-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76_4.15.0-76.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-76-generic_4.15.0-76.86_amd64.deb" - ] - }, - { - "kernelversion": "88", - "kernelrelease": "4.15.0-88-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88_4.15.0-88.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-88-generic_4.15.0-88.88_amd64.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.15.0-91-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91_4.15.0-91.92_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-91-generic_4.15.0-91.92_amd64.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "4.15.0-96-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96_4.15.0-96.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-96-generic_4.15.0-96.97_amd64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "4.15.0-99-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99_4.15.0-99.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-99-generic_4.15.0-99.100_amd64.deb" - ] - }, - { - "kernelversion": "5~18.04.1", - "kernelrelease": "4.18.0-1004-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1004_4.18.0-1004.5~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1004-gcp_4.18.0-1004.5~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "6~18.04.1", - "kernelrelease": "4.18.0-1005-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1005-gcp_4.18.0-1005.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1005_4.18.0-1005.6~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "6~18.04.1", - "kernelrelease": "4.18.0-1006-azure-edge", - "target": "ubuntu-azure-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1006-azure_4.18.0-1006.6~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1006_4.18.0-1006.6~18.04.1_all.deb" - ] - }, - { - "kernelversion": "7~18.04.1", - "kernelrelease": "4.18.0-1006-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1006-gcp_4.18.0-1006.7~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1006_4.18.0-1006.7~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "7~18.04.1", - "kernelrelease": "4.18.0-1007-azure-edge", - "target": "ubuntu-azure-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1007_4.18.0-1007.7~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1007-azure_4.18.0-1007.7~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "8~18.04.1", - "kernelrelease": "4.18.0-1007-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1007-gcp_4.18.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1007_4.18.0-1007.8~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "8~18.04.1", - "kernelrelease": "4.18.0-1008-azure-edge", - "target": "ubuntu-azure-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-4.18.0-1008-azure_4.18.0-1008.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-4.18.0-1008_4.18.0-1008.8~18.04.1_all.deb" - ] - }, - { - "kernelversion": "9~18.04.1", - "kernelrelease": "4.18.0-1008-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1008_4.18.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1008-gcp_4.18.0-1008.9~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "11~18.04.1", - "kernelrelease": "4.18.0-1011-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1011_4.18.0-1011.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1011-azure_4.18.0-1011.11~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "12~18.04.1", - "kernelrelease": "4.18.0-1011-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1011_4.18.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1011-gcp_4.18.0-1011.12~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "13~18.04.1", - "kernelrelease": "4.18.0-1012-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1012-gcp_4.18.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1012_4.18.0-1012.13~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "13~18.04.1", - "kernelrelease": "4.18.0-1013-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1013_4.18.0-1013.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1013-azure_4.18.0-1013.13~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "4.18.0-1013-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1013-gcp_4.18.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1013_4.18.0-1013.14~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "4.18.0-1014-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1014-azure_4.18.0-1014.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1014_4.18.0-1014.14~18.04.1_all.deb" - ] - }, - { - "kernelversion": "16~18.04.1", - "kernelrelease": "4.18.0-1015-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1015-gcp_4.18.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1015_4.18.0-1015.16~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "4.18.0-1018-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1018_4.18.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1018-azure_4.18.0-1018.18~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "4.18.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1019_4.18.0-1019.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1019-azure_4.18.0-1019.19~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~18.04.1", - "kernelrelease": "4.18.0-1020-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1020-azure_4.18.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1020_4.18.0-1020.20~18.04.1_all.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "4.18.0-1023-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1023_4.18.0-1023.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1023-azure_4.18.0-1023.24~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "4.18.0-1024-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1024_4.18.0-1024.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1024-azure_4.18.0-1024.25~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "27~18.04.1", - "kernelrelease": "4.18.0-1025-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.18.0-1025_4.18.0-1025.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.18.0-1025-azure_4.18.0-1025.27~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "4.18.0-13-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-lowlatency_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13-generic_4.18.0-13.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-13_4.18.0-13.14~18.04.1_all.deb" - ] - }, - { - "kernelversion": "15~18.04.1", - "kernelrelease": "4.18.0-14-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14_4.18.0-14.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-lowlatency_4.18.0-14.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-14-generic_4.18.0-14.15~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "16~18.04.1", - "kernelrelease": "4.18.0-15-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-generic_4.18.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15-lowlatency_4.18.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-15_4.18.0-15.16~18.04.1_all.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "4.18.0-16-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-generic_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16_4.18.0-16.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-16-lowlatency_4.18.0-16.17~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "4.18.0-17-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-generic_4.18.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17-lowlatency_4.18.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-17_4.18.0-17.18~18.04.1_all.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "4.18.0-20-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-generic_4.18.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20-lowlatency_4.18.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-20_4.18.0-20.21~18.04.1_all.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "4.18.0-21-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-generic_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21-lowlatency_4.18.0-21.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-21_4.18.0-21.22~18.04.1_all.deb" - ] - }, - { - "kernelversion": "23~18.04.1", - "kernelrelease": "4.18.0-22-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22_4.18.0-22.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-lowlatency_4.18.0-22.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-22-generic_4.18.0-22.23~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "4.18.0-24-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-generic_4.18.0-24.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24_4.18.0-24.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-24-lowlatency_4.18.0-24.25~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "4.18.0-25-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25_4.18.0-25.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-generic_4.18.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-25-lowlatency_4.18.0-25.26~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "12~18.04.1", - "kernelrelease": "5.0.0-1007-oracle-5.0", - "target": "ubuntu-oracle-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1007_5.0.0-1007.12~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1007-oracle_5.0.0-1007.12~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "13~18.04.1", - "kernelrelease": "5.0.0-1008-oracle-5.0", - "target": "ubuntu-oracle-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1008_5.0.0-1008.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1008-oracle_5.0.0-1008.13~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "5.0.0-1009-oracle-5.0", - "target": "ubuntu-oracle-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1009_5.0.0-1009.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1009-oracle_5.0.0-1009.14~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "15~18.04.1", - "kernelrelease": "5.0.0-1010-oracle-5.0", - "target": "ubuntu-oracle-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1010-oracle_5.0.0-1010.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1010_5.0.0-1010.15~18.04.1_all.deb" - ] - }, - { - "kernelversion": "11~18.04.1", - "kernelrelease": "5.0.0-1011-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1011_5.0.0-1011.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1011-gcp_5.0.0-1011.11~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.0.0-1011-oracle-5.0", - "target": "ubuntu-oracle-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1011_5.0.0-1011.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1011-oracle_5.0.0-1011.16_amd64.deb" - ] - }, - { - "kernelversion": "12~18.04.2", - "kernelrelease": "5.0.0-1012-azure-edge", - "target": "ubuntu-azure-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-headers-5.0.0-1012-azure_5.0.0-1012.12~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-edge/linux-azure-headers-5.0.0-1012_5.0.0-1012.12~18.04.2_all.deb" - ] - }, - { - "kernelversion": "13~18.04.1", - "kernelrelease": "5.0.0-1013-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-5.0.0-1013_5.0.0-1013.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-5.0.0-1013-gcp_5.0.0-1013.13~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.0.0-1013-oracle-5.0", - "target": "ubuntu-oracle-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1013_5.0.0-1013.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1013-oracle_5.0.0-1013.18_amd64.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "5.0.0-1014-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1014_5.0.0-1014.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1014-azure_5.0.0-1014.14~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.0.0-1014-oracle-5.0", - "target": "ubuntu-oracle-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-headers-5.0.0-1014-oracle_5.0.0-1014.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.0/linux-oracle-5.0-headers-5.0.0-1014_5.0.0-1014.19_all.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.0.0-1016-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1016_5.0.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1016-azure_5.0.0-1016.17~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "5.0.0-1018-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1018_5.0.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1018-azure_5.0.0-1018.19~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.0.0-1020-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1020_5.0.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1020-azure_5.0.0-1020.21~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~18.04.1", - "kernelrelease": "5.0.0-1020-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1020_5.0.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1020-gcp_5.0.0-1020.20~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-1021-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1021_5.0.0-1021.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1021-aws_5.0.0-1021.24~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.0.0-1021-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1021_5.0.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1021-gcp_5.0.0-1021.21~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.0.0-1022-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1022-aws_5.0.0-1022.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1022_5.0.0-1022.25~18.04.1_all.deb" - ] - }, - { - "kernelversion": "23~18.04.1", - "kernelrelease": "5.0.0-1022-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1022-azure_5.0.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1022_5.0.0-1022.23~18.04.1_all.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-1023-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1023-aws_5.0.0-1023.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1023_5.0.0-1023.26~18.04.1_all.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-1023-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1023-azure_5.0.0-1023.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1023_5.0.0-1023.24~18.04.1_all.deb" - ] - }, - { - "kernelversion": "27~18.04.1", - "kernelrelease": "5.0.0-1024-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1024_5.0.0-1024.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1024-aws_5.0.0-1024.27~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.0.0-1025-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1025_5.0.0-1025.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1025-aws_5.0.0-1025.28_amd64.deb" - ] - }, - { - "kernelversion": "27~18.04.1", - "kernelrelease": "5.0.0-1025-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1025-azure_5.0.0-1025.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1025_5.0.0-1025.27~18.04.1_all.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-1025-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1025-gcp_5.0.0-1025.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1025_5.0.0-1025.26~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "27~18.04.1", - "kernelrelease": "5.0.0-1026-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1026_5.0.0-1026.27~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1026-gcp_5.0.0-1026.27~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.0.0-1027-aws-5.0", - "target": "ubuntu-aws-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.0/linux-aws-headers-5.0.0-1027_5.0.0-1027.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.0/linux-headers-5.0.0-1027-aws_5.0.0-1027.30_amd64.deb" - ] - }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.0.0-1027-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1027_5.0.0-1027.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1027-azure_5.0.0-1027.29~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.0.0-1028-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1028-azure_5.0.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1028_5.0.0-1028.30~18.04.1_all.deb" - ] - }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.0.0-1028-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1028-gcp_5.0.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1028_5.0.0-1028.29~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.0.0-1029-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1029_5.0.0-1029.31~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1029-azure_5.0.0-1029.31~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.0.0-1029-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1029_5.0.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1029-gcp_5.0.0-1029.30~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.0.0-1031-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1031_5.0.0-1031.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1031-azure_5.0.0-1031.33_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.0.0-1031-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1031-gcp_5.0.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1031_5.0.0-1031.32_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.0.0-1032-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1032-azure_5.0.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1032_5.0.0-1032.34_all.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.0.0-1033-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1033-gcp_5.0.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1033_5.0.0-1033.34_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.0.0-1034-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.0.0-1034_5.0.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.0.0-1034-gcp_5.0.0-1034.35_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.0.0-1035-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1035-azure_5.0.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1035_5.0.0-1035.37_all.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.0.0-1036-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.0.0-1036-azure_5.0.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.0.0-1036_5.0.0-1036.38_all.deb" - ] - }, - { - "kernelversion": "16~18.04.1", - "kernelrelease": "5.0.0-15-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-generic_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15-lowlatency_5.0.0-15.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-15_5.0.0-15.16~18.04.1_all.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.0.0-16-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-generic_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16-lowlatency_5.0.0-16.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-16_5.0.0-16.17~18.04.1_all.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "5.0.0-17-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-lowlatency_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17_5.0.0-17.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-17-generic_5.0.0-17.18~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~18.04.1", - "kernelrelease": "5.0.0-19-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-generic_5.0.0-19.20~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19_5.0.0-19.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-19-lowlatency_5.0.0-19.20~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.0.0-20-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-generic_5.0.0-20.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20-lowlatency_5.0.0-20.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.0.0-20_5.0.0-20.21~18.04.1_all.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.0.0-23-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23_5.0.0-23.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-generic_5.0.0-23.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-23-lowlatency_5.0.0-23.24~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "5.0.0-25-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-generic_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25_5.0.0-25.26~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-25-lowlatency_5.0.0-25.26~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.0.0-27-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27_5.0.0-27.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-lowlatency_5.0.0-27.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-27-generic_5.0.0-27.28~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.0.0-29-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29_5.0.0-29.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-generic_5.0.0-29.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-29-lowlatency_5.0.0-29.31~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.0.0-31-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31_5.0.0-31.33~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-generic_5.0.0-31.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-31-lowlatency_5.0.0-31.33~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~18.04.2", - "kernelrelease": "5.0.0-32-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-lowlatency_5.0.0-32.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32_5.0.0-32.34~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-32-generic_5.0.0-32.34~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.0.0-35-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35_5.0.0-35.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-generic_5.0.0-35.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-35-lowlatency_5.0.0-35.38~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~18.04.1", - "kernelrelease": "5.0.0-36-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-generic_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36-lowlatency_5.0.0-36.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-36_5.0.0-36.39~18.04.1_all.deb" - ] - }, - { - "kernelversion": "40~18.04.1", - "kernelrelease": "5.0.0-37-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37_5.0.0-37.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-lowlatency_5.0.0-37.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.0.0-37-generic_5.0.0-37.40~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.0.0-52-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-52_5.0.0-52.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-52-generic_5.0.0-52.56~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.0.0-61-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-61-generic_5.0.0-61.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-61_5.0.0-61.65_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.0.0-62-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-62-generic_5.0.0-62.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-62_5.0.0-62.67_all.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "5.0.0-63-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-63_5.0.0-63.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-63-generic_5.0.0-63.69_amd64.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "5.0.0-65-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-65_5.0.0-65.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-65-generic_5.0.0-65.71_amd64.deb" - ] - }, - { - "kernelversion": "8~18.04.1", - "kernelrelease": "5.3.0-1007-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1007_5.3.0-1007.8~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1007-azure_5.3.0-1007.8~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1008-gcp_5.3.0-1008.9~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9~18.04.1", - "kernelrelease": "5.3.0-1008-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1008_5.3.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1008-azure_5.3.0-1008.9~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "10~18.04.1", - "kernelrelease": "5.3.0-1009-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1009-gcp_5.3.0-1009.10~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "10~18.04.1", - "kernelrelease": "5.3.0-1009-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1009_5.3.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1009-azure_5.3.0-1009.10~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "11~18.04.1", - "kernelrelease": "5.3.0-1010-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1010-gcp_5.3.0-1010.11~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "11~18.04.1", - "kernelrelease": "5.3.0-1010-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1010_5.3.0-1010.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1010-azure_5.3.0-1010.11~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "12~18.04.1", - "kernelrelease": "5.3.0-1011-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1011-oracle_5.3.0-1011.12~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1011_5.3.0-1011.12~18.04.1_all.deb" - ] - }, - { - "kernelversion": "13~18.04.1", - "kernelrelease": "5.3.0-1012-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1012-azure_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_all.deb" - ] - }, - { - "kernelversion": "13~18.04.1", - "kernelrelease": "5.3.0-1012-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1012-gcp_5.3.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1012_5.3.0-1012.13~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "5.3.0-1013-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1013-oracle_5.3.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "5.3.0-1013-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1013_5.3.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1013-azure_5.3.0-1013.14~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "15~18.04.1", - "kernelrelease": "5.3.0-1014-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1014-gcp_5.3.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "15~18.04.1", - "kernelrelease": "5.3.0-1014-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1014_5.3.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1014-oracle_5.3.0-1014.15~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1016-aws_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1016-azure_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_all.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.3.0-1016-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1016_5.3.0-1016.17~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1016-gcp_5.3.0-1016.17~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1016-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1016_5.3.0-1016.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1016-oracle_5.3.0-1016.18~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1017-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1017-aws_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_all.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "5.3.0-1017-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1017_5.3.0-1017.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1017-gcp_5.3.0-1017.18~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1018-gcp_5.3.0-1018.19~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "5.3.0-1018-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1018-azure_5.3.0-1018.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1018_5.3.0-1018.19~18.04.1_all.deb" - ] - }, - { - "kernelversion": "20~18.04.1", - "kernelrelease": "5.3.0-1018-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1018_5.3.0-1018.20~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1018-oracle_5.3.0-1018.20~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.3.0-1019-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1019-aws_5.3.0-1019.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1019_5.3.0-1019.21~18.04.1_all.deb" - ] - }, - { - "kernelversion": "20~18.04.1", - "kernelrelease": "5.3.0-1019-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1019_5.3.0-1019.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1019-azure_5.3.0-1019.20~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.3.0-1020-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1020_5.3.0-1020.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1020-azure_5.3.0-1020.21~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.3.0-1020-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1020-gcp_5.3.0-1020.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1020_5.3.0-1020.22~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~18.04.1", - "kernelrelease": "5.3.0-1022-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1022_5.3.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1022-azure_5.3.0-1022.23~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.3.0-1023-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1023_5.3.0-1023.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1023-aws_5.3.0-1023.25~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "5.3.0-1024-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1024-oracle_5.3.0-1024.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1024_5.3.0-1024.26~18.04.1_all.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.3.0-1026-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1026-gcp_5.3.0-1026.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1026_5.3.0-1026.28~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.3.0-1027-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1027_5.3.0-1027.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1027-oracle_5.3.0-1027.29~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1028-aws_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-1028-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1028_5.3.0-1028.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1028-oracle_5.3.0-1028.30~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.3.0-1028-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1028_5.3.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1028-azure_5.3.0-1028.29~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.3.0-1029-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1029-gcp_5.3.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1029_5.3.0-1029.31~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-oracle-5.3", - "target": "ubuntu-oracle-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.3/linux-headers-5.3.0-1030-oracle_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.3/linux-oracle-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1030-gcp_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1030-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1030_5.3.0-1030.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1030-aws_5.3.0-1030.32~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-1031-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1031-azure_5.3.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1031_5.3.0-1031.32~18.04.1_all.deb" - ] - }, - { - "kernelversion": "34~18.04.2", - "kernelrelease": "5.3.0-1032-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1032-aws_5.3.0-1032.34~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.2_all.deb" - ] - }, - { - "kernelversion": "33~18.04.1", - "kernelrelease": "5.3.0-1032-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1032-azure_5.3.0-1032.33~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1032_5.3.0-1032.33~18.04.1_all.deb" - ] - }, - { - "kernelversion": "34~18.04.1", - "kernelrelease": "5.3.0-1032-gcp-5.3", - "target": "ubuntu-gcp-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.3/linux-gcp-5.3-headers-5.3.0-1032_5.3.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.3/linux-headers-5.3.0-1032-gcp_5.3.0-1032.34~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.3.0-1033-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1033-aws_5.3.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1033_5.3.0-1033.35_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.3.0-1034-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1034_5.3.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1034-aws_5.3.0-1034.36_amd64.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.3.0-1034-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1034_5.3.0-1034.35~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1034-azure_5.3.0-1034.35~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.3.0-1035-aws-5.3", - "target": "ubuntu-aws-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-aws-5.3-headers-5.3.0-1035_5.3.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.3/linux-headers-5.3.0-1035-aws_5.3.0-1035.37_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.3.0-1035-azure-5.3", - "target": "ubuntu-azure-5.3", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-headers-5.3.0-1035-azure_5.3.0-1035.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.3/linux-azure-5.3-headers-5.3.0-1035_5.3.0-1035.36_all.deb" - ] - }, - { - "kernelversion": "20~18.04.2", - "kernelrelease": "5.3.0-19-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19_5.3.0-19.20~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-lowlatency_5.3.0-19.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-19-generic_5.3.0-19.20~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.3.0-22-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-lowlatency_5.3.0-22.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22_5.3.0-22.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-22-generic_5.3.0-22.24~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.2", - "kernelrelease": "5.3.0-23-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-lowlatency_5.3.0-23.25~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23-generic_5.3.0-23.25~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-23_5.3.0-23.25~18.04.2_all.deb" - ] - }, - { - "kernelversion": "26~18.04.2", - "kernelrelease": "5.3.0-24-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-generic_5.3.0-24.26~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24-lowlatency_5.3.0-24.26~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-5.3.0-24_5.3.0-24.26~18.04.2_all.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.3.0-26-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-lowlatency_5.3.0-26.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26-generic_5.3.0-26.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-26_5.3.0-26.28~18.04.1_all.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.3.0-28-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28_5.3.0-28.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-lowlatency_5.3.0-28.30~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-28-generic_5.3.0-28.30~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.3.0-40-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-generic_5.3.0-40.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40_5.3.0-40.32~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-40-lowlatency_5.3.0-40.32~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~18.04.1", - "kernelrelease": "5.3.0-42-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-generic_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42_5.3.0-42.34~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-42-lowlatency_5.3.0-42.34~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37~18.04.1", - "kernelrelease": "5.3.0-45-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-generic_5.3.0-45.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45_5.3.0-45.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-45-lowlatency_5.3.0-45.37~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.3.0-46-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-generic_5.3.0-46.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46-lowlatency_5.3.0-46.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-46_5.3.0-46.38~18.04.1_all.deb" - ] - }, - { - "kernelversion": "44~18.04.2", - "kernelrelease": "5.3.0-51-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-generic_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51_5.3.0-51.44~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-51-lowlatency_5.3.0-51.44~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "47~18.04.1", - "kernelrelease": "5.3.0-53-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53_5.3.0-53.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-lowlatency_5.3.0-53.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-53-generic_5.3.0-53.47~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.3.0-59-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59_5.3.0-59.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-lowlatency_5.3.0-59.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-59-generic_5.3.0-59.53~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "55~18.04.1", - "kernelrelease": "5.3.0-61-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-generic_5.3.0-61.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61_5.3.0-61.55~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-61-lowlatency_5.3.0-61.55~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.3.0-62-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-lowlatency_5.3.0-62.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62_5.3.0-62.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-62-generic_5.3.0-62.56~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "58~18.04.1", - "kernelrelease": "5.3.0-64-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64_5.3.0-64.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-generic_5.3.0-64.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-64-lowlatency_5.3.0-64.58~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.3.0-65-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-65_5.3.0-65.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-lowlatency_5.3.0-65.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-65-generic_5.3.0-65.59_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.3.0-66-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-66_5.3.0-66.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-lowlatency_5.3.0-66.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-66-generic_5.3.0-66.60_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.3.0-67-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-lowlatency_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-67-generic_5.3.0-67.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-67_5.3.0-67.61_all.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "5.3.0-68-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-generic_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-68-lowlatency_5.3.0-68.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-68_5.3.0-68.63_all.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.3.0-69-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-lowlatency_5.3.0-69.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-69_5.3.0-69.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-69-generic_5.3.0-69.65_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.3.0-70-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-lowlatency_5.3.0-70.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-70_5.3.0-70.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-70-generic_5.3.0-70.66_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.3.0-72-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-lowlatency_5.3.0-72.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-72_5.3.0-72.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-72-generic_5.3.0-72.68_amd64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "5.3.0-73-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-lowlatency_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-73-generic_5.3.0-73.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-73_5.3.0-73.69_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.3.0-74-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-74_5.3.0-74.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-lowlatency_5.3.0-74.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-74-generic_5.3.0-74.70_amd64.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "5.3.0-75-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-75_5.3.0-75.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-generic_5.3.0-75.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-75-lowlatency_5.3.0-75.71_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.3.0-76-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-lowlatency_5.3.0-76.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-hwe-headers-5.3.0-76_5.3.0-76.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-5.3.0-76-generic_5.3.0-76.72_amd64.deb" - ] - }, - { - "kernelversion": "113~18.04.1", - "kernelrelease": "5.4.0-100-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-100_5.4.0-100.113~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-generic_5.4.0-100.113~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "3", - "kernelrelease": "5.4.0-1003-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1003-gkeop_5.4.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1003_5.4.0-1003.3_all.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.4.0-1004-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1004-ibm_5.4.0-1004.5_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.4.0-1004-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1004-gkeop_5.4.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1004_5.4.0-1004.5_all.deb" - ] - }, - { - "kernelversion": "8~18.04.1", - "kernelrelease": "5.4.0-1007-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1007_5.4.0-1007.8~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1007-gkeop_5.4.0-1007.8~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9~18.04.1", - "kernelrelease": "5.4.0-1008-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1008_5.4.0-1008.9~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "10~18.04.1", - "kernelrelease": "5.4.0-1009-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1009_5.4.0-1009.10~18.04.1_all.deb" - ] - }, - { - "kernelversion": "11~18.04.1", - "kernelrelease": "5.4.0-1010-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1010_5.4.0-1010.11~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "12~18.04.2", - "kernelrelease": "5.4.0-1011-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1011_5.4.0-1011.12~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "13~18.04.1", - "kernelrelease": "5.4.0-1012-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1012_5.4.0-1012.13~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14~18.04.1", - "kernelrelease": "5.4.0-1013-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1013_5.4.0-1013.14~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "15~18.04.1", - "kernelrelease": "5.4.0-1014-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1014_5.4.0-1014.15~18.04.1_all.deb" - ] - }, - { - "kernelversion": "16~18.04.1", - "kernelrelease": "5.4.0-1015-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1015_5.4.0-1015.16~18.04.1_all.deb" - ] - }, - { - "kernelversion": "17~18.04.1", - "kernelrelease": "5.4.0-1016-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1016_5.4.0-1016.17~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "5.4.0-1018-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1018_5.4.0-1018.19~18.04.1_all.deb" - ] - }, - { - "kernelversion": "20~18.04.2", - "kernelrelease": "5.4.0-1020-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1020-aws_5.4.0-1020.20~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.2_all.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~18.04.1", - "kernelrelease": "5.4.0-1021-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1021_5.4.0-1021.21~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1021-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1021_5.4.0-1021.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1022-azure_5.4.0-1022.22~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1022-aws_5.4.0-1022.22~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~18.04.1", - "kernelrelease": "5.4.0-1022-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1022_5.4.0-1022.22~18.04.1_all.deb" - ] - }, - { - "kernelversion": "23~18.04.1", - "kernelrelease": "5.4.0-1022-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1022_5.4.0-1022.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~18.04.1", - "kernelrelease": "5.4.0-1023-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1023-azure_5.4.0-1023.23~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1023_5.4.0-1023.23~18.04.1_all.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1023-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1023_5.4.0-1023.24~18.04.1_all.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~18.04.1", - "kernelrelease": "5.4.0-1024-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1024_5.4.0-1024.24~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1024-aws_5.4.0-1024.24~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1024-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1024_5.4.0-1024.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1025-aws_5.4.0-1025.25~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1025-gke_5.4.0-1025.25~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~18.04.1", - "kernelrelease": "5.4.0-1025-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1025-azure_5.4.0-1025.25~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1025_5.4.0-1025.25~18.04.1_all.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "5.4.0-1025-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1025_5.4.0-1025.26~18.04.1_all.deb" - ] - }, - { - "kernelversion": "26~18.04.1", - "kernelrelease": "5.4.0-1026-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1026-azure_5.4.0-1026.26~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1026_5.4.0-1026.26~18.04.1_all.deb" - ] - }, - { - "kernelversion": "27~18.04.1", - "kernelrelease": "5.4.0-1026-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1026_5.4.0-1026.27~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~18.04.1", - "kernelrelease": "5.4.0-1027-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1027_5.4.0-1027.28~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1027-gke_5.4.0-1027.28~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" - ] - }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1028-aws_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_all.deb" - ] - }, - { - "kernelversion": "29~18.04.1", - "kernelrelease": "5.4.0-1028-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1028_5.4.0-1028.29~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~18.04.1", - "kernelrelease": "5.4.0-1029-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1029-aws_5.4.0-1029.30~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.1_all.deb" - ] - }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_all.deb" - ] - }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1029-gke_5.4.0-1029.31~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~18.04.1", - "kernelrelease": "5.4.0-1029-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1029_5.4.0-1029.31~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~18.04.2", - "kernelrelease": "5.4.0-1029-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1029_5.4.0-1029.30~18.04.2_all.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1031-azure_5.4.0-1031.32~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb" - ] - }, - { - "kernelversion": "32~18.04.1", - "kernelrelease": "5.4.0-1031-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1031_5.4.0-1031.32~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~18.04.1", - "kernelrelease": "5.4.0-1032-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1032-gke_5.4.0-1032.34~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~18.04.1", - "kernelrelease": "5.4.0-1032-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1032_5.4.0-1032.34~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1033-gke_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35~18.04.1", - "kernelrelease": "5.4.0-1033-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1033_5.4.0-1033.35~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~18.04.1", - "kernelrelease": "5.4.0-1033-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1033_5.4.0-1033.34~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1033-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1033-gke_5.4.0-1033.35_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1033-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1033_5.4.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1033-oracle_5.4.0-1033.35_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1033-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1033_5.4.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1033-gcp_5.4.0-1033.35_amd64.deb" - ] - }, - { - "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1034-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1034_5.4.0-1034.37~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~18.04.1", - "kernelrelease": "5.4.0-1034-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1034_5.4.0-1034.36~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1035-gke_5.4.0-1035.37~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1035-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1035_5.4.0-1035.37~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1035-aws_5.4.0-1035.37~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~18.04.1", - "kernelrelease": "5.4.0-1035-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1035-azure_5.4.0-1035.36~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1035_5.4.0-1035.36~18.04.1_all.deb" - ] - }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1035-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1035_5.4.0-1035.38~18.04.1_all.deb" - ] - }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1036-gke_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1036-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1036-azure_5.4.0-1036.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1036_5.4.0-1036.38~18.04.1_all.deb" - ] - }, - { - "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1036-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1036_5.4.0-1036.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37~18.04.1", - "kernelrelease": "5.4.0-1036-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1036_5.4.0-1036.37~18.04.1_all.deb" - ] - }, - { - "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1037-gke_5.4.0-1037.39~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1037-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1037-aws_5.4.0-1037.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1037_5.4.0-1037.39~18.04.1_all.deb" - ] - }, - { - "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1037-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1037-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1037_5.4.0-1037.40~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~18.04.1", - "kernelrelease": "5.4.0-1037-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1037_5.4.0-1037.38~18.04.1_all.deb" - ] - }, - { - "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1038-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1038_5.4.0-1038.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1038-aws_5.4.0-1038.40~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1038-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1038-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1038_5.4.0-1038.41~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~18.04.1", - "kernelrelease": "5.4.0-1038-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1038_5.4.0-1038.39~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1039-gke_5.4.0-1039.41~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1039-aws_5.4.0-1039.41~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-1039-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1039-azure_5.4.0-1039.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1039_5.4.0-1039.41~18.04.1_all.deb" - ] - }, - { - "kernelversion": "40~18.04.1", - "kernelrelease": "5.4.0-1039-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1039_5.4.0-1039.40~18.04.1_all.deb" - ] - }, - { - "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1039-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1039_5.4.0-1039.42~18.04.1_all.deb" - ] - }, - { - "kernelversion": "118~18.04.1", - "kernelrelease": "5.4.0-104-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-generic_5.4.0-104.118~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-104_5.4.0-104.118~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1040-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1040-gke_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~18.04.1", - "kernelrelease": "5.4.0-1040-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1040_5.4.0-1040.42~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1040-azure_5.4.0-1040.42~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1040-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1040_5.4.0-1040.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1041-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1041-azure_5.4.0-1041.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb" - ] - }, - { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-1041-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1041_5.4.0-1041.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1041-aws_5.4.0-1041.43~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1041-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1041_5.4.0-1041.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1042-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1042-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1042_5.4.0-1042.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-1042-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1042_5.4.0-1042.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1042-gke_5.4.0-1042.44~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1043-azure_5.4.0-1043.45~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1043-gke_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.4.0-1043-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1043-aws_5.4.0-1043.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1043_5.4.0-1043.45~18.04.1_all.deb" - ] - }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1043-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1043-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1043_5.4.0-1043.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1044-gke_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-1044-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1044-azure_5.4.0-1044.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1044_5.4.0-1044.46~18.04.1_all.deb" - ] - }, - { - "kernelversion": "47~18.04.2", - "kernelrelease": "5.4.0-1044-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "47~18.04.1", - "kernelrelease": "5.4.0-1044-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1044_5.4.0-1044.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1044-oracle_5.4.0-1044.47~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "47~18.04.1", - "kernelrelease": "5.4.0-1045-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1045_5.4.0-1045.47~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1045-aws_5.4.0-1045.47~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1046-azure_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" - ] - }, - { - "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1046-gke_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "48~18.04.1", - "kernelrelease": "5.4.0-1046-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1046_5.4.0-1046.48~18.04.1_all.deb" - ] - }, - { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1046-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1046_5.4.0-1046.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "50~18.04.2", - "kernelrelease": "5.4.0-1046-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1046_5.4.0-1046.50~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1047-aws_5.4.0-1047.49~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~18.04.1", - "kernelrelease": "5.4.0-1047-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1047-azure_5.4.0-1047.49~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1047_5.4.0-1047.49~18.04.1_all.deb" - ] - }, - { - "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1048-azure_5.4.0-1048.50~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb" - ] - }, - { - "kernelversion": "50~18.04.1", - "kernelrelease": "5.4.0-1048-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1048_5.4.0-1048.50~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1048-aws_5.4.0-1048.50~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1048-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1048_5.4.0-1048.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-1048-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1048_5.4.0-1048.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1049-azure_5.4.0-1049.51~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-1049-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1049_5.4.0-1049.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1049-aws_5.4.0-1049.51~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1049-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1049_5.4.0-1049.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-1049-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1049-gke_5.4.0-1049.52~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-1049-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1049-gkeop_5.4.0-1049.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1049-gkeop_5.4.0-1049.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1049_5.4.0-1049.52~18.04.1_all.deb" - ] - }, - { - "kernelversion": "119~18.04.1", - "kernelrelease": "5.4.0-105-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-105_5.4.0-105.119~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-105-generic_5.4.0-105.119~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1051-azure_5.4.0-1051.53~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" - ] - }, - { - "kernelversion": "53~18.04.1", - "kernelrelease": "5.4.0-1051-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1051-aws_5.4.0-1051.53~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1051_5.4.0-1051.53~18.04.1_all.deb" - ] - }, - { - "kernelversion": "55~18.04.1", - "kernelrelease": "5.4.0-1051-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1051_5.4.0-1051.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "54~18.04.1", - "kernelrelease": "5.4.0-1051-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1051-gke_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "54~18.04.1", - "kernelrelease": "5.4.0-1051-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1051-gkeop_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1051-gkeop_5.4.0-1051.54~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1051_5.4.0-1051.54~18.04.1_all.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1052-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1052_5.4.0-1052.56~18.04.1_all.deb" - ] - }, - { - "kernelversion": "55~18.04.1", - "kernelrelease": "5.4.0-1052-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1052-gke_5.4.0-1052.55~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1052_5.4.0-1052.55~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1053-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1053_5.4.0-1053.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-1053-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1053_5.4.0-1053.56~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1053-gke_5.4.0-1053.56~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1054-gke_5.4.0-1054.57~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1054-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1054_5.4.0-1054.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1054-aws_5.4.0-1054.57~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1054-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1054_5.4.0-1054.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1055-aws_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_all.deb" - ] - }, - { - "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1055-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1055-gke_5.4.0-1055.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1055_5.4.0-1055.58~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-1055-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1055-azure_5.4.0-1055.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1055_5.4.0-1055.57~18.04.1_all.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1055-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1055_5.4.0-1055.59~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1056-aws_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_all.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-1056-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1056-gke_5.4.0-1056.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1056_5.4.0-1056.59~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "58~18.04.1", - "kernelrelease": "5.4.0-1056-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1056_5.4.0-1056.58~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1056-azure_5.4.0-1056.58~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1056-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1056_5.4.0-1056.60~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1057-gke_5.4.0-1057.60~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1057-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1057_5.4.0-1057.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1057-aws_5.4.0-1057.60~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "61~18.04.1", - "kernelrelease": "5.4.0-1057-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1057_5.4.0-1057.61~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "61~18.04.3", - "kernelrelease": "5.4.0-1058-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1058_5.4.0-1058.61~18.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1058-aws_5.4.0-1058.61~18.04.3_amd64.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-1058-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1058_5.4.0-1058.60~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1058-azure_5.4.0-1058.60~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_all.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1058-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1058_5.4.0-1058.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1059-gke_5.4.0-1059.62~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1059-azure_5.4.0-1059.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.4.0-1059-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1059_5.4.0-1059.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1059-aws_5.4.0-1059.62~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "63~18.04.1", - "kernelrelease": "5.4.0-1059-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1059_5.4.0-1059.63~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-1060-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1060_5.4.0-1060.64~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1061-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1061_5.4.0-1061.65~18.04.1_all.deb" - ] - }, - { - "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1062-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1062-gke_5.4.0-1062.65~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-1062-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1062_5.4.0-1062.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1062-azure_5.4.0-1062.65~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66~18.04.1", - "kernelrelease": "5.4.0-1062-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1062_5.4.0-1062.66~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1063-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1063_5.4.0-1063.67~18.04.1_all.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1064-aws_5.4.0-1064.67~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-1064-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1064-azure_5.4.0-1064.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1064_5.4.0-1064.67~18.04.1_all.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1064-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1064_5.4.0-1064.68~18.04.1_all.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1065-gke_5.4.0-1065.68~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1065-aws_5.4.0-1065.68~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "68~18.04.1", - "kernelrelease": "5.4.0-1065-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1065_5.4.0-1065.68~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1065-azure_5.4.0-1065.68~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1065-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1065_5.4.0-1065.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1066-aws_5.4.0-1066.69~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "69~18.04.1", - "kernelrelease": "5.4.0-1066-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1066_5.4.0-1066.69~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1066-gke_5.4.0-1066.69~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1066-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1066_5.4.0-1066.71~18.04.1_all.deb" - ] - }, - { - "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1067-azure_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_all.deb" - ] - }, - { - "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-1067-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1067-gke_5.4.0-1067.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1067_5.4.0-1067.70~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1067-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1067_5.4.0-1067.71~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1067-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1067_5.4.0-1067.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-1068-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1068-aws_5.4.0-1068.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1068_5.4.0-1068.72~18.04.1_all.deb" - ] - }, - { - "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1068-azure_5.4.0-1068.71~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "71~18.04.1", - "kernelrelease": "5.4.0-1068-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1068_5.4.0-1068.71~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1068-gke_5.4.0-1068.71~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1069-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1069-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1069-aws_5.4.0-1069.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1069_5.4.0-1069.73~18.04.1_all.deb" - ] - }, - { - "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-1069-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1069_5.4.0-1069.75~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "121~18.04.1", - "kernelrelease": "5.4.0-107-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-generic_5.4.0-107.121~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-107_5.4.0-107.121~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-1070-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1070_5.4.0-1070.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1070-azure_5.4.0-1070.73~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1070-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1070_5.4.0-1070.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1071-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1071_5.4.0-1071.76~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1071-aws_5.4.0-1071.76~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1071-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1071_5.4.0-1071.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1072-aws_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_all.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1072-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1072-gke_5.4.0-1072.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1072_5.4.0-1072.77~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-1072-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1072_5.4.0-1072.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1072-azure_5.4.0-1072.75~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "76~18.04.1", - "kernelrelease": "5.4.0-1073-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1073-azure_5.4.0-1073.76~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1073_5.4.0-1073.76~18.04.1_all.deb" - ] - }, - { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-1073-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1073_5.4.0-1073.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1073-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1073_5.4.0-1073.79~18.04.1_all.deb" - ] - }, - { - "kernelversion": "77~18.04.1", - "kernelrelease": "5.4.0-1074-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1074_5.4.0-1074.77~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1074-azure_5.4.0-1074.77~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-1074-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1074-gke_5.4.0-1074.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1074_5.4.0-1074.79~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1075-aws_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_all.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1075-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1075_5.4.0-1075.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "82~18.04.1", - "kernelrelease": "5.4.0-1076-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1076_5.4.0-1076.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1076-gke_5.4.0-1076.82~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "83~18.04.1", - "kernelrelease": "5.4.0-1076-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1076_5.4.0-1076.83~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-1077-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1077_5.4.0-1077.80~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1077-azure_5.4.0-1077.80~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "81~18.04.1", - "kernelrelease": "5.4.0-1078-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1078-azure_5.4.0-1078.81~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1078_5.4.0-1078.81~18.04.1_all.deb" - ] - }, - { - "kernelversion": "86~18.04.1", - "kernelrelease": "5.4.0-1078-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1078_5.4.0-1078.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1079-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1079_5.4.0-1079.87~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1079_5.4.0-1079.87~18.04.1_all.deb" - ] - }, - { - "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1080-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1080-aws_5.4.0-1080.87~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1080_5.4.0-1080.87~18.04.1_all.deb" - ] - }, - { - "kernelversion": "83~18.04.2", - "kernelrelease": "5.4.0-1080-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1080_5.4.0-1080.83~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1080-azure_5.4.0-1080.83~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "86~18.04.1", - "kernelrelease": "5.4.0-1080-gke-5.4", - "target": "ubuntu-gke-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1080-gke_5.4.0-1080.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1080_5.4.0-1080.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.4/linux-headers-5.4.0-1080-gke_5.4.0-1080.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.4/linux-gke-5.4-headers-5.4.0-1080_5.4.0-1080.86~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "88~18.04.1", - "kernelrelease": "5.4.0-1081-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1081_5.4.0-1081.88~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1081-aws_5.4.0-1081.88~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "89~18.04.1", - "kernelrelease": "5.4.0-1081-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1081_5.4.0-1081.89~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1081_5.4.0-1081.89~18.04.1_all.deb" - ] - }, - { - "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-1083-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1083-aws_5.4.0-1083.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1083_5.4.0-1083.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1083_5.4.0-1083.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1083-aws_5.4.0-1083.90~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "87~18.04.1", - "kernelrelease": "5.4.0-1083-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1083_5.4.0-1083.87~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1083-azure_5.4.0-1083.87~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "92~18.04.1", - "kernelrelease": "5.4.0-1084-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1084_5.4.0-1084.92~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1084_5.4.0-1084.92~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-1085-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1085_5.4.0-1085.90~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1085-azure_5.4.0-1085.90~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-1086-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1086-azure_5.4.0-1086.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1086_5.4.0-1086.91~18.04.1_all.deb" - ] - }, - { - "kernelversion": "94~18.04.1", - "kernelrelease": "5.4.0-1086-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1086_5.4.0-1086.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1086_5.4.0-1086.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "94~18.04.1", - "kernelrelease": "5.4.0-1089-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1089-azure_5.4.0-1089.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1089_5.4.0-1089.94~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1089-azure_5.4.0-1089.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1089_5.4.0-1089.94~18.04.1_all.deb" - ] - }, - { - "kernelversion": "123~18.04.1", - "kernelrelease": "5.4.0-109-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-109_5.4.0-109.123~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-generic_5.4.0-109.123~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "124~18.04.1", - "kernelrelease": "5.4.0-110-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-generic_5.4.0-110.124~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-110_5.4.0-110.124~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "127~18.04.1", - "kernelrelease": "5.4.0-113-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-113_5.4.0-113.127~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-113-generic_5.4.0-113.127~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "132~18.04.1", - "kernelrelease": "5.4.0-117-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-117_5.4.0-117.132~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-117-generic_5.4.0-117.132~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "136~18.04.1", - "kernelrelease": "5.4.0-120-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-120-generic_5.4.0-120.136~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-120_5.4.0-120.136~18.04.1_all.deb" - ] - }, - { - "kernelversion": "137~18.04.1", - "kernelrelease": "5.4.0-121-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-generic_5.4.0-121.137~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-121_5.4.0-121.137~18.04.1_all.deb" - ] - }, - { - "kernelversion": "138~18.04.1", - "kernelrelease": "5.4.0-122-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-generic_5.4.0-122.138~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-122_5.4.0-122.138~18.04.1_all.deb" - ] - }, - { - "kernelversion": "140~18.04.1", - "kernelrelease": "5.4.0-124-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-generic_5.4.0-124.140~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-lowlatency_5.4.0-124.140~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-124_5.4.0-124.140~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-generic_5.4.0-124.140~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-124_5.4.0-124.140~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-124-lowlatency_5.4.0-124.140~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~18.04.1", - "kernelrelease": "5.4.0-37-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-37_5.4.0-37.41~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-37-generic_5.4.0-37.41~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "43~18.04.1", - "kernelrelease": "5.4.0-39-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-39_5.4.0-39.43~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-39-generic_5.4.0-39.43~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~18.04.1", - "kernelrelease": "5.4.0-40-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-40-generic_5.4.0-40.44~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-40_5.4.0-40.44~18.04.1_all.deb" - ] - }, - { - "kernelversion": "46~18.04.1", - "kernelrelease": "5.4.0-42-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-generic_5.4.0-42.46~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-42_5.4.0-42.46~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~18.04.2", - "kernelrelease": "5.4.0-45-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-generic_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-45_5.4.0-45.49~18.04.2_all.deb" - ] - }, - { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.4.0-47-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-generic_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-47_5.4.0-47.51~18.04.1_all.deb" - ] - }, - { - "kernelversion": "52~18.04.1", - "kernelrelease": "5.4.0-48-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-generic_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-48_5.4.0-48.52~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~18.04.1", - "kernelrelease": "5.4.0-51-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-51_5.4.0-51.56~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-51-generic_5.4.0-51.56~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.4.0-52-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-52_5.4.0-52.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-generic_5.4.0-52.57~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "59~18.04.1", - "kernelrelease": "5.4.0-53-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-generic_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-53_5.4.0-53.59~18.04.1_all.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.4.0-58-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-58-generic_5.4.0-58.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-58_5.4.0-58.64~18.04.1_all.deb" - ] - }, - { - "kernelversion": "65~18.04.1", - "kernelrelease": "5.4.0-59-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-59_5.4.0-59.65~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-59-generic_5.4.0-59.65~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "67~18.04.1", - "kernelrelease": "5.4.0-60-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-generic_5.4.0-60.67~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-60_5.4.0-60.67~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "70~18.04.1", - "kernelrelease": "5.4.0-62-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-62_5.4.0-62.70~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-62-generic_5.4.0-62.70~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "73~18.04.1", - "kernelrelease": "5.4.0-65-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-65_5.4.0-65.73~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-65-generic_5.4.0-65.73~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "74~18.04.2", - "kernelrelease": "5.4.0-66-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-generic_5.4.0-66.74~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-66_5.4.0-66.74~18.04.2_all.deb" - ] - }, - { - "kernelversion": "75~18.04.1", - "kernelrelease": "5.4.0-67-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-generic_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-67_5.4.0-67.75~18.04.1_all.deb" - ] - }, - { - "kernelversion": "78~18.04.1", - "kernelrelease": "5.4.0-70-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-generic_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-70_5.4.0-70.78~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "79~18.04.1", - "kernelrelease": "5.4.0-71-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-generic_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-71_5.4.0-71.79~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "80~18.04.1", - "kernelrelease": "5.4.0-72-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-generic_5.4.0-72.80~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-72_5.4.0-72.80~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "82~18.04.1", - "kernelrelease": "5.4.0-73-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-generic_5.4.0-73.82~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-73_5.4.0-73.82~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "83~18.04.1", - "kernelrelease": "5.4.0-74-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-74_5.4.0-74.83~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-74-generic_5.4.0-74.83~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "86~18.04.1", - "kernelrelease": "5.4.0-77-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-77-generic_5.4.0-77.86~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-77_5.4.0-77.86~18.04.1_all.deb" - ] - }, - { - "kernelversion": "90~18.04.1", - "kernelrelease": "5.4.0-80-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-generic_5.4.0-80.90~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-80_5.4.0-80.90~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-81-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-81_5.4.0-81.91~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-generic_5.4.0-81.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "94~18.04.1", - "kernelrelease": "5.4.0-84-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-84_5.4.0-84.94~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-84-generic_5.4.0-84.94~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "97~18.04.1", - "kernelrelease": "5.4.0-86-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-86_5.4.0-86.97~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-86-generic_5.4.0-86.97~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "98~18.04.1", - "kernelrelease": "5.4.0-87-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-generic_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-87_5.4.0-87.98~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-87-lowlatency_5.4.0-87.98~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "100~18.04.1", - "kernelrelease": "5.4.0-89-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-89-generic_5.4.0-89.100~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-89_5.4.0-89.100~18.04.1_all.deb" - ] - }, - { - "kernelversion": "101~18.04.1", - "kernelrelease": "5.4.0-90-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-generic_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-90_5.4.0-90.101~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "102~18.04.1", - "kernelrelease": "5.4.0-91-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-91_5.4.0-91.102~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-91-generic_5.4.0-91.102~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "103~18.04.2", - "kernelrelease": "5.4.0-92-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-generic_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-92_5.4.0-92.103~18.04.2_all.deb" - ] - }, - { - "kernelversion": "106~18.04.1", - "kernelrelease": "5.4.0-94-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-generic_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-94_5.4.0-94.106~18.04.1_all.deb" - ] - }, - { - "kernelversion": "109~18.04.1", - "kernelrelease": "5.4.0-96-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-96-generic_5.4.0-96.109~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-96_5.4.0-96.109~18.04.1_all.deb" - ] - }, - { - "kernelversion": "110~18.04.1", - "kernelrelease": "5.4.0-97-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-97_5.4.0-97.110~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-97-generic_5.4.0-97.110~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "112~18.04.1", - "kernelrelease": "5.4.0-99-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-99_5.4.0-99.112~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-generic_5.4.0-99.112~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "4.15.0-1007-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "4.15.0-1011-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13_all.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "4.15.0-1024-oem", - "target": "ubuntu-oem", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1024_4.15.0-1024.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1024-oem_4.15.0-1024.29_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "4.15.0-1025-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1025-kvm_4.15.0-1025.25_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "4.15.0-1025-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1025_4.15.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1025-aws_4.15.0-1025.25_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "4.15.0-1030-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-1030-gke-4.15", - "target": "ubuntu-gke-4.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-gke-4.15-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-4.15/linux-headers-4.15.0-1030-gke_4.15.0-1030.32_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-1030-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.15.0-1032-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.15.0-1032-kvm_4.15.0-1032.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.15.0-1032_4.15.0-1032.32_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "4.15.0-1036-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1036_4.15.0-1036.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1036-oem_4.15.0-1036.41_amd64.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "4.15.0-1130-azure-4.15", - "target": "ubuntu-azure-4.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-4.15/linux-headers-4.15.0-1130-azure_4.15.0-1130.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-4.15/linux-azure-4.15-headers-4.15.0-1130_4.15.0-1130.143_all.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.15.0-124-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-lowlatency_4.15.0-124.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124_4.15.0-124.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-124-generic_4.15.0-124.127_amd64.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "4.15.0-134-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-lowlatency_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134_4.15.0-134.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-134-generic_4.15.0-134.138_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "4.15.0-38-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38_4.15.0-38.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-generic_4.15.0-38.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "4.15.0-48-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-generic_4.15.0-48.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-48_4.15.0-48.51_all.deb" - ] - }, - { - "kernelversion": "10~18.04.1", - "kernelrelease": "4.18.0-1009-gcp-edge", - "target": "ubuntu-gcp-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-edge/linux-gcp-headers-4.18.0-1009_4.18.0-1009.10~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-edge/linux-headers-4.18.0-1009-gcp_4.18.0-1009.10~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "4.18.0-18-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-generic_4.18.0-18.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18-lowlatency_4.18.0-18.19~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.18.0-18_4.18.0-18.19~18.04.1_all.deb" - ] - }, - { - "kernelversion": "45~18.04.1", - "kernelrelease": "5.0.0-41-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-41-generic_5.0.0-41.45~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-41_5.0.0-41.45~18.04.1_all.deb" - ] - }, - { - "kernelversion": "47~18.04.1", - "kernelrelease": "5.0.0-43-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-43_5.0.0-43.47~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-43-generic_5.0.0-43.47~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "48~18.04.1", - "kernelrelease": "5.0.0-44-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-44_5.0.0-44.48~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-44-generic_5.0.0-44.48~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "51~18.04.1", - "kernelrelease": "5.0.0-47-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-47_5.0.0-47.51~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-47-generic_5.0.0-47.51~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "52~18.04.1", - "kernelrelease": "5.0.0-48-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-48_5.0.0-48.52~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-48-generic_5.0.0-48.52~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~18.04.1", - "kernelrelease": "5.0.0-53-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-53_5.0.0-53.57~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-53-generic_5.0.0-53.57~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "62~18.04.1", - "kernelrelease": "5.0.0-58-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-58-generic_5.0.0-58.62~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-58_5.0.0-58.62~18.04.1_all.deb" - ] - }, - { - "kernelversion": "64~18.04.1", - "kernelrelease": "5.0.0-60-hwe-5.0", - "target": "ubuntu-hwe-5.0", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.0/linux-hwe-5.0-headers-5.0.0-60_5.0.0-60.64~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.0/linux-headers-5.0.0-60-generic_5.0.0-60.64~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "1", - "kernelrelease": "5.4.0-1001-gkeop-5.4", - "target": "ubuntu-gkeop-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-gkeop-5.4-headers-5.4.0-1001_5.4.0-1001.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop-5.4/linux-headers-5.4.0-1001-gkeop_5.4.0-1001.1_amd64.deb" - ] - }, - { - "kernelversion": "18~18.04.1", - "kernelrelease": "5.4.0-1018-aws-5.4", - "target": "ubuntu-aws-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.4/linux-aws-5.4-headers-5.4.0-1018_5.4.0-1018.18~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.4/linux-headers-5.4.0-1018-aws_5.4.0-1018.18~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.2", - "kernelrelease": "5.4.0-1019-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19~18.04.2_amd64.deb" - ] - }, - { - "kernelversion": "19~18.04.1", - "kernelrelease": "5.4.0-1019-oracle-5.4", - "target": "ubuntu-oracle-5.4", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-oracle-5.4-headers-5.4.0-1019_5.4.0-1019.19~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.4/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~18.04.1", - "kernelrelease": "5.4.0-1020-azure-5.4", - "target": "ubuntu-azure-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-azure-5.4-headers-5.4.0-1020_5.4.0-1020.20~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.4/linux-headers-5.4.0-1020-azure_5.4.0-1020.20~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "91~18.04.1", - "kernelrelease": "5.4.0-1083-gcp-5.4", - "target": "ubuntu-gcp-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1083_5.4.0-1083.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.4/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.4/linux-gcp-5.4-headers-5.4.0-1083_5.4.0-1083.91~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "60~18.04.1", - "kernelrelease": "5.4.0-54-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-54-generic_5.4.0-54.60~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-54_5.4.0-54.60~18.04.1_all.deb" - ] - }, - { - "kernelversion": "72~18.04.1", - "kernelrelease": "5.4.0-64-hwe-5.4", - "target": "ubuntu-hwe-5.4", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-generic_5.4.0-64.72~18.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-hwe-5.4-headers-5.4.0-64_5.4.0-64.72~18.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.4/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72~18.04.1_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "4.15.0-1004-oem", - "target": "ubuntu-oem", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-headers-4.15.0-1004-oem_4.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem/linux-oem-headers-4.15.0-1004_4.15.0-1004.5_all.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "4.15.0-1006-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1006-gcp_4.15.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1006_4.15.0-1006.6_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "4.15.0-1007-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.15.0-1007_4.15.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.15.0-1007-aws_4.15.0-1007.7_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "4.15.0-20-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20-generic_4.15.0-20.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.15.0-20_4.15.0-20.21_all.deb" - ] - }, - { - "kernelversion": "3", - "kernelrelease": "5.19.0-1003-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.19.0-1003-lowlatency_5.19.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.19.0-1003_5.19.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.19.0-1003_5.19.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.19.0-1003-lowlatency_5.19.0-1003.3_amd64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.19.0-1004-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.19.0-1004_5.19.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.19.0-1004-oracle_5.19.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.19.0-1004_5.19.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.19.0-1004-oracle_5.19.0-1004.4_amd64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.19.0-1004-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.19.0-1004_5.19.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.19.0-1004-ibm_5.19.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.19.0-1004_5.19.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.19.0-1004-ibm_5.19.0-1004.4_amd64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.19.0-1004-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.19.0-1004-gcp_5.19.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.19.0-1004_5.19.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.19.0-1004_5.19.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.19.0-1004-gcp_5.19.0-1004.4_amd64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.19.0-1004-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.19.0-1004_5.19.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.19.0-1004-kvm_5.19.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.19.0-1004-kvm_5.19.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.19.0-1004_5.19.0-1004.4_all.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.19.0-1004-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.19.0-1004_5.19.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.19.0-1004_5.19.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.19.0-1004-azure_5.19.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.19.0-1004-azure_5.19.0-1004.4_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.19.0-1005-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.19.0-1005-aws_5.19.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.19.0-1005-aws_5.19.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.19.0-1005_5.19.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.19.0-1005_5.19.0-1005.5_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.19.0-15-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.19.0-15_5.19.0-15.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.19.0-15_5.19.0-15.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.19.0-15-generic_5.19.0-15.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.19.0-15-generic_5.19.0-15.15_amd64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.15.0-1003-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1003-azure_5.15.0-1003.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1003_5.15.0-1003.4_all.deb" - ] - }, - { - "kernelversion": "3", - "kernelrelease": "5.15.0-1003-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1003_5.15.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1003-ibm_5.15.0-1003.3_amd64.deb" - ] - }, - { - "kernelversion": "3", - "kernelrelease": "5.15.0-1003-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1003-gke_5.15.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1003_5.15.0-1003.3_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1003-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1003_5.15.0-1003.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1003-oracle_5.15.0-1003.5_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1004-intel-iotg", - "target": "ubuntu-intel-iotg", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1004-intel-iotg_5.15.0-1004.6_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1004-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1004-aws_5.15.0-1004.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1004_5.15.0-1004.6_all.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1004-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1004-gcp_5.15.0-1004.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1004_5.15.0-1004.7_amd64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.15.0-1004-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1004-kvm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.15.0-1004-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1004-ibm_5.15.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1004_5.15.0-1004.4_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.15.0-24-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-24_5.15.0-24.24_all.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-27-lowlatency_5.15.0-27.28_amd64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.15.0-27-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27-generic_5.15.0-27.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-27_5.15.0-27.28_all.deb" - ] - }, - { - "kernelversion": "3", - "kernelrelease": "5.17.0-1003-oem-5.17", - "target": "ubuntu-oem-5.17", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1003_5.17.0-1003.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1003-oem_5.17.0-1003.3_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.10.0-1058-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1058_5.10.0-1058.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1058-oem_5.10.0-1058.62_amd64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1029-aws_5.11.0-1029.32~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1029-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1029-oracle_5.11.0-1029.32~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~20.04.2", - "kernelrelease": "5.11.0-1029-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1029_5.11.0-1029.32~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1029-azure_5.11.0-1029.32~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "34~20.04.3", - "kernelrelease": "5.11.0-1030-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1030-gcp_5.11.0-1030.34~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1030_5.11.0-1030.34~20.04.3_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.11.0-61-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-61_5.11.0-61.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-lowlatency_5.11.0-61.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-61-generic_5.11.0-61.61_amd64.deb" - ] - }, - { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1014-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1014_5.13.0-1014.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1014-aws_5.13.0-1014.15~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.13.0-1014-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1014-azure_5.13.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1014_5.13.0-1014.16~20.04.1_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.13.0-1015-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1015-gcp_5.13.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1015_5.13.0-1015.18~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.13.0-1016-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1016_5.13.0-1016.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1016-oem_5.13.0-1016.20_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.13.0-1018-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1018_5.13.0-1018.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1018-oem_5.13.0-1018.22_amd64.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-1018-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1018-oracle_5.13.0-1018.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1018_5.13.0-1018.22~20.04.1_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1019-aws_5.13.0-1019.21~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-1019-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1019-azure_5.13.0-1019.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1019_5.13.0-1019.21~20.04.1_all.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-1020-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1020_5.13.0-1020.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1020-azure_5.13.0-1020.22~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.13.0-1020-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1020_5.13.0-1020.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1020-oem_5.13.0-1020.24_amd64.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.13.0-1022-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1022-oem_5.13.0-1022.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1022_5.13.0-1022.26_all.deb" - ] - }, - { - "kernelversion": "25~20.04.1", - "kernelrelease": "5.13.0-1023-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1023_5.13.0-1023.25~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1023-aws_5.13.0-1023.25~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.13.0-1023-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1023_5.13.0-1023.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1023-azure_5.13.0-1023.27~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1023-gcp_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~20.04.1", - "kernelrelease": "5.13.0-1023-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1023-oracle_5.13.0-1023.28~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1023_5.13.0-1023.28~20.04.1_all.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1024-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1024-aws_5.13.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1024_5.13.0-1024.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1025-gcp_5.13.0-1025.30~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.13.0-1025-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1025-oracle_5.13.0-1025.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1025_5.13.0-1025.30~20.04.1_all.deb" - ] - }, - { - "kernelversion": "31~20.04.2", - "kernelrelease": "5.13.0-1026-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1026-oracle_5.13.0-1026.31~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1026_5.13.0-1026.31~20.04.2_all.deb" - ] - }, - { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1028-oracle_5.13.0-1028.33~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-1028-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1028-azure_5.13.0-1028.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1028_5.13.0-1028.33~20.04.1_all.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-19-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-lowlatency_5.13.0-19.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-19_5.13.0-19.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-19-generic_5.13.0-19.19~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.13.0-21-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-lowlatency_5.13.0-21.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-21-generic_5.13.0-21.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-21_5.13.0-21.21~20.04.1_all.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.13.0-22-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-lowlatency_5.13.0-22.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-22-generic_5.13.0-22.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-22_5.13.0-22.22~20.04.1_all.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.13.0-28-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-lowlatency_5.13.0-28.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-28_5.13.0-28.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-28-generic_5.13.0-28.31~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-29-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-generic_5.13.0-29.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-29-lowlatency_5.13.0-29.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-29_5.13.0-29.32~20.04.1_all.deb" - ] - }, - { - "kernelversion": "33~20.04.1", - "kernelrelease": "5.13.0-30-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-lowlatency_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-30_5.13.0-30.33~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-30-generic_5.13.0-30.33~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-32-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-lowlatency_5.13.0-32.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-32_5.13.0-32.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-32-generic_5.13.0-32.35~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~20.04.1", - "kernelrelease": "5.13.0-36-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-lowlatency_5.13.0-36.41~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-36_5.13.0-36.41~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-36-generic_5.13.0-36.41~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~20.04.1", - "kernelrelease": "5.13.0-37-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-37_5.13.0-37.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-generic_5.13.0-37.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-37-lowlatency_5.13.0-37.42~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.13.0-40-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-40_5.13.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-generic_5.13.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-40-lowlatency_5.13.0-40.45~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.13.0-41-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-41_5.13.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-generic_5.13.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-41-lowlatency_5.13.0-41.46~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "48~20.04.1", - "kernelrelease": "5.13.0-43-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-lowlatency_5.13.0-43.48~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-43_5.13.0-43.48~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-43-generic_5.13.0-43.48~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.13.0-44-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-lowlatency_5.13.0-44.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-44_5.13.0-44.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-44-generic_5.13.0-44.49~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.14.0-1051-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1051-oem_5.14.0-1051.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1051_5.14.0-1051.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1051_5.14.0-1051.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1051-oem_5.14.0-1051.58_amd64.deb" - ] - }, - { - "kernelversion": "4~20.04.2", - "kernelrelease": "5.15.0-1002-intel-iotg-5.15", - "target": "ubuntu-intel-iotg-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1002-intel-iotg_5.15.0-1002.4~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1002_5.15.0-1002.4~20.04.2_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.15.0-1015-gke-5.15", - "target": "ubuntu-gke-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1015-gke_5.15.0-1015.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1015_5.15.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1015-gke_5.15.0-1015.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1015_5.15.0-1015.18~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.15.0-1017-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1017_5.15.0-1017.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1017_5.15.0-1017.23~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.15.0-1017-oracle-5.15", - "target": "ubuntu-oracle-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1017_5.15.0-1017.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1017_5.15.0-1017.22~20.04.1_all.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.15.0-1019-aws-5.15", - "target": "ubuntu-aws-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1019_5.15.0-1019.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1019-aws_5.15.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1019_5.15.0-1019.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1019-aws_5.15.0-1019.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.15.0-1019-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1019_5.15.0-1019.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1019_5.15.0-1019.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1019-azure_5.15.0-1019.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1019-azure_5.15.0-1019.24~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~20.04.3", - "kernelrelease": "5.15.0-24-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-24-lowlatency_5.15.0-24.24~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-24_5.15.0-24.24~20.04.3_all.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.15.0-41-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-41-generic_5.15.0-41.44~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.15.0-41-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-41_5.15.0-41.44~20.04.1_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.4.0-1032-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1032_5.4.0-1032.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1032_5.4.0-1032.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1032-ibm_5.4.0-1032.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1032-ibm_5.4.0-1032.36_amd64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "5.4.0-1052-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1052_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1052-gke_5.4.0-1052.55_amd64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "5.4.0-1052-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1052-gkeop_5.4.0-1052.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1052_5.4.0-1052.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1052_5.4.0-1052.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1052-gkeop_5.4.0-1052.55_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1074-kvm_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1074_5.4.0-1074.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1074-kvm_5.4.0-1074.79_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1074-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1074-gke_5.4.0-1074.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1074_5.4.0-1074.79_amd64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1081-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1081-gke_5.4.0-1081.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1081_5.4.0-1081.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1081-gke_5.4.0-1081.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1081_5.4.0-1081.87_amd64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-1082-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1082-oracle_5.4.0-1082.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1082_5.4.0-1082.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1082_5.4.0-1082.90_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-1084-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1084_5.4.0-1084.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1084-aws_5.4.0-1084.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1084-aws_5.4.0-1084.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1084_5.4.0-1084.91_all.deb" - ] - }, - { - "kernelversion": "95", - "kernelrelease": "5.4.0-1087-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1087_5.4.0-1087.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1087_5.4.0-1087.95_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1087-gcp_5.4.0-1087.95_amd64.deb" - ] - }, - { - "kernelversion": "95", - "kernelrelease": "5.4.0-1090-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1090_5.4.0-1090.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1090_5.4.0-1090.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1090-azure_5.4.0-1090.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1090-azure_5.4.0-1090.95_amd64.deb" - ] - }, - { - "kernelversion": "95+cvm1", - "kernelrelease": "5.4.0-1090-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1090_5.4.0-1090.95+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1090-azure-cvm_5.4.0-1090.95+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1090-azure-cvm_5.4.0-1090.95+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1090_5.4.0-1090.95+cvm1_all.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-azure-5.8", - "target": "ubuntu-azure-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1033-azure_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_all.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.8.0-1033-gcp-5.8", - "target": "ubuntu-gcp-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1033-gcp_5.8.0-1033.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1033_5.8.0-1033.35~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-gcp-5.8", - "target": "ubuntu-gcp-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1036-gcp_5.8.0-1036.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1036-azure-5.8", - "target": "ubuntu-azure-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1036_5.8.0-1036.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1036-azure_5.8.0-1036.38~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.8.0-67-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-lowlatency_5.8.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-67_5.8.0-67.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-67-generic_5.8.0-67.75_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.10.0-1013-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1013_5.10.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1013-oem_5.10.0-1013.14_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.10.0-1014-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1014_5.10.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1014-oem_5.10.0-1014.15_amd64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.10.0-1016-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1016_5.10.0-1016.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1016-oem_5.10.0-1016.17_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.10.0-1017-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1017_5.10.0-1017.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1017-oem_5.10.0-1017.18_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.10.0-1019-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1019_5.10.0-1019.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1019-oem_5.10.0-1019.20_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.10.0-1021-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1021-oem_5.10.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1021_5.10.0-1021.22_all.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.10.0-1022-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1022_5.10.0-1022.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1022-oem_5.10.0-1022.23_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.10.0-1023-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1023-oem_5.10.0-1023.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1023_5.10.0-1023.24_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.10.0-1025-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1025_5.10.0-1025.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1025-oem_5.10.0-1025.26_amd64.deb" - ] - }, - { - "kernelversion": "27", - "kernelrelease": "5.10.0-1026-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1026_5.10.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1026-oem_5.10.0-1026.27_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.10.0-1029-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1029_5.10.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1029-oem_5.10.0-1029.30_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.10.0-1033-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1033-oem_5.10.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1033_5.10.0-1033.34_all.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.10.0-1038-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1038_5.10.0-1038.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1038-oem_5.10.0-1038.40_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.10.0-1044-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1044-oem_5.10.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1044_5.10.0-1044.46_all.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "5.10.0-1045-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1045-oem_5.10.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1045_5.10.0-1045.47_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.10.0-1049-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1049-oem_5.10.0-1049.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1049_5.10.0-1049.51_all.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.10.0-1050-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1050_5.10.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1050-oem_5.10.0-1050.52_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.10.0-1051-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1051-oem_5.10.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1051_5.10.0-1051.53_all.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "5.10.0-1053-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1053_5.10.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1053-oem_5.10.0-1053.55_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.10.0-1055-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1055_5.10.0-1055.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1055-oem_5.10.0-1055.58_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.10.0-1057-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1057_5.10.0-1057.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1057-oem_5.10.0-1057.61_amd64.deb" - ] - }, - { - "kernelversion": "13~20.04.1", - "kernelrelease": "5.11.0-1012-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1012_5.11.0-1012.13~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1012-azure_5.11.0-1012.13~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1013-azure_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb" - ] - }, - { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.11.0-1013-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1013_5.11.0-1013.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1013-oracle_5.11.0-1013.14~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.11.0-1014-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1014-aws_5.11.0-1014.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1014_5.11.0-1014.15~20.04.1_all.deb" - ] - }, - { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.11.0-1014-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1014_5.11.0-1014.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1014-gcp_5.11.0-1014.16~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.11.0-1015-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1015_5.11.0-1015.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1015-azure_5.11.0-1015.16~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1016-aws_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.11.0-1016-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1016-oracle_5.11.0-1016.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1016_5.11.0-1016.17~20.04.1_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1017-oracle_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1017-aws_5.11.0-1017.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.11.0-1017-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1017-azure_5.11.0-1017.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1017_5.11.0-1017.18~20.04.1_all.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.11.0-1017-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1017_5.11.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1017-gcp_5.11.0-1017.19~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~20.04.2", - "kernelrelease": "5.11.0-1018-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1018_5.11.0-1018.20~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1018-gcp_5.11.0-1018.20~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1019-oracle_5.11.0-1019.20~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1019-azure_5.11.0-1019.20~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.11.0-1019-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1019-aws_5.11.0-1019.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1019_5.11.0-1019.20~20.04.1_all.deb" - ] - }, - { - "kernelversion": "21~20.04.2", - "kernelrelease": "5.11.0-1020-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1020-aws_5.11.0-1020.21~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.2_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1020-oracle_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.11.0-1020-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1020-azure_5.11.0-1020.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1020_5.11.0-1020.21~20.04.1_all.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1020-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1020-gcp_5.11.0-1020.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1020_5.11.0-1020.22~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~20.04.2", - "kernelrelease": "5.11.0-1021-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1021-aws_5.11.0-1021.22~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.2_all.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1021-oracle_5.11.0-1021.22~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb" - ] - }, - { - "kernelversion": "22~20.04.1", - "kernelrelease": "5.11.0-1021-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1021_5.11.0-1021.22~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1021-azure_5.11.0-1021.22~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1021-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1021-gcp_5.11.0-1021.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1021_5.11.0-1021.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1022-azure_5.11.0-1022.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1022-oracle_5.11.0-1022.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-1022-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1022_5.11.0-1022.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1022-aws_5.11.0-1022.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1022-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1022-gcp_5.11.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1022_5.11.0-1022.24~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1023-oracle_5.11.0-1023.24~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1023-aws_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.11.0-1023-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1023-azure_5.11.0-1023.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1023_5.11.0-1023.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "25~20.04.1", - "kernelrelease": "5.11.0-1023-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1023_5.11.0-1023.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1023-gcp_5.11.0-1023.25~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.11.0-1024-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1024_5.11.0-1024.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1024-gcp_5.11.0-1024.26~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1025-aws_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1025-azure_5.11.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-1025-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1025-oracle_5.11.0-1025.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1025_5.11.0-1025.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.11.0-1026-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1026_5.11.0-1026.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1026-gcp_5.11.0-1026.29~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1027-oracle_5.11.0-1027.30~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1027-aws_5.11.0-1027.30~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.11.0-1027-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1027-azure_5.11.0-1027.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1027_5.11.0-1027.30~20.04.1_all.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1028-aws_5.11.0-1028.31~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.11.0-1028-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1028-oracle_5.11.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.1_all.deb" - ] - }, - { - "kernelversion": "31~20.04.2", - "kernelrelease": "5.11.0-1028-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1028_5.11.0-1028.31~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1028-azure_5.11.0-1028.31~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.11.0-1028-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1028_5.11.0-1028.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1028-gcp_5.11.0-1028.32~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "33~20.04.3", - "kernelrelease": "5.11.0-1029-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1029-gcp_5.11.0-1029.33~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1029_5.11.0-1029.33~20.04.3_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.11.0-22-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-generic_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-22_5.11.0-22.23~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-22-lowlatency_5.11.0-22.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.11.0-25-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-lowlatency_5.11.0-25.27~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-25-generic_5.11.0-25.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-25_5.11.0-25.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.11.0-27-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-generic_5.11.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-27_5.11.0-27.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-27-lowlatency_5.11.0-27.29~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.11.0-34-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-34_5.11.0-34.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-generic_5.11.0-34.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-34-lowlatency_5.11.0-34.36~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.11.0-36-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-generic_5.11.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-36-lowlatency_5.11.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-36_5.11.0-36.40~20.04.1_all.deb" - ] - }, - { - "kernelversion": "41~20.04.2", - "kernelrelease": "5.11.0-37-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-generic_5.11.0-37.41~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-37-lowlatency_5.11.0-37.41~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-37_5.11.0-37.41~20.04.2_all.deb" - ] - }, - { - "kernelversion": "42~20.04.1", - "kernelrelease": "5.11.0-38-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-generic_5.11.0-38.42~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-38_5.11.0-38.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-38-lowlatency_5.11.0-38.42~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~20.04.2", - "kernelrelease": "5.11.0-40-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-40_5.11.0-40.44~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-generic_5.11.0-40.44~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-40-lowlatency_5.11.0-40.44~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.11.0-41-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-generic_5.11.0-41.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-41-lowlatency_5.11.0-41.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-41_5.11.0-41.45~20.04.1_all.deb" - ] - }, - { - "kernelversion": "47~20.04.2", - "kernelrelease": "5.11.0-43-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-lowlatency_5.11.0-43.47~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-43_5.11.0-43.47~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-43-generic_5.11.0-43.47~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "48~20.04.2", - "kernelrelease": "5.11.0-44-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-44_5.11.0-44.48~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-lowlatency_5.11.0-44.48~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-44-generic_5.11.0-44.48~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.11.0-46-hwe-5.11", - "target": "ubuntu-hwe-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-hwe-5.11-headers-5.11.0-46_5.11.0-46.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-lowlatency_5.11.0-46.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.11/linux-headers-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9~20.04.2", - "kernelrelease": "5.13.0-1008-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1008-aws_5.13.0-1008.9~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "9~20.04.3", - "kernelrelease": "5.13.0-1008-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1008_5.13.0-1008.9~20.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1008-gcp_5.13.0-1008.9~20.04.3_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.13.0-1008-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1008-intel_5.13.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1008_5.13.0-1008.8_all.deb" - ] - }, - { - "kernelversion": "10~20.04.2", - "kernelrelease": "5.13.0-1009-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1009-azure_5.13.0-1009.10~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1009_5.13.0-1009.10~20.04.2_all.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.13.0-1009-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1009_5.13.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1009-intel_5.13.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.13.0-1009-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1009-oem_5.13.0-1009.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1009_5.13.0-1009.10_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.13.0-1010-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1010_5.13.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1010-intel_5.13.0-1010.10_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.13.0-1010-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1010_5.13.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1010-oem_5.13.0-1010.11_amd64.deb" - ] - }, - { - "kernelversion": "12~20.04.1", - "kernelrelease": "5.13.0-1011-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1011-aws_5.13.0-1011.12~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1011_5.13.0-1011.12~20.04.1_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.13.0-1011-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1011-intel_5.13.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1011_5.13.0-1011.11_all.deb" - ] - }, - { - "kernelversion": "13~20.04.2", - "kernelrelease": "5.13.0-1011-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1011-oracle_5.13.0-1011.13~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1011_5.13.0-1011.13~20.04.2_all.deb" - ] - }, - { - "kernelversion": "13~20.04.1", - "kernelrelease": "5.13.0-1012-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1012-aws_5.13.0-1012.13~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1012_5.13.0-1012.13~20.04.1_all.deb" - ] - }, - { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.13.0-1012-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1012_5.13.0-1012.14~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1012-azure_5.13.0-1012.14~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1012-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1012-gcp_5.13.0-1012.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1012_5.13.0-1012.15~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.13.0-1012-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1012_5.13.0-1012.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1012-oem_5.13.0-1012.16_amd64.deb" - ] - }, - { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.13.0-1013-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1013_5.13.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1013-gcp_5.13.0-1013.16~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.13.0-1014-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1014_5.13.0-1014.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1014-intel_5.13.0-1014.15_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.13.0-1014-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1014-oem_5.13.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1014_5.13.0-1014.18_all.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1015-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1015-oracle_5.13.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1015_5.13.0-1015.19~20.04.1_all.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.13.0-1016-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1016-oracle_5.13.0-1016.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1016_5.13.0-1016.20~20.04.1_all.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1017-aws_5.13.0-1017.19~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.13.0-1017-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1017-azure_5.13.0-1017.19~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1017_5.13.0-1017.19~20.04.1_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.13.0-1017-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1017_5.13.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1017-intel_5.13.0-1017.19_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.13.0-1017-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1017-oem_5.13.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1017_5.13.0-1017.21_all.deb" - ] - }, - { - "kernelversion": "23~20.04.1", - "kernelrelease": "5.13.0-1019-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1019-gcp_5.13.0-1019.23~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1019_5.13.0-1019.23~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.13.0-1019-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1019_5.13.0-1019.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1019-oem_5.13.0-1019.23_amd64.deb" - ] - }, - { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-1021-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1021-aws_5.13.0-1021.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1021_5.13.0-1021.23~20.04.2_all.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1021-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1021-azure_5.13.0-1021.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1021_5.13.0-1021.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "25~20.04.1", - "kernelrelease": "5.13.0-1021-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1021_5.13.0-1021.25~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1021-gcp_5.13.0-1021.25~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1021-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1021-oracle_5.13.0-1021.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1021_5.13.0-1021.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.13.0-1022-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1022-aws_5.13.0-1022.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1022_5.13.0-1022.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-1022-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1022-azure_5.13.0-1022.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1022_5.13.0-1022.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1024-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1024_5.13.0-1024.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1024-gcp_5.13.0-1024.29~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "27~20.04.1", - "kernelrelease": "5.13.0-1025-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1025-aws_5.13.0-1025.27~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1025_5.13.0-1025.27~20.04.1_all.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-1025-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1025_5.13.0-1025.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1025-azure_5.13.0-1025.29~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.13.0-1026-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1026-oem_5.13.0-1026.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1026_5.13.0-1026.32_all.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1027-oracle_5.13.0-1027.32~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1027-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1027-gcp_5.13.0-1027.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1027_5.13.0-1027.32~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.13.0-1028-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1028-aws_5.13.0-1028.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1028_5.13.0-1028.31~20.04.1_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.13.0-1028-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1028_5.13.0-1028.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1028-oem_5.13.0-1028.35_amd64.deb" - ] - }, - { - "kernelversion": "32~20.04.1", - "kernelrelease": "5.13.0-1029-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1029-aws_5.13.0-1029.32~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1029_5.13.0-1029.32~20.04.1_all.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.13.0-1029-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1029-azure_5.13.0-1029.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1029_5.13.0-1029.34~20.04.1_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.13.0-1029-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1029_5.13.0-1029.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1029-oem_5.13.0-1029.36_amd64.deb" - ] - }, - { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.13.0-1030-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1030_5.13.0-1030.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1030-gcp_5.13.0-1030.36~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1030-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1030-oracle_5.13.0-1030.35~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1030_5.13.0-1030.35~20.04.1_all.deb" - ] - }, - { - "kernelversion": "35~20.04.1", - "kernelrelease": "5.13.0-1031-aws-5.13", - "target": "ubuntu-aws-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-aws-5.13-headers-5.13.0-1031_5.13.0-1031.35~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.13/linux-headers-5.13.0-1031-aws_5.13.0-1031.35~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.13.0-1031-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1031-azure_5.13.0-1031.37~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.13.0-1031-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1031_5.13.0-1031.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1031-gcp_5.13.0-1031.37~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-1033-gcp-5.13", - "target": "ubuntu-gcp-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.13/linux-gcp-5.13-headers-5.13.0-1033_5.13.0-1033.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.13/linux-headers-5.13.0-1033-gcp_5.13.0-1033.40~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~20.04.1", - "kernelrelease": "5.13.0-1033-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1033_5.13.0-1033.39~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1033-oracle_5.13.0-1033.39~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-1034-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1034-oracle_5.13.0-1034.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1034_5.13.0-1034.40~20.04.1_all.deb" - ] - }, - { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.13.0-1036-oracle-5.13", - "target": "ubuntu-oracle-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.13/linux-headers-5.13.0-1036-oracle_5.13.0-1036.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.13/linux-oracle-5.13-headers-5.13.0-1036_5.13.0-1036.43~20.04.1_all.deb" - ] - }, - { - "kernelversion": "23~20.04.2", - "kernelrelease": "5.13.0-23-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-23_5.13.0-23.23~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-generic_5.13.0-23.23~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-23-lowlatency_5.13.0-23.23~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.13.0-25-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-generic_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-25-lowlatency_5.13.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-25_5.13.0-25.26~20.04.1_all.deb" - ] - }, - { - "kernelversion": "29~20.04.1", - "kernelrelease": "5.13.0-27-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-27_5.13.0-27.29~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-generic_5.13.0-27.29~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-27-lowlatency_5.13.0-27.29~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.13.0-35-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-generic_5.13.0-35.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-35_5.13.0-35.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-35-lowlatency_5.13.0-35.40~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.13.0-39-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-39_5.13.0-39.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-generic_5.13.0-39.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-39-lowlatency_5.13.0-39.44~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "54~20.04.1", - "kernelrelease": "5.13.0-48-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-generic_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-48-lowlatency_5.13.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-48_5.13.0-48.54~20.04.1_all.deb" - ] - }, - { - "kernelversion": "58~20.04.1", - "kernelrelease": "5.13.0-51-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-generic_5.13.0-51.58~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-51_5.13.0-51.58~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-51-lowlatency_5.13.0-51.58~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "59~20.04.1", - "kernelrelease": "5.13.0-52-hwe-5.13", - "target": "ubuntu-hwe-5.13", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-lowlatency_5.13.0-52.59~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-hwe-5.13-headers-5.13.0-52_5.13.0-52.59~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.13/linux-headers-5.13.0-52-generic_5.13.0-52.59~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.14.0-1004-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1004_5.14.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1004-oem_5.14.0-1004.4_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.14.0-1005-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1005-oem_5.14.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1005_5.14.0-1005.5_all.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.14.0-1007-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1007_5.14.0-1007.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1007-oem_5.14.0-1007.7_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.14.0-1008-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1008-oem_5.14.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1008_5.14.0-1008.8_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.14.0-1013-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1013-oem_5.14.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1013_5.14.0-1013.13_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.14.0-1018-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1018-oem_5.14.0-1018.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1018_5.14.0-1018.19_all.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.14.0-1020-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1020_5.14.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1020-oem_5.14.0-1020.22_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.14.0-1022-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1022-oem_5.14.0-1022.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1022_5.14.0-1022.24_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.14.0-1024-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1024_5.14.0-1024.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1024-oem_5.14.0-1024.26_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.14.0-1027-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1027-oem_5.14.0-1027.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1027_5.14.0-1027.30_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.14.0-1029-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1029-oem_5.14.0-1029.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1029_5.14.0-1029.32_all.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.14.0-1031-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1031-oem_5.14.0-1031.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1031_5.14.0-1031.34_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.14.0-1033-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1033_5.14.0-1033.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.14.0-1036-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1036-oem_5.14.0-1036.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1036_5.14.0-1036.40_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.14.0-1038-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1038_5.14.0-1038.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1038-oem_5.14.0-1038.42_amd64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "5.14.0-1042-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1042_5.14.0-1042.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1042-oem_5.14.0-1042.47_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.14.0-1044-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1044-oem_5.14.0-1044.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1044_5.14.0-1044.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1044_5.14.0-1044.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1044-oem_5.14.0-1044.49_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.14.0-1045-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1045-oem_5.14.0-1045.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1045-oem_5.14.0-1045.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1045_5.14.0-1045.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1045_5.14.0-1045.51_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.14.0-1046-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1046_5.14.0-1046.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1046_5.14.0-1046.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1046-oem_5.14.0-1046.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1046-oem_5.14.0-1046.53_amd64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "5.14.0-1048-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1048-oem_5.14.0-1048.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1048_5.14.0-1048.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1048-oem_5.14.0-1048.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1048_5.14.0-1048.55_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.14.0-1049-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1049-oem_5.14.0-1049.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1049_5.14.0-1049.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1049_5.14.0-1049.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1049-oem_5.14.0-1049.56_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.14.0-1050-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1050_5.14.0-1050.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1050_5.14.0-1050.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1050-oem_5.14.0-1050.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1050-oem_5.14.0-1050.57_amd64.deb" - ] - }, - { - "kernelversion": "5~20.04.1", - "kernelrelease": "5.15.0-1003-intel-iotg-5.15", - "target": "ubuntu-intel-iotg-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1003-intel-iotg_5.15.0-1003.5~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1003_5.15.0-1003.5~20.04.1_all.deb" - ] - }, - { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1006-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1006_5.15.0-1006.9~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "8~20.04.1", - "kernelrelease": "5.15.0-1007-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1007-azure_5.15.0-1007.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1007_5.15.0-1007.8~20.04.1_all.deb" - ] - }, - { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1007-oracle-5.15", - "target": "ubuntu-oracle-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1007_5.15.0-1007.9~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9~20.04.1", - "kernelrelease": "5.15.0-1008-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1008_5.15.0-1008.9~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1008-azure_5.15.0-1008.9~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "11~20.04.1", - "kernelrelease": "5.15.0-1008-intel-iotg-5.15", - "target": "ubuntu-intel-iotg-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1008_5.15.0-1008.11~20.04.1_all.deb" - ] - }, - { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.15.0-1010-intel-iotg-5.15", - "target": "ubuntu-intel-iotg-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg-5.15/linux-intel-iotg-5.15-headers-5.15.0-1010_5.15.0-1010.14~20.04.1_all.deb" - ] - }, - { - "kernelversion": "14~20.04.1", - "kernelrelease": "5.15.0-1011-gke-5.15", - "target": "ubuntu-gke-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1011_5.15.0-1011.14~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1011-gke_5.15.0-1011.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1011_5.15.0-1011.14~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1011-gke_5.15.0-1011.14~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.15.0-1013-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1013_5.15.0-1013.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1013_5.15.0-1013.18~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1013-oracle-5.15", - "target": "ubuntu-oracle-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1013_5.15.0-1013.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1013_5.15.0-1013.17~20.04.1_all.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1014-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1014-azure_5.15.0-1014.17~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1014-gke-5.15", - "target": "ubuntu-gke-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1014-gke_5.15.0-1014.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-gke-5.15-headers-5.15.0-1014_5.15.0-1014.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke-5.15/linux-headers-5.15.0-1014-gke_5.15.0-1014.17~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~20.04.1", - "kernelrelease": "5.15.0-1015-aws-5.15", - "target": "ubuntu-aws-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1015-aws_5.15.0-1015.19~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1015_5.15.0-1015.19~20.04.1_all.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.15.0-1016-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1016_5.15.0-1016.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1016_5.15.0-1016.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.15.0-1016-oracle-5.15", - "target": "ubuntu-oracle-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1016_5.15.0-1016.20~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.15/linux-oracle-5.15-headers-5.15.0-1016_5.15.0-1016.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.15/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~20.04.1", - "kernelrelease": "5.15.0-1017-aws-5.15", - "target": "ubuntu-aws-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1017-aws_5.15.0-1017.21~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1017_5.15.0-1017.21~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1017-aws_5.15.0-1017.21~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1017_5.15.0-1017.21~20.04.1_all.deb" - ] - }, - { - "kernelversion": "20~20.04.1", - "kernelrelease": "5.15.0-1017-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1017_5.15.0-1017.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1017_5.15.0-1017.20~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1017-azure_5.15.0-1017.20~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1017-azure_5.15.0-1017.20~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-33-generic_5.15.0-33.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.15.0-33-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-33_5.15.0-33.34~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.15.0-42-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-42-lowlatency_5.15.0-42.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-42_5.15.0-42.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-42-lowlatency_5.15.0-42.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-42_5.15.0-42.45~20.04.1_all.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.15.0-43-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.15.0-43-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-43_5.15.0-43.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-43-generic_5.15.0-43.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-43-generic_5.15.0-43.46~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.15.0-46-hwe-5.15", - "target": "ubuntu-hwe-5.15", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-46-generic_5.15.0-46.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.15/linux-headers-5.15.0-46-generic_5.15.0-46.49~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.15.0-46-lowlatency-hwe-5.15", - "target": "ubuntu-lowlatency-hwe-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency-hwe-5.15/linux-lowlatency-hwe-5.15-headers-5.15.0-46_5.15.0-46.49~20.04.1_all.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "5.4.0-100-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100_5.4.0-100.113_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-lowlatency_5.4.0-100.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-100-generic_5.4.0-100.113_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.4.0-1005-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1005_5.4.0-1005.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1005-ibm_5.4.0-1005.6_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.4.0-1006-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1006_5.4.0-1006.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1006-ibm_5.4.0-1006.7_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.4.0-1007-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1007_5.4.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1007-ibm_5.4.0-1007.8_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1008-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1008-ibm_5.4.0-1008.9_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1008-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1008_5.4.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1008-gkeop_5.4.0-1008.9_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.4.0-1009-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1009-gkeop_5.4.0-1009.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1009_5.4.0-1009.10_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1010-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1010-ibm_5.4.0-1010.11_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1010-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1010_5.4.0-1010.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1010-gkeop_5.4.0-1010.11_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1011-kvm_5.4.0-1011.11_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1011-oracle_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1011_5.4.0-1011.11_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1011_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1011-gcp_5.4.0-1011.11_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.4.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1011-aws_5.4.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1011_5.4.0-1011.11_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.4.0-1011-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1011-gkeop_5.4.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1011_5.4.0-1011.12_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.4.0-1012-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1012-azure_5.4.0-1012.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1012_5.4.0-1012.12_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.4.0-1012-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1012-gkeop_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1012_5.4.0-1012.13_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.4.0-1012-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1012-ibm_5.4.0-1012.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1012_5.4.0-1012.13_all.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.4.0-1013-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1013-gkeop_5.4.0-1013.14_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.4.0-1013-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1013-ibm_5.4.0-1013.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1013_5.4.0-1013.14_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1014-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1014-ibm_5.4.0-1014.15_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1014-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1014_5.4.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1014-gkeop_5.4.0-1014.15_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1015-gcp_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1015_5.4.0-1015.15_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1015-oracle_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1015_5.4.0-1015.15_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1015-kvm_5.4.0-1015.15_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.4.0-1015-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1015_5.4.0-1015.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1015-aws_5.4.0-1015.15_amd64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.4.0-1015-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1015-ibm_5.4.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1015_5.4.0-1015.16_all.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.4.0-1015-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1015-gkeop_5.4.0-1015.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1015_5.4.0-1015.16_all.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.4.0-1016-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1016-azure_5.4.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1016_5.4.0-1016.16_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.4.0-1016-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1016-gkeop_5.4.0-1016.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1016_5.4.0-1016.17_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.4.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1017-aws_5.4.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1017_5.4.0-1017.17_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.4.0-1017-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1017_5.4.0-1017.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1017-ibm_5.4.0-1017.19_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1018-oracle_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1018_5.4.0-1018.18_all.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1018-gcp_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1018_5.4.0-1018.18_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1018-kvm_5.4.0-1018.18_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.4.0-1018-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1018_5.4.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1018-aws_5.4.0-1018.18_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.4.0-1018-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1018_5.4.0-1018.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1018-gkeop_5.4.0-1018.19_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1018-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1018-ibm_5.4.0-1018.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1018_5.4.0-1018.20_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.4.0-1019-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1019-oracle_5.4.0-1019.19_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.4.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1019-azure_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1019_5.4.0-1019.19_all.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.4.0-1019-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1019_5.4.0-1019.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1019-gcp_5.4.0-1019.19_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.4.0-1019-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1019_5.4.0-1019.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1019-ibm_5.4.0-1019.21_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1020-aws_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1020_5.4.0-1020.20_all.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1020-azure_5.4.0-1020.20_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.4.0-1020-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1020-kvm_5.4.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1020_5.4.0-1020.20_all.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1020-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1020_5.4.0-1020.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1020-ibm_5.4.0-1020.22_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1021-oracle_5.4.0-1021.21_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1021-aws_5.4.0-1021.21_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1021-kvm_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1021_5.4.0-1021.21_all.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.4.0-1021-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1021_5.4.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1021-gcp_5.4.0-1021.21_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1021-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1021_5.4.0-1021.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1021-gkeop_5.4.0-1021.22_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.4.0-1021-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1021_5.4.0-1021.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1021-ibm_5.4.0-1021.23_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1022_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1022-gcp_5.4.0-1022.22_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1022-oracle_5.4.0-1022.22_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1022-aws_5.4.0-1022.22_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.4.0-1022-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1022_5.4.0-1022.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1022-azure_5.4.0-1022.22_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.4.0-1022-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1022_5.4.0-1022.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1022-gkeop_5.4.0-1022.23_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.4.0-1023-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1023-azure_5.4.0-1023.23_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.4.0-1023-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1023-kvm_5.4.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1023_5.4.0-1023.23_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1023-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1023_5.4.0-1023.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1023-gkeop_5.4.0-1023.24_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1023-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1023_5.4.0-1023.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1023-ibm_5.4.0-1023.25_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1024-kvm_5.4.0-1024.24_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1024-oracle_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1024_5.4.0-1024.24_all.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1024_5.4.0-1024.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1024-aws_5.4.0-1024.24_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.4.0-1024-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1024_5.4.0-1024.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1024-gcp_5.4.0-1024.24_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1024-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1024_5.4.0-1024.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1024-gkeop_5.4.0-1024.25_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1025-oracle_5.4.0-1025.25_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1025-azure_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1025_5.4.0-1025.25_all.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1025_5.4.0-1025.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1025-aws_5.4.0-1025.25_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.4.0-1025-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1025-gcp_5.4.0-1025.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1025_5.4.0-1025.25_amd64.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.4.0-1025-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1025_5.4.0-1025.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1025-gkeop_5.4.0-1025.26_amd64.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.4.0-1026-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1026_5.4.0-1026.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1026-azure_5.4.0-1026.26_amd64.deb" - ] - }, - { - "kernelversion": "27", - "kernelrelease": "5.4.0-1026-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1026-kvm_5.4.0-1026.27_amd64.deb" - ] - }, - { - "kernelversion": "27", - "kernelrelease": "5.4.0-1026-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1026_5.4.0-1026.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1026-gkeop_5.4.0-1026.27_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1026-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1026-ibm_5.4.0-1026.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1026_5.4.0-1026.29_all.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.4.0-1027-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1027-gkeop_5.4.0-1027.28_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1027_5.4.0-1027.28_all.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1028-aws_5.4.0-1028.29_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1028-gcp_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1028_5.4.0-1028.29_amd64.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "5.4.0-1028-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1028-oracle_5.4.0-1028.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1028_5.4.0-1028.29_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-1028-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1028_5.4.0-1028.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1028-ibm_5.4.0-1028.32_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.4.0-1029-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1029-gkeop_5.4.0-1029.30_amd64.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.4.0-1029-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1029_5.4.0-1029.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1029-aws_5.4.0-1029.30_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.4.0-1029-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1029-gcp_5.4.0-1029.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1029_5.4.0-1029.31_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.4.0-1029-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1029-oracle_5.4.0-1029.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1029_5.4.0-1029.31_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-1029-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1029_5.4.0-1029.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1029-ibm_5.4.0-1029.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1029_5.4.0-1029.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1029-ibm_5.4.0-1029.33_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.4.0-1030-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1030-kvm_5.4.0-1030.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1030_5.4.0-1030.31_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-1031-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1031-azure_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1031_5.4.0-1031.32_all.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-1031-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1031-kvm_5.4.0-1031.32_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-1031-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1031_5.4.0-1031.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1031-gkeop_5.4.0-1031.32_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1031-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1031-ibm_5.4.0-1031.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.4.0-1031-ibm_5.4.0-1031.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1031_5.4.0-1031.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.4.0-1031_5.4.0-1031.35_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1032-gkeop_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1032_5.4.0-1032.33_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1032-kvm_5.4.0-1032.33_amd64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-1032-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1032-aws_5.4.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1032_5.4.0-1032.33_all.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.4.0-1032-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1032_5.4.0-1032.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1032-oracle_5.4.0-1032.34_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.4.0-1032-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1032_5.4.0-1032.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1032-gcp_5.4.0-1032.34_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.4.0-1033-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1033-kvm_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1033_5.4.0-1033.34_all.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.4.0-1033-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1033_5.4.0-1033.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1033-gkeop_5.4.0-1033.34_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1034-azure_5.4.0-1034.35_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1034-gkeop_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1034_5.4.0-1034.35_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1034-aws_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1034_5.4.0-1034.35_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-1034-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1034_5.4.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1034-kvm_5.4.0-1034.35_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1034-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1034_5.4.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1034-gcp_5.4.0-1034.37_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.4.0-1034-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1034_5.4.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1034-oracle_5.4.0-1034.36_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1035-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1035-aws_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1035_5.4.0-1035.37_all.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1035-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1035_5.4.0-1035.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1035-gke_5.4.0-1035.37_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.4.0-1035-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1035_5.4.0-1035.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1035-azure_5.4.0-1035.36_amd64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1035-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1035-oracle_5.4.0-1035.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1035_5.4.0-1035.38_all.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1036-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1036-azure_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1036_5.4.0-1036.38_all.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1036-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1036-gke_5.4.0-1036.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1036_5.4.0-1036.38_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1036-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1036_5.4.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1036-gcp_5.4.0-1036.39_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1036-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1036-kvm_5.4.0-1036.37_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-1036-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1036-gkeop_5.4.0-1036.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1036_5.4.0-1036.37_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1037-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1037-aws_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1037_5.4.0-1037.39_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1037-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1037-gke_5.4.0-1037.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1037_5.4.0-1037.39_amd64.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.4.0-1037-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1037-oracle_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1037_5.4.0-1037.40_all.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.4.0-1037-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1037-gcp_5.4.0-1037.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1037_5.4.0-1037.40_amd64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1037-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1037-kvm_5.4.0-1037.38_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1037_5.4.0-1037.38_all.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "5.4.0-1037-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1037_5.4.0-1037.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1037-gkeop_5.4.0-1037.38_amd64.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.4.0-1038-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1038-aws_5.4.0-1038.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1038_5.4.0-1038.40_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1038-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1038_5.4.0-1038.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1038-oracle_5.4.0-1038.41_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1038-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1038-gcp_5.4.0-1038.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1038_5.4.0-1038.41_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1038-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1038-kvm_5.4.0-1038.39_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.4.0-1038-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1038-gkeop_5.4.0-1038.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1038_5.4.0-1038.39_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1039-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1039-aws_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1039_5.4.0-1039.41_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1039-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1039_5.4.0-1039.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1039-azure_5.4.0-1039.41_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1039-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1039_5.4.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1039-gke_5.4.0-1039.41_amd64.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.4.0-1039-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1039-gkeop_5.4.0-1039.40_amd64.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "5.4.0-1039-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1039-kvm_5.4.0-1039.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1039_5.4.0-1039.40_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.4.0-1039-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1039-oracle_5.4.0-1039.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1039_5.4.0-1039.42_all.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "5.4.0-104-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-lowlatency_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104-generic_5.4.0-104.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-104_5.4.0-104.118_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.4.0-1040-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1040-azure_5.4.0-1040.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1040_5.4.0-1040.42_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1040-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1040-gcp_5.4.0-1040.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1040_5.4.0-1040.43_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1040-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1040-kvm_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1040_5.4.0-1040.41_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-1040-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1040-gkeop_5.4.0-1040.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1040_5.4.0-1040.41_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1041-azure_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1041_5.4.0-1041.43_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1041-gke_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1041_5.4.0-1041.43_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-1041-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1041-aws_5.4.0-1041.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1041_5.4.0-1041.43_all.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-1041-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1041_5.4.0-1041.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1041-oracle_5.4.0-1041.44_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-1041-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1041-gcp_5.4.0-1041.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1041_5.4.0-1041.44_amd64.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.4.0-1041-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1041-kvm_5.4.0-1041.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1041_5.4.0-1041.42_all.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1042-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1042_5.4.0-1042.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1042-oracle_5.4.0-1042.45_amd64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1042-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1042_5.4.0-1042.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1042-gcp_5.4.0-1042.45_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-1042-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1042_5.4.0-1042.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1042-gke_5.4.0-1042.44_amd64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1043-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1043-gke_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1043_5.4.0-1043.45_amd64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1043-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1043-azure_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1043_5.4.0-1043.45_all.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "5.4.0-1043-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1043-aws_5.4.0-1043.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1043_5.4.0-1043.45_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1043-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1043_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1043-gcp_5.4.0-1043.46_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1043-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1043-oracle_5.4.0-1043.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1043_5.4.0-1043.46_all.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-1043-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1043_5.4.0-1043.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1043-gkeop_5.4.0-1043.44_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1044-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1044-azure_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1044_5.4.0-1044.46_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1044-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1044-kvm_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1044_5.4.0-1044.46_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-1044-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1044-gke_5.4.0-1044.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1044_5.4.0-1044.46_amd64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "5.4.0-1044-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1044-gcp_5.4.0-1044.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1044_5.4.0-1044.47_amd64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "5.4.0-1045-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1045-aws_5.4.0-1045.47_amd64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "5.4.0-1045-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1045_5.4.0-1045.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1045-kvm_5.4.0-1045.47_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1045-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1045_5.4.0-1045.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1045-oracle_5.4.0-1045.49_amd64.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1046_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1046-gke_5.4.0-1046.48_amd64.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1046-azure_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1046_5.4.0-1046.48_all.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1046-gkeop_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1046_5.4.0-1046.48_all.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "5.4.0-1046-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1046-kvm_5.4.0-1046.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1046_5.4.0-1046.48_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1046-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1046-gcp_5.4.0-1046.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1046_5.4.0-1046.49_amd64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1046-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1046_5.4.0-1046.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1046-oracle_5.4.0-1046.50_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1047-azure_5.4.0-1047.49_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1047-kvm_5.4.0-1047.49_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-1047-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1047_5.4.0-1047.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1047-aws_5.4.0-1047.49_amd64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1048-azure_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1048_5.4.0-1048.50_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1048-aws_5.4.0-1048.50_amd64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "5.4.0-1048-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1048_5.4.0-1048.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1048-kvm_5.4.0-1048.50_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1048-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1048_5.4.0-1048.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1048-gkeop_5.4.0-1048.51_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-1048-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1048-oracle_5.4.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1048_5.4.0-1048.52_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1049-aws_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1049_5.4.0-1049.51_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1049-kvm_5.4.0-1049.51_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-1049-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1049-azure_5.4.0-1049.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1049_5.4.0-1049.51_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1049-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1049_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1049-gcp_5.4.0-1049.53_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1049-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1049-oracle_5.4.0-1049.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1049_5.4.0-1049.53_all.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-1049-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1049-gke_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1049_5.4.0-1049.52_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-1049-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1049-gkeop_5.4.0-1049.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1049-gkeop_5.4.0-1049.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1049_5.4.0-1049.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1049_5.4.0-1049.52_all.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "5.4.0-105-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-generic_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105_5.4.0-105.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-105-lowlatency_5.4.0-105.119_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-1050-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1050_5.4.0-1050.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1050-kvm_5.4.0-1050.52_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1051-kvm_5.4.0-1051.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1051_5.4.0-1051.53_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1051-azure_5.4.0-1051.53_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.4.0-1051-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1051_5.4.0-1051.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1051-aws_5.4.0-1051.53_amd64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "5.4.0-1051-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1051-gcp_5.4.0-1051.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1051_5.4.0-1051.55_amd64.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "5.4.0-1051-gkeop", - "target": "ubuntu-gkeop", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1051-gkeop_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1051_5.4.0-1051.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-gkeop-headers-5.4.0-1051_5.4.0-1051.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gkeop/linux-headers-5.4.0-1051-gkeop_5.4.0-1051.54_amd64.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "5.4.0-1051-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1051_5.4.0-1051.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1051-gke_5.4.0-1051.54_amd64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-1052-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1052-oracle_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1052_5.4.0-1052.56_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-1052-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1052-gcp_5.4.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1052_5.4.0-1052.56_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1053-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1053-gcp_5.4.0-1053.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1053_5.4.0-1053.57_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1053-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1053_5.4.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1053-oracle_5.4.0-1053.57_amd64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-1053-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1053_5.4.0-1053.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1053-gke_5.4.0-1053.56_amd64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "5.4.0-1053-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1053-kvm_5.4.0-1053.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1053_5.4.0-1053.55_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1054-aws_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1054_5.4.0-1054.57_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1054-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1054-gke_5.4.0-1054.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1054_5.4.0-1054.57_amd64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-1054-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1054-kvm_5.4.0-1054.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1054_5.4.0-1054.56_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1054-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1054-oracle_5.4.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1054_5.4.0-1054.58_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1055-aws_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1055_5.4.0-1055.58_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1055-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1055-gke_5.4.0-1055.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1055_5.4.0-1055.58_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1055-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1055-azure_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1055_5.4.0-1055.57_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-1055-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1055-kvm_5.4.0-1055.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1055_5.4.0-1055.57_all.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1055-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1055-gcp_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1055_5.4.0-1055.59_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1055-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1055-oracle_5.4.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1055_5.4.0-1055.59_all.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1056-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1056_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1056-gke_5.4.0-1056.59_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-1056-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1056_5.4.0-1056.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1056-aws_5.4.0-1056.59_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1056-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1056-kvm_5.4.0-1056.58_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.4.0-1056-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1056-azure_5.4.0-1056.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1056_5.4.0-1056.58_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1056-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1056-oracle_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1056_5.4.0-1056.60_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1056-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1056_5.4.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1056-gcp_5.4.0-1056.60_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1057-gke_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1057_5.4.0-1057.60_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1057-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1057_5.4.0-1057.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1057-aws_5.4.0-1057.60_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.4.0-1057-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1057_5.4.0-1057.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1057-oracle_5.4.0-1057.61_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.4.0-1057-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1057-gcp_5.4.0-1057.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1057_5.4.0-1057.61_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.4.0-1058-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1058-kvm_5.4.0-1058.61_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "5.4.0-1058-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1058-aws_5.4.0-1058.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1058_5.4.0-1058.61_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-1058-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1058-azure_5.4.0-1058.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1058_5.4.0-1058.60_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1058_5.4.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1058-gcp_5.4.0-1058.62_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1058-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1058-oracle_5.4.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1058_5.4.0-1058.62_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1059-kvm_5.4.0-1059.62_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1059_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1059-gke_5.4.0-1059.62_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1059-aws_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1059_5.4.0-1059.62_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "5.4.0-1059-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1059_5.4.0-1059.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1059-azure_5.4.0-1059.62_amd64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "5.4.0-1059-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1059_5.4.0-1059.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1059-oracle_5.4.0-1059.63_amd64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "5.4.0-1059-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1059_5.4.0-1059.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1059-gcp_5.4.0-1059.63_amd64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "5.4.0-1060-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1060-aws_5.4.0-1060.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1060_5.4.0-1060.63_all.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1060-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1060-gcp_5.4.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1060_5.4.0-1060.64_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1061-aws_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1061_5.4.0-1061.64_all.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1061-azure_5.4.0-1061.64_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1061-kvm_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1061_5.4.0-1061.64_all.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-1061-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1061-gke_5.4.0-1061.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1061_5.4.0-1061.64_amd64.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-1061-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1061-oracle_5.4.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1061_5.4.0-1061.65_all.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1062-azure_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1062_5.4.0-1062.65_all.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1062_5.4.0-1062.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1062-kvm_5.4.0-1062.65_amd64.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-1062-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1062-gke_5.4.0-1062.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1062_5.4.0-1062.65_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1062-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1062-oracle_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1062_5.4.0-1062.66_all.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1062-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1062-gcp_5.4.0-1062.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1062_5.4.0-1062.66_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1063-aws_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1063_5.4.0-1063.66_all.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1063-azure_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1063_5.4.0-1063.66_all.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1063-gke_5.4.0-1063.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1063_5.4.0-1063.66_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "5.4.0-1063-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1063-kvm_5.4.0-1063.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1063_5.4.0-1063.66_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1063-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1063_5.4.0-1063.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1063-oracle_5.4.0-1063.67_amd64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1063-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1063_5.4.0-1063.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1063-gcp_5.4.0-1063.67_amd64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1064-aws_5.4.0-1064.67_amd64.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-1064-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1064-azure_5.4.0-1064.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1064_5.4.0-1064.67_all.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1064-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1064_5.4.0-1064.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1064-gcp_5.4.0-1064.68_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1064-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1064_5.4.0-1064.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1064-oracle_5.4.0-1064.68_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1065_5.4.0-1065.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1065-gke_5.4.0-1065.68_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1065-kvm_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1065_5.4.0-1065.68_all.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1065-aws_5.4.0-1065.68_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "5.4.0-1065-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1065_5.4.0-1065.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1065-azure_5.4.0-1065.68_amd64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "5.4.0-1065-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1065-gcp_5.4.0-1065.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1065_5.4.0-1065.69_amd64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "5.4.0-1066-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1066-gke_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1066_5.4.0-1066.69_amd64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "5.4.0-1066-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1066_5.4.0-1066.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1066-aws_5.4.0-1066.69_amd64.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "5.4.0-1066-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1066-oracle_5.4.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1066_5.4.0-1066.71_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.4.0-1067-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1067_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1067-gke_5.4.0-1067.70_amd64.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.4.0-1067-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1067-azure_5.4.0-1067.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1067_5.4.0-1067.70_all.deb" - ] - }, - { - "kernelversion": "70+cvm1", - "kernelrelease": "5.4.0-1067-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1067-azure-cvm_5.4.0-1067.70+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1067_5.4.0-1067.70+cvm1_all.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "5.4.0-1067-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1067-gcp_5.4.0-1067.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1067_5.4.0-1067.71_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1067-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1067_5.4.0-1067.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1067-oracle_5.4.0-1067.72_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1068-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1068-kvm_5.4.0-1068.72_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1068-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1068-gcp_5.4.0-1068.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1068_5.4.0-1068.72_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1068-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1068_5.4.0-1068.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1068-aws_5.4.0-1068.72_amd64.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "5.4.0-1068-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1068_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1068-gke_5.4.0-1068.71_amd64.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "5.4.0-1068-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1068-azure_5.4.0-1068.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1068_5.4.0-1068.71_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1069-aws_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1069_5.4.0-1069.73_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-1069-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1069-gcp_5.4.0-1069.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1069_5.4.0-1069.73_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-1069-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1069_5.4.0-1069.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1069-azure_5.4.0-1069.72_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-1069-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1069_5.4.0-1069.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1069-oracle_5.4.0-1069.75_amd64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "5.4.0-107-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-generic_5.4.0-107.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107-lowlatency_5.4.0-107.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-107_5.4.0-107.121_all.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-1070-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1070-azure_5.4.0-1070.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1070_5.4.0-1070.73_all.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-1070-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1070-kvm_5.4.0-1070.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1070_5.4.0-1070.75_all.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1070-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1070-oracle_5.4.0-1070.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1070_5.4.0-1070.76_all.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1071-kvm_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1071-kvm_5.4.0-1071.76_amd64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1071-aws_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1071_5.4.0-1071.76_all.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1071-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1071_5.4.0-1071.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1071-gke_5.4.0-1071.76_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1071-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1071_5.4.0-1071.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1071-oracle_5.4.0-1071.77_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1072-gcp_5.4.0-1072.77_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1072_5.4.0-1072.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1072-gke_5.4.0-1072.77_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1072-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1072-aws_5.4.0-1072.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1072_5.4.0-1072.77_all.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-1072-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1072_5.4.0-1072.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1072-azure_5.4.0-1072.75_amd64.deb" - ] - }, - { - "kernelversion": "75+cvm1", - "kernelrelease": "5.4.0-1072-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1072_5.4.0-1072.75+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1072-azure-cvm_5.4.0-1072.75+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1073-aws_5.4.0-1073.78_amd64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1073-gcp_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1073_5.4.0-1073.78_amd64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-1073-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1073-kvm_5.4.0-1073.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1073_5.4.0-1073.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1073-kvm_5.4.0-1073.78_amd64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "5.4.0-1073-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1073_5.4.0-1073.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1073-azure_5.4.0-1073.76_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-1073-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1073_5.4.0-1073.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1073-oracle_5.4.0-1073.79_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "5.4.0-1074-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1074_5.4.0-1074.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1074-azure_5.4.0-1074.77_amd64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1075-gcp_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1075_5.4.0-1075.80_amd64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1075-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1075-aws_5.4.0-1075.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1075_5.4.0-1075.80_all.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "5.4.0-1076-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1076-gke_5.4.0-1076.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1076_5.4.0-1076.82_amd64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "5.4.0-1076-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1076_5.4.0-1076.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1076-oracle_5.4.0-1076.83_amd64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-1077-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1077_5.4.0-1077.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1077-azure_5.4.0-1077.80_amd64.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1078-gcp_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1078-gke_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1078_5.4.0-1078.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1078-gke_5.4.0-1078.84_amd64.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "5.4.0-1078-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1078_5.4.0-1078.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1078-aws_5.4.0-1078.84_amd64.deb" - ] - }, - { - "kernelversion": "81", - "kernelrelease": "5.4.0-1078-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1078_5.4.0-1078.81_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1078-azure_5.4.0-1078.81_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "5.4.0-1078-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1078_5.4.0-1078.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1078-oracle_5.4.0-1078.86_amd64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1079-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1079-oracle_5.4.0-1079.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1079_5.4.0-1079.87_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1080-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1080-gcp_5.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1080_5.4.0-1080.87_amd64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1080-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1080_5.4.0-1080.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1080-aws_5.4.0-1080.87_amd64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "5.4.0-1080-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1080_5.4.0-1080.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1080-azure_5.4.0-1080.83_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "5.4.0-1080-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1080_5.4.0-1080.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1080-gke_5.4.0-1080.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.4.0-1080-gke_5.4.0-1080.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.4.0-1080_5.4.0-1080.86_amd64.deb" - ] - }, - { - "kernelversion": "88", - "kernelrelease": "5.4.0-1081-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1081-aws_5.4.0-1081.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1081_5.4.0-1081.88_all.deb" - ] - }, - { - "kernelversion": "89", - "kernelrelease": "5.4.0-1081-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1081_5.4.0-1081.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1081_5.4.0-1081.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1081-oracle_5.4.0-1081.89_amd64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-1083-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1083_5.4.0-1083.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1083-aws_5.4.0-1083.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1083-aws_5.4.0-1083.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1083_5.4.0-1083.90_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "5.4.0-1083-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1083-azure_5.4.0-1083.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1083_5.4.0-1083.87_all.deb" - ] - }, - { - "kernelversion": "87+cvm1", - "kernelrelease": "5.4.0-1083-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1083-azure-cvm_5.4.0-1083.87+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1083_5.4.0-1083.87+cvm1_all.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "5.4.0-1084-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1084_5.4.0-1084.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1084-gcp_5.4.0-1084.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1084_5.4.0-1084.92_amd64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-1085-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1085_5.4.0-1085.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1085-azure_5.4.0-1085.90_amd64.deb" - ] - }, - { - "kernelversion": "90+cvm1", - "kernelrelease": "5.4.0-1085-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-1086-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1086-azure_5.4.0-1086.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1086_5.4.0-1086.91_all.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "5.4.0-1086-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1086_5.4.0-1086.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1086-gcp_5.4.0-1086.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1086_5.4.0-1086.94_amd64.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "5.4.0-1089-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1089-azure_5.4.0-1089.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1089_5.4.0-1089.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1089_5.4.0-1089.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1089-azure_5.4.0-1089.94_amd64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "5.4.0-109-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109_5.4.0-109.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-lowlatency_5.4.0-109.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-109-generic_5.4.0-109.123_amd64.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "5.4.0-110-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-generic_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110_5.4.0-110.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-110-lowlatency_5.4.0-110.124_amd64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "5.4.0-113-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-lowlatency_5.4.0-113.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113_5.4.0-113.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-113-generic_5.4.0-113.127_amd64.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "5.4.0-117-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-lowlatency_5.4.0-117.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117_5.4.0-117.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-117-generic_5.4.0-117.132_amd64.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "5.4.0-120-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-generic_5.4.0-120.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120-lowlatency_5.4.0-120.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-120_5.4.0-120.136_all.deb" - ] - }, - { - "kernelversion": "137", - "kernelrelease": "5.4.0-121-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121_5.4.0-121.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-lowlatency_5.4.0-121.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-121-generic_5.4.0-121.137_amd64.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "5.4.0-122-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-generic_5.4.0-122.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122-lowlatency_5.4.0-122.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-122_5.4.0-122.138_all.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "5.4.0-124-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124-lowlatency_5.4.0-124.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124-generic_5.4.0-124.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124_5.4.0-124.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124_5.4.0-124.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124-lowlatency_5.4.0-124.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-124-generic_5.4.0-124.140_amd64.deb" - ] - }, - { - "kernelversion": "141", - "kernelrelease": "5.4.0-125-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125_5.4.0-125.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125-generic_5.4.0-125.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125_5.4.0-125.141_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125-lowlatency_5.4.0-125.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125-generic_5.4.0-125.141_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-125-lowlatency_5.4.0-125.141_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.4.0-28-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-generic_5.4.0-28.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28-lowlatency_5.4.0-28.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-28_5.4.0-28.32_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.4.0-29-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-lowlatency_5.4.0-29.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29_5.4.0-29.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-29-generic_5.4.0-29.33_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.4.0-31-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-generic_5.4.0-31.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31-lowlatency_5.4.0-31.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-31_5.4.0-31.35_all.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.4.0-33-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-lowlatency_5.4.0-33.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33_5.4.0-33.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-33-generic_5.4.0-33.37_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.4.0-37-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37_5.4.0-37.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-generic_5.4.0-37.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-37-lowlatency_5.4.0-37.41_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.4.0-39-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-generic_5.4.0-39.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39_5.4.0-39.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-39-lowlatency_5.4.0-39.43_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.4.0-40-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-lowlatency_5.4.0-40.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40-generic_5.4.0-40.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-40_5.4.0-40.44_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.4.0-42-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-lowlatency_5.4.0-42.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42-generic_5.4.0-42.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-42_5.4.0-42.46_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.4.0-45-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-generic_5.4.0-45.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45_5.4.0-45.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-45-lowlatency_5.4.0-45.49_amd64.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.4.0-47-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-lowlatency_5.4.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47-generic_5.4.0-47.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-47_5.4.0-47.51_all.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.4.0-48-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-generic_5.4.0-48.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48_5.4.0-48.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-48-lowlatency_5.4.0-48.52_amd64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.4.0-51-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-generic_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51_5.4.0-51.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-51-lowlatency_5.4.0-51.56_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.4.0-52-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-lowlatency_5.4.0-52.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52_5.4.0-52.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-52-generic_5.4.0-52.57_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.4.0-53-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53_5.4.0-53.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-generic_5.4.0-53.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-53-lowlatency_5.4.0-53.59_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "5.4.0-58-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58_5.4.0-58.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-generic_5.4.0-58.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-58-lowlatency_5.4.0-58.64_amd64.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "5.4.0-59-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-lowlatency_5.4.0-59.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59-generic_5.4.0-59.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-59_5.4.0-59.65_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "5.4.0-60-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60_5.4.0-60.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-lowlatency_5.4.0-60.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-60-generic_5.4.0-60.67_amd64.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "5.4.0-62-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-lowlatency_5.4.0-62.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62_5.4.0-62.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-62-generic_5.4.0-62.70_amd64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "5.4.0-65-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-generic_5.4.0-65.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65_5.4.0-65.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-65-lowlatency_5.4.0-65.73_amd64.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "5.4.0-66-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-generic_5.4.0-66.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66_5.4.0-66.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-66-lowlatency_5.4.0-66.74_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "5.4.0-67-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-generic_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67-lowlatency_5.4.0-67.75_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-67_5.4.0-67.75_all.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "5.4.0-70-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-lowlatency_5.4.0-70.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70_5.4.0-70.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-70-generic_5.4.0-70.78_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "5.4.0-71-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-lowlatency_5.4.0-71.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71_5.4.0-71.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-71-generic_5.4.0-71.79_amd64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "5.4.0-72-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72_5.4.0-72.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-generic_5.4.0-72.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-72-lowlatency_5.4.0-72.80_amd64.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "5.4.0-73-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-lowlatency_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73-generic_5.4.0-73.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-73_5.4.0-73.82_all.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "5.4.0-74-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-lowlatency_5.4.0-74.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74_5.4.0-74.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-74-generic_5.4.0-74.83_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "5.4.0-77-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77_5.4.0-77.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-generic_5.4.0-77.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-77-lowlatency_5.4.0-77.86_amd64.deb" - ] - }, - { - "kernelversion": "90", - "kernelrelease": "5.4.0-80-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-generic_5.4.0-80.90_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80_5.4.0-80.90_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-80-lowlatency_5.4.0-80.90_amd64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-81-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-generic_5.4.0-81.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81_5.4.0-81.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-81-lowlatency_5.4.0-81.91_amd64.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "5.4.0-84-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-generic_5.4.0-84.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84-lowlatency_5.4.0-84.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-84_5.4.0-84.94_all.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "5.4.0-86-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-lowlatency_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86_5.4.0-86.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-86-generic_5.4.0-86.97_amd64.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "5.4.0-88-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-generic_5.4.0-88.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88-lowlatency_5.4.0-88.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-88_5.4.0-88.99_all.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "5.4.0-89-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-lowlatency_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89_5.4.0-89.100_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-89-generic_5.4.0-89.100_amd64.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "5.4.0-90-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-generic_5.4.0-90.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90-lowlatency_5.4.0-90.101_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-90_5.4.0-90.101_all.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "5.4.0-91-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-lowlatency_5.4.0-91.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91_5.4.0-91.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-91-generic_5.4.0-91.102_amd64.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "5.4.0-92-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-lowlatency_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92-generic_5.4.0-92.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-92_5.4.0-92.103_all.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "5.4.0-94-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94_5.4.0-94.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-lowlatency_5.4.0-94.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-94-generic_5.4.0-94.106_amd64.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "5.4.0-96-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-lowlatency_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96-generic_5.4.0-96.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-96_5.4.0-96.109_all.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "5.4.0-97-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-lowlatency_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97-generic_5.4.0-97.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-97_5.4.0-97.110_all.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "5.4.0-99-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99_5.4.0-99.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-generic_5.4.0-99.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-99-lowlatency_5.4.0-99.112_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.6.0-1008-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1008_5.6.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1008-oem_5.6.0-1008.8_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.6.0-1010-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1010_5.6.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1010-oem_5.6.0-1010.10_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.6.0-1011-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1011-oem_5.6.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1011_5.6.0-1011.11_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.6.0-1013-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1013-oem_5.6.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1013_5.6.0-1013.13_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.6.0-1017-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1017_5.6.0-1017.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1017-oem_5.6.0-1017.17_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.6.0-1018-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1018_5.6.0-1018.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1018-oem_5.6.0-1018.18_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.6.0-1020-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1020_5.6.0-1020.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1020-oem_5.6.0-1020.20_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.6.0-1023-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1023-oem_5.6.0-1023.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1023_5.6.0-1023.23_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "5.6.0-1026-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1026_5.6.0-1026.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1026-oem_5.6.0-1026.26_amd64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "5.6.0-1028-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1028_5.6.0-1028.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1028-oem_5.6.0-1028.28_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "5.6.0-1031-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1031-oem_5.6.0-1031.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1031_5.6.0-1031.32_all.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.6.0-1032-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1032-oem_5.6.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1032_5.6.0-1032.33_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.6.0-1033-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1033_5.6.0-1033.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1033-oem_5.6.0-1033.35_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.6.0-1039-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1039-oem_5.6.0-1039.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1039_5.6.0-1039.43_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.6.0-1042-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1042-oem_5.6.0-1042.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1042_5.6.0-1042.46_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.6.0-1047-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1047-oem_5.6.0-1047.51_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1047_5.6.0-1047.51_all.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "5.6.0-1048-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1048-oem_5.6.0-1048.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1048_5.6.0-1048.52_all.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "5.6.0-1050-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1050-oem_5.6.0-1050.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1050_5.6.0-1050.54_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "5.6.0-1052-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1052_5.6.0-1052.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1052-oem_5.6.0-1052.56_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "5.6.0-1053-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1053_5.6.0-1053.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1053-oem_5.6.0-1053.57_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "5.6.0-1054-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1054_5.6.0-1054.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1054-oem_5.6.0-1054.58_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "5.6.0-1055-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1055_5.6.0-1055.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1055-oem_5.6.0-1055.59_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.6.0-1056-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1056-oem_5.6.0-1056.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1056_5.6.0-1056.60_all.deb" - ] - }, - { - "kernelversion": "32~20.04.2", - "kernelrelease": "5.8.0-1031-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1031-oracle_5.8.0-1031.32~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1031_5.8.0-1031.32~20.04.2_all.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.8.0-1032-gcp-5.8", - "target": "ubuntu-gcp-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1032-gcp_5.8.0-1032.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1032_5.8.0-1032.34~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~20.04.1", - "kernelrelease": "5.8.0-1033-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1033-oracle_5.8.0-1033.34~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1033_5.8.0-1033.34~20.04.1_all.deb" - ] - }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1035-aws_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_all.deb" - ] - }, - { - "kernelversion": "37~20.04.1", - "kernelrelease": "5.8.0-1035-gcp-5.8", - "target": "ubuntu-gcp-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1035-gcp_5.8.0-1035.37~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1035_5.8.0-1035.37~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~20.04.1", - "kernelrelease": "5.8.0-1037-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1037_5.8.0-1037.38~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1037-oracle_5.8.0-1037.38~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1038-aws_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_all.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-1038-gcp-5.8", - "target": "ubuntu-gcp-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1038-gcp_5.8.0-1038.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1038_5.8.0-1038.40~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~20.04.1", - "kernelrelease": "5.8.0-1038-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1038_5.8.0-1038.39~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1038-oracle_5.8.0-1038.39~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~20.04.1", - "kernelrelease": "5.8.0-1039-azure-5.8", - "target": "ubuntu-azure-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1039_5.8.0-1039.42~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1039-azure_5.8.0-1039.42~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "5.8.0-1039-gcp-5.8", - "target": "ubuntu-gcp-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-gcp-5.8-headers-5.8.0-1039_5.8.0-1039.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.8/linux-headers-5.8.0-1039-gcp_5.8.0-1039.41_amd64.deb" - ] - }, - { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-1040-azure-5.8", - "target": "ubuntu-azure-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1040_5.8.0-1040.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1040-azure_5.8.0-1040.43~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-1041-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1041_5.8.0-1041.43~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1041-aws_5.8.0-1041.43~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.8.0-1041-azure-5.8", - "target": "ubuntu-azure-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1041-azure_5.8.0-1041.44~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1041_5.8.0-1041.44~20.04.1_all.deb" - ] - }, - { - "kernelversion": "44~20.04.1", - "kernelrelease": "5.8.0-1042-aws-5.8", - "target": "ubuntu-aws-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.8/linux-aws-5.8-headers-5.8.0-1042_5.8.0-1042.44~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.8/linux-headers-5.8.0-1042-aws_5.8.0-1042.44~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.8.0-1043-azure-5.8", - "target": "ubuntu-azure-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1043_5.8.0-1043.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1043-azure_5.8.0-1043.46~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~20.04.1", - "kernelrelease": "5.8.0-33-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-33_5.8.0-33.36~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-generic_5.8.0-33.36~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-33-lowlatency_5.8.0-33.36~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37~20.04.2", - "kernelrelease": "5.8.0-34-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-lowlatency_5.8.0-34.37~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-34_5.8.0-34.37~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "40~20.04.1", - "kernelrelease": "5.8.0-36-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-36_5.8.0-36.40~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-generic_5.8.0-36.40~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-36-lowlatency_5.8.0-36.40~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "43~20.04.1", - "kernelrelease": "5.8.0-38-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-lowlatency_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-38-generic_5.8.0-38.43~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-38_5.8.0-38.43~20.04.1_all.deb" - ] - }, - { - "kernelversion": "46~20.04.1", - "kernelrelease": "5.8.0-41-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-lowlatency_5.8.0-41.46~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-41_5.8.0-41.46~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-41-generic_5.8.0-41.46~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~20.04.1", - "kernelrelease": "5.8.0-43-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-generic_5.8.0-43.49~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-43_5.8.0-43.49~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-43-lowlatency_5.8.0-43.49~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "50~20.04.1", - "kernelrelease": "5.8.0-44-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-generic_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-44_5.8.0-44.50~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-44-lowlatency_5.8.0-44.50~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "51~20.04.1", - "kernelrelease": "5.8.0-45-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-generic_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-45-lowlatency_5.8.0-45.51~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-45_5.8.0-45.51~20.04.1_all.deb" - ] - }, - { - "kernelversion": "54~20.04.1", - "kernelrelease": "5.8.0-48-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-generic_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-48_5.8.0-48.54~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-48-lowlatency_5.8.0-48.54~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "55~20.04.1", - "kernelrelease": "5.8.0-49-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-49_5.8.0-49.55~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-lowlatency_5.8.0-49.55~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-49-generic_5.8.0-49.55~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~20.04.1", - "kernelrelease": "5.8.0-50-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-generic_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-50_5.8.0-50.56~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-50-lowlatency_5.8.0-50.56~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "60~20.04.1", - "kernelrelease": "5.8.0-53-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-generic_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-53-lowlatency_5.8.0-53.60~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-53_5.8.0-53.60~20.04.1_all.deb" - ] - }, - { - "kernelversion": "62~20.04.1", - "kernelrelease": "5.8.0-55-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-generic_5.8.0-55.62~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-55_5.8.0-55.62~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-55-lowlatency_5.8.0-55.62~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66~20.04.1", - "kernelrelease": "5.8.0-59-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-59_5.8.0-59.66~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-lowlatency_5.8.0-59.66~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-59-generic_5.8.0-59.66~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "71~20.04.1", - "kernelrelease": "5.8.0-63-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-lowlatency_5.8.0-63.71~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-63_5.8.0-63.71~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-63-generic_5.8.0-63.71~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.10.0-1011-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1011_5.10.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1011-oem_5.10.0-1011.12_amd64.deb" - ] - }, - { - "kernelversion": "33", - "kernelrelease": "5.10.0-1032-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1032-oem_5.10.0-1032.33_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1032_5.10.0-1032.33_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.10.0-1034-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1034_5.10.0-1034.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1034-oem_5.10.0-1034.35_amd64.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "5.10.0-1052-oem-5.10", - "target": "ubuntu-oem-5.10", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.10/linux-oem-5.10-headers-5.10.0-1052_5.10.0-1052.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.10/linux-headers-5.10.0-1052-oem_5.10.0-1052.54_amd64.deb" - ] - }, - { - "kernelversion": "7~20.04.2", - "kernelrelease": "5.11.0-1007-azure-5.11", - "target": "ubuntu-azure-5.11", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-headers-5.11.0-1007-azure_5.11.0-1007.7~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.11/linux-azure-5.11-headers-5.11.0-1007_5.11.0-1007.7~20.04.2_all.deb" - ] - }, - { - "kernelversion": "8~20.04.1", - "kernelrelease": "5.11.0-1008-oracle-5.11", - "target": "ubuntu-oracle-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-oracle-5.11-headers-5.11.0-1008_5.11.0-1008.8~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.11/linux-headers-5.11.0-1008-oracle_5.11.0-1008.8~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9~20.04.2", - "kernelrelease": "5.11.0-1009-aws-5.11", - "target": "ubuntu-aws-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-aws-5.11-headers-5.11.0-1009_5.11.0-1009.9~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.11/linux-headers-5.11.0-1009-aws_5.11.0-1009.9~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "10~20.04.1", - "kernelrelease": "5.11.0-1009-gcp-5.11", - "target": "ubuntu-gcp-5.11", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-headers-5.11.0-1009-gcp_5.11.0-1009.10~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.11/linux-gcp-5.11-headers-5.11.0-1009_5.11.0-1009.10~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.13.0-1007-intel-5.13", - "target": "ubuntu-intel-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-headers-5.13.0-1007-intel_5.13.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-5.13/linux-intel-5.13-headers-5.13.0-1007_5.13.0-1007.7_all.deb" - ] - }, - { - "kernelversion": "15~20.04.1", - "kernelrelease": "5.13.0-1013-azure-5.13", - "target": "ubuntu-azure-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-headers-5.13.0-1013-azure_5.13.0-1013.15~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.13/linux-azure-5.13-headers-5.13.0-1013_5.13.0-1013.15~20.04.1_all.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.13.0-1021-oem-5.13", - "target": "ubuntu-oem-5.13", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.13/linux-headers-5.13.0-1021-oem_5.13.0-1021.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.13/linux-oem-5.13-headers-5.13.0-1021_5.13.0-1021.25_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.14.0-1010-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1010-oem_5.14.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1010_5.14.0-1010.10_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.14.0-1011-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1011-oem_5.14.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1011_5.14.0-1011.11_all.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "5.14.0-1032-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1032_5.14.0-1032.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1032-oem_5.14.0-1032.35_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.14.0-1034-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1034_5.14.0-1034.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1034-oem_5.14.0-1034.37_amd64.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "5.14.0-1047-oem-5.14", - "target": "ubuntu-oem-5.14", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1047_5.14.0-1047.54_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1047-oem_5.14.0-1047.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.14/linux-oem-5.14-headers-5.14.0-1047_5.14.0-1047.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.14/linux-headers-5.14.0-1047-oem_5.14.0-1047.54_amd64.deb" - ] - }, - { - "kernelversion": "17~20.04.1", - "kernelrelease": "5.15.0-1012-gcp-5.15", - "target": "ubuntu-gcp-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-headers-5.15.0-1012-gcp_5.15.0-1012.17~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp-5.15/linux-gcp-5.15-headers-5.15.0-1012_5.15.0-1012.17~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "16~20.04.1", - "kernelrelease": "5.15.0-1013-azure-5.15", - "target": "ubuntu-azure-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-headers-5.15.0-1013-azure_5.15.0-1013.16~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.15/linux-azure-5.15-headers-5.15.0-1013_5.15.0-1013.16~20.04.1_all.deb" - ] - }, - { - "kernelversion": "18~20.04.1", - "kernelrelease": "5.15.0-1014-aws-5.15", - "target": "ubuntu-aws-5.15", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-5.15/linux-aws-5.15-headers-5.15.0-1014_5.15.0-1014.18~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-5.15/linux-headers-5.15.0-1014-aws_5.15.0-1014.18~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66+cvm3", - "kernelrelease": "5.4.0-1063-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1063_5.4.0-1063.66+cvm3_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1063-azure-cvm_5.4.0-1063.66+cvm3_amd64.deb" - ] - }, - { - "kernelversion": "67+cvm1", - "kernelrelease": "5.4.0-1064-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1064-azure-cvm_5.4.0-1064.67+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1064_5.4.0-1064.67+cvm1_all.deb" - ] - }, - { - "kernelversion": "68+cvm2", - "kernelrelease": "5.4.0-1065-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1065-azure-cvm_5.4.0-1065.68+cvm2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1065_5.4.0-1065.68+cvm2_all.deb" - ] - }, - { - "kernelversion": "71+cvm1", - "kernelrelease": "5.4.0-1068-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1068_5.4.0-1068.71+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1068-azure-cvm_5.4.0-1068.71+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "72+cvm1", - "kernelrelease": "5.4.0-1069-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1069_5.4.0-1069.72+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1069-azure-cvm_5.4.0-1069.72+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "73+cvm1", - "kernelrelease": "5.4.0-1070-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1070-azure-cvm_5.4.0-1070.73+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1070_5.4.0-1070.73+cvm1_all.deb" - ] - }, - { - "kernelversion": "76+cvm1", - "kernelrelease": "5.4.0-1073-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1073-azure-cvm_5.4.0-1073.76+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1073_5.4.0-1073.76+cvm1_all.deb" - ] - }, - { - "kernelversion": "77+cvm1", - "kernelrelease": "5.4.0-1074-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1074_5.4.0-1074.77+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1074-azure-cvm_5.4.0-1074.77+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "79+cvm1", - "kernelrelease": "5.4.0-1076-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1076_5.4.0-1076.79+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1076-azure-cvm_5.4.0-1076.79+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "81+cvm1", - "kernelrelease": "5.4.0-1078-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1078_5.4.0-1078.81+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1078-azure-cvm_5.4.0-1078.81+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "83+cvm1", - "kernelrelease": "5.4.0-1080-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1080-azure-cvm_5.4.0-1080.83+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1080_5.4.0-1080.83+cvm1_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "5.4.0-1083-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1083_5.4.0-1083.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1083-gcp_5.4.0-1083.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1083_5.4.0-1083.91_amd64.deb" - ] - }, - { - "kernelversion": "90+cvm2", - "kernelrelease": "5.4.0-1085-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1085-azure-cvm_5.4.0-1085.90+cvm2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1085_5.4.0-1085.90+cvm2_all.deb" - ] - }, - { - "kernelversion": "91+cvm1", - "kernelrelease": "5.4.0-1086-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1086-azure-cvm_5.4.0-1086.91+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1086_5.4.0-1086.91+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1086_5.4.0-1086.91+cvm1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1086-azure-cvm_5.4.0-1086.91+cvm1_amd64.deb" - ] - }, - { - "kernelversion": "94+cvm1", - "kernelrelease": "5.4.0-1089-azure-cvm", - "target": "ubuntu-azure-cvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1089-azure-cvm_5.4.0-1089.94+cvm1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-headers-5.4.0-1089-azure-cvm_5.4.0-1089.94+cvm1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1089_5.4.0-1089.94+cvm1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-cvm/linux-azure-cvm-headers-5.4.0-1089_5.4.0-1089.94+cvm1_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "5.4.0-54-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-lowlatency_5.4.0-54.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54-generic_5.4.0-54.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-54_5.4.0-54.60_all.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "5.4.0-64-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-lowlatency_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64_5.4.0-64.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-64-generic_5.4.0-64.72_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.6.0-1021-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1021_5.6.0-1021.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1021-oem_5.6.0-1021.21_amd64.deb" - ] - }, - { - "kernelversion": "27", - "kernelrelease": "5.6.0-1027-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1027_5.6.0-1027.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1027-oem_5.6.0-1027.27_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.6.0-1034-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1034_5.6.0-1034.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1034-oem_5.6.0-1034.36_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "5.6.0-1035-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1035_5.6.0-1035.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1035-oem_5.6.0-1035.37_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.6.0-1036-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1036_5.6.0-1036.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1036-oem_5.6.0-1036.39_amd64.deb" - ] - }, - { - "kernelversion": "35~20.04.2", - "kernelrelease": "5.8.0-1034-oracle-5.8", - "target": "ubuntu-oracle-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle-5.8/linux-oracle-5.8-headers-5.8.0-1034_5.8.0-1034.35~20.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle-5.8/linux-headers-5.8.0-1034-oracle_5.8.0-1034.35~20.04.2_amd64.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.8.0-1042-azure-5.8", - "target": "ubuntu-azure-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-azure-5.8-headers-5.8.0-1042_5.8.0-1042.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure-5.8/linux-headers-5.8.0-1042-azure_5.8.0-1042.45~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~20.04.1", - "kernelrelease": "5.8.0-23-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-lowlatency_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-23-generic_5.8.0-23.24~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-23_5.8.0-23.24~20.04.1_all.deb" - ] - }, - { - "kernelversion": "26~20.04.1", - "kernelrelease": "5.8.0-25-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-generic_5.8.0-25.26~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-25_5.8.0-25.26~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-25-lowlatency_5.8.0-25.26~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~20.04.1", - "kernelrelease": "5.8.0-28-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-lowlatency_5.8.0-28.30~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~20.04.1", - "kernelrelease": "5.8.0-29-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-generic_5.8.0-29.31~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-29-lowlatency_5.8.0-29.31~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-29_5.8.0-29.31~20.04.1_all.deb" - ] - }, - { - "kernelversion": "45~20.04.1", - "kernelrelease": "5.8.0-40-hwe-5.8", - "target": "ubuntu-hwe-5.8", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-hwe-5.8-headers-5.8.0-40_5.8.0-40.45~20.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-lowlatency_5.8.0-40.45~20.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.8/linux-headers-5.8.0-40-generic_5.8.0-40.45~20.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.4.0-1009-oracle_5.4.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.4.0-1009-aws_5.4.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.4.0-1009_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.4.0-1009-gcp_5.4.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.4.0-1009-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.4.0-1009_5.4.0-1009.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.4.0-1009-kvm_5.4.0-1009.9_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.4.0-1010-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.4.0-1010-azure_5.4.0-1010.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.4.0-1010_5.4.0-1010.10_all.deb" - ] - }, - { - "kernelversion": "30", - "kernelrelease": "5.4.0-26-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26_5.4.0-26.30_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-generic_5.4.0-26.30_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.4.0-26-lowlatency_5.4.0-26.30_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.6.0-1007-oem-5.6", - "target": "ubuntu-oem-5.6", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-headers-5.6.0-1007-oem_5.6.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.6/linux-oem-5.6-headers-5.6.0-1007_5.6.0-1007.7_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.15.0-1013-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1013_5.15.0-1013.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1013-ibm_5.15.0-1013.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1013_5.15.0-1013.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1013-ibm_5.15.0-1013.15_amd64.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.15.0-1015-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1015-gke_5.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1015-gke_5.15.0-1015.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1015_5.15.0-1015.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1015_5.15.0-1015.18_amd64.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.15.0-1017-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1017_5.15.0-1017.23_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1017-gcp_5.15.0-1017.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1017_5.15.0-1017.23_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.15.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1017_5.15.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1017-aws_5.15.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1017-aws_5.15.0-1017.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1017_5.15.0-1017.21_all.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.15.0-1017-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1017_5.15.0-1017.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1017-kvm_5.15.0-1017.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1017_5.15.0-1017.21_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1017-kvm_5.15.0-1017.21_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "5.15.0-1017-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1017-oracle_5.15.0-1017.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1017_5.15.0-1017.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1017_5.15.0-1017.22_all.deb" - ] - }, - { - "kernelversion": "23", - "kernelrelease": "5.15.0-1019-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1019_5.15.0-1019.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1019_5.15.0-1019.23_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1019-aws_5.15.0-1019.23_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1019-aws_5.15.0-1019.23_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "5.15.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1019-azure_5.15.0-1019.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1019-azure_5.15.0-1019.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1019_5.15.0-1019.24_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1019_5.15.0-1019.24_all.deb" - ] - }, - { - "kernelversion": "51", - "kernelrelease": "5.15.0-47-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-47_5.15.0-47.51_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-47-generic_5.15.0-47.51_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-47_5.15.0-47.51_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-47-generic_5.15.0-47.51_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "5.15.0-47-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-47-lowlatency_5.15.0-47.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-47-lowlatency_5.15.0-47.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-47_5.15.0-47.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-47_5.15.0-47.53_all.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.17.0-1004-oem-5.17", - "target": "ubuntu-oem-5.17", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1004_5.17.0-1004.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1004-oem_5.17.0-1004.4_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.17.0-1005-oem-5.17", - "target": "ubuntu-oem-5.17", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1005_5.17.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1005-oem_5.17.0-1005.5_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1005-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1005-aws_5.15.0-1005.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1005_5.15.0-1005.7_all.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1005-azure_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1005_5.15.0-1005.6_all.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1005-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1005_5.15.0-1005.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1005-gke_5.15.0-1005.6_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1005-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1005_5.15.0-1005.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1005-gcp_5.15.0-1005.8_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-nvidia", - "target": "ubuntu-nvidia", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-nvidia/linux-nvidia-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-nvidia/linux-headers-5.15.0-1005-nvidia_5.15.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-nvidia/linux-headers-5.15.0-1005-nvidia_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-nvidia/linux-nvidia-headers-5.15.0-1005_5.15.0-1005.5_all.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1005-kvm_5.15.0-1005.5_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1005-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1005-ibm_5.15.0-1005.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1005_5.15.0-1005.5_all.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1006-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1006-oracle_5.15.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1006_5.15.0-1006.8_all.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1007-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1007-ibm_5.15.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1007_5.15.0-1007.8_all.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1007-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1007-azure_5.15.0-1007.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1007_5.15.0-1007.8_all.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1007-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1007-kvm_5.15.0-1007.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1007_5.15.0-1007.7_all.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1008-gke_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1008_5.15.0-1008.10_amd64.deb" - ] - }, - { - "kernelversion": "10", - "kernelrelease": "5.15.0-1008-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1008-aws_5.15.0-1008.10_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1008_5.15.0-1008.10_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.15.0-1008-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1008-gcp_5.15.0-1008.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1008_5.15.0-1008.12_amd64.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.15.0-1008-intel-iotg", - "target": "ubuntu-intel-iotg", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1008-intel-iotg_5.15.0-1008.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1008_5.15.0-1008.11_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.15.0-1009-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1009-ibm_5.15.0-1009.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1009_5.15.0-1009.11_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.15.0-1009-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1009_5.15.0-1009.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1009-aws_5.15.0-1009.11_amd64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.15.0-1009-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1009-oracle_5.15.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1009_5.15.0-1009.12_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.15.0-1010-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1010-ibm_5.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1010-ibm_5.15.0-1010.12_amd64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.15.0-1010-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1010_5.15.0-1010.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1010-azure_5.15.0-1010.12_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.15.0-1010-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1010-gcp_5.15.0-1010.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1010_5.15.0-1010.15_amd64.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.15.0-1010-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1010-gke_5.15.0-1010.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1010_5.15.0-1010.13_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1010-intel-iotg", - "target": "ubuntu-intel-iotg", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1010-intel-iotg_5.15.0-1010.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1010_5.15.0-1010.14_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "5.15.0-1010-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1010-kvm_5.15.0-1010.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1010_5.15.0-1010.11_all.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1011_5.15.0-1011.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1011-aws_5.15.0-1011.14_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1011-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1011_5.15.0-1011.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1011-gke_5.15.0-1011.14_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.15.0-1011-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1011-oracle_5.15.0-1011.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1011_5.15.0-1011.15_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.15.0-1012-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1012_5.15.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1012-azure_5.15.0-1012.15_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1012-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1012-kvm_5.15.0-1012.14_amd64.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.15.0-1012-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1012-ibm_5.15.0-1012.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1012_5.15.0-1012.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1012-ibm_5.15.0-1012.14_amd64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1013-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1013-oracle_5.15.0-1013.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1013_5.15.0-1013.17_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1013-intel-iotg", - "target": "ubuntu-intel-iotg", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-intel-iotg-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1013-intel-iotg_5.15.0-1013.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-intel-iotg/linux-headers-5.15.0-1013-intel-iotg_5.15.0-1013.17_amd64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1013-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1013-aws_5.15.0-1013.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1013_5.15.0-1013.17_all.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.15.0-1013-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1013_5.15.0-1013.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1013-gcp_5.15.0-1013.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1013_5.15.0-1013.18_amd64.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.15.0-1013-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1013_5.15.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1013-kvm_5.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1013-kvm_5.15.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1013_5.15.0-1013.16_all.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.15.0-1013-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1013-azure_5.15.0-1013.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1013_5.15.0-1013.16_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1014-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1014-azure_5.15.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1014_5.15.0-1014.17_all.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "5.15.0-1014-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1014_5.15.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1014-gke_5.15.0-1014.17_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1014_5.15.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1014-gke_5.15.0-1014.17_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.15.0-1015-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1015_5.15.0-1015.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1015-aws_5.15.0-1015.19_amd64.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "5.15.0-1016-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1016-gcp_5.15.0-1016.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1016_5.15.0-1016.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1016_5.15.0-1016.21_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "5.15.0-1016-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1016_5.15.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1016-kvm_5.15.0-1016.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1016_5.15.0-1016.19_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1016-kvm_5.15.0-1016.19_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.15.0-1016-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1016_5.15.0-1016.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1016-oracle_5.15.0-1016.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1016_5.15.0-1016.20_all.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "5.15.0-1017-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1017-azure_5.15.0-1017.20_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1017_5.15.0-1017.20_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1017_5.15.0-1017.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1017-azure_5.15.0-1017.20_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-33-lowlatency_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-33_5.15.0-33.34_all.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "5.15.0-33-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33_5.15.0-33.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-33-generic_5.15.0-33.34_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.15.0-37-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-37_5.15.0-37.39_all.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "5.15.0-37-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-37-lowlatency_5.15.0-37.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-37_5.15.0-37.39_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.15.0-39-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39-generic_5.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-39_5.15.0-39.42_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "5.15.0-39-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-39_5.15.0-39.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-39-lowlatency_5.15.0-39.42_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.15.0-41-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-41_5.15.0-41.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-41-lowlatency_5.15.0-41.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-41_5.15.0-41.44_all.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "5.15.0-41-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41-generic_5.15.0-41.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-41_5.15.0-41.44_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.15.0-43-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-43-generic_5.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-43_5.15.0-43.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-43-generic_5.15.0-43.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-43_5.15.0-43.46_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "5.15.0-43-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-43_5.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-43_5.15.0-43.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-43-lowlatency_5.15.0-43.46_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.15.0-46-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-46_5.15.0-46.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-46-lowlatency_5.15.0-46.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-46_5.15.0-46.49_all.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "5.15.0-46-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-46_5.15.0-46.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-46-generic_5.15.0-46.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-46_5.15.0-46.49_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-46-generic_5.15.0-46.49_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.17.0-1006-oem-5.17", - "target": "ubuntu-oem-5.17", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1006-oem_5.17.0-1006.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1006_5.17.0-1006.6_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "5.17.0-1011-oem-5.17", - "target": "ubuntu-oem-5.17", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1011_5.17.0-1011.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1011-oem_5.17.0-1011.12_amd64.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "5.17.0-1012-oem-5.17", - "target": "ubuntu-oem-5.17", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1012-oem_5.17.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1012-oem_5.17.0-1012.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1012_5.17.0-1012.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1012_5.17.0-1012.13_all.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "5.17.0-1013-oem-5.17", - "target": "ubuntu-oem-5.17", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1013-oem_5.17.0-1013.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1013_5.17.0-1013.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1013_5.17.0-1013.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1013-oem_5.17.0-1013.14_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "5.17.0-1014-oem-5.17", - "target": "ubuntu-oem-5.17", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1014-oem_5.17.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1014-oem_5.17.0-1014.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1014_5.17.0-1014.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1014_5.17.0-1014.15_all.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "5.17.0-1015-oem-5.17", - "target": "ubuntu-oem-5.17", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1015_5.17.0-1015.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1015-oem_5.17.0-1015.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oem-5.17/linux-oem-5.17-headers-5.17.0-1015_5.17.0-1015.16_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oem-5.17/linux-headers-5.17.0-1015-oem_5.17.0-1015.16_amd64.deb" - ] - }, - { - "kernelversion": "5", - "kernelrelease": "5.15.0-1004-gke", - "target": "ubuntu-gke", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1004-gke_5.15.0-1004.5_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1004_5.15.0-1004.5_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1006-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1006-gcp_5.15.0-1006.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1006_5.15.0-1006.9_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "5.15.0-1006-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1006_5.15.0-1006.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1006-gke_5.15.0-1006.7_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1007-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1007-oracle_5.15.0-1007.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1007_5.15.0-1007.9_all.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "5.15.0-1008-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-5.15.0-1008_5.15.0-1008.9_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-5.15.0-1008-azure_5.15.0-1008.9_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "5.15.0-1008-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-5.15.0-1008-kvm_5.15.0-1008.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-5.15.0-1008_5.15.0-1008.8_all.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "5.15.0-1014-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-5.15.0-1014-aws_5.15.0-1014.18_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-5.15.0-1014_5.15.0-1014.18_all.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.15.0-30-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-30-lowlatency_5.15.0-30.31_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "5.15.0-30-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30_5.15.0-30.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-30-generic_5.15.0-30.31_amd64.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.15.0-35-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-35-lowlatency_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-35_5.15.0-35.36_all.deb" - ] - }, - { - "kernelversion": "36", - "kernelrelease": "5.15.0-35-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35-generic_5.15.0-35.36_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-35_5.15.0-35.36_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.15.0-40-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40-generic_5.15.0-40.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-40_5.15.0-40.43_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "5.15.0-40-lowlatency", - "target": "ubuntu-lowlatency", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-headers-5.15.0-40-lowlatency_5.15.0-40.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lowlatency/linux-lowlatency-headers-5.15.0-40_5.15.0-40.43_all.deb" - ] - }, - { - "kernelversion": "2", - "kernelrelease": "5.15.0-1002-ibm", - "target": "ubuntu-ibm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-ibm-headers-5.15.0-1002_5.15.0-1002.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-ibm/linux-headers-5.15.0-1002-ibm_5.15.0-1002.2_amd64.deb" - ] - }, - { - "kernelversion": "2", - "kernelrelease": "5.15.0-1002-gke", - "target": "ubuntu-gke", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-headers-5.15.0-1002-gke_5.15.0-1002.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gke/linux-gke-headers-5.15.0-1002_5.15.0-1002.2_amd64.deb" - ] - }, - { - "kernelversion": "4", - "kernelrelease": "5.15.0-1002-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-5.15.0-1002_5.15.0-1002.4_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-5.15.0-1002-oracle_5.15.0-1002.4_amd64.deb" - ] - }, - { - "kernelversion": "6", - "kernelrelease": "5.15.0-1003-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-5.15.0-1003-gcp_5.15.0-1003.6_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-5.15.0-1003_5.15.0-1003.6_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "5.15.0-25-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25_5.15.0-25.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-5.15.0-25-generic_5.15.0-25.25_amd64.deb" - ] - }, - { - "kernelversion": "47~14.04.1", - "kernelrelease": "4.15.0-1043-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1043_4.15.0-1043.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1043-azure_4.15.0-1043.47~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "147", - "kernelrelease": "3.13.0-100-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-generic_3.13.0-100.147_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100-lowlatency_3.13.0-100.147_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-100_3.13.0-100.147_all.deb" - ] - }, - { - "kernelversion": "148", - "kernelrelease": "3.13.0-101-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-lowlatency_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101-generic_3.13.0-101.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-101_3.13.0-101.148_all.deb" - ] - }, - { - "kernelversion": "150", - "kernelrelease": "3.13.0-103-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103_3.13.0-103.150_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-lowlatency_3.13.0-103.150_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-103-generic_3.13.0-103.150_amd64.deb" - ] - }, - { - "kernelversion": "152", - "kernelrelease": "3.13.0-105-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-lowlatency_3.13.0-105.152_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105_3.13.0-105.152_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-105-generic_3.13.0-105.152_amd64.deb" - ] - }, - { - "kernelversion": "153", - "kernelrelease": "3.13.0-106-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106_3.13.0-106.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-generic_3.13.0-106.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-106-lowlatency_3.13.0-106.153_amd64.deb" - ] - }, - { - "kernelversion": "154", - "kernelrelease": "3.13.0-107-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107_3.13.0-107.154_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-lowlatency_3.13.0-107.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-107-generic_3.13.0-107.154_amd64.deb" - ] - }, - { - "kernelversion": "155", - "kernelrelease": "3.13.0-108-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-generic_3.13.0-108.155_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108_3.13.0-108.155_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-108-lowlatency_3.13.0-108.155_amd64.deb" - ] - }, - { - "kernelversion": "156", - "kernelrelease": "3.13.0-109-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109_3.13.0-109.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-generic_3.13.0-109.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-109-lowlatency_3.13.0-109.156_amd64.deb" - ] - }, - { - "kernelversion": "157", - "kernelrelease": "3.13.0-110-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110_3.13.0-110.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-generic_3.13.0-110.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-110-lowlatency_3.13.0-110.157_amd64.deb" - ] - }, - { - "kernelversion": "159", - "kernelrelease": "3.13.0-112-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-lowlatency_3.13.0-112.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112_3.13.0-112.159_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-112-generic_3.13.0-112.159_amd64.deb" - ] - }, - { - "kernelversion": "162", - "kernelrelease": "3.13.0-115-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115_3.13.0-115.162_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-generic_3.13.0-115.162_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-115-lowlatency_3.13.0-115.162_amd64.deb" - ] - }, - { - "kernelversion": "163", - "kernelrelease": "3.13.0-116-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116_3.13.0-116.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-lowlatency_3.13.0-116.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-116-generic_3.13.0-116.163_amd64.deb" - ] - }, - { - "kernelversion": "164", - "kernelrelease": "3.13.0-117-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-lowlatency_3.13.0-117.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117-generic_3.13.0-117.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-117_3.13.0-117.164_all.deb" - ] - }, - { - "kernelversion": "166", - "kernelrelease": "3.13.0-119-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-generic_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119_3.13.0-119.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-119-lowlatency_3.13.0-119.166_amd64.deb" - ] - }, - { - "kernelversion": "170", - "kernelrelease": "3.13.0-121-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-generic_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121-lowlatency_3.13.0-121.170_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-121_3.13.0-121.170_all.deb" - ] - }, - { - "kernelversion": "172", - "kernelrelease": "3.13.0-123-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-lowlatency_3.13.0-123.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123_3.13.0-123.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-123-generic_3.13.0-123.172_amd64.deb" - ] - }, - { - "kernelversion": "174", - "kernelrelease": "3.13.0-125-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-generic_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125_3.13.0-125.174_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-125-lowlatency_3.13.0-125.174_amd64.deb" - ] - }, - { - "kernelversion": "175", - "kernelrelease": "3.13.0-126-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126_3.13.0-126.175_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-lowlatency_3.13.0-126.175_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-126-generic_3.13.0-126.175_amd64.deb" - ] - }, - { - "kernelversion": "177", - "kernelrelease": "3.13.0-128-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128_3.13.0-128.177_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-lowlatency_3.13.0-128.177_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-128-generic_3.13.0-128.177_amd64.deb" - ] - }, - { - "kernelversion": "178", - "kernelrelease": "3.13.0-129-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-generic_3.13.0-129.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129_3.13.0-129.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-129-lowlatency_3.13.0-129.178_amd64.deb" - ] - }, - { - "kernelversion": "181", - "kernelrelease": "3.13.0-132-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132_3.13.0-132.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-lowlatency_3.13.0-132.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-132-generic_3.13.0-132.181_amd64.deb" - ] - }, - { - "kernelversion": "182", - "kernelrelease": "3.13.0-133-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133_3.13.0-133.182_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-generic_3.13.0-133.182_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-133-lowlatency_3.13.0-133.182_amd64.deb" - ] - }, - { - "kernelversion": "184", - "kernelrelease": "3.13.0-135-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-lowlatency_3.13.0-135.184_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135_3.13.0-135.184_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-135-generic_3.13.0-135.184_amd64.deb" - ] - }, - { - "kernelversion": "186", - "kernelrelease": "3.13.0-137-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-lowlatency_3.13.0-137.186_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137-generic_3.13.0-137.186_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-137_3.13.0-137.186_all.deb" - ] - }, - { - "kernelversion": "188", - "kernelrelease": "3.13.0-139-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139_3.13.0-139.188_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-generic_3.13.0-139.188_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-139-lowlatency_3.13.0-139.188_amd64.deb" - ] - }, - { - "kernelversion": "190", - "kernelrelease": "3.13.0-141-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-lowlatency_3.13.0-141.190_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141-generic_3.13.0-141.190_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-141_3.13.0-141.190_all.deb" - ] - }, - { - "kernelversion": "191", - "kernelrelease": "3.13.0-142-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142_3.13.0-142.191_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-generic_3.13.0-142.191_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-142-lowlatency_3.13.0-142.191_amd64.deb" - ] - }, - { - "kernelversion": "192", - "kernelrelease": "3.13.0-143-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-generic_3.13.0-143.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143-lowlatency_3.13.0-143.192_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-143_3.13.0-143.192_all.deb" - ] - }, - { - "kernelversion": "193", - "kernelrelease": "3.13.0-144-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144_3.13.0-144.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-generic_3.13.0-144.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-144-lowlatency_3.13.0-144.193_amd64.deb" - ] - }, - { - "kernelversion": "196", - "kernelrelease": "3.13.0-147-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-generic_3.13.0-147.196_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147_3.13.0-147.196_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-147-lowlatency_3.13.0-147.196_amd64.deb" - ] - }, - { - "kernelversion": "199", - "kernelrelease": "3.13.0-149-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-lowlatency_3.13.0-149.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149_3.13.0-149.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-149-generic_3.13.0-149.199_amd64.deb" - ] - }, - { - "kernelversion": "201", - "kernelrelease": "3.13.0-151-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151_3.13.0-151.201_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-lowlatency_3.13.0-151.201_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-151-generic_3.13.0-151.201_amd64.deb" - ] - }, - { - "kernelversion": "203", - "kernelrelease": "3.13.0-153-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-lowlatency_3.13.0-153.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153_3.13.0-153.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-153-generic_3.13.0-153.203_amd64.deb" - ] - }, - { - "kernelversion": "205", - "kernelrelease": "3.13.0-155-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-generic_3.13.0-155.205_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155_3.13.0-155.205_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-155-lowlatency_3.13.0-155.205_amd64.deb" - ] - }, - { - "kernelversion": "206", - "kernelrelease": "3.13.0-156-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-lowlatency_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156-generic_3.13.0-156.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-156_3.13.0-156.206_all.deb" - ] - }, - { - "kernelversion": "207", - "kernelrelease": "3.13.0-157-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-generic_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157_3.13.0-157.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-157-lowlatency_3.13.0-157.207_amd64.deb" - ] - }, - { - "kernelversion": "210", - "kernelrelease": "3.13.0-160-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-lowlatency_3.13.0-160.210_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160-generic_3.13.0-160.210_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-160_3.13.0-160.210_all.deb" - ] - }, - { - "kernelversion": "211", - "kernelrelease": "3.13.0-161-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-lowlatency_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161-generic_3.13.0-161.211_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-161_3.13.0-161.211_all.deb" - ] - }, - { - "kernelversion": "212", - "kernelrelease": "3.13.0-162-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-lowlatency_3.13.0-162.212_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162_3.13.0-162.212_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-162-generic_3.13.0-162.212_amd64.deb" - ] - }, - { - "kernelversion": "214", - "kernelrelease": "3.13.0-164-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-lowlatency_3.13.0-164.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164_3.13.0-164.214_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-164-generic_3.13.0-164.214_amd64.deb" - ] - }, - { - "kernelversion": "215", - "kernelrelease": "3.13.0-165-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-lowlatency_3.13.0-165.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165-generic_3.13.0-165.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-165_3.13.0-165.215_all.deb" - ] - }, - { - "kernelversion": "216", - "kernelrelease": "3.13.0-166-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-generic_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166-lowlatency_3.13.0-166.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-166_3.13.0-166.216_all.deb" - ] - }, - { - "kernelversion": "217", - "kernelrelease": "3.13.0-167-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-lowlatency_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167_3.13.0-167.217_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-167-generic_3.13.0-167.217_amd64.deb" - ] - }, - { - "kernelversion": "218", - "kernelrelease": "3.13.0-168-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-lowlatency_3.13.0-168.218_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168-generic_3.13.0-168.218_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-168_3.13.0-168.218_all.deb" - ] - }, - { - "kernelversion": "220", - "kernelrelease": "3.13.0-170-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170_3.13.0-170.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-lowlatency_3.13.0-170.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-170-generic_3.13.0-170.220_amd64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "3.13.0-24-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.47_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "3.13.0-27-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-generic_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27-lowlatency_3.13.0-27.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-27_3.13.0-27.50_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "3.13.0-29-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-lowlatency_3.13.0-29.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29-generic_3.13.0-29.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-29_3.13.0-29.53_all.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "3.13.0-30-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-generic_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30-lowlatency_3.13.0-30.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-30_3.13.0-30.55_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "3.13.0-32-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-generic_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32_3.13.0-32.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-32-lowlatency_3.13.0-32.57_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "3.13.0-33-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-lowlatency_3.13.0-33.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33-generic_3.13.0-33.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-33_3.13.0-33.58_all.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "3.13.0-34-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-generic_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34-lowlatency_3.13.0-34.60_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-34_3.13.0-34.60_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "3.13.0-35-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35_3.13.0-35.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-35-lowlatency_3.13.0-35.62_amd64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "3.13.0-36-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36_3.13.0-36.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-generic_3.13.0-36.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-36-lowlatency_3.13.0-36.63_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "3.13.0-37-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37_3.13.0-37.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-lowlatency_3.13.0-37.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-37-generic_3.13.0-37.64_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "3.13.0-39-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39_3.13.0-39.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-lowlatency_3.13.0-39.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-39-generic_3.13.0-39.66_amd64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "3.13.0-40-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-lowlatency_3.13.0-40.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-40_3.13.0-40.69_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "3.13.0-41-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41_3.13.0-41.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-generic_3.13.0-41.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-41-lowlatency_3.13.0-41.70_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "3.13.0-43-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-generic_3.13.0-43.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43_3.13.0-43.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-43-lowlatency_3.13.0-43.72_amd64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "3.13.0-44-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44_3.13.0-44.73_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-lowlatency_3.13.0-44.73_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-44-generic_3.13.0-44.73_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "3.13.0-46-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-generic_3.13.0-46.79_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46-lowlatency_3.13.0-46.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-46_3.13.0-46.79_all.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "3.13.0-48-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-generic_3.13.0-48.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48-lowlatency_3.13.0-48.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-48_3.13.0-48.80_all.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "3.13.0-49-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-lowlatency_3.13.0-49.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-49_3.13.0-49.83_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "3.13.0-51-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51_3.13.0-51.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-lowlatency_3.13.0-51.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-51-generic_3.13.0-51.84_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "3.13.0-52-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-lowlatency_3.13.0-52.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52-generic_3.13.0-52.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-52_3.13.0-52.86_all.deb" - ] - }, - { - "kernelversion": "89", - "kernelrelease": "3.13.0-53-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-lowlatency_3.13.0-53.89_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53-generic_3.13.0-53.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-53_3.13.0-53.89_all.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "3.13.0-54-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54_3.13.0-54.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-generic_3.13.0-54.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-54-lowlatency_3.13.0-54.91_amd64.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "3.13.0-55-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-generic_3.13.0-55.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55_3.13.0-55.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-55-lowlatency_3.13.0-55.94_amd64.deb" - ] - }, - { - "kernelversion": "95", - "kernelrelease": "3.13.0-57-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-generic_3.13.0-57.95_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57_3.13.0-57.95_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-57-lowlatency_3.13.0-57.95_amd64.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "3.13.0-58-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58_3.13.0-58.97_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-lowlatency_3.13.0-58.97_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-58-generic_3.13.0-58.97_amd64.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "3.13.0-59-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59_3.13.0-59.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-lowlatency_3.13.0-59.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-59-generic_3.13.0-59.98_amd64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "3.13.0-61-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61_3.13.0-61.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-lowlatency_3.13.0-61.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-61-generic_3.13.0-61.100_amd64.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "3.13.0-62-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62_3.13.0-62.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-generic_3.13.0-62.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-62-lowlatency_3.13.0-62.102_amd64.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "3.13.0-63-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63_3.13.0-63.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-lowlatency_3.13.0-63.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-63-generic_3.13.0-63.103_amd64.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "3.13.0-65-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-lowlatency_3.13.0-65.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65-generic_3.13.0-65.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-65_3.13.0-65.106_all.deb" - ] - }, - { - "kernelversion": "108", - "kernelrelease": "3.13.0-66-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66_3.13.0-66.108_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-generic_3.13.0-66.108_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-66-lowlatency_3.13.0-66.108_amd64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "3.13.0-67-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-lowlatency_3.13.0-67.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67_3.13.0-67.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-67-generic_3.13.0-67.110_amd64.deb" - ] - }, - { - "kernelversion": "111", - "kernelrelease": "3.13.0-68-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-generic_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68-lowlatency_3.13.0-68.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-68_3.13.0-68.111_all.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "3.13.0-70-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70_3.13.0-70.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-lowlatency_3.13.0-70.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-70-generic_3.13.0-70.113_amd64.deb" - ] - }, - { - "kernelversion": "114", - "kernelrelease": "3.13.0-71-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-generic_3.13.0-71.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71_3.13.0-71.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-71-lowlatency_3.13.0-71.114_amd64.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "3.13.0-73-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73_3.13.0-73.116_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-lowlatency_3.13.0-73.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-73-generic_3.13.0-73.116_amd64.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "3.13.0-74-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74_3.13.0-74.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-generic_3.13.0-74.118_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-74-lowlatency_3.13.0-74.118_amd64.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "3.13.0-76-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-generic_3.13.0-76.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76_3.13.0-76.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-76-lowlatency_3.13.0-76.120_amd64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "3.13.0-77-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77_3.13.0-77.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-generic_3.13.0-77.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-77-lowlatency_3.13.0-77.121_amd64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "3.13.0-79-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-lowlatency_3.13.0-79.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79-generic_3.13.0-79.123_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-79_3.13.0-79.123_all.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "3.13.0-83-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-lowlatency_3.13.0-83.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83_3.13.0-83.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb" - ] - }, - { - "kernelversion": "129", - "kernelrelease": "3.13.0-85-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85_3.13.0-85.129_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-85-lowlatency_3.13.0-85.129_amd64.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "3.13.0-86-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86_3.13.0-86.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-generic_3.13.0-86.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-86-lowlatency_3.13.0-86.131_amd64.deb" - ] - }, - { - "kernelversion": "133", - "kernelrelease": "3.13.0-87-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-generic_3.13.0-87.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87-lowlatency_3.13.0-87.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-87_3.13.0-87.133_all.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "3.13.0-88-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-lowlatency_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88-generic_3.13.0-88.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-88_3.13.0-88.135_all.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "3.13.0-91-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-generic_3.13.0-91.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91-lowlatency_3.13.0-91.138_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-91_3.13.0-91.138_all.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "3.13.0-92-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-lowlatency_3.13.0-92.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92-generic_3.13.0-92.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-92_3.13.0-92.139_all.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "3.13.0-93-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93_3.13.0-93.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-lowlatency_3.13.0-93.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-93-generic_3.13.0-93.140_amd64.deb" - ] - }, - { - "kernelversion": "142", - "kernelrelease": "3.13.0-95-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-lowlatency_3.13.0-95.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95_3.13.0-95.142_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-95-generic_3.13.0-95.142_amd64.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "3.13.0-96-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-lowlatency_3.13.0-96.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96-generic_3.13.0-96.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-96_3.13.0-96.143_all.deb" - ] - }, - { - "kernelversion": "145", - "kernelrelease": "3.13.0-98-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98_3.13.0-98.145_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-lowlatency_3.13.0-98.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-98-generic_3.13.0-98.145_amd64.deb" - ] - }, - { - "kernelversion": "33~14.04.2", - "kernelrelease": "3.16.0-25-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-generic_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25-lowlatency_3.16.0-25.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-25_3.16.0-25.33~14.04.2_all.deb" - ] - }, - { - "kernelversion": "35~14.04.1", - "kernelrelease": "3.16.0-26-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-lowlatency_3.16.0-26.35~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26-generic_3.16.0-26.35~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-26_3.16.0-26.35~14.04.1_all.deb" - ] - }, - { - "kernelversion": "38~14.04.1", - "kernelrelease": "3.16.0-28-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28_3.16.0-28.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-lowlatency_3.16.0-28.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-28-generic_3.16.0-28.38~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~14.04.1", - "kernelrelease": "3.16.0-29-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-lowlatency_3.16.0-29.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29_3.16.0-29.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-29-generic_3.16.0-29.39~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "43~14.04.1", - "kernelrelease": "3.16.0-31-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31_3.16.0-31.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-generic_3.16.0-31.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-31-lowlatency_3.16.0-31.43~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~14.04.1", - "kernelrelease": "3.16.0-33-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-lowlatency_3.16.0-33.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33_3.16.0-33.44~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-33-generic_3.16.0-33.44~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "47~14.04.1", - "kernelrelease": "3.16.0-34-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-lowlatency_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34-generic_3.16.0-34.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-34_3.16.0-34.47~14.04.1_all.deb" - ] - }, - { - "kernelversion": "48~14.04.1", - "kernelrelease": "3.16.0-36-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-lowlatency_3.16.0-36.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36-generic_3.16.0-36.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-36_3.16.0-36.48~14.04.1_all.deb" - ] - }, - { - "kernelversion": "51~14.04.1", - "kernelrelease": "3.16.0-37-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-generic_3.16.0-37.51~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37_3.16.0-37.51~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-37-lowlatency_3.16.0-37.51~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "52~14.04.1", - "kernelrelease": "3.16.0-38-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38_3.16.0-38.52~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-lowlatency_3.16.0-38.52~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-38-generic_3.16.0-38.52~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "53~14.04.1", - "kernelrelease": "3.16.0-39-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39_3.16.0-39.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-lowlatency_3.16.0-39.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-39-generic_3.16.0-39.53~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~14.04.1", - "kernelrelease": "3.16.0-41-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-generic_3.16.0-41.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41_3.16.0-41.57~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-41-lowlatency_3.16.0-41.57~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "58~14.04.1", - "kernelrelease": "3.16.0-43-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-generic_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43-lowlatency_3.16.0-43.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-43_3.16.0-43.58~14.04.1_all.deb" - ] - }, - { - "kernelversion": "59~14.04.1", - "kernelrelease": "3.16.0-44-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-generic_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44-lowlatency_3.16.0-44.59~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-44_3.16.0-44.59~14.04.1_all.deb" - ] - }, - { - "kernelversion": "60~14.04.1", - "kernelrelease": "3.16.0-45-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-generic_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45_3.16.0-45.60~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-45-lowlatency_3.16.0-45.60~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "62~14.04.1", - "kernelrelease": "3.16.0-46-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46_3.16.0-46.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-lowlatency_3.16.0-46.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-46-generic_3.16.0-46.62~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "64~14.04.1", - "kernelrelease": "3.16.0-48-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48_3.16.0-48.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-lowlatency_3.16.0-48.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-48-generic_3.16.0-48.64~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "65~14.04.1", - "kernelrelease": "3.16.0-49-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-generic_3.16.0-49.65~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49-lowlatency_3.16.0-49.65~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-49_3.16.0-49.65~14.04.1_all.deb" - ] - }, - { - "kernelversion": "67~14.04.1", - "kernelrelease": "3.16.0-50-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-generic_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50-lowlatency_3.16.0-50.67~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-50_3.16.0-50.67~14.04.1_all.deb" - ] - }, - { - "kernelversion": "69~14.04.1", - "kernelrelease": "3.16.0-51-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51_3.16.0-51.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-lowlatency_3.16.0-51.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-51-generic_3.16.0-51.69~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "71~14.04.1", - "kernelrelease": "3.16.0-52-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52_3.16.0-52.71~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-lowlatency_3.16.0-52.71~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-52-generic_3.16.0-52.71~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "72~14.04.1", - "kernelrelease": "3.16.0-53-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-lowlatency_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53-generic_3.16.0-53.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-53_3.16.0-53.72~14.04.1_all.deb" - ] - }, - { - "kernelversion": "74~14.04.1", - "kernelrelease": "3.16.0-55-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55_3.16.0-55.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-generic_3.16.0-55.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-55-lowlatency_3.16.0-55.74~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "75~14.04.1", - "kernelrelease": "3.16.0-56-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-lowlatency_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56-generic_3.16.0-56.75~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-56_3.16.0-56.75~14.04.1_all.deb" - ] - }, - { - "kernelversion": "77~14.04.1", - "kernelrelease": "3.16.0-57-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57_3.16.0-57.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-generic_3.16.0-57.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-57-lowlatency_3.16.0-57.77~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "79~14.04.1", - "kernelrelease": "3.16.0-59-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59_3.16.0-59.79~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-lowlatency_3.16.0-59.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-59-generic_3.16.0-59.79~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "80~14.04.1", - "kernelrelease": "3.16.0-60-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60_3.16.0-60.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-generic_3.16.0-60.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-60-lowlatency_3.16.0-60.80~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "83~14.04.1", - "kernelrelease": "3.16.0-62-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-lowlatency_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62-generic_3.16.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-62_3.16.0-62.83~14.04.1_all.deb" - ] - }, - { - "kernelversion": "87~14.04.1", - "kernelrelease": "3.16.0-67-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-lowlatency_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67-generic_3.16.0-67.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-67_3.16.0-67.87~14.04.1_all.deb" - ] - }, - { - "kernelversion": "89~14.04.1", - "kernelrelease": "3.16.0-69-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69_3.16.0-69.89~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-generic_3.16.0-69.89~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-69-lowlatency_3.16.0-69.89~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "90~14.04.1", - "kernelrelease": "3.16.0-70-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70_3.16.0-70.90~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-generic_3.16.0-70.90~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-70-lowlatency_3.16.0-70.90~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "92~14.04.1", - "kernelrelease": "3.16.0-71-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-generic_3.16.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71_3.16.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-71-lowlatency_3.16.0-71.92~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "95~14.04.1", - "kernelrelease": "3.16.0-73-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-generic_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73-lowlatency_3.16.0-73.95~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-73_3.16.0-73.95~14.04.1_all.deb" - ] - }, - { - "kernelversion": "98~14.04.1", - "kernelrelease": "3.16.0-76-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-generic_3.16.0-76.98~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76-lowlatency_3.16.0-76.98~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-76_3.16.0-76.98~14.04.1_all.deb" - ] - }, - { - "kernelversion": "99~14.04.1", - "kernelrelease": "3.16.0-77-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77_3.16.0-77.99~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-generic_3.16.0-77.99~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-77-lowlatency_3.16.0-77.99~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~14.04.1", - "kernelrelease": "3.19.0-20-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20_3.19.0-20.20~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-generic_3.19.0-20.20~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-20-lowlatency_3.19.0-20.20~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~14.04.1", - "kernelrelease": "3.19.0-21-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-generic_3.19.0-21.21~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21-lowlatency_3.19.0-21.21~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-21_3.19.0-21.21~14.04.1_all.deb" - ] - }, - { - "kernelversion": "22~14.04.1", - "kernelrelease": "3.19.0-22-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-lowlatency_3.19.0-22.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22-generic_3.19.0-22.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-22_3.19.0-22.22~14.04.1_all.deb" - ] - }, - { - "kernelversion": "24~14.04.1", - "kernelrelease": "3.19.0-23-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-lowlatency_3.19.0-23.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23-generic_3.19.0-23.24~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-23_3.19.0-23.24~14.04.1_all.deb" - ] - }, - { - "kernelversion": "26~14.04.1", - "kernelrelease": "3.19.0-25-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-generic_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25-lowlatency_3.19.0-25.26~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-25_3.19.0-25.26~14.04.1_all.deb" - ] - }, - { - "kernelversion": "28~14.04.1", - "kernelrelease": "3.19.0-26-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26_3.19.0-26.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-lowlatency_3.19.0-26.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-26-generic_3.19.0-26.28~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~14.04.1", - "kernelrelease": "3.19.0-28-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28_3.19.0-28.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-lowlatency_3.19.0-28.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-28-generic_3.19.0-28.30~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "34~14.04.1", - "kernelrelease": "3.19.0-30-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-generic_3.19.0-30.34~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30_3.19.0-30.34~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-30-lowlatency_3.19.0-30.34~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~14.04.1", - "kernelrelease": "3.19.0-31-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-lowlatency_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31-generic_3.19.0-31.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-31_3.19.0-31.36~14.04.1_all.deb" - ] - }, - { - "kernelversion": "37~14.04.1", - "kernelrelease": "3.19.0-32-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32_3.19.0-32.37~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-lowlatency_3.19.0-32.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-32-generic_3.19.0-32.37~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~14.04.1", - "kernelrelease": "3.19.0-33-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33_3.19.0-33.38~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-generic_3.19.0-33.38~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-33-lowlatency_3.19.0-33.38~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~14.04.1", - "kernelrelease": "3.19.0-37-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37_3.19.0-37.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-lowlatency_3.19.0-37.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-37-generic_3.19.0-37.42~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~14.04.1", - "kernelrelease": "3.19.0-39-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39_3.19.0-39.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-generic_3.19.0-39.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-39-lowlatency_3.19.0-39.44~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~14.04.2", - "kernelrelease": "3.19.0-41-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-generic_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41-lowlatency_3.19.0-41.46~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-41_3.19.0-41.46~14.04.2_all.deb" - ] - }, - { - "kernelversion": "48~14.04.1", - "kernelrelease": "3.19.0-42-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-lowlatency_3.19.0-42.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42_3.19.0-42.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-42-generic_3.19.0-42.48~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~14.04.1", - "kernelrelease": "3.19.0-43-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-lowlatency_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43-generic_3.19.0-43.49~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-43_3.19.0-43.49~14.04.1_all.deb" - ] - }, - { - "kernelversion": "53~14.04.1", - "kernelrelease": "3.19.0-47-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-lowlatency_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47_3.19.0-47.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-47-generic_3.19.0-47.53~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "55~14.04.1", - "kernelrelease": "3.19.0-49-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-lowlatency_3.19.0-49.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49_3.19.0-49.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-49-generic_3.19.0-49.55~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "58~14.04.1", - "kernelrelease": "3.19.0-51-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-lowlatency_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51-generic_3.19.0-51.58~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-51_3.19.0-51.58~14.04.1_all.deb" - ] - }, - { - "kernelversion": "62~14.04.1", - "kernelrelease": "3.19.0-56-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-generic_3.19.0-56.62~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56_3.19.0-56.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-56-lowlatency_3.19.0-56.62~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "64~14.04.1", - "kernelrelease": "3.19.0-58-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58_3.19.0-58.64~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-lowlatency_3.19.0-58.64~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-58-generic_3.19.0-58.64~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66~14.04.1", - "kernelrelease": "3.19.0-59-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-generic_3.19.0-59.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59_3.19.0-59.66~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-59-lowlatency_3.19.0-59.66~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "69~14.04.1", - "kernelrelease": "3.19.0-61-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61_3.19.0-61.69~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-lowlatency_3.19.0-61.69~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-61-generic_3.19.0-61.69~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "72~14.04.1", - "kernelrelease": "3.19.0-64-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-lowlatency_3.19.0-64.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64_3.19.0-64.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-64-generic_3.19.0-64.72~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "73~14.04.1", - "kernelrelease": "3.19.0-65-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65_3.19.0-65.73~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-lowlatency_3.19.0-65.73~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-65-generic_3.19.0-65.73~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "74~14.04.1", - "kernelrelease": "3.19.0-66-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-lowlatency_3.19.0-66.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66_3.19.0-66.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-66-generic_3.19.0-66.74~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "76~14.04.1", - "kernelrelease": "3.19.0-68-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-generic_3.19.0-68.76~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68-lowlatency_3.19.0-68.76~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-68_3.19.0-68.76~14.04.1_all.deb" - ] - }, - { - "kernelversion": "77~14.04.1", - "kernelrelease": "3.19.0-69-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69_3.19.0-69.77~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-lowlatency_3.19.0-69.77~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-69-generic_3.19.0-69.77~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "79~14.04.1", - "kernelrelease": "3.19.0-71-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71_3.19.0-71.79~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-lowlatency_3.19.0-71.79~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-71-generic_3.19.0-71.79~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "81~14.04.1", - "kernelrelease": "3.19.0-73-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-generic_3.19.0-73.81~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73-lowlatency_3.19.0-73.81~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-73_3.19.0-73.81~14.04.1_all.deb" - ] - }, - { - "kernelversion": "82~14.04.1", - "kernelrelease": "3.19.0-74-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-generic_3.19.0-74.82~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74-lowlatency_3.19.0-74.82~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-74_3.19.0-74.82~14.04.1_all.deb" - ] - }, - { - "kernelversion": "83~14.04.1", - "kernelrelease": "3.19.0-75-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75_3.19.0-75.83~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-lowlatency_3.19.0-75.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-75-generic_3.19.0-75.83~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "85~14.04.1", - "kernelrelease": "3.19.0-77-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77_3.19.0-77.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-lowlatency_3.19.0-77.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-77-generic_3.19.0-77.85~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "86~14.04.1", - "kernelrelease": "3.19.0-78-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-lowlatency_3.19.0-78.86~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78_3.19.0-78.86~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-78-generic_3.19.0-78.86~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "87~14.04.1", - "kernelrelease": "3.19.0-79-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-lowlatency_3.19.0-79.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79_3.19.0-79.87~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-79-generic_3.19.0-79.87~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "88~14.04.1", - "kernelrelease": "3.19.0-80-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-lowlatency_3.19.0-80.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80_3.19.0-80.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-80-generic_3.19.0-80.88~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~14.04.1", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~14.04.1", - "kernelrelease": "4.15.0-1031-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "33~14.04.2", - "kernelrelease": "4.15.0-1032-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~14.04.2_all.deb" - ] - }, - { - "kernelversion": "36~14.04.2", - "kernelrelease": "4.15.0-1035-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~14.04.2_amd64.deb" - ] - }, - { - "kernelversion": "38~14.04.2", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~14.04.2_all.deb" - ] - }, - { - "kernelversion": "39~14.04.2", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~14.04.2_amd64.deb" - ] - }, - { - "kernelversion": "41~14.04.2", - "kernelrelease": "4.15.0-1039-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1039-azure_4.15.0-1039.41~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1039_4.15.0-1039.41~14.04.2_all.deb" - ] - }, - { - "kernelversion": "44~14.04.1", - "kernelrelease": "4.15.0-1040-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44~14.04.1_all.deb" - ] - }, - { - "kernelversion": "45~14.04.1", - "kernelrelease": "4.15.0-1041-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~14.04.1", - "kernelrelease": "4.15.0-1045-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1045_4.15.0-1045.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1045-azure_4.15.0-1045.49~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~14.04.1", - "kernelrelease": "4.2.0-18-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18_4.2.0-18.22~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-lowlatency_4.2.0-18.22~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-18-generic_4.2.0-18.22~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~14.04.1", - "kernelrelease": "4.2.0-19-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-generic_4.2.0-19.23~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19-lowlatency_4.2.0-19.23~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-19_4.2.0-19.23~14.04.1_all.deb" - ] - }, - { - "kernelversion": "25~14.04.1", - "kernelrelease": "4.2.0-21-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-lowlatency_4.2.0-21.25~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21-generic_4.2.0-21.25~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-21_4.2.0-21.25~14.04.1_all.deb" - ] - }, - { - "kernelversion": "27~14.04.1", - "kernelrelease": "4.2.0-22-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-generic_4.2.0-22.27~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22-lowlatency_4.2.0-22.27~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-22_4.2.0-22.27~14.04.1_all.deb" - ] - }, - { - "kernelversion": "28~14.04.1", - "kernelrelease": "4.2.0-23-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-generic_4.2.0-23.28~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23_4.2.0-23.28~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-23-lowlatency_4.2.0-23.28~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~14.04.1", - "kernelrelease": "4.2.0-25-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25_4.2.0-25.30~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-generic_4.2.0-25.30~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-25-lowlatency_4.2.0-25.30~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~14.04.1", - "kernelrelease": "4.2.0-27-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-lowlatency_4.2.0-27.32~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27-generic_4.2.0-27.32~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-27_4.2.0-27.32~14.04.1_all.deb" - ] - }, - { - "kernelversion": "36~14.04.1", - "kernelrelease": "4.2.0-30-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30_4.2.0-30.36~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-generic_4.2.0-30.36~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-30-lowlatency_4.2.0-30.36~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~14.04.1", - "kernelrelease": "4.2.0-34-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34_4.2.0-34.39~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-lowlatency_4.2.0-34.39~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-34-generic_4.2.0-34.39~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "40~14.04.1", - "kernelrelease": "4.2.0-35-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35_4.2.0-35.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-lowlatency_4.2.0-35.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-35-generic_4.2.0-35.40~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~14.04.1", - "kernelrelease": "4.2.0-36-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-lowlatency_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36-generic_4.2.0-36.42~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-36_4.2.0-36.42~14.04.1_all.deb" - ] - }, - { - "kernelversion": "45~14.04.1", - "kernelrelease": "4.2.0-38-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-lowlatency_4.2.0-38.45~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38_4.2.0-38.45~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-38-generic_4.2.0-38.45~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "48~14.04.1", - "kernelrelease": "4.2.0-41-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41_4.2.0-41.48~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-lowlatency_4.2.0-41.48~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-41-generic_4.2.0-41.48~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~14.04.1", - "kernelrelease": "4.2.0-42-lts-wily", - "target": "ubuntu-lts-wily", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-lowlatency_4.2.0-42.49~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "124~14.04.1", - "kernelrelease": "4.4.0-101-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101_4.4.0-101.124~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-101-generic_4.4.0-101.124~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "126~14.04.1", - "kernelrelease": "4.4.0-103-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103_4.4.0-103.126~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-103-generic_4.4.0-103.126~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "127~14.04.1", - "kernelrelease": "4.4.0-104-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-generic_4.4.0-104.127~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104_4.4.0-104.127~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "131~14.04.1", - "kernelrelease": "4.4.0-108-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108_4.4.0-108.131~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-108-generic_4.4.0-108.131~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "132~14.04.1", - "kernelrelease": "4.4.0-109-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109_4.4.0-109.132~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-generic_4.4.0-109.132~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "134~14.04.1", - "kernelrelease": "4.4.0-111-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111_4.4.0-111.134~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-generic_4.4.0-111.134~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-111-lowlatency_4.4.0-111.134~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "135~14.04.1", - "kernelrelease": "4.4.0-112-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112_4.4.0-112.135~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-112-generic_4.4.0-112.135~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "140~14.04.1", - "kernelrelease": "4.4.0-116-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116-generic_4.4.0-116.140~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-116_4.4.0-116.140~14.04.1_all.deb" - ] - }, - { - "kernelversion": "143~14.04.1", - "kernelrelease": "4.4.0-119-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119_4.4.0-119.143~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-119-generic_4.4.0-119.143~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "145~14.04.1", - "kernelrelease": "4.4.0-121-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-generic_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-121_4.4.0-121.145~14.04.1_all.deb" - ] - }, - { - "kernelversion": "148~14.04.1", - "kernelrelease": "4.4.0-124-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124-generic_4.4.0-124.148~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-124_4.4.0-124.148~14.04.1_all.deb" - ] - }, - { - "kernelversion": "153~14.04.1", - "kernelrelease": "4.4.0-127-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127_4.4.0-127.153~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-generic_4.4.0-127.153~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "154~14.04.1", - "kernelrelease": "4.4.0-128-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-generic_4.4.0-128.154~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128_4.4.0-128.154~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "156~14.04.1", - "kernelrelease": "4.4.0-130-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-generic_4.4.0-130.156~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130_4.4.0-130.156~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "159~14.04.1", - "kernelrelease": "4.4.0-133-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-generic_4.4.0-133.159~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-133_4.4.0-133.159~14.04.1_all.deb" - ] - }, - { - "kernelversion": "160~14.04.1", - "kernelrelease": "4.4.0-134-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-generic_4.4.0-134.160~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb" - ] - }, - { - "kernelversion": "163~14.04.1", - "kernelrelease": "4.4.0-137-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-generic_4.4.0-137.163~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137_4.4.0-137.163~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "164~14.04.1", - "kernelrelease": "4.4.0-138-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138_4.4.0-138.164~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-generic_4.4.0-138.164~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "165~14.04.1", - "kernelrelease": "4.4.0-139-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-generic_4.4.0-139.165~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-139_4.4.0-139.165~14.04.1_all.deb" - ] - }, - { - "kernelversion": "167~14.04.1", - "kernelrelease": "4.4.0-141-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141_4.4.0-141.167~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-generic_4.4.0-141.167~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "168~14.04.1", - "kernelrelease": "4.4.0-142-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142_4.4.0-142.168~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-generic_4.4.0-142.168~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "169~14.04.2", - "kernelrelease": "4.4.0-143-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-generic_4.4.0-143.169~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-143_4.4.0-143.169~14.04.2_all.deb" - ] - }, - { - "kernelversion": "170~14.04.1", - "kernelrelease": "4.4.0-144-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-lowlatency_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144-generic_4.4.0-144.170~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-144_4.4.0-144.170~14.04.1_all.deb" - ] - }, - { - "kernelversion": "174~14.04.1", - "kernelrelease": "4.4.0-148-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148_4.4.0-148.174~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-148-generic_4.4.0-148.174~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37~14.04.1", - "kernelrelease": "4.4.0-21-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21_4.4.0-21.37~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-generic_4.4.0-21.37~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "40~14.04.1", - "kernelrelease": "4.4.0-22-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-generic_4.4.0-22.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22_4.4.0-22.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "43~14.04.1", - "kernelrelease": "4.4.0-24-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24_4.4.0-24.43~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-24-generic_4.4.0-24.43~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "47~14.04.1", - "kernelrelease": "4.4.0-28-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28_4.4.0-28.47~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-28-generic_4.4.0-28.47~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "50~14.04.1", - "kernelrelease": "4.4.0-31-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31_4.4.0-31.50~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-31-generic_4.4.0-31.50~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "53~14.04.1", - "kernelrelease": "4.4.0-34-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34_4.4.0-34.53~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-34-generic_4.4.0-34.53~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "55~14.04.1", - "kernelrelease": "4.4.0-36-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36_4.4.0-36.55~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-generic_4.4.0-36.55~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~14.04.1", - "kernelrelease": "4.4.0-38-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38-generic_4.4.0-38.57~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-38_4.4.0-38.57~14.04.1_all.deb" - ] - }, - { - "kernelversion": "62~14.04.1", - "kernelrelease": "4.4.0-42-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42_4.4.0-42.62~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-generic_4.4.0-42.62~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "66~14.04.1", - "kernelrelease": "4.4.0-45-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45-generic_4.4.0-45.66~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-45_4.4.0-45.66~14.04.1_all.deb" - ] - }, - { - "kernelversion": "68~14.04.1", - "kernelrelease": "4.4.0-47-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47_4.4.0-47.68~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-47-generic_4.4.0-47.68~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "72~14.04.1", - "kernelrelease": "4.4.0-51-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51-generic_4.4.0-51.72~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-51_4.4.0-51.72~14.04.1_all.deb" - ] - }, - { - "kernelversion": "74~14.04.1", - "kernelrelease": "4.4.0-53-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-generic_4.4.0-53.74~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53_4.4.0-53.74~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "78~14.04.1", - "kernelrelease": "4.4.0-57-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57_4.4.0-57.78~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-57-generic_4.4.0-57.78~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "80~14.04.1", - "kernelrelease": "4.4.0-59-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59_4.4.0-59.80~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-59-generic_4.4.0-59.80~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "83~14.04.1", - "kernelrelease": "4.4.0-62-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-generic_4.4.0-62.83~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-62_4.4.0-62.83~14.04.1_all.deb" - ] - }, - { - "kernelversion": "84~14.04.2", - "kernelrelease": "4.4.0-63-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63-generic_4.4.0-63.84~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-63_4.4.0-63.84~14.04.2_all.deb" - ] - }, - { - "kernelversion": "85~14.04.1", - "kernelrelease": "4.4.0-64-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64_4.4.0-64.85~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-generic_4.4.0-64.85~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "87~14.04.1", - "kernelrelease": "4.4.0-66-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66-generic_4.4.0-66.87~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-66_4.4.0-66.87~14.04.1_all.deb" - ] - }, - { - "kernelversion": "88~14.04.1", - "kernelrelease": "4.4.0-67-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67-generic_4.4.0-67.88~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-67_4.4.0-67.88~14.04.1_all.deb" - ] - }, - { - "kernelversion": "91~14.04.1", - "kernelrelease": "4.4.0-70-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70_4.4.0-70.91~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-generic_4.4.0-70.91~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "92~14.04.1", - "kernelrelease": "4.4.0-71-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71_4.4.0-71.92~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-71-generic_4.4.0-71.92~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "93~14.04.1", - "kernelrelease": "4.4.0-72-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72_4.4.0-72.93~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-generic_4.4.0-72.93~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "96~14.04.1", - "kernelrelease": "4.4.0-75-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75_4.4.0-75.96~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-75-generic_4.4.0-75.96~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "99~14.04.2", - "kernelrelease": "4.4.0-78-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78_4.4.0-78.99~14.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99~14.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-78-generic_4.4.0-78.99~14.04.2_amd64.deb" - ] - }, - { - "kernelversion": "100~14.04.1", - "kernelrelease": "4.4.0-79-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79_4.4.0-79.100~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-79-generic_4.4.0-79.100~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "104~14.04.1", - "kernelrelease": "4.4.0-81-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81_4.4.0-81.104~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-81-generic_4.4.0-81.104~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "106~14.04.1", - "kernelrelease": "4.4.0-83-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83_4.4.0-83.106~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-83-generic_4.4.0-83.106~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "110~14.04.1", - "kernelrelease": "4.4.0-87-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-generic_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-87_4.4.0-87.110~14.04.1_all.deb" - ] - }, - { - "kernelversion": "112~14.04.1", - "kernelrelease": "4.4.0-89-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89_4.4.0-89.112~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-generic_4.4.0-89.112~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "114~14.04.1", - "kernelrelease": "4.4.0-91-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91_4.4.0-91.114~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-91-generic_4.4.0-91.114~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "115~14.04.1", - "kernelrelease": "4.4.0-92-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92_4.4.0-92.115~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-generic_4.4.0-92.115~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "116~14.04.1", - "kernelrelease": "4.4.0-93-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93_4.4.0-93.116~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-93-generic_4.4.0-93.116~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "119~14.04.1", - "kernelrelease": "4.4.0-96-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96-generic_4.4.0-96.119~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-96_4.4.0-96.119~14.04.1_all.deb" - ] - }, - { - "kernelversion": "120~14.04.1", - "kernelrelease": "4.4.0-97-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-generic_4.4.0-97.120~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97_4.4.0-97.120~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "121~14.04.1", - "kernelrelease": "4.4.0-98-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98_4.4.0-98.121~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-98-generic_4.4.0-98.121~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "160", - "kernelrelease": "3.13.0-113-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-lowlatency_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113-generic_3.13.0-113.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-113_3.13.0-113.160_all.deb" - ] - }, - { - "kernelversion": "194", - "kernelrelease": "3.13.0-145-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-generic_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145_3.13.0-145.194_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-145-lowlatency_3.13.0-145.194_amd64.deb" - ] - }, - { - "kernelversion": "208", - "kernelrelease": "3.13.0-158-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-lowlatency_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158-generic_3.13.0-158.208_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-158_3.13.0-158.208_all.deb" - ] - }, - { - "kernelversion": "213", - "kernelrelease": "3.13.0-163-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-lowlatency_3.13.0-163.213_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163-generic_3.13.0-163.213_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-163_3.13.0-163.213_all.deb" - ] - }, - { - "kernelversion": "219", - "kernelrelease": "3.13.0-169-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-lowlatency_3.13.0-169.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169_3.13.0-169.219_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-169-generic_3.13.0-169.219_amd64.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "3.13.0-45-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45_3.13.0-45.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-lowlatency_3.13.0-45.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb" - ] - }, - { - "kernelversion": "40~14.04.1", - "kernelrelease": "3.16.0-30-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-lowlatency_3.16.0-30.40~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30_3.16.0-30.40~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-30-generic_3.16.0-30.40~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "54~14.04.1", - "kernelrelease": "3.16.0-40-lts-utopic", - "target": "ubuntu-lts-utopic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-lowlatency_3.16.0-40.54~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40-generic_3.16.0-40.54~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-headers-3.16.0-40_3.16.0-40.54~14.04.1_all.deb" - ] - }, - { - "kernelversion": "18~14.04.1", - "kernelrelease": "3.19.0-18-lts-vivid", - "target": "ubuntu-lts-vivid", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-lowlatency_3.19.0-18.18~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18_3.19.0-18.18~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-vivid/linux-headers-3.19.0-18-generic_3.19.0-18.18~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~14.04.1", - "kernelrelease": "4.15.0-1030-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~14.04.1_all.deb" - ] - }, - { - "kernelversion": "46~14.04.1", - "kernelrelease": "4.15.0-1042-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "157~14.04.1", - "kernelrelease": "4.4.0-131-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131_4.4.0-131.157~14.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-generic_4.4.0-131.157~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "161~14.04.1", - "kernelrelease": "4.4.0-135-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135_4.4.0-135.161~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-135-generic_4.4.0-135.161~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "166~14.04.1", - "kernelrelease": "4.4.0-140-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140_4.4.0-140.166~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-140-generic_4.4.0-140.166~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "172~14.04.1", - "kernelrelease": "4.4.0-146-lts-xenial", - "target": "ubuntu-lts-xenial", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146_4.4.0-146.172~14.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-lts-xenial/linux-headers-4.4.0-146-generic_4.4.0-146.172~14.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "3.13.0-24-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb" - ] - }, - { - "kernelversion": "74~16.04.1", - "kernelrelease": "4.15.0-1066-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1066_4.15.0-1066.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1066-oracle_4.15.0-1066.74~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "75~16.04.1", - "kernelrelease": "4.15.0-1067-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1067-oracle_4.15.0-1067.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1067_4.15.0-1067.75~16.04.1_all.deb" - ] - }, - { - "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-1095-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1095-aws_4.15.0-1095.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1095_4.15.0-1095.102~16.04.1_all.deb" - ] - }, - { - "kernelversion": "108~16.04.1", - "kernelrelease": "4.15.0-1095-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1095-gcp_4.15.0-1095.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1095_4.15.0-1095.108~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "103~16.04.1", - "kernelrelease": "4.15.0-1096-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1096-aws_4.15.0-1096.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1096_4.15.0-1096.103~16.04.1_all.deb" - ] - }, - { - "kernelversion": "122~16.04.1", - "kernelrelease": "4.15.0-1110-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1110_4.15.0-1110.122~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1110-azure_4.15.0-1110.122~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "139", - "kernelrelease": "4.4.0-1125-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1125-aws_4.4.0-1125.139_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1125_4.4.0-1125.139_all.deb" - ] - }, - { - "kernelversion": "238", - "kernelrelease": "4.4.0-206-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-lowlatency_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206_4.4.0-206.238_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-206-generic_4.4.0-206.238_amd64.deb" - ] - }, - { - "kernelversion": "239", - "kernelrelease": "4.4.0-207-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-lowlatency_4.4.0-207.239_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207_4.4.0-207.239_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-207-generic_4.4.0-207.239_amd64.deb" - ] - }, - { - "kernelversion": "16~16.04.1", - "kernelrelease": "4.10.0-14-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14_4.10.0-14.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-lowlatency_4.10.0-14.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-14-generic_4.10.0-14.16~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~16.04.1", - "kernelrelease": "4.10.0-19-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19_4.10.0-19.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-generic_4.10.0-19.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-19-lowlatency_4.10.0-19.21~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~16.04.1", - "kernelrelease": "4.10.0-20-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-generic_4.10.0-20.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20_4.10.0-20.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-20-lowlatency_4.10.0-20.22~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~16.04.1", - "kernelrelease": "4.10.0-21-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-lowlatency_4.10.0-21.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21_4.10.0-21.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-21-generic_4.10.0-21.23~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~16.04.1", - "kernelrelease": "4.10.0-22-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-lowlatency_4.10.0-22.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22_4.10.0-22.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-22-generic_4.10.0-22.24~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~16.04.1", - "kernelrelease": "4.10.0-24-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24_4.10.0-24.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-lowlatency_4.10.0-24.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-24-generic_4.10.0-24.28~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~16.04.1", - "kernelrelease": "4.10.0-26-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-lowlatency_4.10.0-26.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26-generic_4.10.0-26.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.10.0-26_4.10.0-26.30~16.04.1_all.deb" - ] - }, - { - "kernelversion": "30~16.04.2", - "kernelrelease": "4.10.0-27-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-generic_4.10.0-27.30~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27_4.10.0-27.30~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-27-lowlatency_4.10.0-27.30~16.04.2_amd64.deb" - ] - }, - { - "kernelversion": "32~16.04.2", - "kernelrelease": "4.10.0-28-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28_4.10.0-28.32~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-lowlatency_4.10.0-28.32~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-28-generic_4.10.0-28.32~16.04.2_amd64.deb" - ] - }, - { - "kernelversion": "34~16.04.1", - "kernelrelease": "4.10.0-30-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-generic_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30_4.10.0-30.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-30-lowlatency_4.10.0-30.34~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.10.0-32-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-lowlatency_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32-generic_4.10.0-32.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-32_4.10.0-32.36~16.04.1_all.deb" - ] - }, - { - "kernelversion": "37~16.04.1", - "kernelrelease": "4.10.0-33-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-lowlatency_4.10.0-33.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33_4.10.0-33.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-33-generic_4.10.0-33.37~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~16.04.1", - "kernelrelease": "4.10.0-35-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-lowlatency_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35-generic_4.10.0-35.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-35_4.10.0-35.39~16.04.1_all.deb" - ] - }, - { - "kernelversion": "41~16.04.1", - "kernelrelease": "4.10.0-37-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-generic_4.10.0-37.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37_4.10.0-37.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-37-lowlatency_4.10.0-37.41~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.10.0-38-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-generic_4.10.0-38.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38-lowlatency_4.10.0-38.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-38_4.10.0-38.42~16.04.1_all.deb" - ] - }, - { - "kernelversion": "44~16.04.1", - "kernelrelease": "4.10.0-40-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40_4.10.0-40.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-generic_4.10.0-40.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-40-lowlatency_4.10.0-40.44~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~16.04.1", - "kernelrelease": "4.10.0-42-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42_4.10.0-42.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-lowlatency_4.10.0-42.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.10.0-42-generic_4.10.0-42.46~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "4.11.0-1015-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1015-azure_4.11.0-1015.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1015_4.11.0-1015.15_all.deb" - ] - }, - { - "kernelversion": "16", - "kernelrelease": "4.11.0-1016-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1016-azure_4.11.0-1016.16_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1016_4.11.0-1016.16_all.deb" - ] - }, - { - "kernelversion": "19~16.04.1", - "kernelrelease": "4.11.0-13-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-lowlatency_4.11.0-13.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13_4.11.0-13.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-13-generic_4.11.0-13.19~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "20~16.04.1", - "kernelrelease": "4.11.0-14-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14_4.11.0-14.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-lowlatency_4.11.0-14.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.11.0-14-generic_4.11.0-14.20~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "7", - "kernelrelease": "4.13.0-1005-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1005_4.13.0-1005.7_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1005-azure_4.13.0-1005.7_amd64.deb" - ] - }, - { - "kernelversion": "8", - "kernelrelease": "4.13.0-1006-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1006-azure_4.13.0-1006.8_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1006_4.13.0-1006.8_all.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "4.13.0-1007-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1007-azure_4.13.0-1007.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1007_4.13.0-1007.9_all.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "4.13.0-1011-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1011_4.13.0-1011.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1011-azure_4.13.0-1011.14_amd64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "4.13.0-1014-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1014_4.13.0-1014.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1014-azure_4.13.0-1014.17_amd64.deb" - ] - }, - { - "kernelversion": "19", - "kernelrelease": "4.13.0-1016-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1016-azure_4.13.0-1016.19_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1016_4.13.0-1016.19_all.deb" - ] - }, - { - "kernelversion": "21", - "kernelrelease": "4.13.0-1018-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1018-azure_4.13.0-1018.21_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1018_4.13.0-1018.21_all.deb" - ] - }, - { - "kernelversion": "19~16.04.3", - "kernelrelease": "4.13.0-16-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-generic_4.13.0-16.19~16.04.3_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16_4.13.0-16.19~16.04.3_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-16-lowlatency_4.13.0-16.19~16.04.3_amd64.deb" - ] - }, - { - "kernelversion": "20~16.04.1", - "kernelrelease": "4.13.0-17-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-generic_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17_4.13.0-17.20~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-17-lowlatency_4.13.0-17.20~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~16.04.1", - "kernelrelease": "4.13.0-19-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-lowlatency_4.13.0-19.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19-generic_4.13.0-19.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-19_4.13.0-19.22~16.04.1_all.deb" - ] - }, - { - "kernelversion": "24~16.04.1", - "kernelrelease": "4.13.0-21-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-lowlatency_4.13.0-21.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21_4.13.0-21.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-21-generic_4.13.0-21.24~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "29~16.04.2", - "kernelrelease": "4.13.0-25-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25_4.13.0-25.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-generic_4.13.0-25.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.13.0-25-lowlatency_4.13.0-25.29~16.04.2_amd64.deb" - ] - }, - { - "kernelversion": "29~16.04.2", - "kernelrelease": "4.13.0-26-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-lowlatency_4.13.0-26.29~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26_4.13.0-26.29~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-26-generic_4.13.0-26.29~16.04.2_amd64.deb" - ] - }, - { - "kernelversion": "34~16.04.1", - "kernelrelease": "4.13.0-31-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-lowlatency_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31_4.13.0-31.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-31-generic_4.13.0-31.34~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35~16.04.1", - "kernelrelease": "4.13.0-32-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32_4.13.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-lowlatency_4.13.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-32-generic_4.13.0-32.35~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "40~16.04.1", - "kernelrelease": "4.13.0-36-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-generic_4.13.0-36.40~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36_4.13.0-36.40~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-36-lowlatency_4.13.0-36.40~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.13.0-37-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-lowlatency_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37-generic_4.13.0-37.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-37_4.13.0-37.42~16.04.1_all.deb" - ] - }, - { - "kernelversion": "43~16.04.1", - "kernelrelease": "4.13.0-38-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38_4.13.0-38.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-generic_4.13.0-38.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-38-lowlatency_4.13.0-38.43~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~16.04.1", - "kernelrelease": "4.13.0-39-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-generic_4.13.0-39.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39_4.13.0-39.44~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-39-lowlatency_4.13.0-39.44~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~16.04.1", - "kernelrelease": "4.13.0-41-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-generic_4.13.0-41.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41_4.13.0-41.46~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-41-lowlatency_4.13.0-41.46~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "48~16.04.1", - "kernelrelease": "4.13.0-43-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43_4.13.0-43.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-generic_4.13.0-43.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-43-lowlatency_4.13.0-43.48~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "50~16.04.1", - "kernelrelease": "4.13.0-45-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-generic_4.13.0-45.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45_4.13.0-45.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.13.0-45-lowlatency_4.13.0-45.50~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "10~16.04.1", - "kernelrelease": "4.15.0-1008-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1008-oracle_4.15.0-1008.10~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1008_4.15.0-1008.10~16.04.1_all.deb" - ] - }, - { - "kernelversion": "11~16.04.1", - "kernelrelease": "4.15.0-1009-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1009-oracle_4.15.0-1009.11~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1009_4.15.0-1009.11~16.04.1_all.deb" - ] - }, - { - "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-101-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-generic_4.15.0-101.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101-lowlatency_4.15.0-101.102~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-101_4.15.0-101.102~16.04.1_all.deb" - ] - }, - { - "kernelversion": "12~16.04.1", - "kernelrelease": "4.15.0-1010-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1010-oracle_4.15.0-1010.12~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1010_4.15.0-1010.12~16.04.1_all.deb" - ] - }, - { - "kernelversion": "13~16.04.2", - "kernelrelease": "4.15.0-1013-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1013-azure_4.15.0-1013.13~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1013_4.15.0-1013.13~16.04.2_all.deb" - ] - }, - { - "kernelversion": "15~16.04.1", - "kernelrelease": "4.15.0-1013-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1013_4.15.0-1013.15~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1013-oracle_4.15.0-1013.15~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "14~16.04.1", - "kernelrelease": "4.15.0-1014-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1014_4.15.0-1014.14~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1014-azure_4.15.0-1014.14~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "16~16.04.1", - "kernelrelease": "4.15.0-1014-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1014_4.15.0-1014.16~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1014-oracle_4.15.0-1014.16~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "17~16.04.1", - "kernelrelease": "4.15.0-1015-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1015_4.15.0-1015.17~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1015-oracle_4.15.0-1015.17~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "18~16.04.1", - "kernelrelease": "4.15.0-1017-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1017-gcp_4.15.0-1017.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1017_4.15.0-1017.18~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "19~16.04.2", - "kernelrelease": "4.15.0-1017-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1017-oracle_4.15.0-1017.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1017_4.15.0-1017.19~16.04.2_all.deb" - ] - }, - { - "kernelversion": "18~16.04.1", - "kernelrelease": "4.15.0-1018-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1018-azure_4.15.0-1018.18~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1018_4.15.0-1018.18~16.04.1_all.deb" - ] - }, - { - "kernelversion": "19~16.04.2", - "kernelrelease": "4.15.0-1018-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1018-gcp_4.15.0-1018.19~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1018_4.15.0-1018.19~16.04.2_amd64.deb" - ] - }, - { - "kernelversion": "20~16.04.1", - "kernelrelease": "4.15.0-1018-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1018-oracle_4.15.0-1018.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1018_4.15.0-1018.20~16.04.1_all.deb" - ] - }, - { - "kernelversion": "19~16.04.1", - "kernelrelease": "4.15.0-1019-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1019-azure_4.15.0-1019.19~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1019_4.15.0-1019.19~16.04.1_all.deb" - ] - }, - { - "kernelversion": "20~16.04.1", - "kernelrelease": "4.15.0-1019-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1019-gcp_4.15.0-1019.20~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1019_4.15.0-1019.20~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "21~16.04.1", - "kernelrelease": "4.15.0-1021-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1021-azure_4.15.0-1021.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1021_4.15.0-1021.21~16.04.1_all.deb" - ] - }, - { - "kernelversion": "22~16.04.1", - "kernelrelease": "4.15.0-1021-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1021_4.15.0-1021.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1021-gcp_4.15.0-1021.22~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "23~16.04.1", - "kernelrelease": "4.15.0-1021-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1021_4.15.0-1021.23~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1021-oracle_4.15.0-1021.23~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "22~16.04.1", - "kernelrelease": "4.15.0-1022-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1022_4.15.0-1022.22~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1022-azure_4.15.0-1022.22~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~16.04.1", - "kernelrelease": "4.15.0-1022-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1022-oracle_4.15.0-1022.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1022_4.15.0-1022.25~16.04.1_all.deb" - ] - }, - { - "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-1023-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1023-gcp_4.15.0-1023.24~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-1023-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1023_4.15.0-1023.24~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1023-azure_4.15.0-1023.24~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1023-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1023_4.15.0-1023.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1023-oracle_4.15.0-1023.26~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~16.04.2", - "kernelrelease": "4.15.0-1024-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1024-gcp_4.15.0-1024.25~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1024_4.15.0-1024.25~16.04.2_amd64.deb" - ] - }, - { - "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1025-gcp_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-1025-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1025-azure_4.15.0-1025.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1025_4.15.0-1025.26~16.04.1_all.deb" - ] - }, - { - "kernelversion": "28~16.04.1", - "kernelrelease": "4.15.0-1025-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1025_4.15.0-1025.28~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1025-oracle_4.15.0-1025.28~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "27~16.04.1", - "kernelrelease": "4.15.0-1026-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1026_4.15.0-1026.27~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1026-gcp_4.15.0-1026.27~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1026-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1026_4.15.0-1026.29~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1026-oracle_4.15.0-1026.29~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "28~16.04.1", - "kernelrelease": "4.15.0-1027-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1027-gcp_4.15.0-1027.28~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1027_4.15.0-1027.28~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "30~16.04.1", - "kernelrelease": "4.15.0-1027-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1027-oracle_4.15.0-1027.30~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1027_4.15.0-1027.30~16.04.1_all.deb" - ] - }, - { - "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1028-azure_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_all.deb" - ] - }, - { - "kernelversion": "29~16.04.1", - "kernelrelease": "4.15.0-1028-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1028-gcp_4.15.0-1028.29~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1028_4.15.0-1028.29~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~16.04.1", - "kernelrelease": "4.15.0-1029-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1029_4.15.0-1029.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1029-gcp_4.15.0-1029.31~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-1029-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1029-oracle_4.15.0-1029.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1029_4.15.0-1029.32~16.04.1_all.deb" - ] - }, - { - "kernelversion": "33~16.04.1", - "kernelrelease": "4.15.0-1030-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1030-oracle_4.15.0-1030.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1030_4.15.0-1030.33~16.04.1_all.deb" - ] - }, - { - "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-1031-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1031-azure_4.15.0-1031.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1031_4.15.0-1031.32~16.04.1_all.deb" - ] - }, - { - "kernelversion": "34~16.04.1", - "kernelrelease": "4.15.0-1031-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1031-oracle_4.15.0-1031.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1031_4.15.0-1031.34~16.04.1_all.deb" - ] - }, - { - "kernelversion": "33~16.04.1", - "kernelrelease": "4.15.0-1032-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1032-azure_4.15.0-1032.33~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1032_4.15.0-1032.33~16.04.1_all.deb" - ] - }, - { - "kernelversion": "34~16.04.1", - "kernelrelease": "4.15.0-1032-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1032_4.15.0-1032.34~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1032-gcp_4.15.0-1032.34~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "35~16.04.1", - "kernelrelease": "4.15.0-1033-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1033-gcp_4.15.0-1033.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1033_4.15.0-1033.35~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-1033-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1033_4.15.0-1033.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1033-oracle_4.15.0-1033.36~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-1034-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1034_4.15.0-1034.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1034-gcp_4.15.0-1034.36~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-1035-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1035-azure_4.15.0-1035.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1035_4.15.0-1035.36~16.04.1_all.deb" - ] - }, - { - "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1035-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1035_4.15.0-1035.38~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1035-oracle_4.15.0-1035.38~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1036-azure_4.15.0-1036.38~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "38~16.04.1", - "kernelrelease": "4.15.0-1036-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1036-gcp_4.15.0-1036.38~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1036_4.15.0-1036.38~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~16.04.1", - "kernelrelease": "4.15.0-1037-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1037-gcp_4.15.0-1037.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~16.04.1", - "kernelrelease": "4.15.0-1037-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1037_4.15.0-1037.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1037-azure_4.15.0-1037.39~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "41~16.04.1", - "kernelrelease": "4.15.0-1037-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1037-oracle_4.15.0-1037.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1037_4.15.0-1037.41~16.04.1_all.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.15.0-1038-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1038_4.15.0-1038.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1038-oracle_4.15.0-1038.42~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "43~16.04.1", - "kernelrelease": "4.15.0-1039-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1039_4.15.0-1039.43~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1039-oracle_4.15.0-1039.43~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "4.15.0-1040-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1040-azure_4.15.0-1040.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1040_4.15.0-1040.44_all.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.15.0-1040-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1040-gcp_4.15.0-1040.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1040_4.15.0-1040.42~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "4.15.0-1041-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1041-azure_4.15.0-1041.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1041_4.15.0-1041.45_all.deb" - ] - }, - { - "kernelversion": "49~16.04.1", - "kernelrelease": "4.15.0-1045-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1045-oracle_4.15.0-1045.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1045_4.15.0-1045.49~16.04.1_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.15.0-1046-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1046-azure_4.15.0-1046.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1046_4.15.0-1046.50_all.deb" - ] - }, - { - "kernelversion": "50~16.04.1", - "kernelrelease": "4.15.0-1046-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1046_4.15.0-1046.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1046-oracle_4.15.0-1046.50~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.15.0-1047-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1047-gcp_4.15.0-1047.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1047_4.15.0-1047.50_amd64.deb" - ] - }, - { - "kernelversion": "54", - "kernelrelease": "4.15.0-1049-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1049-azure_4.15.0-1049.54_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1049_4.15.0-1049.54_all.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "4.15.0-1050-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1050_4.15.0-1050.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1050-azure_4.15.0-1050.55_amd64.deb" - ] - }, - { - "kernelversion": "54~16.04.1", - "kernelrelease": "4.15.0-1050-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1050-oracle_4.15.0-1050.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1050_4.15.0-1050.54~16.04.1_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "4.15.0-1051-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1051-azure_4.15.0-1051.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1051_4.15.0-1051.56_all.deb" - ] - }, - { - "kernelversion": "55~16.04.1", - "kernelrelease": "4.15.0-1051-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1051-oracle_4.15.0-1051.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1051_4.15.0-1051.55~16.04.1_all.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "4.15.0-1052-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1052_4.15.0-1052.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1052-azure_4.15.0-1052.57_amd64.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "4.15.0-1052-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1052-gcp_4.15.0-1052.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1052_4.15.0-1052.56_amd64.deb" - ] - }, - { - "kernelversion": "57~16.04.1", - "kernelrelease": "4.15.0-1053-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1053-oracle_4.15.0-1053.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1053_4.15.0-1053.57~16.04.1_all.deb" - ] - }, - { - "kernelversion": "58~16.04.1", - "kernelrelease": "4.15.0-1054-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1054_4.15.0-1054.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1054-oracle_4.15.0-1054.58~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "60", - "kernelrelease": "4.15.0-1055-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1055_4.15.0-1055.60_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1055-azure_4.15.0-1055.60_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "4.15.0-1055-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1055_4.15.0-1055.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1055-gcp_4.15.0-1055.59_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "4.15.0-1056-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1056_4.15.0-1056.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1056-azure_4.15.0-1056.61_amd64.deb" - ] - }, - { - "kernelversion": "61~16.04.1", - "kernelrelease": "4.15.0-1056-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1056-oracle_4.15.0-1056.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1056_4.15.0-1056.61~16.04.1_all.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.15.0-1058-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1058_4.15.0-1058.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1058-gcp_4.15.0-1058.62_amd64.deb" - ] - }, - { - "kernelversion": "64~16.04.1", - "kernelrelease": "4.15.0-1058-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1058_4.15.0-1058.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1058-oracle_4.15.0-1058.64~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "4.15.0-1059-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1059_4.15.0-1059.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1059-azure_4.15.0-1059.64_amd64.deb" - ] - }, - { - "kernelversion": "107~16.04.1", - "kernelrelease": "4.15.0-106-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-generic_4.15.0-106.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106_4.15.0-106.107~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-106-lowlatency_4.15.0-106.107~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "4.15.0-1060-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1060_4.15.0-1060.65_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1060-azure_4.15.0-1060.65_amd64.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "4.15.0-1060-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1060-gcp_4.15.0-1060.64_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1060_4.15.0-1060.64_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "4.15.0-1061-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1061-azure_4.15.0-1061.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1061_4.15.0-1061.66_all.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "4.15.0-1061-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1061-gcp_4.15.0-1061.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1061_4.15.0-1061.65_amd64.deb" - ] - }, - { - "kernelversion": "67~16.04.1", - "kernelrelease": "4.15.0-1061-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1061-oracle_4.15.0-1061.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1061_4.15.0-1061.67~16.04.1_all.deb" - ] - }, - { - "kernelversion": "68~16.04.1", - "kernelrelease": "4.15.0-1062-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1062_4.15.0-1062.68~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1062-oracle_4.15.0-1062.68~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "4.15.0-1063-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1063-azure_4.15.0-1063.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1063_4.15.0-1063.68_all.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "4.15.0-1064-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1064_4.15.0-1064.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1064-azure_4.15.0-1064.69_amd64.deb" - ] - }, - { - "kernelversion": "71~16.04.1", - "kernelrelease": "4.15.0-1064-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1064-oracle_4.15.0-1064.71~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1064_4.15.0-1064.71~16.04.1_all.deb" - ] - }, - { - "kernelversion": "73~16.04.1", - "kernelrelease": "4.15.0-1065-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1065-oracle_4.15.0-1065.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1065_4.15.0-1065.73~16.04.1_all.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "4.15.0-1066-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1066_4.15.0-1066.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1066-azure_4.15.0-1066.71_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "4.15.0-1067-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1067-azure_4.15.0-1067.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1067_4.15.0-1067.72_all.deb" - ] - }, - { - "kernelversion": "76~16.04.1", - "kernelrelease": "4.15.0-1068-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1068-oracle_4.15.0-1068.76~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1068_4.15.0-1068.76~16.04.1_all.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "4.15.0-1069-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1069_4.15.0-1069.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1069-azure_4.15.0-1069.74_amd64.deb" - ] - }, - { - "kernelversion": "77~16.04.1", - "kernelrelease": "4.15.0-1069-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1069_4.15.0-1069.77~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1069-oracle_4.15.0-1069.77~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "108~16.04.1", - "kernelrelease": "4.15.0-107-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-lowlatency_4.15.0-107.108~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107-generic_4.15.0-107.108~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-107_4.15.0-107.108~16.04.1_all.deb" - ] - }, - { - "kernelversion": "78~16.04.1", - "kernelrelease": "4.15.0-1070-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1070_4.15.0-1070.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1070-oracle_4.15.0-1070.78~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "4.15.0-1071-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1071_4.15.0-1071.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1071-azure_4.15.0-1071.76_amd64.deb" - ] - }, - { - "kernelversion": "81~16.04.1", - "kernelrelease": "4.15.0-1071-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1071_4.15.0-1071.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1071-gcp_4.15.0-1071.81~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "4.15.0-1075-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1075_4.15.0-1075.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1075-azure_4.15.0-1075.80_amd64.deb" - ] - }, - { - "kernelversion": "87~16.04.1", - "kernelrelease": "4.15.0-1077-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1077_4.15.0-1077.87~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1077-gcp_4.15.0-1077.87~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "88~16.04.1", - "kernelrelease": "4.15.0-1078-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1078_4.15.0-1078.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1078-gcp_4.15.0-1078.88~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "90~16.04.1", - "kernelrelease": "4.15.0-1080-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1080-gcp_4.15.0-1080.90~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1080_4.15.0-1080.90~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "92~16.04.1", - "kernelrelease": "4.15.0-1081-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1081-gcp_4.15.0-1081.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1081_4.15.0-1081.92~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "92~16.04.1", - "kernelrelease": "4.15.0-1082-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1082-azure_4.15.0-1082.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1082_4.15.0-1082.92~16.04.1_all.deb" - ] - }, - { - "kernelversion": "93~16.04.1", - "kernelrelease": "4.15.0-1083-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1083_4.15.0-1083.93~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1083-azure_4.15.0-1083.93~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "94~16.04.1", - "kernelrelease": "4.15.0-1083-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1083_4.15.0-1083.94~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1083-gcp_4.15.0-1083.94~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "95~16.04.1", - "kernelrelease": "4.15.0-1084-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1084-gcp_4.15.0-1084.95~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1084_4.15.0-1084.95~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "98~16.04.1", - "kernelrelease": "4.15.0-1086-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1086-gcp_4.15.0-1086.98~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1086_4.15.0-1086.98~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "100~16.04.1", - "kernelrelease": "4.15.0-1087-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1087_4.15.0-1087.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1087-gcp_4.15.0-1087.100~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "99~16.04.1", - "kernelrelease": "4.15.0-1089-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1089_4.15.0-1089.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1089-azure_4.15.0-1089.99~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "103~16.04.1", - "kernelrelease": "4.15.0-1090-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1090-gcp_4.15.0-1090.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1090_4.15.0-1090.103~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "101~16.04.1", - "kernelrelease": "4.15.0-1091-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1091-azure_4.15.0-1091.101~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1091_4.15.0-1091.101~16.04.1_all.deb" - ] - }, - { - "kernelversion": "104~16.04.1", - "kernelrelease": "4.15.0-1091-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1091_4.15.0-1091.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1091-gcp_4.15.0-1091.104~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "102~16.04.1", - "kernelrelease": "4.15.0-1092-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1092-azure_4.15.0-1092.102~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1092_4.15.0-1092.102~16.04.1_all.deb" - ] - }, - { - "kernelversion": "105~16.04.1", - "kernelrelease": "4.15.0-1092-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1092_4.15.0-1092.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1092-gcp_4.15.0-1092.105~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "99~16.04.1", - "kernelrelease": "4.15.0-1093-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1093_4.15.0-1093.99~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1093-aws_4.15.0-1093.99~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "103~16.04.1", - "kernelrelease": "4.15.0-1093-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1093_4.15.0-1093.103~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1093-azure_4.15.0-1093.103~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "106~16.04.1", - "kernelrelease": "4.15.0-1093-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1093_4.15.0-1093.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1093-gcp_4.15.0-1093.106~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "101~16.04.1", - "kernelrelease": "4.15.0-1094-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1094_4.15.0-1094.101~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1094-aws_4.15.0-1094.101~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "107~16.04.1", - "kernelrelease": "4.15.0-1094-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1094-gcp_4.15.0-1094.107~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1094_4.15.0-1094.107~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "105~16.04.1", - "kernelrelease": "4.15.0-1095-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1095_4.15.0-1095.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1095-azure_4.15.0-1095.105~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "106~16.04.1", - "kernelrelease": "4.15.0-1096-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1096_4.15.0-1096.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1096-azure_4.15.0-1096.106~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "109~16.04.1", - "kernelrelease": "4.15.0-1096-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1096-gcp_4.15.0-1096.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1096_4.15.0-1096.109~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "104~16.04.1", - "kernelrelease": "4.15.0-1097-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1097_4.15.0-1097.104~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1097-aws_4.15.0-1097.104~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "110~16.04.1", - "kernelrelease": "4.15.0-1097-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1097-gcp_4.15.0-1097.110~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1097_4.15.0-1097.110~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "105~16.04.1", - "kernelrelease": "4.15.0-1098-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1098-aws_4.15.0-1098.105~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1098_4.15.0-1098.105~16.04.1_all.deb" - ] - }, - { - "kernelversion": "109~16.04.1", - "kernelrelease": "4.15.0-1098-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1098_4.15.0-1098.109~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1098-azure_4.15.0-1098.109~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "111~16.04.1", - "kernelrelease": "4.15.0-1098-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1098_4.15.0-1098.111~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1098-gcp_4.15.0-1098.111~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "106~16.04.1", - "kernelrelease": "4.15.0-1099-aws-hwe", - "target": "ubuntu-aws-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-aws-headers-4.15.0-1099_4.15.0-1099.106~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws-hwe/linux-headers-4.15.0-1099-aws_4.15.0-1099.106~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "113~16.04.1", - "kernelrelease": "4.15.0-1102-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1102_4.15.0-1102.113~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1102-azure_4.15.0-1102.113~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "114~16.04.1", - "kernelrelease": "4.15.0-1103-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1103-azure_4.15.0-1103.114~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1103_4.15.0-1103.114~16.04.1_all.deb" - ] - }, - { - "kernelversion": "118~16.04.1", - "kernelrelease": "4.15.0-1106-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1106_4.15.0-1106.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1106-azure_4.15.0-1106.118~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "120~16.04.1", - "kernelrelease": "4.15.0-1108-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1108-azure_4.15.0-1108.120~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1108_4.15.0-1108.120~16.04.1_all.deb" - ] - }, - { - "kernelversion": "121~16.04.1", - "kernelrelease": "4.15.0-1109-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1109_4.15.0-1109.121~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1109-azure_4.15.0-1109.121~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "123~16.04.1", - "kernelrelease": "4.15.0-1111-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1111-azure_4.15.0-1111.123~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1111_4.15.0-1111.123~16.04.1_all.deb" - ] - }, - { - "kernelversion": "124~16.04.1", - "kernelrelease": "4.15.0-1112-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1112_4.15.0-1112.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1112-azure_4.15.0-1112.124~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "126~16.04.1", - "kernelrelease": "4.15.0-1113-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1113_4.15.0-1113.126~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1113-azure_4.15.0-1113.126~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "113~16.04.1", - "kernelrelease": "4.15.0-112-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-lowlatency_4.15.0-112.113~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112-generic_4.15.0-112.113~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-112_4.15.0-112.113~16.04.1_all.deb" - ] - }, - { - "kernelversion": "116~16.04.1", - "kernelrelease": "4.15.0-115-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115_4.15.0-115.116~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-generic_4.15.0-115.116~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-115-lowlatency_4.15.0-115.116~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "118~16.04.1", - "kernelrelease": "4.15.0-117-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117_4.15.0-117.118~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-generic_4.15.0-117.118~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-117-lowlatency_4.15.0-117.118~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "119~16.04.1", - "kernelrelease": "4.15.0-118-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118_4.15.0-118.119~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-generic_4.15.0-118.119~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-118-lowlatency_4.15.0-118.119~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "122~16.04.1", - "kernelrelease": "4.15.0-120-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-generic_4.15.0-120.122~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120-lowlatency_4.15.0-120.122~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-120_4.15.0-120.122~16.04.1_all.deb" - ] - }, - { - "kernelversion": "124~16.04.1", - "kernelrelease": "4.15.0-122-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-generic_4.15.0-122.124~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122_4.15.0-122.124~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-122-lowlatency_4.15.0-122.124~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "126~16.04.1", - "kernelrelease": "4.15.0-123-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-generic_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123-lowlatency_4.15.0-123.126~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-123_4.15.0-123.126~16.04.1_all.deb" - ] - }, - { - "kernelversion": "131~16.04.1", - "kernelrelease": "4.15.0-128-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-lowlatency_4.15.0-128.131~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128_4.15.0-128.131~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-128-generic_4.15.0-128.131~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "132~16.04.1", - "kernelrelease": "4.15.0-129-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-generic_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129-lowlatency_4.15.0-129.132~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-129_4.15.0-129.132~16.04.1_all.deb" - ] - }, - { - "kernelversion": "14~16.04.1", - "kernelrelease": "4.15.0-13-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13_4.15.0-13.14~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-lowlatency_4.15.0-13.14~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-13-generic_4.15.0-13.14~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "136~16.04.1", - "kernelrelease": "4.15.0-132-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-lowlatency_4.15.0-132.136~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132_4.15.0-132.136~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-132-generic_4.15.0-132.136~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "137~16.04.1", - "kernelrelease": "4.15.0-133-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-lowlatency_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133-generic_4.15.0-133.137~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-133_4.15.0-133.137~16.04.1_all.deb" - ] - }, - { - "kernelversion": "140~16.04.1", - "kernelrelease": "4.15.0-136-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-generic_4.15.0-136.140~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136-lowlatency_4.15.0-136.140~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-136_4.15.0-136.140~16.04.1_all.deb" - ] - }, - { - "kernelversion": "141~16.04.1", - "kernelrelease": "4.15.0-137-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137_4.15.0-137.141~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-lowlatency_4.15.0-137.141~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-137-generic_4.15.0-137.141~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "143~16.04.1", - "kernelrelease": "4.15.0-139-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-generic_4.15.0-139.143~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139-lowlatency_4.15.0-139.143~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-139_4.15.0-139.143~16.04.1_all.deb" - ] - }, - { - "kernelversion": "144~16.04.1", - "kernelrelease": "4.15.0-140-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-generic_4.15.0-140.144~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140_4.15.0-140.144~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-140-lowlatency_4.15.0-140.144~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "146~16.04.1", - "kernelrelease": "4.15.0-142-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142_4.15.0-142.146~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-generic_4.15.0-142.146~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-142-lowlatency_4.15.0-142.146~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "16~16.04.1", - "kernelrelease": "4.15.0-15-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-lowlatency_4.15.0-15.16~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15-generic_4.15.0-15.16~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-15_4.15.0-15.16~16.04.1_all.deb" - ] - }, - { - "kernelversion": "21~16.04.1", - "kernelrelease": "4.15.0-20-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-generic_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20-lowlatency_4.15.0-20.21~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-20_4.15.0-20.21~16.04.1_all.deb" - ] - }, - { - "kernelversion": "24~16.04.1", - "kernelrelease": "4.15.0-22-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-lowlatency_4.15.0-22.24~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22_4.15.0-22.24~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-22-generic_4.15.0-22.24~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "25~16.04.1", - "kernelrelease": "4.15.0-23-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23_4.15.0-23.25~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-lowlatency_4.15.0-23.25~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.15.0-23-generic_4.15.0-23.25~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "26~16.04.1", - "kernelrelease": "4.15.0-24-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-lowlatency_4.15.0-24.26~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24-generic_4.15.0-24.26~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-24_4.15.0-24.26~16.04.1_all.deb" - ] - }, - { - "kernelversion": "31~16.04.1", - "kernelrelease": "4.15.0-29-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-lowlatency_4.15.0-29.31~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29_4.15.0-29.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-29-generic_4.15.0-29.31~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-30-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-lowlatency_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30-generic_4.15.0-30.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-30_4.15.0-30.32~16.04.1_all.deb" - ] - }, - { - "kernelversion": "35~16.04.1", - "kernelrelease": "4.15.0-32-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32_4.15.0-32.35~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-generic_4.15.0-32.35~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-32-lowlatency_4.15.0-32.35~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.15.0-33-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-generic_4.15.0-33.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33-lowlatency_4.15.0-33.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-33_4.15.0-33.36~16.04.1_all.deb" - ] - }, - { - "kernelversion": "37~16.04.1", - "kernelrelease": "4.15.0-34-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-lowlatency_4.15.0-34.37~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34_4.15.0-34.37~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-34-generic_4.15.0-34.37~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39~16.04.1", - "kernelrelease": "4.15.0-36-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36_4.15.0-36.39~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-generic_4.15.0-36.39~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-36-lowlatency_4.15.0-36.39~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.15.0-39-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39_4.15.0-39.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-lowlatency_4.15.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-39-generic_4.15.0-39.42~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "45~16.04.1", - "kernelrelease": "4.15.0-42-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-generic_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42_4.15.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-42-lowlatency_4.15.0-42.45~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46~16.04.1", - "kernelrelease": "4.15.0-43-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-generic_4.15.0-43.46~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43-lowlatency_4.15.0-43.46~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-43_4.15.0-43.46~16.04.1_all.deb" - ] - }, - { - "kernelversion": "48~16.04.1", - "kernelrelease": "4.15.0-45-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-lowlatency_4.15.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45-generic_4.15.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-45_4.15.0-45.48~16.04.1_all.deb" - ] - }, - { - "kernelversion": "49~16.04.1", - "kernelrelease": "4.15.0-46-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-generic_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46-lowlatency_4.15.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-46_4.15.0-46.49~16.04.1_all.deb" - ] - }, - { - "kernelversion": "50~16.04.1", - "kernelrelease": "4.15.0-47-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47_4.15.0-47.50~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-lowlatency_4.15.0-47.50~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-47-generic_4.15.0-47.50~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "54~16.04.1", - "kernelrelease": "4.15.0-50-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-generic_4.15.0-50.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50-lowlatency_4.15.0-50.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-50_4.15.0-50.54~16.04.1_all.deb" - ] - }, - { - "kernelversion": "55~16.04.1", - "kernelrelease": "4.15.0-51-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51_4.15.0-51.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-generic_4.15.0-51.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-51-lowlatency_4.15.0-51.55~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~16.04.1", - "kernelrelease": "4.15.0-52-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-lowlatency_4.15.0-52.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52-generic_4.15.0-52.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-52_4.15.0-52.56~16.04.1_all.deb" - ] - }, - { - "kernelversion": "58~16.04.1", - "kernelrelease": "4.15.0-54-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54_4.15.0-54.58~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-generic_4.15.0-54.58~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-54-lowlatency_4.15.0-54.58~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "60~16.04.2", - "kernelrelease": "4.15.0-55-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55_4.15.0-55.60~16.04.2_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-lowlatency_4.15.0-55.60~16.04.2_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-55-generic_4.15.0-55.60~16.04.2_amd64.deb" - ] - }, - { - "kernelversion": "64~16.04.1", - "kernelrelease": "4.15.0-58-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-lowlatency_4.15.0-58.64~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58_4.15.0-58.64~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-58-generic_4.15.0-58.64~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "67~16.04.1", - "kernelrelease": "4.15.0-60-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60_4.15.0-60.67~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-generic_4.15.0-60.67~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-60-lowlatency_4.15.0-60.67~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "69~16.04.1", - "kernelrelease": "4.15.0-62-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62_4.15.0-62.69~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-lowlatency_4.15.0-62.69~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-62-generic_4.15.0-62.69~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "73~16.04.1", - "kernelrelease": "4.15.0-64-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-generic_4.15.0-64.73~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64-lowlatency_4.15.0-64.73~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-64_4.15.0-64.73~16.04.1_all.deb" - ] - }, - { - "kernelversion": "74~16.04.1", - "kernelrelease": "4.15.0-65-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-lowlatency_4.15.0-65.74~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65-generic_4.15.0-65.74~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-65_4.15.0-65.74~16.04.1_all.deb" - ] - }, - { - "kernelversion": "75~16.04.1", - "kernelrelease": "4.15.0-66-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66_4.15.0-66.75~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-lowlatency_4.15.0-66.75~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-66-generic_4.15.0-66.75~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "78~16.04.1", - "kernelrelease": "4.15.0-69-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-generic_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69_4.15.0-69.78~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-69-lowlatency_4.15.0-69.78~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "79~16.04.1", - "kernelrelease": "4.15.0-70-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70_4.15.0-70.79~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-generic_4.15.0-70.79~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-70-lowlatency_4.15.0-70.79~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "81~16.04.1", - "kernelrelease": "4.15.0-72-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-lowlatency_4.15.0-72.81~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72-generic_4.15.0-72.81~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-72_4.15.0-72.81~16.04.1_all.deb" - ] - }, - { - "kernelversion": "83~16.04.1", - "kernelrelease": "4.15.0-74-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74_4.15.0-74.83~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-generic_4.15.0-74.83~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-74-lowlatency_4.15.0-74.83~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "86~16.04.1", - "kernelrelease": "4.15.0-76-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-lowlatency_4.15.0-76.86~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76_4.15.0-76.86~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-76-generic_4.15.0-76.86~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "88~16.04.1", - "kernelrelease": "4.15.0-88-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-lowlatency_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88_4.15.0-88.88~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-88-generic_4.15.0-88.88~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "92~16.04.1", - "kernelrelease": "4.15.0-91-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-lowlatency_4.15.0-91.92~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91_4.15.0-91.92~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-91-generic_4.15.0-91.92~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "97~16.04.1", - "kernelrelease": "4.15.0-96-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96_4.15.0-96.97~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-generic_4.15.0-96.97~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-96-lowlatency_4.15.0-96.97~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "100~16.04.1", - "kernelrelease": "4.15.0-99-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-lowlatency_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99-generic_4.15.0-99.100~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-99_4.15.0-99.100~16.04.1_all.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "4.4.0-1007-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1007_4.4.0-1007.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1007-kvm_4.4.0-1007.12_amd64.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "4.4.0-1008-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1008-kvm_4.4.0-1008.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1008_4.4.0-1008.13_all.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "4.4.0-1009-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1009_4.4.0-1009.14_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1009-kvm_4.4.0-1009.14_amd64.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "4.4.0-101-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-generic_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101_4.4.0-101.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-101-lowlatency_4.4.0-101.124_amd64.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "4.4.0-1010-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1010_4.4.0-1010.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1010-kvm_4.4.0-1010.15_amd64.deb" - ] - }, - { - "kernelversion": "17", - "kernelrelease": "4.4.0-1012-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1012_4.4.0-1012.17_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1012-kvm_4.4.0-1012.17_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "4.4.0-1013-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1013-aws_4.4.0-1013.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1013_4.4.0-1013.22_all.deb" - ] - }, - { - "kernelversion": "18", - "kernelrelease": "4.4.0-1013-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1013_4.4.0-1013.18_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1013-kvm_4.4.0-1013.18_amd64.deb" - ] - }, - { - "kernelversion": "20", - "kernelrelease": "4.4.0-1015-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1015_4.4.0-1015.20_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1015-kvm_4.4.0-1015.20_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "4.4.0-1016-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1016_4.4.0-1016.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1016-aws_4.4.0-1016.25_amd64.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "4.4.0-1017-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1017_4.4.0-1017.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1017-aws_4.4.0-1017.26_amd64.deb" - ] - }, - { - "kernelversion": "22", - "kernelrelease": "4.4.0-1017-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1017-kvm_4.4.0-1017.22_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1017_4.4.0-1017.22_all.deb" - ] - }, - { - "kernelversion": "27", - "kernelrelease": "4.4.0-1018-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1018_4.4.0-1018.27_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1018-aws_4.4.0-1018.27_amd64.deb" - ] - }, - { - "kernelversion": "24", - "kernelrelease": "4.4.0-1019-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1019-kvm_4.4.0-1019.24_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1019_4.4.0-1019.24_all.deb" - ] - }, - { - "kernelversion": "29", - "kernelrelease": "4.4.0-1020-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1020_4.4.0-1020.29_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1020-aws_4.4.0-1020.29_amd64.deb" - ] - }, - { - "kernelversion": "25", - "kernelrelease": "4.4.0-1020-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1020-kvm_4.4.0-1020.25_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1020_4.4.0-1020.25_all.deb" - ] - }, - { - "kernelversion": "26", - "kernelrelease": "4.4.0-1021-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1021_4.4.0-1021.26_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1021-kvm_4.4.0-1021.26_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "4.4.0-1022-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1022_4.4.0-1022.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1022-aws_4.4.0-1022.31_amd64.deb" - ] - }, - { - "kernelversion": "28", - "kernelrelease": "4.4.0-1023-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1023_4.4.0-1023.28_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1023-kvm_4.4.0-1023.28_amd64.deb" - ] - }, - { - "kernelversion": "35", - "kernelrelease": "4.4.0-1026-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1026_4.4.0-1026.35_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1026-aws_4.4.0-1026.35_amd64.deb" - ] - }, - { - "kernelversion": "31", - "kernelrelease": "4.4.0-1026-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1026_4.4.0-1026.31_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1026-kvm_4.4.0-1026.31_amd64.deb" - ] - }, - { - "kernelversion": "32", - "kernelrelease": "4.4.0-1027-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1027_4.4.0-1027.32_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1027-kvm_4.4.0-1027.32_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "4.4.0-1028-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1028_4.4.0-1028.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1028-aws_4.4.0-1028.37_amd64.deb" - ] - }, - { - "kernelversion": "34", - "kernelrelease": "4.4.0-1029-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1029_4.4.0-1029.34_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1029-kvm_4.4.0-1029.34_amd64.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "4.4.0-103-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-lowlatency_4.4.0-103.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103_4.4.0-103.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-103-generic_4.4.0-103.126_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.4.0-1030-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1030_4.4.0-1030.39_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1030-aws_4.4.0-1030.39_amd64.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "4.4.0-1031-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1031-aws_4.4.0-1031.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1031_4.4.0-1031.40_all.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "4.4.0-1031-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1031-kvm_4.4.0-1031.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1031_4.4.0-1031.37_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "4.4.0-1032-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1032_4.4.0-1032.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1032-aws_4.4.0-1032.41_amd64.deb" - ] - }, - { - "kernelversion": "38", - "kernelrelease": "4.4.0-1032-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1032-kvm_4.4.0-1032.38_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1032_4.4.0-1032.38_all.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "4.4.0-1035-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1035-aws_4.4.0-1035.44_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1035_4.4.0-1035.44_all.deb" - ] - }, - { - "kernelversion": "41", - "kernelrelease": "4.4.0-1035-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1035-kvm_4.4.0-1035.41_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1035_4.4.0-1035.41_all.deb" - ] - }, - { - "kernelversion": "42", - "kernelrelease": "4.4.0-1036-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1036_4.4.0-1036.42_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1036-kvm_4.4.0-1036.42_amd64.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.4.0-1037-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1037-kvm_4.4.0-1037.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1037_4.4.0-1037.43_all.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "4.4.0-1038-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1038-aws_4.4.0-1038.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1038_4.4.0-1038.47_all.deb" - ] - }, - { - "kernelversion": "48", - "kernelrelease": "4.4.0-1039-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1039_4.4.0-1039.48_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1039-aws_4.4.0-1039.48_amd64.deb" - ] - }, - { - "kernelversion": "45", - "kernelrelease": "4.4.0-1039-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1039-kvm_4.4.0-1039.45_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1039_4.4.0-1039.45_all.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.4.0-104-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-lowlatency_4.4.0-104.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104-generic_4.4.0-104.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-104_4.4.0-104.127_all.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.4.0-1040-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1040_4.4.0-1040.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1040-kvm_4.4.0-1040.46_amd64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.4.0-1041-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1041_4.4.0-1041.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1041-aws_4.4.0-1041.50_amd64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "4.4.0-1041-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1041-kvm_4.4.0-1041.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1041_4.4.0-1041.47_all.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "4.4.0-1043-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1043_4.4.0-1043.52_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1043-aws_4.4.0-1043.52_amd64.deb" - ] - }, - { - "kernelversion": "49", - "kernelrelease": "4.4.0-1043-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1043-kvm_4.4.0-1043.49_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1043_4.4.0-1043.49_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.4.0-1044-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1044_4.4.0-1044.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1044-aws_4.4.0-1044.53_amd64.deb" - ] - }, - { - "kernelversion": "52", - "kernelrelease": "4.4.0-1046-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1046-kvm_4.4.0-1046.52_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1046_4.4.0-1046.52_all.deb" - ] - }, - { - "kernelversion": "56", - "kernelrelease": "4.4.0-1047-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1047-aws_4.4.0-1047.56_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1047_4.4.0-1047.56_all.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.4.0-1047-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1047_4.4.0-1047.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1047-kvm_4.4.0-1047.53_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "4.4.0-1048-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1048-aws_4.4.0-1048.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1048_4.4.0-1048.57_all.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "4.4.0-1048-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1048_4.4.0-1048.55_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1048-kvm_4.4.0-1048.55_amd64.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "4.4.0-1049-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1049-aws_4.4.0-1049.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1049_4.4.0-1049.58_all.deb" - ] - }, - { - "kernelversion": "58", - "kernelrelease": "4.4.0-1051-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1051-kvm_4.4.0-1051.58_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1051_4.4.0-1051.58_all.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "4.4.0-1052-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1052-aws_4.4.0-1052.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1052_4.4.0-1052.61_all.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "4.4.0-1052-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1052_4.4.0-1052.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1052-kvm_4.4.0-1052.59_amd64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "4.4.0-1054-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1054_4.4.0-1054.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1054-aws_4.4.0-1054.63_amd64.deb" - ] - }, - { - "kernelversion": "61", - "kernelrelease": "4.4.0-1054-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1054-kvm_4.4.0-1054.61_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1054_4.4.0-1054.61_all.deb" - ] - }, - { - "kernelversion": "64", - "kernelrelease": "4.4.0-1055-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1055_4.4.0-1055.64_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1055-aws_4.4.0-1055.64_amd64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "4.4.0-1056-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1056-kvm_4.4.0-1056.63_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1056_4.4.0-1056.63_all.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "4.4.0-1057-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1057-aws_4.4.0-1057.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1057_4.4.0-1057.66_all.deb" - ] - }, - { - "kernelversion": "65", - "kernelrelease": "4.4.0-1058-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1058_4.4.0-1058.65_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1058-kvm_4.4.0-1058.65_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "4.4.0-1059-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1059_4.4.0-1059.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1059-kvm_4.4.0-1059.66_amd64.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "4.4.0-1060-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1060-aws_4.4.0-1060.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1060_4.4.0-1060.69_all.deb" - ] - }, - { - "kernelversion": "67", - "kernelrelease": "4.4.0-1060-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1060-kvm_4.4.0-1060.67_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1060_4.4.0-1060.67_all.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "4.4.0-1061-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1061-aws_4.4.0-1061.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1061_4.4.0-1061.70_all.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "4.4.0-1062-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1062-aws_4.4.0-1062.71_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1062_4.4.0-1062.71_all.deb" - ] - }, - { - "kernelversion": "69", - "kernelrelease": "4.4.0-1062-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1062_4.4.0-1062.69_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1062-kvm_4.4.0-1062.69_amd64.deb" - ] - }, - { - "kernelversion": "70", - "kernelrelease": "4.4.0-1063-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1063_4.4.0-1063.70_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1063-kvm_4.4.0-1063.70_amd64.deb" - ] - }, - { - "kernelversion": "71", - "kernelrelease": "4.4.0-1064-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1064_4.4.0-1064.71_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1064-kvm_4.4.0-1064.71_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "4.4.0-1065-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1065_4.4.0-1065.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1065-aws_4.4.0-1065.75_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "4.4.0-1065-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1065_4.4.0-1065.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1065-kvm_4.4.0-1065.72_amd64.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "4.4.0-1066-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1066_4.4.0-1066.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1066-aws_4.4.0-1066.76_amd64.deb" - ] - }, - { - "kernelversion": "73", - "kernelrelease": "4.4.0-1066-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1066_4.4.0-1066.73_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1066-kvm_4.4.0-1066.73_amd64.deb" - ] - }, - { - "kernelversion": "75", - "kernelrelease": "4.4.0-1068-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1068_4.4.0-1068.75_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1068-kvm_4.4.0-1068.75_amd64.deb" - ] - }, - { - "kernelversion": "79", - "kernelrelease": "4.4.0-1069-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1069-aws_4.4.0-1069.79_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1069_4.4.0-1069.79_all.deb" - ] - }, - { - "kernelversion": "76", - "kernelrelease": "4.4.0-1069-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1069_4.4.0-1069.76_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1069-kvm_4.4.0-1069.76_amd64.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "4.4.0-1070-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1070_4.4.0-1070.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1070-aws_4.4.0-1070.80_amd64.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "4.4.0-1070-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1070-kvm_4.4.0-1070.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1070_4.4.0-1070.77_all.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "4.4.0-1071-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1071-kvm_4.4.0-1071.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1071_4.4.0-1071.78_all.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "4.4.0-1072-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1072-aws_4.4.0-1072.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1072_4.4.0-1072.82_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.4.0-1074-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1074_4.4.0-1074.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1074-aws_4.4.0-1074.84_amd64.deb" - ] - }, - { - "kernelversion": "85", - "kernelrelease": "4.4.0-1075-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1075-aws_4.4.0-1075.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1075_4.4.0-1075.85_all.deb" - ] - }, - { - "kernelversion": "82", - "kernelrelease": "4.4.0-1075-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1075_4.4.0-1075.82_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1075-kvm_4.4.0-1075.82_amd64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.4.0-1076-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1076-kvm_4.4.0-1076.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1076_4.4.0-1076.83_all.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "4.4.0-1077-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1077-aws_4.4.0-1077.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1077_4.4.0-1077.87_all.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.4.0-1077-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1077_4.4.0-1077.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1077-kvm_4.4.0-1077.84_amd64.deb" - ] - }, - { - "kernelversion": "85", - "kernelrelease": "4.4.0-1078-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1078_4.4.0-1078.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1078-kvm_4.4.0-1078.85_amd64.deb" - ] - }, - { - "kernelversion": "89", - "kernelrelease": "4.4.0-1079-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1079_4.4.0-1079.89_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1079-aws_4.4.0-1079.89_amd64.deb" - ] - }, - { - "kernelversion": "86", - "kernelrelease": "4.4.0-1079-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1079-kvm_4.4.0-1079.86_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1079_4.4.0-1079.86_all.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.4.0-108-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108_4.4.0-108.131_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-generic_4.4.0-108.131_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-108-lowlatency_4.4.0-108.131_amd64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "4.4.0-1080-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1080_4.4.0-1080.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1080-kvm_4.4.0-1080.87_amd64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.4.0-1082-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1082_4.4.0-1082.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1082-kvm_4.4.0-1082.91_amd64.deb" - ] - }, - { - "kernelversion": "93", - "kernelrelease": "4.4.0-1083-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1083_4.4.0-1083.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1083-aws_4.4.0-1083.93_amd64.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "4.4.0-1084-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1084_4.4.0-1084.94_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1084-aws_4.4.0-1084.94_amd64.deb" - ] - }, - { - "kernelversion": "93", - "kernelrelease": "4.4.0-1084-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1084-kvm_4.4.0-1084.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1084_4.4.0-1084.93_all.deb" - ] - }, - { - "kernelversion": "96", - "kernelrelease": "4.4.0-1085-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1085-aws_4.4.0-1085.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1085_4.4.0-1085.96_all.deb" - ] - }, - { - "kernelversion": "94", - "kernelrelease": "4.4.0-1085-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1085-kvm_4.4.0-1085.94_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1085_4.4.0-1085.94_all.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "4.4.0-1087-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1087_4.4.0-1087.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1087-aws_4.4.0-1087.98_amd64.deb" - ] - }, - { - "kernelversion": "96", - "kernelrelease": "4.4.0-1087-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1087_4.4.0-1087.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1087-kvm_4.4.0-1087.96_amd64.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.4.0-1088-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1088_4.4.0-1088.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1088-aws_4.4.0-1088.99_amd64.deb" - ] - }, - { - "kernelversion": "97", - "kernelrelease": "4.4.0-1088-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1088-kvm_4.4.0-1088.97_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1088_4.4.0-1088.97_all.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "4.4.0-1089-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1089-kvm_4.4.0-1089.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1089_4.4.0-1089.98_all.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.4.0-109-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-generic_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109-lowlatency_4.4.0-109.132_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-109_4.4.0-109.132_all.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "4.4.0-1090-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1090-aws_4.4.0-1090.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1090_4.4.0-1090.101_all.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.4.0-1090-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1090_4.4.0-1090.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1090-kvm_4.4.0-1090.99_amd64.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "4.4.0-1091-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1091_4.4.0-1091.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1091-kvm_4.4.0-1091.100_amd64.deb" - ] - }, - { - "kernelversion": "103", - "kernelrelease": "4.4.0-1092-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1092-aws_4.4.0-1092.103_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1092_4.4.0-1092.103_all.deb" - ] - }, - { - "kernelversion": "101", - "kernelrelease": "4.4.0-1092-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1092_4.4.0-1092.101_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1092-kvm_4.4.0-1092.101_amd64.deb" - ] - }, - { - "kernelversion": "102", - "kernelrelease": "4.4.0-1093-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1093_4.4.0-1093.102_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1093-kvm_4.4.0-1093.102_amd64.deb" - ] - }, - { - "kernelversion": "105", - "kernelrelease": "4.4.0-1094-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1094-aws_4.4.0-1094.105_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1094_4.4.0-1094.105_all.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.4.0-1095-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1095_4.4.0-1095.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1095-aws_4.4.0-1095.106_amd64.deb" - ] - }, - { - "kernelversion": "107", - "kernelrelease": "4.4.0-1096-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1096-aws_4.4.0-1096.107_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1096_4.4.0-1096.107_all.deb" - ] - }, - { - "kernelversion": "109", - "kernelrelease": "4.4.0-1098-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1098_4.4.0-1098.109_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1098-aws_4.4.0-1098.109_amd64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.4.0-1099-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1099_4.4.0-1099.110_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1099-aws_4.4.0-1099.110_amd64.deb" - ] - }, - { - "kernelversion": "111", - "kernelrelease": "4.4.0-1100-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1100-aws_4.4.0-1100.111_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1100_4.4.0-1100.111_all.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.4.0-1101-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1101_4.4.0-1101.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1101-aws_4.4.0-1101.112_amd64.deb" - ] - }, - { - "kernelversion": "113", - "kernelrelease": "4.4.0-1102-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1102-aws_4.4.0-1102.113_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1102_4.4.0-1102.113_all.deb" - ] - }, - { - "kernelversion": "115", - "kernelrelease": "4.4.0-1104-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1104-aws_4.4.0-1104.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1104_4.4.0-1104.115_all.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.4.0-1105-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1105-aws_4.4.0-1105.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1105_4.4.0-1105.116_all.deb" - ] - }, - { - "kernelversion": "117", - "kernelrelease": "4.4.0-1106-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1106_4.4.0-1106.117_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1106-aws_4.4.0-1106.117_amd64.deb" - ] - }, - { - "kernelversion": "118", - "kernelrelease": "4.4.0-1107-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1107-aws_4.4.0-1107.118_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1107_4.4.0-1107.118_all.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "4.4.0-1109-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1109_4.4.0-1109.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1109-aws_4.4.0-1109.120_amd64.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.4.0-1110-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1110_4.4.0-1110.121_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1110-aws_4.4.0-1110.121_amd64.deb" - ] - }, - { - "kernelversion": "123", - "kernelrelease": "4.4.0-1111-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1111_4.4.0-1111.123_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1111-aws_4.4.0-1111.123_amd64.deb" - ] - }, - { - "kernelversion": "124", - "kernelrelease": "4.4.0-1112-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1112_4.4.0-1112.124_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1112-aws_4.4.0-1112.124_amd64.deb" - ] - }, - { - "kernelversion": "126", - "kernelrelease": "4.4.0-1113-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1113_4.4.0-1113.126_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1113-aws_4.4.0-1113.126_amd64.deb" - ] - }, - { - "kernelversion": "127", - "kernelrelease": "4.4.0-1114-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1114-aws_4.4.0-1114.127_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1114_4.4.0-1114.127_all.deb" - ] - }, - { - "kernelversion": "131", - "kernelrelease": "4.4.0-1117-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1117-aws_4.4.0-1117.131_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1117_4.4.0-1117.131_all.deb" - ] - }, - { - "kernelversion": "132", - "kernelrelease": "4.4.0-1118-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1118-aws_4.4.0-1118.132_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1118_4.4.0-1118.132_all.deb" - ] - }, - { - "kernelversion": "133", - "kernelrelease": "4.4.0-1119-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1119-aws_4.4.0-1119.133_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1119_4.4.0-1119.133_all.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.4.0-112-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112_4.4.0-112.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-generic_4.4.0-112.135_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-112-lowlatency_4.4.0-112.135_amd64.deb" - ] - }, - { - "kernelversion": "135", - "kernelrelease": "4.4.0-1121-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1121-aws_4.4.0-1121.135_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1121_4.4.0-1121.135_all.deb" - ] - }, - { - "kernelversion": "136", - "kernelrelease": "4.4.0-1122-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1122-aws_4.4.0-1122.136_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1122_4.4.0-1122.136_all.deb" - ] - }, - { - "kernelversion": "137", - "kernelrelease": "4.4.0-1123-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1123-aws_4.4.0-1123.137_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1123_4.4.0-1123.137_all.deb" - ] - }, - { - "kernelversion": "138", - "kernelrelease": "4.4.0-1124-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1124_4.4.0-1124.138_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1124-aws_4.4.0-1124.138_amd64.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "4.4.0-1126-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1126_4.4.0-1126.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1126-aws_4.4.0-1126.140_amd64.deb" - ] - }, - { - "kernelversion": "141", - "kernelrelease": "4.4.0-1127-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1127_4.4.0-1127.141_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1127-aws_4.4.0-1127.141_amd64.deb" - ] - }, - { - "kernelversion": "142", - "kernelrelease": "4.4.0-1128-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1128-aws_4.4.0-1128.142_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1128_4.4.0-1128.142_all.deb" - ] - }, - { - "kernelversion": "140", - "kernelrelease": "4.4.0-116-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-lowlatency_4.4.0-116.140_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116_4.4.0-116.140_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-116-generic_4.4.0-116.140_amd64.deb" - ] - }, - { - "kernelversion": "143", - "kernelrelease": "4.4.0-119-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-generic_4.4.0-119.143_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119-lowlatency_4.4.0-119.143_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-119_4.4.0-119.143_all.deb" - ] - }, - { - "kernelversion": "145", - "kernelrelease": "4.4.0-121-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-lowlatency_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121_4.4.0-121.145_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-121-generic_4.4.0-121.145_amd64.deb" - ] - }, - { - "kernelversion": "148", - "kernelrelease": "4.4.0-124-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-generic_4.4.0-124.148_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124_4.4.0-124.148_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-124-lowlatency_4.4.0-124.148_amd64.deb" - ] - }, - { - "kernelversion": "153", - "kernelrelease": "4.4.0-127-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-generic_4.4.0-127.153_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127-lowlatency_4.4.0-127.153_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-127_4.4.0-127.153_all.deb" - ] - }, - { - "kernelversion": "154", - "kernelrelease": "4.4.0-128-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128_4.4.0-128.154_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-generic_4.4.0-128.154_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-128-lowlatency_4.4.0-128.154_amd64.deb" - ] - }, - { - "kernelversion": "156", - "kernelrelease": "4.4.0-130-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-generic_4.4.0-130.156_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130_4.4.0-130.156_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-130-lowlatency_4.4.0-130.156_amd64.deb" - ] - }, - { - "kernelversion": "159", - "kernelrelease": "4.4.0-133-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133_4.4.0-133.159_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-generic_4.4.0-133.159_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-133-lowlatency_4.4.0-133.159_amd64.deb" - ] - }, - { - "kernelversion": "160", - "kernelrelease": "4.4.0-134-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-generic_4.4.0-134.160_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134-lowlatency_4.4.0-134.160_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-134_4.4.0-134.160_all.deb" - ] - }, - { - "kernelversion": "163", - "kernelrelease": "4.4.0-137-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-lowlatency_4.4.0-137.163_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137_4.4.0-137.163_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-137-generic_4.4.0-137.163_amd64.deb" - ] - }, - { - "kernelversion": "164", - "kernelrelease": "4.4.0-138-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-lowlatency_4.4.0-138.164_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138-generic_4.4.0-138.164_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-138_4.4.0-138.164_all.deb" - ] - }, - { - "kernelversion": "165", - "kernelrelease": "4.4.0-139-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-generic_4.4.0-139.165_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139-lowlatency_4.4.0-139.165_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-139_4.4.0-139.165_all.deb" - ] - }, - { - "kernelversion": "167", - "kernelrelease": "4.4.0-141-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141_4.4.0-141.167_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-generic_4.4.0-141.167_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-141-lowlatency_4.4.0-141.167_amd64.deb" - ] - }, - { - "kernelversion": "168", - "kernelrelease": "4.4.0-142-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-generic_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142_4.4.0-142.168_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-142-lowlatency_4.4.0-142.168_amd64.deb" - ] - }, - { - "kernelversion": "169", - "kernelrelease": "4.4.0-143-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-generic_4.4.0-143.169_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143_4.4.0-143.169_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-143-lowlatency_4.4.0-143.169_amd64.deb" - ] - }, - { - "kernelversion": "171", - "kernelrelease": "4.4.0-145-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-lowlatency_4.4.0-145.171_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145-generic_4.4.0-145.171_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-145_4.4.0-145.171_all.deb" - ] - }, - { - "kernelversion": "174", - "kernelrelease": "4.4.0-148-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-generic_4.4.0-148.174_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148-lowlatency_4.4.0-148.174_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-148_4.4.0-148.174_all.deb" - ] - }, - { - "kernelversion": "176", - "kernelrelease": "4.4.0-150-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-generic_4.4.0-150.176_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150_4.4.0-150.176_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-150-lowlatency_4.4.0-150.176_amd64.deb" - ] - }, - { - "kernelversion": "178", - "kernelrelease": "4.4.0-151-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-lowlatency_4.4.0-151.178_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151_4.4.0-151.178_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-151-generic_4.4.0-151.178_amd64.deb" - ] - }, - { - "kernelversion": "181", - "kernelrelease": "4.4.0-154-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154_4.4.0-154.181_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-lowlatency_4.4.0-154.181_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-154-generic_4.4.0-154.181_amd64.deb" - ] - }, - { - "kernelversion": "185", - "kernelrelease": "4.4.0-157-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157_4.4.0-157.185_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-lowlatency_4.4.0-157.185_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-157-generic_4.4.0-157.185_amd64.deb" - ] - }, - { - "kernelversion": "187", - "kernelrelease": "4.4.0-159-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-generic_4.4.0-159.187_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159_4.4.0-159.187_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-159-lowlatency_4.4.0-159.187_amd64.deb" - ] - }, - { - "kernelversion": "189", - "kernelrelease": "4.4.0-161-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-lowlatency_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161_4.4.0-161.189_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-161-generic_4.4.0-161.189_amd64.deb" - ] - }, - { - "kernelversion": "192", - "kernelrelease": "4.4.0-164-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164_4.4.0-164.192_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-generic_4.4.0-164.192_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-164-lowlatency_4.4.0-164.192_amd64.deb" - ] - }, - { - "kernelversion": "193", - "kernelrelease": "4.4.0-165-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-lowlatency_4.4.0-165.193_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165-generic_4.4.0-165.193_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-165_4.4.0-165.193_all.deb" - ] - }, - { - "kernelversion": "195", - "kernelrelease": "4.4.0-166-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-lowlatency_4.4.0-166.195_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166_4.4.0-166.195_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-166-generic_4.4.0-166.195_amd64.deb" - ] - }, - { - "kernelversion": "197", - "kernelrelease": "4.4.0-168-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-generic_4.4.0-168.197_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168_4.4.0-168.197_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-168-lowlatency_4.4.0-168.197_amd64.deb" - ] - }, - { - "kernelversion": "198", - "kernelrelease": "4.4.0-169-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-generic_4.4.0-169.198_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169-lowlatency_4.4.0-169.198_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-169_4.4.0-169.198_all.deb" - ] - }, - { - "kernelversion": "199", - "kernelrelease": "4.4.0-170-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170_4.4.0-170.199_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-generic_4.4.0-170.199_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-170-lowlatency_4.4.0-170.199_amd64.deb" - ] - }, - { - "kernelversion": "200", - "kernelrelease": "4.4.0-171-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-lowlatency_4.4.0-171.200_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171-generic_4.4.0-171.200_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-171_4.4.0-171.200_all.deb" - ] - }, - { - "kernelversion": "203", - "kernelrelease": "4.4.0-173-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173_4.4.0-173.203_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-lowlatency_4.4.0-173.203_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-173-generic_4.4.0-173.203_amd64.deb" - ] - }, - { - "kernelversion": "204", - "kernelrelease": "4.4.0-174-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-lowlatency_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174_4.4.0-174.204_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-174-generic_4.4.0-174.204_amd64.deb" - ] - }, - { - "kernelversion": "206", - "kernelrelease": "4.4.0-176-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176_4.4.0-176.206_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-176-lowlatency_4.4.0-176.206_amd64.deb" - ] - }, - { - "kernelversion": "207", - "kernelrelease": "4.4.0-177-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-generic_4.4.0-177.207_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177_4.4.0-177.207_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-177-lowlatency_4.4.0-177.207_amd64.deb" - ] - }, - { - "kernelversion": "208", - "kernelrelease": "4.4.0-178-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178_4.4.0-178.208_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-lowlatency_4.4.0-178.208_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-178-generic_4.4.0-178.208_amd64.deb" - ] - }, - { - "kernelversion": "209", - "kernelrelease": "4.4.0-179-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-generic_4.4.0-179.209_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179_4.4.0-179.209_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-179-lowlatency_4.4.0-179.209_amd64.deb" - ] - }, - { - "kernelversion": "214", - "kernelrelease": "4.4.0-184-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184_4.4.0-184.214_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-generic_4.4.0-184.214_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-184-lowlatency_4.4.0-184.214_amd64.deb" - ] - }, - { - "kernelversion": "215", - "kernelrelease": "4.4.0-185-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185_4.4.0-185.215_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-generic_4.4.0-185.215_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-185-lowlatency_4.4.0-185.215_amd64.deb" - ] - }, - { - "kernelversion": "216", - "kernelrelease": "4.4.0-186-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186_4.4.0-186.216_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-generic_4.4.0-186.216_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-186-lowlatency_4.4.0-186.216_amd64.deb" - ] - }, - { - "kernelversion": "217", - "kernelrelease": "4.4.0-187-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-generic_4.4.0-187.217_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187-lowlatency_4.4.0-187.217_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-187_4.4.0-187.217_all.deb" - ] - }, - { - "kernelversion": "219", - "kernelrelease": "4.4.0-189-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189_4.4.0-189.219_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-generic_4.4.0-189.219_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-189-lowlatency_4.4.0-189.219_amd64.deb" - ] - }, - { - "kernelversion": "220", - "kernelrelease": "4.4.0-190-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-generic_4.4.0-190.220_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190_4.4.0-190.220_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-190-lowlatency_4.4.0-190.220_amd64.deb" - ] - }, - { - "kernelversion": "224", - "kernelrelease": "4.4.0-193-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193_4.4.0-193.224_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-generic_4.4.0-193.224_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-193-lowlatency_4.4.0-193.224_amd64.deb" - ] - }, - { - "kernelversion": "226", - "kernelrelease": "4.4.0-194-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-lowlatency_4.4.0-194.226_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194-generic_4.4.0-194.226_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-194_4.4.0-194.226_all.deb" - ] - }, - { - "kernelversion": "229", - "kernelrelease": "4.4.0-197-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197_4.4.0-197.229_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-lowlatency_4.4.0-197.229_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-197-generic_4.4.0-197.229_amd64.deb" - ] - }, - { - "kernelversion": "230", - "kernelrelease": "4.4.0-198-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198_4.4.0-198.230_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-generic_4.4.0-198.230_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-198-lowlatency_4.4.0-198.230_amd64.deb" - ] - }, - { - "kernelversion": "232", - "kernelrelease": "4.4.0-200-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-generic_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200-lowlatency_4.4.0-200.232_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-200_4.4.0-200.232_all.deb" - ] - }, - { - "kernelversion": "233", - "kernelrelease": "4.4.0-201-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201_4.4.0-201.233_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-lowlatency_4.4.0-201.233_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-201-generic_4.4.0-201.233_amd64.deb" - ] - }, - { - "kernelversion": "235", - "kernelrelease": "4.4.0-203-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203_4.4.0-203.235_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-lowlatency_4.4.0-203.235_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-203-generic_4.4.0-203.235_amd64.deb" - ] - }, - { - "kernelversion": "236", - "kernelrelease": "4.4.0-204-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204_4.4.0-204.236_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-generic_4.4.0-204.236_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-204-lowlatency_4.4.0-204.236_amd64.deb" - ] - }, - { - "kernelversion": "240", - "kernelrelease": "4.4.0-208-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-lowlatency_4.4.0-208.240_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208_4.4.0-208.240_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-208-generic_4.4.0-208.240_amd64.deb" - ] - }, - { - "kernelversion": "241", - "kernelrelease": "4.4.0-209-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-generic_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209-lowlatency_4.4.0-209.241_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-209_4.4.0-209.241_all.deb" - ] - }, - { - "kernelversion": "242", - "kernelrelease": "4.4.0-210-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-lowlatency_4.4.0-210.242_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210-generic_4.4.0-210.242_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-210_4.4.0-210.242_all.deb" - ] - }, - { - "kernelversion": "40", - "kernelrelease": "4.4.0-22-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-generic_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22-lowlatency_4.4.0-22.40_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-22_4.4.0-22.40_all.deb" - ] - }, - { - "kernelversion": "43", - "kernelrelease": "4.4.0-24-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-lowlatency_4.4.0-24.43_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24_4.4.0-24.43_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-24-generic_4.4.0-24.43_amd64.deb" - ] - }, - { - "kernelversion": "47", - "kernelrelease": "4.4.0-28-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28_4.4.0-28.47_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-lowlatency_4.4.0-28.47_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-28-generic_4.4.0-28.47_amd64.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.4.0-31-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-generic_4.4.0-31.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31_4.4.0-31.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-31-lowlatency_4.4.0-31.50_amd64.deb" - ] - }, - { - "kernelversion": "53", - "kernelrelease": "4.4.0-34-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34_4.4.0-34.53_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-lowlatency_4.4.0-34.53_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-34-generic_4.4.0-34.53_amd64.deb" - ] - }, - { - "kernelversion": "55", - "kernelrelease": "4.4.0-36-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-lowlatency_4.4.0-36.55_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36_4.4.0-36.55_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-36-generic_4.4.0-36.55_amd64.deb" - ] - }, - { - "kernelversion": "57", - "kernelrelease": "4.4.0-38-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38_4.4.0-38.57_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-generic_4.4.0-38.57_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-38-lowlatency_4.4.0-38.57_amd64.deb" - ] - }, - { - "kernelversion": "62", - "kernelrelease": "4.4.0-42-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-lowlatency_4.4.0-42.62_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42_4.4.0-42.62_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-42-generic_4.4.0-42.62_amd64.deb" - ] - }, - { - "kernelversion": "66", - "kernelrelease": "4.4.0-45-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45_4.4.0-45.66_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-generic_4.4.0-45.66_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-45-lowlatency_4.4.0-45.66_amd64.deb" - ] - }, - { - "kernelversion": "68", - "kernelrelease": "4.4.0-47-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-generic_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47_4.4.0-47.68_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-47-lowlatency_4.4.0-47.68_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "4.4.0-51-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-generic_4.4.0-51.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51_4.4.0-51.72_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-51-lowlatency_4.4.0-51.72_amd64.deb" - ] - }, - { - "kernelversion": "74", - "kernelrelease": "4.4.0-53-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-lowlatency_4.4.0-53.74_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53_4.4.0-53.74_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-53-generic_4.4.0-53.74_amd64.deb" - ] - }, - { - "kernelversion": "78", - "kernelrelease": "4.4.0-57-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-generic_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57-lowlatency_4.4.0-57.78_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-57_4.4.0-57.78_all.deb" - ] - }, - { - "kernelversion": "80", - "kernelrelease": "4.4.0-59-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59_4.4.0-59.80_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-generic_4.4.0-59.80_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-59-lowlatency_4.4.0-59.80_amd64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.4.0-62-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-lowlatency_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62_4.4.0-62.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-62-generic_4.4.0-62.83_amd64.deb" - ] - }, - { - "kernelversion": "84", - "kernelrelease": "4.4.0-63-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-lowlatency_4.4.0-63.84_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63-generic_4.4.0-63.84_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-63_4.4.0-63.84_all.deb" - ] - }, - { - "kernelversion": "85", - "kernelrelease": "4.4.0-64-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-generic_4.4.0-64.85_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64_4.4.0-64.85_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-64-lowlatency_4.4.0-64.85_amd64.deb" - ] - }, - { - "kernelversion": "87", - "kernelrelease": "4.4.0-66-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-lowlatency_4.4.0-66.87_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66-generic_4.4.0-66.87_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-66_4.4.0-66.87_all.deb" - ] - }, - { - "kernelversion": "88", - "kernelrelease": "4.4.0-67-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67_4.4.0-67.88_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-lowlatency_4.4.0-67.88_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-67-generic_4.4.0-67.88_amd64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.4.0-70-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-lowlatency_4.4.0-70.91_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70_4.4.0-70.91_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-70-generic_4.4.0-70.91_amd64.deb" - ] - }, - { - "kernelversion": "92", - "kernelrelease": "4.4.0-71-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-generic_4.4.0-71.92_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71_4.4.0-71.92_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-71-lowlatency_4.4.0-71.92_amd64.deb" - ] - }, - { - "kernelversion": "93", - "kernelrelease": "4.4.0-72-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-lowlatency_4.4.0-72.93_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72-generic_4.4.0-72.93_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-72_4.4.0-72.93_all.deb" - ] - }, - { - "kernelversion": "96", - "kernelrelease": "4.4.0-75-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-generic_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75_4.4.0-75.96_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-75-lowlatency_4.4.0-75.96_amd64.deb" - ] - }, - { - "kernelversion": "99", - "kernelrelease": "4.4.0-78-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-lowlatency_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78-generic_4.4.0-78.99_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-78_4.4.0-78.99_all.deb" - ] - }, - { - "kernelversion": "100", - "kernelrelease": "4.4.0-79-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79_4.4.0-79.100_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-lowlatency_4.4.0-79.100_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-79-generic_4.4.0-79.100_amd64.deb" - ] - }, - { - "kernelversion": "104", - "kernelrelease": "4.4.0-81-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-lowlatency_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81-generic_4.4.0-81.104_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-81_4.4.0-81.104_all.deb" - ] - }, - { - "kernelversion": "106", - "kernelrelease": "4.4.0-83-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83_4.4.0-83.106_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-lowlatency_4.4.0-83.106_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-83-generic_4.4.0-83.106_amd64.deb" - ] - }, - { - "kernelversion": "110", - "kernelrelease": "4.4.0-87-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-generic_4.4.0-87.110_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87-lowlatency_4.4.0-87.110_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-87_4.4.0-87.110_all.deb" - ] - }, - { - "kernelversion": "112", - "kernelrelease": "4.4.0-89-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89_4.4.0-89.112_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-lowlatency_4.4.0-89.112_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-89-generic_4.4.0-89.112_amd64.deb" - ] - }, - { - "kernelversion": "114", - "kernelrelease": "4.4.0-91-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91_4.4.0-91.114_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-generic_4.4.0-91.114_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-91-lowlatency_4.4.0-91.114_amd64.deb" - ] - }, - { - "kernelversion": "115", - "kernelrelease": "4.4.0-92-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-generic_4.4.0-92.115_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92-lowlatency_4.4.0-92.115_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-92_4.4.0-92.115_all.deb" - ] - }, - { - "kernelversion": "116", - "kernelrelease": "4.4.0-93-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-generic_4.4.0-93.116_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93-lowlatency_4.4.0-93.116_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-93_4.4.0-93.116_all.deb" - ] - }, - { - "kernelversion": "119", - "kernelrelease": "4.4.0-96-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-generic_4.4.0-96.119_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96_4.4.0-96.119_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-96-lowlatency_4.4.0-96.119_amd64.deb" - ] - }, - { - "kernelversion": "120", - "kernelrelease": "4.4.0-97-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-generic_4.4.0-97.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97-lowlatency_4.4.0-97.120_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-97_4.4.0-97.120_all.deb" - ] - }, - { - "kernelversion": "121", - "kernelrelease": "4.4.0-98-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-generic_4.4.0-98.121_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98-lowlatency_4.4.0-98.121_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-98_4.4.0-98.121_all.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.8.0-34-hwe-edge", - "target": "ubuntu-hwe-edge", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-lowlatency_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34-generic_4.8.0-34.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe-edge/linux-headers-4.8.0-34_4.8.0-34.36~16.04.1_all.deb" - ] - }, - { - "kernelversion": "36~16.04.1", - "kernelrelease": "4.8.0-36-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-lowlatency_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36_4.8.0-36.36~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-36-generic_4.8.0-36.36~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "42~16.04.1", - "kernelrelease": "4.8.0-39-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39_4.8.0-39.42~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-lowlatency_4.8.0-39.42~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-39-generic_4.8.0-39.42~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "44~16.04.1", - "kernelrelease": "4.8.0-41-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-lowlatency_4.8.0-41.44~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41-generic_4.8.0-41.44~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-41_4.8.0-41.44~16.04.1_all.deb" - ] - }, - { - "kernelversion": "48~16.04.1", - "kernelrelease": "4.8.0-45-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45_4.8.0-45.48~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-generic_4.8.0-45.48~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-45-lowlatency_4.8.0-45.48~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "49~16.04.1", - "kernelrelease": "4.8.0-46-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-lowlatency_4.8.0-46.49~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46_4.8.0-46.49~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-46-generic_4.8.0-46.49~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "52~16.04.1", - "kernelrelease": "4.8.0-49-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49_4.8.0-49.52~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-generic_4.8.0-49.52~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-49-lowlatency_4.8.0-49.52~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "55~16.04.1", - "kernelrelease": "4.8.0-52-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-generic_4.8.0-52.55~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52_4.8.0-52.55~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-52-lowlatency_4.8.0-52.55~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "57~16.04.1", - "kernelrelease": "4.8.0-54-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-generic_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54-lowlatency_4.8.0-54.57~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-54_4.8.0-54.57~16.04.1_all.deb" - ] - }, - { - "kernelversion": "61~16.04.1", - "kernelrelease": "4.8.0-56-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-generic_4.8.0-56.61~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56_4.8.0-56.61~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-56-lowlatency_4.8.0-56.61~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "63~16.04.1", - "kernelrelease": "4.8.0-58-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58_4.8.0-58.63~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-lowlatency_4.8.0-58.63~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-58-generic_4.8.0-58.63~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "9", - "kernelrelease": "4.11.0-1009-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1009-azure_4.11.0-1009.9_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1009_4.11.0-1009.9_all.deb" - ] - }, - { - "kernelversion": "11", - "kernelrelease": "4.11.0-1011-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1011-azure_4.11.0-1011.11_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1011_4.11.0-1011.11_all.deb" - ] - }, - { - "kernelversion": "13", - "kernelrelease": "4.11.0-1013-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1013-azure_4.11.0-1013.13_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1013_4.11.0-1013.13_all.deb" - ] - }, - { - "kernelversion": "14", - "kernelrelease": "4.11.0-1014-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.11.0-1014_4.11.0-1014.14_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.11.0-1014-azure_4.11.0-1014.14_amd64.deb" - ] - }, - { - "kernelversion": "12", - "kernelrelease": "4.13.0-1009-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1009-azure_4.13.0-1009.12_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1009_4.13.0-1009.12_all.deb" - ] - }, - { - "kernelversion": "15", - "kernelrelease": "4.13.0-1012-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.13.0-1012-azure_4.13.0-1012.15_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.13.0-1012_4.13.0-1012.15_all.deb" - ] - }, - { - "kernelversion": "9~16.04.1", - "kernelrelease": "4.15.0-1007-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1007-oracle_4.15.0-1007.9~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1007_4.15.0-1007.9~16.04.1_all.deb" - ] - }, - { - "kernelversion": "13~16.04.1", - "kernelrelease": "4.15.0-1011-oracle", - "target": "ubuntu-oracle", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-oracle-headers-4.15.0-1011_4.15.0-1011.13~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-oracle/linux-headers-4.15.0-1011-oracle_4.15.0-1011.13~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "31~16.04.1", - "kernelrelease": "4.15.0-1030-azure", - "target": "ubuntu-azure", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1030-azure_4.15.0-1030.31~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1030_4.15.0-1030.31~16.04.1_all.deb" - ] - }, - { - "kernelversion": "32~16.04.1", - "kernelrelease": "4.15.0-1030-gcp", - "target": "ubuntu-gcp", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-headers-4.15.0-1030-gcp_4.15.0-1030.32~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-gcp/linux-gcp-headers-4.15.0-1030_4.15.0-1030.32~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.15.0-1042-azure", - "target": "ubuntu-azure", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-azure-headers-4.15.0-1042_4.15.0-1042.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-azure/linux-headers-4.15.0-1042-azure_4.15.0-1042.46_amd64.deb" - ] - }, - { - "kernelversion": "41~16.04.1", - "kernelrelease": "4.15.0-38-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38_4.15.0-38.41~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-lowlatency_4.15.0-38.41~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-38-generic_4.15.0-38.41~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "51~16.04.1", - "kernelrelease": "4.15.0-48-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-lowlatency_4.15.0-48.51~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48_4.15.0-48.51~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.15.0-48-generic_4.15.0-48.51~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "39", - "kernelrelease": "4.4.0-1033-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1033_4.4.0-1033.39_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1033-kvm_4.4.0-1033.39_amd64.deb" - ] - }, - { - "kernelversion": "46", - "kernelrelease": "4.4.0-1037-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1037_4.4.0-1037.46_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1037-aws_4.4.0-1037.46_amd64.deb" - ] - }, - { - "kernelversion": "44", - "kernelrelease": "4.4.0-1038-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1038-kvm_4.4.0-1038.44_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1038_4.4.0-1038.44_all.deb" - ] - }, - { - "kernelversion": "50", - "kernelrelease": "4.4.0-1044-kvm", - "target": "ubuntu-kvm", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-kvm/linux-kvm-headers-4.4.0-1044_4.4.0-1044.50_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-kvm/linux-headers-4.4.0-1044-kvm_4.4.0-1044.50_amd64.deb" - ] - }, - { - "kernelversion": "59", - "kernelrelease": "4.4.0-1050-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1050_4.4.0-1050.59_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1050-aws_4.4.0-1050.59_amd64.deb" - ] - }, - { - "kernelversion": "72", - "kernelrelease": "4.4.0-1063-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1063-aws_4.4.0-1063.72_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1063_4.4.0-1063.72_all.deb" - ] - }, - { - "kernelversion": "77", - "kernelrelease": "4.4.0-1067-aws", - "target": "ubuntu-aws", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1067_4.4.0-1067.77_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1067-aws_4.4.0-1067.77_amd64.deb" - ] - }, - { - "kernelversion": "83", - "kernelrelease": "4.4.0-1073-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1073_4.4.0-1073.83_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1073-aws_4.4.0-1073.83_amd64.deb" - ] - }, - { - "kernelversion": "91", - "kernelrelease": "4.4.0-1081-aws", - "target": "ubuntu-aws", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-headers-4.4.0-1081-aws_4.4.0-1081.91_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-aws/linux-aws-headers-4.4.0-1081_4.4.0-1081.91_all.deb" - ] - }, - { - "kernelversion": "146", - "kernelrelease": "4.4.0-122-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-lowlatency_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122-generic_4.4.0-122.146_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-122_4.4.0-122.146_all.deb" - ] - }, - { - "kernelversion": "157", - "kernelrelease": "4.4.0-131-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-lowlatency_4.4.0-131.157_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131_4.4.0-131.157_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-131-generic_4.4.0-131.157_amd64.deb" - ] - }, - { - "kernelversion": "161", - "kernelrelease": "4.4.0-135-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-lowlatency_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135_4.4.0-135.161_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-135-generic_4.4.0-135.161_amd64.deb" - ] - }, - { - "kernelversion": "166", - "kernelrelease": "4.4.0-140-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-lowlatency_4.4.0-140.166_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140-generic_4.4.0-140.166_amd64.deb" - ] - }, - { - "kernelversion": "172", - "kernelrelease": "4.4.0-146-generic", - "target": "ubuntu-generic", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146_4.4.0-146.172_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-lowlatency_4.4.0-146.172_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-146-generic_4.4.0-146.172_amd64.deb" - ] - }, - { - "kernelversion": "63", - "kernelrelease": "4.4.0-43-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-generic_4.4.0-43.63_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43_4.4.0-43.63_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-43-lowlatency_4.4.0-43.63_amd64.deb" - ] - }, - { - "kernelversion": "98", - "kernelrelease": "4.4.0-77-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-generic_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77-lowlatency_4.4.0-77.98_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-77_4.4.0-77.98_all.deb" - ] - }, - { - "kernelversion": "45~16.04.1", - "kernelrelease": "4.8.0-42-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-lowlatency_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42-generic_4.8.0-42.45~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-42_4.8.0-42.45~16.04.1_all.deb" - ] - }, - { - "kernelversion": "47~16.04.1", - "kernelrelease": "4.8.0-44-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-lowlatency_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44-generic_4.8.0-44.47~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-44_4.8.0-44.47~16.04.1_all.deb" - ] - }, - { - "kernelversion": "54~16.04.1", - "kernelrelease": "4.8.0-51-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51_4.8.0-51.54~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-generic_4.8.0-51.54~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-51-lowlatency_4.8.0-51.54~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "56~16.04.1", - "kernelrelease": "4.8.0-53-hwe", - "target": "ubuntu-hwe", - "headers": [ - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53_4.8.0-53.56~16.04.1_all.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-generic_4.8.0-53.56~16.04.1_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-hwe/linux-headers-4.8.0-53-lowlatency_4.8.0-53.56~16.04.1_amd64.deb" - ] - }, - { - "kernelversion": "37", - "kernelrelease": "4.4.0-21-generic", - "target": "ubuntu-generic", - "headers": [ - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21_4.4.0-21.37_all.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-generic_4.4.0-21.37_amd64.deb", - "http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb", - "http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-21-lowlatency_4.4.0-21.37_amd64.deb" - ] - } - ], - "Flatcar": [ - { - "kernelversion": 1, - "kernelrelease": "1688.5.3", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1688.5.3/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1745.3.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.3.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1745.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1745.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1745.6.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.6.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1745.7.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1745.7.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1800.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1800.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1800.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1800.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1800.6.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1800.6.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1800.7.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1800.7.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1855.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1855.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1855.4.2", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1855.4.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1855.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1855.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1911.3.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1911.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1911.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1911.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1911.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1911.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1967.3.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1967.3.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.3.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1967.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1967.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1967.6.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/1967.6.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2023.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2023.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2023.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2023.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2079.3.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2079.3.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2079.3.2", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.3.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2079.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2079.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2079.6.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2079.6.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2135.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2135.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2135.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2135.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2135.6.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2135.6.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2191.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2191.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2191.4.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2191.4.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2191.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2191.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2247.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2247.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2247.6.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2247.6.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2247.7.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2247.7.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2303.3.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2303.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2303.3.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2303.3.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2303.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2303.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2345.3.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2345.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2345.3.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2345.3.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2512.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2512.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2512.3.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2512.4.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2512.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2512.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.10.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.10.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.11.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.11.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.12.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.12.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.5.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.5.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.6.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.6.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.7.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.7.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.8.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.8.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.9.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2605.9.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2765.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2765.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2765.2.2", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2765.2.3", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.3/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2765.2.4", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.4/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2765.2.5", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.5/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2765.2.6", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2765.2.6/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.2.2", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.2.3", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.3/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.2.4", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.4/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.2.5", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.5/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.2.6", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2905.2.6/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2983.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2983.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2983.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/2983.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.2.2", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.2.3", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.3/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.2.4", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3033.2.4/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.2.2", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.2.3", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3139.2.3/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.2.0", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3227.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.2.1", - "target": "flatcar", - "headers": [ - "https://stable.release.flatcar-linux.net/amd64-usr/3227.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1722.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1722.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1745.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1745.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1745.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1745.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1772.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1772.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1772.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1772.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1772.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1772.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1772.4.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1772.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1800.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1800.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1800.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1800.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1828.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1828.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1828.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1828.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1828.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1828.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1855.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1855.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1855.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1855.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1883.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1883.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1911.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1911.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1911.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1911.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1939.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1939.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1939.2.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1939.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1967.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1967.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1967.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1967.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1995.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/1995.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2023.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2023.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2023.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2023.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2023.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2023.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2051.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2051.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2051.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2051.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2079.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2079.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2079.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2079.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2107.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2107.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2107.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2107.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2107.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2107.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2135.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2135.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2135.3.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2135.3.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2163.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2163.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2163.4.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2163.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2191.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2191.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2191.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2191.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2191.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2191.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2219.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2219.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2219.2.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2219.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2219.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2219.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2247.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2247.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2247.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2247.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2247.4.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2247.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2275.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2275.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2303.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2303.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2303.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2303.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2331.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2331.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2331.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2331.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2345.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2345.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2345.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2345.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2411.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2411.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2411.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2411.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2512.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2512.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2512.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2512.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2513.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2513.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2513.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2513.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.2.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2605.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.3.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2605.3.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.4.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2605.4.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2632.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2632.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2643.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2643.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2643.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2643.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2705.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2705.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2705.1.2", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2705.1.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2765.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2765.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2801.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2801.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2823.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2823.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2823.1.2", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2823.1.3", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2823.1.3/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2905.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2920.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2920.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2942.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2942.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2942.1.2", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2942.1.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2983.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2983.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2983.1.2", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/2983.1.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3033.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3033.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3066.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3066.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3066.1.2", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3066.1.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3139.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3139.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3185.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3185.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3185.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3185.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3227.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3227.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3277.1.0", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3277.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3277.1.1", - "target": "flatcar", - "headers": [ - "https://beta.release.flatcar-linux.net/amd64-usr/3277.1.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1745.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1745.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1758.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1758.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1772.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1772.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1786.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1786.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1786.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1786.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1786.2.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1786.2.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1800.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1800.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1800.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1800.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1814.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1814.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1828.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1828.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1849.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1849.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1855.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1855.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1855.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1855.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1871.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1871.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1883.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1883.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1897.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1897.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1911.0.2", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1911.0.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1925.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1925.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1939.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1939.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1953.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1953.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1967.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1967.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1981.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1981.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "1995.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/1995.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2016.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2016.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2023.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2023.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2037.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2037.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2051.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2051.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2065.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2065.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2079.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2079.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2093.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2093.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2107.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2107.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2121.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2121.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2135.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2135.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2135.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2135.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2149.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2149.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2163.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2163.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2163.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2163.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2163.2.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2163.2.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2184.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2184.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2191.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2191.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2205.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2205.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2219.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2219.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2219.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2219.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2234.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2234.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2247.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2247.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2247.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2247.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2261.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2261.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2275.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2275.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2275.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2275.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2296.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2296.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2303.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2303.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2317.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2317.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2331.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2331.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2345.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2345.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2345.0.2", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2345.0.2/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2387.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2387.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2411.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2411.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2430.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2430.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2466.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2466.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2492.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2492.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2513.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2513.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2513.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2513.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2513.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2513.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2592.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2592.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2605.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2605.1.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2605.1.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2632.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2632.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2643.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2643.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2661.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2661.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2671.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2671.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2697.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2697.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2705.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2705.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2723.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2723.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2748.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2748.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2765.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2765.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2783.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2783.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2801.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2801.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2801.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2801.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2823.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2823.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2857.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2857.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2879.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2879.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2879.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2879.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2905.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2905.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2920.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2920.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2942.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2942.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2955.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2955.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2969.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2969.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "2983.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/2983.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3005.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3005.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3005.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3005.0.1/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3033.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3033.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3046.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3046.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3066.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3066.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3115.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3115.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3127.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3127.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3139.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3139.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3165.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3165.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3185.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3185.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3200.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3200.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3227.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3227.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3255.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3255.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3277.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3277.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3305.0.0", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3305.0.0/flatcar_developer_container.bin.bz2" - ] - }, - { - "kernelversion": 1, - "kernelrelease": "3305.0.1", - "target": "flatcar", - "headers": [ - "https://alpha.release.flatcar-linux.net/amd64-usr/3305.0.1/flatcar_developer_container.bin.bz2" - ] - } - ], - "Minikube": [ - { - "kernelversion": "1_1.24.0", - "kernelrelease": "4.19.202", - "target": "minikube", - "kernelconfigdata": "IyBDT05GSUdfTE9DQUxWRVJTSU9OX0FVVE8gaXMgbm90IHNldApDT05GSUdfS0VSTkVMX0xaND15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWj15CkNPTkZJR19ISUdIX1JFU19USU1FUlM9eQpDT05GSUdfUFJFRU1QVF9WT0xVTlRBUlk9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19UQVNLX1hBQ0NUPXkKQ09ORklHX1RBU0tfSU9fQUNDT1VOVElORz15CkNPTkZJR19JS0NPTkZJRz15CkNPTkZJR19JS0NPTkZJR19QUk9DPXkKQ09ORklHX0xPR19CVUZfU0hJRlQ9MTgKQ09ORklHX0NHUk9VUFM9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9TQ0hFRD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX1JUX0dST1VQX1NDSEVEPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19DR1JPVVBfQlBGPXkKQ09ORklHX1VTRVJfTlM9eQpDT05GSUdfQkxLX0RFVl9JTklUUkQ9eQpDT05GSUdfQlBGX1NZU0NBTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19TTVA9eQpDT05GSUdfSFlQRVJWSVNPUl9HVUVTVD15CkNPTkZJR19QQVJBVklSVF9TUElOTE9DS1M9eQpDT05GSUdfS1ZNX0RFQlVHX0ZTPXkKQ09ORklHX0NBTEdBUllfSU9NTVU9eQpDT05GSUdfWDg2X1JFUk9VVEVfRk9SX0JST0tFTl9CT09UX0lSUVM9eQpDT05GSUdfTUlDUk9DT0RFX0FNRD15CkNPTkZJR19YODZfTVNSPXkKQ09ORklHX1g4Nl9DUFVJRD15CkNPTkZJR19OVU1BPXkKQ09ORklHX1g4Nl9DSEVDS19CSU9TX0NPUlJVUFRJT049eQojIENPTkZJR19NVFJSX1NBTklUSVpFUiBpcyBub3Qgc2V0CkNPTkZJR19FRkk9eQpDT05GSUdfSFpfMTAwMD15CkNPTkZJR19LRVhFQz15CkNPTkZJR19DUkFTSF9EVU1QPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1BNX0RFQlVHPXkKQ09ORklHX1BNX1RSQUNFX1JUQz15CkNPTkZJR19BQ1BJX0RPQ0s9eQpDT05GSUdfQ1BVX0ZSRVFfREVGQVVMVF9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9QRVJGT1JNQU5DRT15CkNPTkZJR19DUFVfRlJFUV9HT1ZfT05ERU1BTkQ9eQpDT05GSUdfWDg2X0FDUElfQ1BVRlJFUT15CkNPTkZJR19QQ0lFUE9SVEJVUz15CkNPTkZJR19IT1RQTFVHX1BDST15CkNPTkZJR19QQ0NBUkQ9eQpDT05GSUdfWUVOVEE9eQpDT05GSUdfSUEzMl9FTVVMQVRJT049eQpDT05GSUdfRUZJX1ZBUlM9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9JTlRFTD1tCkNPTkZJR19LVk1fQU1EPW0KQ09ORklHX1ZIT1NUX05FVD1tCkNPTkZJR19WSE9TVF9WU09DSz1tCkNPTkZJR19LUFJPQkVTPXkKQ09ORklHX0pVTVBfTEFCRUw9eQpDT05GSUdfTU9EVUxFUz15CkNPTkZJR19NT0RVTEVfVU5MT0FEPXkKQ09ORklHX01PRFVMRV9GT1JDRV9VTkxPQUQ9eQpDT05GSUdfUEFSVElUSU9OX0FEVkFOQ0VEPXkKQ09ORklHX09TRl9QQVJUSVRJT049eQpDT05GSUdfQU1JR0FfUEFSVElUSU9OPXkKQ09ORklHX01BQ19QQVJUSVRJT049eQpDT05GSUdfQlNEX0RJU0tMQUJFTD15CkNPTkZJR19NSU5JWF9TVUJQQVJUSVRJT049eQpDT05GSUdfU09MQVJJU19YODZfUEFSVElUSU9OPXkKQ09ORklHX1VOSVhXQVJFX0RJU0tMQUJFTD15CkNPTkZJR19TR0lfUEFSVElUSU9OPXkKQ09ORklHX1NVTl9QQVJUSVRJT049eQpDT05GSUdfS0FSTUFfUEFSVElUSU9OPXkKQ09ORklHX0JJTkZNVF9NSVNDPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFX01BRFZJU0U9eQpDT05GSUdfTkVUPXkKQ09ORklHX1BBQ0tFVD15CkNPTkZJR19VTklYPXkKQ09ORklHX1hGUk1fVVNFUj15CkNPTkZJR19JTkVUPXkKQ09ORklHX0lQX01VTFRJQ0FTVD15CkNPTkZJR19JUF9BRFZBTkNFRF9ST1VURVI9eQpDT05GSUdfSVBfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX0lQX1JPVVRFX01VTFRJUEFUSD15CkNPTkZJR19JUF9ST1VURV9WRVJCT1NFPXkKQ09ORklHX0lQX1BOUD15CkNPTkZJR19JUF9QTlBfREhDUD15CkNPTkZJR19JUF9QTlBfQk9PVFA9eQpDT05GSUdfSVBfUE5QX1JBUlA9eQpDT05GSUdfTkVUX0lQSVA9bQpDT05GSUdfSVBfTVJPVVRFPXkKQ09ORklHX0lQX1BJTVNNX1YxPXkKQ09ORklHX0lQX1BJTVNNX1YyPXkKQ09ORklHX1NZTl9DT09LSUVTPXkKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFJBTlNQT1JUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFVOTkVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfQkVFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0lORVRfRElBRyBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfQ09OR19BRFZBTkNFRD15CiMgQ09ORklHX1RDUF9DT05HX0JJQyBpcyBub3Qgc2V0CiMgQ09ORklHX1RDUF9DT05HX1dFU1RXT09EIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfSFRDUCBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfTUQ1U0lHPXkKQ09ORklHX0lORVQ2X0FIPXkKQ09ORklHX0lORVQ2X0VTUD15CkNPTkZJR19JUFY2X01VTFRJUExFX1RBQkxFUz15CkNPTkZJR19ORVRMQUJFTD15CkNPTkZJR19ORVRGSUxURVI9eQpDT05GSUdfTkVURklMVEVSX05FVExJTktfQUNDVD15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19RVUVVRT15CkNPTkZJR19ORl9DT05OVFJBQ0s9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1pPTkVTPXkKQ09ORklHX05GX0NPTk5UUkFDS19FVkVOVFM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVPVVQ9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVTVEFNUD15CkNPTkZJR19ORl9DT05OVFJBQ0tfRlRQPW0KQ09ORklHX05GX0NPTk5UUkFDS19JUkM9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NBTkU9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NJUD1tCkNPTkZJR19ORl9DT05OVFJBQ0tfVEZUUD1tCkNPTkZJR19ORl9DVF9ORVRMSU5LPW0KQ09ORklHX05FVEZJTFRFUl9YVF9TRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DSEVDS1NVTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NMQVNTSUZZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9EU0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0lETEVUSU1FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xFRD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ORkxPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GUVVFVUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9OT1RSQUNLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVEVFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVFBST1hZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfU0VDTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE9QVFNUUklQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9BRERSVFlQRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQlBGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NMVVNURVI9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTU1FTlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5CWVRFUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkxBQkVMPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NQVT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRENDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfREVWR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0VDTj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRVNQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9IQVNITElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hFTFBFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0lQQ09NUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBSQU5HRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBWUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTDJUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTEVOR1RIPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTUFDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NVUxUSVBPUlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX05GQUNDVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfT1NGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PV05FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUE9MSUNZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QSFlTREVWPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QS1RUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9RVU9UQT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkFURUVTVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVBTE09bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1JFQ0VOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU0NUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU09DS0VUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFURT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU1RBVElTVElDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVFJJTkc9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVElNRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVTMyPW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX0JSSURHRV9ORl9FQlRBQkxFUz1tCkNPTkZJR19CUklER0VfRUJUX0JST1VURT1tCkNPTkZJR19CUklER0VfRUJUX1RfRklMVEVSPW0KQ09ORklHX0JSSURHRV9FQlRfVF9OQVQ9bQpDT05GSUdfQlJJREdFX0VCVF84MDJfMz1tCkNPTkZJR19CUklER0VfRUJUX0FNT05HPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQPW0KQ09ORklHX0JSSURHRV9FQlRfSVA9bQpDT05GSUdfQlJJREdFX0VCVF9JUDY9bQpDT05GSUdfQlJJREdFX0VCVF9MSU1JVD1tCkNPTkZJR19CUklER0VfRUJUX01BUks9bQpDT05GSUdfQlJJREdFX0VCVF9QS1RUWVBFPW0KQ09ORklHX0JSSURHRV9FQlRfU1RQPW0KQ09ORklHX0JSSURHRV9FQlRfVkxBTj1tCkNPTkZJR19CUklER0VfRUJUX0FSUFJFUExZPW0KQ09ORklHX0JSSURHRV9FQlRfRE5BVD1tCkNPTkZJR19CUklER0VfRUJUX01BUktfVD1tCkNPTkZJR19CUklER0VfRUJUX1JFRElSRUNUPW0KQ09ORklHX0JSSURHRV9FQlRfU05BVD1tCkNPTkZJR19CUklER0VfRUJUX0xPRz1tCkNPTkZJR19CUklER0VfRUJUX05GTE9HPW0KQ09ORklHX0JSSURHRT1tCkNPTkZJR19ORVRfU0NIRUQ9eQpDT05GSUdfTkVUX1NDSF9IVEI9eQpDT05GSUdfTkVUX1NDSF9QUklPPXkKQ09ORklHX05FVF9TQ0hfU0ZRPXkKQ09ORklHX05FVF9TQ0hfVEJGPXkKQ09ORklHX05FVF9TQ0hfTkVURU09eQpDT05GSUdfTkVUX1NDSF9JTkdSRVNTPW0KQ09ORklHX05FVF9DTFNfQkFTSUM9bQpDT05GSUdfTkVUX0NMU19GVz15CkNPTkZJR19ORVRfQ0xTX1UzMj1tCkNPTkZJR19ORVRfQ0xTX0NHUk9VUD15CkNPTkZJR19ORVRfQ0xTX0JQRj1tCkNPTkZJR19ORVRfQ0xTX01BVENIQUxMPXkKQ09ORklHX05FVF9FTUFUQ0g9eQpDT05GSUdfTkVUX0VNQVRDSF9JUFNFVD15CkNPTkZJR19ORVRfQ0xTX0FDVD15CkNPTkZJR19ORVRfQUNUX01JUlJFRD1tCkNPTkZJR19ORVRfQUNUX0JQRj1tCkNPTkZJR19ORVRfQUNUX0NPTk5NQVJLPW0KQ09ORklHX09QRU5WU1dJVENIPW0KQ09ORklHX1ZTT0NLRVRTPW0KQ09ORklHX1ZJUlRJT19WU09DS0VUUz1tCkNPTkZJR19DR1JPVVBfTkVUX1BSSU89eQpDT05GSUdfQlBGX0pJVD15CkNPTkZJR19IQU1SQURJTz15CkNPTkZJR19DRkc4MDIxMT15CkNPTkZJR19NQUM4MDIxMT15CkNPTkZJR19NQUM4MDIxMV9MRURTPXkKQ09ORklHX1JGS0lMTD15CkNPTkZJR19ORVRfOVA9bQpDT05GSUdfTkVUXzlQX1ZJUlRJTz1tCkNPTkZJR19DRVBIX0xJQj15CkNPTkZJR19VRVZFTlRfSEVMUEVSX1BBVEg9Ii9zYmluL2hvdHBsdWciCkNPTkZJR19ERVZUTVBGUz15CkNPTkZJR19ERVZUTVBGU19NT1VOVD15CkNPTkZJR19ERUJVR19ERVZSRVM9eQpDT05GSUdfQ09OTkVDVE9SPXkKQ09ORklHX0JMS19ERVZfTE9PUD15CkNPTkZJR19CTEtfREVWX05CRD1tCkNPTkZJR19WSVJUSU9fQkxLPXkKQ09ORklHX0JMS19ERVZfUkJEPW0KQ09ORklHX1ZNV0FSRV9CQUxMT09OPW0KQ09ORklHX1ZNV0FSRV9WTUNJPW0KQ09ORklHX0JMS19ERVZfU0Q9eQpDT05GSUdfQkxLX0RFVl9TUj15CkNPTkZJR19DSFJfREVWX1NHPXkKQ09ORklHX1NDU0lfQ09OU1RBTlRTPXkKQ09ORklHX1NDU0lfU1BJX0FUVFJTPXkKQ09ORklHX1NDU0lfRkNfQVRUUlM9bQpDT05GSUdfU0NTSV9JU0NTSV9BVFRSUz1tCkNPTkZJR19TQ1NJX1NBU19MSUJTQVM9bQpDT05GSUdfU0NTSV9TQVNfQVRBPXkKQ09ORklHX1NDU0lfU1JQX0FUVFJTPW0KQ09ORklHX01FR0FSQUlEX05FV0dFTj15CkNPTkZJR19NRUdBUkFJRF9NTT1tCkNPTkZJR19WTVdBUkVfUFZTQ1NJPXkKQ09ORklHX0FUQT15CkNPTkZJR19TQVRBX0FIQ0k9eQpDT05GSUdfQVRBX1BJSVg9eQpDT05GSUdfUEFUQV9BTUQ9eQpDT05GSUdfUEFUQV9PTERQSUlYPXkKQ09ORklHX1BBVEFfU0NIPXkKQ09ORklHX01EPXkKQ09ORklHX0JMS19ERVZfTUQ9eQpDT05GSUdfQkxLX0RFVl9ETT15CkNPTkZJR19ETV9DUllQVD15CkNPTkZJR19ETV9TTkFQU0hPVD15CkNPTkZJR19ETV9USElOX1BST1ZJU0lPTklORz15CkNPTkZJR19ETV9NSVJST1I9eQpDT05GSUdfRE1fWkVSTz15CkNPTkZJR19GVVNJT049eQpDT05GSUdfRlVTSU9OX1NQST1tCkNPTkZJR19GVVNJT05fRkM9bQpDT05GSUdfRlVTSU9OX1NBUz1tCkNPTkZJR19GVVNJT05fQ1RMPW0KQ09ORklHX0ZVU0lPTl9MT0dHSU5HPXkKQ09ORklHX01BQ0lOVE9TSF9EUklWRVJTPXkKQ09ORklHX01BQ19FTVVNT1VTRUJUTj15CkNPTkZJR19ORVRERVZJQ0VTPXkKQ09ORklHX0RVTU1ZPW0KQ09ORklHX0lGQj1tCkNPTkZJR19NQUNWTEFOPXkKQ09ORklHX01BQ1ZUQVA9eQpDT05GSUdfSVBWTEFOPW0KQ09ORklHX1ZYTEFOPXkKQ09ORklHX05FVENPTlNPTEU9eQpDT05GSUdfVFVOPXkKQ09ORklHX1ZFVEg9eQpDT05GSUdfVklSVElPX05FVD15CkNPTkZJR19ORVRfVlJGPW0KQ09ORklHX0FNRDgxMTFfRVRIPW0KQ09ORklHX1BDTkVUMzI9bQpDT05GSUdfUENNQ0lBX05NQ0xBTj1tCkNPTkZJR19USUdPTjM9eQpDT05GSUdfTkVUX1RVTElQPXkKQ09ORklHX0UxMDA9eQpDT05GSUdfRTEwMDA9eQpDT05GSUdfRTEwMDBFPXkKQ09ORklHX1NLWTI9eQpDT05GSUdfRk9SQ0VERVRIPXkKQ09ORklHXzgxMzlDUD15CkNPTkZJR184MTM5VE9PPXkKQ09ORklHX0ZEREk9eQpDT05GSUdfVk1YTkVUMz15CkNPTkZJR19IWVBFUlZfTkVUPW0KQ09ORklHX0lOUFVUX1BPTExERVY9eQpDT05GSUdfSU5QVVRfRVZERVY9eQpDT05GSUdfSU5QVVRfSk9ZU1RJQ0s9eQpDT05GSUdfSU5QVVRfVEFCTEVUPXkKQ09ORklHX0lOUFVUX1RPVUNIU0NSRUVOPXkKQ09ORklHX0lOUFVUX01JU0M9eQojIENPTkZJR19MRUdBQ1lfUFRZUyBpcyBub3Qgc2V0CkNPTkZJR19TRVJJQUxfTk9OU1RBTkRBUkQ9eQpDT05GSUdfU0VSSUFMXzgyNTA9eQpDT05GSUdfU0VSSUFMXzgyNTBfQ09OU09MRT15CkNPTkZJR19TRVJJQUxfODI1MF9OUl9VQVJUUz0zMgpDT05GSUdfU0VSSUFMXzgyNTBfRVhURU5ERUQ9eQpDT05GSUdfU0VSSUFMXzgyNTBfTUFOWV9QT1JUUz15CkNPTkZJR19TRVJJQUxfODI1MF9TSEFSRV9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfREVURUNUX0lSUT15CkNPTkZJR19TRVJJQUxfODI1MF9SU0E9eQpDT05GSUdfSFdfUkFORE9NPXkKIyBDT05GSUdfSFdfUkFORE9NX0lOVEVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSFdfUkFORE9NX0FNRCBpcyBub3Qgc2V0CkNPTkZJR19IV19SQU5ET01fVklSVElPPXkKQ09ORklHX05WUkFNPXkKQ09ORklHX0hQRVQ9eQojIENPTkZJR19IUEVUX01NQVAgaXMgbm90IHNldApDT05GSUdfSTJDX0k4MDE9eQpDT05GSUdfV0FUQ0hET0c9eQpDT05GSUdfQUdQPXkKQ09ORklHX0FHUF9BTUQ2ND15CkNPTkZJR19BR1BfSU5URUw9eQpDT05GSUdfRFJNPXkKQ09ORklHX0RSTV9JOTE1PXkKQ09ORklHX0RSTV9WSVJUSU9fR1BVPXkKQ09ORklHX0ZCX01PREVfSEVMUEVSUz15CkNPTkZJR19GQl9USUxFQkxJVFRJTkc9eQpDT05GSUdfRkJfRUZJPXkKIyBDT05GSUdfTENEX0NMQVNTX0RFVklDRSBpcyBub3Qgc2V0CkNPTkZJR19MT0dPPXkKIyBDT05GSUdfTE9HT19MSU5VWF9NT05PIGlzIG5vdCBzZXQKIyBDT05GSUdfTE9HT19MSU5VWF9WR0ExNiBpcyBub3Qgc2V0CkNPTkZJR19TT1VORD15CkNPTkZJR19TTkQ9eQpDT05GSUdfU05EX0hSVElNRVI9eQpDT05GSUdfU05EX1NFUVVFTkNFUj15CkNPTkZJR19TTkRfU0VRX0RVTU1ZPXkKQ09ORklHX1NORF9IREFfSU5URUw9eQpDT05GSUdfU05EX0hEQV9IV0RFUD15CkNPTkZJR19ISURSQVc9eQpDT05GSUdfSElEX0dZUkFUSU9OPXkKQ09ORklHX0xPR0lURUNIX0ZGPXkKQ09ORklHX0hJRF9OVFJJRz15CkNPTkZJR19ISURfUEFOVEhFUkxPUkQ9eQpDT05GSUdfUEFOVEhFUkxPUkRfRkY9eQpDT05GSUdfSElEX1BFVEFMWU5YPXkKQ09ORklHX0hJRF9TQU1TVU5HPXkKQ09ORklHX0hJRF9TT05ZPXkKQ09ORklHX0hJRF9TVU5QTFVTPXkKQ09ORklHX0hJRF9IWVBFUlZfTU9VU0U9bQpDT05GSUdfSElEX1RPUFNFRUQ9eQpDT05GSUdfSElEX1BJRD15CkNPTkZJR19VU0JfSElEREVWPXkKQ09ORklHX1VTQj15CkNPTkZJR19VU0JfQU5OT1VOQ0VfTkVXX0RFVklDRVM9eQpDT05GSUdfVVNCX01PTj15CkNPTkZJR19VU0JfRUhDSV9IQ0Q9eQpDT05GSUdfVVNCX09IQ0lfSENEPXkKQ09ORklHX1VTQl9VSENJX0hDRD15CkNPTkZJR19VU0JfUFJJTlRFUj15CkNPTkZJR19VU0JfU1RPUkFHRT15CkNPTkZJR19FREFDPXkKQ09ORklHX1JUQ19DTEFTUz15CiMgQ09ORklHX1JUQ19IQ1RPU1lTIGlzIG5vdCBzZXQKQ09ORklHX0RNQURFVklDRVM9eQpDT05GSUdfVklSVF9EUklWRVJTPXkKQ09ORklHX1ZJUlRJT19QQ0k9eQpDT05GSUdfSFlQRVJWPW0KQ09ORklHX0hZUEVSVl9VVElMUz1tCkNPTkZJR19IWVBFUlZfQkFMTE9PTj1tCkNPTkZJR19FRUVQQ19MQVBUT1A9eQpDT05GSUdfQU1EX0lPTU1VPXkKQ09ORklHX0lOVEVMX0lPTU1VPXkKIyBDT05GSUdfSU5URUxfSU9NTVVfREVGQVVMVF9PTiBpcyBub3Qgc2V0CkNPTkZJR19FWFQ0X0ZTPXkKQ09ORklHX0VYVDRfRlNfUE9TSVhfQUNMPXkKQ09ORklHX0VYVDRfRlNfU0VDVVJJVFk9eQpDT05GSUdfWEZTX0ZTPXkKQ09ORklHX1hGU19RVU9UQT15CkNPTkZJR19YRlNfUE9TSVhfQUNMPXkKQ09ORklHX0JUUkZTX0ZTPW0KQ09ORklHX0JUUkZTX0ZTX1BPU0lYX0FDTD15CkNPTkZJR19RVU9UQT15CkNPTkZJR19RVU9UQV9ORVRMSU5LX0lOVEVSRkFDRT15CiMgQ09ORklHX1BSSU5UX1FVT1RBX1dBUk5JTkcgaXMgbm90IHNldApDT05GSUdfUUZNVF9WMj15CkNPTkZJR19BVVRPRlM0X0ZTPXkKQ09ORklHX0ZVU0VfRlM9eQpDT05GSUdfT1ZFUkxBWV9GUz1tCkNPTkZJR19JU085NjYwX0ZTPXkKQ09ORklHX0pPTElFVD15CkNPTkZJR19aSVNPRlM9eQpDT05GSUdfTVNET1NfRlM9eQpDT05GSUdfVkZBVF9GUz15CkNPTkZJR19QUk9DX0tDT1JFPXkKQ09ORklHX1RNUEZTX1BPU0lYX0FDTD15CkNPTkZJR19IVUdFVExCRlM9eQpDT05GSUdfTkZTX0ZTPXkKQ09ORklHX05GU19WND15CkNPTkZJR19ORlNfU1dBUD15CkNPTkZJR19ORlNfVjRfMT15CkNPTkZJR19ORlNfVjRfMj15CkNPTkZJR19ORlNEPXkKQ09ORklHX05GU0RfVjQ9eQpDT05GSUdfQ0VQSF9GUz1tCkNPTkZJR19DRVBIX0ZTX1BPU0lYX0FDTD15CkNPTkZJR19DSUZTPXkKQ09ORklHXzlQX0ZTPW0KQ09ORklHXzlQX0ZTX1BPU0lYX0FDTD15CkNPTkZJR185UF9GU19TRUNVUklUWT15CkNPTkZJR19OTFNfREVGQVVMVD0idXRmOCIKQ09ORklHX05MU19DT0RFUEFHRV80Mzc9eQpDT05GSUdfTkxTX0FTQ0lJPXkKQ09ORklHX05MU19JU084ODU5XzE9eQpDT05GSUdfTkxTX1VURjg9eQpDT05GSUdfU0VDVVJJVFk9eQpDT05GSUdfU0VDVVJJVFlfTkVUV09SSz15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVhfQk9PVFBBUkFNPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVhfRElTQUJMRT15CkNPTkZJR19DUllQVE9fWFRTPXkKQ09ORklHX0NSWVBUT19BRVNfTklfSU5URUw9eQpDT05GSUdfQ1JZUFRPX1VTRVJfQVBJX0hBU0g9eQpDT05GSUdfQ1JZUFRPX1VTRVJfQVBJX1NLQ0lQSEVSPXkKQ09ORklHX1BSSU5US19USU1FPXkKIyBDT05GSUdfVU5VU0VEX1NZTUJPTFMgaXMgbm90IHNldApDT05GSUdfTUFHSUNfU1lTUlE9eQpDT05GSUdfREVCVUdfS0VSTkVMPXkKQ09ORklHX0RFQlVHX1NUQUNLX1VTQUdFPXkKQ09ORklHX0RFQlVHX1NUQUNLT1ZFUkZMT1c9eQojIENPTkZJR19TQ0hFRF9ERUJVRyBpcyBub3Qgc2V0CkNPTkZJR19TQ0hFRFNUQVRTPXkKQ09ORklHX0ZVTkNUSU9OX1RSQUNFUj15CkNPTkZJR19GVFJBQ0VfU1lTQ0FMTFM9eQpDT05GSUdfQkxLX0RFVl9JT19UUkFDRT15CkNPTkZJR19QUk9WSURFX09IQ0kxMzk0X0RNQV9JTklUPXkKQ09ORklHX0VBUkxZX1BSSU5US19EQkdQPXkKQ09ORklHX0RFQlVHX0JPT1RfUEFSQU1TPXkKQ09ORklHX09QVElNSVpFX0lOTElOSU5HPXkK" - }, - { - "kernelversion": "1_1.25.0", - "kernelrelease": "4.19.202", - "target": "minikube", - "kernelconfigdata": "IyBDT05GSUdfTE9DQUxWRVJTSU9OX0FVVE8gaXMgbm90IHNldApDT05GSUdfS0VSTkVMX0xaND15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWj15CkNPTkZJR19ISUdIX1JFU19USU1FUlM9eQpDT05GSUdfUFJFRU1QVF9WT0xVTlRBUlk9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19UQVNLX1hBQ0NUPXkKQ09ORklHX1RBU0tfSU9fQUNDT1VOVElORz15CkNPTkZJR19JS0NPTkZJRz15CkNPTkZJR19JS0NPTkZJR19QUk9DPXkKQ09ORklHX0xPR19CVUZfU0hJRlQ9MTgKQ09ORklHX0NHUk9VUFM9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9TQ0hFRD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX1JUX0dST1VQX1NDSEVEPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19DR1JPVVBfQlBGPXkKQ09ORklHX1VTRVJfTlM9eQpDT05GSUdfQkxLX0RFVl9JTklUUkQ9eQpDT05GSUdfQlBGX1NZU0NBTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19TTVA9eQpDT05GSUdfSFlQRVJWSVNPUl9HVUVTVD15CkNPTkZJR19QQVJBVklSVF9TUElOTE9DS1M9eQpDT05GSUdfS1ZNX0RFQlVHX0ZTPXkKQ09ORklHX0NBTEdBUllfSU9NTVU9eQpDT05GSUdfWDg2X1JFUk9VVEVfRk9SX0JST0tFTl9CT09UX0lSUVM9eQpDT05GSUdfTUlDUk9DT0RFX0FNRD15CkNPTkZJR19YODZfTVNSPXkKQ09ORklHX1g4Nl9DUFVJRD15CkNPTkZJR19OVU1BPXkKQ09ORklHX1g4Nl9DSEVDS19CSU9TX0NPUlJVUFRJT049eQojIENPTkZJR19NVFJSX1NBTklUSVpFUiBpcyBub3Qgc2V0CkNPTkZJR19FRkk9eQpDT05GSUdfSFpfMTAwMD15CkNPTkZJR19LRVhFQz15CkNPTkZJR19DUkFTSF9EVU1QPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1BNX0RFQlVHPXkKQ09ORklHX1BNX1RSQUNFX1JUQz15CkNPTkZJR19BQ1BJX0RPQ0s9eQpDT05GSUdfQ1BVX0ZSRVFfREVGQVVMVF9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9QRVJGT1JNQU5DRT15CkNPTkZJR19DUFVfRlJFUV9HT1ZfT05ERU1BTkQ9eQpDT05GSUdfWDg2X0FDUElfQ1BVRlJFUT15CkNPTkZJR19QQ0lFUE9SVEJVUz15CkNPTkZJR19IT1RQTFVHX1BDST15CkNPTkZJR19QQ0NBUkQ9eQpDT05GSUdfWUVOVEE9eQpDT05GSUdfSUEzMl9FTVVMQVRJT049eQpDT05GSUdfRUZJX1ZBUlM9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9JTlRFTD1tCkNPTkZJR19LVk1fQU1EPW0KQ09ORklHX1ZIT1NUX05FVD1tCkNPTkZJR19WSE9TVF9WU09DSz1tCkNPTkZJR19LUFJPQkVTPXkKQ09ORklHX0pVTVBfTEFCRUw9eQpDT05GSUdfTU9EVUxFUz15CkNPTkZJR19NT0RVTEVfVU5MT0FEPXkKQ09ORklHX01PRFVMRV9GT1JDRV9VTkxPQUQ9eQpDT05GSUdfUEFSVElUSU9OX0FEVkFOQ0VEPXkKQ09ORklHX09TRl9QQVJUSVRJT049eQpDT05GSUdfQU1JR0FfUEFSVElUSU9OPXkKQ09ORklHX01BQ19QQVJUSVRJT049eQpDT05GSUdfQlNEX0RJU0tMQUJFTD15CkNPTkZJR19NSU5JWF9TVUJQQVJUSVRJT049eQpDT05GSUdfU09MQVJJU19YODZfUEFSVElUSU9OPXkKQ09ORklHX1VOSVhXQVJFX0RJU0tMQUJFTD15CkNPTkZJR19TR0lfUEFSVElUSU9OPXkKQ09ORklHX1NVTl9QQVJUSVRJT049eQpDT05GSUdfS0FSTUFfUEFSVElUSU9OPXkKQ09ORklHX0JJTkZNVF9NSVNDPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFX01BRFZJU0U9eQpDT05GSUdfTkVUPXkKQ09ORklHX1BBQ0tFVD15CkNPTkZJR19VTklYPXkKQ09ORklHX1hGUk1fVVNFUj15CkNPTkZJR19JTkVUPXkKQ09ORklHX0lQX01VTFRJQ0FTVD15CkNPTkZJR19JUF9BRFZBTkNFRF9ST1VURVI9eQpDT05GSUdfSVBfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX0lQX1JPVVRFX01VTFRJUEFUSD15CkNPTkZJR19JUF9ST1VURV9WRVJCT1NFPXkKQ09ORklHX0lQX1BOUD15CkNPTkZJR19JUF9QTlBfREhDUD15CkNPTkZJR19JUF9QTlBfQk9PVFA9eQpDT05GSUdfSVBfUE5QX1JBUlA9eQpDT05GSUdfTkVUX0lQSVA9bQpDT05GSUdfSVBfTVJPVVRFPXkKQ09ORklHX0lQX1BJTVNNX1YxPXkKQ09ORklHX0lQX1BJTVNNX1YyPXkKQ09ORklHX1NZTl9DT09LSUVTPXkKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFJBTlNQT1JUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFVOTkVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfQkVFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0lORVRfRElBRyBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfQ09OR19BRFZBTkNFRD15CiMgQ09ORklHX1RDUF9DT05HX0JJQyBpcyBub3Qgc2V0CiMgQ09ORklHX1RDUF9DT05HX1dFU1RXT09EIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfSFRDUCBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfTUQ1U0lHPXkKQ09ORklHX0lORVQ2X0FIPXkKQ09ORklHX0lORVQ2X0VTUD15CkNPTkZJR19JUFY2X01VTFRJUExFX1RBQkxFUz15CkNPTkZJR19ORVRMQUJFTD15CkNPTkZJR19ORVRGSUxURVI9eQpDT05GSUdfTkVURklMVEVSX05FVExJTktfQUNDVD15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19RVUVVRT15CkNPTkZJR19ORl9DT05OVFJBQ0s9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1pPTkVTPXkKQ09ORklHX05GX0NPTk5UUkFDS19FVkVOVFM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVPVVQ9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVTVEFNUD15CkNPTkZJR19ORl9DT05OVFJBQ0tfRlRQPW0KQ09ORklHX05GX0NPTk5UUkFDS19JUkM9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NBTkU9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NJUD1tCkNPTkZJR19ORl9DT05OVFJBQ0tfVEZUUD1tCkNPTkZJR19ORl9DVF9ORVRMSU5LPW0KQ09ORklHX05FVEZJTFRFUl9YVF9TRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DSEVDS1NVTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NMQVNTSUZZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9EU0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0lETEVUSU1FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xFRD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ORkxPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GUVVFVUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9OT1RSQUNLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVEVFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVFBST1hZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfU0VDTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE9QVFNUUklQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9BRERSVFlQRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQlBGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NMVVNURVI9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTU1FTlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5CWVRFUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkxBQkVMPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NQVT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRENDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfREVWR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0VDTj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRVNQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9IQVNITElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hFTFBFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0lQQ09NUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBSQU5HRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBWUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTDJUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTEVOR1RIPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTUFDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NVUxUSVBPUlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX05GQUNDVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfT1NGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PV05FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUE9MSUNZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QSFlTREVWPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QS1RUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9RVU9UQT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkFURUVTVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVBTE09bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1JFQ0VOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU0NUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU09DS0VUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFURT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU1RBVElTVElDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVFJJTkc9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVElNRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVTMyPW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX0JSSURHRV9ORl9FQlRBQkxFUz1tCkNPTkZJR19CUklER0VfRUJUX0JST1VURT1tCkNPTkZJR19CUklER0VfRUJUX1RfRklMVEVSPW0KQ09ORklHX0JSSURHRV9FQlRfVF9OQVQ9bQpDT05GSUdfQlJJREdFX0VCVF84MDJfMz1tCkNPTkZJR19CUklER0VfRUJUX0FNT05HPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQPW0KQ09ORklHX0JSSURHRV9FQlRfSVA9bQpDT05GSUdfQlJJREdFX0VCVF9JUDY9bQpDT05GSUdfQlJJREdFX0VCVF9MSU1JVD1tCkNPTkZJR19CUklER0VfRUJUX01BUks9bQpDT05GSUdfQlJJREdFX0VCVF9QS1RUWVBFPW0KQ09ORklHX0JSSURHRV9FQlRfU1RQPW0KQ09ORklHX0JSSURHRV9FQlRfVkxBTj1tCkNPTkZJR19CUklER0VfRUJUX0FSUFJFUExZPW0KQ09ORklHX0JSSURHRV9FQlRfRE5BVD1tCkNPTkZJR19CUklER0VfRUJUX01BUktfVD1tCkNPTkZJR19CUklER0VfRUJUX1JFRElSRUNUPW0KQ09ORklHX0JSSURHRV9FQlRfU05BVD1tCkNPTkZJR19CUklER0VfRUJUX0xPRz1tCkNPTkZJR19CUklER0VfRUJUX05GTE9HPW0KQ09ORklHX0lQX1NDVFA9eQpDT05GSUdfQlJJREdFPW0KQ09ORklHX05FVF9TQ0hFRD15CkNPTkZJR19ORVRfU0NIX0hUQj15CkNPTkZJR19ORVRfU0NIX1BSSU89eQpDT05GSUdfTkVUX1NDSF9TRlE9eQpDT05GSUdfTkVUX1NDSF9UQkY9eQpDT05GSUdfTkVUX1NDSF9ORVRFTT15CkNPTkZJR19ORVRfU0NIX0lOR1JFU1M9bQpDT05GSUdfTkVUX0NMU19CQVNJQz1tCkNPTkZJR19ORVRfQ0xTX0ZXPXkKQ09ORklHX05FVF9DTFNfVTMyPW0KQ09ORklHX05FVF9DTFNfQ0dST1VQPXkKQ09ORklHX05FVF9DTFNfQlBGPW0KQ09ORklHX05FVF9DTFNfTUFUQ0hBTEw9eQpDT05GSUdfTkVUX0VNQVRDSD15CkNPTkZJR19ORVRfRU1BVENIX0lQU0VUPXkKQ09ORklHX05FVF9DTFNfQUNUPXkKQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfQlBGPW0KQ09ORklHX05FVF9BQ1RfQ09OTk1BUks9bQpDT05GSUdfT1BFTlZTV0lUQ0g9bQpDT05GSUdfVlNPQ0tFVFM9bQpDT05GSUdfVklSVElPX1ZTT0NLRVRTPW0KQ09ORklHX0NHUk9VUF9ORVRfUFJJTz15CkNPTkZJR19CUEZfSklUPXkKQ09ORklHX0hBTVJBRElPPXkKQ09ORklHX0NGRzgwMjExPXkKQ09ORklHX01BQzgwMjExPXkKQ09ORklHX01BQzgwMjExX0xFRFM9eQpDT05GSUdfUkZLSUxMPXkKQ09ORklHX05FVF85UD1tCkNPTkZJR19ORVRfOVBfVklSVElPPW0KQ09ORklHX0NFUEhfTElCPXkKQ09ORklHX1VFVkVOVF9IRUxQRVJfUEFUSD0iL3NiaW4vaG90cGx1ZyIKQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0RFQlVHX0RFVlJFUz15CkNPTkZJR19DT05ORUNUT1I9eQpDT05GSUdfQkxLX0RFVl9MT09QPXkKQ09ORklHX0JMS19ERVZfTkJEPW0KQ09ORklHX1ZJUlRJT19CTEs9eQpDT05GSUdfQkxLX0RFVl9SQkQ9bQpDT05GSUdfVk1XQVJFX0JBTExPT049bQpDT05GSUdfVk1XQVJFX1ZNQ0k9bQpDT05GSUdfQkxLX0RFVl9TRD15CkNPTkZJR19CTEtfREVWX1NSPXkKQ09ORklHX0NIUl9ERVZfU0c9eQpDT05GSUdfU0NTSV9DT05TVEFOVFM9eQpDT05GSUdfU0NTSV9TUElfQVRUUlM9eQpDT05GSUdfU0NTSV9GQ19BVFRSUz1tCkNPTkZJR19TQ1NJX0lTQ1NJX0FUVFJTPW0KQ09ORklHX1NDU0lfU0FTX0xJQlNBUz1tCkNPTkZJR19TQ1NJX1NBU19BVEE9eQpDT05GSUdfU0NTSV9TUlBfQVRUUlM9bQpDT05GSUdfTUVHQVJBSURfTkVXR0VOPXkKQ09ORklHX01FR0FSQUlEX01NPW0KQ09ORklHX1ZNV0FSRV9QVlNDU0k9eQpDT05GSUdfQVRBPXkKQ09ORklHX1NBVEFfQUhDST15CkNPTkZJR19BVEFfUElJWD15CkNPTkZJR19QQVRBX0FNRD15CkNPTkZJR19QQVRBX09MRFBJSVg9eQpDT05GSUdfUEFUQV9TQ0g9eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD15CkNPTkZJR19CTEtfREVWX0RNPXkKQ09ORklHX0RNX0NSWVBUPXkKQ09ORklHX0RNX1NOQVBTSE9UPXkKQ09ORklHX0RNX1RISU5fUFJPVklTSU9OSU5HPXkKQ09ORklHX0RNX01JUlJPUj15CkNPTkZJR19ETV9aRVJPPXkKQ09ORklHX0ZVU0lPTj15CkNPTkZJR19GVVNJT05fU1BJPW0KQ09ORklHX0ZVU0lPTl9GQz1tCkNPTkZJR19GVVNJT05fU0FTPW0KQ09ORklHX0ZVU0lPTl9DVEw9bQpDT05GSUdfRlVTSU9OX0xPR0dJTkc9eQpDT05GSUdfTUFDSU5UT1NIX0RSSVZFUlM9eQpDT05GSUdfTUFDX0VNVU1PVVNFQlROPXkKQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfRFVNTVk9bQpDT05GSUdfSUZCPW0KQ09ORklHX01BQ1ZMQU49eQpDT05GSUdfTUFDVlRBUD15CkNPTkZJR19JUFZMQU49bQpDT05GSUdfVlhMQU49eQpDT05GSUdfTkVUQ09OU09MRT15CkNPTkZJR19UVU49eQpDT05GSUdfVkVUSD15CkNPTkZJR19WSVJUSU9fTkVUPXkKQ09ORklHX05FVF9WUkY9bQpDT05GSUdfQU1EODExMV9FVEg9bQpDT05GSUdfUENORVQzMj1tCkNPTkZJR19QQ01DSUFfTk1DTEFOPW0KQ09ORklHX1RJR09OMz15CkNPTkZJR19ORVRfVFVMSVA9eQpDT05GSUdfRTEwMD15CkNPTkZJR19FMTAwMD15CkNPTkZJR19FMTAwMEU9eQpDT05GSUdfU0tZMj15CkNPTkZJR19GT1JDRURFVEg9eQpDT05GSUdfODEzOUNQPXkKQ09ORklHXzgxMzlUT089eQpDT05GSUdfRkREST15CkNPTkZJR19WTVhORVQzPXkKQ09ORklHX0hZUEVSVl9ORVQ9bQpDT05GSUdfSU5QVVRfUE9MTERFVj15CkNPTkZJR19JTlBVVF9FVkRFVj15CkNPTkZJR19JTlBVVF9KT1lTVElDSz15CkNPTkZJR19JTlBVVF9UQUJMRVQ9eQpDT05GSUdfSU5QVVRfVE9VQ0hTQ1JFRU49eQpDT05GSUdfSU5QVVRfTUlTQz15CiMgQ09ORklHX0xFR0FDWV9QVFlTIGlzIG5vdCBzZXQKQ09ORklHX1NFUklBTF9OT05TVEFOREFSRD15CkNPTkZJR19TRVJJQUxfODI1MD15CkNPTkZJR19TRVJJQUxfODI1MF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF84MjUwX05SX1VBUlRTPTMyCkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9NQU5ZX1BPUlRTPXkKQ09ORklHX1NFUklBTF84MjUwX1NIQVJFX0lSUT15CkNPTkZJR19TRVJJQUxfODI1MF9ERVRFQ1RfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX1JTQT15CkNPTkZJR19IV19SQU5ET009eQojIENPTkZJR19IV19SQU5ET01fSU5URUwgaXMgbm90IHNldAojIENPTkZJR19IV19SQU5ET01fQU1EIGlzIG5vdCBzZXQKQ09ORklHX0hXX1JBTkRPTV9WSVJUSU89eQpDT05GSUdfTlZSQU09eQpDT05GSUdfSFBFVD15CiMgQ09ORklHX0hQRVRfTU1BUCBpcyBub3Qgc2V0CkNPTkZJR19JMkNfSTgwMT15CkNPTkZJR19XQVRDSERPRz15CkNPTkZJR19BR1A9eQpDT05GSUdfQUdQX0FNRDY0PXkKQ09ORklHX0FHUF9JTlRFTD15CkNPTkZJR19EUk09eQpDT05GSUdfRFJNX0k5MTU9eQpDT05GSUdfRFJNX1ZJUlRJT19HUFU9eQpDT05GSUdfRkJfTU9ERV9IRUxQRVJTPXkKQ09ORklHX0ZCX1RJTEVCTElUVElORz15CkNPTkZJR19GQl9FRkk9eQojIENPTkZJR19MQ0RfQ0xBU1NfREVWSUNFIGlzIG5vdCBzZXQKQ09ORklHX0xPR089eQojIENPTkZJR19MT0dPX0xJTlVYX01PTk8gaXMgbm90IHNldAojIENPTkZJR19MT0dPX0xJTlVYX1ZHQTE2IGlzIG5vdCBzZXQKQ09ORklHX1NPVU5EPXkKQ09ORklHX1NORD15CkNPTkZJR19TTkRfSFJUSU1FUj15CkNPTkZJR19TTkRfU0VRVUVOQ0VSPXkKQ09ORklHX1NORF9TRVFfRFVNTVk9eQpDT05GSUdfU05EX0hEQV9JTlRFTD15CkNPTkZJR19TTkRfSERBX0hXREVQPXkKQ09ORklHX0hJRFJBVz15CkNPTkZJR19ISURfR1lSQVRJT049eQpDT05GSUdfTE9HSVRFQ0hfRkY9eQpDT05GSUdfSElEX05UUklHPXkKQ09ORklHX0hJRF9QQU5USEVSTE9SRD15CkNPTkZJR19QQU5USEVSTE9SRF9GRj15CkNPTkZJR19ISURfUEVUQUxZTlg9eQpDT05GSUdfSElEX1NBTVNVTkc9eQpDT05GSUdfSElEX1NPTlk9eQpDT05GSUdfSElEX1NVTlBMVVM9eQpDT05GSUdfSElEX0hZUEVSVl9NT1VTRT1tCkNPTkZJR19ISURfVE9QU0VFRD15CkNPTkZJR19ISURfUElEPXkKQ09ORklHX1VTQl9ISURERVY9eQpDT05GSUdfVVNCPXkKQ09ORklHX1VTQl9BTk5PVU5DRV9ORVdfREVWSUNFUz15CkNPTkZJR19VU0JfTU9OPXkKQ09ORklHX1VTQl9FSENJX0hDRD15CkNPTkZJR19VU0JfT0hDSV9IQ0Q9eQpDT05GSUdfVVNCX1VIQ0lfSENEPXkKQ09ORklHX1VTQl9QUklOVEVSPXkKQ09ORklHX1VTQl9TVE9SQUdFPXkKQ09ORklHX0VEQUM9eQpDT05GSUdfUlRDX0NMQVNTPXkKIyBDT05GSUdfUlRDX0hDVE9TWVMgaXMgbm90IHNldApDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19WSVJUX0RSSVZFUlM9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19IWVBFUlY9bQpDT05GSUdfSFlQRVJWX1VUSUxTPW0KQ09ORklHX0hZUEVSVl9CQUxMT09OPW0KQ09ORklHX0VFRVBDX0xBUFRPUD15CkNPTkZJR19BTURfSU9NTVU9eQpDT05GSUdfSU5URUxfSU9NTVU9eQojIENPTkZJR19JTlRFTF9JT01NVV9ERUZBVUxUX09OIGlzIG5vdCBzZXQKQ09ORklHX0VYVDRfRlM9eQpDT05GSUdfRVhUNF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfRVhUNF9GU19TRUNVUklUWT15CkNPTkZJR19YRlNfRlM9eQpDT05GSUdfWEZTX1FVT1RBPXkKQ09ORklHX1hGU19QT1NJWF9BQ0w9eQpDT05GSUdfQlRSRlNfRlM9bQpDT05GSUdfQlRSRlNfRlNfUE9TSVhfQUNMPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX1FVT1RBX05FVExJTktfSU5URVJGQUNFPXkKIyBDT05GSUdfUFJJTlRfUVVPVEFfV0FSTklORyBpcyBub3Qgc2V0CkNPTkZJR19RRk1UX1YyPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz15CkNPTkZJR19PVkVSTEFZX0ZTPW0KQ09ORklHX0lTTzk2NjBfRlM9eQpDT05GSUdfSk9MSUVUPXkKQ09ORklHX1pJU09GUz15CkNPTkZJR19NU0RPU19GUz15CkNPTkZJR19WRkFUX0ZTPXkKQ09ORklHX1BST0NfS0NPUkU9eQpDT05GSUdfVE1QRlNfUE9TSVhfQUNMPXkKQ09ORklHX0hVR0VUTEJGUz15CkNPTkZJR19ORlNfRlM9eQpDT05GSUdfTkZTX1Y0PXkKQ09ORklHX05GU19TV0FQPXkKQ09ORklHX05GU19WNF8xPXkKQ09ORklHX05GU19WNF8yPXkKQ09ORklHX05GU0Q9eQpDT05GSUdfTkZTRF9WND15CkNPTkZJR19DRVBIX0ZTPW0KQ09ORklHX0NFUEhfRlNfUE9TSVhfQUNMPXkKQ09ORklHX0NJRlM9eQpDT05GSUdfOVBfRlM9bQpDT05GSUdfOVBfRlNfUE9TSVhfQUNMPXkKQ09ORklHXzlQX0ZTX1NFQ1VSSVRZPXkKQ09ORklHX05MU19ERUZBVUxUPSJ1dGY4IgpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfQVNDSUk9eQpDT05GSUdfTkxTX0lTTzg4NTlfMT15CkNPTkZJR19OTFNfVVRGOD15CkNPTkZJR19TRUNVUklUWT15CkNPTkZJR19TRUNVUklUWV9ORVRXT1JLPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVg9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9CT09UUEFSQU09eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9ESVNBQkxFPXkKQ09ORklHX0NSWVBUT19YVFM9eQpDT05GSUdfQ1JZUFRPX0FFU19OSV9JTlRFTD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfSEFTSD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfU0tDSVBIRVI9eQpDT05GSUdfUFJJTlRLX1RJTUU9eQojIENPTkZJR19VTlVTRURfU1lNQk9MUyBpcyBub3Qgc2V0CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19LRVJORUw9eQpDT05GSUdfREVCVUdfU1RBQ0tfVVNBR0U9eQpDT05GSUdfREVCVUdfU1RBQ0tPVkVSRkxPVz15CiMgQ09ORklHX1NDSEVEX0RFQlVHIGlzIG5vdCBzZXQKQ09ORklHX1NDSEVEU1RBVFM9eQpDT05GSUdfRlVOQ1RJT05fVFJBQ0VSPXkKQ09ORklHX0ZUUkFDRV9TWVNDQUxMUz15CkNPTkZJR19CTEtfREVWX0lPX1RSQUNFPXkKQ09ORklHX1BST1ZJREVfT0hDSTEzOTRfRE1BX0lOSVQ9eQpDT05GSUdfRUFSTFlfUFJJTlRLX0RCR1A9eQpDT05GSUdfREVCVUdfQk9PVF9QQVJBTVM9eQpDT05GSUdfT1BUSU1JWkVfSU5MSU5JTkc9eQo=" - }, - { - "kernelversion": "1_1.25.1", - "kernelrelease": "4.19.202", - "target": "minikube", - "kernelconfigdata": "IyBDT05GSUdfTE9DQUxWRVJTSU9OX0FVVE8gaXMgbm90IHNldApDT05GSUdfS0VSTkVMX0xaND15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWj15CkNPTkZJR19ISUdIX1JFU19USU1FUlM9eQpDT05GSUdfUFJFRU1QVF9WT0xVTlRBUlk9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19UQVNLX1hBQ0NUPXkKQ09ORklHX1RBU0tfSU9fQUNDT1VOVElORz15CkNPTkZJR19JS0NPTkZJRz15CkNPTkZJR19JS0NPTkZJR19QUk9DPXkKQ09ORklHX0xPR19CVUZfU0hJRlQ9MTgKQ09ORklHX0NHUk9VUFM9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9TQ0hFRD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX1JUX0dST1VQX1NDSEVEPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19DR1JPVVBfQlBGPXkKQ09ORklHX1VTRVJfTlM9eQpDT05GSUdfQkxLX0RFVl9JTklUUkQ9eQpDT05GSUdfQlBGX1NZU0NBTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19TTVA9eQpDT05GSUdfSFlQRVJWSVNPUl9HVUVTVD15CkNPTkZJR19QQVJBVklSVF9TUElOTE9DS1M9eQpDT05GSUdfS1ZNX0RFQlVHX0ZTPXkKQ09ORklHX0NBTEdBUllfSU9NTVU9eQpDT05GSUdfWDg2X1JFUk9VVEVfRk9SX0JST0tFTl9CT09UX0lSUVM9eQpDT05GSUdfTUlDUk9DT0RFX0FNRD15CkNPTkZJR19YODZfTVNSPXkKQ09ORklHX1g4Nl9DUFVJRD15CkNPTkZJR19OVU1BPXkKQ09ORklHX1g4Nl9DSEVDS19CSU9TX0NPUlJVUFRJT049eQojIENPTkZJR19NVFJSX1NBTklUSVpFUiBpcyBub3Qgc2V0CkNPTkZJR19FRkk9eQpDT05GSUdfSFpfMTAwMD15CkNPTkZJR19LRVhFQz15CkNPTkZJR19DUkFTSF9EVU1QPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1BNX0RFQlVHPXkKQ09ORklHX1BNX1RSQUNFX1JUQz15CkNPTkZJR19BQ1BJX0RPQ0s9eQpDT05GSUdfQ1BVX0ZSRVFfREVGQVVMVF9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9QRVJGT1JNQU5DRT15CkNPTkZJR19DUFVfRlJFUV9HT1ZfT05ERU1BTkQ9eQpDT05GSUdfWDg2X0FDUElfQ1BVRlJFUT15CkNPTkZJR19QQ0lFUE9SVEJVUz15CkNPTkZJR19IT1RQTFVHX1BDST15CkNPTkZJR19QQ0NBUkQ9eQpDT05GSUdfWUVOVEE9eQpDT05GSUdfSUEzMl9FTVVMQVRJT049eQpDT05GSUdfRUZJX1ZBUlM9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9JTlRFTD1tCkNPTkZJR19LVk1fQU1EPW0KQ09ORklHX1ZIT1NUX05FVD1tCkNPTkZJR19WSE9TVF9WU09DSz1tCkNPTkZJR19LUFJPQkVTPXkKQ09ORklHX0pVTVBfTEFCRUw9eQpDT05GSUdfTU9EVUxFUz15CkNPTkZJR19NT0RVTEVfVU5MT0FEPXkKQ09ORklHX01PRFVMRV9GT1JDRV9VTkxPQUQ9eQpDT05GSUdfUEFSVElUSU9OX0FEVkFOQ0VEPXkKQ09ORklHX09TRl9QQVJUSVRJT049eQpDT05GSUdfQU1JR0FfUEFSVElUSU9OPXkKQ09ORklHX01BQ19QQVJUSVRJT049eQpDT05GSUdfQlNEX0RJU0tMQUJFTD15CkNPTkZJR19NSU5JWF9TVUJQQVJUSVRJT049eQpDT05GSUdfU09MQVJJU19YODZfUEFSVElUSU9OPXkKQ09ORklHX1VOSVhXQVJFX0RJU0tMQUJFTD15CkNPTkZJR19TR0lfUEFSVElUSU9OPXkKQ09ORklHX1NVTl9QQVJUSVRJT049eQpDT05GSUdfS0FSTUFfUEFSVElUSU9OPXkKQ09ORklHX0JJTkZNVF9NSVNDPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFX01BRFZJU0U9eQpDT05GSUdfTkVUPXkKQ09ORklHX1BBQ0tFVD15CkNPTkZJR19VTklYPXkKQ09ORklHX1hGUk1fVVNFUj15CkNPTkZJR19JTkVUPXkKQ09ORklHX0lQX01VTFRJQ0FTVD15CkNPTkZJR19JUF9BRFZBTkNFRF9ST1VURVI9eQpDT05GSUdfSVBfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX0lQX1JPVVRFX01VTFRJUEFUSD15CkNPTkZJR19JUF9ST1VURV9WRVJCT1NFPXkKQ09ORklHX0lQX1BOUD15CkNPTkZJR19JUF9QTlBfREhDUD15CkNPTkZJR19JUF9QTlBfQk9PVFA9eQpDT05GSUdfSVBfUE5QX1JBUlA9eQpDT05GSUdfTkVUX0lQSVA9bQpDT05GSUdfSVBfTVJPVVRFPXkKQ09ORklHX0lQX1BJTVNNX1YxPXkKQ09ORklHX0lQX1BJTVNNX1YyPXkKQ09ORklHX1NZTl9DT09LSUVTPXkKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFJBTlNQT1JUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFVOTkVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfQkVFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0lORVRfRElBRyBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfQ09OR19BRFZBTkNFRD15CiMgQ09ORklHX1RDUF9DT05HX0JJQyBpcyBub3Qgc2V0CiMgQ09ORklHX1RDUF9DT05HX1dFU1RXT09EIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfSFRDUCBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfTUQ1U0lHPXkKQ09ORklHX0lORVQ2X0FIPXkKQ09ORklHX0lORVQ2X0VTUD15CkNPTkZJR19JUFY2X01VTFRJUExFX1RBQkxFUz15CkNPTkZJR19ORVRMQUJFTD15CkNPTkZJR19ORVRGSUxURVI9eQpDT05GSUdfTkVURklMVEVSX05FVExJTktfQUNDVD15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19RVUVVRT15CkNPTkZJR19ORl9DT05OVFJBQ0s9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1pPTkVTPXkKQ09ORklHX05GX0NPTk5UUkFDS19FVkVOVFM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVPVVQ9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVTVEFNUD15CkNPTkZJR19ORl9DT05OVFJBQ0tfRlRQPW0KQ09ORklHX05GX0NPTk5UUkFDS19JUkM9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NBTkU9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NJUD1tCkNPTkZJR19ORl9DT05OVFJBQ0tfVEZUUD1tCkNPTkZJR19ORl9DVF9ORVRMSU5LPW0KQ09ORklHX05FVEZJTFRFUl9YVF9TRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DSEVDS1NVTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NMQVNTSUZZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9EU0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0lETEVUSU1FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xFRD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ORkxPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GUVVFVUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9OT1RSQUNLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVEVFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVFBST1hZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfU0VDTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE9QVFNUUklQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9BRERSVFlQRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQlBGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NMVVNURVI9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTU1FTlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5CWVRFUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkxBQkVMPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NQVT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRENDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfREVWR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0VDTj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRVNQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9IQVNITElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hFTFBFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0lQQ09NUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBSQU5HRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBWUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTDJUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTEVOR1RIPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTUFDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NVUxUSVBPUlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX05GQUNDVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfT1NGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PV05FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUE9MSUNZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QSFlTREVWPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QS1RUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9RVU9UQT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkFURUVTVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVBTE09bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1JFQ0VOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU0NUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU09DS0VUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFURT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU1RBVElTVElDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVFJJTkc9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVElNRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVTMyPW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX0JSSURHRV9ORl9FQlRBQkxFUz1tCkNPTkZJR19CUklER0VfRUJUX0JST1VURT1tCkNPTkZJR19CUklER0VfRUJUX1RfRklMVEVSPW0KQ09ORklHX0JSSURHRV9FQlRfVF9OQVQ9bQpDT05GSUdfQlJJREdFX0VCVF84MDJfMz1tCkNPTkZJR19CUklER0VfRUJUX0FNT05HPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQPW0KQ09ORklHX0JSSURHRV9FQlRfSVA9bQpDT05GSUdfQlJJREdFX0VCVF9JUDY9bQpDT05GSUdfQlJJREdFX0VCVF9MSU1JVD1tCkNPTkZJR19CUklER0VfRUJUX01BUks9bQpDT05GSUdfQlJJREdFX0VCVF9QS1RUWVBFPW0KQ09ORklHX0JSSURHRV9FQlRfU1RQPW0KQ09ORklHX0JSSURHRV9FQlRfVkxBTj1tCkNPTkZJR19CUklER0VfRUJUX0FSUFJFUExZPW0KQ09ORklHX0JSSURHRV9FQlRfRE5BVD1tCkNPTkZJR19CUklER0VfRUJUX01BUktfVD1tCkNPTkZJR19CUklER0VfRUJUX1JFRElSRUNUPW0KQ09ORklHX0JSSURHRV9FQlRfU05BVD1tCkNPTkZJR19CUklER0VfRUJUX0xPRz1tCkNPTkZJR19CUklER0VfRUJUX05GTE9HPW0KQ09ORklHX0lQX1NDVFA9eQpDT05GSUdfQlJJREdFPW0KQ09ORklHX05FVF9TQ0hFRD15CkNPTkZJR19ORVRfU0NIX0hUQj15CkNPTkZJR19ORVRfU0NIX1BSSU89eQpDT05GSUdfTkVUX1NDSF9TRlE9eQpDT05GSUdfTkVUX1NDSF9UQkY9eQpDT05GSUdfTkVUX1NDSF9ORVRFTT15CkNPTkZJR19ORVRfU0NIX0lOR1JFU1M9bQpDT05GSUdfTkVUX0NMU19CQVNJQz1tCkNPTkZJR19ORVRfQ0xTX0ZXPXkKQ09ORklHX05FVF9DTFNfVTMyPW0KQ09ORklHX05FVF9DTFNfQ0dST1VQPXkKQ09ORklHX05FVF9DTFNfQlBGPW0KQ09ORklHX05FVF9DTFNfTUFUQ0hBTEw9eQpDT05GSUdfTkVUX0VNQVRDSD15CkNPTkZJR19ORVRfRU1BVENIX0lQU0VUPXkKQ09ORklHX05FVF9DTFNfQUNUPXkKQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfQlBGPW0KQ09ORklHX05FVF9BQ1RfQ09OTk1BUks9bQpDT05GSUdfT1BFTlZTV0lUQ0g9bQpDT05GSUdfVlNPQ0tFVFM9bQpDT05GSUdfVklSVElPX1ZTT0NLRVRTPW0KQ09ORklHX0NHUk9VUF9ORVRfUFJJTz15CkNPTkZJR19CUEZfSklUPXkKQ09ORklHX0hBTVJBRElPPXkKQ09ORklHX0NGRzgwMjExPXkKQ09ORklHX01BQzgwMjExPXkKQ09ORklHX01BQzgwMjExX0xFRFM9eQpDT05GSUdfUkZLSUxMPXkKQ09ORklHX05FVF85UD1tCkNPTkZJR19ORVRfOVBfVklSVElPPW0KQ09ORklHX0NFUEhfTElCPXkKQ09ORklHX1VFVkVOVF9IRUxQRVJfUEFUSD0iL3NiaW4vaG90cGx1ZyIKQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0RFQlVHX0RFVlJFUz15CkNPTkZJR19DT05ORUNUT1I9eQpDT05GSUdfQkxLX0RFVl9MT09QPXkKQ09ORklHX0JMS19ERVZfTkJEPW0KQ09ORklHX1ZJUlRJT19CTEs9eQpDT05GSUdfQkxLX0RFVl9SQkQ9bQpDT05GSUdfVk1XQVJFX0JBTExPT049bQpDT05GSUdfVk1XQVJFX1ZNQ0k9bQpDT05GSUdfQkxLX0RFVl9TRD15CkNPTkZJR19CTEtfREVWX1NSPXkKQ09ORklHX0NIUl9ERVZfU0c9eQpDT05GSUdfU0NTSV9DT05TVEFOVFM9eQpDT05GSUdfU0NTSV9TUElfQVRUUlM9eQpDT05GSUdfU0NTSV9GQ19BVFRSUz1tCkNPTkZJR19TQ1NJX0lTQ1NJX0FUVFJTPW0KQ09ORklHX1NDU0lfU0FTX0xJQlNBUz1tCkNPTkZJR19TQ1NJX1NBU19BVEE9eQpDT05GSUdfU0NTSV9TUlBfQVRUUlM9bQpDT05GSUdfTUVHQVJBSURfTkVXR0VOPXkKQ09ORklHX01FR0FSQUlEX01NPW0KQ09ORklHX1ZNV0FSRV9QVlNDU0k9eQpDT05GSUdfQVRBPXkKQ09ORklHX1NBVEFfQUhDST15CkNPTkZJR19BVEFfUElJWD15CkNPTkZJR19QQVRBX0FNRD15CkNPTkZJR19QQVRBX09MRFBJSVg9eQpDT05GSUdfUEFUQV9TQ0g9eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD15CkNPTkZJR19CTEtfREVWX0RNPXkKQ09ORklHX0RNX0NSWVBUPXkKQ09ORklHX0RNX1NOQVBTSE9UPXkKQ09ORklHX0RNX1RISU5fUFJPVklTSU9OSU5HPXkKQ09ORklHX0RNX01JUlJPUj15CkNPTkZJR19ETV9aRVJPPXkKQ09ORklHX0ZVU0lPTj15CkNPTkZJR19GVVNJT05fU1BJPW0KQ09ORklHX0ZVU0lPTl9GQz1tCkNPTkZJR19GVVNJT05fU0FTPW0KQ09ORklHX0ZVU0lPTl9DVEw9bQpDT05GSUdfRlVTSU9OX0xPR0dJTkc9eQpDT05GSUdfTUFDSU5UT1NIX0RSSVZFUlM9eQpDT05GSUdfTUFDX0VNVU1PVVNFQlROPXkKQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfRFVNTVk9bQpDT05GSUdfSUZCPW0KQ09ORklHX01BQ1ZMQU49eQpDT05GSUdfTUFDVlRBUD15CkNPTkZJR19JUFZMQU49bQpDT05GSUdfVlhMQU49eQpDT05GSUdfTkVUQ09OU09MRT15CkNPTkZJR19UVU49eQpDT05GSUdfVkVUSD15CkNPTkZJR19WSVJUSU9fTkVUPXkKQ09ORklHX05FVF9WUkY9bQpDT05GSUdfQU1EODExMV9FVEg9bQpDT05GSUdfUENORVQzMj1tCkNPTkZJR19QQ01DSUFfTk1DTEFOPW0KQ09ORklHX1RJR09OMz15CkNPTkZJR19ORVRfVFVMSVA9eQpDT05GSUdfRTEwMD15CkNPTkZJR19FMTAwMD15CkNPTkZJR19FMTAwMEU9eQpDT05GSUdfU0tZMj15CkNPTkZJR19GT1JDRURFVEg9eQpDT05GSUdfODEzOUNQPXkKQ09ORklHXzgxMzlUT089eQpDT05GSUdfRkREST15CkNPTkZJR19WTVhORVQzPXkKQ09ORklHX0hZUEVSVl9ORVQ9bQpDT05GSUdfSU5QVVRfUE9MTERFVj15CkNPTkZJR19JTlBVVF9FVkRFVj15CkNPTkZJR19JTlBVVF9KT1lTVElDSz15CkNPTkZJR19JTlBVVF9UQUJMRVQ9eQpDT05GSUdfSU5QVVRfVE9VQ0hTQ1JFRU49eQpDT05GSUdfSU5QVVRfTUlTQz15CiMgQ09ORklHX0xFR0FDWV9QVFlTIGlzIG5vdCBzZXQKQ09ORklHX1NFUklBTF9OT05TVEFOREFSRD15CkNPTkZJR19TRVJJQUxfODI1MD15CkNPTkZJR19TRVJJQUxfODI1MF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF84MjUwX05SX1VBUlRTPTMyCkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9NQU5ZX1BPUlRTPXkKQ09ORklHX1NFUklBTF84MjUwX1NIQVJFX0lSUT15CkNPTkZJR19TRVJJQUxfODI1MF9ERVRFQ1RfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX1JTQT15CkNPTkZJR19IV19SQU5ET009eQojIENPTkZJR19IV19SQU5ET01fSU5URUwgaXMgbm90IHNldAojIENPTkZJR19IV19SQU5ET01fQU1EIGlzIG5vdCBzZXQKQ09ORklHX0hXX1JBTkRPTV9WSVJUSU89eQpDT05GSUdfTlZSQU09eQpDT05GSUdfSFBFVD15CiMgQ09ORklHX0hQRVRfTU1BUCBpcyBub3Qgc2V0CkNPTkZJR19JMkNfSTgwMT15CkNPTkZJR19XQVRDSERPRz15CkNPTkZJR19BR1A9eQpDT05GSUdfQUdQX0FNRDY0PXkKQ09ORklHX0FHUF9JTlRFTD15CkNPTkZJR19EUk09eQpDT05GSUdfRFJNX0k5MTU9eQpDT05GSUdfRFJNX1ZJUlRJT19HUFU9eQpDT05GSUdfRkJfTU9ERV9IRUxQRVJTPXkKQ09ORklHX0ZCX1RJTEVCTElUVElORz15CkNPTkZJR19GQl9FRkk9eQojIENPTkZJR19MQ0RfQ0xBU1NfREVWSUNFIGlzIG5vdCBzZXQKQ09ORklHX0xPR089eQojIENPTkZJR19MT0dPX0xJTlVYX01PTk8gaXMgbm90IHNldAojIENPTkZJR19MT0dPX0xJTlVYX1ZHQTE2IGlzIG5vdCBzZXQKQ09ORklHX1NPVU5EPXkKQ09ORklHX1NORD15CkNPTkZJR19TTkRfSFJUSU1FUj15CkNPTkZJR19TTkRfU0VRVUVOQ0VSPXkKQ09ORklHX1NORF9TRVFfRFVNTVk9eQpDT05GSUdfU05EX0hEQV9JTlRFTD15CkNPTkZJR19TTkRfSERBX0hXREVQPXkKQ09ORklHX0hJRFJBVz15CkNPTkZJR19ISURfR1lSQVRJT049eQpDT05GSUdfTE9HSVRFQ0hfRkY9eQpDT05GSUdfSElEX05UUklHPXkKQ09ORklHX0hJRF9QQU5USEVSTE9SRD15CkNPTkZJR19QQU5USEVSTE9SRF9GRj15CkNPTkZJR19ISURfUEVUQUxZTlg9eQpDT05GSUdfSElEX1NBTVNVTkc9eQpDT05GSUdfSElEX1NPTlk9eQpDT05GSUdfSElEX1NVTlBMVVM9eQpDT05GSUdfSElEX0hZUEVSVl9NT1VTRT1tCkNPTkZJR19ISURfVE9QU0VFRD15CkNPTkZJR19ISURfUElEPXkKQ09ORklHX1VTQl9ISURERVY9eQpDT05GSUdfVVNCPXkKQ09ORklHX1VTQl9BTk5PVU5DRV9ORVdfREVWSUNFUz15CkNPTkZJR19VU0JfTU9OPXkKQ09ORklHX1VTQl9FSENJX0hDRD15CkNPTkZJR19VU0JfT0hDSV9IQ0Q9eQpDT05GSUdfVVNCX1VIQ0lfSENEPXkKQ09ORklHX1VTQl9QUklOVEVSPXkKQ09ORklHX1VTQl9TVE9SQUdFPXkKQ09ORklHX0VEQUM9eQpDT05GSUdfUlRDX0NMQVNTPXkKIyBDT05GSUdfUlRDX0hDVE9TWVMgaXMgbm90IHNldApDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19WSVJUX0RSSVZFUlM9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19IWVBFUlY9bQpDT05GSUdfSFlQRVJWX1VUSUxTPW0KQ09ORklHX0hZUEVSVl9CQUxMT09OPW0KQ09ORklHX0VFRVBDX0xBUFRPUD15CkNPTkZJR19BTURfSU9NTVU9eQpDT05GSUdfSU5URUxfSU9NTVU9eQojIENPTkZJR19JTlRFTF9JT01NVV9ERUZBVUxUX09OIGlzIG5vdCBzZXQKQ09ORklHX0VYVDRfRlM9eQpDT05GSUdfRVhUNF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfRVhUNF9GU19TRUNVUklUWT15CkNPTkZJR19YRlNfRlM9eQpDT05GSUdfWEZTX1FVT1RBPXkKQ09ORklHX1hGU19QT1NJWF9BQ0w9eQpDT05GSUdfQlRSRlNfRlM9bQpDT05GSUdfQlRSRlNfRlNfUE9TSVhfQUNMPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX1FVT1RBX05FVExJTktfSU5URVJGQUNFPXkKIyBDT05GSUdfUFJJTlRfUVVPVEFfV0FSTklORyBpcyBub3Qgc2V0CkNPTkZJR19RRk1UX1YyPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz15CkNPTkZJR19PVkVSTEFZX0ZTPW0KQ09ORklHX0lTTzk2NjBfRlM9eQpDT05GSUdfSk9MSUVUPXkKQ09ORklHX1pJU09GUz15CkNPTkZJR19NU0RPU19GUz15CkNPTkZJR19WRkFUX0ZTPXkKQ09ORklHX1BST0NfS0NPUkU9eQpDT05GSUdfVE1QRlNfUE9TSVhfQUNMPXkKQ09ORklHX0hVR0VUTEJGUz15CkNPTkZJR19ORlNfRlM9eQpDT05GSUdfTkZTX1Y0PXkKQ09ORklHX05GU19TV0FQPXkKQ09ORklHX05GU19WNF8xPXkKQ09ORklHX05GU19WNF8yPXkKQ09ORklHX05GU0Q9eQpDT05GSUdfTkZTRF9WND15CkNPTkZJR19DRVBIX0ZTPW0KQ09ORklHX0NFUEhfRlNfUE9TSVhfQUNMPXkKQ09ORklHX0NJRlM9eQpDT05GSUdfOVBfRlM9bQpDT05GSUdfOVBfRlNfUE9TSVhfQUNMPXkKQ09ORklHXzlQX0ZTX1NFQ1VSSVRZPXkKQ09ORklHX05MU19ERUZBVUxUPSJ1dGY4IgpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfQVNDSUk9eQpDT05GSUdfTkxTX0lTTzg4NTlfMT15CkNPTkZJR19OTFNfVVRGOD15CkNPTkZJR19TRUNVUklUWT15CkNPTkZJR19TRUNVUklUWV9ORVRXT1JLPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVg9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9CT09UUEFSQU09eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9ESVNBQkxFPXkKQ09ORklHX0NSWVBUT19YVFM9eQpDT05GSUdfQ1JZUFRPX0FFU19OSV9JTlRFTD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfSEFTSD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfU0tDSVBIRVI9eQpDT05GSUdfUFJJTlRLX1RJTUU9eQojIENPTkZJR19VTlVTRURfU1lNQk9MUyBpcyBub3Qgc2V0CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19LRVJORUw9eQpDT05GSUdfREVCVUdfU1RBQ0tfVVNBR0U9eQpDT05GSUdfREVCVUdfU1RBQ0tPVkVSRkxPVz15CiMgQ09ORklHX1NDSEVEX0RFQlVHIGlzIG5vdCBzZXQKQ09ORklHX1NDSEVEU1RBVFM9eQpDT05GSUdfRlVOQ1RJT05fVFJBQ0VSPXkKQ09ORklHX0ZUUkFDRV9TWVNDQUxMUz15CkNPTkZJR19CTEtfREVWX0lPX1RSQUNFPXkKQ09ORklHX1BST1ZJREVfT0hDSTEzOTRfRE1BX0lOSVQ9eQpDT05GSUdfRUFSTFlfUFJJTlRLX0RCR1A9eQpDT05GSUdfREVCVUdfQk9PVF9QQVJBTVM9eQpDT05GSUdfT1BUSU1JWkVfSU5MSU5JTkc9eQo=" - }, - { - "kernelversion": "1_1.25.2", - "kernelrelease": "4.19.202", - "target": "minikube", - "kernelconfigdata": "IyBDT05GSUdfTE9DQUxWRVJTSU9OX0FVVE8gaXMgbm90IHNldApDT05GSUdfS0VSTkVMX0xaND15CkNPTkZJR19TWVNWSVBDPXkKQ09ORklHX1BPU0lYX01RVUVVRT15CkNPTkZJR19BVURJVD15CkNPTkZJR19OT19IWj15CkNPTkZJR19ISUdIX1JFU19USU1FUlM9eQpDT05GSUdfUFJFRU1QVF9WT0xVTlRBUlk9eQpDT05GSUdfQlNEX1BST0NFU1NfQUNDVD15CkNPTkZJR19UQVNLX1hBQ0NUPXkKQ09ORklHX1RBU0tfSU9fQUNDT1VOVElORz15CkNPTkZJR19JS0NPTkZJRz15CkNPTkZJR19JS0NPTkZJR19QUk9DPXkKQ09ORklHX0xPR19CVUZfU0hJRlQ9MTgKQ09ORklHX0NHUk9VUFM9eQpDT05GSUdfTUVNQ0c9eQpDT05GSUdfTUVNQ0dfU1dBUD15CkNPTkZJR19CTEtfQ0dST1VQPXkKQ09ORklHX0NHUk9VUF9TQ0hFRD15CkNPTkZJR19DRlNfQkFORFdJRFRIPXkKQ09ORklHX1JUX0dST1VQX1NDSEVEPXkKQ09ORklHX0NHUk9VUF9QSURTPXkKQ09ORklHX0NHUk9VUF9GUkVFWkVSPXkKQ09ORklHX0NHUk9VUF9IVUdFVExCPXkKQ09ORklHX0NQVVNFVFM9eQpDT05GSUdfQ0dST1VQX0RFVklDRT15CkNPTkZJR19DR1JPVVBfQ1BVQUNDVD15CkNPTkZJR19DR1JPVVBfUEVSRj15CkNPTkZJR19DR1JPVVBfQlBGPXkKQ09ORklHX1VTRVJfTlM9eQpDT05GSUdfQkxLX0RFVl9JTklUUkQ9eQpDT05GSUdfQlBGX1NZU0NBTEw9eQojIENPTkZJR19DT01QQVRfQlJLIGlzIG5vdCBzZXQKQ09ORklHX1BST0ZJTElORz15CkNPTkZJR19TTVA9eQpDT05GSUdfSFlQRVJWSVNPUl9HVUVTVD15CkNPTkZJR19QQVJBVklSVF9TUElOTE9DS1M9eQpDT05GSUdfS1ZNX0RFQlVHX0ZTPXkKQ09ORklHX0NBTEdBUllfSU9NTVU9eQpDT05GSUdfWDg2X1JFUk9VVEVfRk9SX0JST0tFTl9CT09UX0lSUVM9eQpDT05GSUdfTUlDUk9DT0RFX0FNRD15CkNPTkZJR19YODZfTVNSPXkKQ09ORklHX1g4Nl9DUFVJRD15CkNPTkZJR19OVU1BPXkKQ09ORklHX1g4Nl9DSEVDS19CSU9TX0NPUlJVUFRJT049eQojIENPTkZJR19NVFJSX1NBTklUSVpFUiBpcyBub3Qgc2V0CkNPTkZJR19FRkk9eQpDT05GSUdfSFpfMTAwMD15CkNPTkZJR19LRVhFQz15CkNPTkZJR19DUkFTSF9EVU1QPXkKQ09ORklHX0hJQkVSTkFUSU9OPXkKQ09ORklHX1BNX0RFQlVHPXkKQ09ORklHX1BNX1RSQUNFX1JUQz15CkNPTkZJR19BQ1BJX0RPQ0s9eQpDT05GSUdfQ1BVX0ZSRVFfREVGQVVMVF9HT1ZfVVNFUlNQQUNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9QRVJGT1JNQU5DRT15CkNPTkZJR19DUFVfRlJFUV9HT1ZfT05ERU1BTkQ9eQpDT05GSUdfWDg2X0FDUElfQ1BVRlJFUT15CkNPTkZJR19QQ0lFUE9SVEJVUz15CkNPTkZJR19IT1RQTFVHX1BDST15CkNPTkZJR19QQ0NBUkQ9eQpDT05GSUdfWUVOVEE9eQpDT05GSUdfSUEzMl9FTVVMQVRJT049eQpDT05GSUdfRUZJX1ZBUlM9eQpDT05GSUdfS1ZNPW0KQ09ORklHX0tWTV9JTlRFTD1tCkNPTkZJR19LVk1fQU1EPW0KQ09ORklHX1ZIT1NUX05FVD1tCkNPTkZJR19WSE9TVF9WU09DSz1tCkNPTkZJR19LUFJPQkVTPXkKQ09ORklHX0pVTVBfTEFCRUw9eQpDT05GSUdfTU9EVUxFUz15CkNPTkZJR19NT0RVTEVfVU5MT0FEPXkKQ09ORklHX01PRFVMRV9GT1JDRV9VTkxPQUQ9eQpDT05GSUdfUEFSVElUSU9OX0FEVkFOQ0VEPXkKQ09ORklHX09TRl9QQVJUSVRJT049eQpDT05GSUdfQU1JR0FfUEFSVElUSU9OPXkKQ09ORklHX01BQ19QQVJUSVRJT049eQpDT05GSUdfQlNEX0RJU0tMQUJFTD15CkNPTkZJR19NSU5JWF9TVUJQQVJUSVRJT049eQpDT05GSUdfU09MQVJJU19YODZfUEFSVElUSU9OPXkKQ09ORklHX1VOSVhXQVJFX0RJU0tMQUJFTD15CkNPTkZJR19TR0lfUEFSVElUSU9OPXkKQ09ORklHX1NVTl9QQVJUSVRJT049eQpDT05GSUdfS0FSTUFfUEFSVElUSU9OPXkKQ09ORklHX0JJTkZNVF9NSVNDPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFPXkKQ09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFX01BRFZJU0U9eQpDT05GSUdfTkVUPXkKQ09ORklHX1BBQ0tFVD15CkNPTkZJR19VTklYPXkKQ09ORklHX1hGUk1fVVNFUj15CkNPTkZJR19JTkVUPXkKQ09ORklHX0lQX01VTFRJQ0FTVD15CkNPTkZJR19JUF9BRFZBTkNFRF9ST1VURVI9eQpDT05GSUdfSVBfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX0lQX1JPVVRFX01VTFRJUEFUSD15CkNPTkZJR19JUF9ST1VURV9WRVJCT1NFPXkKQ09ORklHX0lQX1BOUD15CkNPTkZJR19JUF9QTlBfREhDUD15CkNPTkZJR19JUF9QTlBfQk9PVFA9eQpDT05GSUdfSVBfUE5QX1JBUlA9eQpDT05GSUdfTkVUX0lQSVA9bQpDT05GSUdfSVBfTVJPVVRFPXkKQ09ORklHX0lQX1BJTVNNX1YxPXkKQ09ORklHX0lQX1BJTVNNX1YyPXkKQ09ORklHX1NZTl9DT09LSUVTPXkKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFJBTlNQT1JUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfVFVOTkVMIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9YRlJNX01PREVfQkVFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0lORVRfRElBRyBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfQ09OR19BRFZBTkNFRD15CiMgQ09ORklHX1RDUF9DT05HX0JJQyBpcyBub3Qgc2V0CiMgQ09ORklHX1RDUF9DT05HX1dFU1RXT09EIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfSFRDUCBpcyBub3Qgc2V0CkNPTkZJR19UQ1BfTUQ1U0lHPXkKQ09ORklHX0lORVQ2X0FIPXkKQ09ORklHX0lORVQ2X0VTUD15CkNPTkZJR19JUFY2X01VTFRJUExFX1RBQkxFUz15CkNPTkZJR19ORVRMQUJFTD15CkNPTkZJR19ORVRGSUxURVI9eQpDT05GSUdfTkVURklMVEVSX05FVExJTktfQUNDVD15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19RVUVVRT15CkNPTkZJR19ORl9DT05OVFJBQ0s9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1pPTkVTPXkKQ09ORklHX05GX0NPTk5UUkFDS19FVkVOVFM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVPVVQ9eQpDT05GSUdfTkZfQ09OTlRSQUNLX1RJTUVTVEFNUD15CkNPTkZJR19ORl9DT05OVFJBQ0tfRlRQPW0KQ09ORklHX05GX0NPTk5UUkFDS19JUkM9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NBTkU9bQpDT05GSUdfTkZfQ09OTlRSQUNLX1NJUD1tCkNPTkZJR19ORl9DT05OVFJBQ0tfVEZUUD1tCkNPTkZJR19ORl9DVF9ORVRMSU5LPW0KQ09ORklHX05FVEZJTFRFUl9YVF9TRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DSEVDS1NVTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NMQVNTSUZZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9EU0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0lETEVUSU1FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xFRD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0xPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ORkxPRz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GUVVFVUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9OT1RSQUNLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVEVFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVFBST1hZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfU0VDTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX1RDUE9QVFNUUklQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9BRERSVFlQRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQlBGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NMVVNURVI9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTU1FTlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5CWVRFUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkxBQkVMPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NQVT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRENDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfREVWR1JPVVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0VDTj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRVNQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9IQVNITElNSVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hFTFBFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0lQQ09NUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBSQU5HRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBWUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTDJUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTEVOR1RIPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTUFDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NVUxUSVBPUlQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX05GQUNDVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfT1NGPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PV05FUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUE9MSUNZPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QSFlTREVWPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QS1RUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9RVU9UQT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkFURUVTVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVBTE09bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1JFQ0VOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU0NUUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU09DS0VUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFURT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfU1RBVElTVElDPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVFJJTkc9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1RDUE1TUz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVElNRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVTMyPW0KQ09ORklHX0lQX1NFVD15CkNPTkZJR19JUF9TRVRfQklUTUFQX0lQPW0KQ09ORklHX0lQX1NFVF9CSVRNQVBfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9QT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFSSz1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX01BQz1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRJRkFDRT1tCkNPTkZJR19JUF9TRVRfTElTVF9TRVQ9bQpDT05GSUdfSVBfVlM9bQpDT05GSUdfSVBfVlNfSVBWNj15CkNPTkZJR19JUF9WU19ERUJVRz15CkNPTkZJR19JUF9WU19QUk9UT19UQ1A9eQpDT05GSUdfSVBfVlNfUFJPVE9fVURQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0VTUD15CkNPTkZJR19JUF9WU19QUk9UT19BSD15CkNPTkZJR19JUF9WU19QUk9UT19TQ1RQPXkKQ09ORklHX0lQX1ZTX1JSPW0KQ09ORklHX0lQX1ZTX1dSUj1tCkNPTkZJR19JUF9WU19MQz1tCkNPTkZJR19JUF9WU19XTEM9bQpDT05GSUdfSVBfVlNfRk89bQpDT05GSUdfSVBfVlNfT1ZGPW0KQ09ORklHX0lQX1ZTX0xCTEM9bQpDT05GSUdfSVBfVlNfTEJMQ1I9bQpDT05GSUdfSVBfVlNfREg9bQpDT05GSUdfSVBfVlNfU0g9bQpDT05GSUdfSVBfVlNfU0VEPW0KQ09ORklHX0lQX1ZTX05RPW0KQ09ORklHX0lQX1ZTX05GQ1Q9eQpDT05GSUdfTkZfTE9HX0FSUD1tCkNPTkZJR19JUF9ORl9JUFRBQkxFUz15CkNPTkZJR19JUF9ORl9NQVRDSF9SUEZJTFRFUj15CkNPTkZJR19JUF9ORl9GSUxURVI9eQpDT05GSUdfSVBfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUF9ORl9OQVQ9bQpDT05GSUdfSVBfTkZfVEFSR0VUX01BU1FVRVJBREU9bQpDT05GSUdfSVBfTkZfVEFSR0VUX05FVE1BUD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfUkVESVJFQ1Q9bQpDT05GSUdfSVBfTkZfTUFOR0xFPXkKQ09ORklHX0lQX05GX1JBVz1tCkNPTkZJR19JUDZfTkZfSVBUQUJMRVM9eQpDT05GSUdfSVA2X05GX01BVENIX0lQVjZIRUFERVI9eQpDT05GSUdfSVA2X05GX0ZJTFRFUj15CkNPTkZJR19JUDZfTkZfVEFSR0VUX1JFSkVDVD15CkNPTkZJR19JUDZfTkZfTUFOR0xFPXkKQ09ORklHX0JSSURHRV9ORl9FQlRBQkxFUz1tCkNPTkZJR19CUklER0VfRUJUX0JST1VURT1tCkNPTkZJR19CUklER0VfRUJUX1RfRklMVEVSPW0KQ09ORklHX0JSSURHRV9FQlRfVF9OQVQ9bQpDT05GSUdfQlJJREdFX0VCVF84MDJfMz1tCkNPTkZJR19CUklER0VfRUJUX0FNT05HPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQPW0KQ09ORklHX0JSSURHRV9FQlRfSVA9bQpDT05GSUdfQlJJREdFX0VCVF9JUDY9bQpDT05GSUdfQlJJREdFX0VCVF9MSU1JVD1tCkNPTkZJR19CUklER0VfRUJUX01BUks9bQpDT05GSUdfQlJJREdFX0VCVF9QS1RUWVBFPW0KQ09ORklHX0JSSURHRV9FQlRfU1RQPW0KQ09ORklHX0JSSURHRV9FQlRfVkxBTj1tCkNPTkZJR19CUklER0VfRUJUX0FSUFJFUExZPW0KQ09ORklHX0JSSURHRV9FQlRfRE5BVD1tCkNPTkZJR19CUklER0VfRUJUX01BUktfVD1tCkNPTkZJR19CUklER0VfRUJUX1JFRElSRUNUPW0KQ09ORklHX0JSSURHRV9FQlRfU05BVD1tCkNPTkZJR19CUklER0VfRUJUX0xPRz1tCkNPTkZJR19CUklER0VfRUJUX05GTE9HPW0KQ09ORklHX0lQX1NDVFA9eQpDT05GSUdfQlJJREdFPW0KQ09ORklHX05FVF9TQ0hFRD15CkNPTkZJR19ORVRfU0NIX0hUQj15CkNPTkZJR19ORVRfU0NIX1BSSU89eQpDT05GSUdfTkVUX1NDSF9TRlE9eQpDT05GSUdfTkVUX1NDSF9UQkY9eQpDT05GSUdfTkVUX1NDSF9ORVRFTT15CkNPTkZJR19ORVRfU0NIX0lOR1JFU1M9bQpDT05GSUdfTkVUX0NMU19CQVNJQz1tCkNPTkZJR19ORVRfQ0xTX0ZXPXkKQ09ORklHX05FVF9DTFNfVTMyPW0KQ09ORklHX05FVF9DTFNfQ0dST1VQPXkKQ09ORklHX05FVF9DTFNfQlBGPW0KQ09ORklHX05FVF9DTFNfTUFUQ0hBTEw9eQpDT05GSUdfTkVUX0VNQVRDSD15CkNPTkZJR19ORVRfRU1BVENIX0lQU0VUPXkKQ09ORklHX05FVF9DTFNfQUNUPXkKQ09ORklHX05FVF9BQ1RfTUlSUkVEPW0KQ09ORklHX05FVF9BQ1RfQlBGPW0KQ09ORklHX05FVF9BQ1RfQ09OTk1BUks9bQpDT05GSUdfT1BFTlZTV0lUQ0g9bQpDT05GSUdfVlNPQ0tFVFM9bQpDT05GSUdfVklSVElPX1ZTT0NLRVRTPW0KQ09ORklHX0NHUk9VUF9ORVRfUFJJTz15CkNPTkZJR19CUEZfSklUPXkKQ09ORklHX0hBTVJBRElPPXkKQ09ORklHX0NGRzgwMjExPXkKQ09ORklHX01BQzgwMjExPXkKQ09ORklHX01BQzgwMjExX0xFRFM9eQpDT05GSUdfUkZLSUxMPXkKQ09ORklHX05FVF85UD1tCkNPTkZJR19ORVRfOVBfVklSVElPPW0KQ09ORklHX0NFUEhfTElCPXkKQ09ORklHX1VFVkVOVF9IRUxQRVJfUEFUSD0iL3NiaW4vaG90cGx1ZyIKQ09ORklHX0RFVlRNUEZTPXkKQ09ORklHX0RFVlRNUEZTX01PVU5UPXkKQ09ORklHX0RFQlVHX0RFVlJFUz15CkNPTkZJR19DT05ORUNUT1I9eQpDT05GSUdfQkxLX0RFVl9MT09QPXkKQ09ORklHX0JMS19ERVZfTkJEPW0KQ09ORklHX1ZJUlRJT19CTEs9eQpDT05GSUdfQkxLX0RFVl9SQkQ9bQpDT05GSUdfVk1XQVJFX0JBTExPT049bQpDT05GSUdfVk1XQVJFX1ZNQ0k9bQpDT05GSUdfQkxLX0RFVl9TRD15CkNPTkZJR19CTEtfREVWX1NSPXkKQ09ORklHX0NIUl9ERVZfU0c9eQpDT05GSUdfU0NTSV9DT05TVEFOVFM9eQpDT05GSUdfU0NTSV9TUElfQVRUUlM9eQpDT05GSUdfU0NTSV9GQ19BVFRSUz1tCkNPTkZJR19TQ1NJX0lTQ1NJX0FUVFJTPW0KQ09ORklHX1NDU0lfU0FTX0xJQlNBUz1tCkNPTkZJR19TQ1NJX1NBU19BVEE9eQpDT05GSUdfU0NTSV9TUlBfQVRUUlM9bQpDT05GSUdfTUVHQVJBSURfTkVXR0VOPXkKQ09ORklHX01FR0FSQUlEX01NPW0KQ09ORklHX1ZNV0FSRV9QVlNDU0k9eQpDT05GSUdfQVRBPXkKQ09ORklHX1NBVEFfQUhDST15CkNPTkZJR19BVEFfUElJWD15CkNPTkZJR19QQVRBX0FNRD15CkNPTkZJR19QQVRBX09MRFBJSVg9eQpDT05GSUdfUEFUQV9TQ0g9eQpDT05GSUdfTUQ9eQpDT05GSUdfQkxLX0RFVl9NRD15CkNPTkZJR19CTEtfREVWX0RNPXkKQ09ORklHX0RNX0NSWVBUPXkKQ09ORklHX0RNX1NOQVBTSE9UPXkKQ09ORklHX0RNX1RISU5fUFJPVklTSU9OSU5HPXkKQ09ORklHX0RNX01JUlJPUj15CkNPTkZJR19ETV9aRVJPPXkKQ09ORklHX0ZVU0lPTj15CkNPTkZJR19GVVNJT05fU1BJPW0KQ09ORklHX0ZVU0lPTl9GQz1tCkNPTkZJR19GVVNJT05fU0FTPW0KQ09ORklHX0ZVU0lPTl9DVEw9bQpDT05GSUdfRlVTSU9OX0xPR0dJTkc9eQpDT05GSUdfTUFDSU5UT1NIX0RSSVZFUlM9eQpDT05GSUdfTUFDX0VNVU1PVVNFQlROPXkKQ09ORklHX05FVERFVklDRVM9eQpDT05GSUdfRFVNTVk9bQpDT05GSUdfSUZCPW0KQ09ORklHX01BQ1ZMQU49eQpDT05GSUdfTUFDVlRBUD15CkNPTkZJR19JUFZMQU49bQpDT05GSUdfVlhMQU49eQpDT05GSUdfTkVUQ09OU09MRT15CkNPTkZJR19UVU49eQpDT05GSUdfVkVUSD15CkNPTkZJR19WSVJUSU9fTkVUPXkKQ09ORklHX05FVF9WUkY9bQpDT05GSUdfQU1EODExMV9FVEg9bQpDT05GSUdfUENORVQzMj1tCkNPTkZJR19QQ01DSUFfTk1DTEFOPW0KQ09ORklHX1RJR09OMz15CkNPTkZJR19ORVRfVFVMSVA9eQpDT05GSUdfRTEwMD15CkNPTkZJR19FMTAwMD15CkNPTkZJR19FMTAwMEU9eQpDT05GSUdfU0tZMj15CkNPTkZJR19GT1JDRURFVEg9eQpDT05GSUdfODEzOUNQPXkKQ09ORklHXzgxMzlUT089eQpDT05GSUdfRkREST15CkNPTkZJR19WTVhORVQzPXkKQ09ORklHX0hZUEVSVl9ORVQ9bQpDT05GSUdfSU5QVVRfUE9MTERFVj15CkNPTkZJR19JTlBVVF9FVkRFVj15CkNPTkZJR19JTlBVVF9KT1lTVElDSz15CkNPTkZJR19JTlBVVF9UQUJMRVQ9eQpDT05GSUdfSU5QVVRfVE9VQ0hTQ1JFRU49eQpDT05GSUdfSU5QVVRfTUlTQz15CiMgQ09ORklHX0xFR0FDWV9QVFlTIGlzIG5vdCBzZXQKQ09ORklHX1NFUklBTF9OT05TVEFOREFSRD15CkNPTkZJR19TRVJJQUxfODI1MD15CkNPTkZJR19TRVJJQUxfODI1MF9DT05TT0xFPXkKQ09ORklHX1NFUklBTF84MjUwX05SX1VBUlRTPTMyCkNPTkZJR19TRVJJQUxfODI1MF9FWFRFTkRFRD15CkNPTkZJR19TRVJJQUxfODI1MF9NQU5ZX1BPUlRTPXkKQ09ORklHX1NFUklBTF84MjUwX1NIQVJFX0lSUT15CkNPTkZJR19TRVJJQUxfODI1MF9ERVRFQ1RfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX1JTQT15CkNPTkZJR19IV19SQU5ET009eQojIENPTkZJR19IV19SQU5ET01fSU5URUwgaXMgbm90IHNldAojIENPTkZJR19IV19SQU5ET01fQU1EIGlzIG5vdCBzZXQKQ09ORklHX0hXX1JBTkRPTV9WSVJUSU89eQpDT05GSUdfTlZSQU09eQpDT05GSUdfSFBFVD15CiMgQ09ORklHX0hQRVRfTU1BUCBpcyBub3Qgc2V0CkNPTkZJR19JMkNfSTgwMT15CkNPTkZJR19XQVRDSERPRz15CkNPTkZJR19BR1A9eQpDT05GSUdfQUdQX0FNRDY0PXkKQ09ORklHX0FHUF9JTlRFTD15CkNPTkZJR19EUk09eQpDT05GSUdfRFJNX0k5MTU9eQpDT05GSUdfRFJNX1ZJUlRJT19HUFU9eQpDT05GSUdfRkJfTU9ERV9IRUxQRVJTPXkKQ09ORklHX0ZCX1RJTEVCTElUVElORz15CkNPTkZJR19GQl9FRkk9eQojIENPTkZJR19MQ0RfQ0xBU1NfREVWSUNFIGlzIG5vdCBzZXQKQ09ORklHX0xPR089eQojIENPTkZJR19MT0dPX0xJTlVYX01PTk8gaXMgbm90IHNldAojIENPTkZJR19MT0dPX0xJTlVYX1ZHQTE2IGlzIG5vdCBzZXQKQ09ORklHX1NPVU5EPXkKQ09ORklHX1NORD15CkNPTkZJR19TTkRfSFJUSU1FUj15CkNPTkZJR19TTkRfU0VRVUVOQ0VSPXkKQ09ORklHX1NORF9TRVFfRFVNTVk9eQpDT05GSUdfU05EX0hEQV9JTlRFTD15CkNPTkZJR19TTkRfSERBX0hXREVQPXkKQ09ORklHX0hJRFJBVz15CkNPTkZJR19ISURfR1lSQVRJT049eQpDT05GSUdfTE9HSVRFQ0hfRkY9eQpDT05GSUdfSElEX05UUklHPXkKQ09ORklHX0hJRF9QQU5USEVSTE9SRD15CkNPTkZJR19QQU5USEVSTE9SRF9GRj15CkNPTkZJR19ISURfUEVUQUxZTlg9eQpDT05GSUdfSElEX1NBTVNVTkc9eQpDT05GSUdfSElEX1NPTlk9eQpDT05GSUdfSElEX1NVTlBMVVM9eQpDT05GSUdfSElEX0hZUEVSVl9NT1VTRT1tCkNPTkZJR19ISURfVE9QU0VFRD15CkNPTkZJR19ISURfUElEPXkKQ09ORklHX1VTQl9ISURERVY9eQpDT05GSUdfVVNCPXkKQ09ORklHX1VTQl9BTk5PVU5DRV9ORVdfREVWSUNFUz15CkNPTkZJR19VU0JfTU9OPXkKQ09ORklHX1VTQl9FSENJX0hDRD15CkNPTkZJR19VU0JfT0hDSV9IQ0Q9eQpDT05GSUdfVVNCX1VIQ0lfSENEPXkKQ09ORklHX1VTQl9QUklOVEVSPXkKQ09ORklHX1VTQl9TVE9SQUdFPXkKQ09ORklHX0VEQUM9eQpDT05GSUdfUlRDX0NMQVNTPXkKIyBDT05GSUdfUlRDX0hDVE9TWVMgaXMgbm90IHNldApDT05GSUdfRE1BREVWSUNFUz15CkNPTkZJR19WSVJUX0RSSVZFUlM9eQpDT05GSUdfVklSVElPX1BDST15CkNPTkZJR19IWVBFUlY9bQpDT05GSUdfSFlQRVJWX1VUSUxTPW0KQ09ORklHX0hZUEVSVl9CQUxMT09OPW0KQ09ORklHX0VFRVBDX0xBUFRPUD15CkNPTkZJR19BTURfSU9NTVU9eQpDT05GSUdfSU5URUxfSU9NTVU9eQojIENPTkZJR19JTlRFTF9JT01NVV9ERUZBVUxUX09OIGlzIG5vdCBzZXQKQ09ORklHX0VYVDRfRlM9eQpDT05GSUdfRVhUNF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfRVhUNF9GU19TRUNVUklUWT15CkNPTkZJR19YRlNfRlM9eQpDT05GSUdfWEZTX1FVT1RBPXkKQ09ORklHX1hGU19QT1NJWF9BQ0w9eQpDT05GSUdfQlRSRlNfRlM9bQpDT05GSUdfQlRSRlNfRlNfUE9TSVhfQUNMPXkKQ09ORklHX1FVT1RBPXkKQ09ORklHX1FVT1RBX05FVExJTktfSU5URVJGQUNFPXkKIyBDT05GSUdfUFJJTlRfUVVPVEFfV0FSTklORyBpcyBub3Qgc2V0CkNPTkZJR19RRk1UX1YyPXkKQ09ORklHX0FVVE9GUzRfRlM9eQpDT05GSUdfRlVTRV9GUz15CkNPTkZJR19PVkVSTEFZX0ZTPW0KQ09ORklHX0lTTzk2NjBfRlM9eQpDT05GSUdfSk9MSUVUPXkKQ09ORklHX1pJU09GUz15CkNPTkZJR19NU0RPU19GUz15CkNPTkZJR19WRkFUX0ZTPXkKQ09ORklHX1BST0NfS0NPUkU9eQpDT05GSUdfVE1QRlNfUE9TSVhfQUNMPXkKQ09ORklHX0hVR0VUTEJGUz15CkNPTkZJR19ORlNfRlM9eQpDT05GSUdfTkZTX1Y0PXkKQ09ORklHX05GU19TV0FQPXkKQ09ORklHX05GU19WNF8xPXkKQ09ORklHX05GU19WNF8yPXkKQ09ORklHX05GU0Q9eQpDT05GSUdfTkZTRF9WND15CkNPTkZJR19DRVBIX0ZTPW0KQ09ORklHX0NFUEhfRlNfUE9TSVhfQUNMPXkKQ09ORklHX0NJRlM9eQpDT05GSUdfOVBfRlM9bQpDT05GSUdfOVBfRlNfUE9TSVhfQUNMPXkKQ09ORklHXzlQX0ZTX1NFQ1VSSVRZPXkKQ09ORklHX05MU19ERUZBVUxUPSJ1dGY4IgpDT05GSUdfTkxTX0NPREVQQUdFXzQzNz15CkNPTkZJR19OTFNfQVNDSUk9eQpDT05GSUdfTkxTX0lTTzg4NTlfMT15CkNPTkZJR19OTFNfVVRGOD15CkNPTkZJR19TRUNVUklUWT15CkNPTkZJR19TRUNVUklUWV9ORVRXT1JLPXkKQ09ORklHX1NFQ1VSSVRZX1NFTElOVVg9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9CT09UUEFSQU09eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWF9ESVNBQkxFPXkKQ09ORklHX0NSWVBUT19YVFM9eQpDT05GSUdfQ1JZUFRPX0FFU19OSV9JTlRFTD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfSEFTSD15CkNPTkZJR19DUllQVE9fVVNFUl9BUElfU0tDSVBIRVI9eQpDT05GSUdfUFJJTlRLX1RJTUU9eQojIENPTkZJR19VTlVTRURfU1lNQk9MUyBpcyBub3Qgc2V0CkNPTkZJR19NQUdJQ19TWVNSUT15CkNPTkZJR19ERUJVR19LRVJORUw9eQpDT05GSUdfREVCVUdfU1RBQ0tfVVNBR0U9eQpDT05GSUdfREVCVUdfU1RBQ0tPVkVSRkxPVz15CiMgQ09ORklHX1NDSEVEX0RFQlVHIGlzIG5vdCBzZXQKQ09ORklHX1NDSEVEU1RBVFM9eQpDT05GSUdfRlVOQ1RJT05fVFJBQ0VSPXkKQ09ORklHX0ZUUkFDRV9TWVNDQUxMUz15CkNPTkZJR19CTEtfREVWX0lPX1RSQUNFPXkKQ09ORklHX1BST1ZJREVfT0hDSTEzOTRfRE1BX0lOSVQ9eQpDT05GSUdfRUFSTFlfUFJJTlRLX0RCR1A9eQpDT05GSUdfREVCVUdfQk9PVF9QQVJBTVM9eQpDT05GSUdfT1BUSU1JWkVfSU5MSU5JTkc9eQo=" - }, - { - "kernelversion": "1_1.26.0", - "kernelrelease": "5.10.57", - "target": "minikube", - "kernelconfigdata": "Q09ORklHX0ZBTk9USUZZPXkKQ09ORklHX0tQUk9CRV9FVkVOVFM9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19ERUJVR19JTkZPX0JURj15CkNPTkZJR19JS0hFQURFUlM9eQpDT05GSUdfQlBGX0xTTT15CkNPTkZJR19WQk9YR1VFU1Q9bQpDT05GSUdfVkJPWFNGX0ZTPW0KQ09ORklHX0RSTV9WQk9YVklERU89bQpDT05GSUdfQlJJREdFX05FVEZJTFRFUj15CkNPTkZJR19QQ0k9eQpDT05GSUdfVE1QRlM9eQojIENPTkZJR19MT0NBTFZFUlNJT05fQVVUTyBpcyBub3Qgc2V0CkNPTkZJR19LRVJORUxfTFo0PXkKQ09ORklHX1NZU1ZJUEM9eQpDT05GSUdfUE9TSVhfTVFVRVVFPXkKQ09ORklHX0FVRElUPXkKQ09ORklHX05PX0haPXkKQ09ORklHX0hJR0hfUkVTX1RJTUVSUz15CkNPTkZJR19QUkVFTVBUX1ZPTFVOVEFSWT15CkNPTkZJR19CU0RfUFJPQ0VTU19BQ0NUPXkKQ09ORklHX1RBU0tfWEFDQ1Q9eQpDT05GSUdfVEFTS19JT19BQ0NPVU5USU5HPXkKQ09ORklHX0lLQ09ORklHPXkKQ09ORklHX0lLQ09ORklHX1BST0M9eQpDT05GSUdfTE9HX0JVRl9TSElGVD0xOApDT05GSUdfQ0dST1VQUz15CkNPTkZJR19NRU1DRz15CkNPTkZJR19NRU1DR19TV0FQPXkKQ09ORklHX0JMS19DR1JPVVA9eQpDT05GSUdfQ0dST1VQX1NDSEVEPXkKQ09ORklHX0NGU19CQU5EV0lEVEg9eQpDT05GSUdfUlRfR1JPVVBfU0NIRUQ9eQpDT05GSUdfQ0dST1VQX1BJRFM9eQpDT05GSUdfQ0dST1VQX0ZSRUVaRVI9eQpDT05GSUdfQ0dST1VQX0hVR0VUTEI9eQpDT05GSUdfQ1BVU0VUUz15CkNPTkZJR19DR1JPVVBfREVWSUNFPXkKQ09ORklHX0NHUk9VUF9DUFVBQ0NUPXkKQ09ORklHX0NHUk9VUF9QRVJGPXkKQ09ORklHX0NHUk9VUF9CUEY9eQpDT05GSUdfVVNFUl9OUz15CkNPTkZJR19CTEtfREVWX0lOSVRSRD15CkNPTkZJR19CUEZfU1lTQ0FMTD15CiMgQ09ORklHX0NPTVBBVF9CUksgaXMgbm90IHNldApDT05GSUdfUFJPRklMSU5HPXkKQ09ORklHX1NNUD15CkNPTkZJR19IWVBFUlZJU09SX0dVRVNUPXkKQ09ORklHX1BBUkFWSVJUX1NQSU5MT0NLUz15CkNPTkZJR19LVk1fREVCVUdfRlM9eQpDT05GSUdfQ0FMR0FSWV9JT01NVT15CkNPTkZJR19YODZfUkVST1VURV9GT1JfQlJPS0VOX0JPT1RfSVJRUz15CkNPTkZJR19NSUNST0NPREVfQU1EPXkKQ09ORklHX1g4Nl9NU1I9eQpDT05GSUdfWDg2X0NQVUlEPXkKQ09ORklHX05VTUE9eQpDT05GSUdfWDg2X0NIRUNLX0JJT1NfQ09SUlVQVElPTj15CiMgQ09ORklHX01UUlJfU0FOSVRJWkVSIGlzIG5vdCBzZXQKQ09ORklHX0VGST15CkNPTkZJR19IWl8xMDAwPXkKQ09ORklHX0tFWEVDPXkKQ09ORklHX0NSQVNIX0RVTVA9eQpDT05GSUdfSElCRVJOQVRJT049eQpDT05GSUdfUE1fREVCVUc9eQpDT05GSUdfUE1fVFJBQ0VfUlRDPXkKQ09ORklHX0FDUElfRE9DSz15CkNPTkZJR19DUFVfRlJFUV9ERUZBVUxUX0dPVl9VU0VSU1BBQ0U9eQpDT05GSUdfQ1BVX0ZSRVFfR09WX1BFUkZPUk1BTkNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9PTkRFTUFORD15CkNPTkZJR19YODZfQUNQSV9DUFVGUkVRPXkKQ09ORklHX1BDSUVQT1JUQlVTPXkKQ09ORklHX0hPVFBMVUdfUENJPXkKQ09ORklHX1BDQ0FSRD15CkNPTkZJR19ZRU5UQT15CkNPTkZJR19JQTMyX0VNVUxBVElPTj15CkNPTkZJR19FRklfVkFSUz15CkNPTkZJR19LVk09bQpDT05GSUdfS1ZNX0lOVEVMPW0KQ09ORklHX0tWTV9BTUQ9bQpDT05GSUdfVkhPU1RfTkVUPW0KQ09ORklHX1ZIT1NUX1ZTT0NLPW0KQ09ORklHX0tQUk9CRVM9eQpDT05GSUdfSlVNUF9MQUJFTD15CkNPTkZJR19NT0RVTEVTPXkKQ09ORklHX01PRFVMRV9VTkxPQUQ9eQpDT05GSUdfTU9EVUxFX0ZPUkNFX1VOTE9BRD15CkNPTkZJR19NT0RWRVJTSU9OUz15CkNPTkZJR19QQVJUSVRJT05fQURWQU5DRUQ9eQpDT05GSUdfT1NGX1BBUlRJVElPTj15CkNPTkZJR19BTUlHQV9QQVJUSVRJT049eQpDT05GSUdfTUFDX1BBUlRJVElPTj15CkNPTkZJR19CU0RfRElTS0xBQkVMPXkKQ09ORklHX01JTklYX1NVQlBBUlRJVElPTj15CkNPTkZJR19TT0xBUklTX1g4Nl9QQVJUSVRJT049eQpDT05GSUdfVU5JWFdBUkVfRElTS0xBQkVMPXkKQ09ORklHX1NHSV9QQVJUSVRJT049eQpDT05GSUdfU1VOX1BBUlRJVElPTj15CkNPTkZJR19LQVJNQV9QQVJUSVRJT049eQpDT05GSUdfQklORk1UX01JU0M9eQpDT05GSUdfVFJBTlNQQVJFTlRfSFVHRVBBR0U9eQpDT05GSUdfVFJBTlNQQVJFTlRfSFVHRVBBR0VfTUFEVklTRT15CkNPTkZJR19ORVQ9eQpDT05GSUdfUEFDS0VUPXkKQ09ORklHX1VOSVg9eQpDT05GSUdfWEZSTV9VU0VSPXkKQ09ORklHX0lORVQ9eQpDT05GSUdfSVBfTVVMVElDQVNUPXkKQ09ORklHX0lQX0FEVkFOQ0VEX1JPVVRFUj15CkNPTkZJR19JUF9NVUxUSVBMRV9UQUJMRVM9eQpDT05GSUdfSVBfUk9VVEVfTVVMVElQQVRIPXkKQ09ORklHX0lQX1JPVVRFX1ZFUkJPU0U9eQpDT05GSUdfSVBfUE5QPXkKQ09ORklHX0lQX1BOUF9ESENQPXkKQ09ORklHX0lQX1BOUF9CT09UUD15CkNPTkZJR19JUF9QTlBfUkFSUD15CkNPTkZJR19ORVRfSVBJUD1tCkNPTkZJR19JUF9NUk9VVEU9eQpDT05GSUdfSVBfUElNU01fVjE9eQpDT05GSUdfSVBfUElNU01fVjI9eQpDT05GSUdfU1lOX0NPT0tJRVM9eQojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9UUkFOU1BPUlQgaXMgbm90IHNldAojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9UVU5ORUwgaXMgbm90IHNldAojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9CRUVUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9ESUFHIGlzIG5vdCBzZXQKQ09ORklHX1RDUF9DT05HX0FEVkFOQ0VEPXkKIyBDT05GSUdfVENQX0NPTkdfQklDIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfV0VTVFdPT0QgaXMgbm90IHNldAojIENPTkZJR19UQ1BfQ09OR19IVENQIGlzIG5vdCBzZXQKQ09ORklHX1RDUF9NRDVTSUc9eQpDT05GSUdfSU5FVDZfQUg9eQpDT05GSUdfSU5FVDZfRVNQPXkKQ09ORklHX0lQVjZfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX05FVExBQkVMPXkKQ09ORklHX05FVEZJTFRFUj15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19BQ0NUPXkKQ09ORklHX05FVEZJTFRFUl9ORVRMSU5LX1FVRVVFPXkKQ09ORklHX05GX0NPTk5UUkFDSz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfWk9ORVM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX0VWRU5UUz15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRU9VVD15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRVNUQU1QPXkKQ09ORklHX05GX0NPTk5UUkFDS19GVFA9bQpDT05GSUdfTkZfQ09OTlRSQUNLX0lSQz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0FORT1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0lQPW0KQ09ORklHX05GX0NPTk5UUkFDS19URlRQPW0KQ09ORklHX05GX0NUX05FVExJTks9bQpDT05GSUdfTkVURklMVEVSX1hUX1NFVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NIRUNLU1VNPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ0xBU1NJRlk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DT05OTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0hNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSURMRVRJTUVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTEVEPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTkZRVUVVRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05PVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9URUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9UUFJPWFk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9TRUNNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQT1BUU1RSSVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0FERFJUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9CUEY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ0xVU1RFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09NTUVOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkJZVEVTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTEFCRUw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5UUkFDSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ1BVPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9EQ0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ERVZHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRFNDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRUNOPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9FU1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hBU0hMSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEVMUEVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBDT01QPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFJBTkdFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFZTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MMlRQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MRU5HVEg9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0xJTUlUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01VTFRJUE9SVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTkZBQ0NUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PU0Y9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX09XTkVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QT0xJQ1k9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BIWVNERVY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BLVFRZUEU9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1FVT1RBPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SQVRFRVNUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SRUFMTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVDRU5UPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TQ1RQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TT0NLRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUQVRFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFUSVNUSUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUUklORz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9USU1FPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9VMzI9bQpDT05GSUdfSVBfU0VUPXkKQ09ORklHX0lQX1NFVF9CSVRNQVBfSVA9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9JUE1BQz1tCkNPTkZJR19JUF9TRVRfQklUTUFQX1BPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBNQVJLPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlRJUD1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0hBU0hfTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVFBPUlRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVE5FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVElGQUNFPW0KQ09ORklHX0lQX1NFVF9MSVNUX1NFVD1tCkNPTkZJR19JUF9WUz1tCkNPTkZJR19JUF9WU19JUFY2PXkKQ09ORklHX0lQX1ZTX0RFQlVHPXkKQ09ORklHX0lQX1ZTX1BST1RPX1RDUD15CkNPTkZJR19JUF9WU19QUk9UT19VRFA9eQpDT05GSUdfSVBfVlNfUFJPVE9fRVNQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0FIPXkKQ09ORklHX0lQX1ZTX1BST1RPX1NDVFA9eQpDT05GSUdfSVBfVlNfUlI9bQpDT05GSUdfSVBfVlNfV1JSPW0KQ09ORklHX0lQX1ZTX0xDPW0KQ09ORklHX0lQX1ZTX1dMQz1tCkNPTkZJR19JUF9WU19GTz1tCkNPTkZJR19JUF9WU19PVkY9bQpDT05GSUdfSVBfVlNfTEJMQz1tCkNPTkZJR19JUF9WU19MQkxDUj1tCkNPTkZJR19JUF9WU19ESD1tCkNPTkZJR19JUF9WU19TSD1tCkNPTkZJR19JUF9WU19TRUQ9bQpDT05GSUdfSVBfVlNfTlE9bQpDT05GSUdfSVBfVlNfTkZDVD15CkNPTkZJR19ORl9MT0dfQVJQPW0KQ09ORklHX0lQX05GX0lQVEFCTEVTPXkKQ09ORklHX0lQX05GX01BVENIX1JQRklMVEVSPXkKQ09ORklHX0lQX05GX0ZJTFRFUj15CkNPTkZJR19JUF9ORl9UQVJHRVRfUkVKRUNUPXkKQ09ORklHX0lQX05GX05BVD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTUFTUVVFUkFERT1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTkVUTUFQPW0KQ09ORklHX0lQX05GX1RBUkdFVF9SRURJUkVDVD1tCkNPTkZJR19JUF9ORl9NQU5HTEU9eQpDT05GSUdfSVBfTkZfUkFXPW0KQ09ORklHX0lQNl9ORl9JUFRBQkxFUz15CkNPTkZJR19JUDZfTkZfTUFUQ0hfSVBWNkhFQURFUj15CkNPTkZJR19JUDZfTkZfRklMVEVSPXkKQ09ORklHX0lQNl9ORl9UQVJHRVRfUkVKRUNUPXkKQ09ORklHX0lQNl9ORl9NQU5HTEU9eQpDT05GSUdfQlJJREdFX05GX0VCVEFCTEVTPW0KQ09ORklHX0JSSURHRV9FQlRfQlJPVVRFPW0KQ09ORklHX0JSSURHRV9FQlRfVF9GSUxURVI9bQpDT05GSUdfQlJJREdFX0VCVF9UX05BVD1tCkNPTkZJR19CUklER0VfRUJUXzgwMl8zPW0KQ09ORklHX0JSSURHRV9FQlRfQU1PTkc9bQpDT05GSUdfQlJJREdFX0VCVF9BUlA9bQpDT05GSUdfQlJJREdFX0VCVF9JUD1tCkNPTkZJR19CUklER0VfRUJUX0lQNj1tCkNPTkZJR19CUklER0VfRUJUX0xJTUlUPW0KQ09ORklHX0JSSURHRV9FQlRfTUFSSz1tCkNPTkZJR19CUklER0VfRUJUX1BLVFRZUEU9bQpDT05GSUdfQlJJREdFX0VCVF9TVFA9bQpDT05GSUdfQlJJREdFX0VCVF9WTEFOPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQUkVQTFk9bQpDT05GSUdfQlJJREdFX0VCVF9ETkFUPW0KQ09ORklHX0JSSURHRV9FQlRfTUFSS19UPW0KQ09ORklHX0JSSURHRV9FQlRfUkVESVJFQ1Q9bQpDT05GSUdfQlJJREdFX0VCVF9TTkFUPW0KQ09ORklHX0JSSURHRV9FQlRfTE9HPW0KQ09ORklHX0JSSURHRV9FQlRfTkZMT0c9bQpDT05GSUdfSVBfU0NUUD15CkNPTkZJR19CUklER0U9bQpDT05GSUdfTkVUX1NDSEVEPXkKQ09ORklHX05FVF9TQ0hfSFRCPXkKQ09ORklHX05FVF9TQ0hfUFJJTz15CkNPTkZJR19ORVRfU0NIX1NGUT15CkNPTkZJR19ORVRfU0NIX1RCRj15CkNPTkZJR19ORVRfU0NIX05FVEVNPXkKQ09ORklHX05FVF9TQ0hfSU5HUkVTUz1tCkNPTkZJR19ORVRfQ0xTX0JBU0lDPW0KQ09ORklHX05FVF9DTFNfRlc9eQpDT05GSUdfTkVUX0NMU19VMzI9bQpDT05GSUdfTkVUX0NMU19DR1JPVVA9eQpDT05GSUdfTkVUX0NMU19CUEY9bQpDT05GSUdfTkVUX0NMU19NQVRDSEFMTD15CkNPTkZJR19ORVRfRU1BVENIPXkKQ09ORklHX05FVF9FTUFUQ0hfSVBTRVQ9eQpDT05GSUdfTkVUX0NMU19BQ1Q9eQpDT05GSUdfTkVUX0FDVF9NSVJSRUQ9bQpDT05GSUdfTkVUX0FDVF9CUEY9bQpDT05GSUdfTkVUX0FDVF9DT05OTUFSSz1tCkNPTkZJR19PUEVOVlNXSVRDSD1tCkNPTkZJR19WU09DS0VUUz1tCkNPTkZJR19WSVJUSU9fVlNPQ0tFVFM9bQpDT05GSUdfQ0dST1VQX05FVF9QUklPPXkKQ09ORklHX0JQRl9KSVQ9eQpDT05GSUdfSEFNUkFESU89eQpDT05GSUdfQ0ZHODAyMTE9eQpDT05GSUdfTUFDODAyMTE9eQpDT05GSUdfTUFDODAyMTFfTEVEUz15CkNPTkZJR19SRktJTEw9eQpDT05GSUdfTkVUXzlQPW0KQ09ORklHX05FVF85UF9WSVJUSU89bQpDT05GSUdfQ0VQSF9MSUI9eQpDT05GSUdfVUVWRU5UX0hFTFBFUl9QQVRIPSIvc2Jpbi9ob3RwbHVnIgpDT05GSUdfREVWVE1QRlM9eQpDT05GSUdfREVWVE1QRlNfTU9VTlQ9eQpDT05GSUdfREVCVUdfREVWUkVTPXkKQ09ORklHX0NPTk5FQ1RPUj15CkNPTkZJR19CTEtfREVWX0xPT1A9eQpDT05GSUdfQkxLX0RFVl9OQkQ9bQpDT05GSUdfVklSVElPX0JMSz15CkNPTkZJR19CTEtfREVWX1JCRD1tCkNPTkZJR19WTVdBUkVfQkFMTE9PTj1tCkNPTkZJR19WTVdBUkVfVk1DST1tCkNPTkZJR19CTEtfREVWX1NEPXkKQ09ORklHX0JMS19ERVZfU1I9eQpDT05GSUdfQ0hSX0RFVl9TRz15CkNPTkZJR19TQ1NJX0NPTlNUQU5UUz15CkNPTkZJR19TQ1NJX1NQSV9BVFRSUz15CkNPTkZJR19TQ1NJX0ZDX0FUVFJTPW0KQ09ORklHX1NDU0lfSVNDU0lfQVRUUlM9bQpDT05GSUdfU0NTSV9TQVNfTElCU0FTPW0KQ09ORklHX1NDU0lfU0FTX0FUQT15CkNPTkZJR19TQ1NJX1NSUF9BVFRSUz1tCkNPTkZJR19NRUdBUkFJRF9ORVdHRU49eQpDT05GSUdfTUVHQVJBSURfTU09bQpDT05GSUdfVk1XQVJFX1BWU0NTST15CkNPTkZJR19BVEE9eQpDT05GSUdfU0FUQV9BSENJPXkKQ09ORklHX0FUQV9QSUlYPXkKQ09ORklHX1BBVEFfQU1EPXkKQ09ORklHX1BBVEFfT0xEUElJWD15CkNPTkZJR19QQVRBX1NDSD15CkNPTkZJR19NRD15CkNPTkZJR19CTEtfREVWX01EPXkKQ09ORklHX0JMS19ERVZfRE09eQpDT05GSUdfRE1fQ1JZUFQ9eQpDT05GSUdfRE1fU05BUFNIT1Q9eQpDT05GSUdfRE1fVEhJTl9QUk9WSVNJT05JTkc9eQpDT05GSUdfRE1fTUlSUk9SPXkKQ09ORklHX0RNX1pFUk89eQpDT05GSUdfRlVTSU9OPXkKQ09ORklHX0ZVU0lPTl9TUEk9bQpDT05GSUdfRlVTSU9OX0ZDPW0KQ09ORklHX0ZVU0lPTl9TQVM9bQpDT05GSUdfRlVTSU9OX0NUTD1tCkNPTkZJR19GVVNJT05fTE9HR0lORz15CkNPTkZJR19NQUNJTlRPU0hfRFJJVkVSUz15CkNPTkZJR19NQUNfRU1VTU9VU0VCVE49eQpDT05GSUdfTkVUREVWSUNFUz15CkNPTkZJR19EVU1NWT1tCkNPTkZJR19JRkI9bQpDT05GSUdfTUFDVkxBTj15CkNPTkZJR19NQUNWVEFQPXkKQ09ORklHX0lQVkxBTj1tCkNPTkZJR19WWExBTj15CkNPTkZJR19ORVRDT05TT0xFPXkKQ09ORklHX1RVTj15CkNPTkZJR19WRVRIPXkKQ09ORklHX1ZJUlRJT19ORVQ9eQpDT05GSUdfTkVUX1ZSRj1tCkNPTkZJR19BTUQ4MTExX0VUSD1tCkNPTkZJR19QQ05FVDMyPW0KQ09ORklHX1BDTUNJQV9OTUNMQU49bQpDT05GSUdfVElHT04zPXkKQ09ORklHX05FVF9UVUxJUD15CkNPTkZJR19FMTAwPXkKQ09ORklHX0UxMDAwPXkKQ09ORklHX0UxMDAwRT15CkNPTkZJR19TS1kyPXkKQ09ORklHX0ZPUkNFREVUSD15CkNPTkZJR184MTM5Q1A9eQpDT05GSUdfODEzOVRPTz15CkNPTkZJR19GRERJPXkKQ09ORklHX1ZNWE5FVDM9eQpDT05GSUdfSFlQRVJWX05FVD1tCkNPTkZJR19JTlBVVF9QT0xMREVWPXkKQ09ORklHX0lOUFVUX0VWREVWPXkKQ09ORklHX0lOUFVUX0pPWVNUSUNLPXkKQ09ORklHX0lOUFVUX1RBQkxFVD15CkNPTkZJR19JTlBVVF9UT1VDSFNDUkVFTj15CkNPTkZJR19JTlBVVF9NSVNDPXkKIyBDT05GSUdfTEVHQUNZX1BUWVMgaXMgbm90IHNldApDT05GSUdfU0VSSUFMX05PTlNUQU5EQVJEPXkKQ09ORklHX1NFUklBTF84MjUwPXkKQ09ORklHX1NFUklBTF84MjUwX0NPTlNPTEU9eQpDT05GSUdfU0VSSUFMXzgyNTBfTlJfVUFSVFM9MzIKQ09ORklHX1NFUklBTF84MjUwX0VYVEVOREVEPXkKQ09ORklHX1NFUklBTF84MjUwX01BTllfUE9SVFM9eQpDT05GSUdfU0VSSUFMXzgyNTBfU0hBUkVfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX0RFVEVDVF9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfUlNBPXkKQ09ORklHX0hXX1JBTkRPTT15CiMgQ09ORklHX0hXX1JBTkRPTV9JTlRFTCBpcyBub3Qgc2V0CiMgQ09ORklHX0hXX1JBTkRPTV9BTUQgaXMgbm90IHNldApDT05GSUdfSFdfUkFORE9NX1ZJUlRJTz15CkNPTkZJR19OVlJBTT15CkNPTkZJR19IUEVUPXkKIyBDT05GSUdfSFBFVF9NTUFQIGlzIG5vdCBzZXQKQ09ORklHX0kyQ19JODAxPXkKQ09ORklHX1dBVENIRE9HPXkKQ09ORklHX0FHUD15CkNPTkZJR19BR1BfQU1ENjQ9eQpDT05GSUdfQUdQX0lOVEVMPXkKQ09ORklHX0RSTT15CkNPTkZJR19EUk1fSTkxNT15CkNPTkZJR19EUk1fVklSVElPX0dQVT15CkNPTkZJR19GQl9NT0RFX0hFTFBFUlM9eQpDT05GSUdfRkJfVElMRUJMSVRUSU5HPXkKQ09ORklHX0ZCX0VGST15CiMgQ09ORklHX0xDRF9DTEFTU19ERVZJQ0UgaXMgbm90IHNldApDT05GSUdfTE9HTz15CiMgQ09ORklHX0xPR09fTElOVVhfTU9OTyBpcyBub3Qgc2V0CiMgQ09ORklHX0xPR09fTElOVVhfVkdBMTYgaXMgbm90IHNldApDT05GSUdfU09VTkQ9eQpDT05GSUdfU05EPXkKQ09ORklHX1NORF9IUlRJTUVSPXkKQ09ORklHX1NORF9TRVFVRU5DRVI9eQpDT05GSUdfU05EX1NFUV9EVU1NWT15CkNPTkZJR19TTkRfSERBX0lOVEVMPXkKQ09ORklHX1NORF9IREFfSFdERVA9eQpDT05GSUdfSElEUkFXPXkKQ09ORklHX0hJRF9HWVJBVElPTj15CkNPTkZJR19MT0dJVEVDSF9GRj15CkNPTkZJR19ISURfTlRSSUc9eQpDT05GSUdfSElEX1BBTlRIRVJMT1JEPXkKQ09ORklHX1BBTlRIRVJMT1JEX0ZGPXkKQ09ORklHX0hJRF9QRVRBTFlOWD15CkNPTkZJR19ISURfU0FNU1VORz15CkNPTkZJR19ISURfU09OWT15CkNPTkZJR19ISURfU1VOUExVUz15CkNPTkZJR19ISURfSFlQRVJWX01PVVNFPW0KQ09ORklHX0hJRF9UT1BTRUVEPXkKQ09ORklHX0hJRF9QSUQ9eQpDT05GSUdfVVNCX0hJRERFVj15CkNPTkZJR19VU0I9eQpDT05GSUdfVVNCX0FOTk9VTkNFX05FV19ERVZJQ0VTPXkKQ09ORklHX1VTQl9NT049eQpDT05GSUdfVVNCX0VIQ0lfSENEPXkKQ09ORklHX1VTQl9PSENJX0hDRD15CkNPTkZJR19VU0JfVUhDSV9IQ0Q9eQpDT05GSUdfVVNCX1BSSU5URVI9eQpDT05GSUdfVVNCX1NUT1JBR0U9eQpDT05GSUdfRURBQz15CkNPTkZJR19SVENfQ0xBU1M9eQojIENPTkZJR19SVENfSENUT1NZUyBpcyBub3Qgc2V0CkNPTkZJR19ETUFERVZJQ0VTPXkKQ09ORklHX1ZJUlRfRFJJVkVSUz15CkNPTkZJR19WSVJUSU9fUENJPXkKQ09ORklHX0hZUEVSVj1tCkNPTkZJR19IWVBFUlZfVVRJTFM9bQpDT05GSUdfSFlQRVJWX0JBTExPT049bQpDT05GSUdfRUVFUENfTEFQVE9QPXkKQ09ORklHX0FNRF9JT01NVT15CkNPTkZJR19JTlRFTF9JT01NVT15CiMgQ09ORklHX0lOVEVMX0lPTU1VX0RFRkFVTFRfT04gaXMgbm90IHNldApDT05GSUdfRVhUNF9GUz15CkNPTkZJR19FWFQ0X0ZTX1BPU0lYX0FDTD15CkNPTkZJR19FWFQ0X0ZTX1NFQ1VSSVRZPXkKQ09ORklHX1hGU19GUz15CkNPTkZJR19YRlNfUVVPVEE9eQpDT05GSUdfWEZTX1BPU0lYX0FDTD15CkNPTkZJR19CVFJGU19GUz1tCkNPTkZJR19CVFJGU19GU19QT1NJWF9BQ0w9eQpDT05GSUdfUVVPVEE9eQpDT05GSUdfUVVPVEFfTkVUTElOS19JTlRFUkZBQ0U9eQojIENPTkZJR19QUklOVF9RVU9UQV9XQVJOSU5HIGlzIG5vdCBzZXQKQ09ORklHX1FGTVRfVjI9eQpDT05GSUdfQVVUT0ZTNF9GUz15CkNPTkZJR19GVVNFX0ZTPXkKQ09ORklHX09WRVJMQVlfRlM9bQpDT05GSUdfSVNPOTY2MF9GUz15CkNPTkZJR19KT0xJRVQ9eQpDT05GSUdfWklTT0ZTPXkKQ09ORklHX01TRE9TX0ZTPXkKQ09ORklHX1ZGQVRfRlM9eQpDT05GSUdfUFJPQ19LQ09SRT15CkNPTkZJR19UTVBGU19QT1NJWF9BQ0w9eQpDT05GSUdfSFVHRVRMQkZTPXkKQ09ORklHX05GU19GUz15CkNPTkZJR19ORlNfVjQ9eQpDT05GSUdfTkZTX1NXQVA9eQpDT05GSUdfTkZTX1Y0XzE9eQpDT05GSUdfTkZTX1Y0XzI9eQpDT05GSUdfTkZTRD15CkNPTkZJR19ORlNEX1Y0PXkKQ09ORklHX0NFUEhfRlM9bQpDT05GSUdfQ0VQSF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfQ0lGUz15CkNPTkZJR185UF9GUz1tCkNPTkZJR185UF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfOVBfRlNfU0VDVVJJVFk9eQpDT05GSUdfTkxTX0RFRkFVTFQ9InV0ZjgiCkNPTkZJR19OTFNfQ09ERVBBR0VfNDM3PXkKQ09ORklHX05MU19BU0NJST15CkNPTkZJR19OTFNfSVNPODg1OV8xPXkKQ09ORklHX05MU19VVEY4PXkKQ09ORklHX1NFQ1VSSVRZPXkKQ09ORklHX1NFQ1VSSVRZX05FVFdPUks9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWD15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYX0JPT1RQQVJBTT15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYX0RJU0FCTEU9eQpDT05GSUdfQ1JZUFRPX1hUUz15CkNPTkZJR19DUllQVE9fQUVTX05JX0lOVEVMPXkKQ09ORklHX0NSWVBUT19VU0VSX0FQSV9IQVNIPXkKQ09ORklHX0NSWVBUT19VU0VSX0FQSV9TS0NJUEhFUj15CkNPTkZJR19QUklOVEtfVElNRT15CiMgQ09ORklHX1VOVVNFRF9TWU1CT0xTIGlzIG5vdCBzZXQKQ09ORklHX01BR0lDX1NZU1JRPXkKQ09ORklHX0RFQlVHX0tFUk5FTD15CkNPTkZJR19ERUJVR19TVEFDS19VU0FHRT15CkNPTkZJR19ERUJVR19TVEFDS09WRVJGTE9XPXkKIyBDT05GSUdfU0NIRURfREVCVUcgaXMgbm90IHNldApDT05GSUdfU0NIRURTVEFUUz15CkNPTkZJR19GVU5DVElPTl9UUkFDRVI9eQpDT05GSUdfRlRSQUNFX1NZU0NBTExTPXkKQ09ORklHX0JMS19ERVZfSU9fVFJBQ0U9eQpDT05GSUdfUFJPVklERV9PSENJMTM5NF9ETUFfSU5JVD15CkNPTkZJR19FQVJMWV9QUklOVEtfREJHUD15CkNPTkZJR19ERUJVR19CT09UX1BBUkFNUz15CkNPTkZJR19PUFRJTUlaRV9JTkxJTklORz15CkNPTkZJR19GUkFNRUJVRkZFUl9DT05TT0xFPXkK" - }, - { - "kernelversion": "1_1.26.1", - "kernelrelease": "5.10.57", - "target": "minikube", - "kernelconfigdata": "Q09ORklHX0ZBTk9USUZZPXkKQ09ORklHX0tQUk9CRV9FVkVOVFM9eQpDT05GSUdfREVCVUdfSU5GTz15CkNPTkZJR19ERUJVR19JTkZPX0JURj15CkNPTkZJR19JS0hFQURFUlM9eQpDT05GSUdfQlBGX0xTTT15CkNPTkZJR19WQk9YR1VFU1Q9bQpDT05GSUdfVkJPWFNGX0ZTPW0KQ09ORklHX0RSTV9WQk9YVklERU89bQpDT05GSUdfQlJJREdFX05FVEZJTFRFUj15CkNPTkZJR19QQ0k9eQpDT05GSUdfVE1QRlM9eQojIENPTkZJR19MT0NBTFZFUlNJT05fQVVUTyBpcyBub3Qgc2V0CkNPTkZJR19LRVJORUxfTFo0PXkKQ09ORklHX1NZU1ZJUEM9eQpDT05GSUdfUE9TSVhfTVFVRVVFPXkKQ09ORklHX0FVRElUPXkKQ09ORklHX05PX0haPXkKQ09ORklHX0hJR0hfUkVTX1RJTUVSUz15CkNPTkZJR19QUkVFTVBUX1ZPTFVOVEFSWT15CkNPTkZJR19CU0RfUFJPQ0VTU19BQ0NUPXkKQ09ORklHX1RBU0tfWEFDQ1Q9eQpDT05GSUdfVEFTS19JT19BQ0NPVU5USU5HPXkKQ09ORklHX0lLQ09ORklHPXkKQ09ORklHX0lLQ09ORklHX1BST0M9eQpDT05GSUdfTE9HX0JVRl9TSElGVD0xOApDT05GSUdfQ0dST1VQUz15CkNPTkZJR19NRU1DRz15CkNPTkZJR19NRU1DR19TV0FQPXkKQ09ORklHX0JMS19DR1JPVVA9eQpDT05GSUdfQ0dST1VQX1NDSEVEPXkKQ09ORklHX0NGU19CQU5EV0lEVEg9eQpDT05GSUdfUlRfR1JPVVBfU0NIRUQ9eQpDT05GSUdfQ0dST1VQX1BJRFM9eQpDT05GSUdfQ0dST1VQX0ZSRUVaRVI9eQpDT05GSUdfQ0dST1VQX0hVR0VUTEI9eQpDT05GSUdfQ1BVU0VUUz15CkNPTkZJR19DR1JPVVBfREVWSUNFPXkKQ09ORklHX0NHUk9VUF9DUFVBQ0NUPXkKQ09ORklHX0NHUk9VUF9QRVJGPXkKQ09ORklHX0NHUk9VUF9CUEY9eQpDT05GSUdfVVNFUl9OUz15CkNPTkZJR19CTEtfREVWX0lOSVRSRD15CkNPTkZJR19CUEZfU1lTQ0FMTD15CiMgQ09ORklHX0NPTVBBVF9CUksgaXMgbm90IHNldApDT05GSUdfUFJPRklMSU5HPXkKQ09ORklHX1NNUD15CkNPTkZJR19IWVBFUlZJU09SX0dVRVNUPXkKQ09ORklHX1BBUkFWSVJUX1NQSU5MT0NLUz15CkNPTkZJR19LVk1fREVCVUdfRlM9eQpDT05GSUdfQ0FMR0FSWV9JT01NVT15CkNPTkZJR19YODZfUkVST1VURV9GT1JfQlJPS0VOX0JPT1RfSVJRUz15CkNPTkZJR19NSUNST0NPREVfQU1EPXkKQ09ORklHX1g4Nl9NU1I9eQpDT05GSUdfWDg2X0NQVUlEPXkKQ09ORklHX05VTUE9eQpDT05GSUdfWDg2X0NIRUNLX0JJT1NfQ09SUlVQVElPTj15CiMgQ09ORklHX01UUlJfU0FOSVRJWkVSIGlzIG5vdCBzZXQKQ09ORklHX0VGST15CkNPTkZJR19IWl8xMDAwPXkKQ09ORklHX0tFWEVDPXkKQ09ORklHX0NSQVNIX0RVTVA9eQpDT05GSUdfSElCRVJOQVRJT049eQpDT05GSUdfUE1fREVCVUc9eQpDT05GSUdfUE1fVFJBQ0VfUlRDPXkKQ09ORklHX0FDUElfRE9DSz15CkNPTkZJR19DUFVfRlJFUV9ERUZBVUxUX0dPVl9VU0VSU1BBQ0U9eQpDT05GSUdfQ1BVX0ZSRVFfR09WX1BFUkZPUk1BTkNFPXkKQ09ORklHX0NQVV9GUkVRX0dPVl9PTkRFTUFORD15CkNPTkZJR19YODZfQUNQSV9DUFVGUkVRPXkKQ09ORklHX1BDSUVQT1JUQlVTPXkKQ09ORklHX0hPVFBMVUdfUENJPXkKQ09ORklHX1BDQ0FSRD15CkNPTkZJR19ZRU5UQT15CkNPTkZJR19JQTMyX0VNVUxBVElPTj15CkNPTkZJR19FRklfVkFSUz15CkNPTkZJR19LVk09bQpDT05GSUdfS1ZNX0lOVEVMPW0KQ09ORklHX0tWTV9BTUQ9bQpDT05GSUdfVkhPU1RfTkVUPW0KQ09ORklHX1ZIT1NUX1ZTT0NLPW0KQ09ORklHX0tQUk9CRVM9eQpDT05GSUdfSlVNUF9MQUJFTD15CkNPTkZJR19NT0RVTEVTPXkKQ09ORklHX01PRFVMRV9VTkxPQUQ9eQpDT05GSUdfTU9EVUxFX0ZPUkNFX1VOTE9BRD15CkNPTkZJR19NT0RWRVJTSU9OUz15CkNPTkZJR19QQVJUSVRJT05fQURWQU5DRUQ9eQpDT05GSUdfT1NGX1BBUlRJVElPTj15CkNPTkZJR19BTUlHQV9QQVJUSVRJT049eQpDT05GSUdfTUFDX1BBUlRJVElPTj15CkNPTkZJR19CU0RfRElTS0xBQkVMPXkKQ09ORklHX01JTklYX1NVQlBBUlRJVElPTj15CkNPTkZJR19TT0xBUklTX1g4Nl9QQVJUSVRJT049eQpDT05GSUdfVU5JWFdBUkVfRElTS0xBQkVMPXkKQ09ORklHX1NHSV9QQVJUSVRJT049eQpDT05GSUdfU1VOX1BBUlRJVElPTj15CkNPTkZJR19LQVJNQV9QQVJUSVRJT049eQpDT05GSUdfQklORk1UX01JU0M9eQpDT05GSUdfVFJBTlNQQVJFTlRfSFVHRVBBR0U9eQpDT05GSUdfVFJBTlNQQVJFTlRfSFVHRVBBR0VfTUFEVklTRT15CkNPTkZJR19ORVQ9eQpDT05GSUdfUEFDS0VUPXkKQ09ORklHX1VOSVg9eQpDT05GSUdfWEZSTV9VU0VSPXkKQ09ORklHX0lORVQ9eQpDT05GSUdfSVBfTVVMVElDQVNUPXkKQ09ORklHX0lQX0FEVkFOQ0VEX1JPVVRFUj15CkNPTkZJR19JUF9NVUxUSVBMRV9UQUJMRVM9eQpDT05GSUdfSVBfUk9VVEVfTVVMVElQQVRIPXkKQ09ORklHX0lQX1JPVVRFX1ZFUkJPU0U9eQpDT05GSUdfSVBfUE5QPXkKQ09ORklHX0lQX1BOUF9ESENQPXkKQ09ORklHX0lQX1BOUF9CT09UUD15CkNPTkZJR19JUF9QTlBfUkFSUD15CkNPTkZJR19ORVRfSVBJUD1tCkNPTkZJR19JUF9NUk9VVEU9eQpDT05GSUdfSVBfUElNU01fVjE9eQpDT05GSUdfSVBfUElNU01fVjI9eQpDT05GSUdfU1lOX0NPT0tJRVM9eQojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9UUkFOU1BPUlQgaXMgbm90IHNldAojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9UVU5ORUwgaXMgbm90IHNldAojIENPTkZJR19JTkVUX1hGUk1fTU9ERV9CRUVUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVF9ESUFHIGlzIG5vdCBzZXQKQ09ORklHX1RDUF9DT05HX0FEVkFOQ0VEPXkKIyBDT05GSUdfVENQX0NPTkdfQklDIGlzIG5vdCBzZXQKIyBDT05GSUdfVENQX0NPTkdfV0VTVFdPT0QgaXMgbm90IHNldAojIENPTkZJR19UQ1BfQ09OR19IVENQIGlzIG5vdCBzZXQKQ09ORklHX1RDUF9NRDVTSUc9eQpDT05GSUdfSU5FVDZfQUg9eQpDT05GSUdfSU5FVDZfRVNQPXkKQ09ORklHX0lQVjZfTVVMVElQTEVfVEFCTEVTPXkKQ09ORklHX05FVExBQkVMPXkKQ09ORklHX05FVEZJTFRFUj15CkNPTkZJR19ORVRGSUxURVJfTkVUTElOS19BQ0NUPXkKQ09ORklHX05FVEZJTFRFUl9ORVRMSU5LX1FVRVVFPXkKQ09ORklHX05GX0NPTk5UUkFDSz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfWk9ORVM9eQpDT05GSUdfTkZfQ09OTlRSQUNLX0VWRU5UUz15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRU9VVD15CkNPTkZJR19ORl9DT05OVFJBQ0tfVElNRVNUQU1QPXkKQ09ORklHX05GX0NPTk5UUkFDS19GVFA9bQpDT05GSUdfTkZfQ09OTlRSQUNLX0lSQz1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0FORT1tCkNPTkZJR19ORl9DT05OVFJBQ0tfU0lQPW0KQ09ORklHX05GX0NPTk5UUkFDS19URlRQPW0KQ09ORklHX05GX0NUX05FVExJTks9bQpDT05GSUdfTkVURklMVEVSX1hUX1NFVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0NIRUNLU1VNPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfQ0xBU1NJRlk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9DT05OTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0RTQ1A9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX0hNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfSURMRVRJTUVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTEVEPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTUFSSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05GTE9HPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfTkZRVUVVRT1tCkNPTkZJR19ORVRGSUxURVJfWFRfVEFSR0VUX05PVFJBQ0s9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9URUU9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9UUFJPWFk9bQpDT05GSUdfTkVURklMVEVSX1hUX1RBUkdFVF9TRUNNQVJLPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9UQVJHRVRfVENQT1BUU1RSSVA9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0FERFJUWVBFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9CUEY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ0xVU1RFUj1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09NTUVOVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTkJZVEVTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9DT05OTEFCRUw9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5MSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ09OTk1BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0NPTk5UUkFDSz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfQ1BVPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9EQ0NQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ERVZHUk9VUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRFNDUD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfRUNOPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9FU1A9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0hBU0hMSU1JVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSEVMUEVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9ITD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfSVBDT01QPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFJBTkdFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9JUFZTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MMlRQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9MRU5HVEg9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX0xJTUlUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9NQUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01BUks9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX01VTFRJUE9SVD1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfTkZBQ0NUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9PU0Y9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX09XTkVSPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9QT0xJQ1k9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BIWVNERVY9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1BLVFRZUEU9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1FVT1RBPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SQVRFRVNUPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9SRUFMTT1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfUkVDRU5UPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TQ1RQPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TT0NLRVQ9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUQVRFPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9TVEFUSVNUSUM9bQpDT05GSUdfTkVURklMVEVSX1hUX01BVENIX1NUUklORz1tCkNPTkZJR19ORVRGSUxURVJfWFRfTUFUQ0hfVENQTVNTPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9USU1FPW0KQ09ORklHX05FVEZJTFRFUl9YVF9NQVRDSF9VMzI9bQpDT05GSUdfSVBfU0VUPXkKQ09ORklHX0lQX1NFVF9CSVRNQVBfSVA9bQpDT05GSUdfSVBfU0VUX0JJVE1BUF9JUE1BQz1tCkNPTkZJR19JUF9TRVRfQklUTUFQX1BPUlQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVA9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBNQVJLPW0KQ09ORklHX0lQX1NFVF9IQVNIX0lQUE9SVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlRJUD1tCkNPTkZJR19JUF9TRVRfSEFTSF9JUFBPUlRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfSVBNQUM9bQpDT05GSUdfSVBfU0VUX0hBU0hfTUFDPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVFBPUlRORVQ9bQpDT05GSUdfSVBfU0VUX0hBU0hfTkVUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVE5FVD1tCkNPTkZJR19JUF9TRVRfSEFTSF9ORVRQT1JUPW0KQ09ORklHX0lQX1NFVF9IQVNIX05FVElGQUNFPW0KQ09ORklHX0lQX1NFVF9MSVNUX1NFVD1tCkNPTkZJR19JUF9WUz1tCkNPTkZJR19JUF9WU19JUFY2PXkKQ09ORklHX0lQX1ZTX0RFQlVHPXkKQ09ORklHX0lQX1ZTX1BST1RPX1RDUD15CkNPTkZJR19JUF9WU19QUk9UT19VRFA9eQpDT05GSUdfSVBfVlNfUFJPVE9fRVNQPXkKQ09ORklHX0lQX1ZTX1BST1RPX0FIPXkKQ09ORklHX0lQX1ZTX1BST1RPX1NDVFA9eQpDT05GSUdfSVBfVlNfUlI9bQpDT05GSUdfSVBfVlNfV1JSPW0KQ09ORklHX0lQX1ZTX0xDPW0KQ09ORklHX0lQX1ZTX1dMQz1tCkNPTkZJR19JUF9WU19GTz1tCkNPTkZJR19JUF9WU19PVkY9bQpDT05GSUdfSVBfVlNfTEJMQz1tCkNPTkZJR19JUF9WU19MQkxDUj1tCkNPTkZJR19JUF9WU19ESD1tCkNPTkZJR19JUF9WU19TSD1tCkNPTkZJR19JUF9WU19TRUQ9bQpDT05GSUdfSVBfVlNfTlE9bQpDT05GSUdfSVBfVlNfTkZDVD15CkNPTkZJR19ORl9MT0dfQVJQPW0KQ09ORklHX0lQX05GX0lQVEFCTEVTPXkKQ09ORklHX0lQX05GX01BVENIX1JQRklMVEVSPXkKQ09ORklHX0lQX05GX0ZJTFRFUj15CkNPTkZJR19JUF9ORl9UQVJHRVRfUkVKRUNUPXkKQ09ORklHX0lQX05GX05BVD1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTUFTUVVFUkFERT1tCkNPTkZJR19JUF9ORl9UQVJHRVRfTkVUTUFQPW0KQ09ORklHX0lQX05GX1RBUkdFVF9SRURJUkVDVD1tCkNPTkZJR19JUF9ORl9NQU5HTEU9eQpDT05GSUdfSVBfTkZfUkFXPW0KQ09ORklHX0lQNl9ORl9JUFRBQkxFUz15CkNPTkZJR19JUDZfTkZfTUFUQ0hfSVBWNkhFQURFUj15CkNPTkZJR19JUDZfTkZfRklMVEVSPXkKQ09ORklHX0lQNl9ORl9UQVJHRVRfUkVKRUNUPXkKQ09ORklHX0lQNl9ORl9NQU5HTEU9eQpDT05GSUdfQlJJREdFX05GX0VCVEFCTEVTPW0KQ09ORklHX0JSSURHRV9FQlRfQlJPVVRFPW0KQ09ORklHX0JSSURHRV9FQlRfVF9GSUxURVI9bQpDT05GSUdfQlJJREdFX0VCVF9UX05BVD1tCkNPTkZJR19CUklER0VfRUJUXzgwMl8zPW0KQ09ORklHX0JSSURHRV9FQlRfQU1PTkc9bQpDT05GSUdfQlJJREdFX0VCVF9BUlA9bQpDT05GSUdfQlJJREdFX0VCVF9JUD1tCkNPTkZJR19CUklER0VfRUJUX0lQNj1tCkNPTkZJR19CUklER0VfRUJUX0xJTUlUPW0KQ09ORklHX0JSSURHRV9FQlRfTUFSSz1tCkNPTkZJR19CUklER0VfRUJUX1BLVFRZUEU9bQpDT05GSUdfQlJJREdFX0VCVF9TVFA9bQpDT05GSUdfQlJJREdFX0VCVF9WTEFOPW0KQ09ORklHX0JSSURHRV9FQlRfQVJQUkVQTFk9bQpDT05GSUdfQlJJREdFX0VCVF9ETkFUPW0KQ09ORklHX0JSSURHRV9FQlRfTUFSS19UPW0KQ09ORklHX0JSSURHRV9FQlRfUkVESVJFQ1Q9bQpDT05GSUdfQlJJREdFX0VCVF9TTkFUPW0KQ09ORklHX0JSSURHRV9FQlRfTE9HPW0KQ09ORklHX0JSSURHRV9FQlRfTkZMT0c9bQpDT05GSUdfSVBfU0NUUD15CkNPTkZJR19CUklER0U9bQpDT05GSUdfTkVUX1NDSEVEPXkKQ09ORklHX05FVF9TQ0hfSFRCPXkKQ09ORklHX05FVF9TQ0hfUFJJTz15CkNPTkZJR19ORVRfU0NIX1NGUT15CkNPTkZJR19ORVRfU0NIX1RCRj15CkNPTkZJR19ORVRfU0NIX05FVEVNPXkKQ09ORklHX05FVF9TQ0hfSU5HUkVTUz1tCkNPTkZJR19ORVRfQ0xTX0JBU0lDPW0KQ09ORklHX05FVF9DTFNfRlc9eQpDT05GSUdfTkVUX0NMU19VMzI9bQpDT05GSUdfTkVUX0NMU19DR1JPVVA9eQpDT05GSUdfTkVUX0NMU19CUEY9bQpDT05GSUdfTkVUX0NMU19NQVRDSEFMTD15CkNPTkZJR19ORVRfRU1BVENIPXkKQ09ORklHX05FVF9FTUFUQ0hfSVBTRVQ9eQpDT05GSUdfTkVUX0NMU19BQ1Q9eQpDT05GSUdfTkVUX0FDVF9NSVJSRUQ9bQpDT05GSUdfTkVUX0FDVF9CUEY9bQpDT05GSUdfTkVUX0FDVF9DT05OTUFSSz1tCkNPTkZJR19PUEVOVlNXSVRDSD1tCkNPTkZJR19WU09DS0VUUz1tCkNPTkZJR19WSVJUSU9fVlNPQ0tFVFM9bQpDT05GSUdfQ0dST1VQX05FVF9QUklPPXkKQ09ORklHX0JQRl9KSVQ9eQpDT05GSUdfSEFNUkFESU89eQpDT05GSUdfQ0ZHODAyMTE9eQpDT05GSUdfTUFDODAyMTE9eQpDT05GSUdfTUFDODAyMTFfTEVEUz15CkNPTkZJR19SRktJTEw9eQpDT05GSUdfTkVUXzlQPW0KQ09ORklHX05FVF85UF9WSVJUSU89bQpDT05GSUdfQ0VQSF9MSUI9eQpDT05GSUdfVUVWRU5UX0hFTFBFUl9QQVRIPSIvc2Jpbi9ob3RwbHVnIgpDT05GSUdfREVWVE1QRlM9eQpDT05GSUdfREVWVE1QRlNfTU9VTlQ9eQpDT05GSUdfREVCVUdfREVWUkVTPXkKQ09ORklHX0NPTk5FQ1RPUj15CkNPTkZJR19CTEtfREVWX0xPT1A9eQpDT05GSUdfQkxLX0RFVl9OQkQ9bQpDT05GSUdfVklSVElPX0JMSz15CkNPTkZJR19CTEtfREVWX1JCRD1tCkNPTkZJR19WTVdBUkVfQkFMTE9PTj1tCkNPTkZJR19WTVdBUkVfVk1DST1tCkNPTkZJR19CTEtfREVWX1NEPXkKQ09ORklHX0JMS19ERVZfU1I9eQpDT05GSUdfQ0hSX0RFVl9TRz15CkNPTkZJR19TQ1NJX0NPTlNUQU5UUz15CkNPTkZJR19TQ1NJX1NQSV9BVFRSUz15CkNPTkZJR19TQ1NJX0ZDX0FUVFJTPW0KQ09ORklHX1NDU0lfSVNDU0lfQVRUUlM9bQpDT05GSUdfU0NTSV9TQVNfTElCU0FTPW0KQ09ORklHX1NDU0lfU0FTX0FUQT15CkNPTkZJR19TQ1NJX1NSUF9BVFRSUz1tCkNPTkZJR19NRUdBUkFJRF9ORVdHRU49eQpDT05GSUdfTUVHQVJBSURfTU09bQpDT05GSUdfVk1XQVJFX1BWU0NTST15CkNPTkZJR19BVEE9eQpDT05GSUdfU0FUQV9BSENJPXkKQ09ORklHX0FUQV9QSUlYPXkKQ09ORklHX1BBVEFfQU1EPXkKQ09ORklHX1BBVEFfT0xEUElJWD15CkNPTkZJR19QQVRBX1NDSD15CkNPTkZJR19NRD15CkNPTkZJR19CTEtfREVWX01EPXkKQ09ORklHX0JMS19ERVZfRE09eQpDT05GSUdfRE1fQ1JZUFQ9eQpDT05GSUdfRE1fU05BUFNIT1Q9eQpDT05GSUdfRE1fVEhJTl9QUk9WSVNJT05JTkc9eQpDT05GSUdfRE1fTUlSUk9SPXkKQ09ORklHX0RNX1pFUk89eQpDT05GSUdfRlVTSU9OPXkKQ09ORklHX0ZVU0lPTl9TUEk9bQpDT05GSUdfRlVTSU9OX0ZDPW0KQ09ORklHX0ZVU0lPTl9TQVM9bQpDT05GSUdfRlVTSU9OX0NUTD1tCkNPTkZJR19GVVNJT05fTE9HR0lORz15CkNPTkZJR19NQUNJTlRPU0hfRFJJVkVSUz15CkNPTkZJR19NQUNfRU1VTU9VU0VCVE49eQpDT05GSUdfTkVUREVWSUNFUz15CkNPTkZJR19EVU1NWT1tCkNPTkZJR19JRkI9bQpDT05GSUdfTUFDVkxBTj15CkNPTkZJR19NQUNWVEFQPXkKQ09ORklHX0lQVkxBTj1tCkNPTkZJR19WWExBTj15CkNPTkZJR19ORVRDT05TT0xFPXkKQ09ORklHX1RVTj15CkNPTkZJR19WRVRIPXkKQ09ORklHX1ZJUlRJT19ORVQ9eQpDT05GSUdfTkVUX1ZSRj1tCkNPTkZJR19BTUQ4MTExX0VUSD1tCkNPTkZJR19QQ05FVDMyPW0KQ09ORklHX1BDTUNJQV9OTUNMQU49bQpDT05GSUdfVElHT04zPXkKQ09ORklHX05FVF9UVUxJUD15CkNPTkZJR19FMTAwPXkKQ09ORklHX0UxMDAwPXkKQ09ORklHX0UxMDAwRT15CkNPTkZJR19TS1kyPXkKQ09ORklHX0ZPUkNFREVUSD15CkNPTkZJR184MTM5Q1A9eQpDT05GSUdfODEzOVRPTz15CkNPTkZJR19GRERJPXkKQ09ORklHX1ZNWE5FVDM9eQpDT05GSUdfSFlQRVJWX05FVD1tCkNPTkZJR19JTlBVVF9QT0xMREVWPXkKQ09ORklHX0lOUFVUX0VWREVWPXkKQ09ORklHX0lOUFVUX0pPWVNUSUNLPXkKQ09ORklHX0lOUFVUX1RBQkxFVD15CkNPTkZJR19JTlBVVF9UT1VDSFNDUkVFTj15CkNPTkZJR19JTlBVVF9NSVNDPXkKIyBDT05GSUdfTEVHQUNZX1BUWVMgaXMgbm90IHNldApDT05GSUdfU0VSSUFMX05PTlNUQU5EQVJEPXkKQ09ORklHX1NFUklBTF84MjUwPXkKQ09ORklHX1NFUklBTF84MjUwX0NPTlNPTEU9eQpDT05GSUdfU0VSSUFMXzgyNTBfTlJfVUFSVFM9MzIKQ09ORklHX1NFUklBTF84MjUwX0VYVEVOREVEPXkKQ09ORklHX1NFUklBTF84MjUwX01BTllfUE9SVFM9eQpDT05GSUdfU0VSSUFMXzgyNTBfU0hBUkVfSVJRPXkKQ09ORklHX1NFUklBTF84MjUwX0RFVEVDVF9JUlE9eQpDT05GSUdfU0VSSUFMXzgyNTBfUlNBPXkKQ09ORklHX0hXX1JBTkRPTT15CiMgQ09ORklHX0hXX1JBTkRPTV9JTlRFTCBpcyBub3Qgc2V0CiMgQ09ORklHX0hXX1JBTkRPTV9BTUQgaXMgbm90IHNldApDT05GSUdfSFdfUkFORE9NX1ZJUlRJTz15CkNPTkZJR19OVlJBTT15CkNPTkZJR19IUEVUPXkKIyBDT05GSUdfSFBFVF9NTUFQIGlzIG5vdCBzZXQKQ09ORklHX0kyQ19JODAxPXkKQ09ORklHX1dBVENIRE9HPXkKQ09ORklHX0FHUD15CkNPTkZJR19BR1BfQU1ENjQ9eQpDT05GSUdfQUdQX0lOVEVMPXkKQ09ORklHX0RSTT15CkNPTkZJR19EUk1fSTkxNT15CkNPTkZJR19EUk1fVklSVElPX0dQVT15CkNPTkZJR19GQl9NT0RFX0hFTFBFUlM9eQpDT05GSUdfRkJfVElMRUJMSVRUSU5HPXkKQ09ORklHX0ZCX0VGST15CiMgQ09ORklHX0xDRF9DTEFTU19ERVZJQ0UgaXMgbm90IHNldApDT05GSUdfTE9HTz15CiMgQ09ORklHX0xPR09fTElOVVhfTU9OTyBpcyBub3Qgc2V0CiMgQ09ORklHX0xPR09fTElOVVhfVkdBMTYgaXMgbm90IHNldApDT05GSUdfU09VTkQ9eQpDT05GSUdfU05EPXkKQ09ORklHX1NORF9IUlRJTUVSPXkKQ09ORklHX1NORF9TRVFVRU5DRVI9eQpDT05GSUdfU05EX1NFUV9EVU1NWT15CkNPTkZJR19TTkRfSERBX0lOVEVMPXkKQ09ORklHX1NORF9IREFfSFdERVA9eQpDT05GSUdfSElEUkFXPXkKQ09ORklHX0hJRF9HWVJBVElPTj15CkNPTkZJR19MT0dJVEVDSF9GRj15CkNPTkZJR19ISURfTlRSSUc9eQpDT05GSUdfSElEX1BBTlRIRVJMT1JEPXkKQ09ORklHX1BBTlRIRVJMT1JEX0ZGPXkKQ09ORklHX0hJRF9QRVRBTFlOWD15CkNPTkZJR19ISURfU0FNU1VORz15CkNPTkZJR19ISURfU09OWT15CkNPTkZJR19ISURfU1VOUExVUz15CkNPTkZJR19ISURfSFlQRVJWX01PVVNFPW0KQ09ORklHX0hJRF9UT1BTRUVEPXkKQ09ORklHX0hJRF9QSUQ9eQpDT05GSUdfVVNCX0hJRERFVj15CkNPTkZJR19VU0I9eQpDT05GSUdfVVNCX0FOTk9VTkNFX05FV19ERVZJQ0VTPXkKQ09ORklHX1VTQl9NT049eQpDT05GSUdfVVNCX0VIQ0lfSENEPXkKQ09ORklHX1VTQl9PSENJX0hDRD15CkNPTkZJR19VU0JfVUhDSV9IQ0Q9eQpDT05GSUdfVVNCX1BSSU5URVI9eQpDT05GSUdfVVNCX1NUT1JBR0U9eQpDT05GSUdfRURBQz15CkNPTkZJR19SVENfQ0xBU1M9eQojIENPTkZJR19SVENfSENUT1NZUyBpcyBub3Qgc2V0CkNPTkZJR19ETUFERVZJQ0VTPXkKQ09ORklHX1ZJUlRfRFJJVkVSUz15CkNPTkZJR19WSVJUSU9fUENJPXkKQ09ORklHX0hZUEVSVj1tCkNPTkZJR19IWVBFUlZfVVRJTFM9bQpDT05GSUdfSFlQRVJWX0JBTExPT049bQpDT05GSUdfRUVFUENfTEFQVE9QPXkKQ09ORklHX0FNRF9JT01NVT15CkNPTkZJR19JTlRFTF9JT01NVT15CiMgQ09ORklHX0lOVEVMX0lPTU1VX0RFRkFVTFRfT04gaXMgbm90IHNldApDT05GSUdfRVhUNF9GUz15CkNPTkZJR19FWFQ0X0ZTX1BPU0lYX0FDTD15CkNPTkZJR19FWFQ0X0ZTX1NFQ1VSSVRZPXkKQ09ORklHX1hGU19GUz15CkNPTkZJR19YRlNfUVVPVEE9eQpDT05GSUdfWEZTX1BPU0lYX0FDTD15CkNPTkZJR19CVFJGU19GUz1tCkNPTkZJR19CVFJGU19GU19QT1NJWF9BQ0w9eQpDT05GSUdfUVVPVEE9eQpDT05GSUdfUVVPVEFfTkVUTElOS19JTlRFUkZBQ0U9eQojIENPTkZJR19QUklOVF9RVU9UQV9XQVJOSU5HIGlzIG5vdCBzZXQKQ09ORklHX1FGTVRfVjI9eQpDT05GSUdfQVVUT0ZTNF9GUz15CkNPTkZJR19GVVNFX0ZTPXkKQ09ORklHX09WRVJMQVlfRlM9bQpDT05GSUdfSVNPOTY2MF9GUz15CkNPTkZJR19KT0xJRVQ9eQpDT05GSUdfWklTT0ZTPXkKQ09ORklHX01TRE9TX0ZTPXkKQ09ORklHX1ZGQVRfRlM9eQpDT05GSUdfUFJPQ19LQ09SRT15CkNPTkZJR19UTVBGU19QT1NJWF9BQ0w9eQpDT05GSUdfSFVHRVRMQkZTPXkKQ09ORklHX05GU19GUz15CkNPTkZJR19ORlNfVjQ9eQpDT05GSUdfTkZTX1NXQVA9eQpDT05GSUdfTkZTX1Y0XzE9eQpDT05GSUdfTkZTX1Y0XzI9eQpDT05GSUdfTkZTRD15CkNPTkZJR19ORlNEX1Y0PXkKQ09ORklHX0NFUEhfRlM9bQpDT05GSUdfQ0VQSF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfQ0lGUz15CkNPTkZJR185UF9GUz1tCkNPTkZJR185UF9GU19QT1NJWF9BQ0w9eQpDT05GSUdfOVBfRlNfU0VDVVJJVFk9eQpDT05GSUdfTkxTX0RFRkFVTFQ9InV0ZjgiCkNPTkZJR19OTFNfQ09ERVBBR0VfNDM3PXkKQ09ORklHX05MU19BU0NJST15CkNPTkZJR19OTFNfSVNPODg1OV8xPXkKQ09ORklHX05MU19VVEY4PXkKQ09ORklHX1NFQ1VSSVRZPXkKQ09ORklHX1NFQ1VSSVRZX05FVFdPUks9eQpDT05GSUdfU0VDVVJJVFlfU0VMSU5VWD15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYX0JPT1RQQVJBTT15CkNPTkZJR19TRUNVUklUWV9TRUxJTlVYX0RJU0FCTEU9eQpDT05GSUdfQ1JZUFRPX1hUUz15CkNPTkZJR19DUllQVE9fQUVTX05JX0lOVEVMPXkKQ09ORklHX0NSWVBUT19VU0VSX0FQSV9IQVNIPXkKQ09ORklHX0NSWVBUT19VU0VSX0FQSV9TS0NJUEhFUj15CkNPTkZJR19QUklOVEtfVElNRT15CiMgQ09ORklHX1VOVVNFRF9TWU1CT0xTIGlzIG5vdCBzZXQKQ09ORklHX01BR0lDX1NZU1JRPXkKQ09ORklHX0RFQlVHX0tFUk5FTD15CkNPTkZJR19ERUJVR19TVEFDS19VU0FHRT15CkNPTkZJR19ERUJVR19TVEFDS09WRVJGTE9XPXkKIyBDT05GSUdfU0NIRURfREVCVUcgaXMgbm90IHNldApDT05GSUdfU0NIRURTVEFUUz15CkNPTkZJR19GVU5DVElPTl9UUkFDRVI9eQpDT05GSUdfRlRSQUNFX1NZU0NBTExTPXkKQ09ORklHX0JMS19ERVZfSU9fVFJBQ0U9eQpDT05GSUdfUFJPVklERV9PSENJMTM5NF9ETUFfSU5JVD15CkNPTkZJR19FQVJMWV9QUklOVEtfREJHUD15CkNPTkZJR19ERUJVR19CT09UX1BBUkFNUz15CkNPTkZJR19PUFRJTUlaRV9JTkxJTklORz15CkNPTkZJR19GUkFNRUJVRkZFUl9DT05TT0xFPXkK" - } - ] -} From b8c6c59af03f2d20d12e29d6edc3980cfc22f93d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 21 Sep 2022 10:18:23 +0200 Subject: [PATCH 148/259] fix(kernel_crawler): fixed photonOS driverkit output ID. OS_ID in /etc/os-release for photonOS is actually "photon". Signed-off-by: Federico Di Pierro --- kernel_crawler/__init__.py | 2 +- kernel_crawler/{photon_os.py => photon.py} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename kernel_crawler/{photon_os.py => photon.py} (92%) diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index f97a077..1855458 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -3,7 +3,7 @@ from .centos import CentosMirror from .fedora import FedoraMirror from .oracle import Oracle6Mirror, Oracle7Mirror, Oracle8Mirror -from .photon_os import PhotonOsMirror +from .photon import PhotonOsMirror from .debian import DebianMirror from .ubuntu import UbuntuMirror diff --git a/kernel_crawler/photon_os.py b/kernel_crawler/photon.py similarity index 92% rename from kernel_crawler/photon_os.py rename to kernel_crawler/photon.py index 9c233bc..65d5626 100644 --- a/kernel_crawler/photon_os.py +++ b/kernel_crawler/photon.py @@ -28,4 +28,4 @@ def list_repos(self): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("linux-devel") != -1: - return repo.DriverKitConfig(release, "photonOS", dep) + return repo.DriverKitConfig(release, "photon", dep) From 0694a7c087d81bf1b5946f32cf85dab31be61b38 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 21 Sep 2022 14:38:01 +0200 Subject: [PATCH 149/259] new: added support for a docker image that will also be auto-update on main branch pushes. Signed-off-by: Federico Di Pierro --- .circleci/config.yml | 40 ++++++++++++++++++++++++++++++++++ README.md | 10 +++++++++ docker/Dockerfile | 10 +++++++++ docker/root/usr/bin/entrypoint | 2 ++ 4 files changed, 62 insertions(+) create mode 100644 .circleci/config.yml create mode 100644 docker/Dockerfile create mode 100755 docker/root/usr/bin/entrypoint diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..21ce869 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,40 @@ +version: 2.1 +jobs: + "build-image": + docker: + - image: alpine:3.16 + steps: + checkout + - setup_remote_docker: + version: 20.10.12 + docker_layer_caching: true + - run: + name: Install deps + command: | + apk update + apk add make bash git docker docker-cli-buildx py3-pip + pip install awscli + - run: + name: Login to registry + command: | + echo ${DOCKERHUB_SECRET} | docker login -u ${DOCKERHUB_USER} --password-stdin + - run: + name: Build and publish kernel_crawler image + command: | + docker buildx build --push \ + -t falcosecurity/kernel_crawler:main \ + -f docker/Dockerfile . + +workflows: + version: 2.1 + build_and_test: + jobs: + - "build-image": + context: + - falco + - test-infra + filters: + tags: + ignore: /.*/ + branches: + only: main diff --git a/README.md b/README.md index b540dd5..d37112c 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,16 @@ Options: --image TEXT --help ``` + +## Docker image + +A docker image is provided for main branch, by a circleCI job. +You can also build it yourself, by issuing: +```commandline +docker build -t falcosecurity/kernel_crawler:main -f docker/Dockerfile . +``` +from project root. + ## Examples * Crawl amazonlinux2 kernels, with no-formatted output: diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..de126b6 --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.8-slim-buster + +WORKDIR /app + +COPY . . +RUN pip3 install -e . + +COPY ./docker/root / + +ENTRYPOINT [ "entrypoint" ] diff --git a/docker/root/usr/bin/entrypoint b/docker/root/usr/bin/entrypoint new file mode 100755 index 0000000..87c0885 --- /dev/null +++ b/docker/root/usr/bin/entrypoint @@ -0,0 +1,2 @@ +#!/bin/bash +python3 /app/__init__.py crawl "$@" From 9b89230b33339d2bc0f29146f4ec84a4f759c08d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 21 Sep 2022 15:43:01 +0200 Subject: [PATCH 150/259] chore: properly install an entrypoint script for the kernel_crawler.cli function. Signed-off-by: Federico Di Pierro --- README.md | 33 ++++++++--- docker/Dockerfile | 2 +- docker/root/usr/bin/entrypoint | 3 +- kernel_crawler/__init__.py | 82 -------------------------- kernel_crawler/crawler.py | 83 +++++++++++++++++++++++++++ __init__.py => kernel_crawler/main.py | 2 +- setup.py | 7 ++- 7 files changed, 118 insertions(+), 94 deletions(-) create mode 100644 kernel_crawler/crawler.py rename __init__.py => kernel_crawler/main.py (98%) diff --git a/README.md b/README.md index d37112c..1e67b7e 100644 --- a/README.md +++ b/README.md @@ -7,17 +7,30 @@ A weekly [prow job](https://github.com/falcosecurity/test-infra/blob/master/conf As soon as the PR is merged and the json updated, another [prow job](https://github.com/falcosecurity/test-infra/blob/master/config/jobs/update-dbg/update-dbg.yaml) will create a PR on [test-infra](https://github.com/falcosecurity/test-infra) to generate the new Driverkit configs from the updated json. Helper text and options: + +Main: ```commandline -python __init__.py crawl --help -Usage: __init__.py crawl [OPTIONS] +Usage: kernel-crawler [OPTIONS] COMMAND [ARGS]... + +Options: + --debug / --no-debug + --help Show this message and exit. + +Commands: + crawl +``` + +Crawl command: +```commandline +Usage: kernel-crawler crawl [OPTIONS] Options: --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|CentOS|Debian|Fedora|Flatcar|Minikube|Oracle6|Oracle7|Oracle8|PhotonOS|Redhat|Ubuntu|*] --version TEXT --arch [x86_64|aarch64] --out_fmt [plain|json|driverkit] - --image TEXT - --help + --image TEXT Option is required when distro is Redhat. + --help Show this message and exit. ``` ## Docker image @@ -29,26 +42,30 @@ docker build -t falcosecurity/kernel_crawler:main -f docker/Dockerfile . ``` from project root. +## Install + +To install the project, a simple `pip3 install .` from project root is enough. + ## Examples * Crawl amazonlinux2 kernels, with no-formatted output: ```commandline -python __init__.py crawl --distro=AmazonLinux2 +kernel-crawler crawl --distro=AmazonLinux2 ``` * Crawl ubuntu kernels, with [driverkit](https://github.com/falcosecurity/driverkit) config-like output: ```commandline -python __init__.py crawl --distro=Ubuntu --out_fmt=driverkit +kernel-crawler crawl --distro=Ubuntu --out_fmt=driverkit ``` * Crawl all supported distros kernels, with json output: ```commandline -python __init__.py crawl --distro=* --out_fmt=json +kernel-crawler crawl --distro=* --out_fmt=json ``` | :exclamation: **Note**: Passing ```--image``` argument is supported with ```--distro=*``` | |-------------------------------------------------------------------------------------------| * Crawl Redhat kernels (specific to the container supplied), with no-formatted output: ```commandline -python __init__.py crawl --distro=Redhat --image=redhat/ubi8:registered +kernel-crawler crawl --distro=Redhat --image=redhat/ubi8:registered ``` diff --git a/docker/Dockerfile b/docker/Dockerfile index de126b6..3e9195e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.8-slim-buster WORKDIR /app COPY . . -RUN pip3 install -e . +RUN pip3 install . COPY ./docker/root / diff --git a/docker/root/usr/bin/entrypoint b/docker/root/usr/bin/entrypoint index 87c0885..2e70def 100755 --- a/docker/root/usr/bin/entrypoint +++ b/docker/root/usr/bin/entrypoint @@ -1,2 +1,3 @@ #!/bin/bash -python3 /app/__init__.py crawl "$@" + +kernel-crawler "$@" diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 1855458..8b13789 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -1,83 +1 @@ -from .minikube import MinikubeMirror -from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror -from .centos import CentosMirror -from .fedora import FedoraMirror -from .oracle import Oracle6Mirror, Oracle7Mirror, Oracle8Mirror -from .photon import PhotonOsMirror -from .debian import DebianMirror -from .ubuntu import UbuntuMirror - -from .flatcar import FlatcarMirror - -from .redhat import RedhatContainer - -DISTROS = { - 'AmazonLinux': AmazonLinux1Mirror, - 'AmazonLinux2': AmazonLinux2Mirror, - 'AmazonLinux2022': AmazonLinux2022Mirror, - 'CentOS': CentosMirror, - 'Fedora': FedoraMirror, - 'Oracle6': Oracle6Mirror, - 'Oracle7': Oracle7Mirror, - 'Oracle8': Oracle8Mirror, - 'PhotonOS': PhotonOsMirror, - - 'Debian': DebianMirror, - 'Ubuntu': UbuntuMirror, - - 'Flatcar': FlatcarMirror, - - 'Minikube': MinikubeMirror, - - 'Redhat': RedhatContainer -} - -def to_driverkit_config(d, res): - dk_configs = [] - # Note, this is not good performance-wise because we are post-processing the list - # while we could do the same at generation time. - # But this is much simpler and involved touching less code. - # Moreover, we do not really care about performance here. - for ver, deps in res.items(): - dk_conf = d.to_driverkit_config(ver, deps) - if dk_conf is not None: - try: - # Ubuntu returns multiple for each - dk_configs.extend(dk_conf) - except TypeError: - # Others return just a single dk config - dk_configs.append(dk_conf) - - return dk_configs - -def crawl_kernels(distro, version, arch, images, to_driverkit): - ret = {} - - for distname, dist in DISTROS.items(): - if distname == distro or distro == "*": - # If the distro requires an image (Redhat only so far), we need to amalgamate - # the kernel versions from the supplied images before choosing the output. - if issubclass(dist, repo.ContainerDistro): - if images: - kv = {} - for image in images: - d = dist(image) - if len(kv) == 0: - kv = d.get_kernel_versions() - else: - kv.update(d.get_kernel_versions()) - # We should now have a list of all kernel versions for the supplied images - res = kv - else: - d = None - else: - d = dist(arch) - res = d.get_package_tree(version) - - if d and res: - if to_driverkit: - ret[distname] = to_driverkit_config(d, res) - else: - ret[distname] = res - return ret diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py new file mode 100644 index 0000000..1855458 --- /dev/null +++ b/kernel_crawler/crawler.py @@ -0,0 +1,83 @@ +from .minikube import MinikubeMirror +from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror +from .centos import CentosMirror +from .fedora import FedoraMirror +from .oracle import Oracle6Mirror, Oracle7Mirror, Oracle8Mirror +from .photon import PhotonOsMirror + +from .debian import DebianMirror +from .ubuntu import UbuntuMirror + +from .flatcar import FlatcarMirror + +from .redhat import RedhatContainer + +DISTROS = { + 'AmazonLinux': AmazonLinux1Mirror, + 'AmazonLinux2': AmazonLinux2Mirror, + 'AmazonLinux2022': AmazonLinux2022Mirror, + 'CentOS': CentosMirror, + 'Fedora': FedoraMirror, + 'Oracle6': Oracle6Mirror, + 'Oracle7': Oracle7Mirror, + 'Oracle8': Oracle8Mirror, + 'PhotonOS': PhotonOsMirror, + + 'Debian': DebianMirror, + 'Ubuntu': UbuntuMirror, + + 'Flatcar': FlatcarMirror, + + 'Minikube': MinikubeMirror, + + 'Redhat': RedhatContainer +} + +def to_driverkit_config(d, res): + dk_configs = [] + # Note, this is not good performance-wise because we are post-processing the list + # while we could do the same at generation time. + # But this is much simpler and involved touching less code. + # Moreover, we do not really care about performance here. + for ver, deps in res.items(): + dk_conf = d.to_driverkit_config(ver, deps) + if dk_conf is not None: + try: + # Ubuntu returns multiple for each + dk_configs.extend(dk_conf) + except TypeError: + # Others return just a single dk config + dk_configs.append(dk_conf) + + return dk_configs + +def crawl_kernels(distro, version, arch, images, to_driverkit): + ret = {} + + for distname, dist in DISTROS.items(): + if distname == distro or distro == "*": + # If the distro requires an image (Redhat only so far), we need to amalgamate + # the kernel versions from the supplied images before choosing the output. + if issubclass(dist, repo.ContainerDistro): + if images: + kv = {} + for image in images: + d = dist(image) + if len(kv) == 0: + kv = d.get_kernel_versions() + else: + kv.update(d.get_kernel_versions()) + # We should now have a list of all kernel versions for the supplied images + res = kv + else: + d = None + else: + d = dist(arch) + res = d.get_package_tree(version) + + if d and res: + if to_driverkit: + ret[distname] = to_driverkit_config(d, res) + else: + ret[distname] = res + return ret diff --git a/__init__.py b/kernel_crawler/main.py similarity index 98% rename from __init__.py rename to kernel_crawler/main.py index 0adfd53..828f890 100644 --- a/__init__.py +++ b/kernel_crawler/main.py @@ -3,7 +3,7 @@ import sys import click -from kernel_crawler import crawl_kernels, DISTROS +from .crawler import crawl_kernels, DISTROS logger = logging.getLogger(__name__) diff --git a/setup.py b/setup.py index f80e9ff..1b5f916 100644 --- a/setup.py +++ b/setup.py @@ -3,12 +3,17 @@ from setuptools import setup, find_packages -setup(name='kernel_crawler', +setup(name='kernel-crawler', version='1.0.0', description='Falcosecurity kernel crawler', author='Grzegorz Nosek', author_email='grzegorz.nosek@sysdig.com', url='https://falco.org/', + entry_points = { + 'console_scripts': [ + 'kernel-crawler = kernel_crawler.main:cli', + ], + }, packages=find_packages(), install_requires=[ 'click', From 4fbe7229c387327c7433c00a05e75bc4dc1709df Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 21 Sep 2022 15:55:51 +0200 Subject: [PATCH 151/259] chore: multi arch image builds, plus using releases. Signed-off-by: Federico Di Pierro --- .circleci/config.yml | 22 +++++++++++++++------- README.md | 2 +- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 21ce869..e44503d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,27 +14,35 @@ jobs: apk update apk add make bash git docker docker-cli-buildx py3-pip pip install awscli - - run: + - run: + name: Prepare env + command: | + docker run --rm --privileged multiarch/qemu-user-static --reset -p yes + docker context create falco-env + docker buildx create falco-env --driver docker-container --use + - run: name: Login to registry command: | echo ${DOCKERHUB_SECRET} | docker login -u ${DOCKERHUB_USER} --password-stdin - - run: + - run: name: Build and publish kernel_crawler image command: | docker buildx build --push \ - -t falcosecurity/kernel_crawler:main \ + --platform "arm64,amd64" \ + -t falcosecurity/kernel-crawler:${CIRCLE_TAG} \ + -t falcosecurity/kernel-crawler:latest \ -f docker/Dockerfile . workflows: version: 2.1 - build_and_test: + release: jobs: - - "build-image": + - "build-images": context: - falco - test-infra filters: tags: - ignore: /.*/ + only: /.*/ branches: - only: main + ignore: /.*/ diff --git a/README.md b/README.md index 1e67b7e..0ba53d6 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Options: ## Docker image -A docker image is provided for main branch, by a circleCI job. +A docker image is provided for releases, by a circleCI job: `falcosecurity/kernel-crawler:latest`. You can also build it yourself, by issuing: ```commandline docker build -t falcosecurity/kernel_crawler:main -f docker/Dockerfile . From fccaafa62758ce4c5c285a79cedf6b9807ab5ba1 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 21 Sep 2022 16:03:09 +0200 Subject: [PATCH 152/259] chore: fix install deps step. Signed-off-by: Federico Di Pierro --- .circleci/config.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e44503d..0b1ce56 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,30 +1,29 @@ version: 2.1 jobs: - "build-image": + "build-images": docker: - image: alpine:3.16 steps: - checkout - - setup_remote_docker: + - checkout + - setup_remote_docker: version: 20.10.12 docker_layer_caching: true - - run: + - run: name: Install deps command: | apk update - apk add make bash git docker docker-cli-buildx py3-pip - pip install awscli - - run: + apk add make bash git docker docker-cli-buildx + - run: name: Prepare env command: | docker run --rm --privileged multiarch/qemu-user-static --reset -p yes docker context create falco-env docker buildx create falco-env --driver docker-container --use - - run: + - run: name: Login to registry command: | echo ${DOCKERHUB_SECRET} | docker login -u ${DOCKERHUB_USER} --password-stdin - - run: + - run: name: Build and publish kernel_crawler image command: | docker buildx build --push \ @@ -40,7 +39,6 @@ workflows: - "build-images": context: - falco - - test-infra filters: tags: only: /.*/ From 58f07dcba3c70b81d91df7c60ba9fc447a326ae7 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 22 Sep 2022 10:47:40 +0200 Subject: [PATCH 153/259] fix(kernel_crawler): import repo. Signed-off-by: Federico Di Pierro --- kernel_crawler/crawler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index 1855458..3a7034d 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -1,3 +1,4 @@ +from . import repo from .minikube import MinikubeMirror from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror from .centos import CentosMirror From 12782e35797906a8af37bfd038f382e28dc67428 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 22 Sep 2022 10:56:21 +0200 Subject: [PATCH 154/259] update(readme): updated readme docker info + added a couple of badges. Signed-off-by: Federico Di Pierro --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ba53d6..d4ca75e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Falcosecurity kernel-crawler +[![Latest](https://img.shields.io/github/v/release/falcosecurity/kernel-crawler?style=for-the-badge)](https://github.com/falcosecurity/kernel-crawler/releases/latest) +![Architectures](https://img.shields.io/badge/ARCHS-x86__64%7Caarch64-blueviolet?style=for-the-badge) + It is a tool used to crawl supported kernels by multiple distros, and generate a [driverkit](https://github.com/falcosecurity/driverkit)-like config json. Output json can be found, for each supported architecture, under [kernels](https://github.com/falcosecurity/kernel-crawler/tree/kernels) branch and on gh pages: https://falcosecurity.github.io/kernel-crawler/. @@ -38,7 +41,7 @@ Options: A docker image is provided for releases, by a circleCI job: `falcosecurity/kernel-crawler:latest`. You can also build it yourself, by issuing: ```commandline -docker build -t falcosecurity/kernel_crawler:main -f docker/Dockerfile . +docker build -t falcosecurity/kernel_crawler -f docker/Dockerfile . ``` from project root. From 3b8e5a8a18703efac8830914f7fd4412e86d2b1e Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 23 Sep 2022 12:12:57 +0200 Subject: [PATCH 155/259] fix(kernel_crawler): make flatcar distro support similar to minikube. Instead of storing an useless URL (that downloaded 900M worth of data in driverkit, and then driverkit was not able to use it), directly store kernelconfigdata, just like we do for minikube. Signed-off-by: Federico Di Pierro --- kernel_crawler/flatcar.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/kernel_crawler/flatcar.py b/kernel_crawler/flatcar.py index 040600f..0925262 100644 --- a/kernel_crawler/flatcar.py +++ b/kernel_crawler/flatcar.py @@ -1,4 +1,5 @@ import os +import base64 import requests from lxml import html @@ -15,8 +16,9 @@ def get_package_tree(self, version=''): release = os.path.basename(self.base_url.rstrip('/')) if version not in release: return {} - dev_container = os.path.join(self.base_url, 'flatcar_developer_container.bin.bz2') - return {release: [dev_container]} + defconfig = os.path.join(self.base_url, 'flatcar_production_image_kernel_config.txt') + defconfig_base64 = base64.b64encode(requests.get(defconfig).content).decode() + return {release: [defconfig_base64]} def __str__(self): return self.base_url @@ -50,4 +52,4 @@ def list_repos(self): return repos def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "flatcar", list(deps)) + return repo.DriverKitConfig(release, "flatcar", None, 1, list(deps)[0]) From 19d44cef4bb157693c7cf6c496947c538839194b Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Wed, 12 Oct 2022 12:25:49 -0500 Subject: [PATCH 156/259] adding 5.15 to AmazonLinux2 kernel urls Signed-off-by: Logan Bond --- kernel_crawler/amazonlinux.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index 7b7ac38..de7b744 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -51,6 +51,7 @@ class AmazonLinux2Mirror(repo.Distro): 'core/latest', 'extras/kernel-5.4/latest', 'extras/kernel-5.10/latest', + 'extras/kernel-5.15/latest', ] def __init__(self, arch): @@ -94,4 +95,4 @@ def list_repos(self): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "amazonlinux2022", dep) \ No newline at end of file + return repo.DriverKitConfig(release, "amazonlinux2022", dep) From 862ee758a3d05ca58d3cb8fd0386aefb8d823b54 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Wed, 12 Oct 2022 12:28:25 -0500 Subject: [PATCH 157/259] fix whitespace Signed-off-by: Logan Bond --- kernel_crawler/amazonlinux.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index de7b744..f59de1d 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -70,6 +70,7 @@ def to_driverkit_config(self, release, deps): if dep.find("devel") != -1: return repo.DriverKitConfig(release, "amazonlinux2", dep) + class AmazonLinux2022Mirror(repo.Distro): # This was obtained by running # docker run -it --rm amazonlinux:2022 python3 -c 'import dnf, json; db = dnf.dnf.Base(); print(json.dumps(db.conf.substitutions, indent=2))' From e2bbe6455ef26941e3f53f9f6481e7a610746484 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Wed, 12 Oct 2022 12:28:57 -0500 Subject: [PATCH 158/259] fix whitespace Signed-off-by: Logan Bond --- kernel_crawler/amazonlinux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index f59de1d..337bef8 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -70,7 +70,6 @@ def to_driverkit_config(self, release, deps): if dep.find("devel") != -1: return repo.DriverKitConfig(release, "amazonlinux2", dep) - class AmazonLinux2022Mirror(repo.Distro): # This was obtained by running # docker run -it --rm amazonlinux:2022 python3 -c 'import dnf, json; db = dnf.dnf.Base(); print(json.dumps(db.conf.substitutions, indent=2))' @@ -97,3 +96,4 @@ def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: return repo.DriverKitConfig(release, "amazonlinux2022", dep) + From 3ae4f379c322cddbc6b6e64febff247fc3256a82 Mon Sep 17 00:00:00 2001 From: Dark-Vex Date: Sat, 22 Oct 2022 16:26:18 +0200 Subject: [PATCH 159/259] Introduce support to AlmaLinux and RockyLinux Signed-off-by: Daniele De Lorenzi --- kernel_crawler/almalinux.py | 25 +++++++++++++++++++++++++ kernel_crawler/crawler.py | 4 ++++ kernel_crawler/rockylinux.py | 28 ++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 kernel_crawler/almalinux.py create mode 100644 kernel_crawler/rockylinux.py diff --git a/kernel_crawler/almalinux.py b/kernel_crawler/almalinux.py new file mode 100644 index 0000000..7ac2f1e --- /dev/null +++ b/kernel_crawler/almalinux.py @@ -0,0 +1,25 @@ +from . import repo +from . import rpm + +def v8_only(ver): + return ver.startswith('8') + +def v9_only(ver): + return ver.startswith('9') + +class AlmaLinuxMirror(repo.Distro): + def __init__(self, arch): + mirrors = [ + # AlmaLinux 8 + rpm.RpmMirror('http://repo.almalinux.org/almalinux/', 'BaseOS/' + arch + '/os/', v8_only), + rpm.RpmMirror('http://repo.almalinux.org/almalinux/', 'AppStream/' + arch + '/os/', v8_only), + # AlmaLinux 9 + rpm.RpmMirror('http://repo.almalinux.org/almalinux/', 'BaseOS/' + arch + '/os/', v9_only), + rpm.RpmMirror('http://repo.almalinux.org/almalinux/', 'AppStream/' + arch + '/os/', v9_only), + ] + super(AlmaLinuxMirror, self).__init__(mirrors, arch) + + def to_driverkit_config(self, release, deps): + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "almalinux", dep) \ No newline at end of file diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index 3a7034d..1b9c78c 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -1,10 +1,12 @@ from . import repo from .minikube import MinikubeMirror +from .almalinux import AlmaLinuxMirror from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror from .centos import CentosMirror from .fedora import FedoraMirror from .oracle import Oracle6Mirror, Oracle7Mirror, Oracle8Mirror from .photon import PhotonOsMirror +from .rockylinux import RockyLinuxMirror from .debian import DebianMirror from .ubuntu import UbuntuMirror @@ -14,6 +16,7 @@ from .redhat import RedhatContainer DISTROS = { + 'AlmaLinux': AlmaLinuxMirror, 'AmazonLinux': AmazonLinux1Mirror, 'AmazonLinux2': AmazonLinux2Mirror, 'AmazonLinux2022': AmazonLinux2022Mirror, @@ -23,6 +26,7 @@ 'Oracle7': Oracle7Mirror, 'Oracle8': Oracle8Mirror, 'PhotonOS': PhotonOsMirror, + 'RockyLinux': RockyLinuxMirror, 'Debian': DebianMirror, 'Ubuntu': UbuntuMirror, diff --git a/kernel_crawler/rockylinux.py b/kernel_crawler/rockylinux.py new file mode 100644 index 0000000..38b46fa --- /dev/null +++ b/kernel_crawler/rockylinux.py @@ -0,0 +1,28 @@ +from . import repo +from . import rpm + +def v8_only(ver): + return ver.startswith('8') + +def v9_only(ver): + return ver.startswith('9') + +class RockyLinuxMirror(repo.Distro): + def __init__(self, arch): + mirrors = [ + # Rocky Linux 8 + rpm.RpmMirror('http://dl.rockylinux.org/pub/rocky/', 'BaseOS/' + arch + '/os/', v8_only), + rpm.RpmMirror('http://dl.rockylinux.org/pub/rocky/', 'AppStream/' + arch + '/os/', v8_only), + rpm.RpmMirror('http://dl.rockylinux.org/vault/rocky/', 'BaseOS/' + arch + '/os/', v8_only), + # Rocky Linux 9 + rpm.RpmMirror('http://dl.rockylinux.org/pub/rocky/', 'BaseOS/' + arch + '/os/', v9_only), + rpm.RpmMirror('http://dl.rockylinux.org/pub/rocky/', 'AppStream/' + arch + '/os/', v9_only), + # Valut repo not yet available for Rocky Linux 9 + #rpm.RpmMirror('http://dl.rockylinux.org/vault/rocky/', v9_only, 'BaseOS/' + arch + '/os/'), + ] + super(RockyLinuxMirror, self).__init__(mirrors, arch) + + def to_driverkit_config(self, release, deps): + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "rockylinux", dep) \ No newline at end of file From c93ad74f67c0eaa8bad1bc48d59d5998af35f30c Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 24 Oct 2022 09:24:04 +0200 Subject: [PATCH 160/259] chore: added release.md file. Signed-off-by: Federico Di Pierro --- release.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 release.md diff --git a/release.md b/release.md new file mode 100644 index 0000000..8c494a2 --- /dev/null +++ b/release.md @@ -0,0 +1,22 @@ +# Release Process + +Our release process is based upon [circleci](.circleci/config.yml). + +When we release we do the following process: + +1. We decide together (usually in the #falco channel in [slack](https://kubernetes.slack.com/messages/falco)) what's the next version to tag +2. A person with repository rights does the tag +3. The same person runs commands in their machine following the "Release commands" section below +4. Once the CI has done its job, the tag is live on Github, and the container image is live on [DockerHub](https://hub.docker.com/r/falcosecurity/kernel-crawler) with proper tags + +## Release commands + +Tag the version, keep the `v` and replace `x.y.z` with the version number. e.g: `0.2.0` + +```bash +git pull +git checkout master +git tag vx.y.z +git push origin vx.y.z +``` +> N.B.: do NOT use an annotated tag From d8d4fff38c888b52e1d8014dcb8dc22aa39a4909 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Tue, 25 Oct 2022 11:39:56 -0500 Subject: [PATCH 161/259] adjust rockylinux driverkit target to rocky Signed-off-by: Logan Bond --- kernel_crawler/rockylinux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel_crawler/rockylinux.py b/kernel_crawler/rockylinux.py index 38b46fa..64b3e24 100644 --- a/kernel_crawler/rockylinux.py +++ b/kernel_crawler/rockylinux.py @@ -25,4 +25,4 @@ def __init__(self, arch): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "rockylinux", dep) \ No newline at end of file + return repo.DriverKitConfig(release, "rocky", dep) From ff3aa70d5160e8b3a412f7a8c7b940f20266e229 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Thu, 27 Oct 2022 10:52:59 -0500 Subject: [PATCH 162/259] adding initial support for opensuse Signed-off-by: Logan Bond --- kernel_crawler/crawler.py | 4 +++ kernel_crawler/opensuse.py | 29 +++++++++++++++++ kernel_crawler/rpm.py | 64 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 97 insertions(+) create mode 100644 kernel_crawler/opensuse.py diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index 1b9c78c..a85c055 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -8,6 +8,8 @@ from .photon import PhotonOsMirror from .rockylinux import RockyLinuxMirror +from .opensuse import OpenSUSEMirror + from .debian import DebianMirror from .ubuntu import UbuntuMirror @@ -28,6 +30,8 @@ 'PhotonOS': PhotonOsMirror, 'RockyLinux': RockyLinuxMirror, + 'OpenSUSE': OpenSUSEMirror, + 'Debian': DebianMirror, 'Ubuntu': UbuntuMirror, diff --git a/kernel_crawler/opensuse.py b/kernel_crawler/opensuse.py new file mode 100644 index 0000000..6b9523b --- /dev/null +++ b/kernel_crawler/opensuse.py @@ -0,0 +1,29 @@ +from . import repo +from . import rpm + +from lxml import etree, html +from bs4 import BeautifulSoup +from kernel_crawler.utils.download import get_url + +import requests +import sys + + +class OpenSUSEMirror(repo.Distro): + + def __init__(self, arch): + mirrors = [ + # leap + rpm.SUSERpmMirror('https://mirrors.edge.kernel.org/opensuse/distribution/leap/', 'repo/oss/', arch), + rpm.SUSERpmMirror('https://mirrors.edge.kernel.org/opensuse/distribution/leap/', 'repo/oss/suse/', arch), + # the rest + rpm.SUSERpmMirror('https://mirrors.edge.kernel.org/opensuse/distribution/', 'repo/oss/', arch), + rpm.SUSERpmMirror('https://mirrors.edge.kernel.org/opensuse/distribution/', 'repo/oss/suse/', arch), + ] + + super(OpenSUSEMirror, self).__init__(mirrors, arch) + + def to_driverkit_config(self, release, deps): + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "opensuse", dep) diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index 7b027f0..ec6959c 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -1,5 +1,6 @@ #!/usr/bin/env python from __future__ import print_function +from asyncio import base_tasks import traceback import requests @@ -126,3 +127,66 @@ def list_repos(self): and self.repo_filter(dist) and self.dist_exists(dist) ] + + +class SUSERpmMirror(RpmMirror): + + def __init__(self, base_url, variant, arch, repo_filter=None): + self.base_url = base_url + self.variant = variant + self.arch = arch + if repo_filter is None: + repo_filter = lambda _: True + self.repo_filter = repo_filter + self.url = base_url + + def list_repos(self): + dists = requests.get(self.base_url) + dists.raise_for_status() + dists = dists.content + doc = html.fromstring(dists, self.base_url) + dists = doc.xpath('/html/body//a[not(@href="../")]/@href') + ret = [SUSERpmRepository(self.dist_url(dist), self.arch) for dist in dists + if dist.endswith('/') + and not dist.startswith('/') + and not dist.startswith('?') + and not dist.startswith('http') + and self.repo_filter(dist) + and self.dist_exists(dist) + ] + + return ret + +class SUSERpmRepository(RpmRepository): + + def __init__(self, base_url, arch): + self.base_url = base_url + self.arch = arch + + def get_repodb_url(self): + repomd = get_url(self.base_url + 'repodata/repomd.xml') + pkglist_url = self.get_loc_by_xpath(repomd, '//repo:repomd/repo:data[@type="primary"]/repo:location/@href') + return self.base_url + pkglist_url + + def parse_kernel_release(self, kernel_devel_pkg): + trimmed = kernel_devel_pkg.replace(f'{self.arch}/kernel-debug-devel-', '') + version = trimmed.replace('.rpm', '') + + return version + + def get_package_tree(self, filter=''): + + packages = {} + try: + repodb_url = self.get_repodb_url() + repodb = get_url(repodb_url) + except requests.exceptions.RequestException: + # traceback.print_exc() + return {} + + expression = f'//common:location/@href[starts-with(., "{self.arch}/kernel-debug-devel")]' + kernel_devel_pkg_url = self.get_loc_by_xpath(repodb, expression) + + packages.setdefault(self.parse_kernel_release(kernel_devel_pkg_url), set()).add(self.base_url + kernel_devel_pkg_url) + + return packages From b28e9c2adf8b12b1ef8a942b9e8bc491b424429b Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Thu, 27 Oct 2022 10:58:47 -0500 Subject: [PATCH 163/259] remove unecessary import Signed-off-by: Logan Bond --- kernel_crawler/rpm.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index ec6959c..3097f97 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -1,6 +1,5 @@ #!/usr/bin/env python from __future__ import print_function -from asyncio import base_tasks import traceback import requests From 577e43508c8b23020ac2057718d44545de7a2637 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Thu, 27 Oct 2022 12:40:26 -0500 Subject: [PATCH 164/259] added more suse mirrors and filters required Signed-off-by: Logan Bond --- kernel_crawler/opensuse.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/kernel_crawler/opensuse.py b/kernel_crawler/opensuse.py index 6b9523b..60b6bf5 100644 --- a/kernel_crawler/opensuse.py +++ b/kernel_crawler/opensuse.py @@ -8,6 +8,18 @@ import requests import sys +def opensuse_filter(dist): + return not dist.startswith('linux-next') \ + and ( + dist.startswith('openSUSE') or + dist.startswith('./openSUSE') or + dist.startswith('HEAD') or + dist.startswith('stable') + ) + +def tumbleweed_filter(dist): + return dist.startswith('tumbleweed') + class OpenSUSEMirror(repo.Distro): @@ -19,8 +31,21 @@ def __init__(self, arch): # the rest rpm.SUSERpmMirror('https://mirrors.edge.kernel.org/opensuse/distribution/', 'repo/oss/', arch), rpm.SUSERpmMirror('https://mirrors.edge.kernel.org/opensuse/distribution/', 'repo/oss/suse/', arch), + # opensuse site: tumbleweed + rpm.SUSERpmMirror('http://download.opensuse.org/', 'repo/oss/', arch, tumbleweed_filter), + # opensuse site: leaps + rpm.SUSERpmMirror('http://download.opensuse.org/distribution/leap/', 'repo/oss/', arch), ] + # other arch's are stored differently on SUSE's site + # in general, the /repositories/Kernel:/ are stored differently and require a filter + if arch == 'x86_64': + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'Submit/standard/', arch, opensuse_filter)) + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'standard/', arch, opensuse_filter)) + else: + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'Submit/ports/', arch, opensuse_filter)) + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'ports/', arch, opensuse_filter)) + super(OpenSUSEMirror, self).__init__(mirrors, arch) def to_driverkit_config(self, release, deps): From a7b2dd59d37d19a96cf0e3ff9b5b297539ea0efe Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Fri, 28 Oct 2022 11:53:27 -0500 Subject: [PATCH 165/259] updating opensuse to now produce a noarch rpm url in combination with kernel-default-devel Signed-off-by: Logan Bond --- kernel_crawler/opensuse.py | 30 ++++++++++++++----- kernel_crawler/rpm.py | 60 ++++++++++++++++++++++++++++++++++---- 2 files changed, 77 insertions(+), 13 deletions(-) diff --git a/kernel_crawler/opensuse.py b/kernel_crawler/opensuse.py index 60b6bf5..09f3f3d 100644 --- a/kernel_crawler/opensuse.py +++ b/kernel_crawler/opensuse.py @@ -9,13 +9,10 @@ import sys def opensuse_filter(dist): - return not dist.startswith('linux-next') \ - and ( - dist.startswith('openSUSE') or - dist.startswith('./openSUSE') or - dist.startswith('HEAD') or + return dist.startswith('openSUSE') or \ + dist.startswith('./openSUSE') or \ + dist.startswith('HEAD') or \ dist.startswith('stable') - ) def tumbleweed_filter(dist): return dist.startswith('tumbleweed') @@ -23,6 +20,7 @@ def tumbleweed_filter(dist): class OpenSUSEMirror(repo.Distro): + def __init__(self, arch): mirrors = [ # leap @@ -48,7 +46,23 @@ def __init__(self, arch): super(OpenSUSEMirror, self).__init__(mirrors, arch) + def to_driverkit_config(self, release, deps): + + # matches driverkit target cli option + target = 'opensuse' + + # dict for storing list of + dk_configs = {} + + # loop over deps for a given release and append for dep in deps: - if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "opensuse", dep) + val = dk_configs.get(target) + if not val: + headers = [dep] + dk_configs[target] = repo.DriverKitConfig(release, target, headers) + else: + val.headers.append(dep) + dk_configs[target] = val + + return dk_configs.values() diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index 3097f97..46a2158 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -131,6 +131,11 @@ def list_repos(self): class SUSERpmMirror(RpmMirror): def __init__(self, base_url, variant, arch, repo_filter=None): + ''' + SUSERpmMirror looks like a regular RpmMirror, except that it requires + the arch in the constructor. The arch is used for passing through to SUSERpmRepository, + which uses the arch to query for the correct kernel-default-devel out of the package listing. + ''' self.base_url = base_url self.variant = variant self.arch = arch @@ -140,6 +145,9 @@ def __init__(self, base_url, variant, arch, repo_filter=None): self.url = base_url def list_repos(self): + ''' + Overridden from RpmMirror exchanging RpmRepository for SUSERpmRepository. + ''' dists = requests.get(self.base_url) dists.raise_for_status() dists = dists.content @@ -158,34 +166,76 @@ def list_repos(self): class SUSERpmRepository(RpmRepository): + # the kernel headers package name pattern to search for in the package listing XML + _kernel_devel_pattern = 'kernel-default-devel-' + def __init__(self, base_url, arch): + ''' + Constructor, which sets the base URL and the arch. + The arch is used for finding the correct package in the repomd. + ''' self.base_url = base_url self.arch = arch def get_repodb_url(self): + ''' + SUSE stores their primary package listing under a different path in the XML from a normal RPM repomd. + ''' repomd = get_url(self.base_url + 'repodata/repomd.xml') pkglist_url = self.get_loc_by_xpath(repomd, '//repo:repomd/repo:data[@type="primary"]/repo:location/@href') return self.base_url + pkglist_url def parse_kernel_release(self, kernel_devel_pkg): - trimmed = kernel_devel_pkg.replace(f'{self.arch}/kernel-debug-devel-', '') + ''' + Given the kernel devel package string, parse it for the kernel release + by trimming off the front bits of the string and the extension. + + Example: + x86_64/kernel-default-devel-5.14.21-150400.22.1.x86_64.rpm -> 5.14.21-150400.22.1.x86_64 + ''' + trimmed = kernel_devel_pkg.replace(f'{self.arch}/{self._kernel_devel_pattern}', '') version = trimmed.replace('.rpm', '') return version + def build_kernel_devel_noarch_url(self, kernel_release): + ''' + A simple method for building the noarch kernel-devel package using the kernel release. + The kernel release will contain the package arch, but kernel-devel will be a noarch package. + ''' + return f'{self.base_url}noarch/kernel-devel-{kernel_release}.rpm'.replace(self.arch, 'noarch') + def get_package_tree(self, filter=''): + ''' + Build the package tree for SUSE, which finds the repomd, parses it for the primary package listing, + and queries for the kernel-default-devel package url. SUSE stores the primary package listing in XML. + Once parsed, use the package URL to parse the kernel release and determine the kernel-devel*noarch package URL. + ''' packages = {} + + # attempt to query for the repomd - bail out if 404 try: repodb_url = self.get_repodb_url() repodb = get_url(repodb_url) except requests.exceptions.RequestException: - # traceback.print_exc() + # traceback.print_exc() # extremely verbose, uncomment if debugging return {} - expression = f'//common:location/@href[starts-with(., "{self.arch}/kernel-debug-devel")]' - kernel_devel_pkg_url = self.get_loc_by_xpath(repodb, expression) + # SUSE stores their package information in raw XML + # parse it for the kernel-default-devel package + expression = f'//common:location/@href[starts-with(., "{self.arch}/{self._kernel_devel_pattern}")]' + kernel_default_devel_pkg_url = self.get_loc_by_xpath(repodb, expression) + + # parse out the kernel release from the url, faster than re-parsing the xml + parsed_kernel_release = self.parse_kernel_release(kernel_default_devel_pkg_url) + + # add the kernel-devel-default package + packages.setdefault(parsed_kernel_release, set()).add(self.base_url + kernel_default_devel_pkg_url) - packages.setdefault(self.parse_kernel_release(kernel_devel_pkg_url), set()).add(self.base_url + kernel_devel_pkg_url) + # also add the noarch kernel-devel pacakge + # SUSE combines the kernel-default-devel package and kernel-devel*.noarch pacakge for compilation + noarch_kernel_devel = self.build_kernel_devel_noarch_url(parsed_kernel_release) + packages.setdefault(parsed_kernel_release, set()).add(noarch_kernel_devel) return packages From 274959c0f1d2445a8c9bc61d356b02695e9ef9e6 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Fri, 28 Oct 2022 13:58:25 -0500 Subject: [PATCH 166/259] remove unecessary imports from opensuse Signed-off-by: Logan Bond --- kernel_crawler/opensuse.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/kernel_crawler/opensuse.py b/kernel_crawler/opensuse.py index 09f3f3d..31ba442 100644 --- a/kernel_crawler/opensuse.py +++ b/kernel_crawler/opensuse.py @@ -1,13 +1,6 @@ from . import repo from . import rpm -from lxml import etree, html -from bs4 import BeautifulSoup -from kernel_crawler.utils.download import get_url - -import requests -import sys - def opensuse_filter(dist): return dist.startswith('openSUSE') or \ dist.startswith('./openSUSE') or \ From 7b6c5a6dc12069aec2e7dede66c560971ac931f7 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Mon, 31 Oct 2022 09:46:03 -0500 Subject: [PATCH 167/259] add initial archlinux support Signed-off-by: Logan Bond --- kernel_crawler/archlinux.py | 64 +++++++++++++++++++++++++++++++++++++ kernel_crawler/crawler.py | 6 +++- 2 files changed, 69 insertions(+), 1 deletion(-) create mode 100644 kernel_crawler/archlinux.py diff --git a/kernel_crawler/archlinux.py b/kernel_crawler/archlinux.py new file mode 100644 index 0000000..08a419c --- /dev/null +++ b/kernel_crawler/archlinux.py @@ -0,0 +1,64 @@ +from bs4 import BeautifulSoup +import re + +from kernel_crawler.utils.download import get_url +from . import repo + +class ArchLinuxRepository(repo.Repository): + + _linux_headers_pattern = 'linux.*headers-' + _package_suffix_pattern = '.pkg.tar.*' + + def __init__(self, base_url): + self.base_url = base_url + + def __str__(self): + return self.base_url + + def parse_kernel_release(self, kernel_package): + + trimmed = re.sub(self._linux_headers_pattern, '', kernel_package) + version = re.sub(self._package_suffix_pattern, '', trimmed) + + return version + + def get_package_tree(self, filter=''): + packages = {} + + soup = BeautifulSoup(get_url(self.base_url), features='lxml') + for a in soup.find_all('a', href=True): + package = a['href'] + # skip .sig and .. links + if not package.endswith('.sig') and package != '../': + parsed_kernel_release = self.parse_kernel_release(package) + + packages.setdefault(parsed_kernel_release, set()).add(self.base_url + package) + + return packages + + +class ArchLinuxMirror(repo.Distro): + + _base_urls = [ + 'https://archive.archlinux.org/packages/l/linux-headers/', # stable + 'https://archive.archlinux.org/packages/l/linux-hardened-headers/', # hardened + 'https://archive.archlinux.org/packages/l/linux-lts-headers/', # lts + 'https://archive.archlinux.org/packages/l/linux-zen-headers/', # zen + ] + + def __init__(self, arch): + super(ArchLinuxMirror, self).__init__(self._base_urls, arch) + + + def list_repos(self): + mirrors = [] + + for mirror in self._base_urls: + mirrors.append(ArchLinuxRepository(mirror)) + + return mirrors + + + def to_driverkit_config(self, release, deps): + for dep in deps: + return repo.DriverKitConfig(release, "arch", dep) diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index a85c055..04b2b82 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -17,6 +17,8 @@ from .redhat import RedhatContainer +from .archlinux import ArchLinuxMirror + DISTROS = { 'AlmaLinux': AlmaLinuxMirror, 'AmazonLinux': AmazonLinux1Mirror, @@ -39,7 +41,9 @@ 'Minikube': MinikubeMirror, - 'Redhat': RedhatContainer + 'Redhat': RedhatContainer, + + 'ArchLinux': ArchLinuxMirror, } def to_driverkit_config(d, res): From cc2e269053e23993f55f56b8d4054e962ef73947 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Mon, 31 Oct 2022 10:35:49 -0500 Subject: [PATCH 168/259] add some other arch mirrors and trim the arch off the kernel release Signed-off-by: Logan Bond --- kernel_crawler/archlinux.py | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/kernel_crawler/archlinux.py b/kernel_crawler/archlinux.py index 08a419c..f15d2af 100644 --- a/kernel_crawler/archlinux.py +++ b/kernel_crawler/archlinux.py @@ -9,16 +9,22 @@ class ArchLinuxRepository(repo.Repository): _linux_headers_pattern = 'linux.*headers-' _package_suffix_pattern = '.pkg.tar.*' - def __init__(self, base_url): + def __init__(self, base_url, arch): self.base_url = base_url + self.arch = arch def __str__(self): return self.base_url def parse_kernel_release(self, kernel_package): + # trim off 'linux*headers' trimmed = re.sub(self._linux_headers_pattern, '', kernel_package) - version = re.sub(self._package_suffix_pattern, '', trimmed) + # trim off the '.pkg.tar.*' + version_with_arch = re.sub(self._package_suffix_pattern, '', trimmed) + + # trim off the architecture + version = re.sub(f'-{self.arch}', '', version_with_arch) return version @@ -39,14 +45,22 @@ def get_package_tree(self, filter=''): class ArchLinuxMirror(repo.Distro): - _base_urls = [ - 'https://archive.archlinux.org/packages/l/linux-headers/', # stable - 'https://archive.archlinux.org/packages/l/linux-hardened-headers/', # hardened - 'https://archive.archlinux.org/packages/l/linux-lts-headers/', # lts - 'https://archive.archlinux.org/packages/l/linux-zen-headers/', # zen - ] + _base_urls = [] def __init__(self, arch): + + if arch == 'x86_64': + self._base_urls.append('https://archive.archlinux.org/packages/l/linux-headers/') # stable + self._base_urls.append('https://archive.archlinux.org/packages/l/linux-hardened-headers/') # hardened + self._base_urls.append('https://archive.archlinux.org/packages/l/linux-lts-headers/') # lts + self._base_urls.append('https://archive.archlinux.org/packages/l/linux-zen-headers/') # zen + else: + self._base_urls.append('http://tardis.tiny-vps.com/aarm/packages/l/linux-aarch64-headers/') # arm 64-bit + self._base_urls.append('http://tardis.tiny-vps.com/aarm/packages/l/linux-armv5-headers/') # arm v5 + self._base_urls.append('http://tardis.tiny-vps.com/aarm/packages/l/linux-armv7-headers/') # arm v7 + self._base_urls.append('http://tardis.tiny-vps.com/aarm/packages/l/linux-raspberrypi4-headers/') # rpi4 + self._base_urls.append('http://tardis.tiny-vps.com/aarm/packages/l/linux-raspberrypi-headers/') # other rpi + super(ArchLinuxMirror, self).__init__(self._base_urls, arch) @@ -54,7 +68,7 @@ def list_repos(self): mirrors = [] for mirror in self._base_urls: - mirrors.append(ArchLinuxRepository(mirror)) + mirrors.append(ArchLinuxRepository(mirror, self.arch)) return mirrors From 04f076770d85b1b89a6a583c1ef53e67a4645d9f Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Mon, 31 Oct 2022 10:38:41 -0500 Subject: [PATCH 169/259] add another check for if aarch64 arechitecture Signed-off-by: Logan Bond --- kernel_crawler/archlinux.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel_crawler/archlinux.py b/kernel_crawler/archlinux.py index f15d2af..fd55d77 100644 --- a/kernel_crawler/archlinux.py +++ b/kernel_crawler/archlinux.py @@ -54,8 +54,9 @@ def __init__(self, arch): self._base_urls.append('https://archive.archlinux.org/packages/l/linux-hardened-headers/') # hardened self._base_urls.append('https://archive.archlinux.org/packages/l/linux-lts-headers/') # lts self._base_urls.append('https://archive.archlinux.org/packages/l/linux-zen-headers/') # zen - else: + elif arch == 'aarch64': self._base_urls.append('http://tardis.tiny-vps.com/aarm/packages/l/linux-aarch64-headers/') # arm 64-bit + else: # can be implemented later self._base_urls.append('http://tardis.tiny-vps.com/aarm/packages/l/linux-armv5-headers/') # arm v5 self._base_urls.append('http://tardis.tiny-vps.com/aarm/packages/l/linux-armv7-headers/') # arm v7 self._base_urls.append('http://tardis.tiny-vps.com/aarm/packages/l/linux-raspberrypi4-headers/') # rpi4 From 4d0b8074c3c66772fdb993e4ef756d693fe8d0a9 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Wed, 2 Nov 2022 10:26:37 -0500 Subject: [PATCH 170/259] adding beautifulsoup4 to requirements Signed-off-by: Logan Bond --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 9332ffb..3b42f2e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,3 +4,4 @@ requests docker semantic-version pygit2 +beautifulsoup4 From b05a6a3b19b5d06a8bdcd28981fb1b207de002b6 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Wed, 2 Nov 2022 10:27:04 -0500 Subject: [PATCH 171/259] add beautifulsoup4 to setup.py Signed-off-by: Logan Bond --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1b5f916..c0599cd 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ 'lxml', 'docker', 'semantic-version', - 'pygit2' + 'pygit2', + 'beautifulsoup4' ], ) From 8aa885225763699af669b18190739134106dff67 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 7 Nov 2022 10:52:08 +0100 Subject: [PATCH 172/259] new(ci): add github test ci for main. Signed-off-by: Federico Di Pierro --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..dda47ad --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,27 @@ +name: CI Build +on: + pull_request: + branches: [main] + push: + branches: [main] + +jobs: + test: + name: test kernel-crawler + runs-on: ubuntu-latest + steps: + - name: Checkout repo ⤵️ + uses: actions/checkout@v3 + + - name: Install deps + run: | + sudo apt update + sudo apt install python3 python3-pip python3-pygit2 + + - name: Install crawler + run: | + pip3 install . + + - name: Run crawler + run: | + kernel-crawler crawl --distro "*" --out_fmt driverkit From f6bdf446e917a9f6df33563c0b19f8ed6a5a2a93 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 7 Nov 2022 13:10:37 +0100 Subject: [PATCH 173/259] chore(ci): redirect to file and store file as artifact. Signed-off-by: Federico Di Pierro --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dda47ad..7babaf1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,4 +24,8 @@ jobs: - name: Run crawler run: | - kernel-crawler crawl --distro "*" --out_fmt driverkit + kernel-crawler crawl --distro "*" --out_fmt driverkit > kernels.json + + - uses: actions/upload-artifact@v3 + with: + path: kernels.json From f7c73f769c112b9bee78f21fd7ae4d6a23f43030 Mon Sep 17 00:00:00 2001 From: Aldo Lacuku Date: Thu, 10 Nov 2022 16:58:40 +0100 Subject: [PATCH 174/259] fix(minikube): print only once the progress bar label when not in tty Signed-off-by: Aldo Lacuku --- kernel_crawler/minikube.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/kernel_crawler/minikube.py b/kernel_crawler/minikube.py index f0ad3f5..dcc9d2e 100644 --- a/kernel_crawler/minikube.py +++ b/kernel_crawler/minikube.py @@ -15,13 +15,17 @@ class ProgressCallback(pygit2.RemoteCallbacks): def __init__(self): self.progress_bar_initialized = False + self.bar = None super().__init__() def transfer_progress(self, stats): if not self.progress_bar_initialized: - bar = ProgressBar(label='Cloning minikube repository',length=stats.total_objects, file=sys.stderr) - bar.update(stats.indexed_objects) + self.bar = ProgressBar(label='Cloning minikube repository',length=stats.total_objects, file=sys.stderr) + self.bar.update(1) + self.progress_bar_initialized = True + if not self.bar.is_hidden: + self.bar.update(1, stats.indexed_objects) if stats.indexed_objects == stats.total_objects: - bar.render_finish() + self.bar.render_finish() class MinikubeMirror(Distro): # dictionary keys used to build the kernel configuration dict. @@ -97,6 +101,8 @@ def get_minikube_config_file_name(self, minikube_version): def get_package_tree(self, version=''): repo = self.list_repos() + print("the repo has been downloaded") + sys.stdout.flush() kernel_configs = {} minikube_versions = self.getVersions(repo) From b4cb5b5c90c20366848d26461b045197a2e344e2 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Tue, 8 Nov 2022 09:08:29 -0600 Subject: [PATCH 175/259] rewrite improve opensuse error handling Signed-off-by: Logan Bond set lint to run on only branches, not on tags Signed-off-by: Logan Bond adding hadolint to Actions workflow Signed-off-by: Logan Bond fix lint job syntax Signed-off-by: Logan Bond fix uses in lint actions Signed-off-by: Logan Bond add yamllint Signed-off-by: Logan Bond adjust some names of pipeline workflow Signed-off-by: Logan Bond cleanup circle ci - not used anymore Signed-off-by: Logan Bond tabs to spaces in Dockerfile Signed-off-by: Logan Bond add back circleci - it builds the containers Signed-off-by: Logan Bond add back whitespace Signed-off-by: Logan Bond set back test name Signed-off-by: Logan Bond add dockerfile build check to pipeline Signed-off-by: Logan Bond change job name to be more uniform Signed-off-by: Logan Bond revert name change, PR expects it Signed-off-by: Logan Bond revert pipeline changes for next PR Signed-off-by: Logan Bond revert pipeline changes for next PR Signed-off-by: Logan Bond replace xpath with iterparse in opensuse XML parsing for better memory management Signed-off-by: Logan Bond --- kernel_crawler/rpm.py | 52 +++++++++++++++++++++++++++++++------------ 1 file changed, 38 insertions(+), 14 deletions(-) diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index 46a2158..34abec7 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -7,6 +7,8 @@ import sqlite3 import tempfile +from io import BytesIO + from . import repo from kernel_crawler.utils.download import get_url @@ -31,6 +33,12 @@ def get_loc_by_xpath(cls, text, expr): 'repo': 'http://linux.duke.edu/metadata/repo', 'rpm': 'http://linux.duke.edu/metadata/rpm' }) + + # if unable to find the expression in the XML, return None + if not loc: + return None + + # else return the first item out of the tuple return loc[0] @classmethod @@ -183,6 +191,12 @@ def get_repodb_url(self): ''' repomd = get_url(self.base_url + 'repodata/repomd.xml') pkglist_url = self.get_loc_by_xpath(repomd, '//repo:repomd/repo:data[@type="primary"]/repo:location/@href') + + # if no pkglist was found, return None + if not pkglist_url: + return None + + # else add the pkglist_url to the base_url return self.base_url + pkglist_url def parse_kernel_release(self, kernel_devel_pkg): @@ -212,7 +226,6 @@ def get_package_tree(self, filter=''): Once parsed, use the package URL to parse the kernel release and determine the kernel-devel*noarch package URL. ''' - packages = {} # attempt to query for the repomd - bail out if 404 try: @@ -222,20 +235,31 @@ def get_package_tree(self, filter=''): # traceback.print_exc() # extremely verbose, uncomment if debugging return {} - # SUSE stores their package information in raw XML - # parse it for the kernel-default-devel package - expression = f'//common:location/@href[starts-with(., "{self.arch}/{self._kernel_devel_pattern}")]' - kernel_default_devel_pkg_url = self.get_loc_by_xpath(repodb, expression) - # parse out the kernel release from the url, faster than re-parsing the xml - parsed_kernel_release = self.parse_kernel_release(kernel_default_devel_pkg_url) + # using iterparse, loop over the XML to find the kernel devel package + # iterparse is used over xpath as iterparse does not load the giant file into memory all at once + package_match = f'{self.arch}/{self._kernel_devel_pattern}' + for _, element in etree.iterparse(BytesIO(repodb)): + if 'href' in element.attrib.keys() and package_match in element.attrib['href']: + kernel_default_devel_pkg_url = element.attrib['href'] + break # found the entry, no need to keep looping - # add the kernel-devel-default package - packages.setdefault(parsed_kernel_release, set()).add(self.base_url + kernel_default_devel_pkg_url) + # check to ensure a kernel_devel_pkg was found + if not kernel_default_devel_pkg_url: + return {} # return an empty packages dict - # also add the noarch kernel-devel pacakge - # SUSE combines the kernel-default-devel package and kernel-devel*.noarch pacakge for compilation - noarch_kernel_devel = self.build_kernel_devel_noarch_url(parsed_kernel_release) - packages.setdefault(parsed_kernel_release, set()).add(noarch_kernel_devel) + else: # was able to find some packages + packages = {} - return packages + # parse out the kernel release from the url, faster than re-parsing the xml + parsed_kernel_release = self.parse_kernel_release(kernel_default_devel_pkg_url) + + # add the kernel-devel-default package + packages.setdefault(parsed_kernel_release, set()).add(self.base_url + kernel_default_devel_pkg_url) + + # also add the noarch kernel-devel pacakge + # SUSE combines the kernel-default-devel package and kernel-devel*.noarch pacakge for compilation + noarch_kernel_devel = self.build_kernel_devel_noarch_url(parsed_kernel_release) + packages.setdefault(parsed_kernel_release, set()).add(noarch_kernel_devel) + + return packages From 164dba11efcee6052a29ead453199f73cbb6fd55 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Thu, 10 Nov 2022 13:36:49 -0600 Subject: [PATCH 176/259] use a tempfile and regex parsing for better memory management in opensuse Signed-off-by: Logan Bond fix typo Signed-off-by: Logan Bond remove unecessary declaration Signed-off-by: Logan Bond --- kernel_crawler/rpm.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index 34abec7..d0a45c8 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -6,8 +6,7 @@ from lxml import etree, html import sqlite3 import tempfile - -from io import BytesIO +import re from . import repo from kernel_crawler.utils.download import get_url @@ -235,14 +234,17 @@ def get_package_tree(self, filter=''): # traceback.print_exc() # extremely verbose, uncomment if debugging return {} - - # using iterparse, loop over the XML to find the kernel devel package - # iterparse is used over xpath as iterparse does not load the giant file into memory all at once package_match = f'{self.arch}/{self._kernel_devel_pattern}' - for _, element in etree.iterparse(BytesIO(repodb)): - if 'href' in element.attrib.keys() and package_match in element.attrib['href']: - kernel_default_devel_pkg_url = element.attrib['href'] - break # found the entry, no need to keep looping + + # write the repodb xml to a tempfile for parsing + with tempfile.NamedTemporaryFile() as tf: + tf.write(repodb) + tf.flush() + # regex searching through a file is more memory efficient + # than parsing the xml into an object structure with lxml etree + search = re.search(f'.*href="({package_match}.*rpm)', str(open(tf.name).read())) + kernel_default_devel_pkg_url = search.group(1) + tf.close() # delete the tempfile to free up memory # check to ensure a kernel_devel_pkg was found if not kernel_default_devel_pkg_url: From f1e82d72f14a1c070af38edfe2bc87400ef1b306 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 14 Nov 2022 11:59:21 +0100 Subject: [PATCH 177/259] fix(kernel_crawler): check that regex search matches anything before de-referencing a possibly None object. Signed-off-by: Federico Di Pierro --- kernel_crawler/rpm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index d0a45c8..c6f017e 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -243,7 +243,8 @@ def get_package_tree(self, filter=''): # regex searching through a file is more memory efficient # than parsing the xml into an object structure with lxml etree search = re.search(f'.*href="({package_match}.*rpm)', str(open(tf.name).read())) - kernel_default_devel_pkg_url = search.group(1) + if search: + kernel_default_devel_pkg_url = search.group(1) tf.close() # delete the tempfile to free up memory # check to ensure a kernel_devel_pkg was found From 52fe21235d305417b1256fa779307644ac8a40af Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 14 Nov 2022 11:59:46 +0100 Subject: [PATCH 178/259] update(docker): updated to python 3.10 image. Signed-off-by: Federico Di Pierro --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 3e9195e..fff22a4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-slim-buster +FROM python:3.10-slim WORKDIR /app From 9b6bbf79d1a4db8a46bd9fb1fcf82ab70ac967d0 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 14 Nov 2022 16:03:08 +0100 Subject: [PATCH 179/259] fix(kernel_crawler): fix referenced before assignment issue. Signed-off-by: Federico Di Pierro --- kernel_crawler/rpm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index c6f017e..2c499ad 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -235,6 +235,7 @@ def get_package_tree(self, filter=''): return {} package_match = f'{self.arch}/{self._kernel_devel_pattern}' + kernel_default_devel_pkg_url = None # write the repodb xml to a tempfile for parsing with tempfile.NamedTemporaryFile() as tf: From 1057faeb42503deeb84cf3a19cdf0ab8400c00c5 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 15 Nov 2022 11:15:08 +0100 Subject: [PATCH 180/259] fix(minikube): avoid printing to stdout. Signed-off-by: Federico Di Pierro --- kernel_crawler/minikube.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel_crawler/minikube.py b/kernel_crawler/minikube.py index dcc9d2e..74bc0eb 100644 --- a/kernel_crawler/minikube.py +++ b/kernel_crawler/minikube.py @@ -101,7 +101,6 @@ def get_minikube_config_file_name(self, minikube_version): def get_package_tree(self, version=''): repo = self.list_repos() - print("the repo has been downloaded") sys.stdout.flush() kernel_configs = {} minikube_versions = self.getVersions(repo) From d3e7489b0fdfd1196c5cfff602bf3d84a5a2325c Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 15 Nov 2022 11:17:15 +0100 Subject: [PATCH 181/259] chore(ci): added a jq validation step for outputted json. Signed-off-by: Federico Di Pierro --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7babaf1..1ea2f55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - name: Install deps run: | sudo apt update - sudo apt install python3 python3-pip python3-pygit2 + sudo apt install python3 python3-pip python3-pygit2 jq - name: Install crawler run: | @@ -25,6 +25,10 @@ jobs: - name: Run crawler run: | kernel-crawler crawl --distro "*" --out_fmt driverkit > kernels.json + + - name: Validate json + run: | + cat kernels.json | jq empty - uses: actions/upload-artifact@v3 with: From ccb8c8a4da8eac2cde2c244114a55ddecfed05b7 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 12 Dec 2022 12:19:29 +0100 Subject: [PATCH 182/259] fix(kernel_crawler): proper exceptions handling in flatcar GET request. Signed-off-by: Federico Di Pierro --- kernel_crawler/flatcar.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/kernel_crawler/flatcar.py b/kernel_crawler/flatcar.py index 0925262..e606e93 100644 --- a/kernel_crawler/flatcar.py +++ b/kernel_crawler/flatcar.py @@ -33,8 +33,11 @@ def __init__(self, arch): super(FlatcarMirror, self).__init__(mirrors, arch) def scan_repo(self, base_url): - dists = requests.get(base_url) - dists.raise_for_status() + try: + dists = requests.get(base_url) + dists.raise_for_status() + except requests.exceptions.RequestException: + return {} dists = dists.content doc = html.fromstring(dists, base_url) dists = doc.xpath('/html/body//a[not(@href="../")]/@href') From 8a7c7d8883299333c16c2cd0523fe5276670ec07 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 12 Dec 2022 13:33:17 +0100 Subject: [PATCH 183/259] new(kernel_crawler): initial bottlerocket support. Signed-off-by: Federico Di Pierro --- kernel_crawler/bottlerocket.py | 45 ++++++++++++++++++++++++++++++++++ kernel_crawler/crawler.py | 4 +++ 2 files changed, 49 insertions(+) create mode 100644 kernel_crawler/bottlerocket.py diff --git a/kernel_crawler/bottlerocket.py b/kernel_crawler/bottlerocket.py new file mode 100644 index 0000000..c1adc32 --- /dev/null +++ b/kernel_crawler/bottlerocket.py @@ -0,0 +1,45 @@ +import shutil +import sys + +from click import progressbar as ProgressBar + +from .git import GitMirror + + +class BottleRocketMirror(GitMirror): + supported_kernel_releases = ["5.10", "5.15"] + + def __init__(self, arch): + super(BottleRocketMirror, self).__init__("bottlerocket-os", "bottlerocket", arch) + + def get_kernel_config_file_name(self): + return "config-bottlerocket" + + def get_bottlerocket_kernel_spec(self, kver): + return "kernel-" + kver + ".spec" + + def get_package_tree(self, version=''): + repo = self.list_repos() + sys.stdout.flush() + kernel_configs = {} + bottlerocket_versions = self.getVersions(repo, 3) + + for v in bottlerocket_versions: + bar = ProgressBar(label="Building config for bottlerocket v{}".format(v), length=1, file=sys.stderr) + self.checkout_version(v, repo) + # same meaning as the output of "uname -r" + for kver in self.supported_kernel_releases: + kernel_release = self.extract_kernel_release(v, repo, self.get_bottlerocket_kernel_spec(kver)) + kernel_version = "1_" + v + defconfig_base64 = self.encode_base64_defconfig(v, repo, self.get_kernel_config_file_name()) + kernel_configs[v + "_" + kver] = { + self.KERNEL_VERSION: kernel_version, + self.KERNEL_RELEASE: kernel_release, + self.DISTRO_TARGET: "bottlerocket", + self.BASE_64_CONFIG_DATA: defconfig_base64, + } + bar.update(1) + bar.render_finish() + + shutil.rmtree(repo.workdir, True) + return kernel_configs diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index 04b2b82..3af97bd 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -19,6 +19,8 @@ from .archlinux import ArchLinuxMirror +from .bottlerocket import BottleRocketMirror + DISTROS = { 'AlmaLinux': AlmaLinuxMirror, 'AmazonLinux': AmazonLinux1Mirror, @@ -44,6 +46,8 @@ 'Redhat': RedhatContainer, 'ArchLinux': ArchLinuxMirror, + + 'BottleRocket': BottleRocketMirror, } def to_driverkit_config(d, res): From 3fd0d430be925e60461719571531e53c972acd52 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 12 Dec 2022 13:49:59 +0100 Subject: [PATCH 184/259] cleanup(kernel_crawler): refactored common git related code between minikube and bottlerocket. Signed-off-by: Federico Di Pierro --- kernel_crawler/git.py | 99 ++++++++++++++++++++++++++++++++++++++ kernel_crawler/minikube.py | 98 +++---------------------------------- 2 files changed, 105 insertions(+), 92 deletions(-) create mode 100644 kernel_crawler/git.py diff --git a/kernel_crawler/git.py b/kernel_crawler/git.py new file mode 100644 index 0000000..c0fcbc6 --- /dev/null +++ b/kernel_crawler/git.py @@ -0,0 +1,99 @@ +import tempfile +import shutil +import re +import os +import base64 +import sys + +from click import progressbar as ProgressBar +from semantic_version import Version as SemVersion +import pygit2 + +from kernel_crawler.repo import Distro, DriverKitConfig + + +class ProgressCallback(pygit2.RemoteCallbacks): + def __init__(self, name): + self.progress_bar_initialized = False + self.bar = None + self.name = name + super().__init__() + + def transfer_progress(self, stats): + if not self.progress_bar_initialized: + self.bar = ProgressBar(label='Cloning ' + self.name + ' repository', length=stats.total_objects, file=sys.stderr) + self.bar.update(1) + self.progress_bar_initialized = True + if not self.bar.is_hidden: + self.bar.update(1, stats.indexed_objects) + if stats.indexed_objects == stats.total_objects: + self.bar.render_finish() + + +class GitMirror(Distro): + # dictionary keys used to build the kernel configuration dict. + KERNEL_VERSION = "kernelversion" + KERNEL_RELEASE = "kernelrelease" + DISTRO_TARGET = "target" + BASE_64_CONFIG_DATA = "kernelconfigdata" + + def __init__(self, repoorg, reponame, arch): + mirrors = "https://github.com/"+repoorg+"/"+reponame+".git" + self.repo_name = reponame + Distro.__init__(self, mirrors, arch) + + def clone_repo(self, repo_url): + work_dir = tempfile.mkdtemp(prefix=self.repo_name + "-") + return pygit2.clone_repository(repo_url, work_dir, callbacks=ProgressCallback(self.repo_name)) + + def list_repos(self): + return self.clone_repo(self.mirrors) + + def getVersions(self, repo, lastN): + re_tags = re.compile('^refs/tags/v(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)$') + + all_versions = [os.path.basename(v).strip('v') for v in repo.references if re_tags.match(v)] + all_versions.sort(key=SemVersion) + + no_patch_versions = list(filter((lambda x: SemVersion(x).patch == 0), all_versions)) + no_patch_versions.sort(key=SemVersion) + + # We only get the lastN releases without considering the patch releases if requested + if lastN != -1: + no_patch_versions = no_patch_versions[-lastN:] + + # Here we are taking the three last releases plus the patch releases if they have any. + # We are just taking all the releases(x.y.z) that are equal or greater than the older release we are considering, + # i.e the older from the last three releases. + return [v for v in all_versions if SemVersion(v) >= SemVersion(no_patch_versions[0])] + + def checkout_version(self, vers, repo): + repo.checkout("refs/tags/v" + vers) + + def search_files(self, directory, file_name): + for dirpath, dirnames, files in os.walk(directory): + for name in files: + if name == file_name: + return os.path.join(dirpath, name) + return None + + def extract_kernel_release(self, vers, repo, file_name): + # here kernel release is the same as the one given by "uname -r" + full_path = self.search_files(repo.workdir, file_name) + for line in open(full_path): + if re.search(r'^Version:', line): + tokens = line.strip().split(':') + return tokens[1].strip() + + def encode_base64_defconfig(self, vers, repo, file_name): + full_path = self.search_files(repo.workdir, file_name) + with open(full_path, "rb") as config_file: + return base64.b64encode(config_file.read()).decode() + + def to_driverkit_config(self, distro_release, config): + return DriverKitConfig( + config[self.KERNEL_RELEASE], + config[self.DISTRO_TARGET], + None, + config[self.KERNEL_VERSION], + config[self.BASE_64_CONFIG_DATA]) \ No newline at end of file diff --git a/kernel_crawler/minikube.py b/kernel_crawler/minikube.py index 74bc0eb..386b8ed 100644 --- a/kernel_crawler/minikube.py +++ b/kernel_crawler/minikube.py @@ -1,93 +1,15 @@ -import tempfile import shutil -import re -import os -import base64 import sys from click import progressbar as ProgressBar from semantic_version import Version as SemVersion -import pygit2 -from .repo import Distro, DriverKitConfig +from .git import GitMirror -class ProgressCallback(pygit2.RemoteCallbacks): - def __init__(self): - self.progress_bar_initialized = False - self.bar = None - super().__init__() - def transfer_progress(self, stats): - if not self.progress_bar_initialized: - self.bar = ProgressBar(label='Cloning minikube repository',length=stats.total_objects, file=sys.stderr) - self.bar.update(1) - self.progress_bar_initialized = True - if not self.bar.is_hidden: - self.bar.update(1, stats.indexed_objects) - if stats.indexed_objects == stats.total_objects: - self.bar.render_finish() - -class MinikubeMirror(Distro): - # dictionary keys used to build the kernel configuration dict. - KERNEL_VERSION = "kernelversion" - KERNEL_RELEASE = "kernelrelease" - DISTRO_TARGET = "target" - BASE_64_CONFIG_DATA = "kernelconfigdata" - +class MinikubeMirror(GitMirror): def __init__(self, arch): - mirrors = "https://github.com/kubernetes/minikube.git" - - Distro.__init__(self, mirrors, arch) - - def clone_repo(self, repo_url): - work_dir = tempfile.mkdtemp(prefix="minikube-") - return pygit2.clone_repository(repo_url, work_dir, callbacks=ProgressCallback()) - - def list_repos(self): - return self.clone_repo(self.mirrors) - - def getVersions(self, repo): - re_tags = re.compile('^refs/tags/v(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)$') - - all_versions = [os.path.basename(v).strip('v') for v in repo.references if re_tags.match(v)] - all_versions.sort(key=SemVersion) - - no_patch_versions = list(filter((lambda x: SemVersion(x).patch == 0), all_versions)) - no_patch_versions.sort(key=SemVersion) - - # We only get the last three releases without considering the patch releases. - no_patch_versions = no_patch_versions[-3:] - # Here we are taking the three last releases plus the patch releases if they have any. - # We are just taking all the releases(x.y.z) that are equal or greater than the older release we are considering, - # i.e the older from the last three releases. - # For example, if the last three releases without considering the patches are : 1.24.0, 1.25.0 and 1.26.0 then - # we will consider the three release + all their patch releases. - return [v for v in all_versions if SemVersion(v) >= SemVersion(no_patch_versions[0])] - - def checkout_version(self, minikube_version, repo): - repo.checkout("refs/tags/v" + minikube_version) - - def search_files(self, directory, file_name): - for dirpath, dirnames, files in os.walk(directory): - for name in files : - if name == file_name: - return os.path.join(dirpath, name) - return None - - def extract_kernel_release(self, minikube_version, repo): - # here kernel release is the same a the one given by "uname -r" - file_name = self.get_minikube_config_file_name(minikube_version) - full_path = self.search_files(repo.workdir, file_name) - for line in open(full_path): - if re.search(r'^BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE=', line): - tokens = line.strip().split('=') - return tokens[1].strip('"') - - def encode_base64_defconfig(self, minikube_version, repo): - file_name = self.get_kernel_config_file_name(minikube_version) - full_path = self.search_files(repo.workdir, file_name) - with open(full_path, "rb") as config_file: - return base64.b64encode(config_file.read()).decode() + super(MinikubeMirror, self).__init__("kubernetes", "minikube", arch) def get_kernel_config_file_name(self, minikube_version): if SemVersion(minikube_version) >= SemVersion("1.26.0"): @@ -103,7 +25,7 @@ def get_package_tree(self, version=''): repo = self.list_repos() sys.stdout.flush() kernel_configs = {} - minikube_versions = self.getVersions(repo) + minikube_versions = self.getVersions(repo, 3) for v in minikube_versions: bar = ProgressBar(label="Building config for minikube v{}".format(v), length=1, file=sys.stderr) @@ -113,7 +35,7 @@ def get_package_tree(self, version=''): continue self.checkout_version(v, repo) # same meaning as the output of "uname -r" - kernel_release = self.extract_kernel_release(v, repo) + kernel_release = self.extract_kernel_release(v, repo, self.get_minikube_config_file_name(v)) # kernelversion is computed as "1_" + minikube version. # The reason behind that is due to how minikube distributes the iso images. # It could happen that two different minikube versions use the same kernel release but @@ -121,7 +43,7 @@ def get_package_tree(self, version=''): # makes easier to get the right falco drivers from within a minikube instance. # same meaning as "uname -v" kernel_version = "1_" + v - defconfig_base64 = self.encode_base64_defconfig(v, repo) + defconfig_base64 = self.encode_base64_defconfig(v, repo, self.get_kernel_config_file_name(v)) kernel_configs[v] = { self.KERNEL_VERSION: kernel_version, self.KERNEL_RELEASE: kernel_release, @@ -133,11 +55,3 @@ def get_package_tree(self, version=''): shutil.rmtree(repo.workdir, True) return kernel_configs - - def to_driverkit_config(self, distro_release, config): - return DriverKitConfig( - config[self.KERNEL_RELEASE], - config[self.DISTRO_TARGET], - None, - config[self.KERNEL_VERSION], - config[self.BASE_64_CONFIG_DATA]) From 8234f034ad74f40e512e4196327a394e186d92db Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 12 Dec 2022 13:53:03 +0100 Subject: [PATCH 185/259] cleanup(kernel_crawler): drop non-driverkit output formatter. Signed-off-by: Federico Di Pierro --- .github/workflows/ci.yml | 2 +- README.md | 14 ++++---------- kernel_crawler/crawler.py | 7 ++----- kernel_crawler/main.py | 27 ++++----------------------- 4 files changed, 11 insertions(+), 39 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ea2f55..f825a90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - name: Run crawler run: | - kernel-crawler crawl --distro "*" --out_fmt driverkit > kernels.json + kernel-crawler crawl --distro "*" > kernels.json - name: Validate json run: | diff --git a/README.md b/README.md index d4ca75e..5dc8d36 100644 --- a/README.md +++ b/README.md @@ -28,10 +28,9 @@ Crawl command: Usage: kernel-crawler crawl [OPTIONS] Options: - --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|CentOS|Debian|Fedora|Flatcar|Minikube|Oracle6|Oracle7|Oracle8|PhotonOS|Redhat|Ubuntu|*] + --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|BottleRocketCentOS|Debian|Fedora|Flatcar|Minikube|Oracle6|Oracle7|Oracle8|PhotonOS|Redhat|Ubuntu|*] --version TEXT --arch [x86_64|aarch64] - --out_fmt [plain|json|driverkit] --image TEXT Option is required when distro is Redhat. --help Show this message and exit. ``` @@ -51,19 +50,14 @@ To install the project, a simple `pip3 install .` from project root is enough. ## Examples -* Crawl amazonlinux2 kernels, with no-formatted output: +* Crawl amazonlinux2 kernels: ```commandline kernel-crawler crawl --distro=AmazonLinux2 ``` -* Crawl ubuntu kernels, with [driverkit](https://github.com/falcosecurity/driverkit) config-like output: +* Crawl all supported distros kernels: ```commandline -kernel-crawler crawl --distro=Ubuntu --out_fmt=driverkit -``` - -* Crawl all supported distros kernels, with json output: -```commandline -kernel-crawler crawl --distro=* --out_fmt=json +kernel-crawler crawl --distro=* ``` | :exclamation: **Note**: Passing ```--image``` argument is supported with ```--distro=*``` | |-------------------------------------------------------------------------------------------| diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index 3af97bd..cacf781 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -68,7 +68,7 @@ def to_driverkit_config(d, res): return dk_configs -def crawl_kernels(distro, version, arch, images, to_driverkit): +def crawl_kernels(distro, version, arch, images): ret = {} for distname, dist in DISTROS.items(): @@ -93,8 +93,5 @@ def crawl_kernels(distro, version, arch, images, to_driverkit): res = d.get_package_tree(version) if d and res: - if to_driverkit: - ret[distname] = to_driverkit_config(d, res) - else: - ret[distname] = res + ret[distname] = to_driverkit_config(d, res) return ret diff --git a/kernel_crawler/main.py b/kernel_crawler/main.py index 828f890..4eb796a 100644 --- a/kernel_crawler/main.py +++ b/kernel_crawler/main.py @@ -21,12 +21,6 @@ def init_logging(debug): def cli(debug): init_logging(debug) -class SetEncoder(json.JSONEncoder): - def default(self, obj): - if isinstance(obj, set): - return list(obj) - return json.JSONEncoder.default(self, obj) - class DistroImageValidation(click.Option): def __init__(self, *args, **kwargs): self.required_if_distro:list = kwargs.pop("required_if_distro") @@ -50,24 +44,11 @@ def handle_parse_result(self, ctx, opts, args): @click.option('--distro', type=click.Choice(sorted(list(DISTROS.keys())) + ['*'], case_sensitive=True)) @click.option('--version', required=False, default='') @click.option('--arch', required=False, type=click.Choice(['x86_64', 'aarch64'], case_sensitive=True), default='x86_64') -@click.option('--out_fmt', required=False, type=click.Choice(['plain', 'json', 'driverkit'], case_sensitive=True), default='plain') @click.option('--image', cls=DistroImageValidation, required_if_distro=["Redhat"], multiple=True) -def crawl(distro, version='', arch='', out_fmt='', image=''): - res = crawl_kernels(distro, version, arch, image, out_fmt == 'driverkit') - out_fmt = str.lower(out_fmt) - if out_fmt == 'plain': - for dist, ks in res.items(): - print('=== {} ==='.format(dist)) - for release, packages in ks.items(): - print('=== {} ==='.format(release)) - for pkg in packages: - print(' {}'.format(pkg)) - elif out_fmt == 'json': - json_object = json.dumps(res, indent=2, cls=SetEncoder) - print(json_object) - elif out_fmt == 'driverkit': - json_object = json.dumps(res, indent=2, default=vars) - print(json_object) +def crawl(distro, version='', arch='', image=''): + res = crawl_kernels(distro, version, arch, image) + json_object = json.dumps(res, indent=2, default=vars) + print(json_object) cli.add_command(crawl, 'crawl') From d8b36ec460f3d9cf968ad00c9dde60952e9161fe Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 12 Dec 2022 17:50:29 +0100 Subject: [PATCH 186/259] chore(kernel_crawler): multiple fixes and refactors. Signed-off-by: Federico Di Pierro --- kernel_crawler/bottlerocket.py | 12 ++++++------ kernel_crawler/git.py | 34 +++++++++++++++++++--------------- kernel_crawler/minikube.py | 13 +++++++------ 3 files changed, 32 insertions(+), 27 deletions(-) diff --git a/kernel_crawler/bottlerocket.py b/kernel_crawler/bottlerocket.py index c1adc32..18a1a08 100644 --- a/kernel_crawler/bottlerocket.py +++ b/kernel_crawler/bottlerocket.py @@ -19,19 +19,19 @@ def get_bottlerocket_kernel_spec(self, kver): return "kernel-" + kver + ".spec" def get_package_tree(self, version=''): - repo = self.list_repos() + self.list_repo() sys.stdout.flush() kernel_configs = {} - bottlerocket_versions = self.getVersions(repo, 3) + bottlerocket_versions = self.getVersions(3) for v in bottlerocket_versions: bar = ProgressBar(label="Building config for bottlerocket v{}".format(v), length=1, file=sys.stderr) - self.checkout_version(v, repo) + self.checkout_version(v) # same meaning as the output of "uname -r" for kver in self.supported_kernel_releases: - kernel_release = self.extract_kernel_release(v, repo, self.get_bottlerocket_kernel_spec(kver)) + kernel_release = self.extract_value(self.get_bottlerocket_kernel_spec(kver), "Version", ":") kernel_version = "1_" + v - defconfig_base64 = self.encode_base64_defconfig(v, repo, self.get_kernel_config_file_name()) + defconfig_base64 = self.encode_base64_defconfig(self.get_kernel_config_file_name()) kernel_configs[v + "_" + kver] = { self.KERNEL_VERSION: kernel_version, self.KERNEL_RELEASE: kernel_release, @@ -41,5 +41,5 @@ def get_package_tree(self, version=''): bar.update(1) bar.render_finish() - shutil.rmtree(repo.workdir, True) + self.cleanup_repo() return kernel_configs diff --git a/kernel_crawler/git.py b/kernel_crawler/git.py index c0fcbc6..9cdd44b 100644 --- a/kernel_crawler/git.py +++ b/kernel_crawler/git.py @@ -39,6 +39,7 @@ class GitMirror(Distro): def __init__(self, repoorg, reponame, arch): mirrors = "https://github.com/"+repoorg+"/"+reponame+".git" + self.repo = None self.repo_name = reponame Distro.__init__(self, mirrors, arch) @@ -46,29 +47,32 @@ def clone_repo(self, repo_url): work_dir = tempfile.mkdtemp(prefix=self.repo_name + "-") return pygit2.clone_repository(repo_url, work_dir, callbacks=ProgressCallback(self.repo_name)) - def list_repos(self): - return self.clone_repo(self.mirrors) + def list_repo(self): + self.repo = self.clone_repo(self.mirrors) - def getVersions(self, repo, lastN): + def cleanup_repo(self): + shutil.rmtree(self.repo.workdir, True) + + def getVersions(self, last_n=0): re_tags = re.compile('^refs/tags/v(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)$') - all_versions = [os.path.basename(v).strip('v') for v in repo.references if re_tags.match(v)] + all_versions = [os.path.basename(v).strip('v') for v in self.repo.references if re_tags.match(v)] all_versions.sort(key=SemVersion) no_patch_versions = list(filter((lambda x: SemVersion(x).patch == 0), all_versions)) no_patch_versions.sort(key=SemVersion) # We only get the lastN releases without considering the patch releases if requested - if lastN != -1: - no_patch_versions = no_patch_versions[-lastN:] + if last_n > 0: + no_patch_versions = no_patch_versions[-last_n:] # Here we are taking the three last releases plus the patch releases if they have any. # We are just taking all the releases(x.y.z) that are equal or greater than the older release we are considering, # i.e the older from the last three releases. return [v for v in all_versions if SemVersion(v) >= SemVersion(no_patch_versions[0])] - def checkout_version(self, vers, repo): - repo.checkout("refs/tags/v" + vers) + def checkout_version(self, vers): + self.repo.checkout("refs/tags/v" + vers) def search_files(self, directory, file_name): for dirpath, dirnames, files in os.walk(directory): @@ -77,16 +81,16 @@ def search_files(self, directory, file_name): return os.path.join(dirpath, name) return None - def extract_kernel_release(self, vers, repo, file_name): + def extract_value(self, file_name, key, sep): # here kernel release is the same as the one given by "uname -r" - full_path = self.search_files(repo.workdir, file_name) + full_path = self.search_files(self.repo.workdir, file_name) for line in open(full_path): - if re.search(r'^Version:', line): - tokens = line.strip().split(':') - return tokens[1].strip() + if re.search(r'^'+key + sep, line): + tokens = line.strip().split(sep) + return tokens[1].strip('"').strip() - def encode_base64_defconfig(self, vers, repo, file_name): - full_path = self.search_files(repo.workdir, file_name) + def encode_base64_defconfig(self, file_name): + full_path = self.search_files(self.repo.workdir, file_name) with open(full_path, "rb") as config_file: return base64.b64encode(config_file.read()).decode() diff --git a/kernel_crawler/minikube.py b/kernel_crawler/minikube.py index 386b8ed..fa6b71b 100644 --- a/kernel_crawler/minikube.py +++ b/kernel_crawler/minikube.py @@ -22,10 +22,10 @@ def get_minikube_config_file_name(self, minikube_version): return "minikube_defconfig" def get_package_tree(self, version=''): - repo = self.list_repos() + self.list_repo() sys.stdout.flush() kernel_configs = {} - minikube_versions = self.getVersions(repo, 3) + minikube_versions = self.getVersions(3) for v in minikube_versions: bar = ProgressBar(label="Building config for minikube v{}".format(v), length=1, file=sys.stderr) @@ -33,9 +33,10 @@ def get_package_tree(self, version=''): # versions older than 1.26.0 are just skipped if building for aarch64. if self.arch == "aarch64" and SemVersion(v) < SemVersion("1.26.0"): continue - self.checkout_version(v, repo) + self.checkout_version(v) # same meaning as the output of "uname -r" - kernel_release = self.extract_kernel_release(v, repo, self.get_minikube_config_file_name(v)) + kernel_release = self.extract_value(self.get_minikube_config_file_name(v), + "BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE", "=") # kernelversion is computed as "1_" + minikube version. # The reason behind that is due to how minikube distributes the iso images. # It could happen that two different minikube versions use the same kernel release but @@ -43,7 +44,7 @@ def get_package_tree(self, version=''): # makes easier to get the right falco drivers from within a minikube instance. # same meaning as "uname -v" kernel_version = "1_" + v - defconfig_base64 = self.encode_base64_defconfig(v, repo, self.get_kernel_config_file_name(v)) + defconfig_base64 = self.encode_base64_defconfig(self.get_kernel_config_file_name(v)) kernel_configs[v] = { self.KERNEL_VERSION: kernel_version, self.KERNEL_RELEASE: kernel_release, @@ -53,5 +54,5 @@ def get_package_tree(self, version=''): bar.update(1) bar.render_finish() - shutil.rmtree(repo.workdir, True) + self.cleanup_repo() return kernel_configs From 8274d49e6ea96038a034d9d0cb51f06b2727052a Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 13 Dec 2022 11:28:08 +0100 Subject: [PATCH 187/259] fix(kernel_crawler): bottlerocket needs to download the base kernel from amazonlinux2, then patch its config with its flavor-specific ones. Signed-off-by: Federico Di Pierro --- kernel_crawler/bottlerocket.py | 105 +++++++++++++++++++++++++++++---- kernel_crawler/git.py | 13 ++-- kernel_crawler/minikube.py | 1 - setup.py | 3 +- 4 files changed, 103 insertions(+), 19 deletions(-) diff --git a/kernel_crawler/bottlerocket.py b/kernel_crawler/bottlerocket.py index 18a1a08..95e3feb 100644 --- a/kernel_crawler/bottlerocket.py +++ b/kernel_crawler/bottlerocket.py @@ -1,6 +1,9 @@ -import shutil +import base64 +import os import sys +import requests +import rpmfile from click import progressbar as ProgressBar from .git import GitMirror @@ -8,16 +11,62 @@ class BottleRocketMirror(GitMirror): supported_kernel_releases = ["5.10", "5.15"] + supported_flavors = ["aws", "metal", "vmware"] def __init__(self, arch): super(BottleRocketMirror, self).__init__("bottlerocket-os", "bottlerocket", arch) - def get_kernel_config_file_name(self): - return "config-bottlerocket" + def get_kernel_config_file_name(self, flavor=''): + return "config-bottlerocket"+flavor def get_bottlerocket_kernel_spec(self, kver): return "kernel-" + kver + ".spec" + def fetch_base_config(self, kver): + source = self.extract_value(self.get_bottlerocket_kernel_spec(kver), "Source0", ":") + if source is None: + return None + + alkernel = requests.get(source) + alkernel.raise_for_status() + with open('/tmp/alkernel.rpm', 'wb') as f: + f.write(alkernel.content) + + with rpmfile.open('/tmp/alkernel.rpm') as rpm: + # Extract a fileobject from the archive + fd = rpm.extractfile('config-' + self.arch) + baseconfig = [line for line in fd.readlines()] + + os.remove('/tmp/alkernel.rpm') + return baseconfig + + def set_kernel_config(self, baseconfig, key, value): + for i, line in enumerate(baseconfig): + if key in str(line): + baseconfig[i] = key.encode() + b'=' + value.encode() + break + + def unset_kernel_config(self, baseconfig, key): + for i, line in enumerate(baseconfig): + if line.startswith(key): + baseconfig[i] = b'# ' + key.encode() + b' is not set\n' + break + + def patch_config(self, baseconfig, patch): + for line in patch: + if line.startswith("#"): + continue + vals = line.split("=", 1) + if len(vals) != 2: + continue + key = vals[0] + value = vals[1] + if value == "n": + self.unset_kernel_config(baseconfig, key) + else: + self.set_kernel_config(baseconfig, key, value) + return baseconfig + def get_package_tree(self, version=''): self.list_repo() sys.stdout.flush() @@ -27,17 +76,49 @@ def get_package_tree(self, version=''): for v in bottlerocket_versions: bar = ProgressBar(label="Building config for bottlerocket v{}".format(v), length=1, file=sys.stderr) self.checkout_version(v) - # same meaning as the output of "uname -r" for kver in self.supported_kernel_releases: + # same meaning as the output of "uname -r" kernel_release = self.extract_value(self.get_bottlerocket_kernel_spec(kver), "Version", ":") - kernel_version = "1_" + v - defconfig_base64 = self.encode_base64_defconfig(self.get_kernel_config_file_name()) - kernel_configs[v + "_" + kver] = { - self.KERNEL_VERSION: kernel_version, - self.KERNEL_RELEASE: kernel_release, - self.DISTRO_TARGET: "bottlerocket", - self.BASE_64_CONFIG_DATA: defconfig_base64, - } + if kernel_release is None: + continue + + # Load base config + baseconfig = self.fetch_base_config(kver) + if baseconfig is None: + continue + + # Load common config + commonconfig_file = self.search_file(self.get_kernel_config_file_name()) + if commonconfig_file is None: + continue + + with open(commonconfig_file, 'r') as fd: + commonconfig = fd.readlines() + + for flavor in self.supported_flavors: + flavorconfig_file = self.search_file(self.get_kernel_config_file_name("-" + flavor)) + if flavorconfig_file is None: + continue + + # Load flavor specific config + with open(flavorconfig_file, 'r') as fd: + flavorconfig = fd.readlines() + + # Merge flavor and common config + flavorconfig += commonconfig + + # Finally, patch baseconfig with flavor config + finalconfig = self.patch_config(baseconfig, flavorconfig) + + kernel_version = "1_" + v + "-" + flavor + defconfig_base64 = base64.b64encode(b''.join(finalconfig)).decode() + kernel_configs[v + "_" + kver] = { + self.KERNEL_VERSION: kernel_version, + self.KERNEL_RELEASE: kernel_release, + self.DISTRO_TARGET: "bottlerocket", + self.BASE_64_CONFIG_DATA: defconfig_base64, + } + bar.update(1) bar.render_finish() diff --git a/kernel_crawler/git.py b/kernel_crawler/git.py index 9cdd44b..9eee144 100644 --- a/kernel_crawler/git.py +++ b/kernel_crawler/git.py @@ -74,8 +74,8 @@ def getVersions(self, last_n=0): def checkout_version(self, vers): self.repo.checkout("refs/tags/v" + vers) - def search_files(self, directory, file_name): - for dirpath, dirnames, files in os.walk(directory): + def search_file(self, file_name): + for dirpath, dirnames, files in os.walk(self.repo.workdir): for name in files: if name == file_name: return os.path.join(dirpath, name) @@ -83,14 +83,17 @@ def search_files(self, directory, file_name): def extract_value(self, file_name, key, sep): # here kernel release is the same as the one given by "uname -r" - full_path = self.search_files(self.repo.workdir, file_name) + full_path = self.search_file(file_name) for line in open(full_path): if re.search(r'^'+key + sep, line): - tokens = line.strip().split(sep) + tokens = line.strip().split(sep, 1) return tokens[1].strip('"').strip() + return None def encode_base64_defconfig(self, file_name): - full_path = self.search_files(self.repo.workdir, file_name) + full_path = self.search_file(file_name) + if full_path is None: + return None with open(full_path, "rb") as config_file: return base64.b64encode(config_file.read()).decode() diff --git a/kernel_crawler/minikube.py b/kernel_crawler/minikube.py index fa6b71b..adb8baf 100644 --- a/kernel_crawler/minikube.py +++ b/kernel_crawler/minikube.py @@ -1,4 +1,3 @@ -import shutil import sys from click import progressbar as ProgressBar diff --git a/setup.py b/setup.py index c0599cd..f54d324 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ 'docker', 'semantic-version', 'pygit2', - 'beautifulsoup4' + 'beautifulsoup4', + 'rpmfile' ], ) From 4e237676295f4ab95bbc888d25706ee4063c953d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 14 Dec 2022 14:03:10 +0100 Subject: [PATCH 188/259] fix(kernel_crawler): properly use unique key for bottlerocket res dictionary. Signed-off-by: Federico Di Pierro --- kernel_crawler/bottlerocket.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel_crawler/bottlerocket.py b/kernel_crawler/bottlerocket.py index 95e3feb..f966460 100644 --- a/kernel_crawler/bottlerocket.py +++ b/kernel_crawler/bottlerocket.py @@ -112,7 +112,8 @@ def get_package_tree(self, version=''): kernel_version = "1_" + v + "-" + flavor defconfig_base64 = base64.b64encode(b''.join(finalconfig)).decode() - kernel_configs[v + "_" + kver] = { + # Unique key + kernel_configs[v + "_" + kver + "-" + flavor] = { self.KERNEL_VERSION: kernel_version, self.KERNEL_RELEASE: kernel_release, self.DISTRO_TARGET: "bottlerocket", From d96c973ca9201994e32957e87db34cc13f70a722 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 14 Dec 2022 14:44:29 +0100 Subject: [PATCH 189/259] new(kernel_crawler): discover bottlerocket kvers and flavors dynamically. Signed-off-by: Federico Di Pierro --- kernel_crawler/bottlerocket.py | 46 ++++++++++++++++++---------------- kernel_crawler/git.py | 11 ++++++++ 2 files changed, 36 insertions(+), 21 deletions(-) diff --git a/kernel_crawler/bottlerocket.py b/kernel_crawler/bottlerocket.py index f966460..b7a0905 100644 --- a/kernel_crawler/bottlerocket.py +++ b/kernel_crawler/bottlerocket.py @@ -1,5 +1,6 @@ import base64 import os +import re import sys import requests @@ -10,20 +11,11 @@ class BottleRocketMirror(GitMirror): - supported_kernel_releases = ["5.10", "5.15"] - supported_flavors = ["aws", "metal", "vmware"] - def __init__(self, arch): super(BottleRocketMirror, self).__init__("bottlerocket-os", "bottlerocket", arch) - def get_kernel_config_file_name(self, flavor=''): - return "config-bottlerocket"+flavor - - def get_bottlerocket_kernel_spec(self, kver): - return "kernel-" + kver + ".spec" - - def fetch_base_config(self, kver): - source = self.extract_value(self.get_bottlerocket_kernel_spec(kver), "Source0", ":") + def fetch_base_config(self, kverspec): + source = self.extract_value(kverspec, "Source0", ":") if source is None: return None @@ -40,6 +32,13 @@ def fetch_base_config(self, kver): os.remove('/tmp/alkernel.rpm') return baseconfig + def extract_flavor(self, flavorconfig_path): + flavorconfig_file = os.path.basename(flavorconfig_path) + return re.match(r"^config-bottlerocket-(.*)", flavorconfig_file).group(1) + + def extract_kver(self, kverspec_file): + return re.match(r"^kernel-(.*).spec", kverspec_file).group(1) + def set_kernel_config(self, baseconfig, key, value): for i, line in enumerate(baseconfig): if key in str(line): @@ -76,29 +75,33 @@ def get_package_tree(self, version=''): for v in bottlerocket_versions: bar = ProgressBar(label="Building config for bottlerocket v{}".format(v), length=1, file=sys.stderr) self.checkout_version(v) - for kver in self.supported_kernel_releases: + + # Find supported kernels dynamically + supported_kernel_specs = self.match_file("kernel-.*.spec", False) + for kverspec_file in supported_kernel_specs: + kver = self.extract_kver(kverspec_file) + # same meaning as the output of "uname -r" - kernel_release = self.extract_value(self.get_bottlerocket_kernel_spec(kver), "Version", ":") + kernel_release = self.extract_value(kverspec_file, "Version", ":") if kernel_release is None: continue # Load base config - baseconfig = self.fetch_base_config(kver) + baseconfig = self.fetch_base_config(kverspec_file) if baseconfig is None: continue # Load common config - commonconfig_file = self.search_file(self.get_kernel_config_file_name()) + commonconfig_file = self.search_file("config-bottlerocket") if commonconfig_file is None: continue - with open(commonconfig_file, 'r') as fd: commonconfig = fd.readlines() - for flavor in self.supported_flavors: - flavorconfig_file = self.search_file(self.get_kernel_config_file_name("-" + flavor)) - if flavorconfig_file is None: - continue + # Find supported flavors dynamically + supported_flavors = self.match_file("config-bottlerocket-.*") + for flavorconfig_file in supported_flavors: + flavor = self.extract_flavor(flavorconfig_file) # Load flavor specific config with open(flavorconfig_file, 'r') as fd: @@ -109,9 +112,10 @@ def get_package_tree(self, version=''): # Finally, patch baseconfig with flavor config finalconfig = self.patch_config(baseconfig, flavorconfig) + defconfig_base64 = base64.b64encode(b''.join(finalconfig)).decode() kernel_version = "1_" + v + "-" + flavor - defconfig_base64 = base64.b64encode(b''.join(finalconfig)).decode() + # Unique key kernel_configs[v + "_" + kver + "-" + flavor] = { self.KERNEL_VERSION: kernel_version, diff --git a/kernel_crawler/git.py b/kernel_crawler/git.py index 9eee144..38699f7 100644 --- a/kernel_crawler/git.py +++ b/kernel_crawler/git.py @@ -81,6 +81,17 @@ def search_file(self, file_name): return os.path.join(dirpath, name) return None + def match_file(self, pattern, fullpath=True): + matches = [] + for dirpath, dirnames, files in os.walk(self.repo.workdir): + for name in files: + if re.search(r'^'+pattern, name): + if fullpath: + matches.append(os.path.join(dirpath, name)) + else: + matches.append(name) + return matches + def extract_value(self, file_name, key, sep): # here kernel release is the same as the one given by "uname -r" full_path = self.search_file(file_name) From 40db2df7cf77f50b23cce90d26357c45733abb13 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 14 Dec 2022 17:19:09 +0100 Subject: [PATCH 190/259] chore(readme): typo. Signed-off-by: Federico Di Pierro Co-authored-by: David Windsor --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5dc8d36..39ed47e 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Crawl command: Usage: kernel-crawler crawl [OPTIONS] Options: - --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|BottleRocketCentOS|Debian|Fedora|Flatcar|Minikube|Oracle6|Oracle7|Oracle8|PhotonOS|Redhat|Ubuntu|*] + --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|BottleRocket|CentOS|Debian|Fedora|Flatcar|Minikube|Oracle6|Oracle7|Oracle8|PhotonOS|Redhat|Ubuntu|*] --version TEXT --arch [x86_64|aarch64] --image TEXT Option is required when distro is Redhat. From 8e774b8b1048fe66b420ebe388a8c6bc874b694d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 16 Jan 2023 10:57:43 +0100 Subject: [PATCH 191/259] new(ci): ported release workflow to gh action. Signed-off-by: Federico Di Pierro --- .github/workflows/release.yml | 40 +++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..38fc209 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,40 @@ +name: Release + +on: + push: + tags: + +permissions: + # needed to upload archives as Github Releases. + contents: write + +jobs: + build-images: + runs-on: ubuntu-22.04 + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USER }} + password: ${{ secrets.DOCKERHUB_SECRET }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + with: + platforms: 'amd64,arm64' + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Build and push container images + uses: docker/build-push-action@v3 + with: + platforms: linux/amd64,linux/arm64 + file: docker/Dockerfile + context: . + tags: falcosecurity/kernel-crawler:${{ github.event.release.name }},falcosecurity/kernel-crawler:latest + push: true From 890fee31bf29689f4ac6813b00c749f4c5ca3121 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 16 Jan 2023 10:58:03 +0100 Subject: [PATCH 192/259] cleanup(ci): dropped circleci workflow. Signed-off-by: Federico Di Pierro --- .circleci/config.yml | 46 -------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 0b1ce56..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,46 +0,0 @@ -version: 2.1 -jobs: - "build-images": - docker: - - image: alpine:3.16 - steps: - - checkout - - setup_remote_docker: - version: 20.10.12 - docker_layer_caching: true - - run: - name: Install deps - command: | - apk update - apk add make bash git docker docker-cli-buildx - - run: - name: Prepare env - command: | - docker run --rm --privileged multiarch/qemu-user-static --reset -p yes - docker context create falco-env - docker buildx create falco-env --driver docker-container --use - - run: - name: Login to registry - command: | - echo ${DOCKERHUB_SECRET} | docker login -u ${DOCKERHUB_USER} --password-stdin - - run: - name: Build and publish kernel_crawler image - command: | - docker buildx build --push \ - --platform "arm64,amd64" \ - -t falcosecurity/kernel-crawler:${CIRCLE_TAG} \ - -t falcosecurity/kernel-crawler:latest \ - -f docker/Dockerfile . - -workflows: - version: 2.1 - release: - jobs: - - "build-images": - context: - - falco - filters: - tags: - only: /.*/ - branches: - ignore: /.*/ From 09d09df58532176f255bda38be9439261f31c27c Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 16 Jan 2023 11:01:50 +0100 Subject: [PATCH 193/259] chore: no need for permissions. Signed-off-by: Federico Di Pierro --- .github/workflows/release.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 38fc209..3ad864e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,10 +4,6 @@ on: push: tags: -permissions: - # needed to upload archives as Github Releases. - contents: write - jobs: build-images: runs-on: ubuntu-22.04 From f08155ffb89b9c83b99e89132d984429f88b776e Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 16 Jan 2023 11:04:03 +0100 Subject: [PATCH 194/259] chore: adjust semver for tags. Signed-off-by: Federico Di Pierro --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ad864e..06871a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,6 +3,7 @@ name: Release on: push: tags: + - '[0-9]+.[0-9]+.[0-9]+' jobs: build-images: From 92a80348050d05f65f778f2dcdb6a943922f6bd7 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 16 Jan 2023 12:44:35 +0100 Subject: [PATCH 195/259] fix(ci): fixed github ref name. Signed-off-by: Federico Di Pierro --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 06871a4..33cf3c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,5 +33,5 @@ jobs: platforms: linux/amd64,linux/arm64 file: docker/Dockerfile context: . - tags: falcosecurity/kernel-crawler:${{ github.event.release.name }},falcosecurity/kernel-crawler:latest + tags: falcosecurity/kernel-crawler:${{ github.ref_name }},falcosecurity/kernel-crawler:latest push: true From 6b1683a80f26ddef21a55fe93c764251e1ae7b0c Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Fri, 27 Jan 2023 17:57:09 +0100 Subject: [PATCH 196/259] new(ci): added update-kernels gha. Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/update-kernels.yml diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml new file mode 100644 index 0000000..e32d4e3 --- /dev/null +++ b/.github/workflows/update-kernels.yml @@ -0,0 +1,39 @@ +name: Update Kernels + +on: + workflow_dispatch: + schedule: + - cron: '0 2 * * 1' + +jobs: + update-kernels: + runs-on: ubuntu-latest + container: + image: falcosecurity/kernel-crawler:latest + permissions: + contents: write + pull-requests: write + steps: + - name: Checkout crawler + uses: actions/checkout@v3 + ref: kernels + with: + fetch-depth: 0 + + - name: Run crawler for x86_64 + run: | + kernel-crawler crawl --distro=* > x86_64/list.json + + - name: Run crawler for aarch64 + run: | + kernel-crawler crawl --distro=* --arch=aarch64 > aarch64/list.json + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v4 + with: + signoff: true + branch: update/kernels + title: 'update(kernels): update kernel json lists.' + body: 'This PR updates the list of kernels from the latest crawling. Do not edit this PR.' + commit-message: 'update(kernels): update kernel json lists.' + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From f5f86f27ac207bcd54059f47b430928e7b596241 Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Mon, 30 Jan 2023 15:33:43 +0100 Subject: [PATCH 197/259] fix(ci): fix on workflow syntax. Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index e32d4e3..1159d1d 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -3,7 +3,7 @@ name: Update Kernels on: workflow_dispatch: schedule: - - cron: '0 2 * * 1' + - cron: '30 6 * * 1' jobs: update-kernels: @@ -16,9 +16,8 @@ jobs: steps: - name: Checkout crawler uses: actions/checkout@v3 - ref: kernels with: - fetch-depth: 0 + ref: kernels - name: Run crawler for x86_64 run: | @@ -33,6 +32,7 @@ jobs: with: signoff: true branch: update/kernels + base: kernels title: 'update(kernels): update kernel json lists.' body: 'This PR updates the list of kernels from the latest crawling. Do not edit this PR.' commit-message: 'update(kernels): update kernel json lists.' From 05a981743684d38a2d8507fb82d114b7dfb301f6 Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Mon, 30 Jan 2023 17:34:50 +0100 Subject: [PATCH 198/259] fix(ci): removed sudo on apt operations. Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 1159d1d..d68b744 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -14,6 +14,12 @@ jobs: contents: write pull-requests: write steps: + - name: Git set-up + run: | + apt-get update && apt-get install -y --no-install-recommends + git + && apt-get clean + - name: Checkout crawler uses: actions/checkout@v3 with: From 7d5242bbca8c69f2b31065138505d9982f733a74 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 30 Jan 2023 17:57:08 +0100 Subject: [PATCH 199/259] fix(ci): fixed update-kernels git setup phase Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index d68b744..280b668 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -16,9 +16,7 @@ jobs: steps: - name: Git set-up run: | - apt-get update && apt-get install -y --no-install-recommends - git - && apt-get clean + apt-get update && apt-get install -y --no-install-recommends git && apt-get clean - name: Checkout crawler uses: actions/checkout@v3 @@ -42,4 +40,4 @@ jobs: title: 'update(kernels): update kernel json lists.' body: 'This PR updates the list of kernels from the latest crawling. Do not edit this PR.' commit-message: 'update(kernels): update kernel json lists.' - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }} From d529e54073b21271a7bd51fd8b6580a0c195acf2 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 31 Jan 2023 08:58:17 +0100 Subject: [PATCH 200/259] fix(ci): use a dev version of `create-pull-request` action to fix issue. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 280b668..2f5df25 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -32,7 +32,7 @@ jobs: kernel-crawler crawl --distro=* --arch=aarch64 > aarch64/list.json - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v5-rc with: signoff: true branch: update/kernels From df57340f3f84f57c41a55fe7ca1a01219278c197 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 31 Jan 2023 15:45:33 +0100 Subject: [PATCH 201/259] cleanup(ci): dropped `update-kernels` workflow from main workflows. We now have it under `kernels` branch workflows. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 43 ---------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/update-kernels.yml diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml deleted file mode 100644 index 2f5df25..0000000 --- a/.github/workflows/update-kernels.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Update Kernels - -on: - workflow_dispatch: - schedule: - - cron: '30 6 * * 1' - -jobs: - update-kernels: - runs-on: ubuntu-latest - container: - image: falcosecurity/kernel-crawler:latest - permissions: - contents: write - pull-requests: write - steps: - - name: Git set-up - run: | - apt-get update && apt-get install -y --no-install-recommends git && apt-get clean - - - name: Checkout crawler - uses: actions/checkout@v3 - with: - ref: kernels - - - name: Run crawler for x86_64 - run: | - kernel-crawler crawl --distro=* > x86_64/list.json - - - name: Run crawler for aarch64 - run: | - kernel-crawler crawl --distro=* --arch=aarch64 > aarch64/list.json - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v5-rc - with: - signoff: true - branch: update/kernels - base: kernels - title: 'update(kernels): update kernel json lists.' - body: 'This PR updates the list of kernels from the latest crawling. Do not edit this PR.' - commit-message: 'update(kernels): update kernel json lists.' - token: ${{ secrets.GITHUB_TOKEN }} From 8cb21d5e629564565254968832100f85e5d78cc6 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 31 Jan 2023 15:47:08 +0100 Subject: [PATCH 202/259] chore: updated readme. Signed-off-by: Federico Di Pierro --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 39ed47e..4749bc7 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ It is a tool used to crawl supported kernels by multiple distros, and generate a [driverkit](https://github.com/falcosecurity/driverkit)-like config json. Output json can be found, for each supported architecture, under [kernels](https://github.com/falcosecurity/kernel-crawler/tree/kernels) branch and on gh pages: https://falcosecurity.github.io/kernel-crawler/. -A weekly [prow job](https://github.com/falcosecurity/test-infra/blob/master/config/jobs/update-kernels/update-kernels.yaml) will open a PR on this repo to update the json. -As soon as the PR is merged and the json updated, another [prow job](https://github.com/falcosecurity/test-infra/blob/master/config/jobs/update-dbg/update-dbg.yaml) will create a PR on [test-infra](https://github.com/falcosecurity/test-infra) to generate the new Driverkit configs from the updated json. +A weekly [github action workflow](https://github.com/falcosecurity/kernel-crawler/actions/workflows/update-kernels.yml) will open a PR on this repo to update the json. +As soon as the PR is merged and the json updated, a [prow job](https://github.com/falcosecurity/test-infra/blob/master/config/jobs/update-dbg/update-dbg.yaml) will create a PR on [test-infra](https://github.com/falcosecurity/test-infra) to generate the new Driverkit configs from the updated json. Helper text and options: From cc1cb68cb39f498d9e6a19e38c52baa19339453e Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 3 Feb 2023 15:45:46 +0100 Subject: [PATCH 203/259] chore(ci): add back `update-kernels` on main branch. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 43 ++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/update-kernels.yml diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml new file mode 100644 index 0000000..e67fe24 --- /dev/null +++ b/.github/workflows/update-kernels.yml @@ -0,0 +1,43 @@ +name: Update Kernels + +on: + workflow_dispatch: + schedule: + - cron: '30 6 * * 1' + +jobs: + update-kernels: + runs-on: ubuntu-latest + container: + image: falcosecurity/kernel-crawler:latest + permissions: + contents: write + pull-requests: write + steps: + - name: Git set-up + run: | + apt-get update && apt-get install -y --no-install-recommends git && apt-get clean + + - name: Checkout crawler + uses: actions/checkout@v3 + with: + ref: kernels + + - name: Run crawler for x86_64 + run: | + kernel-crawler crawl --distro=* > x86_64/list.json + + - name: Run crawler for aarch64 + run: | + kernel-crawler crawl --distro=* --arch=aarch64 > aarch64/list.json + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v5-rc + with: + signoff: true + branch: update/kernels + base: kernels + title: 'update(kernels): update kernel json lists.' + body: 'This PR updates the list of kernels from the latest crawling. Do not edit this PR.' + commit-message: 'update(kernels): update kernel json lists.' + token: ${{ secrets.GITHUB_TOKEN }} From f5db21d558d32f1adeca00d7141a7be7f480c953 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Fri, 11 Nov 2022 09:51:39 -0600 Subject: [PATCH 204/259] update Dockerfile, add more checks to actions pipeline, update circle-ci pipeline for new Dockerfile Signed-off-by: Logan Bond fix rebase issue Signed-off-by: Logan Bond fix whitespace Signed-off-by: Logan Bond fix whitespace Signed-off-by: Logan Bond moving files and folders around Signed-off-by: Logan Bond changing Docker build action to handle docker subfolder location Signed-off-by: Logan Bond splitting out ci files Signed-off-by: Logan Bond change pipeline name Signed-off-by: Logan Bond making pipeline names more explicit Signed-off-by: Logan Bond even more explicit Signed-off-by: Logan Bond even more explicit Signed-off-by: Logan Bond change job name Signed-off-by: Logan Bond fix some lint Signed-off-by: Logan Bond adjust action to use docker subdir Signed-off-by: Logan Bond adjust tests for new output methods Signed-off-by: Logan Bond adjusting yamllint Signed-off-by: Logan Bond adjusting yamllint Signed-off-by: Logan Bond fixing lint Signed-off-by: Logan Bond add header Signed-off-by: Logan Bond --- .github/workflows/docker.yml | 28 +++++++++++++++++++++ .github/workflows/lint.yml | 33 ++++++++++++++++++++++++ .github/workflows/release.yml | 5 ++-- .github/workflows/{ci.yml => test.yml} | 19 ++++++++------ .github/workflows/update-kernels.yml | 1 + .yamllint | 35 ++++++++++++++++++++++++++ docker/Dockerfile | 14 ++++++++--- docker/root/usr/bin/entrypoint | 3 --- 8 files changed, 121 insertions(+), 17 deletions(-) create mode 100644 .github/workflows/docker.yml create mode 100644 .github/workflows/lint.yml rename .github/workflows/{ci.yml => test.yml} (86%) create mode 100644 .yamllint delete mode 100755 docker/root/usr/bin/entrypoint diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 0000000..9808ed1 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,28 @@ +--- +name: Docker +on: + pull_request: + branches: + - main + paths: + - 'docker/*' + +jobs: + build: + name: Build Dockerfile + runs-on: ubuntu-latest + outputs: + dockerfile_changed: ${{ steps.filter.outputs.docker }} + steps: + - name: Checkout repo ⤵️ + uses: actions/checkout@v3 + + # test that the Dockerfile builds at all + # CircleCI handles pushes for now + - name: Build Image + uses: docker/build-push-action@v3 + with: + file: docker/Dockerfile + context: . + push: false + tags: falcosecurity/kernel-crawler:test diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..a8904cb --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,33 @@ +--- +name: Lint +on: + pull_request: + branches: + - main + +jobs: + lint: + name: Lints and Scans + runs-on: ubuntu-latest + steps: + - name: Checkout repo ⤵️ + uses: actions/checkout@v3 + + - name: Lint Dockerfile + uses: hadolint/hadolint-action@v2.0.0 + with: + dockerfile: docker/Dockerfile + + - name: Lint kernel-crawler + uses: cclauss/GitHub-Action-for-pylint@0.7.0 + with: + args: "pip install -r requirements.txt ; pylint kernel_crawler" + continue-on-error: true # allow failure for now + + - name: Lint YAML + uses: karancode/yamllint-github-action@v2.1.1 + with: + yamllint_file_or_dir: '.github/workflows/' + yamllint_strict: false + yamllint_comment: false + yamllint_config_filepath: .yamllint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 33cf3c1..10f51ff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,3 +1,4 @@ +--- name: Release on: @@ -19,14 +20,14 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_SECRET }} - + - name: Set up QEMU uses: docker/setup-qemu-action@v2 with: platforms: 'amd64,arm64' - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - + - name: Build and push container images uses: docker/build-push-action@v3 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/test.yml similarity index 86% rename from .github/workflows/ci.yml rename to .github/workflows/test.yml index f825a90..3e2f688 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,12 @@ -name: CI Build +--- +name: Test on: pull_request: - branches: [main] + branches: + - main push: - branches: [main] + branches: + - main jobs: test: @@ -12,24 +15,24 @@ jobs: steps: - name: Checkout repo ⤵️ uses: actions/checkout@v3 - + - name: Install deps run: | sudo apt update sudo apt install python3 python3-pip python3-pygit2 jq - + - name: Install crawler run: | pip3 install . - + - name: Run crawler run: | kernel-crawler crawl --distro "*" > kernels.json - + - name: Validate json run: | cat kernels.json | jq empty - + - uses: actions/upload-artifact@v3 with: path: kernels.json diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index e67fe24..0a27c66 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -1,3 +1,4 @@ +--- name: Update Kernels on: diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000..f8f646b --- /dev/null +++ b/.yamllint @@ -0,0 +1,35 @@ +--- + +yaml-files: + - '*.yaml' + - '*.yml' + - '.yamllint' + +rules: + braces: enable + brackets: enable + colons: enable + commas: enable + comments: + level: warning + comments-indentation: + level: warning + document-end: disable + document-start: + level: warning + empty-lines: enable + empty-values: disable + float-values: disable + hyphens: enable + indentation: enable + key-duplicates: enable + key-ordering: disable + line-length: + max: 120 + new-line-at-end-of-file: enable + new-lines: enable + octal-values: disable + quoted-strings: disable + trailing-spaces: enable + truthy: + level: warning \ No newline at end of file diff --git a/docker/Dockerfile b/docker/Dockerfile index fff22a4..024587f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,9 +2,15 @@ FROM python:3.10-slim WORKDIR /app -COPY . . -RUN pip3 install . +COPY requirements.txt . +COPY setup.py . +COPY kernel_crawler ./kernel_crawler -COPY ./docker/root / +RUN pip3 install --no-cache-dir . && \ + useradd --create-home appuser -ENTRYPOINT [ "entrypoint" ] +USER appuser + +ENV PATH=/home/appuser/.local/bin:$PATH + +ENTRYPOINT ["kernel-crawler"] diff --git a/docker/root/usr/bin/entrypoint b/docker/root/usr/bin/entrypoint deleted file mode 100755 index 2e70def..0000000 --- a/docker/root/usr/bin/entrypoint +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -kernel-crawler "$@" From 853288b1f05a14df928c47702bb867c9d49bdc8d Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Thu, 23 Mar 2023 14:14:47 -0500 Subject: [PATCH 205/259] adding in some advanced centos community repos for ml kernels Signed-off-by: Logan Bond --- kernel_crawler/centos.py | 7 ++++++- kernel_crawler/rpm.py | 23 +++++++++++++++++++---- kernel_crawler/utils/download.py | 7 ++++++- requirements.txt | 1 + 4 files changed, 32 insertions(+), 6 deletions(-) diff --git a/kernel_crawler/centos.py b/kernel_crawler/centos.py index 737b346..a4a6dae 100644 --- a/kernel_crawler/centos.py +++ b/kernel_crawler/centos.py @@ -28,7 +28,12 @@ def __init__(self, arch): rpm.RpmMirror('http://archive.kernel.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), # It seems like centos stream uses /AppStream for kernel-devel, instead of BaseOS rpm.RpmMirror('http://mirror.stream.centos.org/', 'BaseOS/' + arch + '/os/', v9_only), - rpm.RpmMirror('http://mirror.stream.centos.org/', 'AppStream/' + arch + '/os/', v9_only) + rpm.RpmMirror('http://mirror.stream.centos.org/', 'AppStream/' + arch + '/os/', v9_only), + # These are some advanced mirrors for CentOS that enable newer kernels for ML + rpm.RpmMirror('http://elrepo.org/linux/kernel/', f'{arch}/'), + rpm.RpmMirror('http://mirrors.coreix.net/elrepo/kernel/', f'{arch}/'), + rpm.RpmMirror('http://mirror.rackspace.com/elrepo/kernel/', f'{arch}/'), + rpm.RpmMirror('http://linux-mirrors.fnal.gov/linux/elrepo/kernel/', f'{arch}/'), ] super(CentosMirror, self).__init__(mirrors, arch) diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index 2c499ad..268792d 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -42,7 +42,7 @@ def get_loc_by_xpath(cls, text, expr): @classmethod def kernel_package_query(cls): - return '''name IN ('kernel', 'kernel-devel')''' + return '''name IN ('kernel', 'kernel-devel', 'kernel-ml', 'kernel-ml-devel')''' @classmethod def build_base_query(cls, filter=''): @@ -113,14 +113,24 @@ def dist_url(self, dist): def dist_exists(self, dist): try: - r = requests.get(self.dist_url(dist)) + r = requests.get( + self.dist_url(dist), + headers={ # some URLs require a user-agent, otherwise they return HTTP 406 - this one is fabricated + 'user-agent': 'dummy' + } + ) r.raise_for_status() except requests.exceptions.RequestException: return False return True def list_repos(self): - dists = requests.get(self.base_url) + dists = requests.get( + self.base_url, + headers={ # some URLs require a user-agent, otherwise they return HTTP 406 - this one is fabricated + 'user-agent': 'dummy' + } + ) dists.raise_for_status() dists = dists.content doc = html.fromstring(dists, self.base_url) @@ -155,7 +165,12 @@ def list_repos(self): ''' Overridden from RpmMirror exchanging RpmRepository for SUSERpmRepository. ''' - dists = requests.get(self.base_url) + dists = requests.get( + self.base_url, + headers={ # some URLs require a user-agent, otherwise they return HTTP 406 - this one is fabricated + 'user-agent': 'dummy' + } + ) dists.raise_for_status() dists = dists.content doc = html.fromstring(dists, self.base_url) diff --git a/kernel_crawler/utils/download.py b/kernel_crawler/utils/download.py index f3f062f..0ed1801 100644 --- a/kernel_crawler/utils/download.py +++ b/kernel_crawler/utils/download.py @@ -7,7 +7,12 @@ from backports import lzma def get_url(url): - resp = requests.get(url) + resp = requests.get( + url, + headers={ # some URLs require a user-agent, otherwise they return HTTP 406 - this one is fabricated + 'user-agent': 'dummy' + } + ) resp.raise_for_status() if url.endswith('.gz'): return zlib.decompress(resp.content, 47) diff --git a/requirements.txt b/requirements.txt index 3b42f2e..13f0b11 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,3 +5,4 @@ docker semantic-version pygit2 beautifulsoup4 +rpmfile From 6ae769ffd992710288255ca81e30531be8663a08 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 24 Mar 2023 12:03:52 +0100 Subject: [PATCH 206/259] update(kernel_crawler): updated oracle to support OracleLinux9. Moreover, unified OracleLinux{6,7,8,9} under single `OracleLinux`. Finally, renamed output target to `ol`, that is the `ID` got from `/etc/os-release` on OracleLinux. Signed-off-by: Federico Di Pierro --- kernel_crawler/crawler.py | 6 ++--- kernel_crawler/oracle.py | 48 ++++++++++----------------------------- 2 files changed, 14 insertions(+), 40 deletions(-) diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index cacf781..6993e20 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -4,7 +4,7 @@ from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror from .centos import CentosMirror from .fedora import FedoraMirror -from .oracle import Oracle6Mirror, Oracle7Mirror, Oracle8Mirror +from .oracle import OracleMirror from .photon import PhotonOsMirror from .rockylinux import RockyLinuxMirror @@ -28,9 +28,7 @@ 'AmazonLinux2022': AmazonLinux2022Mirror, 'CentOS': CentosMirror, 'Fedora': FedoraMirror, - 'Oracle6': Oracle6Mirror, - 'Oracle7': Oracle7Mirror, - 'Oracle8': Oracle8Mirror, + 'OracleLinux': OracleMirror, 'PhotonOS': PhotonOsMirror, 'RockyLinux': RockyLinuxMirror, diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index 2de6ff2..097e54e 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -1,65 +1,41 @@ from . import repo from . import rpm + class OracleRepository(rpm.RpmRepository): @classmethod def kernel_package_query(cls): return '''(name IN ('kernel', 'kernel-devel', 'kernel-uek', 'kernel-uek-devel') AND arch = 'x86_64')''' -class Oracle6Mirror(repo.Distro): +class OracleMirror(repo.Distro): def repos(self): return [ + # Oracle6 'http://yum.oracle.com/repo/OracleLinux/OL6/latest/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/' + self.arch + '/', - ] - - def __init__(self, arch): - super(Oracle6Mirror, self).__init__([], arch) - - def list_repos(self): - return [OracleRepository(url) for url in self.repos()] - - def to_driverkit_config(self, release, deps): - for dep in deps: - if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "oracle6", dep) - -class Oracle7Mirror(repo.Distro): - def repos(self): - return [ + # Oracle7 'http://yum.oracle.com/repo/OracleLinux/OL7/latest/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/' + self.arch + '/', - ] - - def __init__(self, arch): - super(Oracle7Mirror, self).__init__([], arch) - - def list_repos(self): - return [OracleRepository(url) for url in self.repos()] - - def to_driverkit_config(self, release, deps): - for dep in deps: - if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "oracle7", dep) - - -class Oracle8Mirror(repo.Distro): - def repos(self): - return [ + # Oracle8 'http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/' + self.arch + '/', 'http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL8/appstream/' + self.arch + '/', + # Oracle9 + 'http://yum.oracle.com/repo/OracleLinux/OL9/baseos/latest/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL9/UEKR7/' + self.arch + '/', + 'http://yum.oracle.com/repo/OracleLinux/OL9/appstream/' + self.arch + '/', ] def __init__(self, arch): - super(Oracle8Mirror, self).__init__([], arch) + super(OracleMirror, self).__init__([], arch) def list_repos(self): return [OracleRepository(url) for url in self.repos()] @@ -67,4 +43,4 @@ def list_repos(self): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "oracle8", dep) \ No newline at end of file + return repo.DriverKitConfig(release, "ol", dep) From dda3edb74a92ec127ce879c29e0bb5ba595d6eda Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 24 Mar 2023 12:06:23 +0100 Subject: [PATCH 207/259] chore(docs): updated readme. Signed-off-by: Federico Di Pierro --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4749bc7..f24cd72 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Crawl command: Usage: kernel-crawler crawl [OPTIONS] Options: - --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|BottleRocket|CentOS|Debian|Fedora|Flatcar|Minikube|Oracle6|Oracle7|Oracle8|PhotonOS|Redhat|Ubuntu|*] + --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|BottleRocket|CentOS|Debian|Fedora|Flatcar|Minikube|OracleLinux|PhotonOS|Redhat|Ubuntu|*] --version TEXT --arch [x86_64|aarch64] --image TEXT Option is required when distro is Redhat. From 251e7697dc77c8fb3db222898f31abe013f900e9 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 27 Mar 2023 09:19:48 +0200 Subject: [PATCH 208/259] fix(docker): git is a dep. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 4 ---- docker/Dockerfile | 2 ++ 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 0a27c66..b6d2360 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -15,10 +15,6 @@ jobs: contents: write pull-requests: write steps: - - name: Git set-up - run: | - apt-get update && apt-get install -y --no-install-recommends git && apt-get clean - - name: Checkout crawler uses: actions/checkout@v3 with: diff --git a/docker/Dockerfile b/docker/Dockerfile index 024587f..29f46a3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,7 @@ FROM python:3.10-slim +RUN apt-get update && apt-get install -y --no-install-recommends git && apt-get clean + WORKDIR /app COPY requirements.txt . From 9000073c6510ea2c2c8e9e80d81362299babfdaf Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 27 Mar 2023 09:25:32 +0200 Subject: [PATCH 209/259] chore(docker): cleanup apt lists. Signed-off-by: Federico Di Pierro --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 29f46a3..4557dbc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.10-slim -RUN apt-get update && apt-get install -y --no-install-recommends git && apt-get clean +RUN apt-get update && apt-get install -y --no-install-recommends git && apt-get clean && rm -rf /var/lib/apt/lists/* WORKDIR /app From dce1ca7cb2ba2df25045105e507c6a28776ba919 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 27 Mar 2023 09:28:57 +0200 Subject: [PATCH 210/259] chore(docker): pin git version. Signed-off-by: Federico Di Pierro --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 4557dbc..010ab22 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.10-slim -RUN apt-get update && apt-get install -y --no-install-recommends git && apt-get clean && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y --no-install-recommends git=1:2.30.* && apt-get clean && rm -rf /var/lib/apt/lists/* WORKDIR /app From c17b6eeed90967008b38422d8ed0dbb6463f911d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 27 Mar 2023 10:16:34 +0200 Subject: [PATCH 211/259] fix(ci): force use root user. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index b6d2360..1ec74f3 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -11,6 +11,7 @@ jobs: runs-on: ubuntu-latest container: image: falcosecurity/kernel-crawler:latest + options: -u root permissions: contents: write pull-requests: write From ca2c95ae45da1d14ee22a88d0a33cad247820b1a Mon Sep 17 00:00:00 2001 From: Daniele De Lorenzi Date: Sun, 26 Mar 2023 12:59:25 +0200 Subject: [PATCH 212/259] Alibaba Cloud Linux(AliyunLinux) 2 and 3 kernel crawl Signed-off-by: Daniele De Lorenzi --- kernel_crawler/aliyunlinux.py | 44 +++++++++++++++++++++++++++++++++++ kernel_crawler/crawler.py | 3 +++ 2 files changed, 47 insertions(+) create mode 100644 kernel_crawler/aliyunlinux.py diff --git a/kernel_crawler/aliyunlinux.py b/kernel_crawler/aliyunlinux.py new file mode 100644 index 0000000..e06624a --- /dev/null +++ b/kernel_crawler/aliyunlinux.py @@ -0,0 +1,44 @@ +from . import repo +from . import rpm + +def v2_only(ver): + return ver.startswith('2') + +def v3_only(ver): + return ver.startswith('3') + +class AliyunLinux2Mirror(repo.Distro): + def __init__(self, arch): + mirrors = [ + # AliyunLinux 2 + # Mirror list on cloud-init config example: + # https://www.alibabacloud.com/help/en/elastic-compute-service/latest/use-alibaba-cloud-linux-2-images-in-an-on-premises-environment + rpm.RpmMirror('http://mirrors.aliyun.com/alinux/', 'os/' + arch + '/', v2_only), + rpm.RpmMirror('http://mirrors.aliyun.com/alinux/', 'updates/' + arch + '/', v2_only), + rpm.RpmMirror('http://mirrors.aliyun.com/alinux/', 'plus/' + arch + '/', v2_only), + + ] + super(AliyunLinux2Mirror, self).__init__(mirrors, arch) + + def to_driverkit_config(self, release, deps): + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "aliyunlinux2", dep) + +class AliyunLinux3Mirror(repo.Distro): + def __init__(self, arch): + mirrors = [ + # AliyunLinux 3 + # Mirror list on cloud-init config example: + # https://www.alibabacloud.com/help/en/elastic-compute-service/latest/use-alibaba-cloud-linux-3-images-in-an-on-premises-environment + rpm.RpmMirror('http://mirrors.aliyun.com/alinux/', 'os/' + arch + '/', v3_only), + rpm.RpmMirror('http://mirrors.aliyun.com/alinux/', 'updates/' + arch + '/', v3_only), + rpm.RpmMirror('http://mirrors.aliyun.com/alinux/', 'plus/' + arch + '/', v3_only), + + ] + super(AliyunLinux3Mirror, self).__init__(mirrors, arch) + + def to_driverkit_config(self, release, deps): + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "aliyunlinux3", dep) diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index 6993e20..f61befe 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -1,5 +1,6 @@ from . import repo from .minikube import MinikubeMirror +from .aliyunlinux import AliyunLinux2Mirror, AliyunLinux3Mirror from .almalinux import AlmaLinuxMirror from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror from .centos import CentosMirror @@ -22,6 +23,8 @@ from .bottlerocket import BottleRocketMirror DISTROS = { + 'AliyunLinux2': AliyunLinux2Mirror, + 'AliyunLinux3': AliyunLinux3Mirror, 'AlmaLinux': AlmaLinuxMirror, 'AmazonLinux': AmazonLinux1Mirror, 'AmazonLinux2': AmazonLinux2Mirror, From 90d44e65e19060eb70020e01e6c3e2c9cdc8b848 Mon Sep 17 00:00:00 2001 From: Daniele De Lorenzi Date: Mon, 27 Mar 2023 12:19:13 +0200 Subject: [PATCH 213/259] Fix drivekit config name, replaced aliyunlinux* with alinux Signed-off-by: Daniele De Lorenzi --- kernel_crawler/aliyunlinux.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel_crawler/aliyunlinux.py b/kernel_crawler/aliyunlinux.py index e06624a..485e8c1 100644 --- a/kernel_crawler/aliyunlinux.py +++ b/kernel_crawler/aliyunlinux.py @@ -23,7 +23,7 @@ def __init__(self, arch): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "aliyunlinux2", dep) + return repo.DriverKitConfig(release, "alinux", dep) class AliyunLinux3Mirror(repo.Distro): def __init__(self, arch): @@ -41,4 +41,4 @@ def __init__(self, arch): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "aliyunlinux3", dep) + return repo.DriverKitConfig(release, "alinux", dep) From cebfd483503b27d1f4d86369a0446d526d2e687b Mon Sep 17 00:00:00 2001 From: Daniele De Lorenzi Date: Mon, 27 Mar 2023 13:14:02 +0200 Subject: [PATCH 214/259] merged aliyun linux 2 and 3 mirrors into a single mapping Signed-off-by: Daniele De Lorenzi --- kernel_crawler/aliyunlinux.py | 15 ++------------- kernel_crawler/crawler.py | 5 ++--- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/kernel_crawler/aliyunlinux.py b/kernel_crawler/aliyunlinux.py index 485e8c1..c200164 100644 --- a/kernel_crawler/aliyunlinux.py +++ b/kernel_crawler/aliyunlinux.py @@ -7,7 +7,7 @@ def v2_only(ver): def v3_only(ver): return ver.startswith('3') -class AliyunLinux2Mirror(repo.Distro): +class AliyunLinuxMirror(repo.Distro): def __init__(self, arch): mirrors = [ # AliyunLinux 2 @@ -17,17 +17,6 @@ def __init__(self, arch): rpm.RpmMirror('http://mirrors.aliyun.com/alinux/', 'updates/' + arch + '/', v2_only), rpm.RpmMirror('http://mirrors.aliyun.com/alinux/', 'plus/' + arch + '/', v2_only), - ] - super(AliyunLinux2Mirror, self).__init__(mirrors, arch) - - def to_driverkit_config(self, release, deps): - for dep in deps: - if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "alinux", dep) - -class AliyunLinux3Mirror(repo.Distro): - def __init__(self, arch): - mirrors = [ # AliyunLinux 3 # Mirror list on cloud-init config example: # https://www.alibabacloud.com/help/en/elastic-compute-service/latest/use-alibaba-cloud-linux-3-images-in-an-on-premises-environment @@ -36,7 +25,7 @@ def __init__(self, arch): rpm.RpmMirror('http://mirrors.aliyun.com/alinux/', 'plus/' + arch + '/', v3_only), ] - super(AliyunLinux3Mirror, self).__init__(mirrors, arch) + super(AliyunLinuxMirror, self).__init__(mirrors, arch) def to_driverkit_config(self, release, deps): for dep in deps: diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index f61befe..0aa67eb 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -1,6 +1,6 @@ from . import repo from .minikube import MinikubeMirror -from .aliyunlinux import AliyunLinux2Mirror, AliyunLinux3Mirror +from .aliyunlinux import AliyunLinuxMirror from .almalinux import AlmaLinuxMirror from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror from .centos import CentosMirror @@ -23,8 +23,7 @@ from .bottlerocket import BottleRocketMirror DISTROS = { - 'AliyunLinux2': AliyunLinux2Mirror, - 'AliyunLinux3': AliyunLinux3Mirror, + 'AliyunLinux': AliyunLinuxMirror, 'AlmaLinux': AlmaLinuxMirror, 'AmazonLinux': AmazonLinux1Mirror, 'AmazonLinux2': AmazonLinux2Mirror, From 078231dc97edd09ab11e2f4ccc9289e8e6eed1a7 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Fri, 24 Mar 2023 08:33:14 -0500 Subject: [PATCH 215/259] proposing EXONER4TED as maintainer Signed-off-by: Logan Bond --- OWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/OWNERS b/OWNERS index 2456f5e..b390951 100644 --- a/OWNERS +++ b/OWNERS @@ -3,3 +3,4 @@ approvers: - maxgio92 - leogr - zuc + - EXONER4TED From 4d7cc8d20f387597f9c9a95a24277d1943c1a3ee Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Tue, 4 Apr 2023 08:59:14 -0500 Subject: [PATCH 216/259] reworking oracle possible urls, we were missing a few Signed-off-by: Logan Bond --- kernel_crawler/oracle.py | 56 ++++++++++++++++++++++++---------------- 1 file changed, 34 insertions(+), 22 deletions(-) diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index 097e54e..c347919 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -10,30 +10,42 @@ def kernel_package_query(cls): class OracleMirror(repo.Distro): def repos(self): - return [ - # Oracle6 - 'http://yum.oracle.com/repo/OracleLinux/OL6/latest/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/MODRHCK/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR4/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/' + self.arch + '/', - # Oracle7 - 'http://yum.oracle.com/repo/OracleLinux/OL7/latest/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/MODRHCK/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/' + self.arch + '/', - # Oracle8 - 'http://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL8/appstream/' + self.arch + '/', - # Oracle9 - 'http://yum.oracle.com/repo/OracleLinux/OL9/baseos/latest/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL9/UEKR7/' + self.arch + '/', - 'http://yum.oracle.com/repo/OracleLinux/OL9/appstream/' + self.arch + '/', + + # all the base URLs for major versions of OracleLinux + base_urls = [ + # Oracle 6 + 'http://yum.oracle.com/repo/OracleLinux/OL6', # Oracle 6 + 'http://yum.oracle.com/repo/OracleLinux/OL7', # Oracle 7 + 'http://yum.oracle.com/repo/OracleLinux/OL8', # Oracle 8 + 'http://yum.oracle.com/repo/OracleLinux/OL9', # Oracle 9 ] + # setup list for possible UEK URLs + possible_uek_urls = [] + # Oracle seems to stick to 0 thru 9 for UEK versions, wrapping back to 0 after 9 + possible_uek_versions = list(range(0, 10)) + # loop through base URLs and possible UEK versions to build possible UEK URLs + for url in base_urls: + for uek_version in possible_uek_versions: + possible_uek_urls.append(f'{url}/UEKR{uek_version}/{self.arch}/') + possible_uek_urls.append(f'{url}/UEKR{uek_version}/latest/{self.arch}/') # Oracle 6 has one URL subpath for /latest + + # setup list for possible non UEK URLs + possible_non_uek_urls = [] + # loop through base URLs and build other known URL subpaths + for url in base_urls: + possible_non_uek_urls.append(f'{url}/latest/{self.arch}/') # Oracle 6 & 7 + possible_non_uek_urls.append(f'{url}/MODRHCK/{self.arch}/') # Oracle 6 & 7 + possible_non_uek_urls.append(f'{url}/UEK/latest/{self.arch}/') # Oracle 6 has this non-versioned UEK subpath + possible_non_uek_urls.append(f'{url}/baseos/latest/{self.arch}/') # Oracle 8 & 9 + possible_non_uek_urls.append(f'{url}/appstream/{self.arch}/') # Oracle 8 & 9 + + # combine the built UEK URLs list and the base URLs + repos = [ repo for mirror in (possible_uek_urls, possible_non_uek_urls) for repo in mirror ] + + return repos + + def __init__(self, arch): super(OracleMirror, self).__init__([], arch) From 20d594d9e29c936cd2a5265a6a719a91e93f8cd7 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Tue, 4 Apr 2023 10:08:00 -0500 Subject: [PATCH 217/259] adjust crawling rpm distros handling 404 errors more gracefully Signed-off-by: Logan Bond adjust handling 404s in OpenSUSE as well adjust 404 handling for deb as well Signed-off-by: Logan Bond handling another deb exception Signed-off-by: Logan Bond syntax Signed-off-by: Logan Bond --- kernel_crawler/deb.py | 38 ++++++++++++++++++-------------- kernel_crawler/oracle.py | 2 +- kernel_crawler/rpm.py | 8 +++++++ kernel_crawler/utils/download.py | 10 ++++++++- 4 files changed, 39 insertions(+), 19 deletions(-) diff --git a/kernel_crawler/deb.py b/kernel_crawler/deb.py index 10c3506..823de19 100644 --- a/kernel_crawler/deb.py +++ b/kernel_crawler/deb.py @@ -173,11 +173,14 @@ def get_raw_package_db(self): except requests.HTTPError: return {} - repo_packages = repo_packages.splitlines(True) - packages = self.scan_packages(repo_packages) - for name, details in packages.items(): - details['URL'] = self.repo_base + details['Filename'] - return packages + if repo_packages: + repo_packages = repo_packages.splitlines(True) + packages = self.scan_packages(repo_packages) + for name, details in packages.items(): + details['URL'] = self.repo_base + details['Filename'] + return packages + else: + return {} @classmethod def build_package_tree(cls, packages, package_list): @@ -241,18 +244,19 @@ def scan_repo(self, dist): repos = {} all_comps = set() release = get_url(self.base_url + dist + 'Release') - for line in release.splitlines(False): - if line.startswith(make_bytes('Components: ')): - for comp in line.split(None)[1:]: - comp = make_string(comp) - if comp in ('main', 'updates', 'updates/main'): - if dist.endswith('updates/') and comp.startswith('updates/'): - comp = comp.replace('updates/', '') - all_comps.add(comp) - break - for comp in all_comps: - url = dist + comp + '/binary-' + self.arch + '/' - repos[url] = DebRepository(self.base_url, url) + if release: # if release exists + for line in release.splitlines(False): + if line.startswith(make_bytes('Components: ')): + for comp in line.split(None)[1:]: + comp = make_string(comp) + if comp in ('main', 'updates', 'updates/main'): + if dist.endswith('updates/') and comp.startswith('updates/'): + comp = comp.replace('updates/', '') + all_comps.add(comp) + break + for comp in all_comps: + url = dist + comp + '/binary-' + self.arch + '/' + repos[url] = DebRepository(self.base_url, url) return repos def list_repos(self): diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index c347919..f371296 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -9,11 +9,11 @@ def kernel_package_query(cls): class OracleMirror(repo.Distro): + def repos(self): # all the base URLs for major versions of OracleLinux base_urls = [ - # Oracle 6 'http://yum.oracle.com/repo/OracleLinux/OL6', # Oracle 6 'http://yum.oracle.com/repo/OracleLinux/OL7', # Oracle 7 'http://yum.oracle.com/repo/OracleLinux/OL8', # Oracle 8 diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index 268792d..9865df5 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -75,6 +75,8 @@ def parse_repo_db(cls, repo_db, filter=''): def get_repodb_url(self): repomd = get_url(self.base_url + 'repodata/repomd.xml') + if not repomd: + return None pkglist_url = self.get_loc_by_xpath(repomd, '//repo:repomd/repo:data[@type="primary_db"]/repo:location/@href') return self.base_url + pkglist_url @@ -82,6 +84,8 @@ def get_package_tree(self, filter=''): packages = {} try: repodb_url = self.get_repodb_url() + if not repodb_url: + return {} repodb = get_url(repodb_url) except requests.exceptions.RequestException: traceback.print_exc() @@ -204,6 +208,8 @@ def get_repodb_url(self): SUSE stores their primary package listing under a different path in the XML from a normal RPM repomd. ''' repomd = get_url(self.base_url + 'repodata/repomd.xml') + if not repomd: + return None pkglist_url = self.get_loc_by_xpath(repomd, '//repo:repomd/repo:data[@type="primary"]/repo:location/@href') # if no pkglist was found, return None @@ -245,6 +251,8 @@ def get_package_tree(self, filter=''): try: repodb_url = self.get_repodb_url() repodb = get_url(repodb_url) + if not repodb: + return {} except requests.exceptions.RequestException: # traceback.print_exc() # extremely verbose, uncomment if debugging return {} diff --git a/kernel_crawler/utils/download.py b/kernel_crawler/utils/download.py index 0ed1801..f90bba8 100644 --- a/kernel_crawler/utils/download.py +++ b/kernel_crawler/utils/download.py @@ -1,6 +1,7 @@ import bz2 import zlib import requests + try: import lzma except ImportError: @@ -13,7 +14,14 @@ def get_url(url): 'user-agent': 'dummy' } ) - resp.raise_for_status() + + # if 404, silently fail + if resp.status_code == 404: + return None + else: # if any other error, raise the error - might be a bug in crawler + resp.raise_for_status() + + # if no error, return the contents if url.endswith('.gz'): return zlib.decompress(resp.content, 47) elif url.endswith('.xz'): From 612b24c4002ad137de6927cc0bc7f105cdfccc95 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Mon, 10 Apr 2023 17:04:16 -0500 Subject: [PATCH 218/259] catch an error where an rpm repo points to a no-longer-existing rpm archive Signed-off-by: Logan Bond --- kernel_crawler/rpm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index 9865df5..1d33681 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -87,6 +87,8 @@ def get_package_tree(self, filter=''): if not repodb_url: return {} repodb = get_url(repodb_url) + if not repodb: + return {} except requests.exceptions.RequestException: traceback.print_exc() return {} From 583d3ceebeca7da7bd492f49948eda5c19a5c926 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 14 Apr 2023 11:08:47 +0200 Subject: [PATCH 219/259] new(kernel_crawler): add support for AmazonLinux2023. Plus, added a missing mirror to al2022. Signed-off-by: Federico Di Pierro --- README.md | 2 +- kernel_crawler/amazonlinux.py | 21 +++++++++++++++++++++ kernel_crawler/crawler.py | 3 ++- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f24cd72..225716d 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Crawl command: Usage: kernel-crawler crawl [OPTIONS] Options: - --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|BottleRocket|CentOS|Debian|Fedora|Flatcar|Minikube|OracleLinux|PhotonOS|Redhat|Ubuntu|*] + --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|AmazonLinux2023|BottleRocket|CentOS|Debian|Fedora|Flatcar|Minikube|OracleLinux|PhotonOS|Redhat|Ubuntu|*] --version TEXT --arch [x86_64|aarch64] --image TEXT Option is required when distro is Redhat. diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index 337bef8..ad361ae 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -74,6 +74,7 @@ class AmazonLinux2022Mirror(repo.Distro): # This was obtained by running # docker run -it --rm amazonlinux:2022 python3 -c 'import dnf, json; db = dnf.dnf.Base(); print(json.dumps(db.conf.substitutions, indent=2))' AL2022_REPOS = [ + 'latest', '2022.0.20220202', '2022.0.20220315', ] @@ -97,3 +98,23 @@ def to_driverkit_config(self, release, deps): if dep.find("devel") != -1: return repo.DriverKitConfig(release, "amazonlinux2022", dep) +class AmazonLinux2023Mirror(repo.Distro): + AL2023_REPOS = [ + 'latest', + ] + + def __init__(self, arch): + super(AmazonLinux2023Mirror, self).__init__([], arch) + + def list_repos(self): + repo_urls = set() + with click.progressbar( + self.AL2023_REPOS, label='Checking repositories', file=sys.stderr, item_show_func=repo.to_s) as repos: + for r in repos: + repo_urls.add(get_al_repo("https://cdn.amazonlinux.com/al2023/core/mirrors/", r + '/' + self.arch)) + return [rpm.RpmRepository(url) for url in sorted(repo_urls)] + + def to_driverkit_config(self, release, deps): + for dep in deps: + if dep.find("devel") != -1: + return repo.DriverKitConfig(release, "amazonlinux2023", dep) diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index 0aa67eb..f146e77 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -2,7 +2,7 @@ from .minikube import MinikubeMirror from .aliyunlinux import AliyunLinuxMirror from .almalinux import AlmaLinuxMirror -from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror +from .amazonlinux import AmazonLinux1Mirror, AmazonLinux2Mirror, AmazonLinux2022Mirror, AmazonLinux2023Mirror from .centos import CentosMirror from .fedora import FedoraMirror from .oracle import OracleMirror @@ -28,6 +28,7 @@ 'AmazonLinux': AmazonLinux1Mirror, 'AmazonLinux2': AmazonLinux2Mirror, 'AmazonLinux2022': AmazonLinux2022Mirror, + 'AmazonLinux2023': AmazonLinux2023Mirror, 'CentOS': CentosMirror, 'Fedora': FedoraMirror, 'OracleLinux': OracleMirror, From fc958257bfd0804471bfae8be8e14b8ec625ccbf Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 14 Apr 2023 12:20:15 +0200 Subject: [PATCH 220/259] update(kernel_crawler): added amazonlinux2 `kernel-ng` repository. Signed-off-by: Federico Di Pierro --- kernel_crawler/amazonlinux.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index ad361ae..975e763 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -49,6 +49,7 @@ class AmazonLinux2Mirror(repo.Distro): AL2_REPOS = [ 'core/2.0', 'core/latest', + 'extras/kernel-ng/latest', 'extras/kernel-5.4/latest', 'extras/kernel-5.10/latest', 'extras/kernel-5.15/latest', From a071dd867d772be74ae81a3e6af58dae3288894e Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Wed, 26 Apr 2023 21:13:04 +0200 Subject: [PATCH 221/259] new(ci): enabled crawling for specified distro to choose Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 45 ++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 1ec74f3..2c4e2f1 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -3,12 +3,35 @@ name: Update Kernels on: workflow_dispatch: + inputs: + distro: + description: distro of which to perform the update + type: choice + required: false + options: + - '*' + - AmazonLinux + - AmazonLinux2 + - AmazonLinux2022 + - AmazonLinux2023 + - BottleRocket + - CentOS + - Debian + - Fedora + - Flatcar + - Minikube + - OracleLinux + - PhotonOS + - Redhat + - Ubuntu schedule: - cron: '30 6 * * 1' jobs: update-kernels: runs-on: ubuntu-latest + env: + DISTRO: ${{ inputs.distro }} container: image: falcosecurity/kernel-crawler:latest options: -u root @@ -21,13 +44,31 @@ jobs: with: ref: kernels + - name: Setup jq + run: apt-get update && apt-get install jq -y + - name: Run crawler for x86_64 run: | - kernel-crawler crawl --distro=* > x86_64/list.json + mkdir x86_64_tmp + kernel-crawler crawl --distro=${{ env.DISTRO }} > x86_64_tmp/list.json - name: Run crawler for aarch64 run: | - kernel-crawler crawl --distro=* --arch=aarch64 > aarch64/list.json + mkdir aarch64_tmp + kernel-crawler crawl --distro=${{ env.DISTRO }} --arch=aarch64 > aarch64_tmp/list.json + + - name: Single distro update + if: github.event_name == 'workflow_dispatch' && env.DISTRO != '*' + run: | + jq --arg distroKey "${{ env.DISTRO }}" --slurpfile newValues x86_64_tmp/list.json \ + 'if .[$distroKey] then .distroKey = $newValues else . end' x86_64_tmp/list.json > x86_64_tmp/output.json + jq --arg distroKey "${{ env.DISTRO }}" --slurpfile newValues aarch64_tmp/list.json \ + 'if .[$distroKey] then .distroKey = $newValues else . end' aarch64_tmp/list.json > aarch64_tmp/output.json + + - name: Update json lists + run: | + cp x86_64_tmp/output.json x86_64/list.json + cp aarch64_tmp/output.json aarch64/list.json - name: Create Pull Request uses: peter-evans/create-pull-request@v5-rc From 8118c6009ab4ca150a6c28d12758bc829c464e80 Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Thu, 27 Apr 2023 15:07:11 +0200 Subject: [PATCH 222/259] fix(ci): fixed some oversights on paths management. Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 2c4e2f1..3766624 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -30,8 +30,6 @@ on: jobs: update-kernels: runs-on: ubuntu-latest - env: - DISTRO: ${{ inputs.distro }} container: image: falcosecurity/kernel-crawler:latest options: -u root @@ -49,26 +47,30 @@ jobs: - name: Run crawler for x86_64 run: | - mkdir x86_64_tmp - kernel-crawler crawl --distro=${{ env.DISTRO }} > x86_64_tmp/list.json + mkdir $RUNNER_TEMP/x86_64 + kernel-crawler crawl --distro=${{ inputs.distro }} > $RUNNER_TEMP/x86_64/list.json - name: Run crawler for aarch64 run: | - mkdir aarch64_tmp - kernel-crawler crawl --distro=${{ env.DISTRO }} --arch=aarch64 > aarch64_tmp/list.json + mkdir $RUNNER_TEMP/aarch64 + kernel-crawler crawl --distro=${{ inputs.distro }} --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json - name: Single distro update - if: github.event_name == 'workflow_dispatch' && env.DISTRO != '*' + if: github.event_name == 'workflow_dispatch' && ${{ inputs.distro }} != '*' run: | - jq --arg distroKey "${{ env.DISTRO }}" --slurpfile newValues x86_64_tmp/list.json \ - 'if .[$distroKey] then .distroKey = $newValues else . end' x86_64_tmp/list.json > x86_64_tmp/output.json - jq --arg distroKey "${{ env.DISTRO }}" --slurpfile newValues aarch64_tmp/list.json \ - 'if .[$distroKey] then .distroKey = $newValues else . end' aarch64_tmp/list.json > aarch64_tmp/output.json + jq --arg distroKey "${{ inputs.distro }}" \ + --slurpfile newValues $RUNNER_TEMP/x86_64/list.json \ + 'if .[$distroKey] then .distroKey = $newValues else . end' \ + x86_64/list.json > $RUNNER_TEMP/x86_64/output.json + jq --arg distroKey "${{ inputs.distro }}" \ + --slurpfile newValues $RUNNER_TEMP/aarch64/list.json \ + 'if .[$distroKey] then .distroKey = $newValues else . end' \ + aarch64/list.json > $RUNNER_TEMP/aarch64/output.json - name: Update json lists run: | - cp x86_64_tmp/output.json x86_64/list.json - cp aarch64_tmp/output.json aarch64/list.json + mv $RUNNER_TEMP/x86_64/output.json x86_64/list.json + mv $RUNNER_TEMP/aarch64/output.json aarch64/list.json - name: Create Pull Request uses: peter-evans/create-pull-request@v5-rc From 134777a15c28a568b30236c131d5130ac7de4582 Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Thu, 27 Apr 2023 15:48:26 +0200 Subject: [PATCH 223/259] chore(ci): added step to correctly handle no specific distro case Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 3766624..f346b03 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -66,11 +66,13 @@ jobs: --slurpfile newValues $RUNNER_TEMP/aarch64/list.json \ 'if .[$distroKey] then .distroKey = $newValues else . end' \ aarch64/list.json > $RUNNER_TEMP/aarch64/output.json + mv $RUNNER_TEMP/x86_64/output.json $RUNNER_TEMP/x86_64/list.json + mv $RUNNER_TEMP/aarch64/output.json $RUNNER_TEMP/aarch64/list.json - name: Update json lists run: | - mv $RUNNER_TEMP/x86_64/output.json x86_64/list.json - mv $RUNNER_TEMP/aarch64/output.json aarch64/list.json + mv $RUNNER_TEMP/x86_64/list.json x86_64/list.json + mv $RUNNER_TEMP/aarch64/list.json aarch64/list.json - name: Create Pull Request uses: peter-evans/create-pull-request@v5-rc From 774695332ddec262466260a5d950aadc9f2c2668 Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Thu, 27 Apr 2023 16:26:32 +0200 Subject: [PATCH 224/259] chore(ci): set distro choice as required Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index f346b03..ce35f4c 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -7,7 +7,7 @@ on: distro: description: distro of which to perform the update type: choice - required: false + required: true options: - '*' - AmazonLinux From f5aa6eb83f9ff47e901b6d6eb10f3e14708173dd Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Thu, 27 Apr 2023 16:56:39 +0200 Subject: [PATCH 225/259] fix(ci): fixed jq script and handled the distro value when action run on schedule trigger. Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index ce35f4c..4ef7b91 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -47,24 +47,28 @@ jobs: - name: Run crawler for x86_64 run: | + INPUT_DISTRO=${{ inputs.distro }} + DISTRO=${INPUT_DISTRO:-'*''} mkdir $RUNNER_TEMP/x86_64 - kernel-crawler crawl --distro=${{ inputs.distro }} > $RUNNER_TEMP/x86_64/list.json + kernel-crawler crawl --distro=$DISTRO > $RUNNER_TEMP/x86_64/list.json - name: Run crawler for aarch64 run: | + INPUT_DISTRO=${{ inputs.distro }} + DISTRO=${INPUT_DISTRO:-'*''} mkdir $RUNNER_TEMP/aarch64 - kernel-crawler crawl --distro=${{ inputs.distro }} --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json + kernel-crawler crawl --distro=$DISTRO --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json - name: Single distro update if: github.event_name == 'workflow_dispatch' && ${{ inputs.distro }} != '*' run: | jq --arg distroKey "${{ inputs.distro }}" \ --slurpfile newValues $RUNNER_TEMP/x86_64/list.json \ - 'if .[$distroKey] then .distroKey = $newValues else . end' \ + 'if .[$distroKey] then .[$distroKey] = $newValues[][] else . end' \ x86_64/list.json > $RUNNER_TEMP/x86_64/output.json jq --arg distroKey "${{ inputs.distro }}" \ --slurpfile newValues $RUNNER_TEMP/aarch64/list.json \ - 'if .[$distroKey] then .distroKey = $newValues else . end' \ + 'if .[$distroKey] then .[$distroKey] = $newValues[][] else . end' \ aarch64/list.json > $RUNNER_TEMP/aarch64/output.json mv $RUNNER_TEMP/x86_64/output.json $RUNNER_TEMP/x86_64/list.json mv $RUNNER_TEMP/aarch64/output.json $RUNNER_TEMP/aarch64/list.json From 65c444c0fbcc8e49b619ca88ce8ef798b0b4aa91 Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Fri, 28 Apr 2023 14:47:30 +0200 Subject: [PATCH 226/259] fix(ci): fixed oversight (extra quote) on update-kernels gha. Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 4ef7b91..4acffaa 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -55,7 +55,7 @@ jobs: - name: Run crawler for aarch64 run: | INPUT_DISTRO=${{ inputs.distro }} - DISTRO=${INPUT_DISTRO:-'*''} + DISTRO=${INPUT_DISTRO:-'*'} mkdir $RUNNER_TEMP/aarch64 kernel-crawler crawl --distro=$DISTRO --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json From 51929a6f73e94031e3299c633a88be20c85bec04 Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Fri, 28 Apr 2023 15:28:54 +0200 Subject: [PATCH 227/259] fix(ci): removed extra quote (x86_64). Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 4acffaa..4a3cbe5 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -48,7 +48,7 @@ jobs: - name: Run crawler for x86_64 run: | INPUT_DISTRO=${{ inputs.distro }} - DISTRO=${INPUT_DISTRO:-'*''} + DISTRO=${INPUT_DISTRO:-'*'} mkdir $RUNNER_TEMP/x86_64 kernel-crawler crawl --distro=$DISTRO > $RUNNER_TEMP/x86_64/list.json From deb721520fe07c49237de44aaae93c38d0886a9c Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 2 May 2023 09:44:15 +0200 Subject: [PATCH 228/259] fix(ci): fixed `if:` condition for update-kernels single distro update step. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 4a3cbe5..ebf7e2c 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -60,7 +60,7 @@ jobs: kernel-crawler crawl --distro=$DISTRO --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json - name: Single distro update - if: github.event_name == 'workflow_dispatch' && ${{ inputs.distro }} != '*' + if: ${{ github.event_name == 'workflow_dispatch' && inputs.distro != '*' }} run: | jq --arg distroKey "${{ inputs.distro }}" \ --slurpfile newValues $RUNNER_TEMP/x86_64/list.json \ From 70ad41302ceeed985ea95865acd55a91679e0ba0 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 28 Apr 2023 19:47:54 +0200 Subject: [PATCH 229/259] chore(kernel_crawler): add new fedora repos. Signed-off-by: Federico Di Pierro --- kernel_crawler/fedora.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel_crawler/fedora.py b/kernel_crawler/fedora.py index 9c74bcd..baf7290 100644 --- a/kernel_crawler/fedora.py +++ b/kernel_crawler/fedora.py @@ -13,6 +13,8 @@ def __init__(self, arch): mirrors = [ rpm.RpmMirror('https://mirrors.kernel.org/fedora/releases/', 'Everything/' + arch + '/os/', repo_filter), rpm.RpmMirror('https://mirrors.kernel.org/fedora/updates/', 'Everything/' + arch + '/', repo_filter), + rpm.RpmMirror('https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/', 'Everything/' + arch + '/os/', repo_filter), + rpm.RpmMirror('https://archives.fedoraproject.org/pub/archive/fedora/linux/updates/', 'Everything/' + arch + '/os/', repo_filter), ] super(FedoraMirror, self).__init__(mirrors, arch) From e3c88dced76dc9da049679d0dc169c61bb70b3ed Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Tue, 2 May 2023 14:14:35 +0200 Subject: [PATCH 230/259] chore(readme.md): updated docs for docker images generation. Signed-off-by: cappellinsamuele --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 225716d..8356fc1 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Options: ## Docker image -A docker image is provided for releases, by a circleCI job: `falcosecurity/kernel-crawler:latest`. +A docker image is provided for releases, by a GitHub Actions workflow: `falcosecurity/kernel-crawler:latest`. You can also build it yourself, by issuing: ```commandline docker build -t falcosecurity/kernel_crawler -f docker/Dockerfile . From 8378a731ce9fa36e1e406490b9677fce3a798060 Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Fri, 28 Apr 2023 18:07:56 +0200 Subject: [PATCH 231/259] update(ci): specific commit body message for distro-specific runs. Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index ebf7e2c..ece02c4 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -45,6 +45,14 @@ jobs: - name: Setup jq run: apt-get update && apt-get install jq -y + - name: Prepare commit body + id: prep_commit_msg + run: | + COMMIT_MSG="This PR updates the list of kernels from the latest crawling \ + $(if [ "$DISTRO" != '*' ]; then echo " for distro $DISTRO"; fi). \ + Do not edit this PR." + echo "commit_msg=$COMMIT_MSG" >> $GITHUB_OUTPUT + - name: Run crawler for x86_64 run: | INPUT_DISTRO=${{ inputs.distro }} @@ -85,6 +93,6 @@ jobs: branch: update/kernels base: kernels title: 'update(kernels): update kernel json lists.' - body: 'This PR updates the list of kernels from the latest crawling. Do not edit this PR.' + body: ${{ steps.prep_commit_msg.outputs.commit_msg }} commit-message: 'update(kernels): update kernel json lists.' token: ${{ secrets.GITHUB_TOKEN }} From 685563a82eec1e9f51159c1dae5218fdbb2d384e Mon Sep 17 00:00:00 2001 From: cappellinsamuele Date: Fri, 28 Apr 2023 19:58:52 +0200 Subject: [PATCH 232/259] fix(ci): added missing variables. Signed-off-by: cappellinsamuele --- .github/workflows/update-kernels.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index ece02c4..8b379df 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -48,6 +48,8 @@ jobs: - name: Prepare commit body id: prep_commit_msg run: | + INPUT_DISTRO=${{ inputs.distro }} + DISTRO=${INPUT_DISTRO:-'*'} COMMIT_MSG="This PR updates the list of kernels from the latest crawling \ $(if [ "$DISTRO" != '*' ]; then echo " for distro $DISTRO"; fi). \ Do not edit this PR." From 4b5141f7c2609f332074e6ab8fb0331a073f352d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 4 May 2023 12:14:53 +0200 Subject: [PATCH 233/259] new(kernel_crawler): add talos support. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 1 + README.md | 2 +- kernel_crawler/crawler.py | 4 +++ kernel_crawler/git.py | 7 +++-- kernel_crawler/talos.py | 46 ++++++++++++++++++++++++++++ 5 files changed, 56 insertions(+), 4 deletions(-) create mode 100644 kernel_crawler/talos.py diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 8b379df..f79c971 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -23,6 +23,7 @@ on: - OracleLinux - PhotonOS - Redhat + - Talos - Ubuntu schedule: - cron: '30 6 * * 1' diff --git a/README.md b/README.md index 8356fc1..4dd70a0 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Crawl command: Usage: kernel-crawler crawl [OPTIONS] Options: - --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|AmazonLinux2023|BottleRocket|CentOS|Debian|Fedora|Flatcar|Minikube|OracleLinux|PhotonOS|Redhat|Ubuntu|*] + --distro [AmazonLinux|AmazonLinux2|AmazonLinux2022|AmazonLinux2023|BottleRocket|CentOS|Debian|Fedora|Flatcar|Minikube|OracleLinux|PhotonOS|Redhat|Talos|Ubuntu|*] --version TEXT --arch [x86_64|aarch64] --image TEXT Option is required when distro is Redhat. diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index f146e77..a61f2f5 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -22,6 +22,8 @@ from .bottlerocket import BottleRocketMirror +from .talos import TalosMirror + DISTROS = { 'AliyunLinux': AliyunLinuxMirror, 'AlmaLinux': AlmaLinuxMirror, @@ -49,6 +51,8 @@ 'ArchLinux': ArchLinuxMirror, 'BottleRocket': BottleRocketMirror, + + 'Talos': TalosMirror, } def to_driverkit_config(d, res): diff --git a/kernel_crawler/git.py b/kernel_crawler/git.py index 38699f7..fd1a6d9 100644 --- a/kernel_crawler/git.py +++ b/kernel_crawler/git.py @@ -96,8 +96,9 @@ def extract_value(self, file_name, key, sep): # here kernel release is the same as the one given by "uname -r" full_path = self.search_file(file_name) for line in open(full_path): - if re.search(r'^'+key + sep, line): - tokens = line.strip().split(sep, 1) + stripped_line = line.lstrip() + if re.search(r'^'+key + sep, stripped_line): + tokens = stripped_line.strip().split(sep, 1) return tokens[1].strip('"').strip() return None @@ -114,4 +115,4 @@ def to_driverkit_config(self, distro_release, config): config[self.DISTRO_TARGET], None, config[self.KERNEL_VERSION], - config[self.BASE_64_CONFIG_DATA]) \ No newline at end of file + config[self.BASE_64_CONFIG_DATA]) diff --git a/kernel_crawler/talos.py b/kernel_crawler/talos.py new file mode 100644 index 0000000..0cb48b9 --- /dev/null +++ b/kernel_crawler/talos.py @@ -0,0 +1,46 @@ +import sys + +from click import progressbar as ProgressBar +from semantic_version import Version as SemVersion + +from .git import GitMirror + +from .debian import fixup_deb_arch + +class TalosMirror(GitMirror): + def __init__(self, arch): + super(TalosMirror, self).__init__("siderolabs", "pkgs", fixup_deb_arch(arch)) + + def get_package_tree(self, version=''): + self.list_repo() + sys.stdout.flush() + kernel_configs = {} + talos_versions = self.getVersions(3) + + for v in talos_versions: + bar = ProgressBar(label="Building config for talos v{}".format(v), length=1, file=sys.stderr) + self.checkout_version(v) + # same meaning as the output of "uname -r" + kernel_release = self.extract_value("Pkgfile", "linux_version", ":") + # Skip when we cannot load a kernel_release + if kernel_release is None: + continue + # kernelversion is computed as "1_" + talos version. + # The reason behind that is due to how talos distributes the iso images. + # It could happen that two different talos versions use the same kernel release but + # built with a different defconfig file. So having the talos version in the kernelversion + # makes easier to get the right falco drivers from within a talos instance. + # same meaning as "uname -v" + kernel_version = "1_" + v + defconfig_base64 = self.encode_base64_defconfig("config-" + self.arch) + kernel_configs[v] = { + self.KERNEL_VERSION: kernel_version, + self.KERNEL_RELEASE: kernel_release, + self.DISTRO_TARGET: "talos", + self.BASE_64_CONFIG_DATA: defconfig_base64, + } + bar.update(1) + bar.render_finish() + + self.cleanup_repo() + return kernel_configs From 3f37c4c608d16057f8400bc173af84a051494118 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 16 May 2023 12:01:06 +0200 Subject: [PATCH 234/259] fix(kernel_crawler): fixed talos support. Signed-off-by: Federico Di Pierro --- kernel_crawler/git.py | 16 +++++++++++++++ kernel_crawler/talos.py | 43 +++++++++++++++++++++++++++++++++++++++-- 2 files changed, 57 insertions(+), 2 deletions(-) diff --git a/kernel_crawler/git.py b/kernel_crawler/git.py index fd1a6d9..93abb70 100644 --- a/kernel_crawler/git.py +++ b/kernel_crawler/git.py @@ -73,6 +73,16 @@ def getVersions(self, last_n=0): def checkout_version(self, vers): self.repo.checkout("refs/tags/v" + vers) + + # Since pygit does not support checking out commits, + # we create a fake ref for the hash, and checkout it. + def checkout_hash(self, commithash): + try: + self.repo.references.create('refs/tags/v' + commithash, commithash) + except pygit2.AlreadyExistsError: + pass # already existent + + return self.checkout_version(commithash) def search_file(self, file_name): for dirpath, dirnames, files in os.walk(self.repo.workdir): @@ -101,6 +111,12 @@ def extract_value(self, file_name, key, sep): tokens = stripped_line.strip().split(sep, 1) return tokens[1].strip('"').strip() return None + + def extract_line(self, file_path): + full_path = self.repo.workdir + file_path + for line in open(full_path): + return line + return None def encode_base64_defconfig(self, file_name): full_path = self.search_file(file_name) diff --git a/kernel_crawler/talos.py b/kernel_crawler/talos.py index 0cb48b9..fb6ab8e 100644 --- a/kernel_crawler/talos.py +++ b/kernel_crawler/talos.py @@ -1,15 +1,19 @@ import sys +import tempfile +import pygit2 from click import progressbar as ProgressBar from semantic_version import Version as SemVersion -from .git import GitMirror +from .git import GitMirror,ProgressCallback from .debian import fixup_deb_arch class TalosMirror(GitMirror): def __init__(self, arch): - super(TalosMirror, self).__init__("siderolabs", "pkgs", fixup_deb_arch(arch)) + self.backup_repo = None + self.pkgs_repo = None + super(TalosMirror, self).__init__("siderolabs", "talos", fixup_deb_arch(arch)) def get_package_tree(self, version=''): self.list_repo() @@ -17,14 +21,47 @@ def get_package_tree(self, version=''): kernel_configs = {} talos_versions = self.getVersions(3) + # Clone pkgs repo + work_dir = tempfile.mkdtemp(prefix="pkgs-") + self.pkgs_repo = pygit2.clone_repository("https://github.com/siderolabs/pkgs.git", work_dir, callbacks=ProgressCallback("pkgs")) + + # Store "talos" repo as we switch to use "pkgs" repo + self.backup_repo = self.repo + for v in talos_versions: + # Use correct repo + self.repo = self.backup_repo bar = ProgressBar(label="Building config for talos v{}".format(v), length=1, file=sys.stderr) + self.checkout_version(v) + + # Fetch "pkgs" repo hash + pkgs_ver = self.extract_line("pkg/machinery/gendata/data/pkgs") + if pkgs_ver is None: + continue + + sempkgs_ver = SemVersion(pkgs_ver[1:]) + + # Extract the commit hash if needed, else just use the tag name (eg: v1.4.0) + # Note: full tag is like: v1.5.0-alpha.0-15-g813b3c3 or v1.5.0 + # so, pkgs_ver will be the string without "v". + # In the end, in case of hash, the prerelease will be "alpha.0-15-g813b3c3"; + # find "-g" and take the hash. + if sempkgs_ver.prerelease: + pkgs_ver = sempkgs_ver.prerelease[0].split("-g", 1)[1] + + # Use "pkgs" repo + self.repo = self.pkgs_repo + + # Checkout required hash + self.checkout_hash(pkgs_ver) + # same meaning as the output of "uname -r" kernel_release = self.extract_value("Pkgfile", "linux_version", ":") # Skip when we cannot load a kernel_release if kernel_release is None: continue + # kernelversion is computed as "1_" + talos version. # The reason behind that is due to how talos distributes the iso images. # It could happen that two different talos versions use the same kernel release but @@ -42,5 +79,7 @@ def get_package_tree(self, version=''): bar.update(1) bar.render_finish() + self.cleanup_repo() + self.repo = self.pkgs_repo self.cleanup_repo() return kernel_configs From e8acfcd4aadb101691836ecb8043725f259b9993 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 17 May 2023 09:30:10 +0200 Subject: [PATCH 235/259] fix(kernel_crawler): fixed opensuse tumbleweed crawler. Signed-off-by: Federico Di Pierro --- kernel_crawler/opensuse.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel_crawler/opensuse.py b/kernel_crawler/opensuse.py index 31ba442..6685dd2 100644 --- a/kernel_crawler/opensuse.py +++ b/kernel_crawler/opensuse.py @@ -8,7 +8,8 @@ def opensuse_filter(dist): dist.startswith('stable') def tumbleweed_filter(dist): - return dist.startswith('tumbleweed') + return dist.startswith('tumbleweed') or \ + dist.startswith('./tumbleweed') class OpenSUSEMirror(repo.Distro): From f4054a979b98aba7d776afc1e6decf86f80537a9 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 17 May 2023 10:56:33 +0200 Subject: [PATCH 236/259] chore(kernel_crawler): add more openSUSE paths and fixup exusting ones. Signed-off-by: Federico Di Pierro --- kernel_crawler/opensuse.py | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/kernel_crawler/opensuse.py b/kernel_crawler/opensuse.py index 6685dd2..5d1007c 100644 --- a/kernel_crawler/opensuse.py +++ b/kernel_crawler/opensuse.py @@ -1,12 +1,6 @@ from . import repo from . import rpm -def opensuse_filter(dist): - return dist.startswith('openSUSE') or \ - dist.startswith('./openSUSE') or \ - dist.startswith('HEAD') or \ - dist.startswith('stable') - def tumbleweed_filter(dist): return dist.startswith('tumbleweed') or \ dist.startswith('./tumbleweed') @@ -27,16 +21,20 @@ def __init__(self, arch): rpm.SUSERpmMirror('http://download.opensuse.org/', 'repo/oss/', arch, tumbleweed_filter), # opensuse site: leaps rpm.SUSERpmMirror('http://download.opensuse.org/distribution/leap/', 'repo/oss/', arch), + # opensuse Kernel repo - common + rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'Backport/standard/', arch), ] # other arch's are stored differently on SUSE's site # in general, the /repositories/Kernel:/ are stored differently and require a filter if arch == 'x86_64': - mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'Submit/standard/', arch, opensuse_filter)) - mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'standard/', arch, opensuse_filter)) + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'Submit/standard/', arch)) + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'standard/', arch)) else: - mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'Submit/ports/', arch, opensuse_filter)) - mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'ports/', arch, opensuse_filter)) + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'Submit/ports/', arch)) + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'ports/', arch)) + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'ARM/', arch)) + mirrors.append(rpm.SUSERpmMirror('https://download.opensuse.org/repositories/Kernel:/', 'Backport/ports/', arch)), super(OpenSUSEMirror, self).__init__(mirrors, arch) From 9670719f47be08782f505d7c0749169df229aaee Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 17 May 2023 11:16:12 +0200 Subject: [PATCH 237/259] chore(ci): add all supported distros to update-kernels input choices. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index f79c971..717b76a 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -10,19 +10,24 @@ on: required: true options: - '*' + - AliyunLinux + - AlmaLinux - AmazonLinux - AmazonLinux2 - AmazonLinux2022 - AmazonLinux2023 + - ArchLinux - BottleRocket - CentOS - Debian - Fedora - Flatcar - Minikube + - OpenSUSE - OracleLinux - PhotonOS - Redhat + - RockyLinux - Talos - Ubuntu schedule: From 188c0a6fbc09acc66722f3db5a2995d58333f4f3 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Mon, 22 May 2023 09:52:51 -0500 Subject: [PATCH 238/259] if uek in oracle kernel release, kernel version is 2 Signed-off-by: Logan Bond --- kernel_crawler/oracle.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index f371296..56672c8 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -5,7 +5,7 @@ class OracleRepository(rpm.RpmRepository): @classmethod def kernel_package_query(cls): - return '''(name IN ('kernel', 'kernel-devel', 'kernel-uek', 'kernel-uek-devel') AND arch = 'x86_64')''' + return '''(name IN ('kernel', 'kernel-devel', 'kernel-uek', 'kernel-uek-devel'))''' class OracleMirror(repo.Distro): @@ -55,4 +55,10 @@ def list_repos(self): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "ol", dep) + if 'uek' in release: # uek kernels have kernel versions of "2" + # example: + # # uname -a + # Linux vm-ol8 5.15.0-100.96.32.el8uek.x86_64 #2 SMP Tue ... + return repo.DriverKitConfig(release, "ol", dep, kernelversion=2) + else: # else return default with kernelversion=1 + return repo.DriverKitConfig(release, "ol", dep) From 62a02de0e7ac5b06504c41d604b1559f6df9585a Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Wed, 24 May 2023 10:36:53 -0500 Subject: [PATCH 239/259] clean up centos mirror list and add back in centos 8 Signed-off-by: Logan Bond --- kernel_crawler/centos.py | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/kernel_crawler/centos.py b/kernel_crawler/centos.py index a4a6dae..90918eb 100644 --- a/kernel_crawler/centos.py +++ b/kernel_crawler/centos.py @@ -16,19 +16,25 @@ def v6_or_v7(ver): class CentosMirror(repo.Distro): def __init__(self, arch): mirrors = [ - rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/' + arch + '/', v7_only), - rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/' + arch + '/', v7_only), - # CentOS 8 reached end-of-life at the end of 2021, so no point looking for it - # rpm.RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), + # CentOS 6 + 7 rpm.RpmMirror('http://vault.centos.org/centos/', 'os/' + arch + '/', v6_or_v7), rpm.RpmMirror('http://vault.centos.org/centos/', 'updates/' + arch + '/', v6_or_v7), - rpm.RpmMirror('http://vault.centos.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), rpm.RpmMirror('http://archive.kernel.org/centos/', 'os/' + arch + '/', v6_or_v7), rpm.RpmMirror('http://archive.kernel.org/centos/', 'updates/' + arch + '/', v6_or_v7), + # CentOS 7 + rpm.RpmMirror('http://mirror.centos.org/centos/', 'os/' + arch + '/', v7_only), + rpm.RpmMirror('http://mirror.centos.org/centos/', 'updates/' + arch + '/', v7_only), + # CentOS 8 + rpm.RpmMirror('http://mirror.centos.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), + rpm.RpmMirror('http://vault.centos.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), rpm.RpmMirror('http://archive.kernel.org/centos/', 'BaseOS/' + arch + '/os/', v8_only), - # It seems like centos stream uses /AppStream for kernel-devel, instead of BaseOS + # CentOS 9 rpm.RpmMirror('http://mirror.stream.centos.org/', 'BaseOS/' + arch + '/os/', v9_only), + + # It seems like stream variants uses /AppStream as well + rpm.RpmMirror('http://archive.kernel.org/centos/', 'AppStream/' + arch + '/os/', v8_only), rpm.RpmMirror('http://mirror.stream.centos.org/', 'AppStream/' + arch + '/os/', v9_only), + # These are some advanced mirrors for CentOS that enable newer kernels for ML rpm.RpmMirror('http://elrepo.org/linux/kernel/', f'{arch}/'), rpm.RpmMirror('http://mirrors.coreix.net/elrepo/kernel/', f'{arch}/'), From 314049c223934ca31c6bea3776fee4039003ca80 Mon Sep 17 00:00:00 2001 From: Leonardo Grasso Date: Tue, 6 Jun 2023 17:59:51 +0200 Subject: [PATCH 240/259] docs(README.md): add scope and status badges Signed-off-by: Leonardo Grasso --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4dd70a0..0689890 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Falcosecurity kernel-crawler + [![Falco Infra Repository](https://github.com/falcosecurity/evolution/blob/main/repos/badges/falco-infra-blue.svg)](https://github.com/falcosecurity/evolution/blob/main/REPOSITORIES.md#infra-scope) [![Incubating](https://img.shields.io/badge/status-incubating-orange?style=for-the-badge)](https://github.com/falcosecurity/evolution/blob/main/REPOSITORIES.md#incubating) [![License](https://img.shields.io/github/license/falcosecurity/kernel-crawler?style=for-the-badge)](./LICENSE) + [![Latest](https://img.shields.io/github/v/release/falcosecurity/kernel-crawler?style=for-the-badge)](https://github.com/falcosecurity/kernel-crawler/releases/latest) ![Architectures](https://img.shields.io/badge/ARCHS-x86__64%7Caarch64-blueviolet?style=for-the-badge) From 1fe5aae527c47e60b82d822bfbb1815e1e46a68f Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 8 Jun 2023 14:09:49 +0200 Subject: [PATCH 241/259] fix(kernel_crawler): fixed talos output protocol. Signed-off-by: Federico Di Pierro --- kernel_crawler/talos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel_crawler/talos.py b/kernel_crawler/talos.py index fb6ab8e..48119eb 100644 --- a/kernel_crawler/talos.py +++ b/kernel_crawler/talos.py @@ -68,11 +68,11 @@ def get_package_tree(self, version=''): # built with a different defconfig file. So having the talos version in the kernelversion # makes easier to get the right falco drivers from within a talos instance. # same meaning as "uname -v" - kernel_version = "1_" + v + kernel_version = "1_v" + v defconfig_base64 = self.encode_base64_defconfig("config-" + self.arch) kernel_configs[v] = { self.KERNEL_VERSION: kernel_version, - self.KERNEL_RELEASE: kernel_release, + self.KERNEL_RELEASE: kernel_release + "-talos", self.DISTRO_TARGET: "talos", self.BASE_64_CONFIG_DATA: defconfig_base64, } From 477eed10b569fbdf19edd7b9cd290bc9eafc47e4 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 8 Jun 2023 15:49:40 +0200 Subject: [PATCH 242/259] chore(ci): properly update last run distro file in CI. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 717b76a..9c12cde 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -33,6 +33,11 @@ on: schedule: - cron: '30 6 * * 1' +# Checks if any concurrent jobs is running for kernels CI and eventually cancel it. +concurrency: + group: kernels-ci + cancel-in-progress: true + jobs: update-kernels: runs-on: ubuntu-latest @@ -48,32 +53,32 @@ jobs: with: ref: kernels + - name: Fetch distro + run: | + INPUT_DISTRO=${{ inputs.distro }} + DISTRO=${INPUT_DISTRO:-'*'} + echo "distro=$DISTRO" >> $GITHUB_ENV + - name: Setup jq run: apt-get update && apt-get install jq -y - name: Prepare commit body id: prep_commit_msg run: | - INPUT_DISTRO=${{ inputs.distro }} - DISTRO=${INPUT_DISTRO:-'*'} COMMIT_MSG="This PR updates the list of kernels from the latest crawling \ - $(if [ "$DISTRO" != '*' ]; then echo " for distro $DISTRO"; fi). \ + $(if [ "${{ env.distro }}" != '*' ]; then echo " for distro ${{ env.distro }}"; fi). \ Do not edit this PR." echo "commit_msg=$COMMIT_MSG" >> $GITHUB_OUTPUT - name: Run crawler for x86_64 run: | - INPUT_DISTRO=${{ inputs.distro }} - DISTRO=${INPUT_DISTRO:-'*'} mkdir $RUNNER_TEMP/x86_64 - kernel-crawler crawl --distro=$DISTRO > $RUNNER_TEMP/x86_64/list.json + kernel-crawler crawl --distro=${{ env.distro }} > $RUNNER_TEMP/x86_64/list.json - name: Run crawler for aarch64 run: | - INPUT_DISTRO=${{ inputs.distro }} - DISTRO=${INPUT_DISTRO:-'*'} mkdir $RUNNER_TEMP/aarch64 - kernel-crawler crawl --distro=$DISTRO --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json + kernel-crawler crawl --distro=${{ env.distro }} --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json - name: Single distro update if: ${{ github.event_name == 'workflow_dispatch' && inputs.distro != '*' }} @@ -94,6 +99,10 @@ jobs: mv $RUNNER_TEMP/x86_64/list.json x86_64/list.json mv $RUNNER_TEMP/aarch64/list.json aarch64/list.json + - name: Update last run distro + run: | + echo ${{ env.distro }} > last_run_distro.txt + - name: Create Pull Request uses: peter-evans/create-pull-request@v5-rc with: From ccdc755ef3cf461dcd377dc31d1bdc32a623e3bc Mon Sep 17 00:00:00 2001 From: Roberto Scolaro Date: Mon, 12 Jun 2023 15:02:57 +0000 Subject: [PATCH 243/259] fix(ubuntu): removed flavor from kernel version Signed-off-by: Roberto Scolaro --- kernel_crawler/ubuntu.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/kernel_crawler/ubuntu.py b/kernel_crawler/ubuntu.py index ca35160..ac6c8b8 100644 --- a/kernel_crawler/ubuntu.py +++ b/kernel_crawler/ubuntu.py @@ -28,6 +28,10 @@ def to_driverkit_config(self, release, deps): # if capture was successful, set the flavor if flavor_capture is not None: flavor = flavor_capture.group(1) # set flavor to the first capture group + # in the case that the flavor results in aws- we remove the version, + # e.g.: aws-5.19 -> aws + if '-' in flavor: + flavor = flavor.split('-')[0] target = f'ubuntu-{flavor}' # expose the correct ubuntu flavor release = f'{krel}-{flavor}' # add flavor to release @@ -40,4 +44,4 @@ def to_driverkit_config(self, release, deps): # If already existent, just add the new url to the list of headers val.headers.append(dep) dk_configs[target] = val - return dk_configs.values() \ No newline at end of file + return dk_configs.values() From 4771f3233ddd59c4cc4261f36653d424b2004468 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 8 Jun 2023 10:47:36 +0200 Subject: [PATCH 244/259] fix(kernel_crawler): properly support debian `cloud` and `rt` flavors. Do not mixup headers, otherwise we might end up building a module for the wrong flavor, and it won't load. Signed-off-by: Federico Di Pierro --- kernel_crawler/debian.py | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/kernel_crawler/debian.py b/kernel_crawler/debian.py index e582ab6..3245806 100644 --- a/kernel_crawler/debian.py +++ b/kernel_crawler/debian.py @@ -43,9 +43,40 @@ def get_package_tree(self, version=''): def to_driverkit_config(self, release, deps): headers = [] + headers_rt = [] + headers_cloud = [] + # Magic to obtain `rt`, `cloud` and normal headers: + # List is like this one: + # "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-23-common_4.19.269-1_all.deb", + # "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-23-rt-amd64_4.19.269-1_amd64.deb", + # "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-23-common-rt_4.19.269-1_all.deb", + # "http://security.debian.org/pool/updates/main/l/linux/linux-kbuild-4.19_4.19.282-1_amd64.deb", + # "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-23-cloud-amd64_4.19.269-1_amd64.deb", + # "http://security.debian.org/pool/updates/main/l/linux/linux-headers-4.19.0-23-amd64_4.19.269-1_amd64.deb" + # So: + # * common is split in `common-rt` and `common` (for cloud and normal) + # * kbuild is the same across all flavors + # * headers are split between `rt`, `cloud` and normal for dep in deps: if dep.find("headers") != -1: - headers.append(dep) + if dep.find("common") != -1: + if dep.find("-rt") != -1: + headers_rt.append(dep) + else: + headers.append(dep) + headers_cloud.append(dep) + else: + if dep.find("-rt") != -1: + headers_rt.append(dep) + elif dep.find("-cloud") != -1: + headers_cloud.append(dep) + else: + headers.append(dep) if dep.find("kbuild") != -1: headers.append(dep) - return repo.DriverKitConfig(release + "-" + self.arch, "debian", headers) + headers_rt.append(dep) + headers_cloud.append(dep) + + return [repo.DriverKitConfig(release + "-" + self.arch, "debian", headers), + repo.DriverKitConfig(release + "-rt-" + self.arch, "debian", headers_rt), + repo.DriverKitConfig(release + "-cloud-" + self.arch, "debian", headers_cloud)] From 312421425497ef10063a0cc12ad94ac01bdc80c0 Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Fri, 23 Jun 2023 09:24:05 -0500 Subject: [PATCH 245/259] the pinned git version no longer exists in the base image, just removing the pin Signed-off-by: Logan Bond --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 010ab22..4557dbc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.10-slim -RUN apt-get update && apt-get install -y --no-install-recommends git=1:2.30.* && apt-get clean && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y --no-install-recommends git && apt-get clean && rm -rf /var/lib/apt/lists/* WORKDIR /app From 938f516d6527b0a2c25d548647530c048110d31c Mon Sep 17 00:00:00 2001 From: Logan Bond Date: Fri, 23 Jun 2023 09:29:39 -0500 Subject: [PATCH 246/259] ignore pinned versions in dockerfile Signed-off-by: Logan Bond --- .github/workflows/lint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a8904cb..18ef6a6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,6 +17,7 @@ jobs: uses: hadolint/hadolint-action@v2.0.0 with: dockerfile: docker/Dockerfile + ignore: DL3008 - name: Lint kernel-crawler uses: cclauss/GitHub-Action-for-pylint@0.7.0 From 654ec163740903acfd7fe7a19a55a5562bb563ef Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Mon, 26 Jun 2023 09:35:24 +0200 Subject: [PATCH 247/259] fix(ci): properly quote "*" when creating last_run_distro file. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 9c12cde..1158f4c 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -101,7 +101,7 @@ jobs: - name: Update last run distro run: | - echo ${{ env.distro }} > last_run_distro.txt + echo "${{ env.distro }}" > last_run_distro.txt - name: Create Pull Request uses: peter-evans/create-pull-request@v5-rc From b05614321196137dcd9b1e1dab9e0fb5a40eba4a Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 26 Jul 2023 11:46:13 +0200 Subject: [PATCH 248/259] fix(kernel_crawler): kernelversion should always be a string. Signed-off-by: Federico Di Pierro --- kernel_crawler/repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index 915be07..810a542 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -12,7 +12,7 @@ def __str__(self): raise NotImplementedError class DriverKitConfig(object): - def __init__(self, kernelrelease, target, headers=None, kernelversion=1, kernelconfigdata=None): + def __init__(self, kernelrelease, target, headers=None, kernelversion="1", kernelconfigdata=None): self.kernelversion = kernelversion self.kernelrelease = kernelrelease self.target = target From bb69a6fb00dbf34f3bab82164919cc546c0b4a85 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 3 Aug 2023 17:03:02 +0200 Subject: [PATCH 249/259] fix(kernel_crawler): enforce kernelversion to be a string. Signed-off-by: Federico Di Pierro --- kernel_crawler/flatcar.py | 2 +- kernel_crawler/oracle.py | 2 +- kernel_crawler/repo.py | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/kernel_crawler/flatcar.py b/kernel_crawler/flatcar.py index e606e93..b04cbfb 100644 --- a/kernel_crawler/flatcar.py +++ b/kernel_crawler/flatcar.py @@ -55,4 +55,4 @@ def list_repos(self): return repos def to_driverkit_config(self, release, deps): - return repo.DriverKitConfig(release, "flatcar", None, 1, list(deps)[0]) + return repo.DriverKitConfig(release, "flatcar", None, "1", list(deps)[0]) diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index 56672c8..81324a8 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -59,6 +59,6 @@ def to_driverkit_config(self, release, deps): # example: # # uname -a # Linux vm-ol8 5.15.0-100.96.32.el8uek.x86_64 #2 SMP Tue ... - return repo.DriverKitConfig(release, "ol", dep, kernelversion=2) + return repo.DriverKitConfig(release, "ol", dep, kernelversion="2") else: # else return default with kernelversion=1 return repo.DriverKitConfig(release, "ol", dep) diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index 810a542..5aa9295 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -13,6 +13,8 @@ def __str__(self): class DriverKitConfig(object): def __init__(self, kernelrelease, target, headers=None, kernelversion="1", kernelconfigdata=None): + if not isinstance(kernelversion, str): + raise TypeError('kernelversion should be a string') self.kernelversion = kernelversion self.kernelrelease = kernelrelease self.target = target From 24815ec3edbc5127b07c6fa7ffbb718d92879870 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 11 Oct 2023 14:46:01 +0200 Subject: [PATCH 250/259] docs: add license headers and spdx id. Signed-off-by: Federico Di Pierro --- kernel_crawler/__init__.py | 13 ++++++++++++- kernel_crawler/aliyunlinux.py | 13 +++++++++++++ kernel_crawler/almalinux.py | 15 ++++++++++++++- kernel_crawler/amazonlinux.py | 13 +++++++++++++ kernel_crawler/archlinux.py | 13 +++++++++++++ kernel_crawler/bottlerocket.py | 13 +++++++++++++ kernel_crawler/centos.py | 15 ++++++++++++++- kernel_crawler/container.py | 13 +++++++++++++ kernel_crawler/crawler.py | 13 +++++++++++++ kernel_crawler/deb.py | 13 +++++++++++++ kernel_crawler/debian.py | 13 +++++++++++++ kernel_crawler/fedora.py | 13 +++++++++++++ kernel_crawler/flatcar.py | 13 +++++++++++++ kernel_crawler/git.py | 13 +++++++++++++ kernel_crawler/main.py | 13 +++++++++++++ kernel_crawler/minikube.py | 13 +++++++++++++ kernel_crawler/opensuse.py | 13 +++++++++++++ kernel_crawler/oracle.py | 13 +++++++++++++ kernel_crawler/photon.py | 13 +++++++++++++ kernel_crawler/redhat.py | 13 +++++++++++++ kernel_crawler/repo.py | 13 +++++++++++++ kernel_crawler/rockylinux.py | 13 +++++++++++++ kernel_crawler/rpm.py | 13 +++++++++++++ kernel_crawler/talos.py | 13 +++++++++++++ kernel_crawler/ubuntu.py | 13 +++++++++++++ setup.py | 13 +++++++++++++ 26 files changed, 339 insertions(+), 3 deletions(-) diff --git a/kernel_crawler/__init__.py b/kernel_crawler/__init__.py index 8b13789..b9ad683 100644 --- a/kernel_crawler/__init__.py +++ b/kernel_crawler/__init__.py @@ -1 +1,12 @@ - +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. diff --git a/kernel_crawler/aliyunlinux.py b/kernel_crawler/aliyunlinux.py index c200164..e4063ef 100644 --- a/kernel_crawler/aliyunlinux.py +++ b/kernel_crawler/aliyunlinux.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo from . import rpm diff --git a/kernel_crawler/almalinux.py b/kernel_crawler/almalinux.py index 7ac2f1e..40bc860 100644 --- a/kernel_crawler/almalinux.py +++ b/kernel_crawler/almalinux.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo from . import rpm @@ -22,4 +35,4 @@ def __init__(self, arch): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "almalinux", dep) \ No newline at end of file + return repo.DriverKitConfig(release, "almalinux", dep) diff --git a/kernel_crawler/amazonlinux.py b/kernel_crawler/amazonlinux.py index 975e763..3038402 100644 --- a/kernel_crawler/amazonlinux.py +++ b/kernel_crawler/amazonlinux.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + #!/usr/bin/env python import sys diff --git a/kernel_crawler/archlinux.py b/kernel_crawler/archlinux.py index fd55d77..a009c64 100644 --- a/kernel_crawler/archlinux.py +++ b/kernel_crawler/archlinux.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from bs4 import BeautifulSoup import re diff --git a/kernel_crawler/bottlerocket.py b/kernel_crawler/bottlerocket.py index b7a0905..5771814 100644 --- a/kernel_crawler/bottlerocket.py +++ b/kernel_crawler/bottlerocket.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import base64 import os import re diff --git a/kernel_crawler/centos.py b/kernel_crawler/centos.py index 90918eb..d4cc96e 100644 --- a/kernel_crawler/centos.py +++ b/kernel_crawler/centos.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo from . import rpm @@ -46,4 +59,4 @@ def __init__(self, arch): def to_driverkit_config(self, release, deps): for dep in deps: if dep.find("devel") != -1: - return repo.DriverKitConfig(release, "centos", dep) \ No newline at end of file + return repo.DriverKitConfig(release, "centos", dep) diff --git a/kernel_crawler/container.py b/kernel_crawler/container.py index aa97771..96dfe2e 100644 --- a/kernel_crawler/container.py +++ b/kernel_crawler/container.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import docker import click diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index a61f2f5..9686348 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo from .minikube import MinikubeMirror from .aliyunlinux import AliyunLinuxMirror diff --git a/kernel_crawler/deb.py b/kernel_crawler/deb.py index 823de19..cf11e5b 100644 --- a/kernel_crawler/deb.py +++ b/kernel_crawler/deb.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + #!/usr/bin/env python from __future__ import print_function diff --git a/kernel_crawler/debian.py b/kernel_crawler/debian.py index 3245806..6be20fc 100644 --- a/kernel_crawler/debian.py +++ b/kernel_crawler/debian.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo from . import deb import click diff --git a/kernel_crawler/fedora.py b/kernel_crawler/fedora.py index baf7290..6bb4636 100644 --- a/kernel_crawler/fedora.py +++ b/kernel_crawler/fedora.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo, rpm def repo_filter(version): diff --git a/kernel_crawler/flatcar.py b/kernel_crawler/flatcar.py index b04cbfb..8ec17e3 100644 --- a/kernel_crawler/flatcar.py +++ b/kernel_crawler/flatcar.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import os import base64 diff --git a/kernel_crawler/git.py b/kernel_crawler/git.py index 93abb70..e4af4be 100644 --- a/kernel_crawler/git.py +++ b/kernel_crawler/git.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import tempfile import shutil import re diff --git a/kernel_crawler/main.py b/kernel_crawler/main.py index 4eb796a..507f106 100644 --- a/kernel_crawler/main.py +++ b/kernel_crawler/main.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import logging import json import sys diff --git a/kernel_crawler/minikube.py b/kernel_crawler/minikube.py index adb8baf..5238928 100644 --- a/kernel_crawler/minikube.py +++ b/kernel_crawler/minikube.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import sys from click import progressbar as ProgressBar diff --git a/kernel_crawler/opensuse.py b/kernel_crawler/opensuse.py index 5d1007c..fdc0a72 100644 --- a/kernel_crawler/opensuse.py +++ b/kernel_crawler/opensuse.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo from . import rpm diff --git a/kernel_crawler/oracle.py b/kernel_crawler/oracle.py index 81324a8..0b1035e 100644 --- a/kernel_crawler/oracle.py +++ b/kernel_crawler/oracle.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo from . import rpm diff --git a/kernel_crawler/photon.py b/kernel_crawler/photon.py index 65d5626..2fac808 100644 --- a/kernel_crawler/photon.py +++ b/kernel_crawler/photon.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import rpm from . import repo diff --git a/kernel_crawler/redhat.py b/kernel_crawler/redhat.py index f27fa6b..d438118 100644 --- a/kernel_crawler/redhat.py +++ b/kernel_crawler/redhat.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo from .container import Container import re diff --git a/kernel_crawler/repo.py b/kernel_crawler/repo.py index 5aa9295..154a293 100644 --- a/kernel_crawler/repo.py +++ b/kernel_crawler/repo.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from __future__ import print_function from abc import ABC, abstractmethod diff --git a/kernel_crawler/rockylinux.py b/kernel_crawler/rockylinux.py index 64b3e24..aea9f81 100644 --- a/kernel_crawler/rockylinux.py +++ b/kernel_crawler/rockylinux.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import repo from . import rpm diff --git a/kernel_crawler/rpm.py b/kernel_crawler/rpm.py index 1d33681..a34cf08 100644 --- a/kernel_crawler/rpm.py +++ b/kernel_crawler/rpm.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + #!/usr/bin/env python from __future__ import print_function import traceback diff --git a/kernel_crawler/talos.py b/kernel_crawler/talos.py index 48119eb..62a3435 100644 --- a/kernel_crawler/talos.py +++ b/kernel_crawler/talos.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import sys import tempfile import pygit2 diff --git a/kernel_crawler/ubuntu.py b/kernel_crawler/ubuntu.py index ac6c8b8..b511be9 100644 --- a/kernel_crawler/ubuntu.py +++ b/kernel_crawler/ubuntu.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from . import deb from . import repo from .debian import fixup_deb_arch diff --git a/setup.py b/setup.py index f54d324..6b66dbf 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,16 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 The Falco Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + # http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + #!/usr/bin/env python from setuptools import setup, find_packages From 180bc33fc363266ccfc7911bcbb0abdffd42836f Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 13 Oct 2023 14:51:49 +0200 Subject: [PATCH 251/259] new(kernel_crawler): add photonOS 5.0 support. Signed-off-by: Federico Di Pierro --- kernel_crawler/photon.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kernel_crawler/photon.py b/kernel_crawler/photon.py index 2fac808..73571d4 100644 --- a/kernel_crawler/photon.py +++ b/kernel_crawler/photon.py @@ -17,16 +17,22 @@ class PhotonOsRepository(rpm.RpmRepository): @classmethod def kernel_package_query(cls): + # We exclude `esx` kernels because they don't support CONFIG_TRACEPOINTS, + # see https://github.com/vmware/photon/issues/1223. return '''((name = 'linux' OR name LIKE 'linux-%devel%') AND name NOT LIKE '%esx%')''' class PhotonOsMirror(repo.Distro): PHOTON_OS_VERSIONS = [ + ('3.0', ''), ('3.0', '_release'), ('3.0', '_updates'), ('4.0', ''), ('4.0', '_release'), ('4.0', '_updates'), + ('5.0', ''), + ('5.0', '_release'), + ('5.0', '_updates'), ] def __init__(self, arch): From b60ac2938d2a6a8e001b6957292d84f82b4a28ac Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 12 Oct 2023 08:29:46 +0200 Subject: [PATCH 252/259] new(ci): run update-kernels daily. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 1158f4c..080471a 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -31,7 +31,7 @@ on: - Talos - Ubuntu schedule: - - cron: '30 6 * * 1' + - cron: '30 6 * * *' # Checks if any concurrent jobs is running for kernels CI and eventually cancel it. concurrency: From 1d7cc8790d2447e03f628fd363921c92f9b9e8be Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 19 Oct 2023 11:40:40 +0200 Subject: [PATCH 253/259] chore(ci): avoid the needs to push to `kernels` branch. Instead, directly deploy pages using `update-kernels` github action. Signed-off-by: Federico Di Pierro Co-authored-by: Massimiliano Giovagnoli --- .github/workflows/update-kernels.yml | 99 ++++-------------- index.html | 151 +++++++++++++++++++++++++++ 2 files changed, 169 insertions(+), 81 deletions(-) create mode 100644 index.html diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 080471a..fa72f1d 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -3,33 +3,6 @@ name: Update Kernels on: workflow_dispatch: - inputs: - distro: - description: distro of which to perform the update - type: choice - required: true - options: - - '*' - - AliyunLinux - - AlmaLinux - - AmazonLinux - - AmazonLinux2 - - AmazonLinux2022 - - AmazonLinux2023 - - ArchLinux - - BottleRocket - - CentOS - - Debian - - Fedora - - Flatcar - - Minikube - - OpenSUSE - - OracleLinux - - PhotonOS - - Redhat - - RockyLinux - - Talos - - Ubuntu schedule: - cron: '30 6 * * *' @@ -45,71 +18,35 @@ jobs: image: falcosecurity/kernel-crawler:latest options: -u root permissions: - contents: write - pull-requests: write + contents: read + pages: write + id-token: write steps: - name: Checkout crawler uses: actions/checkout@v3 - with: - ref: kernels - - - name: Fetch distro - run: | - INPUT_DISTRO=${{ inputs.distro }} - DISTRO=${INPUT_DISTRO:-'*'} - echo "distro=$DISTRO" >> $GITHUB_ENV - - - name: Setup jq - run: apt-get update && apt-get install jq -y - - - name: Prepare commit body - id: prep_commit_msg - run: | - COMMIT_MSG="This PR updates the list of kernels from the latest crawling \ - $(if [ "${{ env.distro }}" != '*' ]; then echo " for distro ${{ env.distro }}"; fi). \ - Do not edit this PR." - echo "commit_msg=$COMMIT_MSG" >> $GITHUB_OUTPUT - name: Run crawler for x86_64 run: | mkdir $RUNNER_TEMP/x86_64 - kernel-crawler crawl --distro=${{ env.distro }} > $RUNNER_TEMP/x86_64/list.json + kernel-crawler crawl --distro="*" > $RUNNER_TEMP/x86_64/list.json - name: Run crawler for aarch64 run: | mkdir $RUNNER_TEMP/aarch64 - kernel-crawler crawl --distro=${{ env.distro }} --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json + kernel-crawler crawl --distro="*" --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json - - name: Single distro update - if: ${{ github.event_name == 'workflow_dispatch' && inputs.distro != '*' }} + - name: Move everything under site folder run: | - jq --arg distroKey "${{ inputs.distro }}" \ - --slurpfile newValues $RUNNER_TEMP/x86_64/list.json \ - 'if .[$distroKey] then .[$distroKey] = $newValues[][] else . end' \ - x86_64/list.json > $RUNNER_TEMP/x86_64/output.json - jq --arg distroKey "${{ inputs.distro }}" \ - --slurpfile newValues $RUNNER_TEMP/aarch64/list.json \ - 'if .[$distroKey] then .[$distroKey] = $newValues[][] else . end' \ - aarch64/list.json > $RUNNER_TEMP/aarch64/output.json - mv $RUNNER_TEMP/x86_64/output.json $RUNNER_TEMP/x86_64/list.json - mv $RUNNER_TEMP/aarch64/output.json $RUNNER_TEMP/aarch64/list.json - - - name: Update json lists - run: | - mv $RUNNER_TEMP/x86_64/list.json x86_64/list.json - mv $RUNNER_TEMP/aarch64/list.json aarch64/list.json - - - name: Update last run distro - run: | - echo "${{ env.distro }}" > last_run_distro.txt - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v5-rc + mkdir site/ + mv index.html site/ + mkdir site/aarch64/ + $RUNNER_TEMP/aarch64/list.json site/aarch64 + mkdir site/x86_64/ + mv $RUNNER_TEMP/x86_64/list.json site/x86_64/ + + - uses: actions/upload-pages-artifact@v1 with: - signoff: true - branch: update/kernels - base: kernels - title: 'update(kernels): update kernel json lists.' - body: ${{ steps.prep_commit_msg.outputs.commit_msg }} - commit-message: 'update(kernels): update kernel json lists.' - token: ${{ secrets.GITHUB_TOKEN }} + path: 'site' + + - id: deployment + uses: actions/deploy-pages@v1g diff --git a/index.html b/index.html new file mode 100644 index 0000000..64a6c58 --- /dev/null +++ b/index.html @@ -0,0 +1,151 @@ + + + + + Kernel Crawler + + + + + + + + + + + + +
+ falco logo +
+
+ Architecture: +
+
+ Target: +
+ + + + + + + + + + + +
TargetKernel ReleaseKernel VersionHeadersConfigLink
+ + + From 874da412bfa60b0cd4dcc3772c79ad12753c4981 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 19 Oct 2023 12:02:26 +0200 Subject: [PATCH 254/259] chore(ci): properly validate produced jsons. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index fa72f1d..c01431a 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -35,6 +35,16 @@ jobs: mkdir $RUNNER_TEMP/aarch64 kernel-crawler crawl --distro="*" --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json + - name: Install deps + run: | + apt update + apt install -y jq + + - name: Validate jsons + run: | + cat $RUNNER_TEMP/x86_64/list.json | jq empty + cat $RUNNER_TEMP/aarch64/list.json | jq empty + - name: Move everything under site folder run: | mkdir site/ From 7c5cc13277931565cf77e658302553fa2aae641d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 19 Oct 2023 12:21:07 +0200 Subject: [PATCH 255/259] chore: updated readme. Signed-off-by: Federico Di Pierro --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0689890..57fe653 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ ![Architectures](https://img.shields.io/badge/ARCHS-x86__64%7Caarch64-blueviolet?style=for-the-badge) It is a tool used to crawl supported kernels by multiple distros, and generate a [driverkit](https://github.com/falcosecurity/driverkit)-like config json. -Output json can be found, for each supported architecture, under [kernels](https://github.com/falcosecurity/kernel-crawler/tree/kernels) branch and on gh pages: https://falcosecurity.github.io/kernel-crawler/. +Output json can be found, for each supported architecture, on gh pages: https://falcosecurity.github.io/kernel-crawler/: +* [aarch64](https://falcosecurity.github.io/kernel-crawler/aarch64/list.json) +* [x86_64](https://falcosecurity.github.io/kernel-crawler/x86_64/list.json) A weekly [github action workflow](https://github.com/falcosecurity/kernel-crawler/actions/workflows/update-kernels.yml) will open a PR on this repo to update the json. As soon as the PR is merged and the json updated, a [prow job](https://github.com/falcosecurity/test-infra/blob/master/config/jobs/update-dbg/update-dbg.yaml) will create a PR on [test-infra](https://github.com/falcosecurity/test-infra) to generate the new Driverkit configs from the updated json. From e8c0d3235b9827a3b5333519b762069dd71cc5c5 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 19 Oct 2023 13:10:34 +0200 Subject: [PATCH 256/259] fix(ci): fix typo. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index c01431a..1d6d37d 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -59,4 +59,4 @@ jobs: path: 'site' - id: deployment - uses: actions/deploy-pages@v1g + uses: actions/deploy-pages@v1 From de7d991092bceb2175d9efab7e29cadaa6a0739d Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 19 Oct 2023 13:31:18 +0200 Subject: [PATCH 257/259] chore: moved index.html under site folder to semplify workflow. Signed-off-by: Federico Di Pierro --- .github/workflows/update-kernels.yml | 21 ++++++--------------- index.html => site/index.html | 0 2 files changed, 6 insertions(+), 15 deletions(-) rename index.html => site/index.html (100%) diff --git a/.github/workflows/update-kernels.yml b/.github/workflows/update-kernels.yml index 1d6d37d..ddaf1d6 100644 --- a/.github/workflows/update-kernels.yml +++ b/.github/workflows/update-kernels.yml @@ -27,13 +27,13 @@ jobs: - name: Run crawler for x86_64 run: | - mkdir $RUNNER_TEMP/x86_64 - kernel-crawler crawl --distro="*" > $RUNNER_TEMP/x86_64/list.json + mkdir site/x86_64 + kernel-crawler crawl --distro="*" > site/x86_64/list.json - name: Run crawler for aarch64 run: | - mkdir $RUNNER_TEMP/aarch64 - kernel-crawler crawl --distro="*" --arch=aarch64 > $RUNNER_TEMP/aarch64/list.json + mkdir site/aarch64 + kernel-crawler crawl --distro="*" --arch=aarch64 > site/aarch64/list.json - name: Install deps run: | @@ -42,17 +42,8 @@ jobs: - name: Validate jsons run: | - cat $RUNNER_TEMP/x86_64/list.json | jq empty - cat $RUNNER_TEMP/aarch64/list.json | jq empty - - - name: Move everything under site folder - run: | - mkdir site/ - mv index.html site/ - mkdir site/aarch64/ - $RUNNER_TEMP/aarch64/list.json site/aarch64 - mkdir site/x86_64/ - mv $RUNNER_TEMP/x86_64/list.json site/x86_64/ + cat site/x86_64/list.json | jq empty + cat site/aarch64/list.json | jq empty - uses: actions/upload-pages-artifact@v1 with: diff --git a/index.html b/site/index.html similarity index 100% rename from index.html rename to site/index.html From dca59defe809c7bb353367f019fb824981a1bb94 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 19 Oct 2023 13:38:10 +0200 Subject: [PATCH 258/259] chore(ci): skip ci tests for commits not touching python code. Signed-off-by: Federico Di Pierro --- .github/workflows/test.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e2f688..51066dc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,9 +9,24 @@ on: - main jobs: + paths-filter: + runs-on: ubuntu-latest + outputs: + crawler_changed: ${{ steps.filter.outputs.crawler }} + steps: + - uses: actions/checkout@v3 + - uses: dorny/paths-filter@v2 + id: filter + with: + filters: | + crawler: + - 'kernel_crawler/**' + test: name: test kernel-crawler runs-on: ubuntu-latest + needs: paths-filter + if: needs.paths-filter.outputs.crawler_changed == 'true' steps: - name: Checkout repo ⤵️ uses: actions/checkout@v3 From 98c97fa41ee7e8b2443e74ce224cdcda1b022548 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 19 Oct 2023 16:21:23 +0200 Subject: [PATCH 259/259] new(kernel_crawler): rename distro keys to match os-release names. This is what we expect in driverkit, dbg-go and test-infra. Signed-off-by: Federico Di Pierro --- kernel_crawler/crawler.py | 49 +++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 28 deletions(-) diff --git a/kernel_crawler/crawler.py b/kernel_crawler/crawler.py index 9686348..19c5361 100644 --- a/kernel_crawler/crawler.py +++ b/kernel_crawler/crawler.py @@ -37,35 +37,28 @@ from .talos import TalosMirror +# Keys are taken from /etc/os-release where available. DISTROS = { - 'AliyunLinux': AliyunLinuxMirror, - 'AlmaLinux': AlmaLinuxMirror, - 'AmazonLinux': AmazonLinux1Mirror, - 'AmazonLinux2': AmazonLinux2Mirror, - 'AmazonLinux2022': AmazonLinux2022Mirror, - 'AmazonLinux2023': AmazonLinux2023Mirror, - 'CentOS': CentosMirror, - 'Fedora': FedoraMirror, - 'OracleLinux': OracleMirror, - 'PhotonOS': PhotonOsMirror, - 'RockyLinux': RockyLinuxMirror, - - 'OpenSUSE': OpenSUSEMirror, - - 'Debian': DebianMirror, - 'Ubuntu': UbuntuMirror, - - 'Flatcar': FlatcarMirror, - - 'Minikube': MinikubeMirror, - - 'Redhat': RedhatContainer, - - 'ArchLinux': ArchLinuxMirror, - - 'BottleRocket': BottleRocketMirror, - - 'Talos': TalosMirror, + 'alinux': AliyunLinuxMirror, + 'almalinux': AlmaLinuxMirror, + 'amazonlinux': AmazonLinux1Mirror, + 'amazonlinux2': AmazonLinux2Mirror, + 'amazonlinux2022': AmazonLinux2022Mirror, + 'amazonlinux2023': AmazonLinux2023Mirror, + 'centos': CentosMirror, + 'fedora': FedoraMirror, + 'ol': OracleMirror, + 'photon': PhotonOsMirror, + 'rocky': RockyLinuxMirror, + 'opensuse': OpenSUSEMirror, + 'debian': DebianMirror, + 'ubuntu': UbuntuMirror, + 'flatcar': FlatcarMirror, + 'minikube': MinikubeMirror, + 'redhat': RedhatContainer, + 'arch': ArchLinuxMirror, + 'bottlerocket': BottleRocketMirror, + 'talos': TalosMirror, } def to_driverkit_config(d, res):